diff --git a/.eslintrc b/.eslintrc index 09550b823..bf5995672 100644 --- a/.eslintrc +++ b/.eslintrc @@ -33,7 +33,10 @@ "jsx-a11y/no-noninteractive-tabindex": 0, "jsx-a11y/no-onchange": "off", "no-console": 1, - "no-unused-vars": "off" + "no-unused-vars": "off", + "prettier/prettier": ["error", { "endOfLine": "auto" }], + "react/jsx-uses-react": "off", + "react/react-in-jsx-scope": "off" }, "reportUnusedDisableDirectives": true, "settings": { diff --git a/blog/a-walk-in-the-graph/index.mdx b/blog/a-walk-in-the-graph/index.mdx index 6affa943b..1c590caf5 100644 --- a/blog/a-walk-in-the-graph/index.mdx +++ b/blog/a-walk-in-the-graph/index.mdx @@ -13,7 +13,7 @@ Nodes represent resources, while edges define the relationship between nodes. It ![Sheep Jumping on a Graph](./img/banner.png) - +{/* truncate */} This model makes it easy to capture not only the structure, but also makes the relationships explicit. You can think of the graph as a digital twin of your infrastructure metadata. Resoto allows you to explore and extract meaningful information from your infrastructure with a simple search. diff --git a/blog/actionable-cloud-infrastructure-metrics/index.mdx b/blog/actionable-cloud-infrastructure-metrics/index.mdx index 23a77efb3..d74289f72 100644 --- a/blog/actionable-cloud-infrastructure-metrics/index.mdx +++ b/blog/actionable-cloud-infrastructure-metrics/index.mdx @@ -17,7 +17,7 @@ Even those spinning up cloud resources might only be aware of their small slice [Cloud inventory](../cloud-asset-inventory/index.mdx) has become a new type of technical debt, where organizations lose track of their infrastructure and how it relates to the business. **Resoto helps to break open the aforementioned black box and eliminate inventory debt.** - +{/* truncate */} Resoto provides a [searchable](/docs/reference/search) snapshot of the current state of your cloud infrastructure, and can [automatically react to state changes](/docs/concepts/automation). Resoto also allows you to [aggregate](../aggregating-search-data/index.mdx) and [visualize](../resoto-meets-jupyter-notebook/index.mdx) this data. diff --git a/blog/aggregating-search-data/index.mdx b/blog/aggregating-search-data/index.mdx index 2ffdb1cbe..538cd949a 100644 --- a/blog/aggregating-search-data/index.mdx +++ b/blog/aggregating-search-data/index.mdx @@ -17,7 +17,7 @@ Resoto's search allows for resources to be selected using [filters](/docs/refere ![Left: Sheep Finding a Diamond in a Gold Mine](./img/banner.png) - +{/* truncate */} The simplest example of search aggregation in Resoto is the [`count` command](/docs/reference/cli/count), which enables you to count objects or the occurrences of a specific property. Let's say we are interested in the number of compute instances we maintain: diff --git a/blog/automating-pagerduty-infrastructure-alerts/index.mdx b/blog/automating-pagerduty-infrastructure-alerts/index.mdx index 25464cbfb..d4a4bcc0d 100644 --- a/blog/automating-pagerduty-infrastructure-alerts/index.mdx +++ b/blog/automating-pagerduty-infrastructure-alerts/index.mdx @@ -17,7 +17,7 @@ For example, if a resource is no longer needed, it should be cleaned up to avoid Resoto provides tools to cope with such challenges. **In this post, we'll explore another category of high-priority issues that often require immediate attention: breaches in the security baseline.** - +{/* truncate */} ## Security Baselines diff --git a/blog/building-a-web-app-with-streamlit/index.mdx b/blog/building-a-web-app-with-streamlit/index.mdx index 7cc65cbe0..c7cf450d3 100644 --- a/blog/building-a-web-app-with-streamlit/index.mdx +++ b/blog/building-a-web-app-with-streamlit/index.mdx @@ -13,7 +13,7 @@ In [Actionable Cloud Infrastructure Metrics](../actionable-cloud-infrastructure- If you are not familiar with [Python](https://python.org), don't worry—we're going to keep it simple! In [Prerequisites](#prerequisites), we'll go over installing Python and the coding techniques utilized in this project. - +{/* truncate */} :::info @@ -45,7 +45,6 @@ If you already these prerequisites installed, you can skip ahead to [Environment ### Python and `pip` - On Linux, there is a good chance the distro already comes with a version of Python 3.x installed. If you are not sure, you can check with the following command: @@ -60,7 +59,6 @@ $ python3 --version If the command returns an error, you can install Python and `pip` using your distro's package manager: - ```bash @@ -69,7 +67,6 @@ $ sudo apt install python3 python3-pip ``` - ```bash @@ -77,15 +74,10 @@ $ sudo dnf install python3 python3-pip ``` - - - - - You can download the latest version of Python for macOS from [Python.org](https://python.org/downloads): @@ -93,7 +85,6 @@ You can download the latest version of Python for macOS from [Python.org](https: ![Screenshot of python.org](./img/download-python-macos.png) - With [Homebrew](https://brew.sh), you can install Python by executing the following command in the **Terminal** app: @@ -111,15 +102,10 @@ The **Terminal** app can be found under **Utilities** within the **Applications* ::: - - - - - You can download the latest version of Python for Windows from [Python.org](https://python.org/downloads): @@ -127,7 +113,6 @@ You can download the latest version of Python for Windows from [Python.org](http ![Screenshot of python.org](./img/download-python-windows.png) - With [Chocolatey](https://chocolatey.org), you can install Python by executing the following command: @@ -137,21 +122,15 @@ choco install python ``` - - - If you don't have prior Python or programming experience, please read the following overview of some Python basics before proceeding:
- Python Basics -
-

Starting the REPL

Start Python by running the following command (in PowerShell on Windows or the Terminal app on macOS): @@ -340,7 +319,6 @@ Multiple conditions can be checked using the `and` and `or` operators: ```
-
### Resoto @@ -447,7 +425,7 @@ If you are interested in different resource types or metrics, you can easily ada numpy ``` - :::caution + :::warning In production environments, you should pin the version of each package (e.g., `resotolib==2.4.1`). @@ -1045,9 +1023,7 @@ Finally, we will add a histogram of the instance age distribution. (We're adding ### The Final Product
- Complete App Code -
```python title="app.py" showLineNumbers @@ -1177,7 +1153,6 @@ age_tab.plotly_chart(fig, use_container_width=True) ```
-
## What's Next? diff --git a/blog/building-an-ec2-asset-inventory/index.mdx b/blog/building-an-ec2-asset-inventory/index.mdx index cb6121ad8..5f65f6b1e 100644 --- a/blog/building-an-ec2-asset-inventory/index.mdx +++ b/blog/building-an-ec2-asset-inventory/index.mdx @@ -18,7 +18,7 @@ You also then want to use that list to ask questions about your inventory, such In this post, I'll describe how to use Resoto to build an EC2 [cloud asset inventory](../cloud-asset-inventory/index.mdx). The baseline inventory is a list with all EC2 instances, which you then can use to create more narrow and detailed views. - +{/* truncate */} ## Getting Started with Resoto diff --git a/blog/cloud-asset-inventory/index.mdx b/blog/cloud-asset-inventory/index.mdx index e994cff8c..3eadc236b 100644 --- a/blog/cloud-asset-inventory/index.mdx +++ b/blog/cloud-asset-inventory/index.mdx @@ -13,7 +13,7 @@ In modern cloud-native environments, developers enjoy freedom and permissions to **A cloud asset inventory solves the infrastructure fragmentation problem by providing complete visibility into all resources from a single place.** - +{/* truncate */} ## The Evolution of Cloud Offerings and New Challenges diff --git a/blog/cloud-resource-security-benchmarks/index.mdx b/blog/cloud-resource-security-benchmarks/index.mdx index afe19fe9a..038d80f4c 100644 --- a/blog/cloud-resource-security-benchmarks/index.mdx +++ b/blog/cloud-resource-security-benchmarks/index.mdx @@ -13,7 +13,7 @@ While security benchmarks are often associated with large corporations, they pro In this blog post, we'll explore the benefits of performing security benchmarks on your cloud resources and introduce [Resoto Sentinel](/sentinel), the Resoto security module designed to simplify the benchmarking process. - +{/* truncate */} ## Security Benchmark Rationale diff --git a/blog/cloud-resource-tagging/index.mdx b/blog/cloud-resource-tagging/index.mdx index 41e376765..f1663f1e9 100644 --- a/blog/cloud-resource-tagging/index.mdx +++ b/blog/cloud-resource-tagging/index.mdx @@ -23,7 +23,7 @@ In theory, this is the correct way to manage resources; in practice, however, th And, to properly use tagging on a greenfield cloud account is one thing; to retroactively apply tags to sprawling cloud infrastructure is quite another (especially when utilizing a multi-cloud strategy, where you'd need to repeat any operation over multiple interfaces). - +{/* truncate */} We asked our community about their most challenging aspect of cloud tagging strategies on [LinkedIn](https://linkedin.com/feed/update/urn:li:activity:6987739499686428672): @@ -135,7 +135,6 @@ While the constant cleaning up behind your developers is now entirely hands-off, In addition to a repair job, you can also set up notifications for your team to alert them of wrong tags, providing an opportunity to fix the root cause (e.g., Cloudformation templates or Terraform config files): - ```bash title="Create a job to send notifications of untagged resources to Discord" @@ -144,7 +143,6 @@ webhook="https://discord.com/api/webhooks/..."' ``` - :::info @@ -161,7 +159,6 @@ webhook="https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXX ``` - See [Alerting How-To Guides](/docs/how-to-guides/alerting) for additional notification options. diff --git a/blog/cloud-security-compliance/index.mdx b/blog/cloud-security-compliance/index.mdx index 5192ee31b..e9c5bc53f 100644 --- a/blog/cloud-security-compliance/index.mdx +++ b/blog/cloud-security-compliance/index.mdx @@ -17,7 +17,7 @@ The concept and rationale of security compliance and how to build a baseline wer ::: - +{/* truncate */} ## Challenges to Security Compliance @@ -102,7 +102,6 @@ This outputs a file `report.md` in the [Resoto Shell download directory](/docs/r Resoto can not only output security benchmark reports to a file, but can also send results to [Discord](/docs/how-to-guides/alerting/send-discord-notifications) or [Slack](/docs/how-to-guides/alerting/send-slack-notifications): - ```bash @@ -110,7 +109,6 @@ Resoto can not only output security benchmark reports to a file, but can also se ``` - ```bash @@ -118,7 +116,6 @@ Resoto can not only output security benchmark reports to a file, but can also se ``` - If the [`report` command](/docs/reference/cli/report) finds any issues, a message like the following will be sent: diff --git a/blog/creating-and-managing-automations-with-the-resoto-job-editor/index.mdx b/blog/creating-and-managing-automations-with-the-resoto-job-editor/index.mdx index e710b3266..31185fffd 100644 --- a/blog/creating-and-managing-automations-with-the-resoto-job-editor/index.mdx +++ b/blog/creating-and-managing-automations-with-the-resoto-job-editor/index.mdx @@ -13,7 +13,7 @@ Welcome to my first blog post! I'm Raffa and I'm excited to share a new feature ![Resoto UI Job Editor](./img/banner.jpg) - +{/* truncate */} As I was building the jobs editor, I found myself gaining a newfound appreciation and deeper understanding of [Resoto jobs](/docs/concepts/automation#jobs). diff --git a/blog/digitalocean-support/index.mdx b/blog/digitalocean-support/index.mdx index 559bb33e8..b31fd6d4d 100644 --- a/blog/digitalocean-support/index.mdx +++ b/blog/digitalocean-support/index.mdx @@ -11,7 +11,7 @@ I worked on a plugin that allows collecting DigitalOcean resources over the past ![Sheep Sailing Through DigitalOcean](./img/banner.png) - +{/* truncate */} ## Getting Started @@ -55,7 +55,7 @@ Once the DigitalOcean plugin configuration has been updated, trigger a collect r > workflows run collect ``` - +{/* truncate */} ## Searching the Graph diff --git a/blog/discover-kubernetes-resources/index.mdx b/blog/discover-kubernetes-resources/index.mdx index 3c06b4885..a587fe1f6 100644 --- a/blog/discover-kubernetes-resources/index.mdx +++ b/blog/discover-kubernetes-resources/index.mdx @@ -15,7 +15,7 @@ Even a relatively simple setup quickly becomes tedious to manage as the resource ![](./img/banner.png) - +{/* truncate */} ## Kubernetes Support in Resoto diff --git a/blog/effective-cloud-management-tagging-policies/index.mdx b/blog/effective-cloud-management-tagging-policies/index.mdx index 325ccdf25..b43f4e34c 100644 --- a/blog/effective-cloud-management-tagging-policies/index.mdx +++ b/blog/effective-cloud-management-tagging-policies/index.mdx @@ -13,7 +13,7 @@ Managing and tracking cloud resources can be challenging, especially when multip In this blog post, we'll provide a brief overview of the benefits of implementing a tagging policy and best practices for creating and enforcing it, based on our [recently published white paper](https://cdn.some.engineering/resoto/whitepaper/Resoto_Cloud_Tagging_Strategy_White_Paper.pdf). - +{/* truncate */} ## Benefits of Tagging Policies diff --git a/blog/how-d2iq-reduced-cloud-spend-using-resoto/index.mdx b/blog/how-d2iq-reduced-cloud-spend-using-resoto/index.mdx index e4a012761..f8ac5f9d5 100644 --- a/blog/how-d2iq-reduced-cloud-spend-using-resoto/index.mdx +++ b/blog/how-d2iq-reduced-cloud-spend-using-resoto/index.mdx @@ -11,7 +11,7 @@ description: D2iQ, an entireprise Kubernetes provider, used Resoto to reduce the In this post, I share the story of how [D2iQ](https://d2iq.com), an enterprise Kubernetes provider, used Resoto to reduce their annual cloud bill by 78% and save $5.4M per year. - +{/* truncate */} ## The Challenge diff --git a/blog/installing-cloud2sql/index.mdx b/blog/installing-cloud2sql/index.mdx index cd19ad6c9..57af72257 100644 --- a/blog/installing-cloud2sql/index.mdx +++ b/blog/installing-cloud2sql/index.mdx @@ -15,7 +15,7 @@ Whether you are looking to integrate cloud data into your existing SQL workflows - +{/* truncate */} ## Installation @@ -31,7 +31,7 @@ If you only require support for a specific database, you can choose between `clo ::: -:::caution +:::warning Snowflake currently only supports Python 3.10. If you are using Python 3.11, use a database-specific package instead of `cloud2sql[all]`. @@ -58,13 +58,9 @@ destinations: This tells Cloud2SQL to load the AWS collector. Within the `aws` section, you can configure additional options, but they are optional.
- Advanced configuration examples -
- - ```yaml @@ -113,7 +109,6 @@ destinations: ``` - ```yaml @@ -135,7 +130,6 @@ sources: ``` - ```yaml @@ -152,11 +146,8 @@ destinations: ``` - -
-
See [`config-template.yaml`](https://github.com/someengineering/cloud2sql/blob/main/config-template.yaml) for a list of all supported configuration options. diff --git a/blog/integrating-cloud-data-into-existing-sql-workflows-with-cloud2sql/index.mdx b/blog/integrating-cloud-data-into-existing-sql-workflows-with-cloud2sql/index.mdx index 0ee512ac8..643d8efe2 100644 --- a/blog/integrating-cloud-data-into-existing-sql-workflows-with-cloud2sql/index.mdx +++ b/blog/integrating-cloud-data-into-existing-sql-workflows-with-cloud2sql/index.mdx @@ -13,7 +13,7 @@ One of the key features of Resoto is its ability to collect data from a wide ran ![](./img/banner.png) - +{/* truncate */} For example, when collecting data about Elastic Block Store (EBS) volumes in AWS, Resoto uses Amazon CloudWatch time series data to find out when a volume had its last read and write I/O. This information is then used to enrich the raw volume data with `last_access` and `last_update` timestamp properties, which makes it easy to answer when a particular EBS volume was last used, not just that it is not in use right now. @@ -42,9 +42,7 @@ To represent an individual node, Resoto uses a [unified data model](/docs/refere As you can see, every [`aws_elb`](/docs/reference/unified-data-model/aws#aws_elb) inherits `load_balancer`, which in turn inherits from `resource`. Each [`aws_elb`](/docs/reference/unified-data-model/aws#aws_elb) also contains additional data like `aws_elb_policies`, which contain an `aws_elb_app_cookie_stickiness_policy` and `aws_elb_lb_cookie_stickiness_policy`, and so on.
- Example of an individual aws_elb -
```json @@ -108,7 +106,6 @@ As you can see, every [`aws_elb`](/docs/reference/unified-data-model/aws#aws_elb ```
-
While a graph data model is well-suited to representing the complex and hierarchical data collected by Resoto, the reality is that many people are familiar with SQL and the traditional database model based on rows and columns. SQL is a mature and well-established language, with a rich ecosystem of tools and applications. diff --git a/blog/kubernetes-support/index.mdx b/blog/kubernetes-support/index.mdx index 066fd4bf7..7de470523 100644 --- a/blog/kubernetes-support/index.mdx +++ b/blog/kubernetes-support/index.mdx @@ -13,7 +13,7 @@ description: Resoto now supports Kubernetes! ![](./img/banner.png) - +{/* truncate */} ## Getting Started diff --git a/blog/multi-cloud-resource-management/index.mdx b/blog/multi-cloud-resource-management/index.mdx index 283ce3844..26f252307 100644 --- a/blog/multi-cloud-resource-management/index.mdx +++ b/blog/multi-cloud-resource-management/index.mdx @@ -15,7 +15,7 @@ Properties in different services may have different names but the same meaning, ![Banner](./img/banner.png) - +{/* truncate */} [Map the Cloud](https://mapthe.cloud) shows that [AWS](https://aws.amazon.com) offers 324 services, [Azure](https://azure.microsoft.com) 222 services, and [Google Cloud](https://cloud.google.com) 52 services. diff --git a/blog/new-name-new-website/index.mdx b/blog/new-name-new-website/index.mdx index eca69d2a5..8f72123bd 100644 --- a/blog/new-name-new-website/index.mdx +++ b/blog/new-name-new-website/index.mdx @@ -13,7 +13,7 @@ Right before Christmas, we decided to part ways with the name "Cloudkeeper." The ![Resoto Logo Graffiti](./img/banner.png) - +{/* truncate */} We partnered with brand namer [Steve Cecil](http://wherewords.com) to devise a new name. I found the process to be really special and quite fun, though Steve did require us to invest quite a bit of our time. diff --git a/blog/product-updates/2023/april/index.mdx b/blog/product-updates/2023/april/index.mdx index cbf058875..c966f35f7 100644 --- a/blog/product-updates/2023/april/index.mdx +++ b/blog/product-updates/2023/april/index.mdx @@ -11,7 +11,7 @@ This release introduces the [Security Benchmarks CLI](#security-benchmarks-cli) ![Neighborhood View Animation](./img/neighborhood.gif) - +{/* truncate */} ## Security Benchmarks CLI @@ -29,9 +29,7 @@ Running a security benchmark and writing the output to a file is as simple as: ```
- Generated benchmark report in Markdown format -
```markdown title="report.md" @@ -71,7 +69,6 @@ CloudTrail logs a record of every API call made in your AWS account. These logs ```
-
Markdown rendering is the CLI default, but since benchmark results are returned as a graph, you can use all the existing Resoto commands to filter and alert on these results! @@ -79,9 +76,7 @@ Markdown rendering is the CLI default, but since benchmark results are returned For example, try piping the output of a `report benchmark run` into the `dump` command to see the raw data structure of the report results:
- Raw benchmark report data in YAML format -
```yaml @@ -121,7 +116,6 @@ reported: ```
-
Or, pipe a report into the `list --csv` command followed by a list of fields to get a CSV-formatted output. diff --git a/blog/product-updates/2023/february/index.mdx b/blog/product-updates/2023/february/index.mdx index ef0d3e8ee..9c36cc227 100644 --- a/blog/product-updates/2023/february/index.mdx +++ b/blog/product-updates/2023/february/index.mdx @@ -7,7 +7,7 @@ tags: [Product Updates] New month, new release! We shipped [Resoto 3.2](/releases/3.2.0) with a handful of new features and improvements. - +{/* truncate */} ## Job Editor @@ -29,7 +29,7 @@ You can now override Resoto config using external `yaml` or `json` files. If you Start `resotocore` with the `--override-path` argument (or the corresponding `RESOTOCORE_OVERRIDE_PATH` environment variable) pointing to a file or directory. (If a directory is specified, Resoto will read all files in the directory with `.yaml`, `.yml`, or `.json` extensions.) The filename must correspond to the name of the Resoto config you would like to override. -:::tip Example +:::tip[Example] `resoto.worker.yaml` would override the data in the `resoto.worker` config. diff --git a/blog/product-updates/2023/january/index.mdx b/blog/product-updates/2023/january/index.mdx index 0f3470191..bf9e337bf 100644 --- a/blog/product-updates/2023/january/index.mdx +++ b/blog/product-updates/2023/january/index.mdx @@ -7,7 +7,7 @@ tags: [Product Updates] **As 2022 came to a close, we released [Cloud2SQL](https://cloud2sql.com) and [Resoto 3.0](/releases/3.0.0).** Resoto 3.0 shipped with a brand new web UI built on the [Godot game engine](https://godotengine.org). - +{/* truncate */} ## Cloud2SQL diff --git a/blog/product-updates/2023/march/index.mdx b/blog/product-updates/2023/march/index.mdx index 585b1c4f5..cb70c7fcd 100644 --- a/blog/product-updates/2023/march/index.mdx +++ b/blog/product-updates/2023/march/index.mdx @@ -7,7 +7,7 @@ tags: [Product Updates] Last month, we merged a total of 64 pull requests and released [Resoto 3.3](/releases/3.3.0) just before the end of March. This release delivers the Security Benchmarks we announced in January, along with numerous smaller features and improvements. - +{/* truncate */} ## Security Benchmarks diff --git a/blog/product-updates/2023/may/index.mdx b/blog/product-updates/2023/may/index.mdx index 192052d1a..6e68850ba 100644 --- a/blog/product-updates/2023/may/index.mdx +++ b/blog/product-updates/2023/may/index.mdx @@ -7,7 +7,7 @@ tags: [Product Updates] **In May, we released [Resoto 3.5](/releases/3.5.0)!** Resoto 3.5 is chock-full of new features and essential bug fixes—we merged 50 pull requests. - +{/* truncate */} ## Resoto Rewind diff --git a/blog/resoto-at-your-command/index.mdx b/blog/resoto-at-your-command/index.mdx index fe5868849..00cc9f40c 100644 --- a/blog/resoto-at-your-command/index.mdx +++ b/blog/resoto-at-your-command/index.mdx @@ -15,7 +15,7 @@ A Resoto install comes with batteries included; Resoto ships with a [command-lin In this blog post, we will implement a new command called `hello-world` in Python, to show the power and flexibility of this new feature. The simple idea of our new command is adding a greeting to the tags of a selected resource. - +{/* truncate */} ## Architecture diff --git a/blog/resoto-aws-cdk-construct/index.mdx b/blog/resoto-aws-cdk-construct/index.mdx index e28c9ecdf..4c7d2729b 100644 --- a/blog/resoto-aws-cdk-construct/index.mdx +++ b/blog/resoto-aws-cdk-construct/index.mdx @@ -11,7 +11,7 @@ description: The Resoto CDK construct simplifies the deployment of Resoto to AWS The CDK construct pretty simple. All you need is a recent version of [Node.js](https://nodejs.org) (we tested with 18.x.x) and [Git](https://git-scm.com). If you don't already have [Node.js](https://nodejs.org) installed, we recommend using [Node Version Manager (`nvm`)](https://github.com/nvm-sh/nvm). - +{/* truncate */} Once you have [Node.js](https://nodejs.org) and [Git](https://git-scm.com), you can deploy the Resoto CDK construct with just the following commands: diff --git a/blog/resoto-infrastructure-apps/index.mdx b/blog/resoto-infrastructure-apps/index.mdx index 279979f58..a9cd5b9ab 100644 --- a/blog/resoto-infrastructure-apps/index.mdx +++ b/blog/resoto-infrastructure-apps/index.mdx @@ -17,7 +17,7 @@ Resoto provides quick access to your entire [infrastructure inventory](/docs/con Infrastructure Apps extend Resoto's base functionality, empowering you to perform custom tasks like [fixing untagged resources](/docs/how-to-guides/cleanup/clean-up-untagged-resources), [identifying abandoned load balancers](/docs/how-to-guides/cleanup/clean-up-aws-load-balancers), [sending notifications](/docs/how-to-guides/alerting) to other systems, or calling webhooks. - +{/* truncate */} ## What Are Infrastructure Apps? diff --git a/blog/resoto-jupyterlite/index.mdx b/blog/resoto-jupyterlite/index.mdx index cba373437..4ba015d9b 100644 --- a/blog/resoto-jupyterlite/index.mdx +++ b/blog/resoto-jupyterlite/index.mdx @@ -13,7 +13,7 @@ Hello folks! A few months ago, [we released Resoto Notebook](../resoto-meets-jup Want to analyze raw infrastructure data when only platform engineers can access cloud consoles? Or count infrastructure assets without a data scientist? JupyterLite is a JupyterLab distribution that runs entirely in a web browser, and Resoto's JupyterLite support gives you access to popular data analysis tools without the need for any additional installation steps. - +{/* truncate */} You can access JupyterLite simply by opening `https:///notebook` in your web browser! diff --git a/blog/resoto-meets-jupyter-notebook/index.mdx b/blog/resoto-meets-jupyter-notebook/index.mdx index fa7af00ee..d862c5aff 100644 --- a/blog/resoto-meets-jupyter-notebook/index.mdx +++ b/blog/resoto-meets-jupyter-notebook/index.mdx @@ -11,7 +11,7 @@ We recently released [Resoto Notebook](/docs/reference/notebook), a library that [Resoto Notebook](/docs/reference/notebook) is similar to [Resoto Shell](/docs/reference/components/shell) in the sense that you execute queries, but the results are returned in a [pandas](https://pandas.pydata.org) [`DataFrame` structure](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html). This gives you more flexibility in filtering, aggregation, visualization, etc. - +{/* truncate */} :::info diff --git a/blog/resoto-rewind/index.mdx b/blog/resoto-rewind/index.mdx index 7b9dc1be4..f4c217bc9 100644 --- a/blog/resoto-rewind/index.mdx +++ b/blog/resoto-rewind/index.mdx @@ -17,7 +17,7 @@ Rewind doesn't just give you a log of events/changes or time series data, but of ![Resoto Rewind](./img/rewind.png) - +{/* truncate */} ## Why Resoto Rewind? diff --git a/blog/resoto-search-101/index.mdx b/blog/resoto-search-101/index.mdx index 387ffb348..21624ec12 100644 --- a/blog/resoto-search-101/index.mdx +++ b/blog/resoto-search-101/index.mdx @@ -13,7 +13,7 @@ Furthermore, the relationships between your resources are also relevant: an EBS ![Left: Sheep Spinning Up Cloud Resources; Right: Confused Sheep with Abacus](./img/banner.png) - +{/* truncate */} We created Resoto to allow the user to effortlessly [search resources](/docs/reference/search) and [automate jobs](/docs/concepts/automation). Resoto gathers data about your infrastructure and builds a directed acyclic [graph](/docs/concepts/asset-inventory-graph), where resources are [vertices](/docs/concepts/asset-inventory-graph#nodes) and their relationships/dependencies [edges](/docs/concepts/asset-inventory-graph#edges). This graph is what makes Resoto so powerful, but we needed a way to allow users to query this data. diff --git a/blog/resoto-shell-tab-completion/index.mdx b/blog/resoto-shell-tab-completion/index.mdx index d1f0d0210..fbcdafd14 100644 --- a/blog/resoto-shell-tab-completion/index.mdx +++ b/blog/resoto-shell-tab-completion/index.mdx @@ -15,7 +15,7 @@ Version 2.X of [Resoto Shell](/docs/reference/components/shell) introduces tab c ![List of commands](./img/list_of_commands.png) - +{/* truncate */} The tab completion feature is context-aware and will even help you configure the options for a command: diff --git a/blog/solving-cloud-resource-management-challenges/index.mdx b/blog/solving-cloud-resource-management-challenges/index.mdx index 64a614566..aa32db081 100644 --- a/blog/solving-cloud-resource-management-challenges/index.mdx +++ b/blog/solving-cloud-resource-management-challenges/index.mdx @@ -17,7 +17,7 @@ And as that person hacks away in the CLI trying to get an overview of resources In this post, I describe a few of the challenges and quirks with the AWS API and why we're building Resoto. _(Spoiler alert: It is so that you don't have to!)_ - +{/* truncate */} :::info @@ -79,7 +79,7 @@ At this point I'm sure you're guessing it already: **you don't have to worry abo Below is a comparison of how to add an `owner: jenkins` tag to an [EC2 instance](/docs/reference/unified-data-model/aws#aws_ec2_instance) or [SQS queue](/docs/reference/unified-data-model/aws#aws_sqs_queue) in the AWS CLI versus in [Resoto's CLI](/docs/reference/cli): -:::tip EC2 Instance +:::tip[EC2 Instance] ```bash title="Tagging in the AWS CLI 😒" > aws ec2 create-tags –resources jenkins-master –tags Key=owner,Value=jenkins @@ -91,7 +91,7 @@ Below is a comparison of how to add an `owner: jenkins` tag to an [ aws sqs tag-queue –queue-url https://sqs.us-west-2.amazonaws.com/123456789012/MyQueue –tags owner=jenkins diff --git a/blog/solving-infrastructure-fragmentation-with-data/index.mdx b/blog/solving-infrastructure-fragmentation-with-data/index.mdx index 23f81a466..0ce50327d 100644 --- a/blog/solving-infrastructure-fragmentation-with-data/index.mdx +++ b/blog/solving-infrastructure-fragmentation-with-data/index.mdx @@ -15,7 +15,7 @@ The data to understand cloud growth exists as cloud resource metadata describing But infrastructure is fragmented. Data is locked behind cloud APIs, and the tools that use those APIs to control the deployment of cloud resources. In this post, I'll explain how Resoto acquires infrastructure data, and then uses that data to write code. - +{/* truncate */} ## The Cloud-Native Stack diff --git a/blog/tackling-infrastructure-fragmentation-with-reactive-infrastructure/index.mdx b/blog/tackling-infrastructure-fragmentation-with-reactive-infrastructure/index.mdx index 6c8c774ca..e2d455cf6 100644 --- a/blog/tackling-infrastructure-fragmentation-with-reactive-infrastructure/index.mdx +++ b/blog/tackling-infrastructure-fragmentation-with-reactive-infrastructure/index.mdx @@ -25,7 +25,7 @@ In other words, **infrastructure fragmentation is the uncontrolled proliferation Infrastructure fragmentation can create various problems, such as security issues, quota and performance problems as well as increased costs due to redundancies, leaked or abandoned resources and Infrastructure as Code (IaC) drift. - +{/* truncate */} ## Roots of Infrastructure Fragmentation diff --git a/blog/visualizing-cloud-inventory-with-resoto-dashboards/index.mdx b/blog/visualizing-cloud-inventory-with-resoto-dashboards/index.mdx index 692d5a320..b83c586ad 100644 --- a/blog/visualizing-cloud-inventory-with-resoto-dashboards/index.mdx +++ b/blog/visualizing-cloud-inventory-with-resoto-dashboards/index.mdx @@ -15,7 +15,7 @@ Resoto also offers simple and human-friendly ways to view this data—you can [e With Resoto Dashboards, your searches and queries are executed periodically and the results displayed in widgets automatically. You can also customize and organize widgets in the dashboard to keep the most important metrics always within reach. You can even share dashboards across your organization so others can access the data. And of course, you can access your dashboards anywhere you have access to your Resoto installation. - +{/* truncate */} ## Key Concepts diff --git a/blog/what-we-can-learn-from-history/index.mdx b/blog/what-we-can-learn-from-history/index.mdx index 72a05e169..1d313fc89 100644 --- a/blog/what-we-can-learn-from-history/index.mdx +++ b/blog/what-we-can-learn-from-history/index.mdx @@ -21,7 +21,7 @@ Such knowledge is necessary in situations where you need to understand the timel ![](./img/banner.svg) - +{/* truncate */} ## Existing Cloud Provider Tools diff --git a/blog/why-we-built-resoto-ui-using-a-game-engine/index.mdx b/blog/why-we-built-resoto-ui-using-a-game-engine/index.mdx index 0467ca729..9d4e906f6 100644 --- a/blog/why-we-built-resoto-ui-using-a-game-engine/index.mdx +++ b/blog/why-we-built-resoto-ui-using-a-game-engine/index.mdx @@ -11,7 +11,7 @@ In this blog post, I'll share the reasoning behind some of the tech stack decisi ![Resoto UI built in Godot](./img/banner.jpg) - +{/* truncate */} ## Challenges in Building Resoto UI diff --git a/compare/aws-config.mdx b/compare/aws-config.mdx index e9cf11216..67b960d62 100644 --- a/compare/aws-config.mdx +++ b/compare/aws-config.mdx @@ -9,7 +9,7 @@ pagination_next: null AWS Config provides an overview of the configuration of AWS resources in your AWS account, including an overview of how resources are related to one another. -## Similarities Between Resoto and AWS Config {#similarities} +## Similarities Between Resoto and AWS Config \{#similarities} **Both AWS Config and Resoto offer cloud asset inventory functionality to assess, audit, and evaluate configurations of your AWS resources.** @@ -20,7 +20,7 @@ With either tool, you can: - Filter and find resources that match different criteria - Automate remediation -## Differences Between Resoto and AWS Config {#differences} +## Differences Between Resoto and AWS Config \{#differences} AWS Config is a native AWS service, and as such it only covers AWS resources and is optimized for integrating with the AWS product ecosystem. diff --git a/compare/aws-nuke.mdx b/compare/aws-nuke.mdx index c4bbd6752..a2c048c97 100644 --- a/compare/aws-nuke.mdx +++ b/compare/aws-nuke.mdx @@ -9,7 +9,7 @@ pagination_next: null Unlike its name may suggest, AWS Nuke is _not_ a native AWS service. AWS Nuke is maintained by [Rebuy](https://rebuy.de), an e-commerce company that provides personalized shopping experiences for [Shopify](https://shopify.com) stores. -## Similarities Between Resoto and AWS Nuke {#similarities} +## Similarities Between Resoto and AWS Nuke \{#similarities} With both Resoto and AWS Nuke, you can: @@ -20,7 +20,7 @@ With both Resoto and AWS Nuke, you can: Both Resoto and AWS Nuke are open source. -## Differences Between Resoto and AWS Nuke {#differences} +## Differences Between Resoto and AWS Nuke \{#differences} AWS Nuke was built for managing [AWS resources](/docs/how-to-guides/data-sources/collect-aws-resource-data), and addresses a single use case only: deleting AWS resources for cost savings. diff --git a/compare/cartography.mdx b/compare/cartography.mdx index 53331698e..1d97cf2b0 100644 --- a/compare/cartography.mdx +++ b/compare/cartography.mdx @@ -19,7 +19,7 @@ Cartography is designed for: - Locating vulnerabilities in container images - Revealing parent-child relationships between images in the form of dependency trees -## Similarities Between Resoto and Cartography {#similarities} +## Similarities Between Resoto and Cartography \{#similarities} Both Resoto and Cartography: @@ -29,7 +29,7 @@ Both Resoto and Cartography: - Reveal [parent-child relationships between assets through the graph](/docs/concepts/asset-inventory-graph#edges) - Support [AWS](/docs/reference/unified-data-model/aws), [Google Cloud](/docs/reference/unified-data-model/google-cloud), [Kubernetes](/docs/reference/unified-data-model/kubernetes), and [GitHub](/docs/reference/unified-data-model/github) -## Differences Between Resoto and Cartography {#differences} +## Differences Between Resoto and Cartography \{#differences} In general, Cartography was built for security use cases. Since Lyft is an "AWS shop," Cartography prioritizes functionality for AWS services in use at Lyft. diff --git a/compare/google-cloud-asset-inventory.mdx b/compare/google-cloud-asset-inventory.mdx index b5d269749..af71ac192 100644 --- a/compare/google-cloud-asset-inventory.mdx +++ b/compare/google-cloud-asset-inventory.mdx @@ -9,7 +9,7 @@ pagination_next: null Cloud Asset Inventory is a managed service that collects metadata from Google Cloud resources to create an inventory, allowing you to monitor asset changes. -## Similarities Between Resoto and Cloud Asset Inventory {#similarities} +## Similarities Between Resoto and Cloud Asset Inventory \{#similarities} **Both Cloud Asset Inventory and Resoto take asset snapshots.** @@ -20,7 +20,7 @@ With either tool, you can: - Generate metrics and time-series data for Google Cloud resources - Monitor changes, write queries, and ask questions about your Google Cloud infrastructure -## Differences Between Resoto and Cloud Asset Inventory {#differences} +## Differences Between Resoto and Cloud Asset Inventory \{#differences} Cloud Asset Inventory is a fully managed service that Google introduced after their open-source [Cloud Asset Inventory Import to BigQuery](https://github.com/GoogleCloudPlatform/professional-services/tree/main/tools/asset-inventory) tool gained popularity. diff --git a/compare/gruntwork-cloud-nuke.mdx b/compare/gruntwork-cloud-nuke.mdx index 6d281f5cf..8d9389c67 100644 --- a/compare/gruntwork-cloud-nuke.mdx +++ b/compare/gruntwork-cloud-nuke.mdx @@ -9,7 +9,7 @@ pagination_next: null cloud-nuke is an open-source CLI tool that finds and deletes AWS resources. -## Similarities Between Resoto and cloud-nuke {#similarities} +## Similarities Between Resoto and cloud-nuke \{#similarities} With both Resoto and cloud-nuke, you can: @@ -17,7 +17,7 @@ With both Resoto and cloud-nuke, you can: - Delete AWS resources - Exclude AWS resources from deletion -## Differences Between Resoto and cloud-nuke {#differences} +## Differences Between Resoto and cloud-nuke \{#differences} [Gruntwork](https://gruntwork.io) specializes in AWS infrastructure, so cloud-nuke only supports AWS. diff --git a/compare/steampipe.mdx b/compare/steampipe.mdx index 77158497b..70e33cbc8 100644 --- a/compare/steampipe.mdx +++ b/compare/steampipe.mdx @@ -13,7 +13,7 @@ Steampipe uses [foreign data wrappers](https://wiki.postgresql.org/wiki/Foreign_ Steampipe is developed and maintained by [Turbot](https://turbot.com), a cloud governance platform. -## Similarities Between Resoto and Steampipe {#similarities} +## Similarities Between Resoto and Steampipe \{#similarities} Just like Resoto, Steampipe queries cloud APIs to deliver resource metadata. @@ -23,7 +23,7 @@ With both Resoto and Steampipe, you can: - Correlate data from different sources (e.g., a GitHub repository and a cloud resource) - Run security and compliance checks write the output of a query to a CSV file -## Differences Between Resoto and Steampipe {#differences} +## Differences Between Resoto and Steampipe \{#differences} At its core, Steampipe is a CLI tool with a wrapper around an embedded PostgreSQL instance. diff --git a/docs/concepts/asset-inventory-graph/index.mdx b/docs/concepts/asset-inventory-graph/index.mdx index 66a74f9cb..d14d1b962 100644 --- a/docs/concepts/asset-inventory-graph/index.mdx +++ b/docs/concepts/asset-inventory-graph/index.mdx @@ -10,7 +10,7 @@ Resoto also knows how resources relate to each other. For example, a compute ins The superpower of Resoto is the ability to provide a complete picture of your cloud assets and how they relate to each other. -## Graph Nodes {#nodes} +## Graph Nodes \{#nodes} Each collected resource is a node in the asset inventory graph. @@ -59,7 +59,7 @@ The [`kinds` command](../../reference/cli/kinds.mdx) allows you to list all reso ::: -## Graph Edges {#edges} +## Graph Edges \{#edges} Resoto also captures the relationships between resources by encoding the relationships as edges in the graph. This makes it possible to traverse the graph and walk from one resource to another based on a specific relationship. The relationship itself does not have any additional properties. @@ -73,7 +73,7 @@ The list of possible edges are also defined explicitly in our [data model refere This documentation describes how a resource might be connected. This does not mean that every relationship has to exist. For example, a compute instance might not have a volume attached to it. In this case, there is no edge between the compute instance and the volume. -## Graph Traversal {#traversal} +## Graph Traversal \{#traversal} In order to traverse the graph in a meaningful way, it is important to understand the structure. The following diagram serves as an example graph you will find in Resoto to illustrates how we can "walk" edges in a graph: diff --git a/docs/concepts/automation/index.mdx b/docs/concepts/automation/index.mdx index 4e19a8578..f54187a18 100644 --- a/docs/concepts/automation/index.mdx +++ b/docs/concepts/automation/index.mdx @@ -33,9 +33,7 @@ There are three types of job triggers: [schedule triggers](#schedule-trigger), [ **A schedule trigger executes a job at a specific time interval described by a [cron expression](https://crontab.guru).**
- Examples -
- Every 5 minutes @@ -56,7 +54,6 @@ There are three types of job triggers: [schedule triggers](#schedule-trigger), [ ```
-
:::tip @@ -74,9 +71,7 @@ Resoto updates the state of resources in the four steps of the [`collect_and_cle Each of these steps emits [events](../../reference/events/index.mdx) that can be used to trigger jobs.
- Examples -
- When resource collection is complete and the database reflects the latest state of your resources @@ -89,7 +84,6 @@ Each of these steps emits [events](../../reference/events/index.mdx) that can be ```
-
:::info @@ -111,9 +105,7 @@ See [How to Create an Event-Based Job](../../how-to-guides/automation/create-an- Combined triggers are useful if you want to perform an action on a specific schedule, but only after a specific event is fired.
- Example -
Let's say you want to clean up development accounts at the end of each week. @@ -127,7 +119,6 @@ To do so, you could define a [schedule trigger](#schedule-trigger) in addition t The above combined trigger executes the job based on the latest state of resources after 10pm every Friday evening.
-
:::tip @@ -147,9 +138,7 @@ To perform more complex automations, it is possible to define multiple sets of f **A job filter is an optional [search](../../reference/search/index.mdx) that returns the resources of interest.** Only resources matching the filter will be processed by the job.
- Example -
- Instances without an owner tag in the dev or playground accounts @@ -158,7 +147,6 @@ To perform more complex automations, it is possible to define multiple sets of f ```
-
The result of a job filter is a list of resources that is piped as input to [job actions](#job-actions). @@ -168,9 +156,7 @@ The result of a job filter is a list of resources that is piped as input to [job **A job action is an [action command](../../reference/cli/index.mdx) performed on resources matching the optional [filter](#job-filters).**
- Examples -
- Update resource tags using the [`tag update` command](../../reference/cli/tag/update.mdx) @@ -246,7 +232,6 @@ The result of a job filter is a list of resources that is piped as input to [job ```
-
### Job Management @@ -260,9 +245,7 @@ See [Related How-To Guides](#related-how-to-guides) below for step-by-step instr :::
- Examples -
- Add a job that sends a Discord notification when compute instances without an `owner` tag are detected @@ -303,7 +286,6 @@ See [Related How-To Guides](#related-how-to-guides) below for step-by-step instr ```
-
## Related How-To Guides diff --git a/docs/development/components.mdx b/docs/development/components.mdx index 4833cec52..4047cc432 100644 --- a/docs/development/components.mdx +++ b/docs/development/components.mdx @@ -93,7 +93,7 @@ In order for `resotocore` to perform the required database setup and for tests t ::: -:::caution +:::warning This setup is for development only and should not be deployed in production environments. @@ -104,7 +104,6 @@ This setup is for development only and should not be deployed in production envi You can now start each of the Resoto components: - ```bash @@ -113,7 +112,6 @@ python -m resotocore ``` - ```bash @@ -122,7 +120,6 @@ python -m resotoshell ``` - ```bash @@ -131,7 +128,6 @@ python -m resotoworker ``` - ```bash @@ -140,7 +136,6 @@ python -m resotometrics ``` - ## 5. Test Your Changes diff --git a/docs/getting-started/install-resoto/kubernetes.mdx b/docs/getting-started/install-resoto/kubernetes.mdx index abbcf5fdb..e38fd2ca1 100644 --- a/docs/getting-started/install-resoto/kubernetes.mdx +++ b/docs/getting-started/install-resoto/kubernetes.mdx @@ -27,7 +27,6 @@ pagination_next: getting-started/launch-resoto/index ## Directions - 1. Add the [Some Engineering Helm chart repository](https://helm.some.engineering): @@ -57,7 +56,6 @@ pagination_next: getting-started/launch-resoto/index ``` - It is possible to customize your Resoto installation using a Helm values file. @@ -108,7 +106,6 @@ It is possible to customize your Resoto installation using a Helm values file. ``` - And just like that, you have Resoto running in a Kubernetes cluster! diff --git a/docs/getting-started/launch-resoto/index.mdx b/docs/getting-started/launch-resoto/index.mdx index dfbe48bcd..3583fbaf7 100644 --- a/docs/getting-started/launch-resoto/index.mdx +++ b/docs/getting-started/launch-resoto/index.mdx @@ -17,7 +17,6 @@ Resoto UI is a user-friendly web interface that simplifies managing and explorin The steps to launch Resoto UI are dependent on how you installed Resoto. - 1. Log in to the [AWS CloudFormation console](https://console.aws.amazon.com/cloudformation). @@ -73,7 +72,6 @@ The steps to launch Resoto UI are dependent on how you installed Resoto. ::: - 1. Resoto is available via an externally accessible service address. Get the address by executing the following in your terminal: @@ -120,10 +118,9 @@ The steps to launch Resoto UI are dependent on how you installed Resoto. ![Screenshot of Resoto UI setup wizard](../explore-resoto/ui/img/setup-wizard.png) - -1. Resoto UI listens on port `8900` by default. You can access it by opening in your browser. +1. Resoto UI listens on port `8900` by default. You can access it by opening [https://localhost:8900](https://localhost:8900) in your browser. :::note @@ -160,7 +157,6 @@ The steps to launch Resoto UI are dependent on how you installed Resoto. ![Screenshot of Resoto UI setup wizard](../explore-resoto/ui/img/setup-wizard.png) - 1. Resoto provides a service that exposes Resoto UI on port `8900`. We recommend configuring an [Ingress](https://kubernetes.io/docs/concepts/services-networking/ingress) with a valid certificate for UI access, but you can port-forward the service as a temporary solution: @@ -198,10 +194,9 @@ The steps to launch Resoto UI are dependent on how you installed Resoto. ![Screenshot of Resoto UI setup wizard](../explore-resoto/ui/img/setup-wizard.png) - -1. Resoto UI listens on port `8900` by default. You can access it by opening in your browser. +1. Resoto UI listens on port `8900` by default. You can access it by opening [https://localhost:8900](https://localhost:8900) in your browser. :::note @@ -238,7 +233,6 @@ The steps to launch Resoto UI are dependent on how you installed Resoto. ![Screenshot of Resoto UI setup wizard](../explore-resoto/ui/img/setup-wizard.png) - ## Resoto Shell @@ -248,7 +242,6 @@ Resoto Shell is Resoto's command-line interface. The steps to launch Resoto Shell depend on how you installed Resoto. - 1. Log in to the [AWS CloudFormation console](https://console.aws.amazon.com/cloudformation). @@ -282,7 +275,6 @@ The steps to launch Resoto Shell depend on how you installed Resoto. ``` - Execute the following to access the [Resoto Shell](../../reference/components/shell.mdx) interface: @@ -292,7 +284,6 @@ kubectl --namespace resoto exec -it service/resoto-resotocore -- resh ``` - Execute the following to access the [Resoto Shell](../../reference/components/shell.mdx) interface: @@ -302,7 +293,6 @@ $ docker exec -it resotoshell resh ``` - 1. Make sure that the deployment is available: @@ -318,7 +308,6 @@ $ docker exec -it resotoshell resh ``` - Execute the following to access the [Resoto Shell](../../reference/components/shell.mdx) interface: @@ -328,7 +317,6 @@ $ resh ``` - ![Screenshot of Resoto Shell](../explore-resoto/shell/img/shell.png) diff --git a/docs/how-to-guides/configuration/roll-out-resoto-aws-permissions-with-cloudformation/index.mdx b/docs/how-to-guides/configuration/roll-out-resoto-aws-permissions-with-cloudformation/index.mdx index ddb847ec9..8856b5a84 100644 --- a/docs/how-to-guides/configuration/roll-out-resoto-aws-permissions-with-cloudformation/index.mdx +++ b/docs/how-to-guides/configuration/roll-out-resoto-aws-permissions-with-cloudformation/index.mdx @@ -18,7 +18,7 @@ The source code can be found in the [`someengineering/resoto-cf` GitHub reposito :::note -If you prefer to deploy the StackSet yourself, the S3 URL of the template to create the `ResotoAccess` role is . +If you prefer to deploy the StackSet yourself, the S3 URL of the template to create the `ResotoAccess` role is [https://resotopublic.s3.amazonaws.com/cf/resoto-role.template](https://resotopublic.s3.amazonaws.com/cf/resoto-role.template). ::: @@ -33,7 +33,6 @@ You also need an [AWS Organization](https://aws.amazon.com/organizations) that m ### Deploying the StackSet - 1. Open the [AWS Organizations Console](https://console.aws.amazon.com/organizations/v2/home/accounts) and find the Organization Unit (OU) where you want to deploy the `ResotoAccess` role. The role will be deployed to all accounts in this OU and all child OUs. @@ -82,7 +81,6 @@ You also need an [AWS Organization](https://aws.amazon.com/organizations) that m ![ResotoAccess Role Permissions](./img/resotoaccess_role_permissions.png)![ResotoAccess Role Trust](./img/resotoaccess_role_trust.png) - 1. Open the [AWS Organizations Console](https://console.aws.amazon.com/organizations/v2/home/accounts) and find the Organization Unit (OU) where you want to deploy the `ResotoAccess` role. The role will be deployed to all accounts in this OU and all child OUs. @@ -110,13 +108,11 @@ You also need an [AWS Organization](https://aws.amazon.com/organizations) that m ::: - ### Configuring Resoto to Assume the `ResotoAccess` Role and Scrape the Organization - 1. Open the `resoto.worker` configuration and locate the **Aws** section. @@ -130,7 +126,6 @@ You also need an [AWS Organization](https://aws.amazon.com/organizations) that m 3. Save the configuration. - 1. In Resoto Shell, execute `config edit resoto.worker` and locate the `aws` section. @@ -148,7 +143,6 @@ You also need an [AWS Organization](https://aws.amazon.com/organizations) that m The `assume_current` and `do_not_scrape_current` options depend on your organization setup. They control whether Resoto should assume the role inside the account it is running in, or just collect that account with the permissions it already has. (For instance, if you deploy Resoto using Kubernetes and it is using a service account that is already using the `ResotoAccess` role, there would be no need to assume the same role again.) - ## Further Reading diff --git a/docs/how-to-guides/data-sources/collect-aws-resource-data.mdx b/docs/how-to-guides/data-sources/collect-aws-resource-data.mdx index 529ce91ee..642ee2377 100644 --- a/docs/how-to-guides/data-sources/collect-aws-resource-data.mdx +++ b/docs/how-to-guides/data-sources/collect-aws-resource-data.mdx @@ -38,11 +38,8 @@ This guide assumes that you have already [installed](../../getting-started/insta **Resoto supports the authentication mechanisms described in the [Boto3 SDK documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html).** You can authenticate with [AWS](../../reference/unified-data-model/aws.mdx) via an instance profile, an access key, or profiles. These credentials can be defined in the Resoto Worker configuration or as environment variables. - - - 1. Configure an [instance profile](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2_instance-profiles.html). @@ -101,7 +98,6 @@ This guide assumes that you have already [installed](../../getting-started/insta ``` - :::note @@ -133,7 +129,6 @@ Access keys in the configuration are visible to anyone with access to your Resot ``` - 1. Create a file `~/.aws/credentials` with the desired profiles: @@ -213,11 +208,8 @@ Access keys in the configuration are visible to anyone with access to your Resot ::: - - - :::note @@ -345,7 +337,6 @@ You can specify a profile using `AWS_PROFILE` and, for local testing, SSO authen ``` - ### 3. Authorize Resoto Access to AWS @@ -354,7 +345,7 @@ See [How to Roll Out Resoto AWS Permissions with CloudFormation](../configuratio :::info -If you prefer to deploy the role yourself, the S3 URL of the template to create the `ResotoAccess` role is . +If you prefer to deploy the role yourself, the S3 URL of the template to create the `ResotoAccess` role is [https://resotopublic.s3.amazonaws.com/cf/resoto-role.template](https://resotopublic.s3.amazonaws.com/cf/resoto-role.template). ::: diff --git a/docs/how-to-guides/data-sources/collect-digitalocean-resource-data.mdx b/docs/how-to-guides/data-sources/collect-digitalocean-resource-data.mdx index 3cd0fe356..97f9158b4 100644 --- a/docs/how-to-guides/data-sources/collect-digitalocean-resource-data.mdx +++ b/docs/how-to-guides/data-sources/collect-digitalocean-resource-data.mdx @@ -38,121 +38,114 @@ This guide assumes that you have already [installed](../../getting-started/insta **DigitalOcean uses [access tokens](https://cloud.digitalocean.com/account/api/tokens) to authenticate API requests.** You can provide access tokens to Resoto via the Resoto Worker configuration or environment variables. + - + 1. Open the [Resoto Worker configuration](../../reference/configuration/index.mdx) via the [`config` command](../../reference/cli/config) in [Resoto Shell](../../reference/components/shell): -1. Open the [Resoto Worker configuration](../../reference/configuration/index.mdx) via the [`config` command](../../reference/cli/config) in [Resoto Shell](../../reference/components/shell): - - ```bash - > config edit resoto.worker - ``` - -2. Modify the `digitalocean` section of the configuration as follows, adding your API tokens and/or access keys: - - ```yaml - digitalocean: - # highlight-start - # DigitalOcean API tokens for the teams to be collected - api_tokens: - - 'dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' - # DigitalOcean Spaces access keys for the teams to be collected, separated by colons - spaces_access_keys: [] - ... - # highlight-end - ``` - - - - - -**Instead of specifying API tokens or secret access keys in the [Resoto Worker configuration](../../reference/configuration/index.mdx) directly, it is possible to define them using the [`--override` flag or `RESOTOWORKER_OVERRIDE` environment variable](../../reference/configuration/index.mdx#overriding-individual-properties).** - -1. Set the `RESOTOWORKER_OVERRIDE` environment variable: - - - - + ```bash + > config edit resoto.worker + ``` - - Add a environment variable definition to the `resotoworker` service in `docker-compose.yaml`: + 2. Modify the `digitalocean` section of the configuration as follows, adding your API tokens and/or access keys: - ```yaml title="docker-compose.yaml" - services: - ... - resotoworker: + ```yaml + digitalocean: # highlight-start - environment: - - RESOTOWORKER_OVERRIDE="digitalocean.api_tokens=dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxx" - # highlight-end + # DigitalOcean API tokens for the teams to be collected + api_tokens: + - 'dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' + # DigitalOcean Spaces access keys for the teams to be collected, separated by colons + spaces_access_keys: [] ... - ... + # highlight-end ``` - - Recreate the `resotoworker` container with the updated service definition: + + - ```bash - $ docker-compose up -d - ``` + **Instead of specifying API tokens or secret access keys in the [Resoto Worker configuration](../../reference/configuration/index.mdx) directly, it is possible to define them using the [`--override` flag or `RESOTOWORKER_OVERRIDE` environment variable](../../reference/configuration/index.mdx#overriding-individual-properties).** - :::note + 1. Set the `RESOTOWORKER_OVERRIDE` environment variable: - [Docker Compose V2 integrated compose functions in to the Docker platform.](https://docs.docker.com/compose/#compose-v2-and-the-new-docker-compose-command) + + - In Docker Compose V2, the command is `docker compose` (no hyphen) instead of `docker-compose`. + - Add a environment variable definition to the `resotoworker` service in `docker-compose.yaml`: - ::: + ```yaml title="docker-compose.yaml" + services: + ... + resotoworker: + # highlight-start + environment: + - RESOTOWORKER_OVERRIDE="digitalocean.api_tokens=dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxx" + # highlight-end + ... + ... + ``` - + - Recreate the `resotoworker` container with the updated service definition: - + ```bash + $ docker-compose up -d + ``` - - Create a secret: + :::note - ```bash - $ kubectl -n resoto create secret generic resoto-auth \ - --from-literal=RESOTOWORKER_OVERRIDE="digitalocean.api_tokens=dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxx" - ``` + [Docker Compose V2 integrated compose functions in to the Docker platform.](https://docs.docker.com/compose/#compose-v2-and-the-new-docker-compose-command) - - Update `resoto-values.yaml` as follows: + In Docker Compose V2, the command is `docker compose` (no hyphen) instead of `docker-compose`. - ```yaml title="resoto-values.yaml" - ... - resotoworker: - ... - # highlight-start - extraEnv: - - name: RESOTOWORKER_OVERRIDE - valueFrom: - secretKeyRef: - name: resoto-auth - key: RESOTOWORKER_OVERRIDE - # highlight-end - ... - ``` + ::: - - Deploy these changes with Helm: + + - ```bash - $ helm upgrade resoto resoto/resoto --set image.tag={{imageTag}} -f resoto-values.yaml - ``` + - Create a secret: - + ```bash + $ kubectl -n resoto create secret generic resoto-auth \ + --from-literal=RESOTOWORKER_OVERRIDE="digitalocean.api_tokens=dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxx" + ``` - + - Update `resoto-values.yaml` as follows: - - Export the `RESOTOWORKER_OVERRIDE` environment variable: + ```yaml title="resoto-values.yaml" + ... + resotoworker: + ... + # highlight-start + extraEnv: + - name: RESOTOWORKER_OVERRIDE + valueFrom: + secretKeyRef: + name: resoto-auth + key: RESOTOWORKER_OVERRIDE + # highlight-end + ... + ``` - ```bash - $ export RESOTOWORKER_OVERRIDE="digitalocean.api_tokens=dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxx" - ``` + - Deploy these changes with Helm: + + ```bash + $ helm upgrade resoto resoto/resoto --set image.tag={{imageTag}} -f resoto-values.yaml + ``` + + + - - Restart the `resotoworker` process. + - Export the `RESOTOWORKER_OVERRIDE` environment variable: - + ```bash + $ export RESOTOWORKER_OVERRIDE="digitalocean.api_tokens=dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxx" + ``` - + - Restart the `resotoworker` process. - + + + ### 3. Trigger Resource Collection diff --git a/docs/how-to-guides/data-sources/collect-google-cloud-resource-data.mdx b/docs/how-to-guides/data-sources/collect-google-cloud-resource-data.mdx index b664463fc..cabc74100 100644 --- a/docs/how-to-guides/data-sources/collect-google-cloud-resource-data.mdx +++ b/docs/how-to-guides/data-sources/collect-google-cloud-resource-data.mdx @@ -38,7 +38,6 @@ This guide assumes that you have already [installed](../../getting-started/insta **You can authenticate with [Google Cloud](../../reference/unified-data-model/gcp.mdx) via service account JSON files or automatic discovery.** - 1. Open the [Resoto Worker configuration](../../reference/configuration/index.mdx) via the [`config` command](../../reference/cli/config) in [Resoto Shell](../../reference/components/shell): @@ -113,7 +112,6 @@ This guide assumes that you have already [installed](../../getting-started/insta ::: - You can specify an empty string for the service account file, and Resoto will automatically discover the service account and all the projects it has access to. @@ -141,7 +139,6 @@ You can specify an empty string for the service account file, and Resoto will au ``` - ### 3. Trigger Resource Collection diff --git a/docs/how-to-guides/data-sources/collect-kubernetes-resource-data.mdx b/docs/how-to-guides/data-sources/collect-kubernetes-resource-data.mdx index 2934baf0c..492db13b4 100644 --- a/docs/how-to-guides/data-sources/collect-kubernetes-resource-data.mdx +++ b/docs/how-to-guides/data-sources/collect-kubernetes-resource-data.mdx @@ -38,7 +38,6 @@ This guide assumes that you have already [installed](../../getting-started/insta **You can authenticate with Kubernetes via kubeconfig files, manual configuration, or both.** - **The easiest way to configure access to Kubernetes is via [kubeconfig files](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig).** @@ -125,7 +124,6 @@ This guide assumes that you have already [installed](../../getting-started/insta ::: - **Instead of exposing a [kubeconfig file](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig) to Resoto Worker, you can alternatively supply credentials manually.** @@ -167,7 +165,6 @@ The required values can be found in the [kubeconfig file](https://kubernetes.io/ ::: - ### 3. Trigger Resource Collection diff --git a/docs/how-to-guides/infrastructure-apps/install-and-run-infrastructure-apps.mdx b/docs/how-to-guides/infrastructure-apps/install-and-run-infrastructure-apps.mdx index d753da90a..006bbc176 100644 --- a/docs/how-to-guides/infrastructure-apps/install-and-run-infrastructure-apps.mdx +++ b/docs/how-to-guides/infrastructure-apps/install-and-run-infrastructure-apps.mdx @@ -8,7 +8,7 @@ Resoto infrastructure apps are low-code applications can be installed to extend Infrastructure apps can perform simple tasks like [cleaning up untagged resources](../cleanup/clean-up-untagged-resources.mdx), finding abandoned load balancers, or sending notifications to [Slack](../alerting/send-slack-notifications/index.mdx), [Discord](../alerting/send-discord-notifications/index.mdx), or [PagerDuty](../alerting/create-pagerduty-alerts/index.mdx). -:::info How safe are Resoto infrastructure apps? +:::info[How safe are Resoto infrastructure apps?] An infrastructure app can not execute any Resoto commands directly. Instead, it generates Resoto commands which are then executed by Resoto. diff --git a/docs/how-to-guides/maintenance/uninstall-resoto.mdx b/docs/how-to-guides/maintenance/uninstall-resoto.mdx index 7b3deacf8..62ee188aa 100644 --- a/docs/how-to-guides/maintenance/uninstall-resoto.mdx +++ b/docs/how-to-guides/maintenance/uninstall-resoto.mdx @@ -16,7 +16,6 @@ Need help or have feedback on Resoto? [Open an issue on GitHub](https://github.c The process to uninstall Resoto is dependent on the installation method used. - 1. Log in to the [AWS console](https://console.aws.amazon.com). @@ -34,7 +33,6 @@ The process to uninstall Resoto is dependent on the installation method used. ::: - In the directory where you installed Resoto (containing the file `docker-compose.yaml`), run the following command: @@ -52,7 +50,6 @@ In Docker Compose V2, the command is `docker compose` (no hyphen) instead of `do ::: - Run the following command: @@ -62,5 +59,4 @@ $ helm uninstall resoto ``` - diff --git a/docs/how-to-guides/maintenance/update-resoto.mdx b/docs/how-to-guides/maintenance/update-resoto.mdx index 1a039bdf5..1852edb2a 100644 --- a/docs/how-to-guides/maintenance/update-resoto.mdx +++ b/docs/how-to-guides/maintenance/update-resoto.mdx @@ -8,153 +8,149 @@ sidebar_position: 1 We regularly release [new versions of Resoto](/releases) with bug fixes and new features, and recommend keeping your Resoto installation up to date. + - + ## Prerequisites -## Prerequisites + - [AWS command-line interface](https://aws.amazon.com/cli) -- [AWS command-line interface](https://aws.amazon.com/cli) + - [Helm](https://helm.sh) (version 3 or above) -- [Helm](https://helm.sh) (version 3 or above) + ## Directions -## Directions + 1. Log in to the [AWS CloudFormation console](https://console.aws.amazon.com/cloudformation). -1. Log in to the [AWS CloudFormation console](https://console.aws.amazon.com/cloudformation). + 2. Click **Stacks**. -2. Click **Stacks**. + 3. Enter `ResotoEKS` into the search box, and click on the stack you would like to upgrade. -3. Enter `ResotoEKS` into the search box, and click on the stack you would like to upgrade. + ![ResotoEKS stack in AWS CloudFormation](./img/cf-stack.png) - ![ResotoEKS stack in AWS CloudFormation](./img/cf-stack.png) + 4. Click the **Outputs** tab. -4. Click the **Outputs** tab. + 5. Enter `ResotoEKSConfigCommand` into the search box. There should be exactly one entry. Copy the value (`aws eks ...`). -5. Enter `ResotoEKSConfigCommand` into the search box. There should be exactly one entry. Copy the value (`aws eks ...`). + ![ResotoEKS stack outputs in AWS CloudFormation](./img/cf-output.png) - ![ResotoEKS stack outputs in AWS CloudFormation](./img/cf-output.png) + 6. Open a terminal and execute the copied command. -6. Open a terminal and execute the copied command. + ![Screenshot of ResotoEKS config command in terminal](./img/k8s-access.png) - ![Screenshot of ResotoEKS config command in terminal](./img/k8s-access.png) + 7. List installed Helm charts: -7. List installed Helm charts: + ```bash + $ helm list + ​NAME NAMESPACE CHART APP VERSION + ​resoto resoto resoto-0.7.4 3.3.1 + ``` - ```bash - $ helm list - ​NAME NAMESPACE CHART APP VERSION - ​resoto resoto resoto-0.7.4 3.3.1 - ``` + :::note - :::note + The `APP VERSION` column displays the currently installed version of Resoto. - The `APP VERSION` column displays the currently installed version of Resoto. + ::: - ::: + 8. Add the [Some Engineering Helm chart repository](https://helm.some.engineering): -8. Add the [Some Engineering Helm chart repository](https://helm.some.engineering): + ```bash + $ helm repo add someengineering https://helm.some.engineering + ``` - ```bash - $ helm repo add someengineering https://helm.some.engineering - ``` + 9. Update cached chart information: -9. Update cached chart information: + ```bash + $ helm repo update + ``` - ```bash - $ helm repo update - ``` + 10. Upgrade the `resoto` chart: -10. Upgrade the `resoto` chart: + ```bash + $ helm upgrade resoto someengineering/resoto --atomic --reuse-values --set image.tag={{imageTag}} + ``` - ```bash - $ helm upgrade resoto someengineering/resoto --atomic --reuse-values --set image.tag={{imageTag}} - ``` + + - + ## Prerequisites - + - [Docker](https://docs.docker.com/get-started#download-and-install-docker) -## Prerequisites + - [Docker Compose >= 1.29](https://docs.docker.com/compose/install) -- [Docker](https://docs.docker.com/get-started#download-and-install-docker) + ## Directions -- [Docker Compose >= 1.29](https://docs.docker.com/compose/install) + 1. Fetch the `docker-compose.yaml` file for the latest Resoto version. See the [list of versions](https://github.com/someengineering/resoto/releases) if you want to use a specific version. -## Directions + ```bash + $ curl -Lo docker-compose.yaml {{dockerComposeUrl}} + ``` -1. Fetch the `docker-compose.yaml` file for the latest Resoto version. See the [list of versions](https://github.com/someengineering/resoto/releases) if you want to use a specific version. + 2. Restart the services defined in the `docker-compose.yaml` file: - ```bash - $ curl -Lo docker-compose.yaml {{dockerComposeUrl}} - ``` + ```bash + $ docker-compose up -d + ``` -2. Restart the services defined in the `docker-compose.yaml` file: + :::note - ```bash - $ docker-compose up -d - ``` + [Docker Compose V2 integrated compose functions in to the Docker platform.](https://docs.docker.com/compose/#compose-v2-and-the-new-docker-compose-command) - :::note + In Docker Compose V2, the command is `docker compose` (no hyphen) instead of `docker-compose`. - [Docker Compose V2 integrated compose functions in to the Docker platform.](https://docs.docker.com/compose/#compose-v2-and-the-new-docker-compose-command) + ::: - In Docker Compose V2, the command is `docker compose` (no hyphen) instead of `docker-compose`. + - ::: + :::info - + Resoto publishes packages for both x86 and ARM architectures for stable releases, but `edge` versions are only available for x86. - :::info + If you have an Apple Silicon or other ARM-based machine, please use the latest stable release ( or `latest`). - Resoto publishes packages for both x86 and ARM architectures for stable releases, but `edge` versions are only available for x86. + ::: - If you have an Apple Silicon or other ARM-based machine, please use the latest stable release ( or `latest`). + - ::: + + - + ## Prerequisites - + - [Helm](https://helm.sh) (version 3 or above) - + ## Directions -## Prerequisites + 1. List installed Helm charts: -- [Helm](https://helm.sh) (version 3 or above) + ```bash + $ helm list + ​NAME NAMESPACE CHART APP VERSION + ​resoto resoto resoto-0.7.4 3.3.1 + ``` -## Directions + :::note -1. List installed Helm charts: + The `APP VERSION` column displays the currently installed version of Resoto. - ```bash - $ helm list - ​NAME NAMESPACE CHART APP VERSION - ​resoto resoto resoto-0.7.4 3.3.1 - ``` + ::: -:::note + 2. Add the [Some Engineering Helm chart repository](https://helm.some.engineering): -The `APP VERSION` column displays the currently installed version of Resoto. + ```bash + $ helm repo add someengineering https://helm.some.engineering + ``` -::: + 3. Update cached chart information: -2. Add the [Some Engineering Helm chart repository](https://helm.some.engineering): + ```bash + $ helm repo update + ``` - ```bash - $ helm repo add someengineering https://helm.some.engineering - ``` + 4. Upgrade the `resoto` chart: -3. Update cached chart information: - - ```bash - $ helm repo update - ``` - -4. Upgrade the `resoto` chart: - - ```bash - $ helm upgrade resoto someengineering/resoto --atomic --reuse-values --set image.tag={{imageTag}} - ``` - - + ```bash + $ helm upgrade resoto someengineering/resoto --atomic --reuse-values --set image.tag={{imageTag}} + ``` + diff --git a/docs/reference/api/abort-a-batch-update.api.mdx b/docs/reference/api/abort-a-batch-update.api.mdx index aa2825874..42ff95ed6 100644 --- a/docs/reference/api/abort-a-batch-update.api.mdx +++ b/docs/reference/api/abort-a-batch-update.api.mdx @@ -22,22 +22,118 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Abort a batch update

+

+ Abort a batch update +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Abort a batch update. ## Request -

Path Parameters

- -Ok message - -
Schema
    - -string - -
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + Ok message + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/add-or-update-the-current-defined-configuration-model.api.mdx b/docs/reference/api/add-or-update-the-current-defined-configuration-model.api.mdx index e62f18182..351c7f608 100644 --- a/docs/reference/api/add-or-update-the-current-defined-configuration-model.api.mdx +++ b/docs/reference/api/add-or-update-the-current-defined-configuration-model.api.mdx @@ -5,7 +5,7 @@ description: "Add or update the current defined configuration model." sidebar_label: "Add or update the current defined configuration model." hide_title: true hide_table_of_contents: true -api: eJztXetv2zYQ/1c0YR8awE3StAhWfxnSB7CiWBe02b7YXsBIdMxWJlWSamK4/t93R+pBW7aT9DUrvQZobIq8O97veA+6V89jyy5N3B/EiZJjcXn+iWUiZVYoGY96seYfC27sM5XO4v48TrlJtMjd0378XE3zjFseTVXKs0jpKGfaRmoc2Uk5uB/3kLDl0uJ6lueZSBz1g/cGicxjk0z4lLWpv+BjIQW+QYos+iBkCtTsLOfwlGnNZvBWWD41uFhJ/tcY9jGvZqiL9zyxMIVl2Z2f5FrlXFvBHe3xRydpOclYLeQlTFqW9wz2PC6ybBZ9LECHY8HTSLIpr/Th5F8sYAfCZkjnNQw8Y4bHC1B0KpDWVEhmlUZmpQSzN0ACJutCWjHl56UWpqBJFAL158Xpx4nQSZEx/eCdG0Hye6ghaR8fBeK3dh8sFAioXzhaVQLIJqbFdK2ugQe/5Dpe9OohWUwvcGS0Tk+OFssiMLaiVJAwUbUEt3f97Xh5Wht5cekZbTKsFts1PECV6grwdjzMCpMIOXDNLEyYcM2XjOCNm/La2YbD6vgJYdUJrMaZYpaw6gRWqSoucJjA6gBYF0plnMkvQqui+MzTqPEHvl9F7wUQCIlhLP5qgmdAxBNFZSwb2lK8X5N7eMAGzYAP81UIqdxTbfqNWkttBPtYazGlAC5tqbFs5TDN7pzhtQ7LecblpZ3cLnuqDoRfUzMtV/gTcTeCaPXbCObMWq5vmdxpMP3rPCrX9IAWsyHBaMJMZFXEUjRweHWHg9WIdOtzVTLddq6aRDB0FD9bYvwtnD7Z8c7YcVXQNOA14WOvdoAbH5dp26bHVaaw6TkFp/sTnCiT+76ZHEUcijj3KeJQ9bj7Poeu0DqEFV2hdQcrukLrEFh1ldJgEhQdezEVHT+q6Fhf81FmTJkxZcYUFCgzJqwoM+44VpQZdwis7tzfN8vCzHgvvm+Z8XLef6fU+IcnwMsMhZRcr0P+x8oVDJ7g0aIag2oMqjEovFKNQVhRjXE/sKIao0NgfbcaY7kkCK/y6fb9xhqje/XFBQybWxj1piTslYwSIIGshQSbFZbJhPe86lJsrwIrR6GQkZPM7Mct5FeYr2nSAiqgw6hZVuOTuA6x66p3a1XwDYqWbMmYt2i60SwwqwoF3MImM70ZrCX7CkliK5zQPCQbmPBarYgVMhG8rshgu5xU7kTwMSsyiMRjlhm+iuJNe3inQAWTYsokkGYpg8MVBTPWbCUwvtNw0Lm/80J+kOpKnuN8s2GvobybjC6wBgZVBUsSnoPvLMsPHILdR5kw6FCFbFoGUdemgOnGKO38jRNjRcMiwVdMz3CD9fTKiMEfXTM0PZg6j4aVyMO4Hw2GzjgeDeNe5F8eDcHjuEnYzBjMeQwPosUQ99zyGWnqWhNZdrrtsGw6qYsQBN9Geb3RPy3v/CQyzsdFaaOCK1e44Rn8wGegb1nHMNSzZ2p2y9Mtl3oIZ+m0FwF2g1KU2HJj92HDGCaWI1EdZ1a1hLNdZXsMCoOHaBR18vMoSE6OUecBG6MSwbJzw5MCPObsvMwxWow3qGU957pgj/998Psvx8fHnw8PDz8/HQ7T+dFiD389XjyEJ4eHe37MvZk/8c+eLH6NV6REl72C26DynHHpblcFbTyY1UXr4J5NVoIrOm9VwADawb4ToKTvfrXpb/PPeA1hVKETvt+SJKDsmpFryo2JDzyTXmnMozY3WOhdix+/4FuYekc7WlEpKBJbkntV3B0Emh5tUvVYaVvIQBuhqbYVAjalubTeRtwZ3aoOY+QK5Y3W2eblp0bV1CqPrQOC2+4a9qPwfFb5oAuAJleyTEmODg/bXvmv1z7kVR3hwKXIU5cyly7aOYyYesKpJ5yqSbpSu3dY0ZVad7CiK7UOgdWdj+3pDo56wjvz2epPmxjTvxG4V3ZMPeEUnKgnvAuZHEUcijj3KeJQ9bj7Poeu0DqEFV2hdQcrukLrEFjUE74rRQf1hFNmTJkxBYUdCAqUGXcHK8qMu4MVZcYdAqs79/fUE757CTD1hFONQTUG1RgUXqnG6DxWVGN0ByuqMToEFvWE72KN0b36gnrCb9I09YRTTzj1hFNP+BotUU849YRTT/i37Al/sq4N/E/wu+ySe9Xz6zxjQvqkgmutULCg/dvya3vgprj7urrxu+0dW7nMSeoipm8xd/RrVbpgm0b+O80L7brLm28kn3I7Uag+OILJxB/FCbw98PPNgQ86EHO4/gQqceAWOoMpE2tz0z84mE+UsYv+PAesFzDzE9MC46zzlfjMq6WMinGmEpa5YcylYM3y49+egh5hh6BkbIF/23zr+kvye+T3yO/9r35PyLFyLqn0f29BkVZFzxUkUm9fvjuLTk5foQsAIp7jP4/8MTd26kv+cgtf7LDWZ/+B6wR2zj/NS1c2iEtXhifdOTPYh3dLg3g+Rxz/1tligcPga/QMxkeNF8N3QHICxQN+mgUQQxLp0lLntx+eoQA4HUDD1Hb1v/BA2PyKE5fjb507Chzy6cnZ8z/cRUA6c1dTIDsMa3aF2MDf/XgIP/BGOW34ewgcn8cZk5cFxB2Y4wnjn/8ArzlxCA== +api: eJztWNtuEzEQ/RVj8QBSaEKpIpoXFFokEOKiEnhpQ+XszmYNXnuxvW2iZf+dGXvbXLY38QIPSaVmPT6esc+Mj72puRdzx0enPDE6k/PzC6FkKrw0mk973MKvCpx/bdIlH9U8BZdYWYbeET8yRanAAytMCooZy0phPTMZ83lr3OM9cuxBexovylLJJHjv/3DkpOYuyaEQXe/HkEktqUEeBfspdYre/LIE7BXWiiU2pYfC0WCj4VOG66ivEGb2AxJPI6RXZPjirdTz9+Sm6d0O+1gVM7D3wl4bo0Doe3HHwsNEFnAvcEwrepC7e0ExMYtbcZtEj5mThGepTMgk7JJd5mCBCaXYT1g6JnTKsDCwFJhAuwtMug63x+ggBp02PQ4LQW5DTrJfFMljKe1hFMCRttIeaTkPaR1xqf2L/RumRmiWC8eGOEvspIIqsC6KquCj5/gsFvF5SAtdC+NMIoU6d5BUVvrluQ5p7QaOa3lg5FJ4D5b6vz959Wg4HP4eDAa/D8/O0nq/eUpfL5pn2DMYPI220KgPYt9B85hvzXImHJFRWlOC9RJcYEuLgkhtK357orQnpQW0eVvB9sQnuPVoRNyG0rEEi8FUaKAq2AsTaP2Hr67/rj8CXm1rC85UNoG9zkzWPAdNufa8qqvTGKTXVtC0Gw0HYhjhWbTP4I6gmVAOqNQ2KEUiSVl6nLgNyrZienob1ZmxvtJrbKyXapcQrCmLkhZrJGyMO+lwTm95vrU6u7EilF1BWYRepzcu94bw02a62p9xV+KHYK40OlBT8/3BoKu8n94zuabhDKNUJZ4JkDJXJQk4l1VKLXfSvpP2nbTvpH0n7f+LtB/cpOYfUK/FHCL1sCiVkNoF6sFaYzdV3MPC9wNkU79bmWkLqYnhtrZVmtIrQDwpgv9rKknu8fCIbxiVDYfE6v2gAJ8bog+3YJLHrZhjsx/xrh+QaHdgL5CSkNzKKoTk3pdu1O/XuXG+GdUl5rpB5IWwUsxUPOOoL9KSiUrhI1cmESqYcRU0ZrP75SHyiCtEkukkO1m9A73Z6d5O93a69091T+rMBElq9e8EifSGHRm8vZy8+TJh48/vSALQSYz47Xnc5s4XIshau4S/FqyNBV1r45p0YrigT3UrZVc/rlABRTHDdURZOuV1TXn8alXTkBm1xi7RPl2pGLXQZQ4iRUIpxXhzC3fBoNvPJjQBgmPS6P68fROntMURY7y9l/5O7HRNkD+PJ0dvqezan39o7mi24pJyg/9H/Az/sGECG0Fug73mSuh5hecOYqJj+vwBoGdSsQ== sidebar_class_name: "patch api-method" info_path: docs/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,1110 +22,7178 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Add or update the current defined configuration model.

+

+ Add or update the current defined configuration model. +

- - - + + + Add or update the current defined configuration model. ## Request -

Body

array
- -Complete model or part of the model. - -
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
- -OK if the model is updated successfully - -
Schema
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
- -Message that explains the error - -
Schema
    - -string - -
+ + +
+ +

+ Body +

+ array + +
+
+ + + Complete model or part of the model. + + +
+
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+
+
+ + +
+ + + OK if the model is updated successfully + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+ + + Message that explains the error + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/add-or-update-the-current-defined-model.api.mdx b/docs/reference/api/add-or-update-the-current-defined-model.api.mdx index d5e3f4570..db86c5b32 100644 --- a/docs/reference/api/add-or-update-the-current-defined-model.api.mdx +++ b/docs/reference/api/add-or-update-the-current-defined-model.api.mdx @@ -5,7 +5,7 @@ description: "Add or update the current defined model." sidebar_label: "Add or update the current defined model." hide_title: true hide_table_of_contents: true -api: eJztXetvEzkQ/1f2rPtApdCWgqojX06lIB1CB1Xp3ZcmV7m7TmPY2IvtpY3C/u83Y+8ryaaP43HdMiBB1mvPjH8znofLkAVz/MKy4Smb6USkbDxgGTd8JpwwOLxgCh7YkF0Ynk3PZMIGTCp4zribwmdxxWdZihOMsNppGEqEjY3MnNQ472QqIpkI5eREChPpSeRgxFODuUZ8yqURCRs6k4sBs/FUzDgbLpibZ0jVOiPVBSuKcZgsrHuhkznOWOZzqFEOJyK/j0ibCPbhKn5+cBsYxlo5EAbX8yxLZcxx/c4Hi0QWLf7L1F+KiVQSH5Aijz5KhUiUQnJj+ByBcWJmcbFW4t3Eo1fO0OcfROxgCk/TO7/JjM6EcVJ42pNPah2fLtQneZrOo085TxH6JEJFVnh4+YsCdiCd194bGHjBrWAIdCKR1kwq7rRBZqUE87fBFkwO6pyJsxKFGSCJQiB+QZwhi6WJ85SbR+/9CJLf8qbjnu61xF/bfWuhRIWGheNVEEA2OctnnVgDD3EhDCsG9ZDKZ+c4Mu7CydPiafSZp3kJkLRRtQS3d/XteAVaG3kJFRhtMqw1th08AEp9Cfr2POwKkwg5CMMdTJgKI5aM4K2f8sbbhtfV/jPSVS90NUk1d6SrXugq0fk5DpOyeqCsc61TwdV/0lZF8UWgUesf+H4VvZdAoE0MY/FXEzwBIoEogrFsaEvxviP3CAo7bQZCmK9CSOWeatNvYC3RaO2j02JKAXzaUutyLYdpducNb+2wnKVCXUDWeqvsqToQYU3NtMpH/Ym4G0G0+usIQkYNSfctkzsDpn+VReWaAdDirk0wmnIbOR3xBA0cPt3hYDUi3fpclUyvO1dNIth2FD9bYvwtnD7Z8b2x46qgaZTXhI+t2gFufF2mbZteV5nCpvcUnB5OcKJM7vtmchRxKOI8pIhD1eP99zl0hdYjXdEVWn90RVdoPVJWXaU0OmkVHVuMio4fVXR013yUGVNmTJkxBQXKjElXlBn3XFeUGfdIWf25v2+WtTPjLfbQMuPlvP9OqfEPT4CXGUqlhOnS/I+VqzV4gEeLagyqMajGoPBKNQbpimqMh6ErqjF6pKzvVmMslwTtq3y6fb+xxuhffXEOw/YWRr0pCXutohhIIGupwGal4yoWgwBdgu1VYOUoFDLyktlttqb5FeYdTVpABTCMmmW1fmLfIXZV9W6tCr4B6ND+dhukG2SBWVUo4BY2menNylqyrzbJpm+uJtsy4U5U5AqZCD5XZLBdTml/IsSE5ylE4glPrVjV4k17eK8Bgmk+4wpI84TD4YpaMzq20jK+o/agd39nufqo9KU6w/l2w17b8m4yupY1cKgqeByLDHxnWX7gEOw+SqVFhypV0zKIWNscplurjfc3XowVhGWMn7iZ4wbr6ZURt5skF9GoEnnEhtHpyBvHkxEbROHj3gg8jp+EzYytOU/hRVSMcM9rPiNJfGsiT4+uOyybTmrRVkJoo7za6J+Wd34QWe/joqSB4NIXbngGP4o54K3qGIY4B6b2fnm65VIP1Vk67aKlu9NSFOaEdduwYQwTy5GojjOrKOFsX9nuA2DwEo2iTn6etJKTfcS8xcbqWPL0zIo4B485PytzjDXGG2Dp5lwX7OyfR7//sr+//2V3d/fL89EoWewVW/jX0+IxvNnd3Qpj/mHxLLx7VvzKVqREl72it6ZxuHS3q4Kudv6u63PJ+aHz1jkMoB1sewFK+v6vdfrX+We8hrA6N7HYXpOkRdl3RteUGxM/DUwGpTGP17nBwuBawvi5uIZpcLTjFUgBSGxJHlRx97SF9HgT1BNtXK5aaLRNdR0QsCkjlAs24s/otXBYq1Yob7TOdV5halRNrfLYOiD47XawH7fPZ5UP+gBoM63KlGRvd3fdK797E0Je1REOXPIs8Slz6aK9w2DUE0494VRN0pXag9MVXan1R1d0pdYjZfXnx/Z0B0c94b352epPmxjTvxF4UHZMPeEUnKgnvA+ZHEUcijgPKeJQ9Xj/fQ5dofVIV3SF1h9d0RVaj5RFPeH3peignnDKjCkzpqBwD4ICZcb90RVlxv3RFWXGPVJWf+7vqSf8/iXA1BNONQbVGFRjUHilGqP3uqIaoz+6ohqjR8qinvD7WGP0r76gnvCbkKaecOoJp55w6gnvQIl6wqknnHrCv2VP+LOuNvA/we/yCxGgF1dZyqUKSYUwRqNgrfZvJ67cjp/i7+s2fhm5Z7dyrBIfMUOLuadfQ+mDbdJ8B/lMuKlGwODQxdNw+KbwuOO/FX1nUX3VerET4g2EG2E+V9/HnpsU5k6dy+xwZ2cx1dYVw0UGai5g5mduJIZY7ybxXUCkDIgs1TFP/TCmUbBm+fVvzwHCwn/ZOna/HzdfuP6KXB65PHJ5/6vLk2qivTcqXd8xAOl0dKghhzp+9f4kOjh6jS4AiASOfz8Jx9y6Waj2yy3cwVd1p/otPwkMvEdalF7slHn3BUuHlR/DU+4dGewhuKRTtligDv8yaVHgMPgZM4fxcePBvEYTafFz0p3LLxrfzR4dl4htRQg0HHLwDJDzmcrWK7E6t1ClxWrufSjYADyhmgVIxeqN+OxvClUM/lgNxAuvD4MQj0+QSLN87f8SQSMKKw58sXHt3HErThwdnBz+4W8kkrm/IwM0YdjwS7QU+HPIRvAbHrRHJlyI4PiCpVxd5BAAYU4gjL/+BQvLzaA= +api: eJztWN9v2zYQ/lc4og8N4MZuGhirXgY3KbCh2FqkXl8SL6Clk8WWElWSSi2o+t97R8q2bOVH97Q92AFi8Xi8Ox6/++Rjw51YWR5d81wnoPhixEthRA4ODIkbXuCAR3xlRJndyoSPuCxwXAqX4TOsRV4qUjBgtdMoSsDGRpZOatKbZ8BkAoWTqQTDdMocSrw11DXwtZIGEh45U8GI2ziDXPCo4a4uyap1RhYr3raLoAzWvdFJTRr7fi40xeGA+X0wbRjuw238eeEpOox14TAYWi/KUslY0PrxZ0tGmp7/feuXkMpC0oAsCvZFFpSJLkhhjKgpMQ5yS4t1Ae9Tn71OQy8/Q+xohXQ+Wx/9vt6RmXb0sNpfVb4E86TaG60ViOJJvUvhYC5zeFJxRjv6KXNPKoWDWT+ot5/oGbOS9FkiYxIJU7NvGRhgQin2BWrLRJGwO6EQCkygPCDEDnJ7iQaC00XbwymeSfqVPDmE0il6AYJhhfjM4dYfa4QAd6/O7gmNtFkmLJtilDhJgMoRF3mV8+glPot1eJ7SRnturI6lULcW4spIV98W/liHjju0/5xnrEAsUpr/5/lvv0yn0++TyeT765ubpDlrT+jrVfsCZyaTkyDzg+Y8zJ23z/hBlEthKRml0SUYJ2Gv/jvEHwZ6WMDD4qcVoQylZTGCQVcoIBSc+gA6+/5raH9ojxQ3ZU2cU5kYTgeR9Cx7gtta3uHqOjgZdQhaDL3hQnQjHAvyJTziNBXKAkFtL6WYSGKWEafceprdZXrxUKpTbVxV9LLRh+owIYgpg5QWMOIL49F0WFscWH4QnUNfQZVtVFlQ3R5v2O497hfE35v6DFWJH1KzpS58ahp+NpkMmff9OyZ7HM7QS1UmSDwJs1Ucg7VppVR9pPYjtR+p/UjtR2r/v1D7+X1s/ifytVhBSD2sSyVkYX3qwRht9lncwdqNvco+fx+2Bt7dQVklCbUA4U3h7W9TSXSPL49tR4CtTqaT0NHEWSi+DIdj36OMm03j045Dh4RNCpi7TXdUGYW6mXOljcbjJtPWtVFT4jG3qHknjBRLFV5vNBcykopK4SNXOhbKi3EDtGZ/+tfXmMLWtz70ErvatT9vj5R3pLwj5f2nlCeLVHs26qjvyt9/sAuNP1yu3n6cs9mHP4gC0Ejw+OllKHPrcuEZrdvCv+CqvS1sibDHk+jAM1LTsdg139y0RL0LnO1VT6Cka940dIZ/G9W2JEaeMTXKFzsG8yeaSEvPG3wM4tlyN39+1WXshD1+AXTvFja/vYvacyhiAEd0zIBR7W6i/K+/DESCx0vhhemLEMSLORnZLR+0BASisGKGbUTpHtVd9N4TH2bzi9+pCLp7KMomio34RkjB/xG/wT8caJ8ZT/5e3nAlilWFL0DUCYbp8wPAya9J sidebar_class_name: "patch api-method" info_path: docs/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,1110 +22,7202 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Add or update the current defined model.

+

+ Add or update the current defined model. +

- - - + + + Add or update the current defined model. ## Request -

Path Parameters

Body

array
- -Complete model or part of the model. - -
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
- -OK if the model is updated successfully - -
Schema
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
- -Message that explains the error - -
Schema
    - -string - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+ array + +
+
+ + + Complete model or part of the model. + + +
+
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+
+
+ + +
+ + + OK if the model is updated successfully + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+ + + Message that explains the error + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/add-subscription-to-subscriber.api.mdx b/docs/reference/api/add-subscription-to-subscriber.api.mdx index d8710c2cb..385a114fb 100644 --- a/docs/reference/api/add-subscription-to-subscriber.api.mdx +++ b/docs/reference/api/add-subscription-to-subscriber.api.mdx @@ -22,26 +22,261 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Add subscription to subscriber

+

+ Add subscription to subscriber +

- - - + + + Add a specific subscription to a subscriber. ## Request -

Path Parameters

Query Parameters

- -The subscriber - -
Schema
    subscriptions object
    - -The dictionary of subscriptions, where the key is the message type - -
    property name* Subscription
    - -The definition of an action subscription - -
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + The subscriber + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
    + + + + subscriptions + + object + + +
    +
    + + + The dictionary of subscriptions, where the key is the message type + + +
    +
    + + + + property name* + + Subscription + + +
    +
    + + + The definition of an action subscription + + +
    + + + + + + +
    +
    +
    +
    +
    +
    +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/commit-a-batch-update.api.mdx b/docs/reference/api/commit-a-batch-update.api.mdx index 665e7fec8..af8273360 100644 --- a/docs/reference/api/commit-a-batch-update.api.mdx +++ b/docs/reference/api/commit-a-batch-update.api.mdx @@ -22,22 +22,118 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Commit a batch update

+

+ Commit a batch update +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Commit a batch update. ## Request -

Path Parameters

- -Ok message - -
Schema
    - -string - -
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + Ok message + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/create-a-new-graph.api.mdx b/docs/reference/api/create-a-new-graph.api.mdx index 5c4789181..467cfb7da 100644 --- a/docs/reference/api/create-a-new-graph.api.mdx +++ b/docs/reference/api/create-a-new-graph.api.mdx @@ -22,18 +22,134 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Create a new graph

+

+ Create a new graph +

- - - + + + Create a new graph ## Request -

Path Parameters

- -The created graph with the root node - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The created graph with the root node + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/create-a-new-node-under-the-given-parent-node.api.mdx b/docs/reference/api/create-a-new-node-under-the-given-parent-node.api.mdx index bfb6adb8c..0d4a022ae 100644 --- a/docs/reference/api/create-a-new-node-under-the-given-parent-node.api.mdx +++ b/docs/reference/api/create-a-new-node-under-the-given-parent-node.api.mdx @@ -22,22 +22,204 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Create a new node under the given parent node

+

+ Create a new node under the given parent node +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Create a new node under the given parent node. ## Request -

Path Parameters

Body

- -The node document to create. - -
- -Return the created node - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The node document to create. + + +
+
    + + + + + +
+
+
+
+
+ + +
+ + + Return the created node + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/define-subscriber-with-all-subscriptions.api.mdx b/docs/reference/api/define-subscriber-with-all-subscriptions.api.mdx index 216b62aa1..258fb1dc0 100644 --- a/docs/reference/api/define-subscriber-with-all-subscriptions.api.mdx +++ b/docs/reference/api/define-subscriber-with-all-subscriptions.api.mdx @@ -22,30 +22,311 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Define subscriber with all subscriptions

+

+ Define subscriber with all subscriptions +

- - - + + + Define or redefine a subscriber with all subscriptions. In case the subscriber does not exist, it is created. In case the subscriber exist, all subscriptions get replaced. ## Request -

Path Parameters

Body

array
- -The list of all subscriptions. - -
  • Array [
  • ]
- -The subscriber - -
Schema
    subscriptions object
    - -The dictionary of subscriptions, where the key is the message type - -
    property name* Subscription
    - -The definition of an action subscription - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+ array + +
+
+ + + The list of all subscriptions. + + +
+
    +
  • +
    + Array [ +
    +
  • + + + + + +
  • +
    + ] +
    +
  • +
+
+
+
+
+ + +
+ + + The subscriber + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
    + + + + subscriptions + + object + + +
    +
    + + + The dictionary of subscriptions, where the key is the message type + + +
    +
    + + + + property name* + + Subscription + + +
    +
    + + + The definition of an action subscription + + +
    + + + + + + +
    +
    +
    +
    +
    +
    +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/delete-a-configuration-by-its-id.api.mdx b/docs/reference/api/delete-a-configuration-by-its-id.api.mdx index 5d9f184d0..162edb9c3 100644 --- a/docs/reference/api/delete-a-configuration-by-its-id.api.mdx +++ b/docs/reference/api/delete-a-configuration-by-its-id.api.mdx @@ -22,18 +22,64 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Delete a configuration by its id

+

+ Delete a configuration by its id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Delete a configuration identified by id with provided value. ## Request -

Path Parameters

- -Signals success of this operation. - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + Signals success of this operation. + + +
+ +
+
+
+
+
diff --git a/docs/reference/api/delete-a-node-with-the-given-node-id.api.mdx b/docs/reference/api/delete-a-node-with-the-given-node-id.api.mdx index 07f7cb206..102080d7f 100644 --- a/docs/reference/api/delete-a-node-with-the-given-node-id.api.mdx +++ b/docs/reference/api/delete-a-node-with-the-given-node-id.api.mdx @@ -22,18 +22,69 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Delete a node with the given node id.

+

+ Delete a node with the given node id. +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Delete a node with the given node id. ## Request -

Path Parameters

- -Node is deleted - -
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + Node is deleted + + +
+ +
+
+
+
+
diff --git a/docs/reference/api/delete-a-specific-subscription-from-the-subscriber.api.mdx b/docs/reference/api/delete-a-specific-subscription-from-the-subscriber.api.mdx index 48837f9a5..f2810b429 100644 --- a/docs/reference/api/delete-a-specific-subscription-from-the-subscriber.api.mdx +++ b/docs/reference/api/delete-a-specific-subscription-from-the-subscriber.api.mdx @@ -22,26 +22,232 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Delete a specific subscription from the subscriber.

+

+ Delete a specific subscription from the subscriber. +

- - - + + + Delete a specific subscription from the subscriber. ## Request -

Path Parameters

- -The subscriber - -
Schema
    subscriptions object
    - -The dictionary of subscriptions, where the key is the message type - -
    property name* Subscription
    - -The definition of an action subscription - -
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + The subscriber + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
    + + + + subscriptions + + object + + +
    +
    + + + The dictionary of subscriptions, where the key is the message type + + +
    +
    + + + + property name* + + Subscription + + +
    +
    + + + The definition of an action subscription + + +
    + + + + + + +
    +
    +
    +
    +
    +
    +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/delete-an-existing-graph.api.mdx b/docs/reference/api/delete-an-existing-graph.api.mdx index f333f74d8..72f4bea48 100644 --- a/docs/reference/api/delete-an-existing-graph.api.mdx +++ b/docs/reference/api/delete-an-existing-graph.api.mdx @@ -22,18 +22,139 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Delete an existing graph

+

+ Delete an existing graph +

- - - + + + Delete an existing graph ## Request -

Path Parameters

Query Parameters

- -Ok when the delete operation was successful - -
Schema
    any
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + Ok when the delete operation was successful + + +
+ + + + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/delete-by-id.api.mdx b/docs/reference/api/delete-by-id.api.mdx index 6cfd86a65..e2d6d3097 100644 --- a/docs/reference/api/delete-by-id.api.mdx +++ b/docs/reference/api/delete-by-id.api.mdx @@ -22,18 +22,64 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Delete by id

+

+ Delete by id +

- - - + + + Delete the subscriber with a defined id. ## Request -

Path Parameters

- -no content - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + no content + + +
+ +
+
+
+
+
diff --git a/docs/reference/api/deprecated-add-or-update-the-current-defined-model.api.mdx b/docs/reference/api/deprecated-add-or-update-the-current-defined-model.api.mdx index 7e7b1cf0f..def94e393 100644 --- a/docs/reference/api/deprecated-add-or-update-the-current-defined-model.api.mdx +++ b/docs/reference/api/deprecated-add-or-update-the-current-defined-model.api.mdx @@ -5,7 +5,7 @@ description: "Use /graph/{graph_id}/model instead." sidebar_label: "[Deprecated] Add or update the current defined model." hide_title: true hide_table_of_contents: true -api: eJztXetv2zYQ/1c0YR8awI3TtAhWfxnSB7CiWBe06b7YnsFItM1WJlWSamKo/t93R+ply85jfcxKrwVqmyLvjvc73oPuJXkYcxNpkVqhZDgI3xse9GeapfN+7l4mIl71FyrmSSCksZzFh2EPFqWaR8zyOBxYnfFeaNnMhINh6KaG416o+aeMG/tMxctwkG+wea4WacItDzxlpYOUaRuoaWDnxSCyiZS0XFpcz9I0EcAR1vc/GCSShyaa8wVrU3/Bp0IK/IAUWfBRyBio2WXK4SnTmi3ho7B8YXCxkvyvKcielzPUxQceWZjCkuTOT1KtUq6t4I729JOTtJhkrBZy5vTXlPcc9jzNkmQZfMpYIqaCx4FkC17qw8m/WsEOhE2QzmsYeMYMD1eg6FggrYWQzCqNzAoJlm+ABEzWmbRiwSeFFhagSRQC9efFGYSR0FGWMP3gnRtB8geoIWkfHzfEb+2+sVAgoH7heFMJIJtYZIutugYefMZ1uOpVQzJbXODIeJueHC2WBJ9ZkhUKEiYol+D2rr4dL09rJy8uPaNdhtViu4UHqFJdAt6Oh9lgEiAHrvGcBXOu+ZoRvHFTXjvbcFidPCGsOoHVNFHMEladwCpW2QUOE1gdAOtCqYQz+Z/QKik+8zQq/IHvV9F7AQSaxDAWfzXBcyDiiaIy1g1tLd5vyT08YMN6wIf5MoSU7qky/VqthTYa+9hqMYUALm2psGzlMPXunOG1Dssk4XJm57fLnsoD4ddUTIsV/kTcjSBa/XUEU2Yt17dM7jSY/lUaFGt6QIvZJsFgzkxgVcBiNHB4d4eDVYt063NVML3uXNWJYNNR/GyJ8bdw+mTHe2PHZUFTg1eHj4PKAe58XKRtux6XmcKu5xSc7k9wokzu+2ZyFHEo4tyniEPV4/77HLpC6xBWdIXWHazoCq1DYFVVSo1Jo+g4CKno+FFFx/aajzJjyowpM6agQJkxYUWZccexosy4Q2B15/6+XtbMjA/C+5YZr+f9d0qNf3gCvM5QSMn1NuR/rFyNwVM8WlRjUI1BNQaFV6oxCCuqMe4HVlRjdAis71ZjrJcEzat8un2/scboXn1xAcPmFka9Kwl7JYMISCBrIcFmhWUy4j2vuhjbq8DKUShk5CQzh2EL+Q3mW5q0gAroMKiXVfhErkPsquzd2hR8h6IlWzPmazRdaxaYlYUCbmGXmd4M1pp9NUliK5zQvEm2YcJbtSI2yATwviSD7XJSuRPBpyxLIBJPWWL4Joo37eGdAhXMswWTQJrFDA5X0JixZSsN4ztrDjr3N8nkR6ku5QTnmx17bcq7y+ga1sCgqmBRxFPwnUX5gUOw+yARBh2qkHXLIOraZDDdGKWdv3FibGhYRPiO6SVusJpeGjH4oyuGpgdT82BUijwKB8Fw5Izj0SjsBf7t8Qg8jpuEzYyNOY/hQbAa4Z5bPiOOXWsiS86uOyy7TuqqCYJvo7za6Z/Wd34aGOfjgrhWwaUr3PAMfuRL0LesYhjq2TM1++Xp1ks9hLNw2qsGdsNClNByYw9hwxgm1iNRFWc2tYSzXWV7AgqDh2gUVfLzqJGcnKDOG2yMigRLJoZHGXjM5aTIMVqMd6hlO+eqYA//efD7LycnJ1+Ojo6+PB2N4vx4dYAvj1cP4cnR0YEfcx/yJ/7Zk9Wv4YaU6LI3cBuWnjMs3O2moLUH892+bTzXnB86b5XBANrBoROgoO9e2vSv8894DWFUpiN+2JKkQdk1IFeUaxMfeia9wpjHbW6w0LsWP37Br2HqHe14Q6WgSGxJ7pVxd9jQ9HiXqqdK20w2tNE01bZCwKY0l9bbiDuj16rDGLlBead1tnn5qUE5tcxjq4DgtruF/bh5Pst80AVAkypZpCTHR0dtr/zXax/yyo5w4JKlsUuZCxftHEZIPeHUE07VJF2p3Tus6EqtO1jRlVqHwOrO1/Z0B0c94Z35bvWnTYzp/wjcKzumnnAKTtQT3oVMjiIORZz7FHGoetx/n0NXaB3Ciq7QuoMVXaF1CCzqCd+XooN6wikzpsyYgsIeBAXKjLuDFWXG3cGKMuMOgdWd+3vqCd+/BJh6wqnGoBqDagwKr1RjdB4rqjG6gxXVGB0Ci3rC97HG6F59QT3hN2maesKpJ5x6wqknfIuWqCecesKpJ/xb9oQ/2dYG/if4XTbjXvX8Kk2YkD6p4ForFKzR/m35le27Ke6+rmr8bntHrB64nSvcN5ydaO7P0Bw++t9tDp8N159hDw6NTCfwaG5tagb9fj5Xxq4GeQrgrGDmZ6YFBkbn3PCZ30cRxsJERSxxw5j8wJr1x789hY2DSKAV7Fl/W/+a9JfkqMhRkaP6Xx2VkFPlfEjhsN6CIq0KnivIfN6+fHcenJ69QhcARDzHvx/5Y27swtfoxRaGL3iqeYQF/jg4jV2C7n+ihQOoUojL7WOfqx5u7iev3V34HrLg/kyzdN7P3ctExKt+8dMyJOS9LD6sU8uGbwTxnD/LC5c3DL3Lg9165zUM8xzRfq+T1QqHwSPpJYyPa1+Hn4DQHLjgl1RgCJAbumzTyffwHNnidIAWM9bNn8yB4PoVpy51v3buuOGuz07Pn//h6vt46W6cQHYY1uwSEYR/B+EI/sIH5ZTmrxdwPA8TJmcZhBOY4wnjn38B+xh1+A== +api: eJztWN1v2zYQ/1c4Yg8r4MZuGhirXgY3KbCh2Fqk7l4SLaClk8WWIlWSSm2o+t93Ryr+Ur7etgc7QCQej3fH3939RKnlObjMytpLo3nCPztg46UVdTluw+VG5t24MjkoJrXzIPITPsJFtYVMeMh54m0DI+7F0vHkigdVno64hW8NOP/W5GuetAduzk1VK/DAomVjWS2sZ6ZgvuyF5CYz2oP2tF7UtZLoEdePvzgy0nKXlVCJofULKKSWNCCLgn2VOkdrfl0DzgprxRqH0kPlaLHR8KHA2Ns7DbP4ApmnFdIrEnzyVurlezLTjR5W+6upFmCfVHtrjAKhn9S7QHznsoInFWe0o2eZe1IpJmb1oN4+0DPmJOmzXGYkEnbNvpdggQml2FdYOyZ0zm6FwlJgAuUuIOkG2F6ggeg07UYcVoLMhpwU38iTx1I6QS+AK22jPcJyE9KacKn969N7QiNtVgrHphglTlJBVVgXVVPx5BXei1W8n9JGd9w4k0mhbhxkjZV+faNDWoeO416e6bkW3oOl+X9++e2n6XT6YzKZ/HhzfZ23p90LurzuXuLMZPIiysKgPYtzZ93P/CDKhXAERm1NDdZLcAEtLSoCta/4w0CpJ6XdNu1+4HNsPVoR21A6lmExmAYFVAUnIYDefrgM7Q/tkeJdW1twprEZnAwi2bEceGRjeVtXV9HJqK+gdOgNF6Ib4VmUL+ARp4VQDqjU9iBFIIlZRpywDWy2RTp9COrCWN/oHTR2S3UICNaURUqLNRIa41E4nNMHlh+szqGvqMruVFlU3aQ3bvce92mXbvszdiX+SM3VRgdoWn46mQyZ98N7Jnc4nKGXps7pOcFck2XgXNEotT5S+5Haj9R+pPYjtf9fqP3sPjb/E/laLCFCD6taCXwFCNCDtcbus7iHlR8HlX3+7mmmL6QuuqvAl4b2jb2TlbGHShzGNw0cO7C3uIeQjcYqnCq9r10yHrelcb5L2hqT06HmrbBSLFR8KNFc3EchGoW3XJlMqCBGt7Rmf/rXN7hxDAlRoUfP5fal5d2RqI5EdSSq/5SopC5M4JCesC4RSG/YucHjxuW7T3M2+/gHUQAaiR7/fhXb3PlKBB7qt3B1sflgkbJZntMXh3gwDQnaAEKnSzyrbj5A7O2n3dLdc7+T9OS3w40YXuCztqe8nS8mkbyueNtStj9b1XUkRkaya5SnW66jERoq0QvCToWAB7JwxAvxvZyTW1LH1NKx+PCATcmNK2Z4KK/9o7rpDl1/nM3Pf6fi7L/qUOwotuI7ZRD/J/wa/3BgAmiBlIO85UroZYOPE9SJhun3Lw0mV6E= sidebar_class_name: "patch api-method" info_path: docs/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,15 +22,22 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

[Deprecated] Add or update the current defined model.

+

+ [Deprecated] Add or update the current defined model. +

- + + + - +:::warning deprecated -:::caution deprecated - -This endpoint has been deprecated and may be removed in future versions of the API. +This endpoint has been deprecated and may be replaced or removed in future versions of the API. ::: @@ -38,1100 +45,7161 @@ Use /graph/{graph_id}/model instead. ## Request -

Body

array
- -Complete model or part of the model. - -
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
- -OK if the model is updated successfully - -
Schema
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
- -Message that explains the error - -
Schema
    - -string - -
+ + +
+ +

+ Body +

+ array + +
+
+ + + Complete model or part of the model. + + +
+
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+
+
+ + +
+ + + OK if the model is updated successfully + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+ + + Message that explains the error + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/deprecated-get-the-currently-defined-model-as-svg-uml-image.api.mdx b/docs/reference/api/deprecated-get-the-currently-defined-model-as-svg-uml-image.api.mdx index 233f1a451..063e4614e 100644 --- a/docs/reference/api/deprecated-get-the-currently-defined-model-as-svg-uml-image.api.mdx +++ b/docs/reference/api/deprecated-get-the-currently-defined-model-as-svg-uml-image.api.mdx @@ -22,15 +22,22 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

[Deprecated] Get the currently defined model as svg uml image.

+

+ [Deprecated] Get the currently defined model as svg uml image. +

- + + + - +:::warning deprecated -:::caution deprecated - -This endpoint has been deprecated and may be removed in future versions of the API. +This endpoint has been deprecated and may be replaced or removed in future versions of the API. ::: @@ -38,8 +45,107 @@ Use /graph/{graph_id}/model/uml instead. ## Request -

Query Parameters

- -Returns the model as uml diagram in svg format - -
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + +
+ + + Returns the model as uml diagram in svg format + + +
+ +
+
+
+
+
diff --git a/docs/reference/api/deprecated-get-the-currently-defined-model.api.mdx b/docs/reference/api/deprecated-get-the-currently-defined-model.api.mdx index ecc8bbe9b..b263ff0f2 100644 --- a/docs/reference/api/deprecated-get-the-currently-defined-model.api.mdx +++ b/docs/reference/api/deprecated-get-the-currently-defined-model.api.mdx @@ -5,7 +5,7 @@ description: "Use /graph/{graph_id}/model instead." sidebar_label: "[Deprecated] Get the currently defined model." hide_title: true hide_table_of_contents: true -api: eJztXFlv2zgQ/itcYR8awJu4aRFs/bJIDxRFgW7RpvtiewNGoiO2EqmSVJvA1X/fGVIHZclp0iOos3yyxWNm+M1wDgGjdZQwHSteGC5FNIveaUYOzhUt0oO1/TnlSXWQy4RlhAttGE32owlsKhSLqWFJNDOqZJPI0HMdzeaRXRotJ1FBFc2ZYQqH15GAB6C/yqix+32mL1bEEiEmZSTlTFEVp5dErkgs8yJjF+QDF4kmXBPcb5hgyYSkMku4OCc0y0ihZMGU4UwTKhI7lDN1zhL4MTShhqLUHJl9LJm6hAcdpyyn0WwdmcsCRTuTMmNUWOlWtMxMNFvRTLOqgtMopgspNNO44XA6xZ/+IU5A9oxrg2Ijfysyco2lAIkN7qBFkXGADXYcvNe4be3J0af3lK244PhgKVp6QK0WlipF8RTcsNzKJAX7e2WRrlfIs/csRqxBmBvPdHgi7dVH4eGkjQLYB0rE86/KLLskH0ua8RUH8FHpKD3q1cpfVXACbjKk8xIGHlPNIsQ34Ugr54IaqZBZLcHlK2c3qhSG5+y0RiEHJFEIxM+JM4tiruIyo+reWzuC5Pes0s2DQ0/8wem9jRytzW1cboIAsvG8zEexBh7snKmomrRDoszPcGQ5hpOlRTPyiWZlDRDYdrMFj3fx43g5Wlt5MeEYbTOsAdsRHgCl/Az6tjz0BhOCHOBOg7MgKVOsZwSv7JKX1jasro4eBl3thK5WmaQm6GondJXI8gyHg7J2QFlNHvIt2mooPnY0Wv0D3++i9xQI+MQwFn83wRMg4ogiGH1D68X7kdzDKWzeDbgw34SQxj21pj/x0ztEwzvHqMXUAti0pdXlIIfpTmcNb3BZTjMmzk16veypuRBuT8u03uFuxM0IotVfRbDAZFpdM7lTYPoXBan3YLJOjU+QpFQTIwlN0MDh3w0uVifSte9VzfSqe9Ulgr6j+L8lxj/C6Qc7/mXsuCloOuV14WOvdYBbp+u0bdt0kylsmw/B6e4Ep5DJ/dxMLkScEHHuUsQJ1eOv73PCK7Qd0lV4hbY7ugqv0HZIWW2V0unEKzr2olB03FbRMV7zhcw4ZMYhMw5BIWTGQVchM95xXYXMeIeUtTvv77ttfma8F921zLif998oNb71BLjPkAvB1Jjmb1cub/AYr1aoMUKNEWqMEF5DjRF0FWqMu6GrUGPskLJ+Wo3RLwn8V/nh7ftXa4zdqy/OaN1v9Y1J2AtBYiCBrLkAm+WGith2mQF0CbZXgZWjUMio6dcaaH6D+UiTFjad9XvQGv347Wsjgm8B2rXKXQfpDllg1hQKeIRtZvp1ZfXsyyep2MeSK+aT9TvmxlDhG2Swga8hQ6QiQrpewF633Qaxr53hrQQI0jKnAkjThMLlIt6KkaN4xvfaH7Tu77QUH4T8LE5xvd5yVl/ebUbndyRCVUHjmBUG2xZt+YFDcHrbMAhYcGHt0PVOgii6hOVaS2X9jRVjA2Ee4z+qbJdku7xrOmQXFE0Plq7JohF5Ec3IfGGN4/4imhD393ABHscuyphh3poHMEGqBZ554DOSxLYm0uz1VZdl202tfCU8cZdkq3/qn/yYaOvjSNJB8NkWbrbpkl26DtA6hiHOjqn+tTxdv9RDddZOu/J0N69FiQzTZh8OjGGiH4naOLOJEq62le0RAAaTaBRt8nPfS06OEHOPjZYxp9mpZnEJHvPytM4xBoy3wDLOuS3Yo3/v/fXb0dHRl+l0+uXRYpGsD6s9/HlQ/QEz0+meG7MP64du7mH1e7QhJbrsDb11Tca1u90UtPNgrmV5qM+e80PnLUsYQDvYtwLU9O3PkP5V/hlfQ2hZqpjtDyTxKNsu6pZyZ+Jzx2RSG/NyyA02Otfixs/YFUydo11uQApAYkvypIm7cw/p5TaoV1KZUnho+KY6BARsSjFhnI3YO3olHFqLDcpbrXPIyy0lzdImj20Dgj3uCPulfz+bfBAvcs5MKlGSc2acTafw4Jrj4Vkz9anpdi9VBlOpMYWeHRysU6lNNVsXAFYFKz9RxTFQWWeDc87B12ElymRMMzuMyQjs6U//+Wg6RZGWmFyupPVUtbRvQN1GkicS3N6bZ29PyPHrF8gPxHK4/HPf0dQmdwl6DfT8advQvyTPmbHGUysLPJxLlhIXoPY30V53Le7X/X5A7VoNuzAHRUa5QLEsaOsaV+9LAg6hebReoy2+U1lV4bBr5Ee0E64RzmQ8JPvi3daXBkbPB8Epar+AYI0fHm00aAwCToMBIAWU8M06HM3tObbZg7dr8CEBpNLa5/NnJ2Ag/wEChN3M +api: eJy9Vt1v2zYQ/1c4Yg8r4NluWhirXoasKYpiwDa06V5SL6Clk8WOIhXylMZQ9b/vjpRjxcrX0/wi83ifP/54x04WEHKvG9TOykx+DiAWW6+aatHFz6Uu+kXtCjBC24CgirmckVHjIVcIhczQtzCTqLZBZhcyqsr1TDbKqxoQPIs7aWlB/kujMNqPg34oRXQisAJRafDK59VOuFLkrm4M3Ih/tS2C0EGwPYKFYiYqZwptt0IZIxrvGvCoIQhliyiqwW+hoA+qQqHirDUHu2rB72gR8gpqJbNO4q7h1DbOGVA2Zleq1qDMSmUC9D1V4yE0zgYIbHCyXPLnbhHnlLvRATltjh9T5qi5s5QxsoVqGqMJNrJYfA1s1o3yuOvvDEptNS+ix+iPvA3JKu8VV6ER6piTs/BnGZEeNNzmK+SMNWo0LPiEnuD6nd30s4fV/mjrDfgn1X5LaD2pd0YkOdc1PKl4yhU9y92TSm8Tax7Uuwv0qQia9UWhcxYpvxPfKvCQjhF2iVPXyrRML5KHiGSYYHtGDlLQdT+TcKPYbTyT8oojIQScUxQgS99aJFgu47FmRE18dXJPaqwtKhXEirKkTSZUTbyo21pmL+m/ukn/V1zoKExwuVbmMkDeeo27SxuPdRo41fLMyA1fPs/7//z06w+r1er7crn8/ubLl6I76V/w51X/M+0sly+SLC6612nvdf+jPMpyowKDcbi+414xMP44UQ9XrfaHzjO9hmzBlwYr6hjcQlxLAmbBPCYw+I+fqf+pP1ZM/kBQI3Ctz2E+yWTkOTbDW88HXl2kILOBQetpNDKkMApFkm/gkaCpO62PICUgubPMJGMbW/IB6fVDUJfOY2tHaIypOgWEOOWppSWOxIvxKBwh2CPPD7JzGiupir2qSKq3x5vKvSf8mtv2/n6mW8k/ujKAleNMtoCJ0xUt0ozjuQD+ej+0Wm9oq0JsQrZYdJUL2GddQ2D1pHmtvFYbk2YC76UmPswOaVyuTBRTULa5u/3LG5oifRwu2pYuDqIh24903OjEW0e95uO7T+fi9K8PHI/SSrj8/TL5DFirOEQGoC/ObufyWrwHjOQZDsvsiFM0UngmcqnzY7S7w6R67jNgaKwIN7hojKL5SmlF0LoB19GDICF0IbuOufjZm75ncZrHjHahA8O5Z/Yj6f1fD4Z766OJcHjIRPLTUvI57glB1fAAqAglIjWXlmxO8xyasdXkPcBebvn5/t05EeQ/rwVOqA== sidebar_class_name: "get api-method" info_path: docs/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,15 +22,22 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

[Deprecated] Get the currently defined model.

+

+ [Deprecated] Get the currently defined model. +

- + + + - +:::warning deprecated -:::caution deprecated - -This endpoint has been deprecated and may be removed in future versions of the API. +This endpoint has been deprecated and may be replaced or removed in future versions of the API. ::: @@ -38,548 +45,3588 @@ Use /graph/{graph_id}/model instead. ## Request -

Query Parameters

- -The list of all kinds. - -
Schema
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The list of all kinds. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/evaluate-a-cli-command.api.mdx b/docs/reference/api/evaluate-a-cli-command.api.mdx index 885e75d7a..98cef0475 100644 --- a/docs/reference/api/evaluate-a-cli-command.api.mdx +++ b/docs/reference/api/evaluate-a-cli-command.api.mdx @@ -22,34 +22,251 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Evaluate a cli command

+

+ Evaluate a cli command +

- - - + + + This method can be used to analyze if the command can be interpreted without executing it. When this method returns a 200 OK, the command can be parsed and evaluated. ## Request -

Query Parameters

Body

- -The command will be sent as request body. A command can contain multiple command line separated by semicolon. Every single line can contain multiple commands that are combined via the pipe operator. - -
    - -string - -
- -When the command can be evaluated. - -
Schema
  • Array [
  • ]
- -When the command can not be evaluated. - -
Schema
    - -string - -
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The command will be sent as request body. + A command can contain multiple command line separated by semicolon. + Every single line can contain multiple commands that are combined via the pipe operator. + + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + When the command can be evaluated. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+ + + When the command can not be evaluated. + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/execute-a-cli-command.api.mdx b/docs/reference/api/execute-a-cli-command.api.mdx index 939be151b..2d7247541 100644 --- a/docs/reference/api/execute-a-cli-command.api.mdx +++ b/docs/reference/api/execute-a-cli-command.api.mdx @@ -22,26 +22,257 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Execute a cli command

+

+ Execute a cli command +

- - - + + + The body defines the command to execute. The command is executed and the result is returned to the client. Request and execution are synchronized: the request is done, when the command is done. ## Request -

Query Parameters

Body

- -The command will be sent as request body. A command can contain multiple command line separated by semicolon. Every single line can contain multiple commands that are combined via the pipe operator. - -
    - -string - -
- -The result of the command. - -
Schema
  • Array [
  • ]
Schema
  • Array [
  • ]
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The command will be sent as request body. + A command can contain multiple command line separated by semicolon. + Every single line can contain multiple commands that are combined via the pipe operator. + + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The result of the command. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/explain-the-search-execution-plan.api.mdx b/docs/reference/api/explain-the-search-execution-plan.api.mdx index 31e6c0a0d..b9740e036 100644 --- a/docs/reference/api/explain-the-search-execution-plan.api.mdx +++ b/docs/reference/api/explain-the-search-execution-plan.api.mdx @@ -22,26 +22,238 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Explain the search execution plan

+

+ Explain the search execution plan +

- + + + - - -Explain the runtime characteristics of a search without performing the search. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age\>23d or desired.clean==true or metadata.version==2) +Explain the runtime characteristics of a search without performing the search. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age>23d or desired.clean==true or metadata.version==2) ## Request -

Path Parameters

Query Parameters

Body

- -The search to perform - -
    - -string - -
- -The execution plan of the database - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The execution plan of the database + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + + + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/get-a-configuration-by-its-id.api.mdx b/docs/reference/api/get-a-configuration-by-its-id.api.mdx index 71454dea2..dad12c99a 100644 --- a/docs/reference/api/get-a-configuration-by-its-id.api.mdx +++ b/docs/reference/api/get-a-configuration-by-its-id.api.mdx @@ -22,26 +22,179 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get a configuration by its id

+

+ Get a configuration by its id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Fetch a configuration by id. ## Request -

Path Parameters

- -The configuration - -
Response Headers
  • Resoto-Config-Revision string
    - -The revision of this config - -
Schema
- -No configuration for this key. - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The configuration + + +
+ + + Response Headers + +
    +
  • + + + Resoto-Config-Revision + + string + +
    +
    + + + The revision of this config + + +
    +
    +
  • +
+
+ + + + +
+ + + Schema + +
+ +
    + + + +
+
+
+ + + + +
+
+
+
+
+
+ + + No configuration for this key. + + +
+ +
+
+
+
+
diff --git a/docs/reference/api/get-a-configuration-validation-by-its-id.api.mdx b/docs/reference/api/get-a-configuration-validation-by-its-id.api.mdx index b3d2bd7b1..ad5d1abbe 100644 --- a/docs/reference/api/get-a-configuration-validation-by-its-id.api.mdx +++ b/docs/reference/api/get-a-configuration-validation-by-its-id.api.mdx @@ -22,22 +22,210 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get a configuration validation by its id

+

+ Get a configuration validation by its id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Fetch the validation of a configuration by id. ## Request -

Path Parameters

- -The configuration validation. - -
Schema
Schema
- -No config validation for this key. - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The configuration validation. + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+ + + No config validation for this key. + + +
+ +
+
+
+
+
diff --git a/docs/reference/api/get-a-list-of-all-running-batch-updates.api.mdx b/docs/reference/api/get-a-list-of-all-running-batch-updates.api.mdx index 9e31d04fb..734560750 100644 --- a/docs/reference/api/get-a-list-of-all-running-batch-updates.api.mdx +++ b/docs/reference/api/get-a-list-of-all-running-batch-updates.api.mdx @@ -22,18 +22,142 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get a list of all running batch updates

+

+ Get a list of all running batch updates +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Get a list of all running batch updates. ## Request -

Path Parameters

- -Ok message - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + Ok message + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/get-a-node-with-the-given-node-id.api.mdx b/docs/reference/api/get-a-node-with-the-given-node-id.api.mdx index 6ec8b88d5..7d615aaa3 100644 --- a/docs/reference/api/get-a-node-with-the-given-node-id.api.mdx +++ b/docs/reference/api/get-a-node-with-the-given-node-id.api.mdx @@ -22,18 +22,139 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get a node with the given node id

+

+ Get a node with the given node id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Get a node with the given node id ## Request -

Path Parameters

- -Return the defined node - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + Return the defined node + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/get-all-configuration-keys-that-have-a-model-defined.api.mdx b/docs/reference/api/get-all-configuration-keys-that-have-a-model-defined.api.mdx index 8de75c718..767d9ef37 100644 --- a/docs/reference/api/get-all-configuration-keys-that-have-a-model-defined.api.mdx +++ b/docs/reference/api/get-all-configuration-keys-that-have-a-model-defined.api.mdx @@ -22,22 +22,111 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get all configuration keys that have a model defined.

+

+ Get all configuration keys that have a model defined. +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Get all configuration keys that have a model defined. ## Request -
- -All configuration keys that have a model. - -
Schema
  • Array [
  • - -string - -
  • ]
+
+
+ + +
+ + + All configuration keys that have a model. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/get-all-configuration-keys.api.mdx b/docs/reference/api/get-all-configuration-keys.api.mdx index 801e87a8d..c7794b6bf 100644 --- a/docs/reference/api/get-all-configuration-keys.api.mdx +++ b/docs/reference/api/get-all-configuration-keys.api.mdx @@ -22,22 +22,111 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get all configuration keys

+

+ Get all configuration keys +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Get all configuration keys in the system. ## Request -
- -All configuration keys. - -
Schema
  • Array [
  • - -string - -
  • ]
+
+
+ + +
+ + + All configuration keys. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/get-information-about-cli.api.mdx b/docs/reference/api/get-information-about-cli.api.mdx index 0b2931ed5..0dbfb7af0 100644 --- a/docs/reference/api/get-information-about-cli.api.mdx +++ b/docs/reference/api/get-information-about-cli.api.mdx @@ -5,7 +5,7 @@ description: "**Experimental**: This API is not stable and might be subject of c sidebar_label: "Get information about CLI" hide_title: true hide_table_of_contents: true -api: eJztWN9rGzEM/leMn7YQmmxPWxiDUkpXGKy02V7WEBxHybnz2Tdb1zYc+d8n+S7Nr7YpbSkM8pSc7Pv0Sfp0Mq7kGKIOpkDjnezJVuv4toBgcnCobKvVE/3MRHF4dirox3kUEdXIglBuLHIzzVCMQMRydAUahZ8InSk3hYMvo9D5eulOAIVxEx9yxQ6EGvkSxdH300sn2xLVNMreb6mtkYO2DBAL7yKQrZIfu13+WWfnVA7tdUCikYEt2LW6VsYmctrnOa3EA3KivUMKhsFUUVij04udq8iIlYw6g1zxP5wVQD58CoVeXHd9uhUFZsCR0M4ieMoZmpr5wvk2/UNr7yHJiahdqxDUjB4NQh6fQ0kxoQXwFjHO3gpqxGDcdAu1T2HxTs5oE+IC8UDO20RymtC8gx8Tql71ZPavzEYQk5J1mmgByVZjHF4rW67ijry3oNw9yRuzFCCSnmroBZxooCibCSzBFz5GQ1Wr8VfDeyjsJqD5puOzBqkGj4JqSO6pudbC0coNvdZlGOalRVOQZ6SmjC+LjFBFQhULVJFQk8vEZ5iZulceL8s32tUwbwKpC7QZBrfmEOH2KZDcxbx1R6kJFQ1aRqIdR/WGwzDllb3m9pp7W80NaInn0W5fF5kPKFZsd2RfxjPBRF8G/TwJLsLlNFrrb4D+OlEDCpKgSfPl3cSEiMvNNHF41Bv3/qH0JHOAwioNnMad83B1r7gxmAkSTWAJ1f3V3mpuNR4ndsqerbX5Rjfw0LJGxSE39U4aaSvEV3BHzUkR4RNdisX29O052J8K9l/o/Rd6fyrYa+4/1Nz+VPDIqWDdzuOKjWzOATM/JvsUUpcqzOiho63ppGxSRBCuIcQ0YMpgaTVDLGKv06kyH3HeqwrK51yyhoLh4Zp0ymv1EJ4okhu9Zr1WNplTS4WN5U+fu11mNVipY8P5HKJHL458AHF+fNHnuxH2R7TqZP760LQpUsDL74t88C5ksxzV8s7ije9japWwpDp0FDGOA0lprppi1Hc1TVIoOXVif8uqGtGh6Wew8zmb/5YQZmQfLOvAT0nZagwh1e8PzPgkpDUUKJum56/Y5iUNF+FOGSfHfarLP9UZhgE= +api: eJztVlFr2zAQ/itCT1sISbenLYxBKKUrDFbabC9tGLJ9sdXJkied0wbj/747OWniuSVjjD31ydbpdPfd991ZbmQGIfW6Qu2snMnR6OyhAq9LsKjMaDQTi0IHMb+8EPSwDkVAlRgQymai1HmBIgER6uQOUhRuJdJC2RwmHxI//XhrzwGFtivnS8UJhEpcjeL088WtlWOJKg9ydiNTo+VyLD2EytkAZGvk25MTfvTRWVXCuB+QYBRgKk6t1kqbCC51ZUk7YUJJUmeRiuFgqqqMTuPB6V3giI0MaQGl4jfcVEA5XCyFDvZTXwyqwAK4EvKsvCPOUHfId8mH8OfGPAGSiehSK+/VhpYaoQx/A0kxoF3gATBm7yBqQK9tPoi6oLLYkxndlriLOJHtmEDmMZqz8GVF6jV99O14CBs1GjZQqNMu0tznsl1SNNbyOKbrwnkUB7aIhHU/fvYTdwfCAz5XUHC1Tw+JSZwzoOwTfGfcPRCoBbtQ2zA8GsoYdw/0akUXUFQu6KjNq5X2AffOpBaPibavKX/7FD3R7KEyKgWexKO9dOgr7jUWIq29p5VYK1PDvsUeNVFZFtEpc9lrkj6ZjEMZrcJ3bomjMKIrhH+QjiaAKsI/TCl27rFzJy8T9TJRw4nq21lqNrK5BCxcRvYcmNxKYUGLKV1L08gmVQR+DT5EcWpvaLdArMJsOm0KF7CdNRXx2ZLnWnnNjRkV5b2ugVeqNvQqjUuViWbKy2f62+/e07VHmJYHOm4xX0Fw6MSp8yCuzq4XfCdzPoLVkfntTRczIBW870757B38uxzN/q78z/8BXZdwS01pjLXlQiLNzVaM7h9hSwqR0xF7I5smoQ/OV2/als0/a/Absi/3OvAqdrbKwEf9fsCGvyJpChVGwfgDORv+HLAIj51xfrYgXX4BGkUpGA== sidebar_class_name: "get api-method" info_path: docs/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,34 +22,683 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get information about CLI

+

+ Get information about CLI +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Get information about CLI ## Request -
- -name, information and help of available commands. - -
Schema
    commands object[]
    - -All available commands - -
  • Array [
  • args object
    oneOf

    MOD1

  • ]
  • replacements object
    - -All available replacements with current value - -
    alias_names object
    - -All available aliases - -
    alias_templates object[]
    - -All available alias template name. - -
  • Array [
  • args object
    oneOf

    MOD1

  • ]
+
+
+ + +
+ + + name, information and help of available commands. + + +
+ + + + +
+ + + Schema + +
+ +
    + +
    + + + + commands + + object[] + + +
    +
    + + + All available commands + + +
  • +
    + Array [ +
    +
  • + + +
    + + + args + + object + +
    + +
    + + oneOf + + +
  • +
    + Array [ +
    +
  • + + + + + + + + + + + +
  • +
    + ] +
    +
  • +
    + + + + + + + + + + + + + + +
    +
    +
    +
    + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    + + + + replacements + + object + + +
    +
    + + + All available replacements with current value + + +
    + + +
    +
    +
    +
    + + + + alias_names + + object + + +
    +
    + + + All available aliases + + +
    + + +
    +
    +
    +
    + + + + alias_templates + + object[] + + +
    +
    + + + All available alias template name. + + +
  • +
    + Array [ +
    +
  • + + +
    + + + args + + object + +
    + +
    + + oneOf + + +
  • +
    + Array [ +
    +
  • + + + + + + + + + + + +
  • +
    + ] +
    +
  • +
    + + + + + + + + + + + + + + +
    +
    +
    +
    + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/get-root-of-a-specific-graph.api.mdx b/docs/reference/api/get-root-of-a-specific-graph.api.mdx index 7abef0efa..823eaea86 100644 --- a/docs/reference/api/get-root-of-a-specific-graph.api.mdx +++ b/docs/reference/api/get-root-of-a-specific-graph.api.mdx @@ -22,22 +22,147 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get root of a specific graph

+

+ Get root of a specific graph +

- - - + + + Get root of a specific graph ## Request -

Path Parameters

- -The graph with the root node - -
Schema
- -The graph does not exist - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The graph with the root node + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+ + + The graph does not exist + + +
+ +
+
+
+
+
diff --git a/docs/reference/api/get-subscriber-by-id.api.mdx b/docs/reference/api/get-subscriber-by-id.api.mdx index 6fd1a81d3..08ea4ce15 100644 --- a/docs/reference/api/get-subscriber-by-id.api.mdx +++ b/docs/reference/api/get-subscriber-by-id.api.mdx @@ -22,34 +22,289 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get subscriber by id

+

+ Get subscriber by id +

- - - + + + Get the subscriber with a defined id. ## Request -

Path Parameters

- -The subscriber - -
Schema
    subscriptions object
    - -The dictionary of subscriptions, where the key is the message type - -
    property name* Subscription
    - -The definition of an action subscription - -
- -No subscriber found - -
Schema
    - -string - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The subscriber + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
    + + + + subscriptions + + object + + +
    +
    + + + The dictionary of subscriptions, where the key is the message type + + +
    +
    + + + + property name* + + Subscription + + +
    +
    + + + The definition of an action subscription + + +
    + + + + + + +
    +
    +
    +
    +
    +
    +
+
+
+ + + + +
+
+
+
+
+
+ + + No subscriber found + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/get-the-currently-defined-configuration-model.api.mdx b/docs/reference/api/get-the-currently-defined-configuration-model.api.mdx index 1ea1144b9..9bca226ad 100644 --- a/docs/reference/api/get-the-currently-defined-configuration-model.api.mdx +++ b/docs/reference/api/get-the-currently-defined-configuration-model.api.mdx @@ -5,7 +5,7 @@ description: "Get the currently defined configuration model." sidebar_label: "Get the currently defined configuration model." hide_title: true hide_table_of_contents: true -api: eJztXFlv2zgQ/itcYR8awJu4aRFs/bJIDxRFgd2ize6L7TUYiY7ZSqRCUm0MV/99Z0gdlCWnSY+gzvLJNkXO8c1wDgHjTWTohY4m0yiWYskvFh9pyhNquBTRfBTlVNGMGaZwyyYS8COaRMuUmmgUJUzHiud27yR6tSRGFWxEzIqRFWeKqni1JnJJYpnlKbsiH7hINOGa4HnDBEtGZCXThIsLQtOU5ErmTBnONKEisUsZUxcsgQ9DQSh6CFw5MrssmFrDDx2vWEajySYy6xxFO5cyZVRY6Za0SE00WdJUs7IEbRTTuRSaaTxwPB7jR1eJM5A95dqg2MjfioxcAR2Q2OAJmucpjy1ER+81Htt4cnTpPWdLLjj+sBQtPaBWCUuVoqgFNyyzMknB/lpapKsd8vw9ixFrEObWT1o8kfbyUng4aaMA9p4RUf9lkaZrclmAIyw5gI9GR+nRrlb+sgQNuEmRzmtYeEo1ixDfhCOtjAtqpEJmlQTrP53fqEIYnrFFhUIGSKIQiJ8TZxLFXMVFStWDd3YFyR9Yo5tHx574Pe29gxy9zR2cb4MAsvGsyAaxBh7sgqmoHDVLosjOcWU+hJOlRVMCN6aoAALfro+gelffj5ejtZMXE47RLsfqsR3gAVDKT2Bvy0NvMSHIAe60gQ0rpljHCf60W15b37C2OnkcbLUXtlqmkppgq72wVSKLc1wOxtoDY9V1yNdYq6b41NFo7A98v4necyDgE8Nc/M0Ez4CII4pgdB2tk+8Hag9nsGm74NJ8nULq8NS4/sgv7xANT49Bj6kEsGVLY8teDdNqZx2vd1kWKRMXZnWz6qm+EO5Mw7Q64W7E7Qii119HMMdiWt2wuFPg+lc5qc5gsU6NT5CsqCZGEpqgg8O3W1ysVqQb36uK6XX3qi0E/UDxfyuMv0fQD3780/hx3dC0xmvTx0ETAHc+rsq2XY/rSmHX85Cc7k9yCpXcj63kQsYJGec+ZZzQPf78MSe8QtsjW4VXaPtjq/AKbY+M1XQprU28puMgCk3HXTUdwz1fqIxDZRwq45AUQmUcbBUq4z23VaiM98hY+/P+vj3mV8YH0X2rjLt1/61K4zsvgLsMuRBMDVn+buXyFk/xaoUeI/QYoccI6TX0GMFWoce4H7YKPcYeGeuH9RjdlsB/lR/evn+xx9i//uKcVvNWX1mEvRIkBhLImgvwWW6oiO2UGUCX4HgVeDkKhYzqea2e5beYDwxp4dBZdwatto8/vjYg+A6g3ajcTZBukQVmdaOAKuxy0y8bq+NfPknFLguumE/Wn5gbQoVvkcEBvpoMkYoI6WYBO9N2W8S+pMM7CRCsiowKIE0TCpeLeDsGVPGc742/aMPfohAfhPwkFrhf79DVl3eX0/kTidBV0DhmucGxRdt+4BJobwcGAQsurB9mMmEpYq0L2K61VDbeWDG2EOYxfqPKTkk229uhQ3ZF0fVg64bMapFn0YRMZ9Y5Hs6iEXFfj2cQceymlBnm7XkED0g5Q517MSNJ7GgiTd9cd1l23dTSN8Izd0l2xqeu5qdE2xhHkhaCT7Zxs0OXbO0mQKschjg7pvrninTdVg/NWQXt0rPdtBIlMkybQ1AY00Q3EzV5Zhsl3G072xMADB6iUzTFz0OvODlBzD02WsacpgvN4gIi5npR1Rg9xjtgGebcNOzRvw/++OXk5OTzeDz+/GQ2SzbH5QF+PCp/gyfj8YFbsz82j92zx+Wv0ZaUGLK37NYOGVfhdlvQNoLZaeMBe3aCHwZvWcAC+sGhFaCibz/69K+Lz/gaQstCxeywJ4lH2U5UN5RbF586JqPKmed9bnDQhRa3fs6uYeoC7XwLUgASR5JHdd6dekjPd0G9lMoUwkPDd9U+IOBTignjfMTe0Wvh0FpsUd7pnX1ebiupt9Z1bJMQrLoD7Of+/azrwbJXXbxkxkJcqQRxwJUUCXHj8IWyc94uqNvbx8xKoiIXzLgrsYIfR263PnLBH2I/Ux/roflCpbBlZUyuJ0dHm5XUppxscsC8hJ0fqeKY72zMwmcuT1TZKUplTFO7jDUNnOk+/v3JeIyazbFGXUob8Cql34LXGEmeSYieb1+8OyOnb14hPxDL6f7PQ0dTm8zV+ZW9bo3JcKo37Moc5SnlAtlYEDYVXvWfDeAtcYiB/E73abTZoLP+rdKyxGU36Y84JlwjUMlwzt60I/p39lcEg5pC9oqav0iwtwN+2nRRmxq0wQyxgkoHX72Dau7MqS0vvFO9fxpAKo0HvnxxBqb/D3HI1jQ= +api: eJy9Vt9v0zAQ/leMxQNIZS0DVSwvaDCEEBKgbfCylclNLo3BiTP7MlZl+d+5s9OubTYGL/QltX0/P39351aiWniZnMnUVrleXFwpozOF2lZyNpK1cqoEBMciraxoIROZG4VyJDPwqdN1kE3kh1yga2AksABRaHDKpcVS2FyktqwNXIufusq80F6wPkIF2UgU1mS6WghljKidrcGhBi9UlYWtEtwCMvqgoqDUHnnV7OyyAbekhU8LKJVMWonLmkObW2tAVSG6XDUGZZIr46HrKBsHvraVB88K+5MJf7aTOKXYjfbIYbP/EDJ7JXQoYmQNVddGpwGi8Q/Pau1GHNv2jiDXleZFsBjskbU+WOWc4iw0QhlishV8zgPSvYSd/4CUsUaNhjdO0BFcH9lMN7pf7FNTzsE9KPYmovWg3JFCONUlPCh4yBn9lbkHhd5G1twrtw30ofCa5UWmU95Sbil+FeAgXiMsI6eI3Q3Ti/Z9QNIPsD0iA9HprBtJuFZsNtxJfsmeEDzukRcgTddUSLBchGtNiJr4Yv+O0FhaFMqLKUVJh0yoknhRNqVMntN/dR3/TznRDTfeplqZCw9p4zQuL6pwrUPHMZe/9Fxz8Tk+//7k9aPpdHozmUxuDs7Ps3a/e8qfF90zOplMnsa9sGhfxrOX3WO5E+VceQbjtnw3e0XP+N1AHVw22gHthaZxRxmyBhcNFtQxuIXYhjaYBXshgN5++AztD+2xYLQHghqBbVwKe4NINiyHxri2fMurs+hk1DNoNvRGiuRGoYj7c/iD09idZjuQEpDcWUaSsQ3t+Rbp2X1Q59ZhU22gsUnVISDEKUctLXIkFMYf4fC+2rF8LzuHvqKoWImKKLq+3pjuHe5n3LZX9Rmrkn+7Lt4DBoj7lMySkKfGS5MjTrXGhXYtSpuBCdUHWFhOZAEYS6KgxThK+3GQ4/EC7mo1+xpnSKRArH0yHreF9dglbU2YdyR5pZxWcxNHC5/FWdCPIGlsqkzYpthZZ/v41QENoy7MKF3lNsyzPuljYg1a8dZSyzp+d3IqDr98YH8UVsz92/No02Opwizq7+ufMdmCdN1vEa5xXBtFY5fcBBDaHq/Vm4GrJCJG8cfcz2TbMlm/OtN1vB0HNuOYac9Arag/8LuetP/tRXFnpjQybl86oTpoKfmGVldN2fCEKEBlxHpOLeocpinUm1qDBwNbWTPw/btTuvrfB1NHEA== sidebar_class_name: "get api-method" info_path: docs/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,558 +22,3605 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get the currently defined configuration model.

+

+ Get the currently defined configuration model. +

- - - + + + Get the currently defined configuration model. ## Request -

Query Parameters

- -The list of all kinds. - -
Schema
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The list of all kinds. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/get-the-currently-defined-model-as-svg-uml-image.api.mdx b/docs/reference/api/get-the-currently-defined-model-as-svg-uml-image.api.mdx index 9e814bd7a..cba19a502 100644 --- a/docs/reference/api/get-the-currently-defined-model-as-svg-uml-image.api.mdx +++ b/docs/reference/api/get-the-currently-defined-model-as-svg-uml-image.api.mdx @@ -22,18 +22,148 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get the currently defined model as svg uml image.

+

+ Get the currently defined model as svg uml image. +

- - - + + + Get the currently defined model as svg uml image. ## Request -

Path Parameters

Query Parameters

- -Returns the model as uml diagram in svg format - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + +
+ + + Returns the model as uml diagram in svg format + + +
+ +
+
+
+
+
diff --git a/docs/reference/api/get-the-currently-defined-model.api.mdx b/docs/reference/api/get-the-currently-defined-model.api.mdx index af6de6b5e..9a855d16f 100644 --- a/docs/reference/api/get-the-currently-defined-model.api.mdx +++ b/docs/reference/api/get-the-currently-defined-model.api.mdx @@ -5,7 +5,7 @@ description: "Get the currently defined model." sidebar_label: "Get the currently defined model." hide_title: true hide_table_of_contents: true -api: eJztXFlv2zgQ/itcYR8awJu4aRFs/bJIDxRFgbZIs/tiew1Gom22EqmQVBLD9X/fGVIHZcnO1QR1Vk+xKWqObw7OOBguA0NnOhgMg0RGLA7GvSCliibMMIXLy0DAl2AQzBRN5xMeBb2AC/ieUjOHz+yKJmmMGxTT0khYipgOFU8Nl7jvdM4Ij5gwfMqZInJKDKxYarBXsfOMKxYFA6My1gt0OGcJDQbLwCxSpKqN4mIWrFa9UpJpTE2DzQegixQs9TlwoiqcL5BdKFHAK/Kdi0gTrgm+b5hgUY/MZRwBeULjmKRKpkwZzjShIrJLCVMzFsEfQyNq6H6h+3nG1CJokfZMyphRYaWb0iw2wWBKY8188VGOhvifRbwgiplMCcLFVKqE4hNCz2RmrE5AkIPMTo198kYmCSWaobEMLMdcm4Z87CqNwaq5EJvR9cQVWRzXwOYxeMIt5XVQmzk18DCMswgMzi+YII7f40l/yc18ckY10w0NTpiIwB/RzLiBhDHVsG+fWNWMnDFAXRGkYPUhUpESjPt7gYOsNVrcoyJSHMiA0TctxbWsS0iYyBKM6nwHbOU2TscrP+icWGt45YGwmFgzbgIOGWoUsthOLmicPTSAY5Rep1KgSeGFw34f/zRBRI9C6dC+LmSAWigFBL7BN2iaxjy0TntgkYW1So46vbcYetz6N1IkeQTnwlKlKGrBDUusTFKwz1ObOvMd8uwbC9HWIMytn1RpCWlPz0V7ADScCCJhQc4zGmPejQgauHApKz84Y2C4san7Iyy8hiAIEN+II62EC2qkQmaFgT85H1EZ5PKETXIUEkAShUD8nDiDIOQqzGKqnn21K0h+zxrdvDj0xG9o771ovdW9OF4HAWTjCbp3C9bAg83AxdCp8yWIhDNcGbfhZGnR2DmvAwiOiOIVVO/q5/FytDbycjG73OhYDbYtPABKeQn2dsG4xoQgB+ZSLsQmqznBJ7vlo/UNa6ujl52tdsJW01hS09lqJ2wVyewMlztj7YCxijrkLtYqKL52NEr7A9970XsLBHxieBbfm+ApEHFEEYy6o9XO+22VZrHgjvniCCnSU+n6Pb+8QzQ8PVo9JhcgLyJzWzZqmEo763iNYJnETMygZb1R9VQEhHunZFo0ozYibkcQvX4bwRR7UnXD4k6B61+lJH+n5zotjyCZU2i/JKEROjh8ukVgVSLdOK5yptviqioE/UTxfyuMf0bS7/z4l/HjoqGpjFcdH3tlAtz4OC/bNj0uKoVNz7vD6ekcTl0l97CVXHfidCfOUzpxuu7x18853U9oO2Sr7ie03bFV9xPaDhmr7FIqm3hNx17QNR2P1XS093xdZdxVxl1l3B0KXWXc2aqrjHfcVl1lvEPG2p3f76vX/Mp4L3hqlXG97r9VafzoBXCdIReCqTbLP65c3uIxhlbXY3Q9RtdjdMdr12N0tup6jKdhq67H2CFjPViPUW8J/J/yu1/fr+0xdq+/cCN0dy/CPggS4pAdsOYCfJYbKkI7rAnQuclGbYWyo3j5vFbD8mvMW4a0cHazPspZ2MefAm0RfAPQbizuJkhXyAKzolFAFTa56fXGqvmXT7Ka3yvJ+hNzbajwNTI4B1uQwcE8Id0sYm3abo3YdTp8lQDBPEuoANI0ohBcxNvRoornfF/8RZv+Jpn4LuSlsPOIeoOuvrybnM4f7IWugoYhSw1O/9r2A5dAezswCFhwYf3QDUODKDqD7VpLlU9DDhrDgTzET1TZYeNyezV0WE1IL8moEHkUDMhwZJ3j+SjoEffxcAQZx26KmWHenhfwgKxGqHMjZ0SRHU2k8ZdtwbIpUle+Ed64INmYn+qaHxM3U0qiCoJL27jZoUu2cIPU+RmGODum+tfKdPVWD82ZJ+2VZ7thLkpgmDb7oDAeE/WTqDxn1lHC3bazPQLA4CE6RVn8PPeKkyPE3GOjZchpPNEszCBjLiZ5jdFgvAGWds5lwx78++yv346Ojn70+/0fr0ajaHm42sM/L1Z/wJN+f8+t2S/Ll+7Zy9XvwZqUmLLX7DZcH3ZfF3R97L9pz1ryw+QtM1hAP9gPvIFl+6dJf1t+xp8htMxUyPYbkniU7bUIJeXKxYeOSS935nGTG7zoUotbP2NbmLpEO16DFIB0w975uTv0kB5vgnoqlcmEh4bvqk1AwKcUE8b5iI3RrXBoLdYob/TOJi+3lRRbizq2PBCsui3sx358FvXgqlFdvGfuioRcJcgDxWUJNo3beGNmLlH0GTMuCObw5cBeQ3GwLO62WB24vA9pn6mL4gKMTMWwd25MqgcHB8u51GY1WKYA9wp2XlDF8aiz6QqfuSMiP5iCWIY0tstYzsA79cd/vur3UakxlqdTaXNdru+JvU+DvJGQOE/efT0lx18+ID8Qy6n9z3NHU5vElfi5qW4AR/u5btiVOUhjygUStmovc6iGQXFjx8C7CKS8MsTpPQyWS/TRv1W8WuGyG/BHDCOuEaSo/aheVpP5j3aRR6vOcGgF5QUjNijgq803N1fgp13lsUXCPK0+iIR3vrxjG6LFvQ93lPhel3Vskat2P8gdZbv+yo5twBTXgNwPGORw98s4rgOocSFIJey4SoC3jPNnJ3mu3yPbrwhqla6obsXCF6eQukxRtoibQzOC/x0D8dzjY9sBeC82LgNBvcoj4/27U0jR/wHrJGm3 +api: eJy9V21v2zYQ/iscsQ8N4NluWgSrvwxZUxTFgHVIs31JvYCWzhY7ilRIKo2h+r/3jpRk2fJLmqzNF1nk6e65515TcS8Wjk+ueW5SUHw64IWwIgcPlo4rrvGFT/jCiiK7kSkfcKnxvRA+w99wL/JCkYAFZ7zBoxRcYmXhpSG5qwyYTEF7OZdgmZkzjydBG8pauC2lhZRPvC1hwF2SQS74pOJ+WZBW563UC75aDVokcyV8z8w71EsagvYMLQmbZEsylxgCeM/+kzp1TDpG33vQkA5YZlSK6plQihXWFGC9BMeETsNRDnYBKT68SIUXw8b32xLsku9AOzNGgdAB3VyUyvPJXCgHXfiEowf/vVZLZsGXVjOp58bmgm6YmJnSB59QoUTM0Y0he23yXDAHFCyPx0o638MH94XCqNYg9rPbgatLpTbIlgoz4RvxRqp9JjxeJqpMMeDyDjSL9n4c+s/SZzcz4cD1PLgEnWI+UphJgCVKOJQbsuCaNwtA1i0jDcEfZixryXh6FkTKdlZLvGoqJZKMHH1yRh813VICusypqmsJFJWhTqerbtFFWFt81YWwvAlh3EccGXQEshFnd0KV35vAKaF3hdEUUvzgdDymR59EyihCR/GNJYPaEqOx8D19IYpCySQk7Sgwi2drHJv6Lqj0ZMhv0sjqCq7BCmsFeSE95AGT0fB+HlpnLWFmnyChWHvpQ6v8EKL0B6kh8veJ/VnmM7BHxX6PbB2Vu8BSu5I5HBU8J48epO6o0OvYfPfKbRJ9zmKWslQmdCTskn3GJIIYRljG1hwTjQk8j/nuetxeoIJolBK+HVIYk/ktWfKADQetAM2gEodTDiHd8Upq/+J0BzSSZplw7AxR4iUlVI55kVOhPcff4j7+PiNHO2acSaRQNw6S0kosKx3C2jfcaWfHLRc0wyzd//vst5/Ozs6+jMfjL68+fkyr09UJPV6sfsGb8fgknoWX6mW8e7n6mW+hpCZIetsp2B3+dcZvA92e3v0yjIVPnQwHL01iU+IBZcGQd/pOePT19/WR4LozOlPaBIY9JB3NYbtpNa/z6joaGdQZNO1bww/jCIvnMzhgNHan6RalSGTs2XECYTdeMz3dRzV2f1/qDhvdVO0TgjllsaXFHAmFcZAO5/SW5r3Z2bcVRVkjyqJoG97o7g7zU2rbTX3GqqS/bRNvIW46tUs4RJqdJ6ymod5wphiCjsMlFkGGL6OwTY6qZkVdjeIui5MF7F2zx5ZWoWzmfeEmo1GVGedXk6pAulcoeSesFDMVpwrdxTFQTx+uTCJUOEbY9M3m9a+vcA6twniibSiMstrfy7AW48aD3eryzYcrdv7XO7KHsKLb/zyPOp3PRRhDdageQMcGf21z9XDvR4USOGNRcXC7qqm65s3iPens8+3mH/2+5lVFOfq3xV2KjuOcJg5T6YiktN3JthC0A/aH7eM7fcZJsf4/IRQFvoZ+83AH/reN/ADCuq1+F4SP3sEPMdqsb49E/KSd+wCujTX/kdiOb96HiGm2+acR87Sd+hhBvb1+DXa6boDfWOfPLutef8IO/6e/E12zQutlF06Dum1RYYnLQCBHAV68Pk8SKLqk93Z68qsdGW/fXGGL/goAj9qE sidebar_class_name: "get api-method" info_path: docs/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,558 +22,3654 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get the currently defined model.

+

+ Get the currently defined model. +

- - - + + + Get the currently defined model. ## Request -

Path Parameters

Query Parameters

- -The list of all kinds. - -
Schema
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + + + + + +
+
+
+
+ + +
+ + + The list of all kinds. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/get-the-public-keys-of-the-configured-jwt-issuer.api.mdx b/docs/reference/api/get-the-public-keys-of-the-configured-jwt-issuer.api.mdx index e39a3e3cf..e1cf1c5b8 100644 --- a/docs/reference/api/get-the-public-keys-of-the-configured-jwt-issuer.api.mdx +++ b/docs/reference/api/get-the-public-keys-of-the-configured-jwt-issuer.api.mdx @@ -22,18 +22,91 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get the public keys of the configured JWT issuer.

+

+ Get the public keys of the configured JWT issuer. +

- - - + + + Get the public keys of the configured JWT issuer. ## Request -
- -The public keys of the configured JWT issuer. - -
Schema
    any
+
+
+ + +
+ + + The public keys of the configured JWT issuer. + + +
+ + + + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/list-all-checks.api.mdx b/docs/reference/api/list-all-checks.api.mdx index c82332b63..4752ce288 100644 --- a/docs/reference/api/list-all-checks.api.mdx +++ b/docs/reference/api/list-all-checks.api.mdx @@ -22,26 +22,363 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

List all checks.

+

+ List all checks. +

- - - + + + List all checks. ## Request -

Query Parameters

- -List of checks. - -
Schema
  • Array [
  • detect
    - -The detect expression of this check - -
    remediation object
    action
    - -Action to remediate the inspected issue - -
  • ]
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + + + +
+
+
+
+ + +
+ + + List of checks. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + + + + + + + + + + + +
    + + + + detect + + + + +
    +
    + + + The detect expression of this check + + +
    + + +
    +
    +
    +
    + + + + remediation + + object + + +
    + + + + + +
    + + + + action + + + + +
    +
    + + + Action to remediate the inspected issue + + +
    + + +
    +
    +
    +
    +
    +
    + + + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/list-all-graphs.api.mdx b/docs/reference/api/list-all-graphs.api.mdx index 754375aa3..cbf2583a6 100644 --- a/docs/reference/api/list-all-graphs.api.mdx +++ b/docs/reference/api/list-all-graphs.api.mdx @@ -22,22 +22,111 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

List all graphs

+

+ List all graphs +

- - - + + + List all graphs ## Request -
- -The names of all graphs - -
Schema
  • Array [
  • - -string - -
  • ]
+
+
+ + +
+ + + The names of all graphs + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/list-all-outstanding-work-items.api.mdx b/docs/reference/api/list-all-outstanding-work-items.api.mdx index 9d2d29eac..144fd15c0 100644 --- a/docs/reference/api/list-all-outstanding-work-items.api.mdx +++ b/docs/reference/api/list-all-outstanding-work-items.api.mdx @@ -22,18 +22,258 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

List all outstanding work items

+

+ List all outstanding work items +

- - - + + + All work items that are initiated but not done are listed via this endpoint. ## Request -
- -The list of all outstanding work items - -
Schema
  • Array [
  • task object
    data object
    attrs object
  • ]
+
+
+ + +
+ + + The list of all outstanding work items + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • +
    + + + + task + + object + + +
    + + + + + +
    + + + + data + + object + + +
    + + + +
    +
    +
    +
    + + + + attrs + + object + + +
    + + + +
    +
    +
    +
    +
    +
    + + + + + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/list-all-resources-that-match-a-given-check.api.mdx b/docs/reference/api/list-all-resources-that-match-a-given-check.api.mdx index b9793e06c..6db606bb9 100644 --- a/docs/reference/api/list-all-resources-that-match-a-given-check.api.mdx +++ b/docs/reference/api/list-all-resources-that-match-a-given-check.api.mdx @@ -22,18 +22,232 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

List all resources that match a given check.

+

+ List all resources that match a given check. +

- - - + + + Perform the check identified by the given check identifier on the graph with provided identifier. It is possible to filter the list further by providing a list of account ids. ## Request -

Path Parameters

Query Parameters

- -The checks result. - -
Schema
  • Array [
  • ]
Schema
  • Array [
  • ]
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The checks result. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/list-all-subscribers-for-a-given-event-type.api.mdx b/docs/reference/api/list-all-subscribers-for-a-given-event-type.api.mdx index 5769df97f..9126de5a8 100644 --- a/docs/reference/api/list-all-subscribers-for-a-given-event-type.api.mdx +++ b/docs/reference/api/list-all-subscribers-for-a-given-event-type.api.mdx @@ -22,26 +22,239 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

List all subscribers for a given event type

+

+ List all subscribers for a given event type +

- - - + + + Get all subscriptions of registered subscribers ## Request -

Path Parameters

- -The list of all subscribers which are subscribed - -
Schema
  • Array [
  • subscriptions object
    - -The dictionary of subscriptions, where the key is the message type - -
    property name* Subscription
    - -The definition of an action subscription - -
  • ]
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The list of all subscribers which are subscribed + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + +
    + + + + subscriptions + + object + + +
    +
    + + + The dictionary of subscriptions, where the key is the message type + + +
    +
    + + + + property name* + + Subscription + + +
    +
    + + + The definition of an action subscription + + +
    + + + + + + +
    +
    +
    +
    +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/list-all-subscriptions.api.mdx b/docs/reference/api/list-all-subscriptions.api.mdx index 5e37409ef..a268fd21b 100644 --- a/docs/reference/api/list-all-subscriptions.api.mdx +++ b/docs/reference/api/list-all-subscriptions.api.mdx @@ -22,26 +22,215 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

List all subscriptions

+

+ List all subscriptions +

- - - + + + Get all subscriptions of all subscribers in the system ## Request -
- -The list of all subscribers with all subscriptions - -
Schema
  • Array [
  • subscriptions object
    - -The dictionary of subscriptions, where the key is the message type - -
    property name* Subscription
    - -The definition of an action subscription - -
  • ]
+
+
+ + +
+ + + The list of all subscribers with all subscriptions + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + +
    + + + + subscriptions + + object + + +
    +
    + + + The dictionary of subscriptions, where the key is the message type + + +
    +
    + + + + property name* + + Subscription + + +
    +
    + + + The definition of an action subscription + + +
    + + + + + + +
    +
    +
    +
    +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/list-available-benchmarks.api.mdx b/docs/reference/api/list-available-benchmarks.api.mdx index fbf96f71d..3d1fd63de 100644 --- a/docs/reference/api/list-available-benchmarks.api.mdx +++ b/docs/reference/api/list-available-benchmarks.api.mdx @@ -5,7 +5,7 @@ description: "List available benchmarks." sidebar_label: "List available benchmarks." hide_title: true hide_table_of_contents: true -api: eJylV1tv2zYU/isEn1bAmNsBKza/pUZRBBiwIsv2UgQGTR1ZbChRJSmngeH/vnNI3a3YSpwXR+Thdz6eOw88ASetKr0yBV/xv5TzTOyF0mKrgW2hkFku7KP7lS+4FzvHV9+4hdJYzx8WvBRW5ODB0vqBF/iBIO0pPKMI9UcF9hk/hrrWJs8Fc0AgHhKmSbdJ+0rZjdZMpawwniWQqgISIuJkBrngqwP3zyVpdN6qYsePCw4/RV5qWhNPbiOV23zY/L7o/v/ISabUJkGZVGgHx0VL/En5bIPY8tGdp35bSF0lwIJsZKZoi6nCG+aznuWm6G6N0SCKAJuKSvuGSo+Ly8jGZ1ncQVJJCOpUkRqbi8CBGJiSadiDZqU1JVivwE0a7mUm6F0LrjSFA0cHfnv/nn4mwmXoMoSSpvBQeBIXZamVDLyW3x2dOZySENYKup3ykLveutl+B0k2EFr/nYYIG+901wvnlCfXj8NibLd7NFgQJeo+U672ozRaIywJHUdn5kD2Vs4DG1nlaB/xCuj+kbPgdfReNm6XMqPQThwpiDgYV7WqkRKlEwvFy2q4VFZWWthf1gS0bo+/O82lRiFi9vQ4jtnQeJSPUDiF59D3KplnSpW09utyFDWlVMmeDH7MgmnFp9H2WBJne7cWnkaS2lTJNQ4lDRGEWcCiIArPsFhMqIp1fXM5hEwBw3xsdV/K0Dd4KdAheoi0VwnYeQiN9CmOA7tXcmadqIVPUa6rNcGz2PV2xja16wrvtkBTl8XoUv557m2j9AgHW2ZR5dT6Ud5jPde4lKldhj85JAr3Flybp9CuUsMfAk1PAUA9IElCcxT667BaX75ZBGHYsLEXuZPaF4OWGIxr6UsNAn76mT5DyagMWF8FaqysnoeBgi9ACNnwfaNxbmTT6hvkZg5wJV4cpynlXAWDGnp37TWGZtc0tF0ZuTVK021GWnrcb+O91nHj4QTsbhqom0sGaJ+6qhf+KIp9ZvA2fAchaoTP8GMZK+KyBxPLRzPwBhvyzPvSrZbLQ2acP64OdOaIknthFY3RwRq0Fweoes7ChMFECstU3GjaG2z/8SdOXMcwiIWk6uYbvK0z6Pq1scDuPv9zz26+3vJe0+H/fYiYzucihFk9VJ4d70cDTzvFXXgURC9TvixLLVQ/tqIZ2wfDgvcMideKJvnGD4etcPCv1ccjLcdhl8ybKEcak3ooPUPx7W+JSf6P8Dx6x+yFrkgu9Lj5vF73UDjDZfg0eSOb1z8YzjBqHigdl4cu5NF9lKQZiNCw0Zfx0I2UUPZPnTwQCKXNxi+f7zEF/gcNkxn2 +api: eJylVl1v0zAU/SuWn0Cq6IYEgr6NakKTkEBj8DKhynVuFm+ObWyn2xT1v3Ovk6Zp2mXd2EsX595zju9nap5BkF65qKzhM/5NhcjESigtlhrYEowsSuHvwjs+4VHcBD675h6c9ZH/mXAnvCghgqfzmht8QJDOC30Uof6twD/iwy7X3JalYAEIJELGNHHbvE/KzrRmKmfGRpZBrgxkJCTIAkrBZzWPj44YQ/TK3PD1hMODKJ2mM3EfFlKFxeniw2T7/0dONk7bDG1yoQOsJ53wexWLBWLLuzAu/cJIXWXAkm2jTNErpky0LBa9yB2Su7RWgzAJNheVjhspPS2hoBiPqriErJKQ6JTJrS9F0kAKrGMaVqCZ89aBjwrCwcA9rQSz6yE4awIEcnh/ckI/B8plN2UIJa2JYCKZC+e0kknX9DaQT70vQngv6HYqQhl653Z5C5JiILT+nqcKG77ZXi/5qUipH5bFMG5XGLBkStJjoUKbR2m1RlgyWg98joHsnYwDW1mVGB/xAui+yyh4W73PB3fbMoPSzgIRNDhYVy3VgETpzIN5moZL5WWlhX8zJ6B55/52v5c2hIjZ4wkcu2GTUT5A4VSeu7lX2XGhVFkXv22PIlNOk+ze4sNRMJ35YbQVjsSjs9saH0aS2lbZ/ySUGBoQ5gGHgjCR4bA4QNXM9cXzJWQN7PZjx73foZsMXpjg8CQlEtO3J/MSdNoCbeHtxWK3Hr5sdae/Ccc1VFisAX4DaTCIWODDtLnTtAeDUxD8arOyKq/RrIjRhdl0Whc2xPWsJp81Wq6EV7QI063pXTMC20nJtZVCp2MUkHbizutPn3FmrtMopfncm1B422BxTs+tB3Z5/vOKnf244L2y4b9PG8wQS5HKqF0Lowt6MLK6OfzMWm8yFuEhTp0WKrV4ikvdhrFb+RPeCyReqwnJNa/rpQjwy+v1mo6bdUXhzVQgxqxdKyMSX/81cFD/HTwOvkRWQldkl6r0eF0vW/UjWnY/Ll6p5uUrf0TR5hNjq+XPtuQxfdSkBYgMfMpl43QmJbi+196KJ5SuG7+eX2EL/APhsJ5t sidebar_class_name: "get api-method" info_path: docs/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,34 +22,465 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

List available benchmarks.

+

+ List available benchmarks. +

- - - + + + List available benchmarks. ## Request -

Query Parameters

- -List of benchmarks. - -
Schema
  • Array [
  • report_checks object[]
    - -Related checks of this benchmarks - -
  • Array [
  • oneOf
    - -string - -
    detect
    - -The detect expression of this check - -
    remediation object
    action
    - -Action to remediate the inspected issue - -
  • ]
  • ]
+
+ +

+ Query Parameters +

+
+
    + + + + + + + +
+
+
+
+ + +
+ + + List of benchmarks. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + + + + + + + +
    + + + + report_checks + + object[] + + +
    +
    + + + Related checks of this benchmarks + + +
  • +
    + Array [ +
    +
  • + + oneOf + + +
    + + + string + + +
    +
    + + + + + + + + + + + + + +
    + + + + detect + + + + +
    +
    + + + The detect expression of this check + + +
    + + +
    +
    +
    +
    + + + + remediation + + object + + +
    + + + + + +
    + + + + action + + + + +
    +
    + + + Action to remediate the inspected issue + + +
    + + +
    +
    +
    +
    +
    +
    + + + + +
    +
    +
  • +
    + ] +
    +
  • +
    +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/load-time-series-data.api.mdx b/docs/reference/api/load-time-series-data.api.mdx index 1fb9fac11..60a266b75 100644 --- a/docs/reference/api/load-time-series-data.api.mdx +++ b/docs/reference/api/load-time-series-data.api.mdx @@ -5,7 +5,7 @@ description: "Load time series data." sidebar_label: "Load time series data." hide_title: true hide_table_of_contents: true -api: eJylVtuO2zYQ/RWCTwlgry/ZtI2APGyDFFigQBaO24fYxmIkURZTilRJajeCoH/PDCXZ8iVpgTUMg6bOXHjmzFANL8FCIbywjkebhmv8wyPuZSGcsFI4PuGpcImVpZdG46N1LhihmMmYxzVBWYe9QbAkTAk+x7UV/1bSipRH3lZiwl2SiwJ41HBflxTGeSv1HpHiGxSlClumEI8hi7bddS6E87+btCa701QeDrlfSYb1ppRUYrQX2pMHKEslEyAPs6+O3DSXeZn4q0g8GpbWlMJ64oFwHqy/ln5mbAH4hKfgxZSSuEpbsL/GG7vPmDaepSKTWqTsV5ZC7VhmTYH7z0xqb4JRCXSgFgnT6QsSQev/kwaGDsH21lTlKBxYCzXV2ovCXabRnodcibRKRAgHTyAVxEqw4NSx/mBOBGKGyEaTmtBRJhXW9wWx/wgOzuOyQhQx6SauWYkKJUWIm63+pFV9IqInUCgi9ix9zpDZJMcgvQsMgp4l4EOlWEwmClUjUvRzIukAf3wC+5gZw96/Z1seK9jyjlrQlQJ0Vf+8npUNmr1azpGTa2Xd6nUuHUtAU5YCj0KEsMElMzaY6IooIQeBW5b1+8HVs9QpCtHn4Bn6Gh31PAEKQyLaG4ym0AZryXJTWcTeB21BpXwo/CvU4TQ0xWs2Y8s5EdeGz4R72NNEGk+iMA5cabTr2vF2Pr+cCXdsmDqsb96aEi6kc1S6/kz9bDgkG9MWpGezwotvflYqkNenxCC5kG9/rsuE1mdjCTsTXjKSIE0lQUE9jIYTDdh2LLpmqxkKjSJveYSr5Xy5mM7pu57Po/D9suWTDhZkTrjFVrd9Fc6V9qeB9OIkxBiO4NykNPaNC0OTpn/EZ8fSzZrjukUErp6GG6eyCsG596WLZrMmRx9t1JTGekJi10hq21BwetYR3HPNlUlAhW1Ml2xOH//2DiXShouEiF0dL5OPA1GHqU4EvZkultP52/Xil+j2bfRmeXO7ePeF99P2Z4B+Qm4GTeyOk+vH7X/W/aMRJnVmQu2lD8VcCWewXz4YK9jq4+c1u3u4J3KQw642fy86ApwvIOinv8d/WLOT0h5ENhI8uguVafpybk7fCaLTvuwqs+FNE4MTf1nVtrSNdFs82WZ3LGSoeSodrZHUDJQTF+kcmoO/WvXd/Jr9x4vH1SMMl4aug5ZQ5PgPl/+I+vQtp90hOscRQCXDDDvAhy6P6ZrcHB1cNGw7GSzukkSUfoQd57Mb9crDp89rhMX9i01hUkJbeKb3JvyN+JYHjZjAStB/2G+4Ar2vYE/4Ljp9vgNH1VlV +api: eJylVluL2zoQ/itCTy0kG2/OwraGPuwpPbBwoEua9qFJWMa2HKtHlnwkebfG+L93RnYS59ILbAhBkb+56JtvRm55BRZK4YV1PF61XOMfHnMvS+GElcLxCc+ES62svDQaHy0LwQjFTM48rgnKeuwVgiVhKvAFrq34v5ZWZDz2thYT7tJClMDjlvumojDOW6m3iBTfoaxU2DKleAxZdN2mdyGc/9tkDdkdp/Kwz/1CMmwwpaRSo73QnjxAVSmZAnmYfXPkpj3PyyTfROrRsLKmEtYTD4TzYP2l9HNjS8AnPAMvppTERdqC/SXe2H3OtPEsE7nUImO3LIPGsdyaEvefmdTeBKMK6EAdEqazFySC1n+SBoYOwbbW1NUoHFgLDdXai9Kdp9GdhlyIrE5FCAdPIBUkSrDg1LHhYE4EYnaRjSY1oaNcKqzvC2L/ExycxmWlKBPSTdKwChVKihBXa/1Rq+ZIRE+gUETsWfqCIbNpgUEGFxgEPUvAh0qxhEwUqkZk6OdI0gH++AT2MTeGvXvH1jxRsOY9taBrBeiq+XU9axs0e7GcIyeXyrrWy0I6loKmLAUehQhhO5fM2GCia6KEHARuWT7sB1fPUmcoRF+AZ+hrdNTTBCgMiWhrMJpCG6wlK0xtEXsftAW18qHwr1CH09AUr9mMzSMirgufCfewpYk0nkRhHLjKaNe3400Unc+EO7abOmxo3oYSLqVzVLrhTMNs2Ceb0BZkJ7PCi+9+VimQl6fETnIh3+Fc5wktT8YSdia8ZCRBlkmCgnoYDScasN1YdO1aMxQaRV7zGFfzaH49jei7jKI4fL+u+aSHBZkT7nqtu6EKp0r710B2dhJiDEdwYTIa+8aFoUnTP+azQ+lm7WHdIQJXT7sbp7YKwYX3lYtns7ZAH13cVsZ6QmLXSGrbUHB61hM8cM2VSUGFbUyXbI4fv3mLEunCRULELg6XyYcdUfupTgT9Nb2eT6PbZTSP5zfxzfzqNrr5yodp+yvAMCFXO01sDpPr5+1/0v2jESZ1bkLtpQ/FXAhnsF/eGyvY4sOnJbt7uCdykMO+Nl+uewKcLyHoZ7jHf1qzo9LuRTYSPLoLlWmHcq6O3wni477sK7PibZuAE5+t6jraRrotnmy1ORQy1DyTjtZIag7KibN09s3BXy2Gbn7NfvPicfEIu0tDN0FLKHL8h8v/RHP8ltNtEF3gCKCSYYY94H2fx3RJbg4Ozhq2m+ws7tJUVH6EHeezGfXKw8dPS4Qlw4tNaTJCW3im9yb8jfmaB42YwErQf9hvuQK9rWFL+D46fX4AHhFZRQ== sidebar_class_name: "post api-method" info_path: docs/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,30 +22,283 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Load time series data.

+

+ Load time series data. +

- - - + + + Load time series data. ## Request -

Path Parameters

Body

- -Parameters of the time series request. - -
- -A required property is missing or the request can not be read. - -
Schema
    - -string - -
- -The time series data - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + Parameters of the time series request. + + +
+
    + + + + + + + + + + + +
+
+
+
+
+ + +
+ + + A required property is missing or the request can not be read. + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+ + + The time series data + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
+
+
+ + + + + + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes-as-batch-update.api.mdx b/docs/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes-as-batch-update.api.mdx index 5d3ded297..02938813d 100644 --- a/docs/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes-as-batch-update.api.mdx +++ b/docs/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes-as-batch-update.api.mdx @@ -5,7 +5,7 @@ description: "**Experimental**: This API is not stable and might be subject of c sidebar_label: "Merge a given graph with the existing graph under marked merge nodes as batch update." hide_title: true hide_table_of_contents: true -api: eJzlWN1v2zYQ/1cIPm2BY7fpBzZjGNAWRdGHrUWS7qUNDEo6W2woUiUpJ4bh/313R8mWI8dIOvShGAIktnQfv/u+y1oWEHKv66idlVN5cvL2tgavK7BRmZOTqbgsdRCvPr4X+Me6KEJUmQGhbCEqvSijyECEJvsKeRRuLvJS2QWM/8j85M8v9i/wC6QVC70EKxZe1aW40bEUsQQBtzpEbRft88YW4EWl/DWgaGa0DtEJFUSmYo4UdaEijL9YOZJRLYKcfpbMO6uUVQsg0PJqJGvlVQURPFGspcUvaFqi1AUyazK1VrHEz3CrqtoQgYfgosNH+y65RKi6QNF6rhEg2kjgWRrSevjWaA+FnEbfwEiGvIRKyelaxlVNUkP0aKPcbEZbJGxND8m3BvxqoPdVa3VPN4ZAiSQQQaiIPtPIbFY7osDo9vwl3hNk5N36hQS5SscIxQglWrg5qCv3gPyFUE10lYo6V8asxoIcgr5qDAdvwJgrSznhAXHCEtmXWjEo5KmdDYDBDQHDlQK5c+BcmbDnwQLmCrXIqW2MGR1x6I3ScTZ3fpZgHffrQW8EiKMWJHKFiFlqjMiMy6/RyVGbgVuJa66tDiUUW58k+5g3d1hB2vb4ej6i6olbN3Y5NczyA75Iadb6InPOgLLojKvkSYT+2hWrxHE3i1OdsbU2Ullh4I22IAowGtMBY/U1ODsSNyV4rE+FaPh96UxBqVe4vKEiIwqdsyjAaiaDuFaFI9MEFBjcA7VBLqESRXCqrg3mE4Gb3J7agvTS853BzsKHOddva6vjHoNia++wRUXMdaLDMhoU20NKmNtZgTg3nTcHJUsW1M5H6KvYwlBFoUm+Mh97gJKl+xCvtX0gSKK8C2/T61HJXPn07NnzFy/lPr6kRUZMgTEqJ4eOugJ5rSK2SPye64jJId85bB8Vy446cvf7G7WRyQgqxewxFiMflpLCxFWPZNy3rmUky6mIyR5dnGp7umu3/83gPftyrp1DBixRHEfl6V0XvbfvGAp1n+OJOfeuOlyHmmPMBRMdDVQfBVMPehw+cMdkUNfo5Cyc4Ok1EEHlOOtSfCiJ3mxzjmgHMlCEbSqatl0XIjca7J3y6nAAWzHJBRxOHHczN5+pmbazLphkW/9l1n/ZQ71V24vFW9Kwuepr/9xWhyJ4bSDbHDFOFZkyyubgKbFqKqLx2fjZ+Dl+xdlWOiLzDpcQ7zJt03hhcdlQXO6quokI22LwUCbLyEtslR3iRTx9QdnnPCXD2XMW17pDdaZn95rZqs5/mOr8PtUYUO57aZRxIp89eTLMnHOIjbe0jjQV7mwryiCV08uQVpOS1jbArY9bPc5Iee8AGDb/fV0XPRXtEEtrZqtxl7D3lCLvkbN2nTlcBZjgWRoNaelsbVhCMqLlHe9UaTRlgdmE3kri09wO3yU+8R4Vnwru+9C3vIfFUxo82DlM/CjnJPGtgd8l/qhzkvgHOueg+CPO6fUb7vqfGAk+5yLBgZHaRu0C5xwdFFM54QydrLt7YzPhvW7CJw3tdOCX3WnSeIMcZYx1mE4m6xIFbaZrGnEbpFwqr+nY4pyid3uLIDY1XMj5MYIhnv3Xv/2OdbvhzVDbOY+RzphzvnTEG2wR4vztxSXdd6Svm3ryn6dJZuApOt0u2j/knru7Ca13feInukdT6kS4jZPaKJogoxTedZsY7a2KtNPeKcqSqIlzdmCsUpw/y/U6UwE+ebPZ0ON0y1DOFDqQxbuD6V7n/U8uyIOuv4bV/qW9VKYhMp6uD/fhz3QtHnHE8ELe+eNq12kemWC/nLcX3q/i+H9JDiJrHyq76sPpEG9rhJe8EhRWI8NLr98kEKeXJGTHfvCupIgnrld5DnW8hz7RXvUa+8cPF5dUo+1FXdFZgluiuqFLBH9P5Rf8oSb7L5b6rns= +api: eJzlV1tv2zYU/isEn7bAsZusAzZhGJAWQZGHrUWS7qUxDEo6tthQpEpSTgxB/33nkLQt146XBuhDMQRIYvJcvvPx3NzxElxhZeOl0TzjJyeXjw1YWYP2Qp2cZOy2ko5dfLhi+Ecbz5wXuQImdMlquag8y4G5Nv8MhWdmzopK6AWM/8jt5M87/RfYBcqyhVyCZgsrmoo9SF8xXwGDR+m81It03uoSLKuFvQc0HRS1QXRMOJYLX6BEUwoP4zvNR9yLhePZJx50Z7XQYgEEmk9HvBFW1ODBkkTHNX7A0KKkLFFZUqiN8BX+D4+ibhQJWHDGGzzapeQWocoSTcu5RIAYI4EP1lDWwpdWWih55m0LI+6KCmrBs477VUNWnbcYI+/70QZJiGaA5EsLdrXn9yJFPfCNTyBYNIgghEfOJCqr1VbIBXQ7fLErgoy6G17IkKml91CO0KKGh4O+CguoXzLRelMLLwuh1GrMiBDkqlXh8fYUC6EpJywgTlii+lKKAAp1GqMd4OM6h88VH3JL4Fwot8NgCXOBXnimW6VGRwh9ENLP5sbOIqzjvB5kw4EfJZCo5TxmqVIsV6a4R5K9VHu0ktZcaukqKDecxPiCbmGwgqQe6A04ourxGxrXObWf5Qe4iGmWuMiNUSA0kjGNTCL0N6ZcRY2vszjWWYhWeyorfHglNbASlMR0wLf67IwesYcKLNanQDThvjKqpNQrTdFSkZGELIIpwGqmgEKtMkOhMSjxcQ/UBlFCJYrgRNMozCcCN3k81SX5pfNtwEbD+3mo3xSrCT1mWLGbK/JNj46e8Nep1Kfb8myM9QSh4/dSk4BHjsbY48jjaJ1Bb4THHoKfC+mRPf7OYH3VvA/JE2PoeBG4DsHgBeaOwJcKYJdoLvB8hmnJvfShofyNsK70uwCFsvW/AyHm8GJuTZ3CwjYxM/OZmEk9WweFTWrnMh9ekolZMrdOmgGmS/LQT/uBd6Q4MCeoVFJAiStlRJkLJXQBlghu8OxsfD7+ZfwaP2JPqAyJWYPN25pc6liWwVy+b64wddN6hK1xiqDNYKOoMMXWiBf+9Fd6BYOVwbPz18FcokOsQ8+fDDO5Lr6b6+Ip19OeXn7dAhx5Pn/1ar8Or8G3VlMbb2ucdSuqfVHQpYstvaJxBzgtQ4lgb+FPFs5+0ez6uhm4SMUfx3PyyEd7KdlYg6XhZYwgzN9ZGgOHe4pu6zxOxTisUwxLiEEk3fHWlcRQFphNyFY0H/ude5H5qHvUPPY2eCn6pHvYPKXBs8kJwt9ETjSfAnyR+aPkRPPPJOeg+SPkDPpN6H4fAxI8D0WCjTO2jca4kHO0iGV8EjJ00q33tH4S5uEkrII0C8Eu1ytdaxVqVN43LptMugoN9VlHrb5HyaWwkpbUkFN0tzNAsanhIhOOEQzp7F7/9jvWbR8mqtRzE7pzCuY6bIjsLbYIdn15c0t7Mflbd3/+z1m06cI0yTYLynfZg7/ebLptn/iB9viYOh4e/aRRgibIKD5vlxIj7fgomw1W+GCJmnjIDnyr+M6feNflwsFHq/qejuMOSDlTSkcRbxfNJ8n7n2zeB6m/h9XuN5SlUC2Jhen6fA5/pC37CBH73yy2fEy3neYbE+yn67QZ/8yOf7s8iCwdCr0awlkj3tRIWPIqEFiNAV68fhtBnN6Ska36wX2cXjxqXRQFNP4J+Sg7HTT2D+9vbqlG0zeRmtZz3BLFA23k+Dvjd/hDTfZfsua5ng== sidebar_class_name: "post api-method" info_path: docs/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,22 +22,435 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Merge a given graph with the existing graph under marked merge nodes as batch update.

+

+ Merge a given graph with the existing graph under marked merge nodes as batch update. +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Merge a given graph with the existing graph under marked merge nodes as batch update. ## Request -

Path Parameters

Query Parameters

Body

required
- -The graph is sent as newline delimited json, where each line holds a document, which is either a node or an edge. - -
    oneOf
    reported object
    desired object
    metadata object
- -Return a summary of actions that has been applied. - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+ required + +
+
+ + + The graph is sent as newline delimited json, where each line holds a document, which is either a node or an edge. + + +
+
    +
    + + oneOf + + + + + + + +
    + + + + reported + + object + + +
    + + + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
    +
    + + + + + + + + +
    +
    +
+
+
+
+
+ + +
+ + + Return a summary of actions that has been applied. + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + + + + + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes.api.mdx b/docs/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes.api.mdx index 3df2e1219..111f74dd3 100644 --- a/docs/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes.api.mdx +++ b/docs/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes.api.mdx @@ -5,7 +5,7 @@ description: "Merge a given graph with the existing graph under marked merge nod sidebar_label: "Merge a given graph with the existing graph under marked merge nodes." hide_title: true hide_table_of_contents: true -api: eJzVV99v2zYQ/lcIPm2AYzdpOmx+a4uiyMPWIEn3kgbGSTpbbCRSJSk7geH/vXck5ciRYyTZ9jAEMCLyfnx3/O6OXEsPCyen13JhoSlnNWhYYI3ay5uRbMBCjR4tS6ylpg85TZKqkCOpNH034Ev6H++gbioWsOiMN7RUoMutarwyLHdVolAFmVZzhVaYufC0EqyRrMUfrbJYyKm3LY6ky0usQU7X0t83bNV5q/RCbjajLZIVKD+bGzsjj23lO0A/WrT3A/dn7E85sQ1K0IdDPwow2D06L1aqqkRWmfxWtIS0CpsZ+LwUbVOAR9aaK61cicVYXAVV1xjtMOrmRntQuqfXixl0kbwx3i4FffPjb1r2gy9wDhxaykrKRWZMhaApGTcxcwT9gynuo8bjpIcUx2i1F+CExlWlNIoCK1Urj4X47oweiVWJFgUCoQn7pakKJ0AUJm+ZEyyh8mAKFSGngIQ2BQrDoQksFjjec5ScEmYUgYOmqVQODG5yd6QL9svrDwEbjV/mgW4pVpN9x5zPtrGmQesVOpYj/g248RzGEXaGPJabLpsDhnEEjbEe+y62MKAoFNuH6rwHKEa6C/FW6WeCZMnH8Da9korhyuOTt6fvfpO7+KIX6YkCY3LOCR11BfIBPFU0fefKEznkZ+NLqINtr3wo1r/IG4dMoOKZvSRi0qNSAiIuvFBxN7qkyJFzEXM8qjhS+uihO/yzgHfiy0Pt7AtgSebCqRw/TtGZ/hygcPc5TMy5NfX+OlThjEPBeCOcB+tFkB4NGUj984AN7hqdnYURodkOTHA5zjqKDy3xzpZzLDuwQSZ0W/Nw6LoQp7Gi3ilv9h9gMhNTEI6T5sTMzGcwU3rWHSbH1t/M+ps91Fu3vbP4xB42N33v16k6gOGlg0wcqQwUGVSgc7RMrIaLaHwyfjs+pc+aBpdhMWtaXViTKR3HSzCXDc3lpm5aT7A1HR7ZDDbyklplh3jhj94x+4xlMpycBnMpHdCFnj0ZZnKd/2eu86dc04GGvhdHWSDyyZs3Q+ZcoG+tpr7v2roGe88Mgpw3HTEJvChpvmSIJMKtnmakfHIADJv/rq/Lnos0xPIS9AKTxwfCPlGKzDE3yy1Cah3DKiCCZ3E0BOEuhiXGIJLu+MGVolAWxCbKVjQf57Z7lfmoe9B8LLjXoU+6+80zDZ6dnCD8ouRE8ynAV5k/mJxo/pnJ2Wv+QHJ6/SZ0/a8BCa2HItn19CdaJqRYqCUZjSxd0eUo9Gi8U85TK03r1GUIEHH6lq5cdVAM58YYaAzFZtQYF5jMt+qpnATNybq7dG8mQY/viGiX3c28tRXJlt43bjqZrEsysZmueWRuSHIJVkFWRY7y3s7FkppkDlVYpuBYZ3f79z+oD2zCTVPpeRhLXXIuwkVffKSWIy4+XV6J9+dn7K+bovLv42jThak83V7c/62k7RzFdgp5vPOTpgJu56OYm3XKZ3rnkOq094yJKaUAY3Ku5XqdgcOvttpseDk+KDjRhXKcSTqnOVQOBwi2ne5/9dzYm7dbvN/7xFpC1bK0ZEZ01Hphcn65SE+EX8XhV+FeZGkR9H0fTod4e67hllAiEH0CvLj9MYI4umIjD+p7HyY8QaPW+zzHxj8hH2VvejV8/uXyioSz9CSr+V5L1wxY8VWWfqfyG/1xVf0E7V9Xgg== +api: eJzVVt1v2zYQ/1cIPm2AYzdZB2x6a4uiyMPWIkn30gbGSTpbbCRSJSk7hqD/vXck5cizk7XB9jAEMCLyPn7343310sPayeyTXFtoq2UDGtbYoPbydiZbsNCgR8sSvdT0IbMkqUo5k0rTdwu+ov/xHpq2ZgGLznhDRyW6wqrWK8NyNxUKVZJptVJohVkJTyfBGsla/Nopi6XMvO1wJl1RYQMy66XftWzVeav0Wg7DbI9kC8ovV8YuyWNX+xHQ1w7t7sj9JftTTuyDEvTh0M8CDHaPzoutqmuR16a4Ex0hrcNlDr6oRNeW4JG1VkorV2E5FzdB1bVGO4y6hdEelJ7oTWIGXSZvjHekYGp+/lnLafAlroBDS6wkLnJjagRNZNxG5gj6a1PuosbfSQ8Ux2i1F+CExm2tNIoSa9Uoj6X44oyeiW2FFgUCoQn3lalLJ0CUpug4J1hCFcEUKkJOAQltShSGQxNYrnF+4imZEs4oAgdtW6sCGNzi/kyX7JfPHwI2Gt+vQrqlWE3+BQs/TbD9FfvmRydP9HOm9NlDNrXGeobQyzulWcATR/OWctkwwymDXoOnlKfvQnliT74zvoJGDiF5Ygy9LALXIRi6oNwBeqkAdkPmAs/nlJbSKx/y/0+CdanfBSicrf8cCDNHFytrmhQW1dfSrJawVHo5BkU1dXCZTy/ZxDKZG5Nmguktexhuh4l3ojgwB1wqKaDEVW2gzKEGXaBlgls6O59fzH+Zv6TPhgresJg1nS6tyZWOZRnM5cfmCtO0nSfY2nm2GWwUFaXYiHjtz37lVzBUGTK7eBnMJTpgDD1/NMzkuvjPXBePub4d+OXHFuDY88WLF8d1eIW+s5rqxXVNA3bHtQ8FXzrqAeBFRXWZI5IIlwj1Fvlo4RwXzaGv64mLVPxFBXqNyaOcHaVkaw2VhlcxAs4xtywsQiqh456iuyaPTTwIjzFsMAaRdOcPrhSFsqZsIrai+djv3LPMR90nzVNvw+eiT7qnzXMafDc5QfiHyInmU4DPMv8kOdH8d5Jz0vwT5Ez6Teh+HwMSOg9FcujpD7SckGKtNmQ0ZumWhkqYiHivnKdpn86pyxAgyuk7GlVNUAzvxhioHcdm1BoXMpm3kUwuguaiH5eVYRH0eLai3YwbTWdrkq28b122WPQVmRiynkfHQJIbsAryOuYo3x0MZGqSBdThmIJjncPr336nPjCECa30yoRun8i5CguSeEMtR1y9vb4Rrz5csr9xmsi/zqNNF6ZTtl94/i3SDp5iP4U83vtFWwO381nkpk98pv2QVLPJ+hcppQAjOZ9k3+fg8KOth4GP4yLGRJfKMZP0TiuoHR4h2He6/9WadpK3O9ydXE03UHcsLTkjxtT6QXJ+ukqr1c/i6W36JLJ0CHo3hTMi3r9r2BIqBEqfAC9ev4kgzm7YyIP6yYWOJ2jUelUU2PpH5KPs7aSGP7y/viHhPK2yDe93tGbAllc6+s3kZ/rjqvoG7k9ipQ== sidebar_class_name: "post api-method" info_path: docs/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,22 +22,430 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Merge a given graph with the existing graph under marked merge nodes.

+

+ Merge a given graph with the existing graph under marked merge nodes. +

- - - + + + Merge a given graph with the existing graph under marked merge nodes. ## Request -

Path Parameters

Query Parameters

Body

required
- -The graph is sent as newline delimited json, where each line holds a document, which is either a node or an edge. - -
    oneOf
    reported object
    desired object
    metadata object
- -Return a summary of actions that has been applied. - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+ required + +
+
+ + + The graph is sent as newline delimited json, where each line holds a document, which is either a node or an edge. + + +
+
    +
    + + oneOf + + + + + + + +
    + + + + reported + + object + + +
    + + + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
    +
    + + + + + + + + +
    +
    +
+
+
+
+
+ + +
+ + + Return a summary of actions that has been applied. + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + + + + + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/patch-a-configuration-by-its-id.api.mdx b/docs/reference/api/patch-a-configuration-by-its-id.api.mdx index 1031ed138..927787e28 100644 --- a/docs/reference/api/patch-a-configuration-by-its-id.api.mdx +++ b/docs/reference/api/patch-a-configuration-by-its-id.api.mdx @@ -22,22 +22,238 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Patch a configuration by its id

+

+ Patch a configuration by its id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Patch a configuration identified by id with provided value. ## Request -

Path Parameters

Query Parameters

Body

- -The configuration - -
Response Headers
  • Resoto-Config-Revision string
    - -The revision of this config - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+
+ +
    + + + +
+
+
+
+
+ + +
+ + + The configuration + + +
+ + + Response Headers + +
    +
  • + + + Resoto-Config-Revision + + string + +
    +
    + + + The revision of this config + + +
    +
    +
  • +
+
+ + + + +
+ + + Schema + +
+ +
    + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/patch-a-list-of-nodes.api.mdx b/docs/reference/api/patch-a-list-of-nodes.api.mdx index cd8d323b5..f5928350c 100644 --- a/docs/reference/api/patch-a-list-of-nodes.api.mdx +++ b/docs/reference/api/patch-a-list-of-nodes.api.mdx @@ -22,26 +22,483 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Patch a list of nodes.

+

+ Patch a list of nodes. +

- - - + + + Apply a patch on existing nodes. Non existing nodes are not updated! Consider to stream the request body as new line delimited json (application/x-ndjson). ## Request -

Path Parameters

Body

- -The partial object data to patch. - -
    reported object
    desired object
    metadata object

Body

- -The partial object data to patch. - -
  • Array [
  • reported object
    desired object
    metadata object
  • ]
- -Return the patched node - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The partial object data to patch. + + +
+
    + + + +
    + + + + reported + + object + + +
    + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
    +
+
+
+
+ +

+ Body +

+
+
+ + + The partial object data to patch. + + +
+
    +
  • +
    + Array [ +
    +
  • + + +
    + + + + reported + + object + + +
    + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
  • +
    + ] +
    +
  • +
+
+
+
+
+ + +
+ + + Return the patched node + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/patch-a-node-with-the-given-node-id-in-given-section.api.mdx b/docs/reference/api/patch-a-node-with-the-given-node-id-in-given-section.api.mdx index 8170c2aaf..368860b58 100644 --- a/docs/reference/api/patch-a-node-with-the-given-node-id-in-given-section.api.mdx +++ b/docs/reference/api/patch-a-node-with-the-given-node-id-in-given-section.api.mdx @@ -22,22 +22,195 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Patch a node with the given node id in given section

+

+ Patch a node with the given node id in given section +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Patch a node with the given node id in given section ## Request -

Path Parameters

Body

- -The partial object data to patch. - -
- -Return the patched node - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The partial object data to patch. + + +
+
    + + + +
+
+
+
+
+ + +
+ + + Return the patched node + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/perform-a-benchmark-on-a-graph.api.mdx b/docs/reference/api/perform-a-benchmark-on-a-graph.api.mdx index 3d6402aca..f38839663 100644 --- a/docs/reference/api/perform-a-benchmark-on-a-graph.api.mdx +++ b/docs/reference/api/perform-a-benchmark-on-a-graph.api.mdx @@ -5,7 +5,7 @@ description: "Perform a benchmark with the given identifier on a graph with a gi sidebar_label: "Perform a benchmark on a graph." hide_title: true hide_table_of_contents: true -api: eJztWW1v2zYQ/isEv6wFVDtJ1631t6wIggBDF6TZgKE1DFo6W0wkUiWptJ6g/747Um+21TTZMKQD/KkheXd87u0xe6p4AjY2snBSKz7jl2BW2uRMsCWoOM2FuWWfpUuZS4Gt5R0oJhNQTq4kGKYVCq6NKNIgJPZEJjziTqwtn33gBgptHJ9HvBBG5ODA0H7FFS7wbm9oIRNUkYSlEC7Fv+GLyIuMBAxY7TRubWO+RmhDUKsAlqyhrIFPpTSQ8JkzJUTcxinkgs8q7jYFWbXOSLXmdR11SDrfd6Ds30sK7Y19xJxmRQgkv+fCoWvis13E0i6OJ6/2MA+AiTjWpXJ2D8tbneeCWaDIOkhYJq0jXI0CxscSKqnirEwwXGob8eSjulgxpdmdyEo8tiGRERNZ1tqwTBhoLSSo0QbnUwlmc7+jvUMrkVkgz4tMJzBYt5E4Pnn546uffn795uj4JBosXvKtOHi/dwDspyfIDfIxYX/qksVCMcCCxWoxpWLPYgMYtedMG5ZpkezF5lfcRE92stw4ZSPcF26rZVJhcYWdYDe4ZbSSf2FSEAZZSIQTS2HJFEICir1CSLhBp1TkpYnBohFMwQ+OxalQa1S3GPsgkwnMbm9akJNRq11mjhJIK4vRij6qZemCGvnWhAQl8jJO2QpNYZv6bH4tgZgeVea+hUuSIzvUxgmsBN5GnYn7dT2nRNtCKwuWrJwcHdE/+2nBe+Jb24Alioi1ctjAJC2KIpOxd2mqkhtLStUA2ra104Z+0J2bEoOCiRXGiA3VvsICw6JVCYNkDdQzjVtegorHQe6BJpJs5lIJpw1tFEZjwbjNu1BuXi/iOWKjeKCA8sXbBUovbyB2KNIoyhAA5LKRYH6bvdAbumBCrRO0R3uK6BSSMRgiSSTZF9nlAFAgwG2It1I9ECRJ7sIbclhwt+lfvo0v3MIdWDfBy63v3aaXfxEuF7SOpdvg+lxjO+XetpPOc8I7inbtQQUWeYzHqIe/NYK67pGK2941ij7zUfBVJi+ketH/0vw7h7f8izNAmTEH7tCcz8rxbogu1LmHQrix4r9dnyuj8/EOlUnbQcRa1gnjmJeO9gsRf5LvsUHE09pZIwHqMRMEd9FW+r4lOulKz7u2a6OnqJaUKJoZvjH4fDyPjZkQAp9VfHos9GohFlIt2pySb8PD5fBwgLq7dpCSM7qhptu1gt9W/qlz4IsDX3yHfHEgiqcnivlgp8kL7gyfQ4fH0IHcDuR2eAz9fznu8Bg68MV3zxcHonh6ohh7DHn2wGSmmqpjDT4zNJid8Wkon2k3gZtW3Z/11N88rdr5ck2jLjB37fi5NBmaSJ0r7Gw6rVJtXT2ryB5J3gkjxTILqaezEOx28pXpWGR+G8H5+fbW8es3R0cEfU6jypVPeevWlZ9ms7faALs6e3/NTi8v6L62Qvkfx8Gm9RU/64afYzP6fhI/2eWfqp+u/Tfj/ZBKB1/ctMiEVITax7Rq0tON/qOtyfpsuGirY9Z9BcCQhXB/4FVF89LfTVbXtB3mvZQ6fKtSbvq58lc9f6IB+WhwboGYazDL90Zxy5PPw306TLgfO+G+Nx3NJ4U+GfO++x9Zbc+umg8ez9n9X6dGAbX/M1ObIZwWaNcgjyuWHUgP+HD1D7D1He0ZPAWRgPGxC+encQyFG2iOTPsp7B3Ln59dI33+DY0M2SY= +api: eJztWG1v2zYQ/isEv6wFVDtJ1734W1YEQYChC9JswNAaxlmiLSYSqZJUWk/wf98dqVdbTeMN2zrAn2ySx+Nzz71QvIonwsZGFk5qxWf8WpiVNjkDthQqTnMw9+yjdClzqWBr+SAUk4lQTq6kMEwrFFwbKNIgBHsiEx5xB2vLZ++4EYU2js8jXoCBXDhhaL7iCgd4tle0kAlukYSlAJfif/EJ8iIjASOsdhqnhphvEVof1CqAJW0oa8SHUhqR8JkzpYi4jVORA59V3G0K0mqdkWrNt9uoRdLavgNl/1za0JzYMeY0KwKR/JED+6bBR7uIpV2cTl7tYe4BgzjWpXJ2D8trnefArCBmnUhYJq0jXPUG5McSKqnirEyQLjVEPHmvrlZMafYAWYnLNjgyYpBljQ7LwIhGQ4I7GnI+lMJsHje0M2gFmRVkeZHpRPTGDROnZy+/ffXd9z/8eHJ6FvUGL/mAB2/3DoB99wS5nj8m7HddshgUExiwGC2mVOxZbASy9pxpwzINyR43P+MkWrLj5dooG+E8uEHKpGBxhJlgNzhltJJ/oFMQBmlIwMESLKlCSIK4VwgJJ2iVgrw0sbCoBF3wjWNxCmqN2y1yH2QyQO92qoGMjJrdZebIgTSyyFb0Xi1LF7aRbTUlKJGXccpWqArT1Hvzcw5E96gy9ylckhzpoTROxArwNMpMnN9u5+RoW2hlhSUtZycn9LPvFjwnvrc1WCoRsVYOE5ikoSgyGXuTpiq5s7Sp6kEbajuvyw+ac1ciKehYMAY2FPsKAwyDViVMJGtBOVOb5SUoeJzIPdBEks5cKnDa0ERhNAaM27wJ4eb3RTxHbMQHCigfvC1RenknYoci9UYZCMBaNkLml6sXWkMHTCh1wu7RnKJyKpIxGJAkkvRDdt0DFArgEOK9VE8ESZK78Po1LJhb5y8f4guncCesm+Dh1uduncs/gcuBxrF0Gxxfakyn3Ot20vma8IbY3npQoYocYjHuw7sGKOsO3Di0rt7oPR8FW2XyQqoX3U3z9wwe2BdnAmXGDHhAdd4rp7sUXalLD4VwY8R/OT5XRufjGSqTJoOoalkHxjEvHe0HIl7Jj+igwtPoWWMB1GMqCO6iifR9TbTShp43bVdHV6KaokRsZviNwefjfqzVBAq8V/HTY6FXC1hItWh8Srb1F5f9xR7q9tieSy7ohC2drpX4ZeU/dXb98T+Nr6cY8m8RPO/N1Phwpn+NHC+R4yVyvESOl8jxEvmq4utrv0Q862hUqomltfChT42AGZ8GGqfti29atX+3U3/ytGr6GVt6Wgnz0LQ7SpOhitS5ws6m0yrV1m1nFekjyQcwEpZZyC1aC9HcvLQyHUPmpxGc76cMlvGlfELQ5/Q0Xvmcasy68d0T9hqfnOzm4u0tO7++ovMaT/HfToNO6z0/ax/bYz2hrvMz2a3zVfea+2faScGVTnxy0yIDqQi157Sq3dO2mqJBJ2fWHzTRMWu7TkhZoPsdryp6n/9qsu2WpkN/gVyHdzz5putjfNby/6ghM0rOvdgMe0deKU75JHy6TceOyqEdlUfdUbewOmfMu+w/MNqe3dQNtufs8W7oKKDmi1Zt+nAaoG2CHBYsO5Ce0Cj9C9i6jPYVPBWQCOO5C+vncSwK19s50l0i2tsqf3lxi+XzTwIw72w= sidebar_class_name: "get api-method" info_path: docs/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,18 +22,603 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Perform a benchmark on a graph.

+

+ Perform a benchmark on a graph. +

- - - + + + Perform a benchmark with the given identifier on a graph with a given identifier. ## Request -

Path Parameters

Query Parameters

- -The checks result. - -
Schema
  • Array [
  • oneOf
    reported object
    desired object
    metadata object
  • ]
Schema
  • Array [
  • oneOf
    reported object
    desired object
    metadata object
  • ]
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + The checks result. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + +
    + + + + reported + + object + + +
    + + + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
    +
    + + + + + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + +
    + + + + reported + + object + + +
    + + + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
    +
    + + + + + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/perform-a-dynamically-assembled-benchmark-on-a-graph.api.mdx b/docs/reference/api/perform-a-dynamically-assembled-benchmark-on-a-graph.api.mdx index 02aca16f1..582ae9aa9 100644 --- a/docs/reference/api/perform-a-dynamically-assembled-benchmark-on-a-graph.api.mdx +++ b/docs/reference/api/perform-a-dynamically-assembled-benchmark-on-a-graph.api.mdx @@ -5,7 +5,7 @@ description: "Perform a benchmark by defining the check criteria on a graph with sidebar_label: "Perform a dynamically assembled benchmark on a graph." hide_title: true hide_table_of_contents: true -api: eJztWV1v2zYU/SsEnzbAjZN0H63esiIL8tIFWbaXzjBo8dpiQpEqSbk1BP/33ktJNh27ntNgSAf4KRF1ee+5HzxiThouwedOVUFZwzN+A25qXckEm4DJi1K4BzZZMAlTZZSZsVAAywvIHxhuCuCUYNag9cyJqmCfVCjoQc3BMCXBBDVV4E74gAcx8zz7wB1U1gU+GvBKOFEC+qD1hht8QADR0VhJ3KIIUCVCgb/DZ1FWmgwceBssLm0Cv0Ng64jMTiPU6A1tHXyslQPJs+BqGHCPOZSCZw0Pi4q8+uAwPb5cDlZIKmfn6NH1SD7W4BZbcX9XGlOgGvX2lO1X/aeZiE+eJ/E8uLnK4dBwnfnB0SA/T6PlIsDMxggHhevtD47nIa9xRBZp0Adl5KEByfYppRxjgmNlfBAGi5gEFXluaxP8Vqx3tiwF1pEGMYBkWvlAg9NtwHHyLFimTK5ridNl4kitzsXJP+Z6yoxlc6FrfO3buR8woXXvwzPhoPcgccfj7Pdkt57ZqdAeKN1KWwnJc5/+2fnrn37+5dc3b0/PzgfJw2u+HJEjX1njwVOY89NT+rF9eOKp9gyNax2o8Lk1Ac8TWYuq0gonAK2HRt572tQk2De9XXRsgBW5r7GkAgnCObGg2hpMAItiJAM5A+pJl3e0oOoEKCNQqchnqYwI1tECnq8KXFi8b9sa9w14idioYGhgYnFWlbSTe8gDmnQbVVsApJatah9CJpgNBTih1rS7d/aM2A3kLhhCSkX+hb5JALV8tAkxHpODQJLlY3jpwWjT7eaDb+Jro/AAPpxgcGrqoD8zv4lQCnrO6QRn/MqGQpTRd1Ahztx7qvYygmqn9CkZ4z6kfiFFEE/cuJldtzF2ftDmquQrZV6tif95CW/kl2tAm10JzNFd7MrZ4xJdm6sIhXDjxP/7fE6dLXefUCX7E0S0hETnAovWg+1BxC/kHh/EY72fmWXxc7rNrgh33E/6tid6sxq9mNpjH+jC1CV99PH6IJBV4ghr/OTz0e4+dm7aEsSu4k1gbKdjgcw+7ntKuaUvJ+nLBPUqbNKSS4qwpOjWwB/TePM48sWRL75DvjgSxcsTxShZ6fqCK+l16HgZOpLbkdyOl6H/L8cdL0NHvvju+eJIFC9PFLsuQ5E9sJmFpemYQewMSbYZH7bjM2yFpWEMNWx6fXdJ4he4eS//1k7jniKEymfDYVNYH5ZZQw7Ici6cEhPd9pretdVtgWZc21zouIxoor688frN29NTwjoi8W0ae9zncRvVZPbOOmC3l3/esYuba4rXjyT/+6z16eOIZytVcS2UywUu4XVQ6wUT3kOJOGUin6/18ZPHNNSsRbb/UHlv2xrgcxhWWihDCcVyN12rVqo8nuDYLPyln4xsJchj9drKf+BNMxEe/nJ6uaTlVsykLuI9ldq01iy/mu5u3Xwn1gcgUknk+Ci44lLkhW8JmWjneyKuBflnB0zV8z0RE1H+2SF7/XxPuE6O/8ZQLySf78knUfrXOY3W7PHEEf3htlPgf2T7/7u0E1L/p5zZ6GYPdXWqIqsWIGiyCV77+iLPoQrJxh0KPGW2Yt6ryztkuC+0BoJL +api: eJztWEtv4zYQ/isETy3gjZNsn7qlizTIZRukaS9bw6DFscWEIrUk5V1D8H/fGUqy6ce6zgZtt4BPtqjhzPfNi+I0XILPnaqCsoZn/A7c1LqSCTYBkxelcE9ssmASpsooM2OhAJYXkD8x3BTAKcGsQemZE1XBPqhQ0IOag2FKgglqqsCd8QEPYuZ59o47qKwLfDTglXCiBNRB6w03+IAAoqKxkrhFEaBKhAL/w0dRVpoEHHgbLC5tAn9AYGuLzE4j1KgNZR28r5UDybPgahhwjxxKwbOGh0VFWn1wSI8vl4MVksrZOWp0PZL3NbjFjt1flUYK5KNenth+Vn/KRHzwPLHnwc1VDsea68SPtgb5ZWotFwFmNlo4ylwvf7Q9D3mNKbJIjT4pI481SLLPceUYCY6V8UEYdGJiVOS5rU3wO7be2LIU6EdKxACSaeUDJU63AdPJs2CZMrmuJWaXiSm1qouzv8ztlBnL5kLX+Nq3eT9gQuteh2fCQa9B4o5t9gfYrXN2KrQHoltpKyF57ulfXL7+7vsffvzp5/OLy0Hy8JovR6TIV9Z48GTm8vycfnaLJ1a1Zyhc60COz60JWE8kLapKK8wAlB4a+ehpU5Ng39R21XUD9MhjjS4V2CCcEwvyrUEC6BQjGcgZUEw63lGCvBOgjEClIp2lMiJYRwtYXxW4sHjbhjXuG/ASsZHDUMBE56w8aSePkAcU6Taq1gHYWna8fUwzQTZk4IxC0+7eGzPqbiD3wRBSKtIv9F0CqO1HmxBjmRwFkiS34aWF0dLt8oNv4mut8AA+nKFxCuqgr5lfRCgFPedUwRm/saEQZdQdVIg595a8vYyg2ix9DmPch61fSBHEMzdusus2xsgPWq5KvlLm1brxv4zwBr9cA8rsIzBHdTEqF9suujU3EQrhxoz/+/ycOlvur1Al+wqitoSNzgUWpQe7iYgn5AEd1Md6PTPL4nG6210R7rjP9F1N9GaVepHatg5UYeqSDn38fBDYVWIKazzy+Wh/HDs1rQtiVPFLYGynY4GdfdzHlLilLyfpywT1ymwSkmuysCTr1sBv0/jlsR2P/2l+HUPk33LwKFnp8OFKeoycDpHTIXI6RE6HyOkQ+ary62s/RKLXkVRhyUsziKlPI4KMD1s3DtuLzDCaGjb9PGFJly28Mvfjhtpp3FOEUPlsOGwK68Mya0gBSc6FU2Ki22Kid236tkAzrm0udFxGNHGesfEar17nhHVEl71pLKKex32cXrA3Fq+F99e/P7Cru1uy14eG/3nR6vQx1NnqFrsezMgFLuExqvWCCe+hRJwyGdes5zFn2+2+WV/q/sFJTxvWAB/DsNICr7tIKLq76UK1mgJhJsdg4Z8+M7LVAAi913r+HW+aifDwh9PLJS23l2eKIp7vFKb1HfmzdPfPafZifQIqrmT8Ey/4uBTr40tMJrOaAxbXA6AXG0ynNQcsJkOgF5vs5zUHzHXjny809R+Naw7wSSZLa06jdfd4Zop+c99NfL5lh6eZeyH1n8BmI5o91FVVxa5agKDMJnjt66s8hyokG/dMfIjZqvPeXD9gh/sEFzqYkQ== sidebar_class_name: "get api-method" info_path: docs/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,18 +22,613 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Perform a dynamically assembled benchmark on a graph.

+

+ Perform a dynamically assembled benchmark on a graph. +

- - - + + + Perform a benchmark by defining the check criteria on a graph with a given identifier. ## Request -

Path Parameters

Query Parameters

- -The checks result. - -
Schema
  • Array [
  • oneOf
    reported object
    desired object
    metadata object
  • ]
Schema
  • Array [
  • oneOf
    reported object
    desired object
    metadata object
  • ]
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + + + +
+
+
+
+ + +
+ + + The checks result. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + +
    + + + + reported + + object + + +
    + + + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
    +
    + + + + + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + +
    + + + + reported + + object + + +
    + + + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
    +
    + + + + + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/proxy-request-to-a-configured-tsdb-server.api.mdx b/docs/reference/api/proxy-request-to-a-configured-tsdb-server.api.mdx index 9e5c56de1..9669c87ee 100644 --- a/docs/reference/api/proxy-request-to-a-configured-tsdb-server.api.mdx +++ b/docs/reference/api/proxy-request-to-a-configured-tsdb-server.api.mdx @@ -22,38 +22,231 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Proxy request to a configured tsdb server.

- - - - +

+ Proxy request to a configured tsdb server. +

+ + + + Proxy request to a configured tsdb server. ## Request -

Path Parameters

- -If the response is coming from Resoto (no ResotoVia header), this means that tsdb is not configured, so a request can not be made. - -
Schema
    - -string - -
- -If the response is coming from Resoto (no ResotoVia header), this means that the configured tsdb server can not be reached. - -
Schema
    - -string - -
- -The response from the tsdb. - -
Response Headers
  • ViaResoto string
    - -This header indicates, that the response is created by the tsdb server and Resoto is only a proxy. Depending on this header: you have to interpret the response differently. - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + If the response is coming from Resoto (no ResotoVia header), this means that tsdb is not configured, so a request can not be made. + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+ + + If the response is coming from Resoto (no ResotoVia header), this means that the configured tsdb server can not be reached. + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+ + + The response from the tsdb. + + +
+ + + Response Headers + +
    +
  • + + + ViaResoto + + string + +
    +
    + + + This header indicates, that the response is created by the tsdb server and Resoto is only a proxy. + Depending on this header: you have to interpret the response differently. + + + +
    +
    +
  • +
+
+ +
+
+
+
+
diff --git a/docs/reference/api/replace-a-configuration-validation-with-given-id.api.mdx b/docs/reference/api/replace-a-configuration-validation-with-given-id.api.mdx index 569584da2..6aa18f187 100644 --- a/docs/reference/api/replace-a-configuration-validation-with-given-id.api.mdx +++ b/docs/reference/api/replace-a-configuration-validation-with-given-id.api.mdx @@ -22,18 +22,184 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Replace a configuration validation with given id

+

+ Replace a configuration validation with given id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Replace a configuration validation identified by id with provided value. ## Request -

Path Parameters

Body

- -The configuration validation. - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+
+ +
    + + + + + +
+
+
+
+
+ + +
+ + + The configuration validation. + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/replace-a-configuration-with-given-id.api.mdx b/docs/reference/api/replace-a-configuration-with-given-id.api.mdx index 3a9857369..f30b1e527 100644 --- a/docs/reference/api/replace-a-configuration-with-given-id.api.mdx +++ b/docs/reference/api/replace-a-configuration-with-given-id.api.mdx @@ -22,22 +22,238 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Replace a configuration with given id

+

+ Replace a configuration with given id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Replace a configuration identified by id with provided value. ## Request -

Path Parameters

Query Parameters

Body

- -The configuration - -
Response Headers
  • Resoto-Config-Revision string
    - -The revision of this config - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+
+ +
    + + + +
+
+
+
+
+ + +
+ + + The configuration + + +
+ + + Response Headers + +
    +
  • + + + Resoto-Config-Revision + + string + +
    +
    + + + The revision of this config + + +
    +
    +
  • +
+
+ + + + +
+ + + Schema + +
+ +
    + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/resoto-core-rest-api.info.mdx b/docs/reference/api/resoto-core-rest-api.info.mdx index 9924b192b..2336c304f 100644 --- a/docs/reference/api/resoto-core-rest-api.info.mdx +++ b/docs/reference/api/resoto-core-rest-api.info.mdx @@ -13,6 +13,14 @@ import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; import Export from "@theme/ApiExplorer/Export"; -Version: V1 + + Version: V1 + -

Resoto Core REST API

+

+ Resoto Core REST API +

diff --git a/docs/reference/api/retrieve-the-certificate-authorities-public-certificate.api.mdx b/docs/reference/api/retrieve-the-certificate-authorities-public-certificate.api.mdx index 23e59d2d4..7e3fffa20 100644 --- a/docs/reference/api/retrieve-the-certificate-authorities-public-certificate.api.mdx +++ b/docs/reference/api/retrieve-the-certificate-authorities-public-certificate.api.mdx @@ -22,22 +22,89 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Retrieve the certificate authorities public certificate.

+

+ Retrieve the certificate authorities public certificate. +

- - - + + + The certificate served here is only used to sign and validate. ## Request -
- -The certificate in PEM format. - -
Schema
    - -string - -
+
+
+ + +
+ + + The certificate in PEM format. + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/search-all-history-events-and-return-them.api.mdx b/docs/reference/api/search-all-history-events-and-return-them.api.mdx index 40d671264..be2bf3ae8 100644 --- a/docs/reference/api/search-all-history-events-and-return-them.api.mdx +++ b/docs/reference/api/search-all-history-events-and-return-them.api.mdx @@ -22,26 +22,406 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Search all history events and return them.

+

+ Search all history events and return them. +

- + + + - - -Search all history events and return them. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age\>23d or desired.clean==true or metadata.version==2) +Search all history events and return them. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age>23d or desired.clean==true or metadata.version==2) ## Request -

Path Parameters

Query Parameters

Body

- -The search to perform - -
    - -string - -
- -The result of this search in the defined format - -
Schema
  • Array [
  • ]
Schema
Schema
    any
Schema
    any
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The result of this search in the defined format + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + + + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/search-and-aggregate-history-events-and-return-the-aggregation-result.api.mdx b/docs/reference/api/search-and-aggregate-history-events-and-return-the-aggregation-result.api.mdx index a0e173cd3..89ceda7cc 100644 --- a/docs/reference/api/search-and-aggregate-history-events-and-return-the-aggregation-result.api.mdx +++ b/docs/reference/api/search-and-aggregate-history-events-and-return-the-aggregation-result.api.mdx @@ -22,26 +22,254 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Search and aggregate history events and return the aggregation result.

+

+ Search and aggregate history events and return the aggregation result. +

- + + + - - -Search and aggregate history events and return the aggregation result. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age\>23d or desired.clean==true or metadata.version==2) +Search and aggregate history events and return the aggregation result. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age>23d or desired.clean==true or metadata.version==2) ## Request -

Path Parameters

Query Parameters

Body

- -The aggregation search to perform - -
    - -string - -
- -The result of this search in the defined format - -
Schema
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The aggregation search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The result of this search in the defined format + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
+
+
+
+
+ + +
+ + + Schema + +
+ +
    + + + +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/search-the-aggregate-function-on-the-specified-graph-and-return-the-aggregation-result.api.mdx b/docs/reference/api/search-the-aggregate-function-on-the-specified-graph-and-return-the-aggregation-result.api.mdx index b3d10759d..89dded6f5 100644 --- a/docs/reference/api/search-the-aggregate-function-on-the-specified-graph-and-return-the-aggregation-result.api.mdx +++ b/docs/reference/api/search-the-aggregate-function-on-the-specified-graph-and-return-the-aggregation-result.api.mdx @@ -22,26 +22,244 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Search the aggregate function on the specified graph and return the aggregation result.

+

+ Search the aggregate function on the specified graph and return the aggregation result. +

- + + + - - -Search and aggregate the graph and return the resulting aggregated data. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age\>23d or desired.clean==true or metadata.version==2) +Search and aggregate the graph and return the resulting aggregated data. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age>23d or desired.clean==true or metadata.version==2) ## Request -

Path Parameters

Query Parameters

Body

- -The aggregation search to perform - -
    - -string - -
- -The result of this search in the defined format - -
Schema
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The aggregation search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The result of this search in the defined format + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
+
+
+
+
+ + +
+ + + Schema + +
+ +
    + + + +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/search-the-graph-and-return-all-nodes-as-list-this-will-not-contain-any-edges.api.mdx b/docs/reference/api/search-the-graph-and-return-all-nodes-as-list-this-will-not-contain-any-edges.api.mdx index 4678eed2e..ed5b6bfe4 100644 --- a/docs/reference/api/search-the-graph-and-return-all-nodes-as-list-this-will-not-contain-any-edges.api.mdx +++ b/docs/reference/api/search-the-graph-and-return-all-nodes-as-list-this-will-not-contain-any-edges.api.mdx @@ -22,26 +22,529 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Search the graph and return all nodes as list (this will not contain any edges)

+

+ Search the graph and return all nodes as list (this will not contain any edges) +

- + + + - - -Search the graph and return the matching nodes as list. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age\>23d or desired.clean==true or metadata.version==2) +Search the graph and return the matching nodes as list. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age>23d or desired.clean==true or metadata.version==2) ## Request -

Path Parameters

Query Parameters

Body

- -The search to perform - -
    - -string - -
- -The result of this search in the defined format - -
Schema
  • Array [
  • ]
Schema
Schema
    any
Schema
    any
Schema
    any
\n \n \n \n \n \n \n \n graph_root\n root\n root\n \n \n cloud\n onelogin\n onelogin\n 2021-12-14T08:49:52Z\n 6d7h\n \n \n \n\n"} language={"xml"}>
Schema
    any
Schema
    any
\"2RZlTX9yzeBwTNT_H1KZVA\"\n subgraph \"graph_root\" {\n \"root\"\n \"2RZlTX9yzeBwTNT_H1KZVA\"\n }\n}\n"} language={"shell"}>
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The result of this search in the defined format + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + + + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ \n \n \n \n \n \n \n \n graph_root\n root\n root\n \n \n cloud\n onelogin\n onelogin\n 2021-12-14T08:49:52Z\n 6d7h\n \n \n \n\n"} + language={"xml"} + > + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ \"2RZlTX9yzeBwTNT_H1KZVA\"\n subgraph \"graph_root\" {\n \"root\"\n \"2RZlTX9yzeBwTNT_H1KZVA\"\n }\n}\n"} + language={"shell"} + > + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/search-the-graph-and-return-all-possible-attribute-names-for-given-property-path.api.mdx b/docs/reference/api/search-the-graph-and-return-all-possible-attribute-names-for-given-property-path.api.mdx index c31d946a9..252569f96 100644 --- a/docs/reference/api/search-the-graph-and-return-all-possible-attribute-names-for-given-property-path.api.mdx +++ b/docs/reference/api/search-the-graph-and-return-all-possible-attribute-names-for-given-property-path.api.mdx @@ -22,30 +22,208 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Search the graph and return all possible attribute names for given property path.

+

+ Search the graph and return all possible attribute names for given property path. +

- - - + + + Search the graph and return all possible attribute names for given property path. ## Request -

Path Parameters

Query Parameters

Body

- -The search to perform - -
    - -string - -
- -The result of this search in the defined format - -
Schema
  • Array [
  • - -string - -
  • ]
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The result of this search in the defined format + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/search-the-graph-and-return-all-possible-attribute-values-for-given-property-path.api.mdx b/docs/reference/api/search-the-graph-and-return-all-possible-attribute-values-for-given-property-path.api.mdx index 1aacfc326..69808742b 100644 --- a/docs/reference/api/search-the-graph-and-return-all-possible-attribute-values-for-given-property-path.api.mdx +++ b/docs/reference/api/search-the-graph-and-return-all-possible-attribute-values-for-given-property-path.api.mdx @@ -22,30 +22,208 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Search the graph and return all possible attribute values for given property path.

+

+ Search the graph and return all possible attribute values for given property path. +

- - - + + + Search the graph and return all possible attribute values for given property path. ## Request -

Path Parameters

Query Parameters

Body

- -The search to perform - -
    - -string - -
- -The result of this search in the defined format - -
Schema
  • Array [
  • - -string - -
  • ]
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The result of this search in the defined format + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/search-the-graph-and-return-the-resulting-graph.api.mdx b/docs/reference/api/search-the-graph-and-return-the-resulting-graph.api.mdx index cf564fb69..c0208b4b0 100644 --- a/docs/reference/api/search-the-graph-and-return-the-resulting-graph.api.mdx +++ b/docs/reference/api/search-the-graph-and-return-the-resulting-graph.api.mdx @@ -22,26 +22,534 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Search the graph and return the resulting graph.

+

+ Search the graph and return the resulting graph. +

- + + + - - -Search the graph and return the matching nodes including the traversed edges. The resulting data can be interpreted as a graph. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age\>23d or desired.clean==true or metadata.version==2) +Search the graph and return the matching nodes including the traversed edges. The resulting data can be interpreted as a graph. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age>23d or desired.clean==true or metadata.version==2) ## Request -

Path Parameters

Query Parameters

Body

- -The search to perform - -
    - -string - -
- -The result of this search in the defined format - -
Schema
  • Array [
  • ]
Schema
Schema
    any
Schema
    any
Schema
    any
\n \n \n \n \n \n \n \n graph_root\n root\n root\n \n \n cloud\n onelogin\n onelogin\n 2021-12-14T08:49:52Z\n 6d7h\n \n \n \n\n"} language={"xml"}>
Schema
    any
Schema
    any
\"2RZlTX9yzeBwTNT_H1KZVA\"\n subgraph \"graph_root\" {\n \"root\"\n \"2RZlTX9yzeBwTNT_H1KZVA\"\n }\n}\n"} language={"shell"}>
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The result of this search in the defined format + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + + + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ \n \n \n \n \n \n \n \n graph_root\n root\n root\n \n \n cloud\n onelogin\n onelogin\n 2021-12-14T08:49:52Z\n 6d7h\n \n \n \n\n"} + language={"xml"} + > + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ \"2RZlTX9yzeBwTNT_H1KZVA\"\n subgraph \"graph_root\" {\n \"root\"\n \"2RZlTX9yzeBwTNT_H1KZVA\"\n }\n}\n"} + language={"shell"} + > + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/send-a-ping-to-the-system-and-expect-a-pong.api.mdx b/docs/reference/api/send-a-ping-to-the-system-and-expect-a-pong.api.mdx index 064f02c70..c80a295e9 100644 --- a/docs/reference/api/send-a-ping-to-the-system-and-expect-a-pong.api.mdx +++ b/docs/reference/api/send-a-ping-to-the-system-and-expect-a-pong.api.mdx @@ -22,22 +22,89 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Send a ping to the system and expect a pong.

+

+ Send a ping to the system and expect a pong. +

- - - + + + Send a ping to the system and expect a pong. ## Request -
- -The pong answer - -
Schema
    - -string - -
+
+
+ + +
+ + + The pong answer + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/send-analytics-events-to-the-server.api.mdx b/docs/reference/api/send-analytics-events-to-the-server.api.mdx index ab309145b..d5f21ef91 100644 --- a/docs/reference/api/send-analytics-events-to-the-server.api.mdx +++ b/docs/reference/api/send-analytics-events-to-the-server.api.mdx @@ -22,30 +22,220 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Send analytics events to the server

+

+ Send analytics events to the server +

- - - + + + Send analytics events to the server. The server will either drop or forward the event based on the user defined settings. ## Request -

Body

array
- -The analytics events to send - -
  • Array [
  • context object
    - -The context of the event. - -
    counters object
    - -The counters of the event. - -
  • ]
- -The events were accepted - -
+ + +
+ +

+ Body +

+ array + +
+
+ + + The analytics events to send + + +
+
    +
  • +
    + Array [ +
    +
  • + + + + +
    + + + + context + + object + + +
    +
    + + + The context of the event. + + +
    + + +
    +
    +
    +
    + + + + counters + + object + + +
    +
    + + + The counters of the event. + + +
    + + +
    +
    +
    + +
  • +
    + ] +
    +
  • +
+
+
+
+
+ + +
+ + + The events were accepted + + +
+ +
+
+
+
+
diff --git a/docs/reference/api/show-the-structure-of-the-search.api.mdx b/docs/reference/api/show-the-structure-of-the-search.api.mdx index 237f15cad..7e3cead4b 100644 --- a/docs/reference/api/show-the-structure-of-the-search.api.mdx +++ b/docs/reference/api/show-the-structure-of-the-search.api.mdx @@ -22,26 +22,193 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Show the structure of the search

+

+ Show the structure of the search +

- - - + + + Structure of the search as json object. ## Request -

Path Parameters

Query Parameters

Body

- -The search to perform - -
    - -string - -
- -The execution plan of the database - -
Schema
    any
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The execution plan of the database + + +
+ + + + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/sign-a-certificate-request.api.mdx b/docs/reference/api/sign-a-certificate-request.api.mdx index a15cc7b7b..f60702988 100644 --- a/docs/reference/api/sign-a-certificate-request.api.mdx +++ b/docs/reference/api/sign-a-certificate-request.api.mdx @@ -22,30 +22,138 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Sign a certificate request.

+

+ Sign a certificate request. +

- - - + + + Sign a certificate request. ## Request -

Body

- -The certificate signing request (csr) in pkcs10 format. - -
    - -string - -
- -The certificate in PEM format. - -
Schema
    - -string - -
+ + +
+ +

+ Body +

+
+
+ + + The certificate signing request (csr) in pkcs10 format. + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The certificate in PEM format. + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/this-endpoint-is-used-to-authenticate-the-user.api.mdx b/docs/reference/api/this-endpoint-is-used-to-authenticate-the-user.api.mdx index f8b5e11a8..287bd06f5 100644 --- a/docs/reference/api/this-endpoint-is-used-to-authenticate-the-user.api.mdx +++ b/docs/reference/api/this-endpoint-is-used-to-authenticate-the-user.api.mdx @@ -22,18 +22,100 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

This endpoint is used to authenticate the user.

+

+ This endpoint is used to authenticate the user. +

- - - + + + Authenticate the user. This endpoint needs to be accessed from a browser! It is possible that the user is redirected to another authentication server. ## Request -

Body

- -The redirect to the specified url in the form with a code parameter added. - -
+ + +
+ +

+ Body +

+
+ +
    + + + + + + + +
+
+
+
+
+ + +
+ + + The redirect to the specified url in the form with a code parameter added. + + +
+ +
+
+
+
+
diff --git a/docs/reference/api/this-endpoint-is-used-to-create-the-first-user.api.mdx b/docs/reference/api/this-endpoint-is-used-to-create-the-first-user.api.mdx index 8536fb765..41b5d6445 100644 --- a/docs/reference/api/this-endpoint-is-used-to-create-the-first-user.api.mdx +++ b/docs/reference/api/this-endpoint-is-used-to-create-the-first-user.api.mdx @@ -22,18 +22,127 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

This endpoint is used to create the first user.

+

+ This endpoint is used to create the first user. +

- - - + + + Create the first user from the create first user login form. ## Request -

Body

- -The redirect to the specified url in the form. - -
+ + +
+ +

+ Body +

+
+ +
    + + + + + + + + + + + + + +
+
+
+
+
+ + +
+ + + The redirect to the specified url in the form. + + +
+ +
+
+
+
+
diff --git a/docs/reference/api/this-endpoint-is-used-to-get-the-user-information.api.mdx b/docs/reference/api/this-endpoint-is-used-to-get-the-user-information.api.mdx index fd8991545..cec057f48 100644 --- a/docs/reference/api/this-endpoint-is-used-to-get-the-user-information.api.mdx +++ b/docs/reference/api/this-endpoint-is-used-to-get-the-user-information.api.mdx @@ -22,18 +22,91 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

This endpoint is used to get the user information.

+

+ This endpoint is used to get the user information. +

- - - + + + Get the user information. ## Request -
- -The user information. - -
Schema
    any
+
+
+ + +
+ + + The user information. + + +
+ + + + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/this-endpoint-is-used-to-login-the-user.api.mdx b/docs/reference/api/this-endpoint-is-used-to-login-the-user.api.mdx index c571ba5e2..f2220bfb8 100644 --- a/docs/reference/api/this-endpoint-is-used-to-login-the-user.api.mdx +++ b/docs/reference/api/this-endpoint-is-used-to-login-the-user.api.mdx @@ -22,18 +22,40 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

This endpoint is used to login the user.

- - - - +

+ This endpoint is used to login the user. +

+ + + + Authenticate the user. This endpoint needs to be accessed from a browser! It is possible that the user is redirected to another authentication server. ## Request -
- -The login page. - -
+
+
+ + +
+ + + The login page. + + +
+ +
+
+
+
+
diff --git a/docs/reference/api/this-endpoint-is-used-to-renew-a-jwt-that-is-about-to-expire.api.mdx b/docs/reference/api/this-endpoint-is-used-to-renew-a-jwt-that-is-about-to-expire.api.mdx index 95c258ae3..f59cb50e1 100644 --- a/docs/reference/api/this-endpoint-is-used-to-renew-a-jwt-that-is-about-to-expire.api.mdx +++ b/docs/reference/api/this-endpoint-is-used-to-renew-a-jwt-that-is-about-to-expire.api.mdx @@ -22,22 +22,132 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

This endpoint is used to renew a JWT that is about to expire.

+

+ This endpoint is used to renew a JWT that is about to expire. +

- - - + + + Get the user information. ## Request -
- -The user information. - -
Response Headers
  • Authorization string
    - -The authorization header with the renewed JWT. - -
Schema
    any
+
+
+ + +
+ + + The user information. + + +
+ + + Response Headers + +
    +
  • + + + Authorization + + string + +
    +
    + + + The authorization header with the renewed JWT. + + +
    +
    +
  • +
+
+ + + + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/this-endpoint-signals-if-the-system-is-ready-to-serve-traffic.api.mdx b/docs/reference/api/this-endpoint-signals-if-the-system-is-ready-to-serve-traffic.api.mdx index 4558bb344..70ae1fae9 100644 --- a/docs/reference/api/this-endpoint-signals-if-the-system-is-ready-to-serve-traffic.api.mdx +++ b/docs/reference/api/this-endpoint-signals-if-the-system-is-ready-to-serve-traffic.api.mdx @@ -22,22 +22,89 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

This endpoint signals if the system is ready to serve traffic.

+

+ This endpoint signals if the system is ready to serve traffic. +

- - - + + + This endpoint signals if the system is ready to serve traffic. ## Request -
- -This response code signals, that the system is ready. - -
Schema
    - -string - -
+
+
+ + +
+ + + This response code signals, that the system is ready. + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/transform-the-search-into-the-raw-database-search.api.mdx b/docs/reference/api/transform-the-search-into-the-raw-database-search.api.mdx index f121ebe2e..f876ee8bd 100644 --- a/docs/reference/api/transform-the-search-into-the-raw-database-search.api.mdx +++ b/docs/reference/api/transform-the-search-into-the-raw-database-search.api.mdx @@ -22,30 +22,250 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Transform the search into the raw database search

+

+ Transform the search into the raw database search +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Show the underlying raw search. ## Request -

Path Parameters

Query Parameters

Body

- -The search to perform - -
    - -string - -
- -Returns the search as performed by the database. - -
Schema
    bind_vars object
    - -All binding variables for this query - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + Returns the search as performed by the database. + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
    + + + + bind_vars + + object + + +
    +
    + + + All binding variables for this query + + +
    + + +
    +
    +
    +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/update-a-node-with-the-given-node-id.api.mdx b/docs/reference/api/update-a-node-with-the-given-node-id.api.mdx index 7ddd0f8cb..0d11ef877 100644 --- a/docs/reference/api/update-a-node-with-the-given-node-id.api.mdx +++ b/docs/reference/api/update-a-node-with-the-given-node-id.api.mdx @@ -22,22 +22,190 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Update a node with the given node id

+

+ Update a node with the given node id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Update a node with the given node id ## Request -

Path Parameters

Body

- -The partial object data to patch. - -
- -Return the patched node - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The partial object data to patch. + + +
+
    + + + +
+
+
+
+
+ + +
+ + + Return the patched node + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/web-socket-attach-to-the-working-queue.api.mdx b/docs/reference/api/web-socket-attach-to-the-working-queue.api.mdx index 9d0a6f903..b8ecfa8fd 100644 --- a/docs/reference/api/web-socket-attach-to-the-working-queue.api.mdx +++ b/docs/reference/api/web-socket-attach-to-the-working-queue.api.mdx @@ -22,11 +22,18 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

[WebSocket] Attach to the working queue

+

+ [WebSocket] Attach to the working queue +

- - - + + + ## WebSocket Endpoint @@ -40,8 +47,125 @@ Note: the server tries to spread the number of tasks evenly over the number of w ## Request -

Query Parameters

- -When the connection is established. - -
Schema
  • Array [
  • ]
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + When the connection is established. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/docs/reference/api/web-socket-listen-to-registered-events-of-given-subscriber.api.mdx b/docs/reference/api/web-socket-listen-to-registered-events-of-given-subscriber.api.mdx index c2671b00a..f1963544d 100644 --- a/docs/reference/api/web-socket-listen-to-registered-events-of-given-subscriber.api.mdx +++ b/docs/reference/api/web-socket-listen-to-registered-events-of-given-subscriber.api.mdx @@ -22,11 +22,18 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

[WebSocket] Listen to registered events of given subscriber

+

+ [WebSocket] Listen to registered events of given subscriber +

- - - + + + ## WebSocket Endpoint @@ -36,12 +43,96 @@ The connection to this endpoint will never be closed. All action events of the s ## Request -

Path Parameters

- -No subscriber found - -
Schema
    - -string - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + No subscriber found + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/reference/api/web-socket-register-as-event-listener-and-receive-all-events.api.mdx b/docs/reference/api/web-socket-register-as-event-listener-and-receive-all-events.api.mdx index 07c1cfaaa..f94a7992d 100644 --- a/docs/reference/api/web-socket-register-as-event-listener-and-receive-all-events.api.mdx +++ b/docs/reference/api/web-socket-register-as-event-listener-and-receive-all-events.api.mdx @@ -22,11 +22,18 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

[WebSocket] Register as event listener and receive all events.

+

+ [WebSocket] Register as event listener and receive all events. +

- - - + + + ## WebSocket Endpoint @@ -34,8 +41,47 @@ The client needs to send all the required headers for a ws connection and has to ## Authorization -In case Resoto has a PSK infrastructure in place, the client needs to send a JWT token via the `Authorization` header or via the `resoto_authorization` cookie. It is also possible to omit header or cookie and send an Authorization message as first message on the websocket. Example { "kind": "authorization", "jwt": "Bearer " } +In case Resoto has a PSK infrastructure in place, the client needs to send a JWT token via the `Authorization` header or via the `resoto_authorization` cookie. It is also possible to omit header or cookie and send an Authorization message as first message on the websocket. Example \{ "kind": "authorization", "jwt": "Bearer <jwt>" \} ## Request -

Query Parameters

+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+
+ + +
+ +
+ +
+
+
+
+
diff --git a/docs/reference/configuration/worker.mdx b/docs/reference/configuration/worker.mdx index 11a395af9..08c609243 100644 --- a/docs/reference/configuration/worker.mdx +++ b/docs/reference/configuration/worker.mdx @@ -38,7 +38,7 @@ Resoto Worker can only write files to its home directory. ::: -:::caution +:::warning Resoto Worker will overwrite any existing files with the defined filenames. @@ -49,7 +49,6 @@ Resoto Worker will overwrite any existing files with the defined filenames. For [Docker](../../getting-started/install-resoto/docker.mdx) and [Kubernetes](../../getting-started/install-resoto/kubernetes.mdx) installations, you can mount configuration files within the `resotoworker` container instead of defining them in the configuration. - 1. Add the desired volume definition to the `resotoworker` service in `docker-compose.yaml`: @@ -84,7 +83,6 @@ For [Docker](../../getting-started/install-resoto/docker.mdx) and [Kubernetes](. ::: - 1. Create a secret with the path to the configuration file: @@ -118,7 +116,6 @@ For [Docker](../../getting-started/install-resoto/docker.mdx) and [Kubernetes](. ``` - ## Multi-Core Machines @@ -161,7 +158,7 @@ gcp: - Within AWS, `aws.region_pool_size` is used to determine how many regions per account are collected concurrently. -:::caution +:::warning At peak, Resoto creates concurrent network connections for each region in every account. With a single cloud with 32 accounts and 20 regions per account, for example, there will be a maximum of 32 × 20 = 640 connections. diff --git a/docs/reference/search/filters.mdx b/docs/reference/search/filters.mdx index 1447f9aea..cffb45f16 100644 --- a/docs/reference/search/filters.mdx +++ b/docs/reference/search/filters.mdx @@ -5,7 +5,7 @@ sidebar_label: Filters # Search Filters -## Selecting Nodes by [Kind](../../concepts/asset-inventory-graph/index.mdx#resource-kinds) {#selecting-nodes-by-kind} +## Selecting Nodes by [Kind](../../concepts/asset-inventory-graph/index.mdx#resource-kinds) \{#selecting-nodes-by-kind} ```bash title="Filter by kind" > search is(instance) @@ -156,7 +156,7 @@ Let us assume following document: `{"reported": { "test": [1, 2, 3, 4]}}`, we co In case no operator modifier is defined, the default is `any`. -:::tip Example Predicates +:::tip[Example Predicates] ```bash title="Select nodes with names exactly matching "sunset"" name == "sunset" @@ -186,7 +186,7 @@ All listed selections can be combined with `and` and `or` clauses. In order to d It is possible to negate a simple predicate or more complex term with `not`. -:::tip Examples +:::tip[Examples] ```bash title="Select nodes where reported.name is either sunrise or sunset" > search name in [sunset, sunrise] @@ -216,7 +216,7 @@ There are entities that contain complex, deeply nested structures. As explained If you need to combine several predicates for nested array elements, it is not sufficient to combine multiple predicates using `[*]` since there is no way to define the same position for all predicates. However, this is achievable using context notation. -:::tip Example +:::tip[Example] ```json title="Example document showing the data of an AWS security gateway" { @@ -278,7 +278,7 @@ It is also possible to nest a context within another: path[*].{predicate1, nested[*].{predicate2, ...}, ...} ``` -:::tip Example +:::tip[Example] Here is another example of context notation using the example JSON document above: @@ -326,7 +326,7 @@ Values coming from the cloud provider are available in the `reported` section, a Nodes can be selected based on the fact that a specific property exists, no matter which value this property has. The `has_key(parent, property)` function will select all nodes where the property `parent` has property `property`. -:::tip Example +:::tip[Example] We want to find all volumes that are tagged with the tag `owner`. @@ -342,7 +342,7 @@ We want to find all volumes that are tagged with the tag `owner`. For resources with IPv4 addresses, it is possible to select nodes in a specific subnet range. The function `in_subnet(ipv4_property, cidr)` will select all nodes where the property `ipv4_property` is in the subnet range `cidr`. -:::tip Example +:::tip[Example] We want to find all load balancer, where the public IPv4 address is in the subnet range `167.123.0.0/16`. diff --git a/docs/reference/search/merging-nodes.mdx b/docs/reference/search/merging-nodes.mdx index 64f7d7285..ba0ac0e46 100644 --- a/docs/reference/search/merging-nodes.mdx +++ b/docs/reference/search/merging-nodes.mdx @@ -13,7 +13,7 @@ This approach merges multiple nodes in a graph into one node. This combined node The nested search is executed for every node in the result. The result of the nested search is then merged with the original node data. -:::tip Example +:::tip[Example] Most cloud resources are maintained in an account. Accounts are modeled as [nodes](../../concepts/asset-inventory-graph/index.mdx#nodes) in Resoto. @@ -52,7 +52,7 @@ If the merge name is a simple literal, zero or one result of the nested search i If the expected result of the nested search is a list, than the merge name has to be defined with square brackets. -:::tip Example +:::tip[Example] The following search will traverse inbound on every element and collect all predecessors under the name `predecessors`). Please note the square brackets in the name `predecessors[]` - which will tell the search engine to return all predecessors, not only the first one. As a result the node is returned with a new property, which contains the list of all predecessors. @@ -76,7 +76,7 @@ The following search will traverse inbound on every element and collect all pred It is also possible to define multiple merge queries in one `search` statement. -:::tip Example +:::tip[Example] As a result every node that is returned has two additional properties: `account` holds the complete data of the account node, as well `region`, which contains the related region node. diff --git a/docs/reference/search/sort-and-limit.mdx b/docs/reference/search/sort-and-limit.mdx index 1f695bf63..c5c5972ae 100644 --- a/docs/reference/search/sort-and-limit.mdx +++ b/docs/reference/search/sort-and-limit.mdx @@ -37,7 +37,11 @@ Example: > search is(volume) limit 3, 5 ``` -:::tip While experimenting with a specific search or exploring the cloud you should always define a meaningful limit. This will reduce the search result to a number that can be digested easily. ::: +:::tip + +While experimenting with a specific search or exploring the cloud, you should always define a meaningful limit. This will reduce the search result to a number that can be digested easily. + +::: Please note: a single search can have multiple limits: one for each partial search result. This is especially useful when the graph is traversed, since the limit can be applied to every graph traversal. diff --git a/docs/reference/search/traversals.mdx b/docs/reference/search/traversals.mdx index 038a0b3d1..95e2e9bf3 100644 --- a/docs/reference/search/traversals.mdx +++ b/docs/reference/search/traversals.mdx @@ -13,7 +13,7 @@ sidebar_label: Traversals `-->` traverses the graph outbound to the next level. -:::tip Example +:::tip[Example] ```bash title="Select AWS accounts and traverse the graph outbound" > search is(aws_account) --> @@ -29,7 +29,7 @@ This query would return a list of all matching regions. `<--` traverses the graph inbound to the next level. -:::tip Example +:::tip[Example] ```bash title="Select AWS EC2 instances, traverse the graph inbound, and filter to only return the aws_regions" > search is(aws_ec2_instance) <-- is(aws_region) @@ -43,7 +43,7 @@ This query would return a list of all matching regions. `-[0:1]->` traverses the graph outbound, starting from the current node **(0)** until the next level **(1)**. The result will contain the current node plus all nodes one level outbound. The same applies for inbound with this statement `<-[0:1]-`. -:::tip Example +:::tip[Example] ```bash title="Return all resources "under" an aws_region together with the matching aws_region" > search is(aws_region) -[0:1]->` @@ -53,7 +53,7 @@ This query would return a list of all matching regions. ::: -:::tip Example +:::tip[Example] ```bash title="Return all aws_regions with name global, together with all accounts" > search is(aws_region) and name==global <-[0:1]- @@ -69,7 +69,7 @@ This query would return a list of all matching regions. ![Traversal by Depth Diagram](./img/graph_query_startuntil.png) -:::tip Example +:::tip[Example] The following query answers the question, "Which instance profile is used for ec2 instances connected to an alb target group?" @@ -83,7 +83,7 @@ The following query answers the question, "Which instance profile is used for ec `-[start:]->` traverses the graph outbound starting from a user defined depth to the leafs of the graph. The graph will be traversed from the current node according to this specification. All matching nodes will be returned. The same applies for inbound traversals with `<-[start:]-`. -:::tip Example +:::tip[Example] ```bash > search is(aws_account) and name==sunshine -[0:]-> @@ -97,7 +97,7 @@ This query will select the aws account with name `sunshine` and then select all `<-[start:until]->` traverses the graph inbound and outbound starting from a user defined depth to a user defined depth. The graph will be traversed from the current node according to this specification. All matching nodes will be returned. -:::tip Example +:::tip[Example] ```bash title="Select nodes with the name sunset connected on any depth to the AWS account" > search name="sunset" and is(aws_account) <-[0:]-> @@ -136,7 +136,7 @@ graph LR; network_interface --delete--> instance ; ``` -:::tip Examples +:::tip[Examples] ```bash title="Selects all instances, walk the default edge outbound, and filter on volumes; returns volumes that are attached to an instance" > search is(instance) -default-> is(volume) @@ -173,7 +173,7 @@ There are abbreviations for commonly used traversal selectors: | `<-->` | `<-[1:1]->` | | `<-[x]-` | `<-[x:x]-` | -:::tip Examples +:::tip[Examples] | Abbreviated | Unabbreviated | | ------------------------------- | --------------------------------- | diff --git a/docs/reference/search/with-clause.mdx b/docs/reference/search/with-clause.mdx index 33b855d4a..0b2053456 100644 --- a/docs/reference/search/with-clause.mdx +++ b/docs/reference/search/with-clause.mdx @@ -10,7 +10,7 @@ The `with` clause can be useful, in case you want to select elements and ensure The `with` clause enables us to ensure defined relationships or positions in the graph without selecting their related nodes. -:::tip Example +:::tip[Example] ```mermaid graph LR; @@ -42,7 +42,7 @@ The `with` clause has three forms: No result is allowed in order to select the node. -:::tip Example +:::tip[Example] ```bash with (empty, [filter]) @@ -56,7 +56,7 @@ The first filter will select elements. With every element a graph traversal is d The `with` clause needs to select at least one matching node in order to select the filtered node. -:::tip Example +:::tip[Example] ```bash with (any, [filter]) @@ -68,7 +68,7 @@ The `with` clause needs to select at least one matching node in order to select The `with` clause needs to select the specified amount of matching nodes in order to select the filtered node. -:::tip Example +:::tip[Example] ```bash with (count==3, [filter]) diff --git a/docs/reference/security.mdx b/docs/reference/security.mdx index 5b6cc59c5..6ca7fb298 100644 --- a/docs/reference/security.mdx +++ b/docs/reference/security.mdx @@ -6,7 +6,7 @@ The trust between components is established using a [JWTs. -## JSON Web Token (JWT) {#json-web-token} +## JSON Web Token (JWT) \{#json-web-token} If a [PSK](#pre-shared-key) is provided, every request that a component makes to [Resoto Core](./components/core.mdx) must provide a valid `Authentication` header with a JWT signed using the PSK. This is true for encrypted HTTPS and unencrypted HTTP requests, meaning that if TLS is turned off (`--no-tls`) but a PSK was specified, the request will still be authenticated (just not encrypted!). -## Certificate Authority (CA) {#certificate-authority} +## Certificate Authority (CA) \{#certificate-authority} **By default, Resoto's built-in CA will be used.** @@ -95,7 +95,7 @@ When interfacing with Resoto's [API endpoints](./api/index.mdx), it is possible ### Retrieving and Validating the CA Certificate -The Resoto CA certificate can be retrieved at (replace `localhost` with the hostname or IP where [Resoto Core](./components/core.mdx) is running). +The Resoto CA certificate can be retrieved at [https://localhost:8900/ca/cert](https://localhost:8900/ca/cert) (replace `localhost` with the hostname or IP where [Resoto Core](./components/core.mdx) is running). In a Python 3 REPL with `resotolib` installed, execute the following: diff --git a/docs/reference/telemetry.mdx b/docs/reference/telemetry.mdx index 98b152764..3a1177b1e 100644 --- a/docs/reference/telemetry.mdx +++ b/docs/reference/telemetry.mdx @@ -4,7 +4,7 @@ Resoto collects anonymized telemetry data to inform product development. Telemet All data collected is anonymous—**we do not capture or store any personally identifiable information (PII)**. There are no unique identifiers that allow us to correlate a Resoto installation back to an actual person. -## Types of Telemetry Data {#types} +## Types of Telemetry Data \{#types} There are currently two types of telemetry data collected. @@ -25,6 +25,6 @@ The following are examples of metrics we currently monitor based on this usage d Error reporting aids us in identifying and fixing bugs or issues in Resoto. This reporting does not contain any sensitive or personally identifiable data. -## Disabling Telemetry Reporting {#disabling} +## Disabling Telemetry Reporting \{#disabling} Telemetry can be disabled via the `resotocore.runtime.usage_metrics` [Resoto Core configuration](./configuration/core.mdx) option. diff --git a/docs/reference/templates.mdx b/docs/reference/templates.mdx index 6e83ca6b6..14a3233b1 100644 --- a/docs/reference/templates.mdx +++ b/docs/reference/templates.mdx @@ -1,6 +1,6 @@ # Templates -[{{ mustache }}](https://mustache.github.io) templates can be used to define [custom commands](./cli/index.mdx#custom-commands) and [search templates](./cli/template/index.mdx). +[\{\{ mustache \}\}](https://mustache.github.io) templates can be used to define [custom commands](./cli/index.mdx#custom-commands) and [search templates](./cli/template/index.mdx). The [`template test` command](./cli/template/test.mdx) offers a way to test templates. We use this functionality below to illustrate template usage. diff --git a/docs/reference/unified-data-model/aws.mdx b/docs/reference/unified-data-model/aws.mdx index e37194843..b3687f167 100644 --- a/docs/reference/unified-data-model/aws.mdx +++ b/docs/reference/unified-data-model/aws.mdx @@ -91,11 +91,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_account resource relationships" @@ -136,9 +133,7 @@ aws_s3_account_settings -[#1A83AF]-> aws_account ``` -
-
## `aws_alb` @@ -312,11 +307,8 @@ resource <|--- load_balancer
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_alb resource relationships" @@ -378,9 +370,7 @@ aws_vpc -[#1A83AF]-> aws_ec2_subnet ``` -
-
## `aws_alb_target_group` @@ -474,11 +464,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_alb_target_group resource relationships" @@ -530,9 +517,7 @@ aws_vpc -[#1A83AF]-> aws_ec2_instance ``` -
-
## `aws_api_gateway_authorizer` @@ -596,11 +581,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_api_gateway_authorizer resource relationships" @@ -647,9 +629,7 @@ aws_iam_role -[#1A83AF]-> aws_api_gateway_authorizer ``` -
-
## `aws_api_gateway_deployment` @@ -707,11 +687,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_api_gateway_deployment resource relationships" @@ -749,9 +726,7 @@ aws_api_gateway_rest_api -[#1A83AF]-> aws_api_gateway_deployment ``` -
-
## `aws_api_gateway_domain_name` @@ -832,11 +807,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_api_gateway_domain_name resource relationships" @@ -874,9 +846,7 @@ aws_api_gateway_domain_name -[#1A83AF]-> aws_vpc_endpoint ``` -
-
## `aws_api_gateway_resource` @@ -982,11 +952,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_api_gateway_resource resource relationships" @@ -1030,9 +997,7 @@ aws_api_gateway_rest_api -[#1A83AF]-> aws_lambda_function ``` -
-
## `aws_api_gateway_rest_api` @@ -1101,11 +1066,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_api_gateway_rest_api resource relationships" @@ -1155,9 +1117,7 @@ aws_api_gateway_rest_api -[#1A83AF]-> aws_vpc_endpoint ``` -
-
## `aws_api_gateway_stage` @@ -1232,11 +1192,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_api_gateway_stage resource relationships" @@ -1271,9 +1228,7 @@ aws_api_gateway_deployment -[#1A83AF]-> aws_api_gateway_stage ``` -
-
## `aws_athena_data_catalog` @@ -1331,11 +1286,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_athena_data_catalog resource relationships" @@ -1370,9 +1322,7 @@ aws_athena_data_catalog -[#1A83AF]-> aws_sagemaker_processing_job ``` -
-
## `aws_athena_work_group` @@ -1455,11 +1405,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_athena_work_group resource relationships" @@ -1502,9 +1449,7 @@ aws_sagemaker_processing_job -[#1A83AF]-> aws_s3_bucket ``` -
-
## `aws_autoscaling_group` @@ -1685,11 +1630,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_autoscaling_group resource relationships" @@ -1738,9 +1680,7 @@ aws_region -[#1A83AF]-> aws_ec2_instance ``` -
-
## `aws_beanstalk_application` @@ -1821,11 +1761,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_beanstalk_application resource relationships" @@ -1860,9 +1797,7 @@ aws_beanstalk_application -[#1A83AF]-> aws_beanstalk_environment ``` -
-
## `aws_beanstalk_environment` @@ -1968,11 +1903,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_beanstalk_environment resource relationships" @@ -2020,9 +1952,7 @@ aws_beanstalk_environment -[#1A83AF]-> aws_sqs_queue ``` -
-
## `aws_cloud_formation_stack_instance_summary` @@ -2088,11 +2018,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloud_formation_stack_instance_summary resource relationships" @@ -2124,9 +2051,7 @@ class aws_cloud_formation_stack_instance_summary { ``` -
-
## `aws_cloud_trail` @@ -2232,11 +2157,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloud_trail resource relationships" @@ -2278,9 +2200,7 @@ aws_sns_topic -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_cloudformation_stack` @@ -2378,11 +2298,8 @@ resource <|--- stack
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudformation_stack resource relationships" @@ -2417,9 +2334,7 @@ aws_region -[#1A83AF]-> aws_cloudformation_stack ``` -
-
## `aws_cloudformation_stack_set` @@ -2487,11 +2402,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudformation_stack_set resource relationships" @@ -2526,9 +2438,7 @@ aws_region -[#1A83AF]-> aws_cloudformation_stack_set ``` -
-
## `aws_cloudfront_cache_policy` @@ -2616,11 +2526,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_cache_policy resource relationships" @@ -2655,9 +2562,7 @@ aws_cloudfront_distribution -[#1A83AF]-> aws_cloudfront_cache_policy ``` -
-
## `aws_cloudfront_distribution` @@ -2870,11 +2775,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_distribution resource relationships" @@ -2933,9 +2835,7 @@ aws_cloudfront_distribution -[#1A83AF]-> aws_s3_bucket ``` -
-
## `aws_cloudfront_field_level_encryption_config` @@ -3014,11 +2914,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_field_level_encryption_config resource relationships" @@ -3056,9 +2953,7 @@ aws_cloudfront_field_level_encryption_config -[#1A83AF]-> aws_cloudfront_field_l ``` -
-
## `aws_cloudfront_field_level_encryption_profile` @@ -3121,11 +3016,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_field_level_encryption_profile resource relationships" @@ -3163,9 +3055,7 @@ aws_cloudfront_field_level_encryption_profile -[#1A83AF]-> aws_cloudfront_public ``` -
-
## `aws_cloudfront_function` @@ -3228,11 +3118,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_function resource relationships" @@ -3267,9 +3154,7 @@ aws_cloudfront_distribution -[#1A83AF]-> aws_cloudfront_function ``` -
-
## `aws_cloudfront_origin_access_control` @@ -3328,11 +3213,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_origin_access_control resource relationships" @@ -3367,9 +3249,7 @@ aws_cloudfront_distribution -[#1A83AF]-> aws_cloudfront_origin_access_control ``` -
-
## `aws_cloudfront_public_key` @@ -3426,11 +3306,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_public_key resource relationships" @@ -3465,9 +3342,7 @@ aws_cloudfront_field_level_encryption_profile -[#1A83AF]-> aws_cloudfront_public ``` -
-
## `aws_cloudfront_realtime_log_config` @@ -3535,11 +3410,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_realtime_log_config resource relationships" @@ -3574,9 +3446,7 @@ aws_cloudfront_distribution -[#1A83AF]-> aws_cloudfront_realtime_log_config ``` -
-
## `aws_cloudfront_response_headers_policy` @@ -3701,11 +3571,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_response_headers_policy resource relationships" @@ -3740,9 +3607,7 @@ aws_cloudfront_distribution -[#1A83AF]-> aws_cloudfront_response_headers_policy ``` -
-
## `aws_cloudfront_streaming_distribution` @@ -3803,11 +3668,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_streaming_distribution resource relationships" @@ -3839,9 +3701,7 @@ class aws_cloudfront_streaming_distribution { ``` -
-
## `aws_cloudwatch_alarm` @@ -3949,11 +3809,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudwatch_alarm resource relationships" @@ -3998,9 +3855,7 @@ aws_sagemaker_endpoint -[#1A83AF]-> aws_cloudwatch_alarm ``` -
-
## `aws_cloudwatch_log_group` @@ -4059,11 +3914,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudwatch_log_group resource relationships" @@ -4101,9 +3953,7 @@ aws_cloudwatch_log_group -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_cloudwatch_metric_filter` @@ -4169,11 +4019,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudwatch_metric_filter resource relationships" @@ -4211,9 +4058,7 @@ aws_cloudwatch_metric_filter -[#1A83AF]-> aws_cloudwatch_alarm ``` -
-
## `aws_cognito_group` @@ -4272,11 +4117,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cognito_group resource relationships" @@ -4318,9 +4160,7 @@ aws_sagemaker_workteam -[#1A83AF]-> aws_cognito_user_pool ``` -
-
## `aws_cognito_user` @@ -4394,11 +4234,8 @@ resource <|--- user
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cognito_user resource relationships" @@ -4433,9 +4270,7 @@ aws_cognito_user_pool -[#1A83AF]-> aws_cognito_user ``` -
-
## `aws_cognito_user_pool` @@ -4518,11 +4353,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cognito_user_pool resource relationships" @@ -4571,9 +4403,7 @@ aws_sagemaker_workteam -[#1A83AF]-> aws_cognito_user_pool ``` -
-
## `aws_config_recorder` @@ -4646,11 +4476,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_config_recorder resource relationships" @@ -4682,9 +4509,7 @@ class aws_config_recorder { ``` -
-
## `aws_dynamo_db_global_table` @@ -4763,11 +4588,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_dynamo_db_global_table resource relationships" @@ -4802,9 +4624,7 @@ aws_dynamo_db_global_table -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_dynamo_db_table` @@ -4978,11 +4798,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_dynamo_db_table resource relationships" @@ -5021,9 +4838,7 @@ aws_kinesis_stream -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_ec2_elastic_ip` @@ -5095,11 +4910,8 @@ resource <|--- ip_address
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_elastic_ip resource relationships" @@ -5143,9 +4955,7 @@ aws_region -[#1A83AF]-> aws_ec2_network_interface ``` -
-
## `aws_ec2_flow_log` @@ -5219,11 +5029,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_flow_log resource relationships" @@ -5261,9 +5068,7 @@ aws_vpc -[#1A83AF]-> aws_ec2_flow_log ``` -
-
## `aws_ec2_host` @@ -5358,11 +5163,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_host resource relationships" @@ -5397,9 +5199,7 @@ aws_ec2_host -[#1A83AF]-> aws_ec2_instance ``` -
-
## `aws_ec2_instance` @@ -5650,11 +5450,8 @@ resource <|--- instance
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_instance resource relationships" @@ -5743,9 +5540,7 @@ aws_vpc -[#1A83AF]-> aws_elb ``` -
-
## `aws_ec2_instance_type` @@ -5949,11 +5744,8 @@ quota <|--- type
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_instance_type resource relationships" @@ -5999,9 +5791,7 @@ aws_service_quota -[#1A83AF]-> aws_ec2_instance_type ``` -
-
## `aws_ec2_internet_gateway` @@ -6066,11 +5856,8 @@ resource <|--- gateway
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_internet_gateway resource relationships" @@ -6109,9 +5896,7 @@ aws_vpc -[#1A83AF]-> aws_ec2_internet_gateway ``` -
-
## `aws_ec2_keypair` @@ -6169,11 +5954,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_keypair resource relationships" @@ -6212,9 +5994,7 @@ aws_region -[#1A83AF]-> aws_ec2_keypair ``` -
-
## `aws_ec2_nat_gateway` @@ -6295,11 +6075,8 @@ resource <|--- gateway
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_nat_gateway resource relationships" @@ -6349,9 +6126,7 @@ aws_vpc -[#1A83AF]-> aws_ec2_subnet ``` -
-
## `aws_ec2_network_acl` @@ -6436,11 +6211,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_network_acl resource relationships" @@ -6484,9 +6256,7 @@ aws_vpc -[#1A83AF]-> aws_ec2_subnet ``` -
-
## `aws_ec2_network_interface` @@ -6607,11 +6377,8 @@ resource <|--- network_interface
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_network_interface resource relationships" @@ -6691,9 +6458,7 @@ aws_vpc_endpoint -[#1A83AF]-> aws_ec2_network_interface ``` -
-
## `aws_ec2_reserved_instances` @@ -6770,11 +6535,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_reserved_instances resource relationships" @@ -6809,9 +6571,7 @@ aws_ec2_instance_type -[#1A83AF]-> aws_ec2_reserved_instances ``` -
-
## `aws_ec2_route_table` @@ -6907,11 +6667,8 @@ resource <|--- routing_table
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_route_table resource relationships" @@ -6955,9 +6712,7 @@ aws_vpc -[#1A83AF]-> aws_vpc_endpoint ``` -
-
## `aws_ec2_security_group` @@ -7054,11 +6809,8 @@ resource <|--- security_group
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_security_group resource relationships" @@ -7181,9 +6933,7 @@ aws_vpc_endpoint -[#1A83AF]-> aws_ec2_network_interface ``` -
-
## `aws_ec2_snapshot` @@ -7256,11 +7006,8 @@ resource <|--- snapshot
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_snapshot resource relationships" @@ -7303,9 +7050,7 @@ aws_region -[#1A83AF]-> aws_ec2_volume ``` -
-
## `aws_ec2_subnet` @@ -7397,11 +7142,8 @@ resource <|--- subnet
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_subnet resource relationships" @@ -7528,9 +7270,7 @@ aws_vpc_endpoint -[#1A83AF]-> aws_ec2_network_interface ``` -
-
## `aws_ec2_volume` @@ -7612,11 +7352,8 @@ resource <|--- volume
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_volume resource relationships" @@ -7667,9 +7404,7 @@ aws_region -[#1A83AF]-> aws_ec2_volume_type ``` -
-
## `aws_ec2_volume_type` @@ -7742,11 +7477,8 @@ type <|--- volume_type
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_volume_type resource relationships" @@ -7789,9 +7521,7 @@ aws_service_quota -[#1A83AF]-> aws_ec2_volume_type ``` -
-
## `aws_ecs_capacity_provider` @@ -7864,11 +7594,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ecs_capacity_provider resource relationships" @@ -7914,9 +7641,7 @@ aws_ecs_task -[#1A83AF]-> aws_ecs_capacity_provider ``` -
-
## `aws_ecs_cluster` @@ -8025,11 +7750,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ecs_cluster resource relationships" @@ -8082,9 +7804,7 @@ aws_ecs_task -[#1A83AF]-> aws_ecs_container_instance ``` -
-
## `aws_ecs_container_instance` @@ -8201,11 +7921,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ecs_container_instance resource relationships" @@ -8247,9 +7964,7 @@ aws_ecs_task -[#1A83AF]-> aws_ecs_container_instance ``` -
-
## `aws_ecs_service` @@ -8444,11 +8159,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ecs_service resource relationships" @@ -8504,9 +8216,7 @@ aws_iam_role -[#1A83AF]-> aws_ecs_service ``` -
-
## `aws_ecs_task` @@ -8691,11 +8401,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ecs_task resource relationships" @@ -8745,9 +8452,7 @@ aws_iam_role -[#1A83AF]-> aws_ecs_task_definition ``` -
-
## `aws_ecs_task_definition` @@ -9039,11 +8744,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ecs_task_definition resource relationships" @@ -9082,9 +8784,7 @@ aws_iam_role -[#1A83AF]-> aws_ecs_task_definition ``` -
-
## `aws_efs_access_point` @@ -9161,11 +8861,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_efs_access_point resource relationships" @@ -9200,9 +8897,7 @@ aws_efs_file_system -[#1A83AF]-> aws_efs_access_point ``` -
-
## `aws_efs_file_system` @@ -9274,11 +8969,8 @@ resource <|--- network_share
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_efs_file_system resource relationships" @@ -9316,9 +9008,7 @@ aws_efs_file_system -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_efs_mount_target` @@ -9377,11 +9067,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_efs_mount_target resource relationships" @@ -9416,9 +9103,7 @@ aws_ec2_network_interface -[#1A83AF]-> aws_efs_mount_target ``` -
-
## `aws_eks_cluster` @@ -9528,11 +9213,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_eks_cluster resource relationships" @@ -9574,9 +9256,7 @@ aws_region -[#1A83AF]-> aws_iam_role ``` -
-
## `aws_eks_nodegroup` @@ -9694,11 +9374,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_eks_nodegroup resource relationships" @@ -9736,9 +9413,7 @@ aws_eks_nodegroup -[#1A83AF]-> aws_autoscaling_group ``` -
-
## `aws_elasticache_cache_cluster` @@ -9889,11 +9564,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_elasticache_cache_cluster resource relationships" @@ -9934,9 +9606,7 @@ aws_elasticache_replication_group -[#1A83AF]-> aws_elasticache_cache_cluster ``` -
-
## `aws_elasticache_replication_group` @@ -10085,11 +9755,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_elasticache_replication_group resource relationships" @@ -10127,9 +9794,7 @@ aws_elasticache_replication_group -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_elb` @@ -10247,11 +9912,8 @@ resource <|--- load_balancer
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_elb resource relationships" @@ -10315,9 +9977,7 @@ aws_vpc -[#1A83AF]-> aws_elb ``` -
-
## `aws_glacier_job` @@ -10430,11 +10090,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_glacier_job resource relationships" @@ -10472,9 +10129,7 @@ aws_glacier_vault -[#1A83AF]-> aws_glacier_job ``` -
-
## `aws_glacier_vault` @@ -10532,11 +10187,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_glacier_vault resource relationships" @@ -10571,9 +10223,7 @@ aws_glacier_vault -[#1A83AF]-> aws_glacier_job ``` -
-
## `aws_iam_access_key` @@ -10641,11 +10291,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_iam_access_key resource relationships" @@ -10677,9 +10324,7 @@ class aws_iam_access_key { ``` -
-
## `aws_iam_group` @@ -10745,11 +10390,8 @@ resource <|--- group
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_iam_group resource relationships" @@ -10793,9 +10435,7 @@ aws_region -[#1A83AF]-> aws_iam_user ``` -
-
## `aws_iam_instance_profile` @@ -10855,11 +10495,8 @@ resource <|--- instance_profile
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_iam_instance_profile resource relationships" @@ -10898,9 +10535,7 @@ aws_region -[#1A83AF]-> aws_iam_role ``` -
-
## `aws_iam_policy` @@ -10973,11 +10608,8 @@ resource <|--- policy
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_iam_policy resource relationships" @@ -11025,9 +10657,7 @@ aws_region -[#1A83AF]-> aws_iam_user ``` -
-
## `aws_iam_role` @@ -11104,11 +10734,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_iam_role resource relationships" @@ -11230,9 +10857,7 @@ aws_sagemaker_training_job -[#1A83AF]-> aws_sagemaker_algorithm ``` -
-
## `aws_iam_server_certificate` @@ -11295,11 +10920,8 @@ resource <|--- certificate
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_iam_server_certificate resource relationships" @@ -11341,9 +10963,7 @@ aws_service_quota -[#1A83AF]-> aws_iam_server_certificate ``` -
-
## `aws_iam_user` @@ -11426,11 +11046,8 @@ resource <|--- user
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_iam_user resource relationships" @@ -11474,9 +11091,7 @@ aws_region -[#1A83AF]-> aws_iam_user ``` -
-
## `aws_kinesis_stream` @@ -11561,11 +11176,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_kinesis_stream resource relationships" @@ -11608,9 +11220,7 @@ aws_rds_cluster -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_kms_key` @@ -11706,11 +11316,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_kms_key resource relationships" @@ -11854,9 +11461,7 @@ aws_sqs_queue -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_lambda_function` @@ -12017,11 +11622,8 @@ resource <|--- serverless_function
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_lambda_function resource relationships" @@ -12092,9 +11694,7 @@ aws_vpc -[#1A83AF]-> aws_lambda_function ``` -
-
## `aws_rds_cluster` @@ -12289,11 +11889,8 @@ resource <|--- database
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_rds_cluster resource relationships" @@ -12340,9 +11937,7 @@ aws_rds_instance -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_rds_instance` @@ -12566,11 +12161,8 @@ resource <|--- database
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_rds_instance resource relationships" @@ -12627,9 +12219,7 @@ aws_vpc -[#1A83AF]-> aws_rds_instance ``` -
-
## `aws_redshift_cluster` @@ -12863,11 +12453,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_redshift_cluster resource relationships" @@ -12923,9 +12510,7 @@ aws_vpc -[#1A83AF]-> aws_redshift_cluster ``` -
-
## `aws_region` @@ -12985,11 +12570,8 @@ resource <|--- region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_region resource relationships" @@ -13180,9 +12762,7 @@ aws_vpc_endpoint -[#1A83AF]-> aws_ec2_network_interface ``` -
-
## `aws_resource` @@ -13234,11 +12814,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_resource resource relationships" @@ -13270,9 +12847,7 @@ class aws_resource { ``` -
-
## `aws_root_user` @@ -13342,11 +12917,8 @@ resource <|--- user
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_root_user resource relationships" @@ -13381,9 +12953,7 @@ aws_account -[#1A83AF]-> aws_root_user ``` -
-
## `aws_route53_resource_record` @@ -13458,11 +13028,8 @@ resource <|--- dns_record
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_route53_resource_record resource relationships" @@ -13497,9 +13064,7 @@ aws_route53_resource_record_set -[#1A83AF]-> aws_route53_resource_record ``` -
-
## `aws_route53_resource_record_set` @@ -13589,11 +13154,8 @@ resource <|--- dns_record_set
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_route53_resource_record_set resource relationships" @@ -13631,9 +13193,7 @@ aws_route53_zone -[#1A83AF]-> aws_route53_resource_record_set ``` -
-
## `aws_route53_zone` @@ -13706,11 +13266,8 @@ resource <|--- dns_zone
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_route53_zone resource relationships" @@ -13748,9 +13305,7 @@ aws_route53_zone -[#1A83AF]-> aws_route53_resource_record_set ``` -
-
## `aws_s3_account_settings` @@ -13817,11 +13372,8 @@ resource <|--- phantom_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_s3_account_settings resource relationships" @@ -13856,9 +13408,7 @@ aws_s3_account_settings -[#1A83AF]-> aws_account ``` -
-
## `aws_s3_bucket` @@ -13972,11 +13522,8 @@ resource <|--- bucket
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_s3_bucket resource relationships" @@ -14074,9 +13621,7 @@ aws_sagemaker_transform_job -[#1A83AF]-> aws_s3_bucket ``` -
-
## `aws_sagemaker_algorithm` @@ -14331,11 +13876,8 @@ aws_sagemaker_transform_job_definition --> aws_sagemaker_transform_resources
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_algorithm resource relationships" @@ -14374,9 +13916,7 @@ aws_sagemaker_training_job -[#1A83AF]-> aws_sagemaker_algorithm ``` -
-
## `aws_sagemaker_app` @@ -14446,11 +13986,8 @@ aws_sagemaker_app --> aws_sagemaker_resource_spec
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_app resource relationships" @@ -14493,9 +14030,7 @@ aws_sagemaker_user_profile -[#1A83AF]-> aws_sagemaker_app ``` -
-
## `aws_sagemaker_artifact` @@ -14578,11 +14113,8 @@ aws_sagemaker_artifact_source --> aws_sagemaker_artifact_source_type
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_artifact resource relationships" @@ -14628,9 +14160,7 @@ aws_sagemaker_user_profile -[#1A83AF]-> aws_sagemaker_artifact ``` -
-
## `aws_sagemaker_auto_ml_job` @@ -14817,11 +14347,8 @@ aws_sagemaker_resolved_attributes --> aws_sagemaker_auto_ml_job_completion_crite
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_auto_ml_job resource relationships" @@ -14890,9 +14417,7 @@ aws_sagemaker_transform_job -[#1A83AF]-> aws_s3_bucket ``` -
-
## `aws_sagemaker_code_repository` @@ -14955,11 +14480,8 @@ aws_sagemaker_code_repository --> aws_sagemaker_git_config
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_code_repository resource relationships" @@ -15005,9 +14527,7 @@ aws_sagemaker_domain -[#1A83AF]-> aws_sagemaker_trial ``` -
-
## `aws_sagemaker_compilation_job` @@ -15108,11 +14628,8 @@ aws_sagemaker_output_config --> aws_sagemaker_target_platform
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_compilation_job resource relationships" @@ -15159,9 +14676,7 @@ aws_sagemaker_compilation_job -[#1A83AF]-> aws_s3_bucket ``` -
-
## `aws_sagemaker_domain` @@ -15324,11 +14839,8 @@ aws_sagemaker_user_settings --> aws_sagemaker_tensor_board_app_settings
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_domain resource relationships" @@ -15405,9 +14917,7 @@ aws_sagemaker_user_profile -[#1A83AF]-> aws_sagemaker_trial ``` -
-
## `aws_sagemaker_edge_packaging_job` @@ -15488,11 +14998,8 @@ aws_resource <|--- aws_sagemaker_job
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_edge_packaging_job resource relationships" @@ -15538,9 +15045,7 @@ aws_sagemaker_model -[#1A83AF]-> aws_sagemaker_edge_packaging_job ``` -
-
## `aws_sagemaker_endpoint` @@ -15750,11 +15255,8 @@ aws_sagemaker_traffic_routing_config --> aws_sagemaker_capacity_size
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_endpoint resource relationships" @@ -15804,9 +15306,7 @@ aws_sns_topic -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_sagemaker_experiment` @@ -15868,11 +15368,8 @@ aws_sagemaker_experiment --> aws_sagemaker_experiment_source
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_experiment resource relationships" @@ -15920,9 +15417,7 @@ aws_sagemaker_trial -[#1A83AF]-> aws_sagemaker_transform_job ``` -
-
## `aws_sagemaker_hyper_parameter_tuning_job` @@ -16192,11 +15687,8 @@ aws_sagemaker_resource_config --> aws_sagemaker_instance_group
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_hyper_parameter_tuning_job resource relationships" @@ -16251,9 +15743,7 @@ aws_sagemaker_training_job -[#1A83AF]-> aws_s3_bucket ``` -
-
## `aws_sagemaker_image` @@ -16312,11 +15802,8 @@ aws_resource <|--- aws_sagemaker_image
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_image resource relationships" @@ -16359,9 +15846,7 @@ aws_sagemaker_domain -[#1A83AF]-> aws_sagemaker_image ``` -
-
## `aws_sagemaker_inference_recommendations_job` @@ -16536,11 +16021,8 @@ aws_sagemaker_traffic_pattern --> aws_sagemaker_phase
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_inference_recommendations_job resource relationships" @@ -16592,9 +16074,7 @@ aws_sagemaker_inference_recommendations_job -[#1A83AF]-> aws_sagemaker_endpoint ``` -
-
## `aws_sagemaker_job` @@ -16649,11 +16129,8 @@ aws_resource <|--- aws_sagemaker_job
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_job resource relationships" @@ -16685,9 +16162,7 @@ class aws_sagemaker_job { ``` -
-
## `aws_sagemaker_labeling_job` @@ -16838,11 +16313,8 @@ aws_sagemaker_public_workforce_task_price --> aws_sagemaker_usd
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_labeling_job resource relationships" @@ -16924,9 +16396,7 @@ aws_sns_topic -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_sagemaker_model` @@ -17008,11 +16478,8 @@ aws_sagemaker_model --> aws_sagemaker_vpc_config
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_model resource relationships" @@ -17073,9 +16540,7 @@ aws_sagemaker_transform_job -[#1A83AF]-> aws_s3_bucket ``` -
-
## `aws_sagemaker_notebook` @@ -17143,11 +16608,8 @@ aws_resource <|--- aws_sagemaker_notebook
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_notebook resource relationships" @@ -17199,9 +16661,7 @@ aws_sagemaker_notebook -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_sagemaker_pipeline` @@ -17269,11 +16729,8 @@ aws_sagemaker_pipeline --> aws_sagemaker_user_context
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_pipeline resource relationships" @@ -17316,9 +16773,7 @@ aws_sagemaker_user_profile -[#1A83AF]-> aws_sagemaker_pipeline ``` -
-
## `aws_sagemaker_processing_job` @@ -17485,11 +16940,8 @@ aws_sagemaker_processing_resources --> aws_sagemaker_processing_cluster_config
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_processing_job resource relationships" @@ -17577,9 +17029,7 @@ aws_sagemaker_trial -[#1A83AF]-> aws_sagemaker_training_job ``` -
-
## `aws_sagemaker_project` @@ -17636,11 +17086,8 @@ aws_resource <|--- aws_sagemaker_project
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_project resource relationships" @@ -17678,9 +17125,7 @@ aws_sagemaker_project -[#1A83AF]-> aws_sagemaker_trial ``` -
-
## `aws_sagemaker_training_job` @@ -17932,11 +17377,8 @@ aws_sagemaker_training_job --> aws_sagemaker_warm_pool_status
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_training_job resource relationships" @@ -18029,9 +17471,7 @@ aws_sagemaker_trial -[#1A83AF]-> aws_sagemaker_training_job ``` -
-
## `aws_sagemaker_transform_job` @@ -18153,11 +17593,8 @@ aws_sagemaker_transform_job --> aws_sagemaker_transform_resources
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_transform_job resource relationships" @@ -18217,9 +17654,7 @@ aws_sagemaker_trial -[#1A83AF]-> aws_sagemaker_transform_job ``` -
-
## `aws_sagemaker_trial` @@ -18296,11 +17731,8 @@ aws_sagemaker_trial --> aws_sagemaker_user_context
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_trial resource relationships" @@ -18362,9 +17794,7 @@ aws_sagemaker_user_profile -[#1A83AF]-> aws_sagemaker_trial ``` -
-
## `aws_sagemaker_user_profile` @@ -18421,11 +17851,8 @@ aws_resource <|--- aws_sagemaker_user_profile
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_user_profile resource relationships" @@ -18476,9 +17903,7 @@ aws_sagemaker_user_profile -[#1A83AF]-> aws_sagemaker_trial ``` -
-
## `aws_sagemaker_workteam` @@ -18554,11 +17979,8 @@ aws_sagemaker_workteam --> aws_sagemaker_member_definition
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_workteam resource relationships" @@ -18604,9 +18026,7 @@ aws_sagemaker_workteam -[#1A83AF]-> aws_sns_topic ``` -
-
## `aws_service_quota` @@ -18694,11 +18114,8 @@ phantom_resource <|--- quota
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_service_quota resource relationships" @@ -18759,9 +18176,7 @@ aws_vpc -[#1A83AF]-> aws_elb ``` -
-
## `aws_sns_endpoint` @@ -18818,11 +18233,8 @@ aws_resource <|--- aws_sns_endpoint
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sns_endpoint resource relationships" @@ -18857,9 +18269,7 @@ aws_sns_platform_application -[#1A83AF]-> aws_sns_endpoint ``` -
-
## `aws_sns_platform_application` @@ -18921,11 +18331,8 @@ aws_resource <|--- aws_sns_platform_application
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sns_platform_application resource relationships" @@ -18963,9 +18370,7 @@ aws_sns_platform_application -[#1A83AF]-> aws_sns_topic ``` -
-
## `aws_sns_subscription` @@ -19030,11 +18435,8 @@ aws_resource <|--- aws_sns_subscription
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sns_subscription resource relationships" @@ -19072,9 +18474,7 @@ aws_sns_topic -[#1A83AF]-> aws_sns_subscription ``` -
-
## `aws_sns_topic` @@ -19139,11 +18539,8 @@ aws_resource <|--- aws_sns_topic
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sns_topic resource relationships" @@ -19203,9 +18600,7 @@ aws_sns_topic -[#1A83AF]-> aws_sns_subscription ``` -
-
## `aws_sqs_queue` @@ -19284,11 +18679,8 @@ aws_sqs_queue --> aws_sqs_redrive_policy
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sqs_queue resource relationships" @@ -19326,9 +18718,7 @@ aws_sqs_queue -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_vpc` @@ -19414,11 +18804,8 @@ resource <|--- network
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_vpc resource relationships" @@ -19547,9 +18934,7 @@ aws_vpc_endpoint -[#1A83AF]-> aws_ec2_network_interface ``` -
-
## `aws_vpc_endpoint` @@ -19630,11 +19015,8 @@ resource <|--- endpoint
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_vpc_endpoint resource relationships" @@ -19701,9 +19083,7 @@ aws_vpc_endpoint -[#1A83AF]-> aws_ec2_network_interface ``` -
-
## `aws_vpc_peering_connection` @@ -19787,11 +19167,8 @@ resource <|--- peering_connection
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_vpc_peering_connection resource relationships" @@ -19830,7 +19207,5 @@ aws_vpc -[#1A83AF]-> aws_vpc_peering_connection ``` -
-
diff --git a/docs/reference/unified-data-model/digitalocean.mdx b/docs/reference/unified-data-model/digitalocean.mdx index 5ae38d4a2..d6d463063 100644 --- a/docs/reference/unified-data-model/digitalocean.mdx +++ b/docs/reference/unified-data-model/digitalocean.mdx @@ -66,11 +66,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_alert_policy resource relationships" @@ -105,9 +102,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_alert_policy ``` -
-
## `digitalocean_app` @@ -168,11 +163,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_app resource relationships" @@ -216,9 +208,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_region ``` -
-
## `digitalocean_cdn_endpoint` @@ -282,11 +272,8 @@ resource <|--- endpoint
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_cdn_endpoint resource relationships" @@ -321,9 +308,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_cdn_endpoint ``` -
-
## `digitalocean_certificate` @@ -387,11 +372,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_certificate resource relationships" @@ -426,9 +408,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_certificate ``` -
-
## `digitalocean_container_registry` @@ -486,11 +466,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_container_registry resource relationships" @@ -533,9 +510,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_region ``` -
-
## `digitalocean_container_registry_repository` @@ -593,11 +568,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_container_registry_repository resource relationships" @@ -640,9 +612,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_container_registry_repository_tag ``` -
-
## `digitalocean_container_registry_repository_tag` @@ -703,11 +673,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_container_registry_repository_tag resource relationships" @@ -746,9 +713,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_container_registry_repository_tag ``` -
-
## `digitalocean_database` @@ -816,11 +781,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_database resource relationships" @@ -873,9 +835,7 @@ digitalocean_vpc -[#1A83AF]-> digitalocean_database ``` -
-
## `digitalocean_domain` @@ -936,11 +896,8 @@ resource <|--- dns_zone
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_domain resource relationships" @@ -983,9 +940,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_project ``` -
-
## `digitalocean_domain_record` @@ -1061,11 +1016,8 @@ resource <|--- dns_record
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_domain_record resource relationships" @@ -1104,9 +1056,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_domain_record ``` -
-
## `digitalocean_droplet` @@ -1173,11 +1123,8 @@ resource <|--- instance
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_droplet resource relationships" @@ -1268,9 +1215,7 @@ digitalocean_vpc -[#1A83AF]-> digitalocean_load_balancer ``` -
-
## `digitalocean_droplet_neighborhood` @@ -1330,11 +1275,8 @@ resource <|--- phantom_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_droplet_neighborhood resource relationships" @@ -1366,9 +1308,7 @@ class digitalocean_droplet_neighborhood { ``` -
-
## `digitalocean_droplet_size` @@ -1444,11 +1384,8 @@ quota <|--- type
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_droplet_size resource relationships" @@ -1483,9 +1420,7 @@ digitalocean_droplet_size -[#1A83AF]-> digitalocean_droplet ``` -
-
## `digitalocean_firewall` @@ -1542,11 +1477,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_firewall resource relationships" @@ -1585,9 +1517,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_firewall ``` -
-
## `digitalocean_floating_ip` @@ -1649,11 +1579,8 @@ resource <|--- ip_address
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_floating_ip resource relationships" @@ -1702,9 +1629,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_region ``` -
-
## `digitalocean_image` @@ -1768,11 +1693,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_image resource relationships" @@ -1816,9 +1738,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_region ``` -
-
## `digitalocean_kubernetes_cluster` @@ -1884,11 +1804,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_kubernetes_cluster resource relationships" @@ -1943,9 +1860,7 @@ digitalocean_vpc -[#1A83AF]-> digitalocean_kubernetes_cluster ``` -
-
## `digitalocean_load_balancer` @@ -2013,11 +1928,8 @@ resource <|--- load_balancer
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_load_balancer resource relationships" @@ -2072,9 +1984,7 @@ digitalocean_vpc -[#1A83AF]-> digitalocean_load_balancer ``` -
-
## `digitalocean_project` @@ -2136,11 +2046,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_project resource relationships" @@ -2211,9 +2118,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_volume ``` -
-
## `digitalocean_region` @@ -2276,11 +2181,8 @@ resource <|--- region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_region resource relationships" @@ -2369,9 +2271,7 @@ digitalocean_vpc -[#1A83AF]-> digitalocean_load_balancer ``` -
-
## `digitalocean_resource` @@ -2423,11 +2323,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_resource resource relationships" @@ -2462,9 +2359,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_resource ``` -
-
## `digitalocean_snapshot` @@ -2533,11 +2428,8 @@ resource <|--- snapshot
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_snapshot resource relationships" @@ -2586,9 +2478,7 @@ digitalocean_volume -[#1A83AF]-> digitalocean_snapshot ``` -
-
## `digitalocean_space` @@ -2647,11 +2537,8 @@ digitalocean_resource <|--- digitalocean_space
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_space resource relationships" @@ -2694,9 +2581,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_space ``` -
-
## `digitalocean_ssh_key` @@ -2757,11 +2642,8 @@ resource <|--- keypair
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_ssh_key resource relationships" @@ -2796,9 +2678,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_ssh_key ``` -
-
## `digitalocean_team` @@ -2857,11 +2737,8 @@ digitalocean_resource <|--- digitalocean_team
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_team resource relationships" @@ -3000,9 +2877,7 @@ digitalocean_vpc -[#1A83AF]-> digitalocean_load_balancer ``` -
-
## `digitalocean_volume` @@ -3072,11 +2947,8 @@ resource <|--- volume
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_volume resource relationships" @@ -3125,9 +2997,7 @@ digitalocean_volume -[#1A83AF]-> digitalocean_snapshot ``` -
-
## `digitalocean_vpc` @@ -3189,11 +3059,8 @@ resource <|--- network
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_vpc resource relationships" @@ -3254,7 +3121,5 @@ digitalocean_vpc -[#1A83AF]-> digitalocean_load_balancer ``` -
-
diff --git a/docs/reference/unified-data-model/dockerhub.mdx b/docs/reference/unified-data-model/dockerhub.mdx index 71538bef0..aee71b9a2 100644 --- a/docs/reference/unified-data-model/dockerhub.mdx +++ b/docs/reference/unified-data-model/dockerhub.mdx @@ -60,11 +60,8 @@ dockerhub_resource <|--- dockerhub_namespace
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of dockerhub_namespace resource relationships" @@ -96,9 +93,7 @@ class dockerhub_namespace { ``` -
-
## `dockerhub_repository` @@ -158,11 +153,8 @@ resource <|--- dockerhub_repository
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of dockerhub_repository resource relationships" @@ -194,7 +186,5 @@ class dockerhub_repository { ``` -
-
diff --git a/docs/reference/unified-data-model/gcp.mdx b/docs/reference/unified-data-model/gcp.mdx index f05e81440..7cde0628d 100644 --- a/docs/reference/unified-data-model/gcp.mdx +++ b/docs/reference/unified-data-model/gcp.mdx @@ -76,11 +76,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_accelerator_type resource relationships" @@ -115,9 +112,7 @@ gcp_machine_type -[#1A83AF]-> gcp_accelerator_type ``` -
-
## `gcp_address` @@ -195,11 +190,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_address resource relationships" @@ -234,9 +226,7 @@ gcp_subnetwork -[#1A83AF]-> gcp_address ``` -
-
## `gcp_autoscaler` @@ -365,11 +355,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_autoscaler resource relationships" @@ -404,9 +391,7 @@ gcp_autoscaler -[#1A83AF]-> gcp_instance_group_manager ``` -
-
## `gcp_backend_bucket` @@ -504,11 +489,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_backend_bucket resource relationships" @@ -540,9 +522,7 @@ class gcp_backend_bucket { ``` -
-
## `gcp_backend_service` @@ -767,11 +747,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_backend_service resource relationships" @@ -835,9 +812,7 @@ gcp_url_map -[#1A83AF]-> gcp_backend_service ``` -
-
## `gcp_billing_account` @@ -907,11 +882,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_billing_account resource relationships" @@ -946,9 +918,7 @@ gcp_billing_account -[#1A83AF]-> gcp_project_billing_info ``` -
-
## `gcp_bucket` @@ -1146,11 +1116,8 @@ gcp_rule --> gcp_condition
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_bucket resource relationships" @@ -1182,9 +1149,7 @@ class gcp_bucket { ``` -
-
## `gcp_commitment` @@ -1325,11 +1290,8 @@ gcp_share_settings --> gcp_share_settings_project_config
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_commitment resource relationships" @@ -1361,9 +1323,7 @@ class gcp_commitment { ``` -
-
## `gcp_container_cluster` @@ -1864,11 +1824,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_container_cluster resource relationships" @@ -1903,9 +1860,7 @@ gcp_container_cluster -[#1A83AF]-> gcp_container_operation ``` -
-
## `gcp_container_operation` @@ -2009,11 +1964,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_container_operation resource relationships" @@ -2048,9 +2000,7 @@ gcp_container_cluster -[#1A83AF]-> gcp_container_operation ``` -
-
## `gcp_disk` @@ -2168,11 +2118,8 @@ resource <|--- volume
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_disk resource relationships" @@ -2222,9 +2169,7 @@ gcp_operation -[#1A83AF]-> gcp_disk ``` -
-
## `gcp_disk_type` @@ -2311,11 +2256,8 @@ type <|--- volume_type
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_disk_type resource relationships" @@ -2356,9 +2298,7 @@ gcp_sku -[#1A83AF]-> gcp_disk_type ``` -
-
## `gcp_external_vpn_gateway` @@ -2432,11 +2372,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_external_vpn_gateway resource relationships" @@ -2468,9 +2405,7 @@ class gcp_external_vpn_gateway { ``` -
-
## `gcp_firewall` @@ -2565,11 +2500,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_firewall resource relationships" @@ -2604,9 +2536,7 @@ gcp_firewall -[#1A83AF]-> gcp_network ``` -
-
## `gcp_firewall_policy` @@ -2722,11 +2652,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_firewall_policy resource relationships" @@ -2761,9 +2688,7 @@ gcp_firewall_policy -[#1A83AF]-> gcp_network ``` -
-
## `gcp_forwarding_rule` @@ -2868,11 +2793,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_forwarding_rule resource relationships" @@ -2929,9 +2851,7 @@ gcp_network -[#1A83AF]-> gcp_target_vpn_gateway ``` -
-
## `gcp_health_check` @@ -3065,11 +2985,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_health_check resource relationships" @@ -3107,9 +3024,7 @@ gcp_instance_group_manager -[#1A83AF]-> gcp_health_check ``` -
-
## `gcp_health_check_service` @@ -3181,11 +3096,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_health_check_service resource relationships" @@ -3217,9 +3129,7 @@ class gcp_health_check_service { ``` -
-
## `gcp_http_health_check` @@ -3293,11 +3203,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_http_health_check resource relationships" @@ -3335,9 +3242,7 @@ gcp_instance_group_manager -[#1A83AF]-> gcp_http_health_check ``` -
-
## `gcp_https_health_check` @@ -3411,11 +3316,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_https_health_check resource relationships" @@ -3453,9 +3355,7 @@ gcp_instance_group_manager -[#1A83AF]-> gcp_https_health_check ``` -
-
## `gcp_image` @@ -3571,11 +3471,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_image resource relationships" @@ -3610,9 +3507,7 @@ gcp_disk -[#1A83AF]-> gcp_image ``` -
-
## `gcp_instance` @@ -3879,11 +3774,8 @@ resource <|--- instance
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_instance resource relationships" @@ -3936,9 +3828,7 @@ gcp_target_instance -[#1A83AF]-> gcp_instance ``` -
-
## `gcp_instance_group` @@ -4015,11 +3905,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_instance_group resource relationships" @@ -4065,9 +3952,7 @@ gcp_subnetwork -[#1A83AF]-> gcp_instance_group ``` -
-
## `gcp_instance_group_manager` @@ -4227,11 +4112,8 @@ gcp_stateful_policy_preserved_state --> gcp_stateful_policy_preserved_state_disk
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_instance_group_manager resource relationships" @@ -4278,9 +4160,7 @@ gcp_instance_group_manager -[#1A83AF]-> gcp_https_health_check ``` -
-
## `gcp_instance_template` @@ -4537,11 +4417,8 @@ gcp_source_instance_params --> gcp_disk_instantiation_config
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_instance_template resource relationships" @@ -4576,9 +4453,7 @@ gcp_machine_type -[#1A83AF]-> gcp_instance_template ``` -
-
## `gcp_interconnect` @@ -4679,11 +4554,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_interconnect resource relationships" @@ -4715,9 +4587,7 @@ class gcp_interconnect { ``` -
-
## `gcp_interconnect_attachment` @@ -4818,11 +4688,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_interconnect_attachment resource relationships" @@ -4857,9 +4724,7 @@ gcp_vpn_gateway -[#1A83AF]-> gcp_interconnect_attachment ``` -
-
## `gcp_interconnect_location` @@ -4942,11 +4807,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_interconnect_location resource relationships" @@ -4978,9 +4840,7 @@ class gcp_interconnect_location { ``` -
-
## `gcp_license` @@ -5056,11 +4916,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_license resource relationships" @@ -5092,9 +4949,7 @@ class gcp_license { ``` -
-
## `gcp_machine_image` @@ -5404,11 +5259,8 @@ gcp_source_instance_properties --> gcp_tags
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_machine_image resource relationships" @@ -5443,9 +5295,7 @@ gcp_disk -[#1A83AF]-> gcp_machine_image ``` -
-
## `gcp_machine_type` @@ -5544,11 +5394,8 @@ quota <|--- type
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_machine_type resource relationships" @@ -5592,9 +5439,7 @@ gcp_sku -[#1A83AF]-> gcp_machine_type ``` -
-
## `gcp_network` @@ -5688,11 +5533,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_network resource relationships" @@ -5770,9 +5612,7 @@ gcp_target_instance -[#1A83AF]-> gcp_instance ``` -
-
## `gcp_network_edge_security_service` @@ -5842,11 +5682,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_network_edge_security_service resource relationships" @@ -5878,9 +5715,7 @@ class gcp_network_edge_security_service { ``` -
-
## `gcp_network_endpoint_group` @@ -5981,11 +5816,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_network_endpoint_group resource relationships" @@ -6028,9 +5860,7 @@ gcp_subnetwork -[#1A83AF]-> gcp_network_endpoint_group ``` -
-
## `gcp_node_group` @@ -6131,11 +5961,8 @@ gcp_share_settings --> gcp_share_settings_project_config
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_node_group resource relationships" @@ -6170,9 +5997,7 @@ gcp_node_template -[#1A83AF]-> gcp_node_group ``` -
-
## `gcp_node_template` @@ -6265,11 +6090,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_node_template resource relationships" @@ -6307,9 +6129,7 @@ gcp_node_template -[#1A83AF]-> gcp_node_group ``` -
-
## `gcp_node_type` @@ -6380,11 +6200,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_node_type resource relationships" @@ -6416,9 +6233,7 @@ class gcp_node_type { ``` -
-
## `gcp_notification_endpoint` @@ -6499,11 +6314,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_notification_endpoint resource relationships" @@ -6535,9 +6347,7 @@ class gcp_notification_endpoint { ``` -
-
## `gcp_object` @@ -6604,11 +6414,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_object resource relationships" @@ -6640,9 +6447,7 @@ class gcp_object { ``` -
-
## `gcp_operation` @@ -6773,11 +6578,8 @@ gcp_warnings --> gcp_data
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_operation resource relationships" @@ -6812,9 +6614,7 @@ gcp_operation -[#1A83AF]-> gcp_disk ``` -
-
## `gcp_packet_mirroring` @@ -6919,11 +6719,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_packet_mirroring resource relationships" @@ -6962,9 +6759,7 @@ gcp_subnetwork -[#1A83AF]-> gcp_packet_mirroring ``` -
-
## `gcp_project` @@ -7035,11 +6830,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_project resource relationships" @@ -7071,9 +6863,7 @@ class gcp_project { ``` -
-
## `gcp_project_billing_info` @@ -7143,11 +6933,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_project_billing_info resource relationships" @@ -7182,9 +6969,7 @@ gcp_billing_account -[#1A83AF]-> gcp_project_billing_info ``` -
-
## `gcp_public_advertised_prefix` @@ -7265,11 +7050,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_public_advertised_prefix resource relationships" @@ -7304,9 +7086,7 @@ gcp_public_delegated_prefix -[#1A83AF]-> gcp_public_advertised_prefix ``` -
-
## `gcp_public_delegated_prefix` @@ -7389,11 +7169,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_public_delegated_prefix resource relationships" @@ -7428,9 +7205,7 @@ gcp_public_delegated_prefix -[#1A83AF]-> gcp_public_advertised_prefix ``` -
-
## `gcp_region` @@ -7504,11 +7279,8 @@ resource <|--- region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_region resource relationships" @@ -7543,9 +7315,7 @@ gcp_region -[#1A83AF]-> gcp_zone ``` -
-
## `gcp_region_quota` @@ -7619,11 +7389,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_region_quota resource relationships" @@ -7655,9 +7422,7 @@ class gcp_region_quota { ``` -
-
## `gcp_resource` @@ -7720,11 +7485,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_resource resource relationships" @@ -7756,9 +7518,7 @@ class gcp_resource { ``` -
-
## `gcp_resource_policy` @@ -7899,11 +7659,8 @@ gcp_resource_policy_weekly_cycle --> gcp_resource_policy_weekly_cycle_day_of_wee
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_resource_policy resource relationships" @@ -7935,9 +7692,7 @@ class gcp_resource_policy { ``` -
-
## `gcp_route` @@ -8035,11 +7790,8 @@ gcp_warnings --> gcp_data
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_route resource relationships" @@ -8074,9 +7826,7 @@ gcp_network -[#1A83AF]-> gcp_route ``` -
-
## `gcp_router` @@ -8251,11 +8001,8 @@ gcp_router_nat_rule --> gcp_router_nat_rule_action
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_router resource relationships" @@ -8293,9 +8040,7 @@ gcp_vpn_tunnel -[#1A83AF]-> gcp_router ``` -
-
## `gcp_security_policy` @@ -8447,11 +8192,8 @@ gcp_security_policy_rule_rate_limit_options --> gcp_security_policy_rule_redirec
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_security_policy resource relationships" @@ -8483,9 +8225,7 @@ class gcp_security_policy { ``` -
-
## `gcp_service` @@ -8554,11 +8294,8 @@ gcp_resource <|--- gcp_service
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_service resource relationships" @@ -8593,9 +8330,7 @@ gcp_service -[#1A83AF]-> gcp_sku ``` -
-
## `gcp_service_attachment` @@ -8689,11 +8424,8 @@ gcp_service_attachment --> gcp_uint128
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_service_attachment resource relationships" @@ -8731,9 +8463,7 @@ gcp_service_attachment -[#1A83AF]-> gcp_subnetwork ``` -
-
## `gcp_sku` @@ -8853,11 +8583,8 @@ gcp_tier_rate --> gcp_money
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_sku resource relationships" @@ -8898,9 +8625,7 @@ gcp_sku -[#1A83AF]-> gcp_machine_type ``` -
-
## `gcp_snapshot` @@ -8996,11 +8721,8 @@ gcp_resource <|--- gcp_snapshot
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_snapshot resource relationships" @@ -9035,9 +8757,7 @@ gcp_disk -[#1A83AF]-> gcp_snapshot ``` -
-
## `gcp_sql_backup_run` @@ -9122,11 +8842,8 @@ gcp_sql_backup_run --> gcp_sql_operation_error
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_sql_backup_run resource relationships" @@ -9158,9 +8875,7 @@ class gcp_sql_backup_run { ``` -
-
## `gcp_sql_database` @@ -9238,11 +8953,8 @@ gcp_sql_database --> gcp_sql_sql_server_database_details
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_sql_database resource relationships" @@ -9277,9 +8989,7 @@ gcp_sql_database_instance -[#1A83AF]-> gcp_sql_database ``` -
-
## `gcp_sql_database_instance` @@ -9554,11 +9264,8 @@ gcp_sql_settings --> gcp_sql_sql_server_audit_config
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_sql_database_instance resource relationships" @@ -9602,9 +9309,7 @@ gcp_ssl_certificate -[#1A83AF]-> gcp_sql_database_instance ``` -
-
## `gcp_sql_operation` @@ -9744,11 +9449,8 @@ gcp_sql_sqlexportoptions --> gcp_sql_mysqlexportoptions
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_sql_operation resource relationships" @@ -9783,9 +9485,7 @@ gcp_sql_database_instance -[#1A83AF]-> gcp_sql_operation ``` -
-
## `gcp_sql_user` @@ -9879,11 +9579,8 @@ gcp_sql_user_password_validation_policy --> gcp_sql_password_status
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_sql_user resource relationships" @@ -9918,9 +9615,7 @@ gcp_sql_database_instance -[#1A83AF]-> gcp_sql_user ``` -
-
## `gcp_ssl_certificate` @@ -10005,11 +9700,8 @@ gcp_ssl_certificate --> gcp_ssl_certificate_self_managed_ssl_certificate
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_ssl_certificate resource relationships" @@ -10050,9 +9742,7 @@ gcp_target_ssl_proxy -[#1A83AF]-> gcp_ssl_certificate ``` -
-
## `gcp_ssl_policy` @@ -10136,11 +9826,8 @@ gcp_warnings --> gcp_data
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_ssl_policy resource relationships" @@ -10175,9 +9862,7 @@ gcp_ssl_policy -[#1A83AF]-> gcp_target_https_proxy ``` -
-
## `gcp_subnetwork` @@ -10275,11 +9960,8 @@ gcp_subnetwork --> gcp_subnetwork_secondary_range
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_subnetwork resource relationships" @@ -10336,9 +10018,7 @@ gcp_subnetwork -[#1A83AF]-> gcp_packet_mirroring ``` -
-
## `gcp_target_grpc_proxy` @@ -10409,11 +10089,8 @@ gcp_resource <|--- gcp_target_grpc_proxy
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_grpc_proxy resource relationships" @@ -10451,9 +10128,7 @@ gcp_target_grpc_proxy -[#1A83AF]-> gcp_url_map ``` -
-
## `gcp_target_http_proxy` @@ -10523,11 +10198,8 @@ gcp_resource <|--- gcp_target_http_proxy
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_http_proxy resource relationships" @@ -10565,9 +10237,7 @@ gcp_target_http_proxy -[#1A83AF]-> gcp_url_map ``` -
-
## `gcp_target_https_proxy` @@ -10643,11 +10313,8 @@ gcp_resource <|--- gcp_target_https_proxy
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_https_proxy resource relationships" @@ -10691,9 +10358,7 @@ gcp_target_https_proxy -[#1A83AF]-> gcp_url_map ``` -
-
## `gcp_target_instance` @@ -10763,11 +10428,8 @@ gcp_resource <|--- gcp_target_instance
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_instance resource relationships" @@ -10806,9 +10468,7 @@ gcp_target_instance -[#1A83AF]-> gcp_instance ``` -
-
## `gcp_target_pool` @@ -10880,11 +10540,8 @@ gcp_resource <|--- gcp_target_pool
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_pool resource relationships" @@ -10919,9 +10576,7 @@ gcp_forwarding_rule -[#1A83AF]-> gcp_target_pool ``` -
-
## `gcp_target_ssl_proxy` @@ -10993,11 +10648,8 @@ gcp_resource <|--- gcp_target_ssl_proxy
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_ssl_proxy resource relationships" @@ -11038,9 +10690,7 @@ gcp_target_ssl_proxy -[#1A83AF]-> gcp_ssl_certificate ``` -
-
## `gcp_target_tcp_proxy` @@ -11110,11 +10760,8 @@ gcp_resource <|--- gcp_target_tcp_proxy
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_tcp_proxy resource relationships" @@ -11152,9 +10799,7 @@ gcp_target_tcp_proxy -[#1A83AF]-> gcp_backend_service ``` -
-
## `gcp_target_vpn_gateway` @@ -11225,11 +10870,8 @@ gcp_resource <|--- gcp_target_vpn_gateway
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_vpn_gateway resource relationships" @@ -11271,9 +10913,7 @@ gcp_vpn_tunnel -[#1A83AF]-> gcp_target_vpn_gateway ``` -
-
## `gcp_url_map` @@ -11532,11 +11172,8 @@ gcp_weighted_backend_service --> gcp_http_header_action
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_url_map resource relationships" @@ -11580,9 +11217,7 @@ gcp_url_map -[#1A83AF]-> gcp_backend_service ``` -
-
## `gcp_vpn_gateway` @@ -11658,11 +11293,8 @@ gcp_vpn_gateway --> gcp_vpn_gateway_vpn_gateway_interface
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_vpn_gateway resource relationships" @@ -11703,9 +11335,7 @@ gcp_vpn_tunnel -[#1A83AF]-> gcp_vpn_gateway ``` -
-
## `gcp_vpn_tunnel` @@ -11787,11 +11417,8 @@ gcp_resource <|--- gcp_vpn_tunnel
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_vpn_tunnel resource relationships" @@ -11832,9 +11459,7 @@ gcp_vpn_tunnel -[#1A83AF]-> gcp_vpn_gateway ``` -
-
## `gcp_zone` @@ -11909,11 +11534,8 @@ resource <|--- zone
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_zone resource relationships" @@ -11948,7 +11570,5 @@ gcp_region -[#1A83AF]-> gcp_zone ``` -
-
diff --git a/docs/reference/unified-data-model/github.mdx b/docs/reference/unified-data-model/github.mdx index f5e8d99e0..f8cbdd8ca 100644 --- a/docs/reference/unified-data-model/github.mdx +++ b/docs/reference/unified-data-model/github.mdx @@ -55,11 +55,8 @@ account <|--- github_account
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of github_account resource relationships" @@ -91,9 +88,7 @@ class github_account { ``` -
-
## `github_org` @@ -182,11 +177,8 @@ resource <|--- github_org
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of github_org resource relationships" @@ -218,9 +210,7 @@ class github_org { ``` -
-
## `github_pull_request` @@ -304,11 +294,8 @@ resource <|--- github_pull_request
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of github_pull_request resource relationships" @@ -340,9 +327,7 @@ class github_pull_request { ``` -
-
## `github_region` @@ -396,11 +381,8 @@ resource <|--- region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of github_region resource relationships" @@ -432,9 +414,7 @@ class github_region { ``` -
-
## `github_repo` @@ -606,11 +586,8 @@ github_repo_views_traffic --> github_repo_view
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of github_repo resource relationships" @@ -642,9 +619,7 @@ class github_repo { ``` -
-
## `github_user` @@ -743,11 +718,8 @@ resource <|--- user
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of github_user resource relationships" @@ -779,7 +751,5 @@ class github_user { ``` -
-
diff --git a/docs/reference/unified-data-model/index.mdx b/docs/reference/unified-data-model/index.mdx index 4b51cf8fc..50544f82c 100644 --- a/docs/reference/unified-data-model/index.mdx +++ b/docs/reference/unified-data-model/index.mdx @@ -45,11 +45,8 @@ Every resource in Resoto has the `resource` base kind as its root. Resoto also introduces abstract model classes for different resource types, making it easy to query and reason about common data.
- Example -
- ![Example Resource Model](./img/resource_example.svg) @@ -67,7 +64,6 @@ Resoto also introduces abstract model classes for different resource types, maki A [Google Cloud Disk resource](https://cloud.google.com/compute/docs/reference/rest/v1/disks) is conceptually similar to an AWS EC2 Volume and the two resource types have many properties in common.
-
## Supported Resource Types @@ -76,7 +72,7 @@ Resoto has built-in support for resource types from the following cloud provider -## Resource Kinds {#kinds} +## Resource Kinds \{#kinds} For a list of available kinds, you can use the [`kinds` CLI command](../cli/kinds.mdx): @@ -139,9 +135,7 @@ Since Resoto uses JSON in order to exchange data, all the different simple types Resoto also introduces some additional simple types like `datetime` or `date`. The reason for this is the ability to coerce proper values from values given to Resoto.
- Example -
**Assume a user wants to query a resource by creation time.** @@ -167,5 +161,4 @@ According to the model, we would need to filter for the `ctime` property. Since This translates `"-3d"` using the current server time into a valid datetime string.
-
diff --git a/docs/reference/unified-data-model/kubernetes.mdx b/docs/reference/unified-data-model/kubernetes.mdx index 2139145e6..6409439f2 100644 --- a/docs/reference/unified-data-model/kubernetes.mdx +++ b/docs/reference/unified-data-model/kubernetes.mdx @@ -76,11 +76,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_cluster resource relationships" @@ -158,9 +155,7 @@ kubernetes_node -[#1A83AF]-> kubernetes_csi_node ``` -
-
## `kubernetes_cluster_role` @@ -217,11 +212,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_cluster_role resource relationships" @@ -256,9 +248,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_cluster_role ``` -
-
## `kubernetes_cluster_role_binding` @@ -315,11 +305,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_cluster_role_binding resource relationships" @@ -354,9 +341,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_cluster_role_binding ``` -
-
## `kubernetes_config_map` @@ -413,11 +398,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_config_map resource relationships" @@ -456,9 +438,7 @@ kubernetes_pod -[#1A83AF]-> kubernetes_config_map ``` -
-
## `kubernetes_controller_revision` @@ -515,11 +495,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_controller_revision resource relationships" @@ -562,9 +539,7 @@ kubernetes_stateful_set -[#1A83AF]-> kubernetes_controller_revision ``` -
-
## `kubernetes_cron_job` @@ -823,11 +798,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_cron_job resource relationships" @@ -866,9 +838,7 @@ kubernetes_namespace -[#1A83AF]-> kubernetes_job ``` -
-
## `kubernetes_csi_driver` @@ -925,11 +895,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_csi_driver resource relationships" @@ -964,9 +931,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_csi_driver ``` -
-
## `kubernetes_csi_node` @@ -1023,11 +988,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_csi_node resource relationships" @@ -1066,9 +1028,7 @@ kubernetes_node -[#1A83AF]-> kubernetes_csi_node ``` -
-
## `kubernetes_csi_storage_capacity` @@ -1125,11 +1085,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_csi_storage_capacity resource relationships" @@ -1161,9 +1118,7 @@ class kubernetes_csi_storage_capacity { ``` -
-
## `kubernetes_daemon_set` @@ -1407,11 +1362,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_daemon_set resource relationships" @@ -1454,9 +1406,7 @@ kubernetes_namespace -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_deployment` @@ -1713,11 +1663,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_deployment resource relationships" @@ -1756,9 +1703,7 @@ kubernetes_namespace -[#1A83AF]-> kubernetes_replica_set ``` -
-
## `kubernetes_endpoint` @@ -1832,11 +1777,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_endpoint resource relationships" @@ -1883,9 +1825,7 @@ kubernetes_node -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_endpoint_slice` @@ -1942,11 +1882,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_endpoint_slice resource relationships" @@ -1989,9 +1926,7 @@ kubernetes_service -[#1A83AF]-> kubernetes_endpoint_slice ``` -
-
## `kubernetes_flow_schema` @@ -2061,11 +1996,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_flow_schema resource relationships" @@ -2100,9 +2032,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_flow_schema ``` -
-
## `kubernetes_horizontal_pod_autoscaler` @@ -2182,11 +2112,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_horizontal_pod_autoscaler resource relationships" @@ -2218,9 +2145,7 @@ class kubernetes_horizontal_pod_autoscaler { ``` -
-
## `kubernetes_ingress` @@ -2322,11 +2247,8 @@ resource <|--- load_balancer
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_ingress resource relationships" @@ -2358,9 +2280,7 @@ class kubernetes_ingress { ``` -
-
## `kubernetes_ingress_class` @@ -2417,11 +2337,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_ingress_class resource relationships" @@ -2456,9 +2373,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_ingress_class ``` -
-
## `kubernetes_job` @@ -2707,11 +2622,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_job resource relationships" @@ -2754,9 +2666,7 @@ kubernetes_namespace -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_limit_range` @@ -2813,11 +2723,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_limit_range resource relationships" @@ -2849,9 +2756,7 @@ class kubernetes_limit_range { ``` -
-
## `kubernetes_mutating_webhook_configuration` @@ -2908,11 +2813,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_mutating_webhook_configuration resource relationships" @@ -2947,9 +2849,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_mutating_webhook_configuration ``` -
-
## `kubernetes_namespace` @@ -3024,11 +2924,8 @@ resource <|--- region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_namespace resource relationships" @@ -3133,9 +3030,7 @@ kubernetes_stateful_set -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_network_policy` @@ -3206,11 +3101,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_network_policy resource relationships" @@ -3242,9 +3134,7 @@ class kubernetes_network_policy { ``` -
-
## `kubernetes_node` @@ -3404,11 +3294,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_node resource relationships" @@ -3454,9 +3341,7 @@ kubernetes_node -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_persistent_volume` @@ -3570,11 +3455,8 @@ resource <|--- volume
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_persistent_volume resource relationships" @@ -3612,9 +3494,7 @@ kubernetes_persistent_volume_claim -[#1A83AF]-> kubernetes_persistent_volume ``` -
-
## `kubernetes_persistent_volume_claim` @@ -3715,11 +3595,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_persistent_volume_claim resource relationships" @@ -3761,9 +3638,7 @@ kubernetes_pod -[#1A83AF]-> kubernetes_persistent_volume_claim ``` -
-
## `kubernetes_pod` @@ -4031,11 +3906,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_pod resource relationships" @@ -4110,9 +3982,7 @@ kubernetes_stateful_set -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_pod_disruption_budget` @@ -4207,11 +4077,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_pod_disruption_budget resource relationships" @@ -4246,9 +4113,7 @@ kubernetes_namespace -[#1A83AF]-> kubernetes_pod_disruption_budget ``` -
-
## `kubernetes_pod_template` @@ -4305,11 +4170,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_pod_template resource relationships" @@ -4341,9 +4203,7 @@ class kubernetes_pod_template { ``` -
-
## `kubernetes_priority_class` @@ -4400,11 +4260,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_priority_class resource relationships" @@ -4439,9 +4296,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_priority_class ``` -
-
## `kubernetes_priority_level_configuration` @@ -4511,11 +4366,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_priority_level_configuration resource relationships" @@ -4550,9 +4402,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_priority_level_configuration ``` -
-
## `kubernetes_replica_set` @@ -4792,11 +4642,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_replica_set resource relationships" @@ -4839,9 +4686,7 @@ kubernetes_replica_set -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_replication_controller` @@ -4916,11 +4761,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_replication_controller resource relationships" @@ -4952,9 +4794,7 @@ class kubernetes_replication_controller { ``` -
-
## `kubernetes_resource` @@ -5008,11 +4848,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_resource resource relationships" @@ -5044,9 +4881,7 @@ class kubernetes_resource { ``` -
-
## `kubernetes_resource_quota` @@ -5126,11 +4961,8 @@ phantom_resource <|--- quota
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_resource_quota resource relationships" @@ -5162,9 +4994,7 @@ class kubernetes_resource_quota { ``` -
-
## `kubernetes_role` @@ -5221,11 +5051,8 @@ kubernetes_resource <|--- kubernetes_role
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_role resource relationships" @@ -5260,9 +5087,7 @@ kubernetes_namespace -[#1A83AF]-> kubernetes_role ``` -
-
## `kubernetes_role_binding` @@ -5319,11 +5144,8 @@ kubernetes_resource <|--- kubernetes_role_binding
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_role_binding resource relationships" @@ -5358,9 +5180,7 @@ kubernetes_namespace -[#1A83AF]-> kubernetes_role_binding ``` -
-
## `kubernetes_runtime_class` @@ -5417,11 +5237,8 @@ kubernetes_resource <|--- kubernetes_runtime_class
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_runtime_class resource relationships" @@ -5453,9 +5270,7 @@ class kubernetes_runtime_class { ``` -
-
## `kubernetes_secret` @@ -5512,11 +5327,8 @@ kubernetes_resource <|--- kubernetes_secret
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_secret resource relationships" @@ -5559,9 +5371,7 @@ kubernetes_service_account -[#1A83AF]-> kubernetes_secret ``` -
-
## `kubernetes_service` @@ -5687,11 +5497,8 @@ resource <|--- load_balancer
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_service resource relationships" @@ -5734,9 +5541,7 @@ kubernetes_service -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_service_account` @@ -5793,11 +5598,8 @@ kubernetes_resource <|--- kubernetes_service_account
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_service_account resource relationships" @@ -5836,9 +5638,7 @@ kubernetes_service_account -[#1A83AF]-> kubernetes_secret ``` -
-
## `kubernetes_stateful_set` @@ -6085,11 +5885,8 @@ kubernetes_stateful_set_status --> kubernetes_stateful_set_status_condition
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_stateful_set resource relationships" @@ -6132,9 +5929,7 @@ kubernetes_stateful_set -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_storage_class` @@ -6191,11 +5986,8 @@ kubernetes_resource <|--- kubernetes_storage_class
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_storage_class resource relationships" @@ -6230,9 +6022,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_storage_class ``` -
-
## `kubernetes_validating_webhook_configuration` @@ -6289,11 +6079,8 @@ kubernetes_resource <|--- kubernetes_validating_webhook_configuration
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_validating_webhook_configuration resource relationships" @@ -6328,9 +6115,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_validating_webhook_configuration ``` -
-
## `kubernetes_volume_attachment` @@ -6407,11 +6192,8 @@ kubernetes_volume_attachment_status --> kubernetes_volume_error
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_volume_attachment resource relationships" @@ -6446,7 +6228,5 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_volume_attachment ``` -
-
diff --git a/docs/reference/unified-data-model/onelogin.mdx b/docs/reference/unified-data-model/onelogin.mdx index fb840cd38..662ec35da 100644 --- a/docs/reference/unified-data-model/onelogin.mdx +++ b/docs/reference/unified-data-model/onelogin.mdx @@ -58,11 +58,8 @@ onelogin_resource <|--- onelogin_account
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of onelogin_account resource relationships" @@ -94,9 +91,7 @@ class onelogin_account { ``` -
-
## `onelogin_region` @@ -153,11 +148,8 @@ resource <|--- region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of onelogin_region resource relationships" @@ -189,9 +181,7 @@ class onelogin_region { ``` -
-
## `onelogin_user` @@ -283,11 +273,8 @@ resource <|--- user
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of onelogin_user resource relationships" @@ -319,7 +306,5 @@ class onelogin_user { ``` -
-
diff --git a/docs/reference/unified-data-model/onprem.mdx b/docs/reference/unified-data-model/onprem.mdx index cb724cdde..ab2e3c4ed 100644 --- a/docs/reference/unified-data-model/onprem.mdx +++ b/docs/reference/unified-data-model/onprem.mdx @@ -66,11 +66,8 @@ onprem_resource <|--- onprem_instance
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of onprem_instance resource relationships" @@ -102,9 +99,7 @@ class onprem_instance { ``` -
-
## `onprem_location` @@ -158,11 +153,8 @@ account <|--- onprem_location
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of onprem_location resource relationships" @@ -194,9 +186,7 @@ class onprem_location { ``` -
-
## `onprem_network` @@ -253,11 +243,8 @@ onprem_resource <|--- onprem_network
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of onprem_network resource relationships" @@ -289,9 +276,7 @@ class onprem_network { ``` -
-
## `onprem_region` @@ -345,11 +330,8 @@ resource <|--- region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of onprem_region resource relationships" @@ -381,7 +363,5 @@ class onprem_region { ``` -
-
diff --git a/docs/reference/unified-data-model/posthog.mdx b/docs/reference/unified-data-model/posthog.mdx index d511470ee..0b36cfc70 100644 --- a/docs/reference/unified-data-model/posthog.mdx +++ b/docs/reference/unified-data-model/posthog.mdx @@ -69,11 +69,8 @@ resource <|--- posthog_event
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of posthog_event resource relationships" @@ -105,9 +102,7 @@ class posthog_event { ``` -
-
## `posthog_project` @@ -181,11 +176,8 @@ posthog_resource <|--- posthog_project
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of posthog_project resource relationships" @@ -217,7 +209,5 @@ class posthog_project { ``` -
-
diff --git a/docs/reference/unified-data-model/scarf.mdx b/docs/reference/unified-data-model/scarf.mdx index 14230f4d1..2b61f3f74 100644 --- a/docs/reference/unified-data-model/scarf.mdx +++ b/docs/reference/unified-data-model/scarf.mdx @@ -61,11 +61,8 @@ scarf_resource <|--- scarf_organization
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of scarf_organization resource relationships" @@ -97,9 +94,7 @@ class scarf_organization { ``` -
-
## `scarf_package` @@ -159,11 +154,8 @@ scarf_resource <|--- scarf_package
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of scarf_package resource relationships" @@ -195,7 +187,5 @@ class scarf_package { ``` -
-
diff --git a/docs/reference/unified-data-model/slack.mdx b/docs/reference/unified-data-model/slack.mdx index 7c5434a8c..886a8d932 100644 --- a/docs/reference/unified-data-model/slack.mdx +++ b/docs/reference/unified-data-model/slack.mdx @@ -82,11 +82,8 @@ slack_resource <|--- slack_conversation
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of slack_conversation resource relationships" @@ -125,9 +122,7 @@ slack_region -[#1A83AF]-> slack_user ``` -
-
## `slack_region` @@ -184,11 +179,8 @@ slack_resource <|--- slack_region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of slack_region resource relationships" @@ -234,9 +226,7 @@ slack_usergroup -[#1A83AF]-> slack_user ``` -
-
## `slack_team` @@ -296,11 +286,8 @@ slack_resource <|--- slack_team
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of slack_team resource relationships" @@ -335,9 +322,7 @@ slack_team -[#1A83AF]-> slack_region ``` -
-
## `slack_user` @@ -428,11 +413,8 @@ resource <|--- user
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of slack_user resource relationships" @@ -475,9 +457,7 @@ slack_usergroup -[#1A83AF]-> slack_user ``` -
-
## `slack_usergroup` @@ -546,11 +526,8 @@ slack_resource <|--- slack_usergroup
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of slack_usergroup resource relationships" @@ -589,7 +566,5 @@ slack_usergroup -[#1A83AF]-> slack_user ``` -
-
diff --git a/docs/reference/unified-data-model/vsphere.mdx b/docs/reference/unified-data-model/vsphere.mdx index 73de3a418..5117e4c5c 100644 --- a/docs/reference/unified-data-model/vsphere.mdx +++ b/docs/reference/unified-data-model/vsphere.mdx @@ -55,11 +55,8 @@ resource <|--- zone
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_cluster resource relationships" @@ -91,9 +88,7 @@ class vsphere_cluster { ``` -
-
## `vsphere_data_center` @@ -147,11 +142,8 @@ region <|--- vsphere_data_center
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_data_center resource relationships" @@ -183,9 +175,7 @@ class vsphere_data_center { ``` -
-
## `vsphere_datastore` @@ -236,11 +226,8 @@ resource <|--- vsphere_datastore
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_datastore resource relationships" @@ -272,9 +259,7 @@ class vsphere_datastore { ``` -
-
## `vsphere_datastore_cluster` @@ -325,11 +310,8 @@ resource <|--- vsphere_datastore_cluster
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_datastore_cluster resource relationships" @@ -361,9 +343,7 @@ class vsphere_datastore_cluster { ``` -
-
## `vsphere_esxi_host` @@ -414,11 +394,8 @@ resource <|--- vsphere_esxi_host
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_esxi_host resource relationships" @@ -450,9 +427,7 @@ class vsphere_esxi_host { ``` -
-
## `vsphere_host` @@ -506,11 +481,8 @@ account <|--- vsphere_host
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_host resource relationships" @@ -542,9 +514,7 @@ class vsphere_host { ``` -
-
## `vsphere_instance` @@ -605,11 +575,8 @@ vsphere_resource <|--- vsphere_instance
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_instance resource relationships" @@ -641,9 +608,7 @@ class vsphere_instance { ``` -
-
## `vsphere_resource_pool` @@ -694,11 +659,8 @@ resource <|--- vsphere_resource_pool
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_resource_pool resource relationships" @@ -730,9 +692,7 @@ class vsphere_resource_pool { ``` -
-
## `vsphere_template` @@ -786,11 +746,8 @@ vsphere_resource <|--- vsphere_template
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_template resource relationships" @@ -822,7 +779,5 @@ class vsphere_template { ``` -
-
diff --git a/docs/reference/user-interface/configuration-editor.mdx b/docs/reference/user-interface/configuration-editor.mdx index 2f87ed080..59d72d664 100644 --- a/docs/reference/user-interface/configuration-editor.mdx +++ b/docs/reference/user-interface/configuration-editor.mdx @@ -17,9 +17,7 @@ Configurations can be saved, deleted, duplicated, renamed, and added using this On the left side of the interface, you can find the navigation. Here you can select which configuration you want to edit. The displayed folder structure is created by the configuration names.
- How the folder structure is created -
- config: `resoto.core` @@ -53,7 +51,6 @@ On the left side of the interface, you can find the navigation. Here you can sel ```
-
### Right Side diff --git a/docs/reference/user-interface/dashboards/widgets/index.mdx b/docs/reference/user-interface/dashboards/widgets/index.mdx index dc6d30ad3..597bdb624 100644 --- a/docs/reference/user-interface/dashboards/widgets/index.mdx +++ b/docs/reference/user-interface/dashboards/widgets/index.mdx @@ -28,9 +28,7 @@ The Indicator Widget displays data as a Number. In the Widgets Options, you can - [Aggregate Search (Live Data)](../data-sources/index.mdx#aggregate-search)
- Indicator Aggregate Data Source examples -
- Monthly Volume Cost estimation @@ -51,7 +49,6 @@ The Indicator Widget displays data as a Number. In the Widgets Options, you can ```
-
## Chart @@ -65,9 +62,7 @@ The Chart Widget displays time series data as a line chart. You can change setti - [Time Series (Historic Data)](../data-sources/index.mdx#time-series)
- Chart Time Series Data Source examples -
- Total Accounts across all clouds @@ -80,7 +75,6 @@ The Chart Widget displays time series data as a line chart. You can change setti ```
-
## Table @@ -101,9 +95,7 @@ You can export the displayed data directly from the widget by clicking the expor :::
- Table Aggregate Search Data Source examples -
- Instances per kind and cloud @@ -116,7 +108,6 @@ You can export the displayed data directly from the widget by clicking the expor ```
-
## Heatmap @@ -131,9 +122,7 @@ The Heatmap Widget provides a visual tool to quickly find hotspots of certain me - [Two Entries Aggregate (Live Data)](../data-sources/index.mdx#two-entries-aggregate)
- Heatmap Aggregate Data Source examples -
- Instances per type and account @@ -146,7 +135,6 @@ The Heatmap Widget provides a visual tool to quickly find hotspots of certain me ```
-
## World Map @@ -161,9 +149,7 @@ The World Map Widget is a way of displaying elements grouped by the geolocation - [Fixed Aggregate (Live Data)](../data-sources/index.mdx#fixed-aggregate)
- World Map Fixed Aggregate Data Source examples -
- Instances number per region and cloud @@ -172,5 +158,4 @@ The World Map Widget is a way of displaying elements grouped by the geolocation ```
-
diff --git a/docusaurus.config.js b/docusaurus.config.js index ddd544ca9..3415815d5 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -82,8 +82,8 @@ const config = { categoryPosition.includes(generatedCategory.label) ? categoryPosition.indexOf(generatedCategory.label) : generatedCategory.label === miscellaneousCategoryName - ? categoryPosition.length + 1 - : categoryPosition.length, + ? categoryPosition.length + 1 + : categoryPosition.length, ); } diff --git a/package.json b/package.json index 98ebd6a6f..ef74b777e 100644 --- a/package.json +++ b/package.json @@ -27,63 +27,62 @@ }, "dependencies": { "@1password/docusaurus-plugin-stored-data": "0.1.0", - "@docusaurus/core": "2.4.3", - "@docusaurus/plugin-pwa": "2.4.3", - "@docusaurus/plugin-sitemap": "2.4.3", - "@docusaurus/preset-classic": "2.4.3", - "@docusaurus/theme-mermaid": "2.4.3", - "@fec/remark-a11y-emoji": "3.1.0", - "@mdx-js/react": "1.6.22", - "@octokit/core": "4.2.4", - "@rive-app/react-canvas": "4.3.3", + "@docusaurus/core": "3.0.1", + "@docusaurus/plugin-pwa": "3.0.1", + "@docusaurus/plugin-sitemap": "3.0.1", + "@docusaurus/preset-classic": "3.0.1", + "@docusaurus/theme-mermaid": "3.0.1", + "@fec/remark-a11y-emoji": "4.0.2", + "@mdx-js/react": "3.0.0", + "@octokit/core": "5.0.2", + "@rive-app/react-canvas": "4.5.6", "a11y-react-emoji": "1.2.0", "clsx": "2.0.0", - "docusaurus-plugin-openapi-docs": "2.0.0-beta.4", - "docusaurus-theme-openapi-docs": "2.0.0-beta.4", + "docusaurus-plugin-openapi-docs": "3.0.0-beta.2", + "docusaurus-theme-openapi-docs": "3.0.0-beta.2", "formik": "2.4.5", "github-slugger": "2.0.0", - "hast-util-is-element": "1.1.0", "lodash": "4.17.21", "netlify-plugin-cache": "1.0.3", - "prism-react-renderer": "2.1.0", + "prism-react-renderer": "2.3.0", "react": "18.2.0", "react-dom": "18.2.0", "react-modal": "3.16.1", "react-netlify-forms": "1.3.3", "react-tabs": "6.0.2", "react-wrap-balancer": "1.1.0", - "react-zoom-pan-pinch": "3.1.0", - "rehype-katex": "5.0.0", + "react-zoom-pan-pinch": "3.3.0", + "rehype-katex": "7.0.0", "remark-kroki-plugin": "0.1.1", - "remark-math": "3.0.1", + "remark-math": "6.0.0", "yup": "1.3.2" }, "devDependencies": { - "@commitlint/cli": "17.7.2", - "@commitlint/config-conventional": "17.7.0", - "@docusaurus/module-type-aliases": "2.4.3", - "@docusaurus/types": "2.4.3", - "@tsconfig/docusaurus": "2.0.1", - "@typescript-eslint/eslint-plugin": "6.7.3", - "@typescript-eslint/parser": "6.7.3", - "asciinema-player": "3.6.2", + "@commitlint/cli": "18.4.3", + "@commitlint/config-conventional": "18.4.3", + "@docusaurus/module-type-aliases": "3.0.1", + "@docusaurus/tsconfig": "3.0.1", + "@docusaurus/types": "3.0.1", + "@typescript-eslint/eslint-plugin": "6.13.2", + "@typescript-eslint/parser": "6.13.2", + "asciinema-player": "3.6.3", "commitizen": "4.3.0", - "eslint": "8.50.0", - "eslint-config-prettier": "9.0.0", - "eslint-plugin-formatjs": "4.10.5", - "eslint-plugin-jsx-a11y": "6.7.1", - "eslint-plugin-prettier": "5.0.0", + "eslint": "8.55.0", + "eslint-config-prettier": "9.1.0", + "eslint-plugin-formatjs": "4.11.3", + "eslint-plugin-jsx-a11y": "6.8.0", + "eslint-plugin-prettier": "5.0.1", "eslint-plugin-react": "7.33.2", "eslint-plugin-react-hooks": "4.6.0", - "eslint-plugin-regexp": "1.15.0", + "eslint-plugin-regexp": "2.1.2", "husky": "8.0.3", - "lint-staged": "14.0.1", - "postcss": "8.4.31", - "prettier": "3.0.3", + "lint-staged": "15.2.0", + "postcss": "8.4.32", + "prettier": "3.1.0", "prettier-plugin-css-order": "2.0.1", - "react-lite-youtube-embed": "^2.3.52", - "svgo": "3.0.2", - "typescript": "5.2.2" + "react-lite-youtube-embed": "^2.4.0", + "svgo": "3.0.5", + "typescript": "5.3.3" }, "browserslist": { "production": [ diff --git a/releases/2.0.0/index.mdx b/releases/2.0.0/index.mdx index eca8faf5a..9368d7976 100644 --- a/releases/2.0.0/index.mdx +++ b/releases/2.0.0/index.mdx @@ -32,7 +32,7 @@ Please check out the [Getting Started](/docs/getting-started) section of our doc There are currently two installation options for Resoto: [Docker](/docs/getting-started/install-resoto/docker) and [Kubernetes](/docs/getting-started/install-resoto/kubernetes). - +{/* truncate */} ## Docker Images diff --git a/releases/2.0.1/index.mdx b/releases/2.0.1/index.mdx index 617e9c0c1..ffef4c89e 100644 --- a/releases/2.0.1/index.mdx +++ b/releases/2.0.1/index.mdx @@ -16,7 +16,7 @@ date: 2022-04-14 - [`503dedb`](https://github.com/someengineering/resoto/commit/503dedb) resotocore Not should affect only the next simple term ([#793](https://github.com/someengineering/resoto/pull/793)) - [`d5b5ecd`](https://github.com/someengineering/resoto/commit/d5b5ecd) docs Update all plugin READMEs ([#790](https://github.com/someengineering/resoto/pull/790)) - +{/* truncate */} ## Docker Images diff --git a/releases/2.0.2/index.mdx b/releases/2.0.2/index.mdx index b04010663..00e8792ed 100644 --- a/releases/2.0.2/index.mdx +++ b/releases/2.0.2/index.mdx @@ -37,7 +37,7 @@ date: 2022-04-22 - [`2f1c040`](https://github.com/someengineering/resoto/commit/2f1c040) resoto use version 2.0 as docker version in compose - [`1763105`](https://github.com/someengineering/resoto/commit/1763105) resoto Add documentation as release note section ([#792](https://github.com/someengineering/resoto/pull/792)) - +{/* truncate */} ## Docker Images diff --git a/releases/2.1.0/index.mdx b/releases/2.1.0/index.mdx index 696f68794..f3f87f7bb 100644 --- a/releases/2.1.0/index.mdx +++ b/releases/2.1.0/index.mdx @@ -57,7 +57,7 @@ date: 2022-04-28 - [`0a27e8a`](https://github.com/someengineering/resoto/commit/0a27e8a) docker Update compose file for 2.0.0 ([#788](https://github.com/someengineering/resoto/pull/788)) - [`edc9e22`](https://github.com/someengineering/resoto/commit/edc9e22) resoto Bump 2.1.0a0 ([#786](https://github.com/someengineering/resoto/pull/786)) - +{/* truncate */} ## Docker Images diff --git a/releases/2.2.0/index.mdx b/releases/2.2.0/index.mdx index bb1b0222d..d1bb4635f 100644 --- a/releases/2.2.0/index.mdx +++ b/releases/2.2.0/index.mdx @@ -50,7 +50,7 @@ date: 2022-05-13 - [`95137fe`](https://github.com/someengineering/resoto/commit/95137fe) resotolib rename package resotolib.logging and resotolib.signal ([#828](https://github.com/someengineering/resoto/pull/828)) - [`12dea08`](https://github.com/someengineering/resoto/commit/12dea08) resoto Bump 2.2.0a0 ([#826](https://github.com/someengineering/resoto/pull/826)) - +{/* truncate */} ## Docker Images diff --git a/releases/2.3.1/index.mdx b/releases/2.3.1/index.mdx index 9f5962a74..76fd56e0a 100644 --- a/releases/2.3.1/index.mdx +++ b/releases/2.3.1/index.mdx @@ -49,7 +49,7 @@ And last but not least, the UML model endpoint can generate diagrams with comple Resoto uses collectors to retrieve data from a specific cloud provider. Those collectors are not only able to collect the resource data, but also define the relationships between the resources. Some relationships cannot be resolved inside the collector, since the relationship points to resources that are not part of this cloud. -:::tip Examples +:::tip[Examples] - A [Kubernetes node](/docs/reference/unified-data-model/kubernetes#kubernetes_node) is running on an [AWS EC2 instance](/docs/reference/unified-data-model/aws#aws_ec2_instance). The [Kubernetes collector](/docs/how-to-guides/data-sources/collect-kubernetes-resource-data) is unable to resolve the reference, since it points to a resource provided by [AWS](/docs/how-to-guides/data-sources/collect-aws-resource-data). @@ -59,7 +59,7 @@ Resoto uses collectors to retrieve data from a specific cloud provider. Those co Resoto now has support for creating edges that cannot be resolved during the phase of collecting the data but are resolved once all collectors have delivered their current snapshot. Going forward, we will continue extend our collectors to provide insights into relationships across cloud providers. - +{/* truncate */} ## What's Changed diff --git a/releases/2.3.2/index.mdx b/releases/2.3.2/index.mdx index a3d019788..fb3af735b 100644 --- a/releases/2.3.2/index.mdx +++ b/releases/2.3.2/index.mdx @@ -17,7 +17,7 @@ date: 2022-06-24 - [`c2912de3`](https://github.com/someengineering/resoto/commit/c2912de3) resotocore use proper datetime ([#953](https://github.com/someengineering/resoto/pull/953)) - [`bd320f6c`](https://github.com/someengineering/resoto/commit/bd320f6c) resotocore Redirect to UI ([#952](https://github.com/someengineering/resoto/pull/952)) - +{/* truncate */} ## Docker Images diff --git a/releases/2.4.0/index.mdx b/releases/2.4.0/index.mdx index 0cde4402a..2791ec9b8 100644 --- a/releases/2.4.0/index.mdx +++ b/releases/2.4.0/index.mdx @@ -135,7 +135,7 @@ date: 2022-08-16 - [`0f7dbe93`](https://github.com/someengineering/resoto/commit/0f7dbe93) resoto Move the plugin bundle into the main package bundle ([#949](https://github.com/someengineering/resoto/pull/949)) - [`91f65458`](https://github.com/someengineering/resoto/commit/91f65458) resoto Bump next release version. ([#945](https://github.com/someengineering/resoto/pull/945)) - +{/* truncate */} ## Docker Images diff --git a/releases/2.4.1/index.mdx b/releases/2.4.1/index.mdx index 56bd0e553..14b306b7d 100644 --- a/releases/2.4.1/index.mdx +++ b/releases/2.4.1/index.mdx @@ -18,7 +18,7 @@ date: 2022-09-03 - [`9e4662e0`](https://github.com/someengineering/resoto/commit/9e4662e0) resoto Bump 2.4.1 - +{/* truncate */} ## Docker Images diff --git a/releases/2.4.2/index.mdx b/releases/2.4.2/index.mdx index a29c7714f..f86b45833 100644 --- a/releases/2.4.2/index.mdx +++ b/releases/2.4.2/index.mdx @@ -26,7 +26,7 @@ date: 2022-10-05 - [`459f8dde`](https://github.com/someengineering/resoto/commit/459f8dde) ci Fix release notes generator when no PR, bump helm-charts versions (#1148) - [`655b4ff1`](https://github.com/someengineering/resoto/commit/655b4ff1) ci Handle reversed component/group in release notes generator (#1078) - +{/* truncate */} ## Docker Images diff --git a/releases/2.4.3/index.mdx b/releases/2.4.3/index.mdx index b0d50580d..c0b46218e 100644 --- a/releases/2.4.3/index.mdx +++ b/releases/2.4.3/index.mdx @@ -21,7 +21,7 @@ date: 2022-10-11 - [`c1b33cab`](https://github.com/someengineering/resoto/commit/c1b33cab) ci Fix release notes generation (#1217) - [`8427afde`](https://github.com/someengineering/resoto/commit/8427afde) ci Correct link for release notes (#1214) - +{/* truncate */} ## Docker Images diff --git a/releases/2.4.4/index.mdx b/releases/2.4.4/index.mdx index 2f7ab5778..20f759b24 100644 --- a/releases/2.4.4/index.mdx +++ b/releases/2.4.4/index.mdx @@ -16,7 +16,7 @@ date: 2022-10-19 - [`b71b09f6`](https://github.com/someengineering/resoto/commit/b71b09f6) resoto Bump 2.4.4 - [`c5c9414d`](https://github.com/someengineering/resoto/commit/c5c9414d) resotocore Add RESOTOCORE_ANALYTICS_OPT_OUT to docker-compose.yml (#1185) - +{/* truncate */} ## Docker Images diff --git a/releases/2.4.5/index.mdx b/releases/2.4.5/index.mdx index ee9f5f1e7..0b6894083 100644 --- a/releases/2.4.5/index.mdx +++ b/releases/2.4.5/index.mdx @@ -15,7 +15,7 @@ date: 2022-10-22 - [`a07048f4`](https://github.com/someengineering/resoto/commit/a07048f4) resoto Bump 2.4.5 - +{/* truncate */} ## Docker Images diff --git a/releases/2.4.7/index.mdx b/releases/2.4.7/index.mdx index 88cc5373f..07a6915f3 100644 --- a/releases/2.4.7/index.mdx +++ b/releases/2.4.7/index.mdx @@ -26,7 +26,7 @@ date: 2022-11-17 - [`6a88d496`](https://github.com/someengineering/resoto/commit/6a88d496) resoto Bump 2.4.6 - [`cf9db945`](https://github.com/someengineering/resoto/commit/cf9db945) ci Update API docs CI (#1267) - +{/* truncate */} ## Docker Images diff --git a/releases/3.0.0/index.mdx b/releases/3.0.0/index.mdx index 83de652be..cd84a2929 100644 --- a/releases/3.0.0/index.mdx +++ b/releases/3.0.0/index.mdx @@ -85,7 +85,7 @@ We also created a Python client as part of this release that allows you to inter If your programming language of choice is not Python, you can still use the [Resoto API](/docs/reference/api) directly. - +{/* truncate */} ## What's Changed @@ -570,7 +570,7 @@ If your programming language of choice is not Python, you can still use the [Res - [`0a27e8a8`](https://github.com/someengineering/resoto/commit/0a27e8a8) docker Update compose file for 2.0.0 (#788) - [`edc9e22e`](https://github.com/someengineering/resoto/commit/edc9e22e) resoto Bump 2.1.0a0 (#786) - +{/* truncate */} ## Docker Images diff --git a/releases/3.0.1/index.mdx b/releases/3.0.1/index.mdx index 5871099a1..4bf8806ab 100644 --- a/releases/3.0.1/index.mdx +++ b/releases/3.0.1/index.mdx @@ -31,7 +31,7 @@ date: 2022-12-13 - [`31a8a420`](https://github.com/someengineering/resoto/commit/31a8a420) resoto Remove resoto bundle (#1349) - [`c2bff20a`](https://github.com/someengineering/resoto/commit/c2bff20a) resoto Bump 3.0.1 (#1334) - +{/* truncate */} ## Docker Images diff --git a/releases/3.0.2/index.mdx b/releases/3.0.2/index.mdx index 957125c32..8eab8a3e7 100644 --- a/releases/3.0.2/index.mdx +++ b/releases/3.0.2/index.mdx @@ -23,7 +23,7 @@ date: 2022-12-22 - [`d9b86b84`](https://github.com/someengineering/resoto/commit/d9b86b84) resoto Bump 3.0.2 (#1352) - +{/* truncate */} ## Docker Images diff --git a/releases/3.0.3/index.mdx b/releases/3.0.3/index.mdx index de7faac7f..51420f21f 100644 --- a/releases/3.0.3/index.mdx +++ b/releases/3.0.3/index.mdx @@ -14,7 +14,7 @@ date: 2022-12-27 - [`78ffc86c`](https://github.com/someengineering/resoto/commit/78ffc86c) resoto Bump 3.0.3 (#1360) - +{/* truncate */} ## Docker Images diff --git a/releases/3.0.4/index.mdx b/releases/3.0.4/index.mdx index 73cc701e4..0569428db 100644 --- a/releases/3.0.4/index.mdx +++ b/releases/3.0.4/index.mdx @@ -27,7 +27,7 @@ date: 2023-01-24 - [`33664fe3`](https://github.com/someengineering/resoto/commit/33664fe3) resoto Define project urls (#1365) - [`0906928e`](https://github.com/someengineering/resoto/commit/0906928e) resoto Bump next version (#1363) - +{/* truncate */} ## Docker Images diff --git a/releases/3.1.0/index.mdx b/releases/3.1.0/index.mdx index b9433214c..24f9937da 100644 --- a/releases/3.1.0/index.mdx +++ b/releases/3.1.0/index.mdx @@ -28,7 +28,7 @@ date: 2023-01-28 - [`8094ee96`](https://github.com/someengineering/resoto/commit/8094ee96) resoto Next release (#1377) - +{/* truncate */} ## Docker Images diff --git a/releases/3.2.0/index.mdx b/releases/3.2.0/index.mdx index a3a15df37..c9d2af9da 100644 --- a/releases/3.2.0/index.mdx +++ b/releases/3.2.0/index.mdx @@ -65,7 +65,7 @@ date: 2023-02-13 - [`852d7ce2`](https://github.com/someengineering/resoto/commit/852d7ce2) ci Use GitHub CLI with access token instead of curl (#1391) - [`ccf4d422`](https://github.com/someengineering/resoto/commit/ccf4d422) resoto Bump 3.1.1 (#1390) - +{/* truncate */} ## Docker Images diff --git a/releases/3.2.1/index.mdx b/releases/3.2.1/index.mdx index 68933d32b..d8983a2c6 100644 --- a/releases/3.2.1/index.mdx +++ b/releases/3.2.1/index.mdx @@ -15,7 +15,7 @@ date: 2023-02-14 - [`47baf300`](https://github.com/someengineering/resoto/commit/47baf300) resoto Bump 3.2.1 (#1439) - +{/* truncate */} ## Docker Images diff --git a/releases/3.2.2/index.mdx b/releases/3.2.2/index.mdx index 95f5ea455..852b1f371 100644 --- a/releases/3.2.2/index.mdx +++ b/releases/3.2.2/index.mdx @@ -33,7 +33,7 @@ date: 2023-02-17 - On macOS, opening a dashboard and adding a new world map widget results in a WebGL context crash, requiring to reload the browser tab. (The widget works as expected in Windows environments.) - +{/* truncate */} ## Docker Images diff --git a/releases/3.2.3/index.mdx b/releases/3.2.3/index.mdx index 1f8afacda..ee0c23711 100644 --- a/releases/3.2.3/index.mdx +++ b/releases/3.2.3/index.mdx @@ -24,7 +24,7 @@ date: 2023-02-28 - [`a5286a63`](https://github.com/someengineering/resoto/commit/a5286a63) ci Fix writing of release notes link to website repo (#1458) - [`3b35c663`](https://github.com/someengineering/resoto/commit/3b35c663) resoto Bump 3.2.3 (#1456) - +{/* truncate */} ## Docker Images diff --git a/releases/3.2.4/index.mdx b/releases/3.2.4/index.mdx index ca70c3bf2..c4f33ce42 100644 --- a/releases/3.2.4/index.mdx +++ b/releases/3.2.4/index.mdx @@ -21,7 +21,7 @@ date: 2023-03-01 - [`738f8e66`](https://github.com/someengineering/resoto/commit/738f8e66) resoto Bump 3.2.4 (#1465) - +{/* truncate */} ## Docker Images diff --git a/releases/3.2.5/index.mdx b/releases/3.2.5/index.mdx index 4903670fb..647e1ab79 100644 --- a/releases/3.2.5/index.mdx +++ b/releases/3.2.5/index.mdx @@ -20,7 +20,7 @@ date: 2023-03-03 - [`ee8ccd41`](https://github.com/someengineering/resoto/commit/ee8ccd41) resoto Bump 3.2.5 (#1472) - +{/* truncate */} ## Docker Images diff --git a/releases/3.2.6/index.mdx b/releases/3.2.6/index.mdx index 53353a749..f448d69b6 100644 --- a/releases/3.2.6/index.mdx +++ b/releases/3.2.6/index.mdx @@ -38,7 +38,7 @@ date: 2023-03-10 - [`5a145e26`](https://github.com/someengineering/resoto/commit/5a145e26) resoto Improve devcontainer build times and enable linters by default (#1484) - [`28b4ac2e`](https://github.com/someengineering/resoto/commit/28b4ac2e) resoto Bump 3.2.6 (#1476) - +{/* truncate */} ## Docker Images diff --git a/releases/3.2.7/index.mdx b/releases/3.2.7/index.mdx index a6e0ed1ad..0ab75b96d 100644 --- a/releases/3.2.7/index.mdx +++ b/releases/3.2.7/index.mdx @@ -30,7 +30,7 @@ date: 2023-03-22 - [`0de5cf72`](https://github.com/someengineering/resoto/commit/0de5cf72) resotolib Refactor node json generation (#1514) - [`0bad9931`](https://github.com/someengineering/resoto/commit/0bad9931) resoto Bump 3.2.7 (#1499) - +{/* truncate */} ## Docker Images diff --git a/releases/3.3.0/index.mdx b/releases/3.3.0/index.mdx index 752c6f0e7..08e2c6f2c 100644 --- a/releases/3.3.0/index.mdx +++ b/releases/3.3.0/index.mdx @@ -31,7 +31,7 @@ date: 2023-03-31 - [`30367d87`](https://github.com/someengineering/resoto/commit/30367d87) resotocore Bump UI 3.3.0 (#1530) - [`bad8670b`](https://github.com/someengineering/resoto/commit/bad8670b) resoto Bump 3.3.0 (#1515) - +{/* truncate */} ## Docker Images diff --git a/releases/3.3.1/index.mdx b/releases/3.3.1/index.mdx index b1130afda..f6d721f7c 100644 --- a/releases/3.3.1/index.mdx +++ b/releases/3.3.1/index.mdx @@ -18,7 +18,7 @@ date: 2023-03-31T00:01 - [`4b26500f`](https://github.com/someengineering/resoto/commit/4b26500f) resoto Bump 3.3.1 (#1531) - +{/* truncate */} ## Docker Images diff --git a/releases/3.3.2/index.mdx b/releases/3.3.2/index.mdx index 867e1d483..142e9d85b 100644 --- a/releases/3.3.2/index.mdx +++ b/releases/3.3.2/index.mdx @@ -26,7 +26,7 @@ date: 2023-04-14 - [`6c39e989`](https://github.com/someengineering/resoto/commit/6c39e989) docker Bump base image (#1539) - [`f1569b13`](https://github.com/someengineering/resoto/commit/f1569b13) resoto Bump 3.3.2 (#1534) - +{/* truncate */} ## Docker Images diff --git a/releases/3.3.3/index.mdx b/releases/3.3.3/index.mdx index 1827717aa..db8325b19 100644 --- a/releases/3.3.3/index.mdx +++ b/releases/3.3.3/index.mdx @@ -18,7 +18,7 @@ date: 2023-04-21 - [`b214dd37`](https://github.com/someengineering/resoto/commit/b214dd37) resoto Bump libraries (#1544) - [`48ccf03b`](https://github.com/someengineering/resoto/commit/48ccf03b) resoto Bump 3.3.3 (#1543) - +{/* truncate */} ## Docker Images diff --git a/releases/3.3.4/index.mdx b/releases/3.3.4/index.mdx index 44c2602d3..b83021c7f 100644 --- a/releases/3.3.4/index.mdx +++ b/releases/3.3.4/index.mdx @@ -23,7 +23,7 @@ date: 2023-04-27 - [`9720298d`](https://github.com/someengineering/resoto/commit/9720298d) resoto Bump 3.4.0 (#1557) - [`ecb41509`](https://github.com/someengineering/resoto/commit/ecb41509) resoto Bump 3.3.4 (#1550) - +{/* truncate */} ## Docker Images diff --git a/releases/3.4.0/index.mdx b/releases/3.4.0/index.mdx index 00abc4582..0e8bd3082 100644 --- a/releases/3.4.0/index.mdx +++ b/releases/3.4.0/index.mdx @@ -20,7 +20,7 @@ date: 2023-04-28 - [`9720298d`](https://github.com/someengineering/resoto/commit/9720298d) resoto Bump 3.4.0 (#1557) - +{/* truncate */} ## Docker Images diff --git a/releases/3.4.1/index.mdx b/releases/3.4.1/index.mdx index 445bf5298..cfc5f04b7 100644 --- a/releases/3.4.1/index.mdx +++ b/releases/3.4.1/index.mdx @@ -15,7 +15,7 @@ date: 2023-04-28T00:01 - [`1e8b8b17`](https://github.com/someengineering/resoto/commit/1e8b8b17) resoto Update year in license (#1565) - [`5b02d153`](https://github.com/someengineering/resoto/commit/5b02d153) resoto Bump 3.4.1 (#1564) - +{/* truncate */} ## Docker Images diff --git a/releases/3.4.2/index.mdx b/releases/3.4.2/index.mdx index 77385edfe..3db34452b 100644 --- a/releases/3.4.2/index.mdx +++ b/releases/3.4.2/index.mdx @@ -28,7 +28,7 @@ date: 2023-05-10 - [`ae61b501`](https://github.com/someengineering/resoto/commit/ae61b501) resotocore Typed GraphId (#1567) - [`8eabdea1`](https://github.com/someengineering/resoto/commit/8eabdea1) resoto Bump 3.4.2 (#1566) - +{/* truncate */} ## Docker Images diff --git a/releases/3.5.0/index.mdx b/releases/3.5.0/index.mdx index dedac143d..7a84a6029 100644 --- a/releases/3.5.0/index.mdx +++ b/releases/3.5.0/index.mdx @@ -8,7 +8,7 @@ date: 2023-05-26 ### Features -- [`19dd08c3`](https://github.com/someengineering/resoto/commit/19dd08c3) resotocore Support aliases for app run (#1604) +- [`19dd08c3`](https://github.com/someengineering/resoto/commit/19dd08c3) resotocore Support aliases for app run \ (#1604) - [`2cdf11fc`](https://github.com/someengineering/resoto/commit/2cdf11fc) resoto Bump ui version to 3.5.0 (#1605) - [`bcd558c4`](https://github.com/someengineering/resoto/commit/bcd558c4) resoto Remove redundant core feedback calls and make some cleanup info log level (#1600) - [`8a419dc6`](https://github.com/someengineering/resoto/commit/8a419dc6) resotocore Automated Graph Snapshots (#1589) @@ -47,7 +47,7 @@ date: 2023-05-26 - [`c3a146e8`](https://github.com/someengineering/resoto/commit/c3a146e8) ci Update publish CI workflow to reflect website changes (#1587) - [`234551b5`](https://github.com/someengineering/resoto/commit/234551b5) resoto Bump 3.4.3 (#1579) - +{/* truncate */} ## Docker Images diff --git a/releases/3.5.1/index.mdx b/releases/3.5.1/index.mdx index b7f8f042d..eb124e502 100644 --- a/releases/3.5.1/index.mdx +++ b/releases/3.5.1/index.mdx @@ -35,7 +35,7 @@ date: 2023-06-02 - [`368c1cc2`](https://github.com/someengineering/resoto/commit/368c1cc2) resoto Use pyproject.toml instead of setup.py (#1613) - [`592a8f7b`](https://github.com/someengineering/resoto/commit/592a8f7b) ci Split optimize/format from build step (#1611) - +{/* truncate */} ## Docker Images diff --git a/releases/3.5.2/index.mdx b/releases/3.5.2/index.mdx index 7cdc4d1fc..c7cdc581e 100644 --- a/releases/3.5.2/index.mdx +++ b/releases/3.5.2/index.mdx @@ -41,7 +41,7 @@ date: 2023-06-13 - [`9644a872`](https://github.com/someengineering/resoto/commit/9644a872) resoto Bump Libs (#1633) - [`021e041f`](https://github.com/someengineering/resoto/commit/021e041f) resoto Bump 3.5.2 (#1634) - +{/* truncate */} ## Docker Images diff --git a/releases/3.5.3/index.mdx b/releases/3.5.3/index.mdx index dc3c0c5e6..471d5e042 100644 --- a/releases/3.5.3/index.mdx +++ b/releases/3.5.3/index.mdx @@ -32,7 +32,7 @@ date: 2023-06-21 - [`b4e121a9`](https://github.com/someengineering/resoto/commit/b4e121a9) resotoshell only open PR on changes (#1669) - [`f2052280`](https://github.com/someengineering/resoto/commit/f2052280) resoto Bump 3.5.3 (#1661) - +{/* truncate */} ## Docker Images diff --git a/src/components/AsciinemaPlayer.tsx b/src/components/AsciinemaPlayer.tsx index 52c4db4a0..938f58242 100644 --- a/src/components/AsciinemaPlayer.tsx +++ b/src/components/AsciinemaPlayer.tsx @@ -1,6 +1,6 @@ import 'asciinema-player/dist/bundle/asciinema-player.css'; import clsx from 'clsx'; -import React, { useEffect, useRef } from 'react'; +import { useEffect, useRef } from 'react'; type AsciinemaPlayerProps = { src: string; diff --git a/src/components/ContactForm/index.tsx b/src/components/ContactForm/index.tsx index 213ed544f..d0d9bf9b6 100644 --- a/src/components/ContactForm/index.tsx +++ b/src/components/ContactForm/index.tsx @@ -1,7 +1,7 @@ import baseStyles from '@site/src/pages/styles.module.css'; import clsx from 'clsx'; import { useFormik } from 'formik'; -import React, { useEffect } from 'react'; +import { useEffect } from 'react'; import { Honeypot, NetlifyFormComponent, diff --git a/src/components/HomepageModules/index.tsx b/src/components/HomepageModules/index.tsx index 3ae33aad4..f8b248379 100644 --- a/src/components/HomepageModules/index.tsx +++ b/src/components/HomepageModules/index.tsx @@ -15,7 +15,7 @@ import tagguardImage from '@site/src/img/modules/tagguard.webp'; import baseStyles from '@site/src/pages/styles.module.css'; import clsx from 'clsx'; import GithubSlugger from 'github-slugger'; -import React, { useCallback, useEffect, useRef, useState } from 'react'; +import { useCallback, useEffect, useRef, useState } from 'react'; import { Tab, TabList, TabPanel, Tabs } from 'react-tabs'; import Balancer from 'react-wrap-balancer'; import LeftCaret from './img/caret-left.svg'; diff --git a/src/components/IamPolicy/Document.tsx b/src/components/IamPolicy/Document.tsx index 2a9b53627..e440c287a 100644 --- a/src/components/IamPolicy/Document.tsx +++ b/src/components/IamPolicy/Document.tsx @@ -8,7 +8,6 @@ import { import versions from '@site/versions.json'; import CodeBlock from '@theme/CodeBlock'; import useStoredJson from '@theme/useStoredJson'; -import React from 'react'; import YAML from 'yaml'; export default function IamPolicyDocument({ diff --git a/src/components/IamPolicy/Table.tsx b/src/components/IamPolicy/Table.tsx index 0f9c71e69..8bd589dd2 100644 --- a/src/components/IamPolicy/Table.tsx +++ b/src/components/IamPolicy/Table.tsx @@ -9,7 +9,6 @@ import versions from '@site/versions.json'; import useStoredJson from '@theme/useStoredJson'; import GithubSlugger from 'github-slugger'; import { sortBy, union } from 'lodash'; -import React from 'react'; export default function IamPolicyTable({ provider, diff --git a/src/components/InstallButton.tsx b/src/components/InstallButton.tsx index 1adc1767b..e36365e3b 100644 --- a/src/components/InstallButton.tsx +++ b/src/components/InstallButton.tsx @@ -1,7 +1,6 @@ import Link from '@docusaurus/Link'; import latestRelease from '@site/latestRelease.json'; import versions from '@site/versions.json'; -import React from 'react'; export default function InstallButton({ includeVersion, diff --git a/src/components/LatestRelease.tsx b/src/components/LatestRelease.tsx index 644cd2634..897c3bc0f 100644 --- a/src/components/LatestRelease.tsx +++ b/src/components/LatestRelease.tsx @@ -1,6 +1,5 @@ import latestRelease from '@site/latestRelease.json'; import versions from '@site/versions.json'; -import React from 'react'; export default function LatestRelease(): JSX.Element { return {latestRelease[versions[0]] ?? 'latest'}; diff --git a/src/components/ModulePage/CTA/index.tsx b/src/components/ModulePage/CTA/index.tsx index 46fdc5a61..878b3e8a8 100644 --- a/src/components/ModulePage/CTA/index.tsx +++ b/src/components/ModulePage/CTA/index.tsx @@ -2,13 +2,13 @@ import Link from '@docusaurus/Link'; import InstallButton from '@site/src/components/InstallButton'; import baseStyles from '@site/src/pages/styles.module.css'; import clsx from 'clsx'; -import React from 'react'; +import { type ReactNode } from 'react'; import styles from './styles.module.css'; export default function ModulePageCTA({ children, }: { - children: React.ReactNode; + children: ReactNode; }): JSX.Element { return (
diff --git a/src/components/ModulePage/Header/index.tsx b/src/components/ModulePage/Header/index.tsx index 0f6927df9..9bd2cfc04 100644 --- a/src/components/ModulePage/Header/index.tsx +++ b/src/components/ModulePage/Header/index.tsx @@ -3,7 +3,6 @@ import { PageMetadata } from '@docusaurus/theme-common'; import baseStyles from '@site/src/pages/styles.module.css'; import { getImage } from '@site/src/utils/socialImageUtils'; import clsx from 'clsx'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; import styles from './styles.module.css'; diff --git a/src/components/ModulePage/Section/index.tsx b/src/components/ModulePage/Section/index.tsx index c19422cd1..d1a989aee 100644 --- a/src/components/ModulePage/Section/index.tsx +++ b/src/components/ModulePage/Section/index.tsx @@ -1,13 +1,13 @@ import baseStyles from '@site/src/pages/styles.module.css'; import clsx from 'clsx'; -import React from 'react'; +import { type ReactNode } from 'react'; import styles from './styles.module.css'; export default function ModulePageSection({ children, image, }: { - children: React.ReactNode; + children: ReactNode; image?: string; }): JSX.Element { return ( diff --git a/src/components/PlausibleToggle.tsx b/src/components/PlausibleToggle.tsx index 86b4c79f8..6a92596b4 100644 --- a/src/components/PlausibleToggle.tsx +++ b/src/components/PlausibleToggle.tsx @@ -3,7 +3,7 @@ import Link from '@docusaurus/Link'; import { useLocation } from '@docusaurus/router'; import useIsBrowser from '@docusaurus/useIsBrowser'; import Admonition from '@theme/Admonition'; -import React, { useEffect, useState } from 'react'; +import { useEffect, useState } from 'react'; export default function PlausibleToggle(): JSX.Element { const [isExcluded, setIsExcluded] = useState(false); diff --git a/src/components/SectionedDocCardList/index.tsx b/src/components/SectionedDocCardList/index.tsx index afcba8fca..a841a011e 100644 --- a/src/components/SectionedDocCardList/index.tsx +++ b/src/components/SectionedDocCardList/index.tsx @@ -6,7 +6,6 @@ import type { Props } from '@theme/DocCardList'; import DocCardList from '@theme/DocCardList'; import Heading from '@theme/Heading'; import GithubSlugger from 'github-slugger'; -import React from 'react'; import styles from './styles.module.css'; function SectionedDocCardListForCurrentSidebarCategory({ className }: Props) { diff --git a/src/components/VersionOnly.tsx b/src/components/VersionOnly.tsx index dd9d908da..70ac5d21e 100644 --- a/src/components/VersionOnly.tsx +++ b/src/components/VersionOnly.tsx @@ -1,12 +1,12 @@ import { useDocsVersion } from '@docusaurus/theme-common/internal'; -import React from 'react'; +import { type ReactNode } from 'react'; export default function VersionOnly({ allowed, children, }: { allowed: string | string[]; - children: React.ReactNode; + children: ReactNode; }): JSX.Element { const versionMetadata = useDocsVersion(); diff --git a/src/components/YoutubeEmbed.tsx b/src/components/YoutubeEmbed.tsx index 06c71d3a9..7be46b281 100644 --- a/src/components/YoutubeEmbed.tsx +++ b/src/components/YoutubeEmbed.tsx @@ -1,7 +1,6 @@ import Head from '@docusaurus/Head'; import { useLocation } from '@docusaurus/router'; import clsx from 'clsx'; -import React from 'react'; import LiteYouTubeEmbed from 'react-lite-youtube-embed'; import 'react-lite-youtube-embed/dist/LiteYouTubeEmbed.css'; diff --git a/src/components/ZoomPanPinch/index.tsx b/src/components/ZoomPanPinch/index.tsx index c8900454b..95c77b6d0 100644 --- a/src/components/ZoomPanPinch/index.tsx +++ b/src/components/ZoomPanPinch/index.tsx @@ -1,5 +1,10 @@ import clsx from 'clsx'; -import React, { useState } from 'react'; +import { + cloneElement, + isValidElement, + useState, + type ReactElement, +} from 'react'; import Modal from 'react-modal'; import { TransformComponent, TransformWrapper } from 'react-zoom-pan-pinch'; import styles from './styles.module.css'; @@ -7,20 +12,20 @@ import styles from './styles.module.css'; export default function ZoomPanPinch({ children, }: { - children: React.ReactElement; + children: ReactElement; }): JSX.Element { const [show, setShow] = useState(false); - let img: React.ReactElement = children; + let img: ReactElement = children; - while (React.isValidElement(img.props.children)) { + while (isValidElement(img.props.children)) { img = img.props.children; } return ( <>

- {React.cloneElement(img, { + {cloneElement(img, { onClick: () => setShow(true), onKeyDown: () => setShow(true), className: styles.image, diff --git a/src/context/GithubContext.tsx b/src/context/GithubContext.tsx index 5b137d21b..34b4b397b 100644 --- a/src/context/GithubContext.tsx +++ b/src/context/GithubContext.tsx @@ -1,15 +1,11 @@ import { useGithub } from '@site/src/hooks/useGithub'; -import React, { createContext } from 'react'; +import { createContext, type ReactNode } from 'react'; export const GithubContext = createContext<{ stars: number | null }>({ stars: null, }); -export const GithubProvider = ({ - children, -}: { - children?: React.ReactNode; -}) => { +export const GithubProvider = ({ children }: { children?: ReactNode }) => { const github = useGithub(); return ( diff --git a/src/pages/chronolog/index.tsx b/src/pages/chronolog/index.tsx index b68d4fe89..e7af0b5f9 100644 --- a/src/pages/chronolog/index.tsx +++ b/src/pages/chronolog/index.tsx @@ -6,7 +6,6 @@ import ModulePageSection from '@site/src/components/ModulePage/Section'; import headerImage from '@site/src/img/modules/chronolog.webp'; import baseStyles from '@site/src/pages/styles.module.css'; import Layout from '@theme/Layout'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; export default function ChronologPage(): JSX.Element { diff --git a/src/pages/cloudscope/index.tsx b/src/pages/cloudscope/index.tsx index ba50d5a77..3f9be07c6 100644 --- a/src/pages/cloudscope/index.tsx +++ b/src/pages/cloudscope/index.tsx @@ -6,7 +6,6 @@ import ModulePageSection from '@site/src/components/ModulePage/Section'; import headerImage from '@site/src/img/modules/cloudscope.webp'; import baseStyles from '@site/src/pages/styles.module.css'; import Layout from '@theme/Layout'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; import discoveryScreenshot from './img/discovery.webp'; import searchScreenshot from './img/search.webp'; diff --git a/src/pages/datalink/index.tsx b/src/pages/datalink/index.tsx index edf3da010..f7e3b5636 100644 --- a/src/pages/datalink/index.tsx +++ b/src/pages/datalink/index.tsx @@ -6,7 +6,6 @@ import ModulePageSection from '@site/src/components/ModulePage/Section'; import headerImage from '@site/src/img/modules/datalink.webp'; import baseStyles from '@site/src/pages/styles.module.css'; import Layout from '@theme/Layout'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; export default function DatalinkPage(): JSX.Element { diff --git a/src/pages/defrag/index.tsx b/src/pages/defrag/index.tsx index fbb26781a..600991407 100644 --- a/src/pages/defrag/index.tsx +++ b/src/pages/defrag/index.tsx @@ -6,7 +6,6 @@ import ModulePageSection from '@site/src/components/ModulePage/Section'; import headerImage from '@site/src/img/modules/defrag.webp'; import baseStyles from '@site/src/pages/styles.module.css'; import Layout from '@theme/Layout'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; export default function DefragPage(): JSX.Element { diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 68a6e0e3c..cae013656 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -15,7 +15,7 @@ import heroAnimation from '@site/src/rive/hero.riv'; import versions from '@site/versions.json'; import Layout from '@theme/Layout'; import { clsx } from 'clsx'; -import React, { useCallback, useEffect, useState } from 'react'; +import { useCallback, useEffect, useState } from 'react'; import Balancer from 'react-wrap-balancer'; import styles from './styles.module.css'; diff --git a/src/pages/infrasdk/index.tsx b/src/pages/infrasdk/index.tsx index 1797bf6f9..29b05fb24 100644 --- a/src/pages/infrasdk/index.tsx +++ b/src/pages/infrasdk/index.tsx @@ -6,7 +6,6 @@ import ModulePageSection from '@site/src/components/ModulePage/Section'; import headerImage from '@site/src/img/modules/infrasdk.webp'; import baseStyles from '@site/src/pages/styles.module.css'; import Layout from '@theme/Layout'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; export default function InfrasdkPage(): JSX.Element { diff --git a/src/pages/inventory/index.tsx b/src/pages/inventory/index.tsx index e770f16cb..908a8709c 100644 --- a/src/pages/inventory/index.tsx +++ b/src/pages/inventory/index.tsx @@ -6,7 +6,6 @@ import ModulePageSection from '@site/src/components/ModulePage/Section'; import headerImage from '@site/src/img/modules/inventory.webp'; import baseStyles from '@site/src/pages/styles.module.css'; import Layout from '@theme/Layout'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; import collectScreenshot from './img/collect.webp'; import searchScreenshot from './img/search.webp'; diff --git a/src/pages/metricmate/index.tsx b/src/pages/metricmate/index.tsx index 917bc0cf2..5683c60f9 100644 --- a/src/pages/metricmate/index.tsx +++ b/src/pages/metricmate/index.tsx @@ -6,7 +6,6 @@ import ModulePageSection from '@site/src/components/ModulePage/Section'; import headerImage from '@site/src/img/modules/metricmate.webp'; import baseStyles from '@site/src/pages/styles.module.css'; import Layout from '@theme/Layout'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; import configScreenshot from './img/config.webp'; import dashboardsScreenshot from './img/dashboards.webp'; diff --git a/src/pages/notify/index.tsx b/src/pages/notify/index.tsx index 104ace81a..4f397cd90 100644 --- a/src/pages/notify/index.tsx +++ b/src/pages/notify/index.tsx @@ -6,7 +6,6 @@ import ModulePageSection from '@site/src/components/ModulePage/Section'; import headerImage from '@site/src/img/modules/notify.webp'; import baseStyles from '@site/src/pages/styles.module.css'; import Layout from '@theme/Layout'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; export default function NotifyPage(): JSX.Element { diff --git a/src/pages/pricing/index.tsx b/src/pages/pricing/index.tsx index bc2222ea2..55272d128 100644 --- a/src/pages/pricing/index.tsx +++ b/src/pages/pricing/index.tsx @@ -5,7 +5,6 @@ import baseStyles from '@site/src/pages/styles.module.css'; import { getImage } from '@site/src/utils/socialImageUtils'; import Layout from '@theme/Layout'; import clsx from 'clsx'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; import styles from './styles.module.css'; diff --git a/src/pages/privacy.mdx b/src/pages/privacy.mdx index 8b49238c4..dd2f0c5ca 100644 --- a/src/pages/privacy.mdx +++ b/src/pages/privacy.mdx @@ -26,7 +26,7 @@ For the purposes of this Privacy Policy: - **Service Provider** means any natural or legal person who processes the data on behalf of the Company. It refers to third-party companies or individuals employed by the Company to facilitate the Service, to provide the Service on behalf of the Company, to perform services related to the Service or to assist the Company in analyzing how the Service is used. - **Third-party Social Media Service** refers to any website or any social network website through which a User can log in or create an account to use the Service. - **Usage Data** refers to data collected automatically, either generated by the use of the Service or from the Service infrastructure itself (for example, the duration of a page visit). -- **Website** refers to Resoto, accessible from +- **Website** refers to Resoto, accessible from [https://resoto.com](/) - **You** means the individual accessing or using the Service, or the company, or other legal entity on behalf of which such individual is accessing or using the Service, as applicable. ## Collecting and Using Your Personal Data @@ -73,7 +73,7 @@ We use Cookies and similar tracking technologies to track the activity on Our Se - **Flash Cookies.** - Certain features of our Service may use local stored objects (or Flash Cookies) to collect and store information about Your preferences or Your activity on our Service. Flash Cookies are not managed by the same browser settings as those used for Browser Cookies. For more information on how You can delete Flash Cookies, please read "Where can I change the settings for disabling, or deleting local shared objects?" available at [https://helpx.adobe.com/flash-player/kb/disable-local-shared-objects-flash.html#main*Where_can_I_change_the_settings_for_disabling\_\_or_deleting_local_shared_objects*](https://helpx.adobe.com/flash-player/kb/disable-local-shared-objects-flash.html#main_Where_can_I_change_the_settings_for_disabling__or_deleting_local_shared_objects_) + Certain features of our Service may use local stored objects (or Flash Cookies) to collect and store information about Your preferences or Your activity on our Service. Flash Cookies are not managed by the same browser settings as those used for Browser Cookies. For more information on how You can delete Flash Cookies, please read "[Where can I change the settings for disabling, or deleting local shared objects?](https://helpx.adobe.com/flash-player/kb/disable-local-shared-objects-flash.html#main_Where_can_I_change_the_settings_for_disabling__or_deleting_local_shared_objects_)" - **Web Beacons.** diff --git a/src/pages/resolve/index.tsx b/src/pages/resolve/index.tsx index 84f5db092..dc77a8a08 100644 --- a/src/pages/resolve/index.tsx +++ b/src/pages/resolve/index.tsx @@ -5,7 +5,6 @@ import ModulePageSection from '@site/src/components/ModulePage/Section'; import headerImage from '@site/src/img/modules/resolve.webp'; import baseStyles from '@site/src/pages/styles.module.css'; import Layout from '@theme/Layout'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; import jobsScreenshot from './img/jobs.webp'; diff --git a/src/pages/rewind/index.tsx b/src/pages/rewind/index.tsx index 90c4b5923..62f854d13 100644 --- a/src/pages/rewind/index.tsx +++ b/src/pages/rewind/index.tsx @@ -6,7 +6,6 @@ import ModulePageSection from '@site/src/components/ModulePage/Section'; import headerImage from '@site/src/img/modules/rewind.webp'; import baseStyles from '@site/src/pages/styles.module.css'; import Layout from '@theme/Layout'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; export default function RewindPage(): JSX.Element { diff --git a/src/pages/sentinel/index.tsx b/src/pages/sentinel/index.tsx index aee49f70c..97382b3f0 100644 --- a/src/pages/sentinel/index.tsx +++ b/src/pages/sentinel/index.tsx @@ -6,7 +6,6 @@ import ModulePageSection from '@site/src/components/ModulePage/Section'; import headerImage from '@site/src/img/modules/sentinel.webp'; import baseStyles from '@site/src/pages/styles.module.css'; import Layout from '@theme/Layout'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; import cliScreenshot from './img/cli.webp'; import uiScreenshot from './img/ui.webp'; diff --git a/src/pages/spentwise/index.tsx b/src/pages/spentwise/index.tsx index 1e8ecfa65..c77dcad52 100644 --- a/src/pages/spentwise/index.tsx +++ b/src/pages/spentwise/index.tsx @@ -6,7 +6,6 @@ import ModulePageSection from '@site/src/components/ModulePage/Section'; import headerImage from '@site/src/img/modules/spentwise.webp'; import baseStyles from '@site/src/pages/styles.module.css'; import Layout from '@theme/Layout'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; export default function SpentwisePage(): JSX.Element { diff --git a/src/pages/tagguard/index.tsx b/src/pages/tagguard/index.tsx index 5760c6f30..c6a2132ff 100644 --- a/src/pages/tagguard/index.tsx +++ b/src/pages/tagguard/index.tsx @@ -6,7 +6,6 @@ import ModulePageSection from '@site/src/components/ModulePage/Section'; import headerImage from '@site/src/img/modules/tagguard.webp'; import baseStyles from '@site/src/pages/styles.module.css'; import Layout from '@theme/Layout'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; export default function TagguardPage(): JSX.Element { diff --git a/src/pages/terms.mdx b/src/pages/terms.mdx index 4a56ec4c6..cf93c3d73 100644 --- a/src/pages/terms.mdx +++ b/src/pages/terms.mdx @@ -1,6 +1,6 @@ # Terms and Conditions -These terms and conditions outline the rules and regulations for the use of Some Engineering Inc.'s Website, located at . +These terms and conditions outline the rules and regulations for the use of Some Engineering Inc.'s Website, located at [https://resoto.com](/). By accessing this website we assume you accept these terms and conditions. Do not continue to use Resoto if you do not agree to take all of the terms and conditions stated on this page. diff --git a/src/theme/ApiItem/Layout.tsx b/src/theme/ApiItem/Layout.tsx index e5476d5a2..71253fb71 100644 --- a/src/theme/ApiItem/Layout.tsx +++ b/src/theme/ApiItem/Layout.tsx @@ -1,7 +1,6 @@ import type { WrapperProps } from '@docusaurus/types'; import type LayoutType from '@theme-original/ApiItem/Layout'; import DocItemLayout from '@theme/DocItem/Layout'; -import React from 'react'; type Props = WrapperProps; diff --git a/src/theme/BlogArchivePage/index.tsx b/src/theme/BlogArchivePage/index.tsx index e61d9b797..b0a6699dd 100644 --- a/src/theme/BlogArchivePage/index.tsx +++ b/src/theme/BlogArchivePage/index.tsx @@ -8,7 +8,6 @@ import type { ArchiveBlogPost, Props } from '@theme/BlogArchivePage'; import Layout from '@theme/Layout'; import clsx from 'clsx'; import { orderBy } from 'lodash'; -import React from 'react'; import styles from './styles.module.css'; type YearProp = { diff --git a/src/theme/BlogLayout.tsx b/src/theme/BlogLayout.tsx index 67160c9f2..90f7ba070 100644 --- a/src/theme/BlogLayout.tsx +++ b/src/theme/BlogLayout.tsx @@ -4,7 +4,6 @@ import type { Props } from '@theme/BlogLayout'; import BlogSidebar from '@theme/BlogSidebar'; import Layout from '@theme/Layout'; import clsx from 'clsx'; -import React from 'react'; export default function BlogLayout(props: Props): JSX.Element { const { sidebar, toc, children, ...layoutProps } = props; diff --git a/src/theme/BlogListPage.tsx b/src/theme/BlogListPage.tsx index 28db563b1..ebc6584ba 100644 --- a/src/theme/BlogListPage.tsx +++ b/src/theme/BlogListPage.tsx @@ -11,7 +11,6 @@ import BlogListPaginator from '@theme/BlogListPaginator'; import BlogPostItems from '@theme/BlogPostItems'; import SearchMetadata from '@theme/SearchMetadata'; import clsx from 'clsx'; -import React from 'react'; function BlogListPageMetadata(props: Props): JSX.Element { const { metadata } = props; diff --git a/src/theme/BlogPostItem/Container.tsx b/src/theme/BlogPostItem/Container.tsx index feb143c02..edf08ca94 100644 --- a/src/theme/BlogPostItem/Container.tsx +++ b/src/theme/BlogPostItem/Container.tsx @@ -3,7 +3,6 @@ import { useBaseUrlUtils } from '@docusaurus/useBaseUrl'; import { getImage } from '@site/src/utils/socialImageUtils'; import type { Props } from '@theme/BlogPostItem/Container'; import { union } from 'lodash'; -import React from 'react'; export default function BlogPostItemContainer({ children, diff --git a/src/theme/BlogPostItem/Header/Authors.tsx b/src/theme/BlogPostItem/Header/Authors.tsx index 6d60edc88..b3b65d6e0 100644 --- a/src/theme/BlogPostItem/Header/Authors.tsx +++ b/src/theme/BlogPostItem/Header/Authors.tsx @@ -2,7 +2,6 @@ import { useBlogPost } from '@docusaurus/theme-common/internal'; import type { WrapperProps } from '@docusaurus/types'; import Authors from '@theme-original/BlogPostItem/Header/Authors'; import type AuthorsType from '@theme/BlogPostItem/Header/Authors'; -import React from 'react'; type Props = WrapperProps; diff --git a/src/theme/BlogPostPage/Metadata.tsx b/src/theme/BlogPostPage/Metadata.tsx index b7e48dd23..26f37e3cc 100644 --- a/src/theme/BlogPostPage/Metadata.tsx +++ b/src/theme/BlogPostPage/Metadata.tsx @@ -1,7 +1,6 @@ import { PageMetadata } from '@docusaurus/theme-common'; import { useBlogPost } from '@docusaurus/theme-common/internal'; import { getImage } from '@site/src/utils/socialImageUtils'; -import React from 'react'; export default function BlogPostPageMetadata(): JSX.Element { const { frontMatter, assets, metadata } = useBlogPost(); diff --git a/src/theme/BlogSidebar/Desktop/index.tsx b/src/theme/BlogSidebar/Desktop/index.tsx index 0549712ed..00965c2bc 100644 --- a/src/theme/BlogSidebar/Desktop/index.tsx +++ b/src/theme/BlogSidebar/Desktop/index.tsx @@ -2,7 +2,6 @@ import Link from '@docusaurus/Link'; import { translate } from '@docusaurus/Translate'; import type { Props } from '@theme/BlogSidebar/Desktop'; import clsx from 'clsx'; -import React from 'react'; import styles from './styles.module.css'; export default function BlogSidebarDesktop({ sidebar }: Props): JSX.Element { @@ -38,8 +37,8 @@ export default function BlogSidebarDesktop({ sidebar }: Props): JSX.Element { sidebar.title.toLowerCase().includes('releases') ? 'releases' : sidebar.title.toLowerCase().includes('episodes') - ? 'podcast' - : 'blog' + ? 'podcast' + : 'blog' }/archive`} className="button button--block button--outline button--primary" > diff --git a/src/theme/BlogTagsPostsPage.tsx b/src/theme/BlogTagsPostsPage.tsx index be3b2ead3..645ed2fc5 100644 --- a/src/theme/BlogTagsPostsPage.tsx +++ b/src/theme/BlogTagsPostsPage.tsx @@ -11,7 +11,6 @@ import BlogPostItems from '@theme/BlogPostItems'; import type { Props } from '@theme/BlogTagsPostsPage'; import SearchMetadata from '@theme/SearchMetadata'; import clsx from 'clsx'; -import React from 'react'; function useBlogTagsPostsPageTitle( tag: Props['tag'], diff --git a/src/theme/CodeBlock/CopyButton/index.tsx b/src/theme/CodeBlock/CopyButton/index.tsx index c1021240a..3ef6117b6 100644 --- a/src/theme/CodeBlock/CopyButton/index.tsx +++ b/src/theme/CodeBlock/CopyButton/index.tsx @@ -4,7 +4,7 @@ import IconCopy from '@theme/Icon/Copy'; import IconSuccess from '@theme/Icon/Success'; import { clsx } from 'clsx'; import copy from 'copy-text-to-clipboard'; -import React, { useCallback, useEffect, useRef, useState } from 'react'; +import { useCallback, useEffect, useRef, useState } from 'react'; import styles from './styles.module.css'; export default function CopyButton({ code, className }: Props): JSX.Element { diff --git a/src/theme/CodeBlock/index.tsx b/src/theme/CodeBlock/index.tsx index 3c2be6a54..c16830733 100644 --- a/src/theme/CodeBlock/index.tsx +++ b/src/theme/CodeBlock/index.tsx @@ -4,7 +4,7 @@ import latestRelease from '@site/latestRelease.json'; import versions from '@site/versions.json'; import OriginalCodeBlock from '@theme-original/CodeBlock'; import type CodeBlockType from '@theme/CodeBlock'; -import React, { ComponentProps } from 'react'; +import { ComponentProps } from 'react'; type Props = ComponentProps; diff --git a/src/theme/DocBreadcrumbs.tsx b/src/theme/DocBreadcrumbs.tsx index 16d7cd4d6..b2c041bde 100644 --- a/src/theme/DocBreadcrumbs.tsx +++ b/src/theme/DocBreadcrumbs.tsx @@ -3,7 +3,7 @@ import { DEFAULT_PLUGIN_ID } from '@docusaurus/constants'; import { useActivePlugin } from '@docusaurus/plugin-content-docs/client'; import { useSidebarBreadcrumbs } from '@docusaurus/theme-common/internal'; import useBaseUrl from '@docusaurus/useBaseUrl'; -import React, { type ReactNode } from 'react'; +import { type ReactNode } from 'react'; function BreadcrumbsItemLink({ children, diff --git a/src/theme/DocCard/index.tsx b/src/theme/DocCard/index.tsx index eb6e3e5f8..4ce7b2607 100644 --- a/src/theme/DocCard/index.tsx +++ b/src/theme/DocCard/index.tsx @@ -6,12 +6,12 @@ import type { PropSidebarItemLink, } from '@docusaurus/plugin-content-docs'; import { - findFirstCategoryLink, + findFirstSidebarItemLink, useDocById, } from '@docusaurus/theme-common/internal'; import type { Props } from '@theme/DocCard'; import clsx from 'clsx'; -import React, { type ReactNode } from 'react'; +import { type ReactNode } from 'react'; import styles from './styles.module.css'; function CardContainer({ @@ -60,7 +60,7 @@ function CardLayout({ className={clsx('text--truncate', styles.cardDescription)} title={description} > - {description} + {description.replace(//g, '')}

)}
@@ -73,7 +73,7 @@ function CardCategory({ }: { item: PropSidebarItemCategory; }): JSX.Element | null { - const href = findFirstCategoryLink(item); + const href = findFirstSidebarItemLink(item); // Unexpected: categories that don't have a link have been filtered upfront if (!href) { diff --git a/src/theme/DocItem/Content.tsx b/src/theme/DocItem/Content.tsx index 7f071f46b..0354e9dc3 100644 --- a/src/theme/DocItem/Content.tsx +++ b/src/theme/DocItem/Content.tsx @@ -4,7 +4,6 @@ import type { Props } from '@theme/DocItem/Content'; import Heading from '@theme/Heading'; import MDXContent from '@theme/MDXContent'; import clsx from 'clsx'; -import React from 'react'; /** Title can be declared inside md content or declared through diff --git a/src/theme/DocItem/Layout/index.tsx b/src/theme/DocItem/Layout/index.tsx index 0992732f2..faf2dfcef 100644 --- a/src/theme/DocItem/Layout/index.tsx +++ b/src/theme/DocItem/Layout/index.tsx @@ -11,8 +11,8 @@ import DocItemTOCDesktop from '@theme/DocItem/TOC/Desktop'; import DocItemTOCMobile from '@theme/DocItem/TOC/Mobile'; import DocVersionBadge from '@theme/DocVersionBadge'; import DocVersionBanner from '@theme/DocVersionBanner'; +import Unlisted from '@theme/Unlisted'; import clsx from 'clsx'; -import React from 'react'; import styles from './styles.module.css'; /** @@ -45,13 +45,14 @@ export default function DocItemLayout({ children }: Props): JSX.Element { const { frontMatter, assets, - metadata: { title, description }, + metadata: { title, description, unlisted }, } = useDoc(); const image = assets.image ?? frontMatter.image ?? getImage({ title }); return (
+ {unlisted && }
diff --git a/src/theme/DocItem/Metadata.tsx b/src/theme/DocItem/Metadata.tsx index 1b26da4c3..e6f312746 100644 --- a/src/theme/DocItem/Metadata.tsx +++ b/src/theme/DocItem/Metadata.tsx @@ -1,26 +1,26 @@ import { PageMetadata } from '@docusaurus/theme-common'; import { useDoc } from '@docusaurus/theme-common/internal'; import { getImage } from '@site/src/utils/socialImageUtils'; -import React, { useEffect } from 'react'; +import { useEffect } from 'react'; export default function DocItemMetadata(): JSX.Element { const { - metadata: { title, description, unversionedId }, + metadata: { id, title, description }, frontMatter, assets, } = useDoc(); useEffect(() => { if ( - unversionedId.startsWith('getting-started/install-resoto') && - unversionedId !== 'getting-started/install-resoto/index' + id.startsWith('getting-started/install-resoto') && + id !== 'getting-started/install-resoto/index' ) { window.localStorage.setItem( 'docusaurus.tab.install-method', - unversionedId.split('/')[2], + id.split('/')[2], ); } - }, [unversionedId]); + }, [id]); return ( - -
- {sidebar && ( - - )} - - {children} - -
-
- -
- - ); -} diff --git a/src/theme/DocRoot/Layout/index.tsx b/src/theme/DocRoot/Layout/index.tsx new file mode 100644 index 000000000..651bd3881 --- /dev/null +++ b/src/theme/DocRoot/Layout/index.tsx @@ -0,0 +1,36 @@ +import { useDocsSidebar } from '@docusaurus/theme-common/internal'; +import ContactForm from '@site/src/components/ContactForm'; +import baseStyles from '@site/src/pages/styles.module.css'; +import BackToTopButton from '@theme/BackToTopButton'; +import type { Props } from '@theme/DocRoot/Layout'; +import DocRootLayoutMain from '@theme/DocRoot/Layout/Main'; +import DocRootLayoutSidebar from '@theme/DocRoot/Layout/Sidebar'; +import { useState } from 'react'; +import styles from './styles.module.css'; + +export default function DocRootLayout({ children }: Props): JSX.Element { + const sidebar = useDocsSidebar(); + const [hiddenSidebarContainer, setHiddenSidebarContainer] = useState(false); + return ( + <> +
+ +
+ {sidebar && ( + + )} + + {children} + +
+
+
+ +
+ + ); +} diff --git a/src/theme/DocPage/Layout/styles.module.css b/src/theme/DocRoot/Layout/styles.module.css similarity index 90% rename from src/theme/DocPage/Layout/styles.module.css rename to src/theme/DocRoot/Layout/styles.module.css index e8f9b2457..97ec43f4b 100644 --- a/src/theme/DocPage/Layout/styles.module.css +++ b/src/theme/DocRoot/Layout/styles.module.css @@ -1,4 +1,4 @@ -.docPage { +.docRoot { display: flex; flex: 1 0; width: 100%; diff --git a/src/theme/DocSidebarItem/index.tsx b/src/theme/DocSidebarItem/index.tsx index 5d7eb71a0..db192ae58 100644 --- a/src/theme/DocSidebarItem/index.tsx +++ b/src/theme/DocSidebarItem/index.tsx @@ -1,7 +1,6 @@ import type { WrapperProps } from '@docusaurus/types'; import DocSidebarItem from '@theme-original/DocSidebarItem'; import type DocSidebarItemType from '@theme/DocSidebarItem'; -import React from 'react'; import styles from './styles.module.css'; type Props = WrapperProps; diff --git a/src/theme/DocSidebarItems/index.tsx b/src/theme/DocSidebarItems/index.tsx index d6933f6a9..e344b00e1 100644 --- a/src/theme/DocSidebarItems/index.tsx +++ b/src/theme/DocSidebarItems/index.tsx @@ -9,7 +9,6 @@ import DocSidebarItems from '@theme-original/DocSidebarItems'; import NavbarItem from '@theme-original/NavbarItem'; import type DocSidebarItemsType from '@theme/DocSidebarItems'; import clsx from 'clsx'; -import React from 'react'; import styles from './styles.module.css'; type Props = WrapperProps; diff --git a/src/theme/DocVersionBadge.tsx b/src/theme/DocVersionBadge.tsx index e74883fda..e98a6dcc1 100644 --- a/src/theme/DocVersionBadge.tsx +++ b/src/theme/DocVersionBadge.tsx @@ -6,7 +6,6 @@ import type { WrapperProps } from '@docusaurus/types'; import latestRelease from '@site/latestRelease.json'; import DocVersionBadge from '@theme-original/DocVersionBadge'; import type DocVersionBadgeType from '@theme/DocVersionBadge'; -import React from 'react'; type Props = WrapperProps; diff --git a/src/theme/DocVersionBanner.tsx b/src/theme/DocVersionBanner.tsx index 12cd8f8dc..a20756d0e 100644 --- a/src/theme/DocVersionBanner.tsx +++ b/src/theme/DocVersionBanner.tsx @@ -15,7 +15,7 @@ import { } from '@docusaurus/theme-common/internal'; import type { Props } from '@theme/DocVersionBanner'; import clsx from 'clsx'; -import React, { type ComponentType } from 'react'; +import { type ComponentType } from 'react'; type BannerLabelComponentProps = { versionMetadata: PropVersionMetadata; diff --git a/src/theme/Footer/Layout.tsx b/src/theme/Footer/Layout.tsx index 075db814d..723cf4764 100644 --- a/src/theme/Footer/Layout.tsx +++ b/src/theme/Footer/Layout.tsx @@ -1,6 +1,5 @@ import type { Props } from '@theme/Footer/Layout'; import clsx from 'clsx'; -import React from 'react'; export default function FooterLayout({ style, diff --git a/src/theme/Footer/index.tsx b/src/theme/Footer/index.tsx index 2edb2fc72..3fc76cacc 100644 --- a/src/theme/Footer/index.tsx +++ b/src/theme/Footer/index.tsx @@ -4,7 +4,7 @@ import type { WrapperProps } from '@docusaurus/types'; import useIsBrowser from '@docusaurus/useIsBrowser'; import Footer from '@theme-original/Footer'; import type FooterType from '@theme/Footer'; -import React, { useEffect, useState } from 'react'; +import { useEffect, useState } from 'react'; import styles from './styles.module.css'; type Props = WrapperProps; diff --git a/src/theme/LastUpdated.tsx b/src/theme/LastUpdated.tsx index e39f55585..cab706a96 100644 --- a/src/theme/LastUpdated.tsx +++ b/src/theme/LastUpdated.tsx @@ -1,7 +1,6 @@ import Translate from '@docusaurus/Translate'; import { ThemeClassNames } from '@docusaurus/theme-common'; import type { Props } from '@theme/LastUpdated'; -import React from 'react'; function LastUpdatedAtDate({ lastUpdatedAt, diff --git a/src/theme/MDXComponents/A.tsx b/src/theme/MDXComponents/A.tsx index ee80ff872..06022c37d 100644 --- a/src/theme/MDXComponents/A.tsx +++ b/src/theme/MDXComponents/A.tsx @@ -1,7 +1,7 @@ import Link from '@docusaurus/Link'; import IconExternalLink from '@theme/Icon/ExternalLink'; import type { Props } from '@theme/MDXComponents/A'; -import React from 'react'; +import { isValidElement } from 'react'; export default function MDXA(props: Props): JSX.Element { try { @@ -17,7 +17,7 @@ export default function MDXA(props: Props): JSX.Element { } > {props.children} - {React.isValidElement(props.children) ? null : } + {isValidElement(props.children) ? null : } ); } catch (e) { diff --git a/src/theme/MDXPage/index.tsx b/src/theme/MDXPage/index.tsx index 8bf23e7db..2a07fd996 100644 --- a/src/theme/MDXPage/index.tsx +++ b/src/theme/MDXPage/index.tsx @@ -11,16 +11,19 @@ import MDXContent from '@theme/MDXContent'; import type { Props } from '@theme/MDXPage'; import TOC from '@theme/TOC'; import clsx from 'clsx'; -import React from 'react'; import styles from './styles.module.css'; export default function MDXPage(props: Props): JSX.Element { const { content: MDXPageContent } = props; const { metadata: { title, description, frontMatter }, + assets, } = MDXPageContent; - const { wrapperClassName, hide_table_of_contents: hideTableOfContents } = - frontMatter; + const { + keywords, + wrapperClassName, + hide_table_of_contents: hideTableOfContents, + } = frontMatter; return (
diff --git a/src/theme/NavbarItem/NavbarNavLink.tsx b/src/theme/NavbarItem/NavbarNavLink.tsx index 52708b3bb..7ef211fc9 100644 --- a/src/theme/NavbarItem/NavbarNavLink.tsx +++ b/src/theme/NavbarItem/NavbarNavLink.tsx @@ -6,7 +6,6 @@ import { useGithubStars } from '@site/src/hooks/useGithubStars'; import IconExternalLink from '@theme/Icon/ExternalLink'; import type { Props } from '@theme/NavbarItem/NavbarNavLink'; import Emoji from 'a11y-react-emoji'; -import React from 'react'; export default function NavbarNavLink({ activeBasePath, diff --git a/src/theme/NotFound/index.tsx b/src/theme/NotFound/index.tsx index 1f86105f6..8c30ca398 100644 --- a/src/theme/NotFound/index.tsx +++ b/src/theme/NotFound/index.tsx @@ -4,7 +4,6 @@ import ContactForm from '@site/src/components/ContactForm'; import baseStyles from '@site/src/pages/styles.module.css'; import Layout from '@theme/Layout'; import clsx from 'clsx'; -import React from 'react'; import Balancer from 'react-wrap-balancer'; import styles from './styles.module.css'; diff --git a/src/theme/PwaReloadPopup/index.tsx b/src/theme/PwaReloadPopup/index.tsx index d9d531488..4fe937598 100644 --- a/src/theme/PwaReloadPopup/index.tsx +++ b/src/theme/PwaReloadPopup/index.tsx @@ -1,6 +1,6 @@ import type { Props } from '@theme/PwaReloadPopup'; import clsx from 'clsx'; -import React, { useState } from 'react'; +import { useState } from 'react'; import styles from './styles.module.css'; export default function PwaReloadPopup({ diff --git a/src/theme/Root.tsx b/src/theme/Root.tsx index af491812b..e6751c5ef 100644 --- a/src/theme/Root.tsx +++ b/src/theme/Root.tsx @@ -1,8 +1,8 @@ import { GithubProvider } from '@site/src/context/GithubContext'; -import React from 'react'; +import { type ReactNode } from 'react'; import { Provider as BalancerProvider } from 'react-wrap-balancer'; -export default function Root({ children }: { children: React.ReactNode }) { +export default function Root({ children }: { children: ReactNode }) { return ( {children} diff --git a/src/theme/SearchPage/index.tsx b/src/theme/SearchPage/index.tsx index aa78069c7..1cb06e85a 100644 --- a/src/theme/SearchPage/index.tsx +++ b/src/theme/SearchPage/index.tsx @@ -23,7 +23,7 @@ import Layout from '@theme/Layout'; import algoliaSearchHelper from 'algoliasearch-helper'; import algoliaSearch from 'algoliasearch/lite'; import clsx from 'clsx'; -import React, { useEffect, useReducer, useRef, useState } from 'react'; +import { useEffect, useReducer, useRef, useState } from 'react'; import styles from './styles.module.css'; // Very simple pluralization: probably good enough for now diff --git a/tsconfig.json b/tsconfig.json index ad4f3613c..cceec1f4f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "@tsconfig/docusaurus/tsconfig.json", + "extends": "@docusaurus/tsconfig", "compilerOptions": { "baseUrl": ".", "resolveJsonModule": true diff --git a/versioned_docs/version-3.X/concepts/asset-inventory-graph/index.mdx b/versioned_docs/version-3.X/concepts/asset-inventory-graph/index.mdx index 66a74f9cb..d14d1b962 100644 --- a/versioned_docs/version-3.X/concepts/asset-inventory-graph/index.mdx +++ b/versioned_docs/version-3.X/concepts/asset-inventory-graph/index.mdx @@ -10,7 +10,7 @@ Resoto also knows how resources relate to each other. For example, a compute ins The superpower of Resoto is the ability to provide a complete picture of your cloud assets and how they relate to each other. -## Graph Nodes {#nodes} +## Graph Nodes \{#nodes} Each collected resource is a node in the asset inventory graph. @@ -59,7 +59,7 @@ The [`kinds` command](../../reference/cli/kinds.mdx) allows you to list all reso ::: -## Graph Edges {#edges} +## Graph Edges \{#edges} Resoto also captures the relationships between resources by encoding the relationships as edges in the graph. This makes it possible to traverse the graph and walk from one resource to another based on a specific relationship. The relationship itself does not have any additional properties. @@ -73,7 +73,7 @@ The list of possible edges are also defined explicitly in our [data model refere This documentation describes how a resource might be connected. This does not mean that every relationship has to exist. For example, a compute instance might not have a volume attached to it. In this case, there is no edge between the compute instance and the volume. -## Graph Traversal {#traversal} +## Graph Traversal \{#traversal} In order to traverse the graph in a meaningful way, it is important to understand the structure. The following diagram serves as an example graph you will find in Resoto to illustrates how we can "walk" edges in a graph: diff --git a/versioned_docs/version-3.X/concepts/automation/index.mdx b/versioned_docs/version-3.X/concepts/automation/index.mdx index 4e19a8578..f54187a18 100644 --- a/versioned_docs/version-3.X/concepts/automation/index.mdx +++ b/versioned_docs/version-3.X/concepts/automation/index.mdx @@ -33,9 +33,7 @@ There are three types of job triggers: [schedule triggers](#schedule-trigger), [ **A schedule trigger executes a job at a specific time interval described by a [cron expression](https://crontab.guru).**
- Examples -
- Every 5 minutes @@ -56,7 +54,6 @@ There are three types of job triggers: [schedule triggers](#schedule-trigger), [ ```
-
:::tip @@ -74,9 +71,7 @@ Resoto updates the state of resources in the four steps of the [`collect_and_cle Each of these steps emits [events](../../reference/events/index.mdx) that can be used to trigger jobs.
- Examples -
- When resource collection is complete and the database reflects the latest state of your resources @@ -89,7 +84,6 @@ Each of these steps emits [events](../../reference/events/index.mdx) that can be ```
-
:::info @@ -111,9 +105,7 @@ See [How to Create an Event-Based Job](../../how-to-guides/automation/create-an- Combined triggers are useful if you want to perform an action on a specific schedule, but only after a specific event is fired.
- Example -
Let's say you want to clean up development accounts at the end of each week. @@ -127,7 +119,6 @@ To do so, you could define a [schedule trigger](#schedule-trigger) in addition t The above combined trigger executes the job based on the latest state of resources after 10pm every Friday evening.
-
:::tip @@ -147,9 +138,7 @@ To perform more complex automations, it is possible to define multiple sets of f **A job filter is an optional [search](../../reference/search/index.mdx) that returns the resources of interest.** Only resources matching the filter will be processed by the job.
- Example -
- Instances without an owner tag in the dev or playground accounts @@ -158,7 +147,6 @@ To perform more complex automations, it is possible to define multiple sets of f ```
-
The result of a job filter is a list of resources that is piped as input to [job actions](#job-actions). @@ -168,9 +156,7 @@ The result of a job filter is a list of resources that is piped as input to [job **A job action is an [action command](../../reference/cli/index.mdx) performed on resources matching the optional [filter](#job-filters).**
- Examples -
- Update resource tags using the [`tag update` command](../../reference/cli/tag/update.mdx) @@ -246,7 +232,6 @@ The result of a job filter is a list of resources that is piped as input to [job ```
-
### Job Management @@ -260,9 +245,7 @@ See [Related How-To Guides](#related-how-to-guides) below for step-by-step instr :::
- Examples -
- Add a job that sends a Discord notification when compute instances without an `owner` tag are detected @@ -303,7 +286,6 @@ See [Related How-To Guides](#related-how-to-guides) below for step-by-step instr ```
-
## Related How-To Guides diff --git a/versioned_docs/version-3.X/development/components.mdx b/versioned_docs/version-3.X/development/components.mdx index 4833cec52..4047cc432 100644 --- a/versioned_docs/version-3.X/development/components.mdx +++ b/versioned_docs/version-3.X/development/components.mdx @@ -93,7 +93,7 @@ In order for `resotocore` to perform the required database setup and for tests t ::: -:::caution +:::warning This setup is for development only and should not be deployed in production environments. @@ -104,7 +104,6 @@ This setup is for development only and should not be deployed in production envi You can now start each of the Resoto components: - ```bash @@ -113,7 +112,6 @@ python -m resotocore ``` - ```bash @@ -122,7 +120,6 @@ python -m resotoshell ``` - ```bash @@ -131,7 +128,6 @@ python -m resotoworker ``` - ```bash @@ -140,7 +136,6 @@ python -m resotometrics ``` - ## 5. Test Your Changes diff --git a/versioned_docs/version-3.X/getting-started/install-resoto/kubernetes.mdx b/versioned_docs/version-3.X/getting-started/install-resoto/kubernetes.mdx index abbcf5fdb..e38fd2ca1 100644 --- a/versioned_docs/version-3.X/getting-started/install-resoto/kubernetes.mdx +++ b/versioned_docs/version-3.X/getting-started/install-resoto/kubernetes.mdx @@ -27,7 +27,6 @@ pagination_next: getting-started/launch-resoto/index ## Directions - 1. Add the [Some Engineering Helm chart repository](https://helm.some.engineering): @@ -57,7 +56,6 @@ pagination_next: getting-started/launch-resoto/index ``` - It is possible to customize your Resoto installation using a Helm values file. @@ -108,7 +106,6 @@ It is possible to customize your Resoto installation using a Helm values file. ``` - And just like that, you have Resoto running in a Kubernetes cluster! diff --git a/versioned_docs/version-3.X/getting-started/launch-resoto/index.mdx b/versioned_docs/version-3.X/getting-started/launch-resoto/index.mdx index dfbe48bcd..3583fbaf7 100644 --- a/versioned_docs/version-3.X/getting-started/launch-resoto/index.mdx +++ b/versioned_docs/version-3.X/getting-started/launch-resoto/index.mdx @@ -17,7 +17,6 @@ Resoto UI is a user-friendly web interface that simplifies managing and explorin The steps to launch Resoto UI are dependent on how you installed Resoto. - 1. Log in to the [AWS CloudFormation console](https://console.aws.amazon.com/cloudformation). @@ -73,7 +72,6 @@ The steps to launch Resoto UI are dependent on how you installed Resoto. ::: - 1. Resoto is available via an externally accessible service address. Get the address by executing the following in your terminal: @@ -120,10 +118,9 @@ The steps to launch Resoto UI are dependent on how you installed Resoto. ![Screenshot of Resoto UI setup wizard](../explore-resoto/ui/img/setup-wizard.png) - -1. Resoto UI listens on port `8900` by default. You can access it by opening in your browser. +1. Resoto UI listens on port `8900` by default. You can access it by opening [https://localhost:8900](https://localhost:8900) in your browser. :::note @@ -160,7 +157,6 @@ The steps to launch Resoto UI are dependent on how you installed Resoto. ![Screenshot of Resoto UI setup wizard](../explore-resoto/ui/img/setup-wizard.png) - 1. Resoto provides a service that exposes Resoto UI on port `8900`. We recommend configuring an [Ingress](https://kubernetes.io/docs/concepts/services-networking/ingress) with a valid certificate for UI access, but you can port-forward the service as a temporary solution: @@ -198,10 +194,9 @@ The steps to launch Resoto UI are dependent on how you installed Resoto. ![Screenshot of Resoto UI setup wizard](../explore-resoto/ui/img/setup-wizard.png) - -1. Resoto UI listens on port `8900` by default. You can access it by opening in your browser. +1. Resoto UI listens on port `8900` by default. You can access it by opening [https://localhost:8900](https://localhost:8900) in your browser. :::note @@ -238,7 +233,6 @@ The steps to launch Resoto UI are dependent on how you installed Resoto. ![Screenshot of Resoto UI setup wizard](../explore-resoto/ui/img/setup-wizard.png) - ## Resoto Shell @@ -248,7 +242,6 @@ Resoto Shell is Resoto's command-line interface. The steps to launch Resoto Shell depend on how you installed Resoto. - 1. Log in to the [AWS CloudFormation console](https://console.aws.amazon.com/cloudformation). @@ -282,7 +275,6 @@ The steps to launch Resoto Shell depend on how you installed Resoto. ``` - Execute the following to access the [Resoto Shell](../../reference/components/shell.mdx) interface: @@ -292,7 +284,6 @@ kubectl --namespace resoto exec -it service/resoto-resotocore -- resh ``` - Execute the following to access the [Resoto Shell](../../reference/components/shell.mdx) interface: @@ -302,7 +293,6 @@ $ docker exec -it resotoshell resh ``` - 1. Make sure that the deployment is available: @@ -318,7 +308,6 @@ $ docker exec -it resotoshell resh ``` - Execute the following to access the [Resoto Shell](../../reference/components/shell.mdx) interface: @@ -328,7 +317,6 @@ $ resh ``` - ![Screenshot of Resoto Shell](../explore-resoto/shell/img/shell.png) diff --git a/versioned_docs/version-3.X/how-to-guides/configuration/roll-out-resoto-aws-permissions-with-cloudformation/index.mdx b/versioned_docs/version-3.X/how-to-guides/configuration/roll-out-resoto-aws-permissions-with-cloudformation/index.mdx index ddb847ec9..8856b5a84 100644 --- a/versioned_docs/version-3.X/how-to-guides/configuration/roll-out-resoto-aws-permissions-with-cloudformation/index.mdx +++ b/versioned_docs/version-3.X/how-to-guides/configuration/roll-out-resoto-aws-permissions-with-cloudformation/index.mdx @@ -18,7 +18,7 @@ The source code can be found in the [`someengineering/resoto-cf` GitHub reposito :::note -If you prefer to deploy the StackSet yourself, the S3 URL of the template to create the `ResotoAccess` role is . +If you prefer to deploy the StackSet yourself, the S3 URL of the template to create the `ResotoAccess` role is [https://resotopublic.s3.amazonaws.com/cf/resoto-role.template](https://resotopublic.s3.amazonaws.com/cf/resoto-role.template). ::: @@ -33,7 +33,6 @@ You also need an [AWS Organization](https://aws.amazon.com/organizations) that m ### Deploying the StackSet - 1. Open the [AWS Organizations Console](https://console.aws.amazon.com/organizations/v2/home/accounts) and find the Organization Unit (OU) where you want to deploy the `ResotoAccess` role. The role will be deployed to all accounts in this OU and all child OUs. @@ -82,7 +81,6 @@ You also need an [AWS Organization](https://aws.amazon.com/organizations) that m ![ResotoAccess Role Permissions](./img/resotoaccess_role_permissions.png)![ResotoAccess Role Trust](./img/resotoaccess_role_trust.png) - 1. Open the [AWS Organizations Console](https://console.aws.amazon.com/organizations/v2/home/accounts) and find the Organization Unit (OU) where you want to deploy the `ResotoAccess` role. The role will be deployed to all accounts in this OU and all child OUs. @@ -110,13 +108,11 @@ You also need an [AWS Organization](https://aws.amazon.com/organizations) that m ::: - ### Configuring Resoto to Assume the `ResotoAccess` Role and Scrape the Organization - 1. Open the `resoto.worker` configuration and locate the **Aws** section. @@ -130,7 +126,6 @@ You also need an [AWS Organization](https://aws.amazon.com/organizations) that m 3. Save the configuration. - 1. In Resoto Shell, execute `config edit resoto.worker` and locate the `aws` section. @@ -148,7 +143,6 @@ You also need an [AWS Organization](https://aws.amazon.com/organizations) that m The `assume_current` and `do_not_scrape_current` options depend on your organization setup. They control whether Resoto should assume the role inside the account it is running in, or just collect that account with the permissions it already has. (For instance, if you deploy Resoto using Kubernetes and it is using a service account that is already using the `ResotoAccess` role, there would be no need to assume the same role again.) - ## Further Reading diff --git a/versioned_docs/version-3.X/how-to-guides/data-sources/collect-aws-resource-data.mdx b/versioned_docs/version-3.X/how-to-guides/data-sources/collect-aws-resource-data.mdx index 529ce91ee..642ee2377 100644 --- a/versioned_docs/version-3.X/how-to-guides/data-sources/collect-aws-resource-data.mdx +++ b/versioned_docs/version-3.X/how-to-guides/data-sources/collect-aws-resource-data.mdx @@ -38,11 +38,8 @@ This guide assumes that you have already [installed](../../getting-started/insta **Resoto supports the authentication mechanisms described in the [Boto3 SDK documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html).** You can authenticate with [AWS](../../reference/unified-data-model/aws.mdx) via an instance profile, an access key, or profiles. These credentials can be defined in the Resoto Worker configuration or as environment variables. - - - 1. Configure an [instance profile](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2_instance-profiles.html). @@ -101,7 +98,6 @@ This guide assumes that you have already [installed](../../getting-started/insta ``` - :::note @@ -133,7 +129,6 @@ Access keys in the configuration are visible to anyone with access to your Resot ``` - 1. Create a file `~/.aws/credentials` with the desired profiles: @@ -213,11 +208,8 @@ Access keys in the configuration are visible to anyone with access to your Resot ::: - - - :::note @@ -345,7 +337,6 @@ You can specify a profile using `AWS_PROFILE` and, for local testing, SSO authen ``` - ### 3. Authorize Resoto Access to AWS @@ -354,7 +345,7 @@ See [How to Roll Out Resoto AWS Permissions with CloudFormation](../configuratio :::info -If you prefer to deploy the role yourself, the S3 URL of the template to create the `ResotoAccess` role is . +If you prefer to deploy the role yourself, the S3 URL of the template to create the `ResotoAccess` role is [https://resotopublic.s3.amazonaws.com/cf/resoto-role.template](https://resotopublic.s3.amazonaws.com/cf/resoto-role.template). ::: diff --git a/versioned_docs/version-3.X/how-to-guides/data-sources/collect-digitalocean-resource-data.mdx b/versioned_docs/version-3.X/how-to-guides/data-sources/collect-digitalocean-resource-data.mdx index 3cd0fe356..97f9158b4 100644 --- a/versioned_docs/version-3.X/how-to-guides/data-sources/collect-digitalocean-resource-data.mdx +++ b/versioned_docs/version-3.X/how-to-guides/data-sources/collect-digitalocean-resource-data.mdx @@ -38,121 +38,114 @@ This guide assumes that you have already [installed](../../getting-started/insta **DigitalOcean uses [access tokens](https://cloud.digitalocean.com/account/api/tokens) to authenticate API requests.** You can provide access tokens to Resoto via the Resoto Worker configuration or environment variables. + - + 1. Open the [Resoto Worker configuration](../../reference/configuration/index.mdx) via the [`config` command](../../reference/cli/config) in [Resoto Shell](../../reference/components/shell): -1. Open the [Resoto Worker configuration](../../reference/configuration/index.mdx) via the [`config` command](../../reference/cli/config) in [Resoto Shell](../../reference/components/shell): - - ```bash - > config edit resoto.worker - ``` - -2. Modify the `digitalocean` section of the configuration as follows, adding your API tokens and/or access keys: - - ```yaml - digitalocean: - # highlight-start - # DigitalOcean API tokens for the teams to be collected - api_tokens: - - 'dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' - # DigitalOcean Spaces access keys for the teams to be collected, separated by colons - spaces_access_keys: [] - ... - # highlight-end - ``` - - - - - -**Instead of specifying API tokens or secret access keys in the [Resoto Worker configuration](../../reference/configuration/index.mdx) directly, it is possible to define them using the [`--override` flag or `RESOTOWORKER_OVERRIDE` environment variable](../../reference/configuration/index.mdx#overriding-individual-properties).** - -1. Set the `RESOTOWORKER_OVERRIDE` environment variable: - - - - + ```bash + > config edit resoto.worker + ``` - - Add a environment variable definition to the `resotoworker` service in `docker-compose.yaml`: + 2. Modify the `digitalocean` section of the configuration as follows, adding your API tokens and/or access keys: - ```yaml title="docker-compose.yaml" - services: - ... - resotoworker: + ```yaml + digitalocean: # highlight-start - environment: - - RESOTOWORKER_OVERRIDE="digitalocean.api_tokens=dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxx" - # highlight-end + # DigitalOcean API tokens for the teams to be collected + api_tokens: + - 'dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' + # DigitalOcean Spaces access keys for the teams to be collected, separated by colons + spaces_access_keys: [] ... - ... + # highlight-end ``` - - Recreate the `resotoworker` container with the updated service definition: + + - ```bash - $ docker-compose up -d - ``` + **Instead of specifying API tokens or secret access keys in the [Resoto Worker configuration](../../reference/configuration/index.mdx) directly, it is possible to define them using the [`--override` flag or `RESOTOWORKER_OVERRIDE` environment variable](../../reference/configuration/index.mdx#overriding-individual-properties).** - :::note + 1. Set the `RESOTOWORKER_OVERRIDE` environment variable: - [Docker Compose V2 integrated compose functions in to the Docker platform.](https://docs.docker.com/compose/#compose-v2-and-the-new-docker-compose-command) + + - In Docker Compose V2, the command is `docker compose` (no hyphen) instead of `docker-compose`. + - Add a environment variable definition to the `resotoworker` service in `docker-compose.yaml`: - ::: + ```yaml title="docker-compose.yaml" + services: + ... + resotoworker: + # highlight-start + environment: + - RESOTOWORKER_OVERRIDE="digitalocean.api_tokens=dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxx" + # highlight-end + ... + ... + ``` - + - Recreate the `resotoworker` container with the updated service definition: - + ```bash + $ docker-compose up -d + ``` - - Create a secret: + :::note - ```bash - $ kubectl -n resoto create secret generic resoto-auth \ - --from-literal=RESOTOWORKER_OVERRIDE="digitalocean.api_tokens=dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxx" - ``` + [Docker Compose V2 integrated compose functions in to the Docker platform.](https://docs.docker.com/compose/#compose-v2-and-the-new-docker-compose-command) - - Update `resoto-values.yaml` as follows: + In Docker Compose V2, the command is `docker compose` (no hyphen) instead of `docker-compose`. - ```yaml title="resoto-values.yaml" - ... - resotoworker: - ... - # highlight-start - extraEnv: - - name: RESOTOWORKER_OVERRIDE - valueFrom: - secretKeyRef: - name: resoto-auth - key: RESOTOWORKER_OVERRIDE - # highlight-end - ... - ``` + ::: - - Deploy these changes with Helm: + + - ```bash - $ helm upgrade resoto resoto/resoto --set image.tag={{imageTag}} -f resoto-values.yaml - ``` + - Create a secret: - + ```bash + $ kubectl -n resoto create secret generic resoto-auth \ + --from-literal=RESOTOWORKER_OVERRIDE="digitalocean.api_tokens=dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxx" + ``` - + - Update `resoto-values.yaml` as follows: - - Export the `RESOTOWORKER_OVERRIDE` environment variable: + ```yaml title="resoto-values.yaml" + ... + resotoworker: + ... + # highlight-start + extraEnv: + - name: RESOTOWORKER_OVERRIDE + valueFrom: + secretKeyRef: + name: resoto-auth + key: RESOTOWORKER_OVERRIDE + # highlight-end + ... + ``` - ```bash - $ export RESOTOWORKER_OVERRIDE="digitalocean.api_tokens=dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxx" - ``` + - Deploy these changes with Helm: + + ```bash + $ helm upgrade resoto resoto/resoto --set image.tag={{imageTag}} -f resoto-values.yaml + ``` + + + - - Restart the `resotoworker` process. + - Export the `RESOTOWORKER_OVERRIDE` environment variable: - + ```bash + $ export RESOTOWORKER_OVERRIDE="digitalocean.api_tokens=dop_v1_e5c759260e6a43f003f3b53e2cfec79cxxxxxxxxxxxxxxxxxxxxxxxx" + ``` - + - Restart the `resotoworker` process. - + + + ### 3. Trigger Resource Collection diff --git a/versioned_docs/version-3.X/how-to-guides/data-sources/collect-google-cloud-resource-data.mdx b/versioned_docs/version-3.X/how-to-guides/data-sources/collect-google-cloud-resource-data.mdx index b664463fc..cabc74100 100644 --- a/versioned_docs/version-3.X/how-to-guides/data-sources/collect-google-cloud-resource-data.mdx +++ b/versioned_docs/version-3.X/how-to-guides/data-sources/collect-google-cloud-resource-data.mdx @@ -38,7 +38,6 @@ This guide assumes that you have already [installed](../../getting-started/insta **You can authenticate with [Google Cloud](../../reference/unified-data-model/gcp.mdx) via service account JSON files or automatic discovery.** - 1. Open the [Resoto Worker configuration](../../reference/configuration/index.mdx) via the [`config` command](../../reference/cli/config) in [Resoto Shell](../../reference/components/shell): @@ -113,7 +112,6 @@ This guide assumes that you have already [installed](../../getting-started/insta ::: - You can specify an empty string for the service account file, and Resoto will automatically discover the service account and all the projects it has access to. @@ -141,7 +139,6 @@ You can specify an empty string for the service account file, and Resoto will au ``` - ### 3. Trigger Resource Collection diff --git a/versioned_docs/version-3.X/how-to-guides/data-sources/collect-kubernetes-resource-data.mdx b/versioned_docs/version-3.X/how-to-guides/data-sources/collect-kubernetes-resource-data.mdx index 2934baf0c..492db13b4 100644 --- a/versioned_docs/version-3.X/how-to-guides/data-sources/collect-kubernetes-resource-data.mdx +++ b/versioned_docs/version-3.X/how-to-guides/data-sources/collect-kubernetes-resource-data.mdx @@ -38,7 +38,6 @@ This guide assumes that you have already [installed](../../getting-started/insta **You can authenticate with Kubernetes via kubeconfig files, manual configuration, or both.** - **The easiest way to configure access to Kubernetes is via [kubeconfig files](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig).** @@ -125,7 +124,6 @@ This guide assumes that you have already [installed](../../getting-started/insta ::: - **Instead of exposing a [kubeconfig file](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig) to Resoto Worker, you can alternatively supply credentials manually.** @@ -167,7 +165,6 @@ The required values can be found in the [kubeconfig file](https://kubernetes.io/ ::: - ### 3. Trigger Resource Collection diff --git a/versioned_docs/version-3.X/how-to-guides/infrastructure-apps/install-and-run-infrastructure-apps.mdx b/versioned_docs/version-3.X/how-to-guides/infrastructure-apps/install-and-run-infrastructure-apps.mdx index d753da90a..006bbc176 100644 --- a/versioned_docs/version-3.X/how-to-guides/infrastructure-apps/install-and-run-infrastructure-apps.mdx +++ b/versioned_docs/version-3.X/how-to-guides/infrastructure-apps/install-and-run-infrastructure-apps.mdx @@ -8,7 +8,7 @@ Resoto infrastructure apps are low-code applications can be installed to extend Infrastructure apps can perform simple tasks like [cleaning up untagged resources](../cleanup/clean-up-untagged-resources.mdx), finding abandoned load balancers, or sending notifications to [Slack](../alerting/send-slack-notifications/index.mdx), [Discord](../alerting/send-discord-notifications/index.mdx), or [PagerDuty](../alerting/create-pagerduty-alerts/index.mdx). -:::info How safe are Resoto infrastructure apps? +:::info[How safe are Resoto infrastructure apps?] An infrastructure app can not execute any Resoto commands directly. Instead, it generates Resoto commands which are then executed by Resoto. diff --git a/versioned_docs/version-3.X/how-to-guides/maintenance/uninstall-resoto.mdx b/versioned_docs/version-3.X/how-to-guides/maintenance/uninstall-resoto.mdx index 7b3deacf8..62ee188aa 100644 --- a/versioned_docs/version-3.X/how-to-guides/maintenance/uninstall-resoto.mdx +++ b/versioned_docs/version-3.X/how-to-guides/maintenance/uninstall-resoto.mdx @@ -16,7 +16,6 @@ Need help or have feedback on Resoto? [Open an issue on GitHub](https://github.c The process to uninstall Resoto is dependent on the installation method used. - 1. Log in to the [AWS console](https://console.aws.amazon.com). @@ -34,7 +33,6 @@ The process to uninstall Resoto is dependent on the installation method used. ::: - In the directory where you installed Resoto (containing the file `docker-compose.yaml`), run the following command: @@ -52,7 +50,6 @@ In Docker Compose V2, the command is `docker compose` (no hyphen) instead of `do ::: - Run the following command: @@ -62,5 +59,4 @@ $ helm uninstall resoto ``` - diff --git a/versioned_docs/version-3.X/how-to-guides/maintenance/update-resoto.mdx b/versioned_docs/version-3.X/how-to-guides/maintenance/update-resoto.mdx index 1a039bdf5..1852edb2a 100644 --- a/versioned_docs/version-3.X/how-to-guides/maintenance/update-resoto.mdx +++ b/versioned_docs/version-3.X/how-to-guides/maintenance/update-resoto.mdx @@ -8,153 +8,149 @@ sidebar_position: 1 We regularly release [new versions of Resoto](/releases) with bug fixes and new features, and recommend keeping your Resoto installation up to date. + - + ## Prerequisites -## Prerequisites + - [AWS command-line interface](https://aws.amazon.com/cli) -- [AWS command-line interface](https://aws.amazon.com/cli) + - [Helm](https://helm.sh) (version 3 or above) -- [Helm](https://helm.sh) (version 3 or above) + ## Directions -## Directions + 1. Log in to the [AWS CloudFormation console](https://console.aws.amazon.com/cloudformation). -1. Log in to the [AWS CloudFormation console](https://console.aws.amazon.com/cloudformation). + 2. Click **Stacks**. -2. Click **Stacks**. + 3. Enter `ResotoEKS` into the search box, and click on the stack you would like to upgrade. -3. Enter `ResotoEKS` into the search box, and click on the stack you would like to upgrade. + ![ResotoEKS stack in AWS CloudFormation](./img/cf-stack.png) - ![ResotoEKS stack in AWS CloudFormation](./img/cf-stack.png) + 4. Click the **Outputs** tab. -4. Click the **Outputs** tab. + 5. Enter `ResotoEKSConfigCommand` into the search box. There should be exactly one entry. Copy the value (`aws eks ...`). -5. Enter `ResotoEKSConfigCommand` into the search box. There should be exactly one entry. Copy the value (`aws eks ...`). + ![ResotoEKS stack outputs in AWS CloudFormation](./img/cf-output.png) - ![ResotoEKS stack outputs in AWS CloudFormation](./img/cf-output.png) + 6. Open a terminal and execute the copied command. -6. Open a terminal and execute the copied command. + ![Screenshot of ResotoEKS config command in terminal](./img/k8s-access.png) - ![Screenshot of ResotoEKS config command in terminal](./img/k8s-access.png) + 7. List installed Helm charts: -7. List installed Helm charts: + ```bash + $ helm list + ​NAME NAMESPACE CHART APP VERSION + ​resoto resoto resoto-0.7.4 3.3.1 + ``` - ```bash - $ helm list - ​NAME NAMESPACE CHART APP VERSION - ​resoto resoto resoto-0.7.4 3.3.1 - ``` + :::note - :::note + The `APP VERSION` column displays the currently installed version of Resoto. - The `APP VERSION` column displays the currently installed version of Resoto. + ::: - ::: + 8. Add the [Some Engineering Helm chart repository](https://helm.some.engineering): -8. Add the [Some Engineering Helm chart repository](https://helm.some.engineering): + ```bash + $ helm repo add someengineering https://helm.some.engineering + ``` - ```bash - $ helm repo add someengineering https://helm.some.engineering - ``` + 9. Update cached chart information: -9. Update cached chart information: + ```bash + $ helm repo update + ``` - ```bash - $ helm repo update - ``` + 10. Upgrade the `resoto` chart: -10. Upgrade the `resoto` chart: + ```bash + $ helm upgrade resoto someengineering/resoto --atomic --reuse-values --set image.tag={{imageTag}} + ``` - ```bash - $ helm upgrade resoto someengineering/resoto --atomic --reuse-values --set image.tag={{imageTag}} - ``` + + - + ## Prerequisites - + - [Docker](https://docs.docker.com/get-started#download-and-install-docker) -## Prerequisites + - [Docker Compose >= 1.29](https://docs.docker.com/compose/install) -- [Docker](https://docs.docker.com/get-started#download-and-install-docker) + ## Directions -- [Docker Compose >= 1.29](https://docs.docker.com/compose/install) + 1. Fetch the `docker-compose.yaml` file for the latest Resoto version. See the [list of versions](https://github.com/someengineering/resoto/releases) if you want to use a specific version. -## Directions + ```bash + $ curl -Lo docker-compose.yaml {{dockerComposeUrl}} + ``` -1. Fetch the `docker-compose.yaml` file for the latest Resoto version. See the [list of versions](https://github.com/someengineering/resoto/releases) if you want to use a specific version. + 2. Restart the services defined in the `docker-compose.yaml` file: - ```bash - $ curl -Lo docker-compose.yaml {{dockerComposeUrl}} - ``` + ```bash + $ docker-compose up -d + ``` -2. Restart the services defined in the `docker-compose.yaml` file: + :::note - ```bash - $ docker-compose up -d - ``` + [Docker Compose V2 integrated compose functions in to the Docker platform.](https://docs.docker.com/compose/#compose-v2-and-the-new-docker-compose-command) - :::note + In Docker Compose V2, the command is `docker compose` (no hyphen) instead of `docker-compose`. - [Docker Compose V2 integrated compose functions in to the Docker platform.](https://docs.docker.com/compose/#compose-v2-and-the-new-docker-compose-command) + ::: - In Docker Compose V2, the command is `docker compose` (no hyphen) instead of `docker-compose`. + - ::: + :::info - + Resoto publishes packages for both x86 and ARM architectures for stable releases, but `edge` versions are only available for x86. - :::info + If you have an Apple Silicon or other ARM-based machine, please use the latest stable release ( or `latest`). - Resoto publishes packages for both x86 and ARM architectures for stable releases, but `edge` versions are only available for x86. + ::: - If you have an Apple Silicon or other ARM-based machine, please use the latest stable release ( or `latest`). + - ::: + + - + ## Prerequisites - + - [Helm](https://helm.sh) (version 3 or above) - + ## Directions -## Prerequisites + 1. List installed Helm charts: -- [Helm](https://helm.sh) (version 3 or above) + ```bash + $ helm list + ​NAME NAMESPACE CHART APP VERSION + ​resoto resoto resoto-0.7.4 3.3.1 + ``` -## Directions + :::note -1. List installed Helm charts: + The `APP VERSION` column displays the currently installed version of Resoto. - ```bash - $ helm list - ​NAME NAMESPACE CHART APP VERSION - ​resoto resoto resoto-0.7.4 3.3.1 - ``` + ::: -:::note + 2. Add the [Some Engineering Helm chart repository](https://helm.some.engineering): -The `APP VERSION` column displays the currently installed version of Resoto. + ```bash + $ helm repo add someengineering https://helm.some.engineering + ``` -::: + 3. Update cached chart information: -2. Add the [Some Engineering Helm chart repository](https://helm.some.engineering): + ```bash + $ helm repo update + ``` - ```bash - $ helm repo add someengineering https://helm.some.engineering - ``` + 4. Upgrade the `resoto` chart: -3. Update cached chart information: - - ```bash - $ helm repo update - ``` - -4. Upgrade the `resoto` chart: - - ```bash - $ helm upgrade resoto someengineering/resoto --atomic --reuse-values --set image.tag={{imageTag}} - ``` - - + ```bash + $ helm upgrade resoto someengineering/resoto --atomic --reuse-values --set image.tag={{imageTag}} + ``` + diff --git a/versioned_docs/version-3.X/reference/api/abort-a-batch-update.api.mdx b/versioned_docs/version-3.X/reference/api/abort-a-batch-update.api.mdx index 1228a9e4b..d3877f223 100644 --- a/versioned_docs/version-3.X/reference/api/abort-a-batch-update.api.mdx +++ b/versioned_docs/version-3.X/reference/api/abort-a-batch-update.api.mdx @@ -22,22 +22,118 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Abort a batch update

+

+ Abort a batch update +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Abort a batch update. ## Request -

Path Parameters

- -Ok message - -
Schema
    - -string - -
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + Ok message + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/add-or-update-the-current-defined-configuration-model.api.mdx b/versioned_docs/version-3.X/reference/api/add-or-update-the-current-defined-configuration-model.api.mdx index b69066780..86589464a 100644 --- a/versioned_docs/version-3.X/reference/api/add-or-update-the-current-defined-configuration-model.api.mdx +++ b/versioned_docs/version-3.X/reference/api/add-or-update-the-current-defined-configuration-model.api.mdx @@ -5,7 +5,7 @@ description: "Add or update the current defined configuration model." sidebar_label: "Add or update the current defined configuration model." hide_title: true hide_table_of_contents: true -api: eJztXetv2zYQ/1c0YR8awE3StAhWfxnSB7CiWBe02b7YXsBIdMxWJlWSamK4/t93R+pBW7aT9DUrvQZobIq8O97veA+6V89jyy5N3B/EiZJjcXn+iWUiZVYoGY96seYfC27sM5XO4v48TrlJtMjd0378XE3zjFseTVXKs0jpKGfaRmoc2Uk5uB/3kLDl0uJ6lueZSBz1g/cGicxjk0z4lLWpv+BjIQW+QYos+iBkCtTsLOfwlGnNZvBWWD41uFhJ/tcY9jGvZqiL9zyxMIVl2Z2f5FrlXFvBHe3xRydpOclYLeQlTFqW9wz2PC6ybBZ9LECHY8HTSLIpr/Th5F8sYAfCZkjnNQw8Y4bHC1B0KpDWVEhmlUZmpQSzN0ACJutCWjHl56UWpqBJFAL158Xpx4nQSZEx/eCdG0Hye6ghaR8fBeK3dh8sFAioXzhaVQLIJqbFdK2ugQe/5Dpe9OohWUwvcGS0Tk+OFssiMLaiVJAwUbUEt3f97Xh5Wht5cekZbTKsFts1PECV6grwdjzMCpMIOXDNLEyYcM2XjOCNm/La2YbD6vgJYdUJrMaZYpaw6gRWqSoucJjA6gBYF0plnMkvQqui+MzTqPEHvl9F7wUQCIlhLP5qgmdAxBNFZSwb2lK8X5N7eMAGzYAP81UIqdxTbfqNWkttBPtYazGlAC5tqbFs5TDN7pzhtQ7LecblpZ3cLnuqDoRfUzMtV/gTcTeCaPXbCObMWq5vmdxpMP3rPCrX9IAWsyHBaMJMZFXEUjRweHWHg9WIdOtzVTLddq6aRDB0FD9bYvwtnD7Z8c7YcVXQNOA14WOvdoAbH5dp26bHVaaw6TkFp/sTnCiT+76ZHEUcijj3KeJQ9bj7Poeu0DqEFV2hdQcrukLrEFh1ldJgEhQdezEVHT+q6Fhf81FmTJkxZcYUFCgzJqwoM+44VpQZdwis7tzfN8vCzHgvvm+Z8XLef6fU+IcnwMsMhZRcr0P+x8oVDJ7g0aIag2oMqjEovFKNQVhRjXE/sKIao0NgfbcaY7kkCK/y6fb9xhqje/XFBQybWxj1piTslYwSIIGshQSbFZbJhPe86lJsrwIrR6GQkZPM7Mct5FeYr2nSAiqgw6hZVuOTuA6x66p3a1XwDYqWbMmYt2i60SwwqwoF3MImM70ZrCX7CkliK5zQPCQbmPBarYgVMhG8rshgu5xU7kTwMSsyiMRjlhm+iuJNe3inQAWTYsokkGYpg8MVBTPWbCUwvtNw0Lm/80J+kOpKnuN8s2GvobybjC6wBgZVBUsSnoPvLMsPHILdR5kw6FCFbFoGUdemgOnGKO38jRNjRcMiwVdMz3CD9fTKiMEfXTM0PZg6j4aVyMO4Hw2GzjgeDeNe5F8eDcHjuEnYzBjMeQwPosUQ99zyGWnqWhNZdrrtsGw6qYsQBN9Geb3RPy3v/CQyzsdFaaOCK1e44Rn8wGegb1nHMNSzZ2p2y9Mtl3oIZ+m0FwF2g1KU2HJj92HDGCaWI1EdZ1a1hLNdZXsMCoOHaBR18vMoSE6OUecBG6MSwbJzw5MCPObsvMwxWow3qGU957pgj/998Psvx8fHnw8PDz8/HQ7T+dFiD389XjyEJ4eHe37MvZk/8c+eLH6NV6REl72C26DynHHpblcFbTyY1UXr4J5NVoIrOm9VwADawb4ToKTvfrXpb/PPeA1hVKETvt+SJKDsmpFryo2JDzyTXmnMozY3WOhdix+/4FuYekc7WlEpKBJbkntV3B0Emh5tUvVYaVvIQBuhqbYVAjalubTeRtwZ3aoOY+QK5Y3W2eblp0bV1CqPrQOC2+4a9qPwfFb5oAuAJleyTEmODg/bXvmv1z7kVR3hwKXIU5cyly7aOYyYesKpJ5yqSbpSu3dY0ZVad7CiK7UOgdWdj+3pDo56wjvz2epPmxjTvxG4V3ZMPeEUnKgnvAuZHEUcijj3KeJQ9bj7Poeu0DqEFV2hdQcrukLrEFjUE74rRQf1hFNmTJkxBYUdCAqUGXcHK8qMu4MVZcYdAqs79/fUE757CTD1hFONQTUG1RgUXqnG6DxWVGN0ByuqMToEFvWE72KN0b36gnrCb9I09YRTTzj1hFNP+BotUU849YRTT/i37Al/sq4N/E/wu+ySe9Xz6zxjQvqkgmutULCg/dvya3vgprj7urrxu+0dW7nMSeoipm8xd/RrVbpgm0b+O80L7brLm28kn3I7Uag+OILJxB/FCbw98PPNgQ86EHO4/gQqceAWOoMpE2tz0z84mE+UsYv+PAesFzDzE9MC46zzlfjMq6WMinGmEpa5YcylYM3y49+egh5hh6BkbIF/23zr+kvye+T3yO/9r35PyLFyLqn0f29BkVZFzxUkUm9fvjuLTk5foQsAIp7jP4/8MTd26kv+cgtf7LDWZ/+B6wR2zj/NS1c2iEtXhifdOTPYh3dLg3g+Rxz/1tligcPga/QMxkeNF8N3QHICxQN+mgUQQxLp0lLntx+eoQA4HUDD1Hb1v/BA2PyKE5fjb507Chzy6cnZ8z/cRUA6c1dTIDsMa3aF2MDf/XgIP/BGOW34ewgcn8cZk5cFxB2Y4wnjn/8ArzlxCA== +api: eJztWNtuEzEQ/RVj8QBSaEKpIpoXFFokEOKiEnhpQ+XszmYNXnuxvW2iZf+dGXvbXLY38QIPSaVmPT6esc+Mj72puRdzx0enPDE6k/PzC6FkKrw0mk973MKvCpx/bdIlH9U8BZdYWYbeET8yRanAAytMCooZy0phPTMZ83lr3OM9cuxBexovylLJJHjv/3DkpOYuyaEQXe/HkEktqUEeBfspdYre/LIE7BXWiiU2pYfC0WCj4VOG66ivEGb2AxJPI6RXZPjirdTz9+Sm6d0O+1gVM7D3wl4bo0Doe3HHwsNEFnAvcEwrepC7e0ExMYtbcZtEj5mThGepTMgk7JJd5mCBCaXYT1g6JnTKsDCwFJhAuwtMug63x+ggBp02PQ4LQW5DTrJfFMljKe1hFMCRttIeaTkPaR1xqf2L/RumRmiWC8eGOEvspIIqsC6KquCj5/gsFvF5SAtdC+NMIoU6d5BUVvrluQ5p7QaOa3lg5FJ4D5b6vz959Wg4HP4eDAa/D8/O0nq/eUpfL5pn2DMYPI220KgPYt9B85hvzXImHJFRWlOC9RJcYEuLgkhtK357orQnpQW0eVvB9sQnuPVoRNyG0rEEi8FUaKAq2AsTaP2Hr67/rj8CXm1rC85UNoG9zkzWPAdNufa8qqvTGKTXVtC0Gw0HYhjhWbTP4I6gmVAOqNQ2KEUiSVl6nLgNyrZienob1ZmxvtJrbKyXapcQrCmLkhZrJGyMO+lwTm95vrU6u7EilF1BWYRepzcu94bw02a62p9xV+KHYK40OlBT8/3BoKu8n94zuabhDKNUJZ4JkDJXJQk4l1VKLXfSvpP2nbTvpH0n7f+LtB/cpOYfUK/FHCL1sCiVkNoF6sFaYzdV3MPC9wNkU79bmWkLqYnhtrZVmtIrQDwpgv9rKknu8fCIbxiVDYfE6v2gAJ8bog+3YJLHrZhjsx/xrh+QaHdgL5CSkNzKKoTk3pdu1O/XuXG+GdUl5rpB5IWwUsxUPOOoL9KSiUrhI1cmESqYcRU0ZrP75SHyiCtEkukkO1m9A73Z6d5O93a69091T+rMBElq9e8EifSGHRm8vZy8+TJh48/vSALQSYz47Xnc5s4XIshau4S/FqyNBV1r45p0YrigT3UrZVc/rlABRTHDdURZOuV1TXn8alXTkBm1xi7RPl2pGLXQZQ4iRUIpxXhzC3fBoNvPJjQBgmPS6P68fROntMURY7y9l/5O7HRNkD+PJ0dvqezan39o7mi24pJyg/9H/Az/sGECG0Fug73mSuh5hecOYqJj+vwBoGdSsQ== sidebar_class_name: "patch api-method" info_path: versioned_docs/version-3.X/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,1110 +22,7178 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Add or update the current defined configuration model.

+

+ Add or update the current defined configuration model. +

- - - + + + Add or update the current defined configuration model. ## Request -

Body

array
- -Complete model or part of the model. - -
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
- -OK if the model is updated successfully - -
Schema
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
- -Message that explains the error - -
Schema
    - -string - -
+ + +
+ +

+ Body +

+ array + +
+
+ + + Complete model or part of the model. + + +
+
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+
+
+ + +
+ + + OK if the model is updated successfully + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+ + + Message that explains the error + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/add-or-update-the-current-defined-model.api.mdx b/versioned_docs/version-3.X/reference/api/add-or-update-the-current-defined-model.api.mdx index 100f9ce73..240cae543 100644 --- a/versioned_docs/version-3.X/reference/api/add-or-update-the-current-defined-model.api.mdx +++ b/versioned_docs/version-3.X/reference/api/add-or-update-the-current-defined-model.api.mdx @@ -5,7 +5,7 @@ description: "Add or update the current defined model." sidebar_label: "Add or update the current defined model." hide_title: true hide_table_of_contents: true -api: eJztXetvEzkQ/1f2rPtApdCWgqojX06lIB1CB1Xp3ZcmV7m7TmPY2IvtpY3C/u83Y+8ryaaP43HdMiBB1mvPjOc3nofLkAVz/MKy4Smb6USkbDxgGTd8JpwwOLxgCh7YkF0Ynk3PZMIGTCp4zribwudE2NjIzEmNgydTEclEKCcnUphITyIHI34pzBVXfJalSMwIq52GISM+5dKIhA2dycWA2XgqZpwNF8zNM5xpnZHqghXFOEwW1r3QyRxnLLM+1EjbicjvI9Imgn24SgQ/uA0MY60cyIfreZalMua4fueDRSKLFv9l6i/FRCqJD0iRRx+lQk2UQnJj+BwV48TM4mKtxLuJ1145Q59/ELGDKTxN7/wmMzoTxknhaU8+qXX9dAExydN0Hn3KeYpoJBECWenDy18UsAPpPCJvYOAFt4KhohOJtGZScacNMislmL8NtmByQHgmzkotzECTKATqL4gzZLE0cZ5y8+i9H0HyW9503NO9lvhru28tlAhoWDheVQLIJmf5rFPXwENcCMOKQT2k8tk5joy79ORp8TT6zNO8VJC0UbUEt3f17XgFWht5CRUYbTKsNbYdPECV+hLw9jzsCpMIOQjDHUyYCiOWjOCtn/LG24bHav8ZYdULrCap5o6w6gVWic7PcZjA6gFY51qngqv/hFZF8UWgUeMPfL+K3ksg0CaGsfirCZ4AkUAUlbFsaEvxviP3CICdNgMhzFchpHJPtek3ai210dpHp8WUAvi0pcZyLYdpducNb+2wnKVCXUDWeqvsqToQYU3NtMpH/Ym4G0G0+usIQkYNSfctkzsDpn+VReWaAdDirk0wmnIbOR3xBA0cPt3hYDUi3fpclUyvO1dNIth2FD9bYvwtnD7Z8b2x46qgacBrwsdW7QA3vi7Ttk2vq0xh03sKTg8nOFEm930zOYo4FHEeUsSh6vH++xy6QusRVnSF1h+s6AqtR2DVVUqDSavo2GJUdPyooqO75qPMmDJjyowpKFBmTFhRZtxzrCgz7hFY/bm/b5a1M+Mt9tAy4+W8/06p8Q9PgJcZSqWE6UL+x8rVGjzAo0U1BtUYVGNQeKUag7CiGuNhYEU1Ro/A+m41xnJJ0L7Kp9v3G2uM/tUX5zBsb2HUm5Kw1yqKgQSylgpsVjquYjEIqkuwvQqsHIVCRl4yu83WkF9h3tGkBVRAh1GzrMYn9h1iV1Xv1qrgGxQd2t9uo+lGs8CsKhRwC5vM9GawluyrTbLpm6vJtky4UytyhUwEnysy2C6ntD8RYsLzFCLxhKdWrKJ40x7ea1DBNJ9xBaR5wuFwRa0ZHVtpGd9Re9C7v7NcfVT6Up3hfLthr215Nxldyxo4VBU8jkUGvrMsP3AIdh+l0qJDlappGURd2xymW6uN9zdejBUNyxg/cTPHDdbTKyNuNz4uolEl8ogNo9ORN44nIzaIwse9EXgcPwmbGVtznsKLqBjhntd8RpL41kSeHl13WDad1KINQmijvNron5Z3fhBZ7+OipFHBpS/c8Ax+FHPQt6pjGOo5MLX3y9Mtl3oIZ+m0ixZ2p6UozAnrtmHDGCaWI1EdZ1a1hLN9ZbsPCoOXaBR18vOklZzso85bbKyOJU/PrIhz8JjzszLHWGO8QS3dnOuCnf3z6Pdf9vf3v+zu7n55Pholi71iC/96WjyGN7u7W2HMPyyehXfPil/ZipTosldwaxqHS3e7Kuhq5+86nkvOD523zmEA7WDbC1DS93+t07/OP+M1hNW5icX2miQtyr4zuqbcmPhpYDIojXm8zg0WBtcSxs/FNUyDox2vqBQUiS3JgyrunrY0Pd6k6ok2LlctbbRNdV0hYFNGKBdsxJ/Ra9VhrVqhvNE613mFqVE1tcpj64Dgt9vBftw+n1U+6AOgzbQqU5K93d11r/zuTQh5VUc4cMmzxKfMpYv2DoNRTzj1hFM1SVdqDw4rulLrD1Z0pdYjsPrzY3u6g6Oe8N78bPWnTYzp3wg8KDumnnAKTtQT3odMjiIORZyHFHGoerz/Poeu0HqEFV2h9QcrukLrEVjUE35fig7qCafMmDJjCgr3IChQZtwfrCgz7g9WlBn3CKz+3N9TT/j9S4CpJ5xqDKoxqMag8Eo1Ru+xohqjP1hRjdEjsKgn/D7WGP2rL6gn/CZNU0849YRTTzj1hHdoiXrCqSecesK/ZU/4s6428D/B7/ILEVQvrrKUSxWSCmGMRsFa7d9OXLkdP8Xf1238MnLPbuVYJT5ihhZzT79WpQ+2SfMd5DPhphoVBocunobDN4XHHf9F6TuL6qvWi50QbyDcCPO5+j723KQwd+pcZoc7O4uptq4YLjKAuYCZn7mRGGK9m8R3QSNlQGSpjnnqhzGNgjXLr397Dios/JetY/f7cfOF66/I5ZHLI5f3v7o8qSbae6PS9R2DIp2ODjXkUMev3p9EB0ev0QUAkcDx7yfhmFs3C9V+uYU7+KruVL/lJ4GB90iL0oudMu++YOmw8mN4yr0jgz0El3TKFgvE8C+TFgUOg58xcxgfNx7MI5pIi5+T7lx+0fhu9ui41NhWhIqGQw6eAXI+U9l6JVbnFqq0WM29DwUbgCeEWYBUrN6Iz/6mUMXgj9VAvPD6MAjx+ASJNMvX/i8RNKKw4sAXG9fOHbfixNHByeEf/kYimfs7MtAmDBt+iZYCfw7ZCH7Dg/aaCRciOL5gKVcXOQRAmBMI469/ARXdzaA= +api: eJztWN9v2zYQ/lc4og8N4MZuGhirXgY3KbCh2FqkXl8SL6Clk8WWElWSSi2o+t97R8q2bOVH97Q92AFi8Xi8O368++Rjw51YWR5d81wnoPhixEthRA4ODIkbXuCAR3xlRJndyoSPuCxwXAqX4XMCNjaydFKTcJ4BkwkUTqYSDNMpcyjxS1EX1iIvFRkzYLXTKDLwtZIGEh45U8GI2ziDXPCo4a4uSdM6I4sVb9tFUAbr3uikJo191xeabDtgfh9MG4b7cJsQvPAUHca6cBgfrRdlqWQsaP34syUjTc//vvVLSGUhaUAWBfsiC0KiC1IYI2oCxkFuabEu4H3q0es09PIzxI5WSOcR+Oj39Y7MtKOH1f6q8iWYJ9XeaK1AFE/qXQoHc5nDk4oz2tFPmXtSKRzM+kG9faBnzErSZ4mMSSRMzb5lYIAJpdgXqC0TRcLuhMJUYALlIUPsANtLNBCcLtpe7uGZpF/Jk8NUOkUvQGlYYcrmcOuPNcIEd6/O7gmNtFkmLJtilDhJCZVjXuRVzqOX+CzW4XlKG+25sTqWQt1aiCsjXX1b+GMdOu6y/ec8YwVikdL8P89/+2U6nX6fTCbfX9/cJM1Ze0Jfr9oXODOZnASZHzTnYe68fcYPolwKS2CURpdgnIS9+u8y/jDQwwIe8gGtCGUoLYsxGXSFAsqCUx9AZ99/De0P7ZHipqyJRyoTw+kgkp5lT3Bby7u8ug5ORl0GLYbecCG6EY4F+RIecZoKZYFSbQ9SBJKYZcQJW0+zO6QXD0GdauOqoodGP1WHgGBOGaS0kCO+MB6Fw9riwPKD2Tn0FVTZRpUF1e3xhu3e435B/L2pz1CV+CE1W+rCQ9Pws8lkyLzv3zHZ43CGXqoyQeJJmK3iGKxNK6XqI7Ufqf1I7UdqP1L7/4Xaz+9j8z+Rr8UKAvSwLpWQhfXQgzHa7LO4g7Ube5V9/j5sDby7g7JKEmoBwpvC299CSXSPL49tR4CtTqaT0NHEWSi+DIdj37aMm03j045Dh4RNCpi7TXdUGYW6mXOljcbjJtPWtVFT4jG3qHknjBRLFV5vNBcQSUWl8JErHQvlxbgBWrM//etrhLD1rQ+9xK527c/bI+UdKe9Ief8p5cki1Z6NOuq78nca7ELjD5ertx/nbPbhD6IANBI8fnoZyty6XHhG67bwL7hqbwtbIuzxJDrwjNR0LHbNN5cvUe8CZ3vVEyjpmjcNneHfRrUtiZFnTI3yxY7B/Ikm0tLzJj8G8Wy5mz+/6hA7YY/fCd27hc1v76L2HIo5gCM6ZsCodjdR/tdfBiLB46XwwvRFCOLFnIzslg9aAkqisGKGbUTpHtVd9N4TH2bzi9+pCLp7KEITxUZ8o0zB/xG/wT8caI+MJ38vb7gSxarCFyDqBMP0+QHK269J sidebar_class_name: "patch api-method" info_path: versioned_docs/version-3.X/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,1110 +22,7202 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Add or update the current defined model.

+

+ Add or update the current defined model. +

- - - + + + Add or update the current defined model. ## Request -

Path Parameters

Body

array
- -Complete model or part of the model. - -
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
- -OK if the model is updated successfully - -
Schema
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
- -Message that explains the error - -
Schema
    - -string - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+ array + +
+
+ + + Complete model or part of the model. + + +
+
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+
+
+ + +
+ + + OK if the model is updated successfully + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+ + + Message that explains the error + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/add-subscription-to-subscriber.api.mdx b/versioned_docs/version-3.X/reference/api/add-subscription-to-subscriber.api.mdx index 642257b96..cb48f549d 100644 --- a/versioned_docs/version-3.X/reference/api/add-subscription-to-subscriber.api.mdx +++ b/versioned_docs/version-3.X/reference/api/add-subscription-to-subscriber.api.mdx @@ -22,26 +22,261 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Add subscription to subscriber

+

+ Add subscription to subscriber +

- - - + + + Add a specific subscription to a subscriber. ## Request -

Path Parameters

Query Parameters

- -The subscriber - -
Schema
    subscriptions object
    - -The dictionary of subscriptions, where the key is the message type - -
    property name* Subscription
    - -The definition of an action subscription - -
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + The subscriber + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
    + + + + subscriptions + + object + + +
    +
    + + + The dictionary of subscriptions, where the key is the message type + + +
    +
    + + + + property name* + + Subscription + + +
    +
    + + + The definition of an action subscription + + +
    + + + + + + +
    +
    +
    +
    +
    +
    +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/commit-a-batch-update.api.mdx b/versioned_docs/version-3.X/reference/api/commit-a-batch-update.api.mdx index 833cfdfe4..4836d5d30 100644 --- a/versioned_docs/version-3.X/reference/api/commit-a-batch-update.api.mdx +++ b/versioned_docs/version-3.X/reference/api/commit-a-batch-update.api.mdx @@ -22,22 +22,118 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Commit a batch update

+

+ Commit a batch update +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Commit a batch update. ## Request -

Path Parameters

- -Ok message - -
Schema
    - -string - -
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + Ok message + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/create-a-new-graph.api.mdx b/versioned_docs/version-3.X/reference/api/create-a-new-graph.api.mdx index 6b7b02b3f..ff17608a5 100644 --- a/versioned_docs/version-3.X/reference/api/create-a-new-graph.api.mdx +++ b/versioned_docs/version-3.X/reference/api/create-a-new-graph.api.mdx @@ -22,18 +22,134 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Create a new graph

+

+ Create a new graph +

- - - + + + Create a new graph ## Request -

Path Parameters

- -The created graph with the root node - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The created graph with the root node + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/create-a-new-node-under-the-given-parent-node.api.mdx b/versioned_docs/version-3.X/reference/api/create-a-new-node-under-the-given-parent-node.api.mdx index 76487ec1a..2b8cfdbdf 100644 --- a/versioned_docs/version-3.X/reference/api/create-a-new-node-under-the-given-parent-node.api.mdx +++ b/versioned_docs/version-3.X/reference/api/create-a-new-node-under-the-given-parent-node.api.mdx @@ -22,22 +22,204 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Create a new node under the given parent node

+

+ Create a new node under the given parent node +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Create a new node under the given parent node. ## Request -

Path Parameters

Body

- -The node document to create. - -
- -Return the created node - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The node document to create. + + +
+
    + + + + + +
+
+
+
+
+ + +
+ + + Return the created node + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/define-subscriber-with-all-subscriptions.api.mdx b/versioned_docs/version-3.X/reference/api/define-subscriber-with-all-subscriptions.api.mdx index a41c2c826..076bde70f 100644 --- a/versioned_docs/version-3.X/reference/api/define-subscriber-with-all-subscriptions.api.mdx +++ b/versioned_docs/version-3.X/reference/api/define-subscriber-with-all-subscriptions.api.mdx @@ -22,30 +22,311 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Define subscriber with all subscriptions

+

+ Define subscriber with all subscriptions +

- - - + + + Define or redefine a subscriber with all subscriptions. In case the subscriber does not exist, it is created. In case the subscriber exist, all subscriptions get replaced. ## Request -

Path Parameters

Body

array
- -The list of all subscriptions. - -
  • Array [
  • ]
- -The subscriber - -
Schema
    subscriptions object
    - -The dictionary of subscriptions, where the key is the message type - -
    property name* Subscription
    - -The definition of an action subscription - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+ array + +
+
+ + + The list of all subscriptions. + + +
+
    +
  • +
    + Array [ +
    +
  • + + + + + +
  • +
    + ] +
    +
  • +
+
+
+
+
+ + +
+ + + The subscriber + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
    + + + + subscriptions + + object + + +
    +
    + + + The dictionary of subscriptions, where the key is the message type + + +
    +
    + + + + property name* + + Subscription + + +
    +
    + + + The definition of an action subscription + + +
    + + + + + + +
    +
    +
    +
    +
    +
    +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/delete-a-configuration-by-its-id.api.mdx b/versioned_docs/version-3.X/reference/api/delete-a-configuration-by-its-id.api.mdx index 906d38eda..69cff4965 100644 --- a/versioned_docs/version-3.X/reference/api/delete-a-configuration-by-its-id.api.mdx +++ b/versioned_docs/version-3.X/reference/api/delete-a-configuration-by-its-id.api.mdx @@ -22,18 +22,64 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Delete a configuration by its id

+

+ Delete a configuration by its id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Delete a configuration identified by id with provided value. ## Request -

Path Parameters

- -Signals success of this operation. - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + Signals success of this operation. + + +
+ +
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/delete-a-node-with-the-given-node-id.api.mdx b/versioned_docs/version-3.X/reference/api/delete-a-node-with-the-given-node-id.api.mdx index 5802588fb..1c0eb1ac0 100644 --- a/versioned_docs/version-3.X/reference/api/delete-a-node-with-the-given-node-id.api.mdx +++ b/versioned_docs/version-3.X/reference/api/delete-a-node-with-the-given-node-id.api.mdx @@ -22,18 +22,69 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Delete a node with the given node id.

+

+ Delete a node with the given node id. +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Delete a node with the given node id. ## Request -

Path Parameters

- -Node is deleted - -
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + Node is deleted + + +
+ +
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/delete-a-specific-subscription-from-the-subscriber.api.mdx b/versioned_docs/version-3.X/reference/api/delete-a-specific-subscription-from-the-subscriber.api.mdx index 1bc03a402..c9e7c70c8 100644 --- a/versioned_docs/version-3.X/reference/api/delete-a-specific-subscription-from-the-subscriber.api.mdx +++ b/versioned_docs/version-3.X/reference/api/delete-a-specific-subscription-from-the-subscriber.api.mdx @@ -22,26 +22,232 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Delete a specific subscription from the subscriber.

+

+ Delete a specific subscription from the subscriber. +

- - - + + + Delete a specific subscription from the subscriber. ## Request -

Path Parameters

- -The subscriber - -
Schema
    subscriptions object
    - -The dictionary of subscriptions, where the key is the message type - -
    property name* Subscription
    - -The definition of an action subscription - -
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + The subscriber + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
    + + + + subscriptions + + object + + +
    +
    + + + The dictionary of subscriptions, where the key is the message type + + +
    +
    + + + + property name* + + Subscription + + +
    +
    + + + The definition of an action subscription + + +
    + + + + + + +
    +
    +
    +
    +
    +
    +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/delete-an-existing-graph.api.mdx b/versioned_docs/version-3.X/reference/api/delete-an-existing-graph.api.mdx index e91ee78bf..cca327565 100644 --- a/versioned_docs/version-3.X/reference/api/delete-an-existing-graph.api.mdx +++ b/versioned_docs/version-3.X/reference/api/delete-an-existing-graph.api.mdx @@ -22,18 +22,139 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Delete an existing graph

+

+ Delete an existing graph +

- - - + + + Delete an existing graph ## Request -

Path Parameters

Query Parameters

- -Ok when the delete operation was successful - -
Schema
    any
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + Ok when the delete operation was successful + + +
+ + + + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/delete-by-id.api.mdx b/versioned_docs/version-3.X/reference/api/delete-by-id.api.mdx index af43f0f3a..b6db899df 100644 --- a/versioned_docs/version-3.X/reference/api/delete-by-id.api.mdx +++ b/versioned_docs/version-3.X/reference/api/delete-by-id.api.mdx @@ -22,18 +22,64 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Delete by id

+

+ Delete by id +

- - - + + + Delete the subscriber with a defined id. ## Request -

Path Parameters

- -no content - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + no content + + +
+ +
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/deprecated-add-or-update-the-current-defined-model.api.mdx b/versioned_docs/version-3.X/reference/api/deprecated-add-or-update-the-current-defined-model.api.mdx index 25585f95d..7355597a4 100644 --- a/versioned_docs/version-3.X/reference/api/deprecated-add-or-update-the-current-defined-model.api.mdx +++ b/versioned_docs/version-3.X/reference/api/deprecated-add-or-update-the-current-defined-model.api.mdx @@ -5,7 +5,7 @@ description: "Use /graph/{graph_id}/model instead." sidebar_label: "[Deprecated] Add or update the current defined model." hide_title: true hide_table_of_contents: true -api: eJztXetv2zYQ/1c0YR8awI3TtAhWfxnSB7CiWBe06b7YnsFItM1WJlWSamKo/t93R+ply85jfcxKrwVqmyLvjvc73oPuJXkYcxNpkVqhZDgI3xse9GeapfN+7l4mIl71FyrmSSCksZzFh2EPFqWaR8zyOBxYnfFeaNnMhINh6KaG416o+aeMG/tMxctwkG+wea4WacItDzxlpYOUaRuoaWDnxSCyiZS0XFpcz9I0EcAR1vc/GCSShyaa8wVrU3/Bp0IK/IAUWfBRyBio2WXK4SnTmi3ho7B8YXCxkvyvKcielzPUxQceWZjCkuTOT1KtUq6t4I729JOTtJhkrBZy5vTXlPcc9jzNkmQZfMpYIqaCx4FkC17qw8m/WsEOhE2QzmsYeMYMD1eg6FggrYWQzCqNzAoJlm+ABEzWmbRiwSeFFhagSRQC9efFGYSR0FGWMP3gnRtB8geoIWkfHzfEb+2+sVAgoH7heFMJIJtYZIutugYefMZ1uOpVQzJbXODIeJueHC2WBJ9ZkhUKEiYol+D2rr4dL09rJy8uPaNdhtViu4UHqFJdAt6Oh9lgEiAHrvGcBXOu+ZoRvHFTXjvbcFidPCGsOoHVNFHMEladwCpW2QUOE1gdAOtCqYQz+Z/QKik+8zQq/IHvV9F7AQSaxDAWfzXBcyDiiaIy1g1tLd5vyT08YMN6wIf5MoSU7qky/VqthTYa+9hqMYUALm2psGzlMPXunOG1Dssk4XJm57fLnsoD4ddUTIsV/kTcjSBa/XUEU2Yt17dM7jSY/lUaFGt6QIvZJsFgzkxgVcBiNHB4d4eDVYt063NVML3uXNWJYNNR/GyJ8bdw+mTHe2PHZUFTg1eHj4PKAe58XKRtux6XmcKu5xSc7k9wokzu+2ZyFHEo4tyniEPV4/77HLpC6xBWdIXWHazoCq1DYFVVSo1Jo+g4CKno+FFFx/aajzJjyowpM6agQJkxYUWZccexosy4Q2B15/6+XtbMjA/C+5YZr+f9d0qNf3gCvM5QSMn1NuR/rFyNwVM8WlRjUI1BNQaFV6oxCCuqMe4HVlRjdAis71ZjrJcEzat8un2/scboXn1xAcPmFka9Kwl7JYMISCBrIcFmhWUy4j2vuhjbq8DKUShk5CQzh2EL+Q3mW5q0gAroMKiXVfhErkPsquzd2hR8h6IlWzPmazRdaxaYlYUCbmGXmd4M1pp9NUliK5zQvEm2YcJbtSI2yATwviSD7XJSuRPBpyxLIBJPWWL4Joo37eGdAhXMswWTQJrFDA5X0JixZSsN4ztrDjr3N8nkR6ku5QTnmx17bcq7y+ga1sCgqmBRxFPwnUX5gUOw+yARBh2qkHXLIOraZDDdGKWdv3FibGhYRPiO6SVusJpeGjH4oyuGpgdT82BUijwKB8Fw5Izj0SjsBf7t8Qg8jpuEzYyNOY/hQbAa4Z5bPiOOXWsiS86uOyy7TuqqCYJvo7za6Z/Wd34aGOfjgrhWwaUr3PAMfuRL0LesYhjq2TM1++Xp1ks9hLNw2qsGdsNClNByYw9hwxgm1iNRFWc2tYSzXWV7AgqDh2gUVfLzqJGcnKDOG2yMigRLJoZHGXjM5aTIMVqMd6hlO+eqYA//efD7LycnJ1+Ojo6+PB2N4vx4dYAvj1cP4cnR0YEfcx/yJ/7Zk9Wv4YaU6LI3cBuWnjMs3O2moLUH892+bTzXnB86b5XBANrBoROgoO9e2vSv8894DWFUpiN+2JKkQdk1IFeUaxMfeia9wpjHbW6w0LsWP37Br2HqHe14Q6WgSGxJ7pVxd9jQ9HiXqqdK20w2tNE01bZCwKY0l9bbiDuj16rDGLlBead1tnn5qUE5tcxjq4DgtruF/bh5Pst80AVAkypZpCTHR0dtr/zXax/yyo5w4JKlsUuZCxftHEZIPeHUE07VJF2p3Tus6EqtO1jRlVqHwOrO1/Z0B0c94Z35bvWnTYzp/wjcKzumnnAKTtQT3oVMjiIORZz7FHGoetx/n0NXaB3Ciq7QuoMVXaF1CCzqCd+XooN6wikzpsyYgsIeBAXKjLuDFWXG3cGKMuMOgdWd+3vqCd+/BJh6wqnGoBqDagwKr1RjdB4rqjG6gxXVGB0Ci3rC97HG6F59QT3hN2maesKpJ5x6wqknfIuWqCecesKpJ/xb9oQ/2dYG/if4XTbjXvX8Kk2YkD6p4ForFKzR/m35le27Ke6+rmr8bntHrB64nSvcN5ydaO7P0Bw++t9tDp8N159hDw6NTCfwaG5tagb9fj5Xxq4GeQrgrGDmZ6YFBkbn3PCZ30cRxsJERSxxw5j8wJr1x789hY2DSKAV7Fl/W/+a9JfkqMhRkaP6Xx2VkFPlfEjhsN6CIq0KnivIfN6+fHcenJ69QhcARDzHvx/5Y27swtfoxRaGL3iqeYQF/jg4jV2C7n+ihQOoUojL7WOfqx5u7iev3V34HrLg/kyzdN7P3ctExKt+8dMyJOS9LD6sU8uGbwTxnD/LC5c3DL3Lg9165zUM8xzRfq+T1QqHwSPpJYyPa1+Hn4DQHLjgl1RgCJAbumzTyffwHNnidIAWM9bNn8yB4PoVpy51v3buuOGuz07Pn//h6vt46W6cQHYY1uwSEYR/B+EI/sIH5ZTmrxdwPA8TJmcZhBOY4wnjn38B+xh1+A== +api: eJztWN1v2zYQ/1c4Yg8r4MZuGhirXgY3KbCh2Fqk7l4SLaClk8WWIlWSSm2o+t93Ryr+Ur7etgc7QCQej3fH3939RKnlObjMytpLo3nCPztg46UVdTluw+VG5t24MjkoJrXzIPITPsJFtYVMeMh54m0DI+7F0vHkigdVno64hW8NOP/W5GuetAduzk1VK/DAomVjWS2sZ6ZgvuyF5CYz2oP2tF7UtZLoEdePvzgy0nKXlVCJofULKKSWNCCLgn2VOkdrfl0DzgprxRqH0kPlaLHR8KHA2Ns7DbP4ApmnFdIrEnzyVurlezLTjR5W+6upFmCfVHtrjAKhn9S7QHznsoInFWe0o2eZe1IpJmb1oN4+0DPmJOmzXGYkEnbNvpdggQml2FdYOyZ0zm6FwlJgAuUuIOkG2F6ggeg07UYcVoLMhpwU38iTx1I6QS+AK22jPcJyE9KacKn969N7QiNtVgrHphglTlJBVVgXVVPx5BXei1W8n9JGd9w4k0mhbhxkjZV+faNDWoeO416e6bkW3oOl+X9++e2n6XT6YzKZ/HhzfZ23p90LurzuXuLMZPIiysKgPYtzZ93P/CDKhXAERm1NDdZLcAEtLSoCta/4w0CpJ6XdNu1+4HNsPVoR21A6lmExmAYFVAUnIYDefrgM7Q/tkeJdW1twprEZnAwi2bEceGRjeVtXV9HJqK+gdOgNF6Ib4VmUL+ARp4VQDqjU9iBFIIlZRpywDWy2RTp9COrCWN/oHTR2S3UICNaURUqLNRIa41E4nNMHlh+szqGvqMruVFlU3aQ3bvce92mXbvszdiX+SM3VRgdoWn46mQyZ98N7Jnc4nKGXps7pOcFck2XgXNEotT5S+5Haj9R+pPYjtf9fqP3sPjb/E/laLCFCD6taCXwFCNCDtcbus7iHlR8HlX3+7mmmL6QuuqvAl4b2jb2TlbGHShzGNw0cO7C3uIeQjcYqnCq9r10yHrelcb5L2hqT06HmrbBSLFR8KNFc3EchGoW3XJlMqCBGt7Rmf/rXN7hxDAlRoUfP5fal5d2RqI5EdSSq/5SopC5M4JCesC4RSG/YucHjxuW7T3M2+/gHUQAaiR7/fhXb3PlKBB7qt3B1sflgkbJZntMXh3gwDQnaAEKnSzyrbj5A7O2n3dLdc7+T9OS3w40YXuCztqe8nS8mkbyueNtStj9b1XUkRkaya5SnW66jERoq0QvCToWAB7JwxAvxvZyTW1LH1NKx+PCATcmNK2Z4KK/9o7rpDl1/nM3Pf6fi7L/qUOwotuI7ZRD/J/wa/3BgAmiBlIO85UroZYOPE9SJhun3Lw0mV6E= sidebar_class_name: "patch api-method" info_path: versioned_docs/version-3.X/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,15 +22,22 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

[Deprecated] Add or update the current defined model.

+

+ [Deprecated] Add or update the current defined model. +

- + + + - +:::warning deprecated -:::caution deprecated - -This endpoint has been deprecated and may be removed in future versions of the API. +This endpoint has been deprecated and may be replaced or removed in future versions of the API. ::: @@ -38,1100 +45,7161 @@ Use /graph/{graph_id}/model instead. ## Request -

Body

array
- -Complete model or part of the model. - -
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
- -OK if the model is updated successfully - -
Schema
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
- -Message that explains the error - -
Schema
    - -string - -
+ + +
+ +

+ Body +

+ array + +
+
+ + + Complete model or part of the model. + + +
+
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+
+
+ + +
+ + + OK if the model is updated successfully + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+ + + Message that explains the error + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/deprecated-get-the-currently-defined-model-as-svg-uml-image.api.mdx b/versioned_docs/version-3.X/reference/api/deprecated-get-the-currently-defined-model-as-svg-uml-image.api.mdx index a68097438..3debe9114 100644 --- a/versioned_docs/version-3.X/reference/api/deprecated-get-the-currently-defined-model-as-svg-uml-image.api.mdx +++ b/versioned_docs/version-3.X/reference/api/deprecated-get-the-currently-defined-model-as-svg-uml-image.api.mdx @@ -22,15 +22,22 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

[Deprecated] Get the currently defined model as svg uml image.

+

+ [Deprecated] Get the currently defined model as svg uml image. +

- + + + - +:::warning deprecated -:::caution deprecated - -This endpoint has been deprecated and may be removed in future versions of the API. +This endpoint has been deprecated and may be replaced or removed in future versions of the API. ::: @@ -38,8 +45,107 @@ Use /graph/{graph_id}/model/uml instead. ## Request -

Query Parameters

- -Returns the model as uml diagram in svg format - -
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + +
+ + + Returns the model as uml diagram in svg format + + +
+ +
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/deprecated-get-the-currently-defined-model.api.mdx b/versioned_docs/version-3.X/reference/api/deprecated-get-the-currently-defined-model.api.mdx index a0fb12de3..4e45504e2 100644 --- a/versioned_docs/version-3.X/reference/api/deprecated-get-the-currently-defined-model.api.mdx +++ b/versioned_docs/version-3.X/reference/api/deprecated-get-the-currently-defined-model.api.mdx @@ -5,7 +5,7 @@ description: "Use /graph/{graph_id}/model instead." sidebar_label: "[Deprecated] Get the currently defined model." hide_title: true hide_table_of_contents: true -api: eJztXFlv2zgQ/itcYR8awJu4aRFs/bJIDxRFgW7RpvtiewNGoiO2EqmSVJvA1X/fGVIHZclp0iOos3yyxWNm+M1wDgGjdZQwHSteGC5FNIveaUYOzhUt0oO1/TnlSXWQy4RlhAttGE32owlsKhSLqWFJNDOqZJPI0HMdzeaRXRotJ1FBFc2ZYQqH15GAB6C/yqix+32mL1bEEiEmZSTlTFEVp5dErkgs8yJjF+QDF4kmXBPcb5hgyYSkMku4OCc0y0ihZMGU4UwTKhI7lDN1zhL4MTShhqLUHJl9LJm6hAcdpyyn0WwdmcsCRTuTMmNUWOlWtMxMNFvRTLOqgtMopgspNNO44XA6xZ/+IU5A9oxrg2Ijfysyco2lAIkN7qBFkXGADXYcvNe4be3J0af3lK244PhgKVp6QK0WlipF8RTcsNzKJAX7e2WRrlfIs/csRqxBmBvPdHgi7dVH4eGkjQLYB0rE86/KLLskH0ua8RUH8FHpKD3q1cpfVXACbjKk8xIGHlPNIsQ34Ugr54IaqZBZLcHlK2c3qhSG5+y0RiEHJFEIxM+JM4tiruIyo+reWzuC5Pes0s2DQ0/8wem9jRytzW1cboIAsvG8zEexBh7snKmomrRDoszPcGQ5hpOlRTPyiWZlDRDYdrMFj3fx43g5Wlt5MeEYbTOsAdsRHgCl/Az6tjz0BhOCHOBOg7MgKVOsZwSv7JKX1jasro4eBl3thK5WmaQm6GondJXI8gyHg7J2QFlNHvIt2mooPnY0Wv0D3++i9xQI+MQwFn83wRMg4ogiGH1D68X7kdzDKWzeDbgw34SQxj21pj/x0ztEwzvHqMXUAti0pdXlIIfpTmcNb3BZTjMmzk16veypuRBuT8u03uFuxM0IotVfRbDAZFpdM7lTYPoXBan3YLJOjU+QpFQTIwlN0MDh3w0uVifSte9VzfSqe9Ulgr6j+L8lxj/C6Qc7/mXsuCloOuV14WOvdYBbp+u0bdt0kylsmw/B6e4Ep5DJ/dxMLkScEHHuUsQJ1eOv73PCK7Qd0lV4hbY7ugqv0HZIWW2V0unEKzr2olB03FbRMV7zhcw4ZMYhMw5BIWTGQVchM95xXYXMeIeUtTvv77ttfma8F921zLif998oNb71BLjPkAvB1Jjmb1cub/AYr1aoMUKNEWqMEF5DjRF0FWqMu6GrUGPskLJ+Wo3RLwn8V/nh7ftXa4zdqy/OaN1v9Y1J2AtBYiCBrLkAm+WGith2mQF0CbZXgZWjUMio6dcaaH6D+UiTFjad9XvQGv347Wsjgm8B2rXKXQfpDllg1hQKeIRtZvp1ZfXsyyep2MeSK+aT9TvmxlDhG2Swga8hQ6QiQrpewF633Qaxr53hrQQI0jKnAkjThMLlIt6KkaN4xvfaH7Tu77QUH4T8LE5xvd5yVl/ebUbndyRCVUHjmBUG2xZt+YFDcHrbMAhYcGHt0PVOgii6hOVaS2X9jRVjA2Ee4z+qbJdku7xrOmQXFE0Plq7JohF5Ec3IfGGN4/4imhD393ABHscuyphh3poHMEGqBZ554DOSxLYm0uz1VZdl202tfCU8cZdkq3/qn/yYaOvjSNJB8NkWbrbpkl26DtA6hiHOjqn+tTxdv9RDddZOu/J0N69FiQzTZh8OjGGiH4naOLOJEq62le0RAAaTaBRt8nPfS06OEHOPjZYxp9mpZnEJHvPytM4xBoy3wDLOuS3Yo3/v/fXb0dHRl+l0+uXRYpGsD6s9/HlQ/QEz0+meG7MP64du7mH1e7QhJbrsDb11Tca1u90UtPNgrmV5qM+e80PnLUsYQDvYtwLU9O3PkP5V/hlfQ2hZqpjtDyTxKNsu6pZyZ+Jzx2RSG/NyyA02Otfixs/YFUydo11uQApAYkvypIm7cw/p5TaoV1KZUnho+KY6BARsSjFhnI3YO3olHFqLDcpbrXPIyy0lzdImj20Dgj3uCPulfz+bfBAvcs5MKlGSc2acTafw4Jrj4Vkz9anpdi9VBlOpMYWeHRysU6lNNVsXAFYFKz9RxTFQWWeDc87B12ElymRMMzuMyQjs6U//+Wg6RZGWmFyupPVUtbRvQN1GkicS3N6bZ29PyPHrF8gPxHK4/HPf0dQmdwl6DfT8advQvyTPmbHGUysLPJxLlhIXoPY30V53Le7X/X5A7VoNuzAHRUa5QLEsaOsaV+9LAg6hebReoy2+U1lV4bBr5Ee0E64RzmQ8JPvi3daXBkbPB8Epar+AYI0fHm00aAwCToMBIAWU8M06HM3tObbZg7dr8CEBpNLa5/NnJ2Ag/wEChN3M +api: eJy9Vt1v2zYQ/1c4Yg8r4NluWhirXoasKYpiwDa06V5SL6Clk8WOIhXylMZQ9b/vjpRjxcrX0/wi83ifP/54x04WEHKvG9TOykx+DiAWW6+aatHFz6Uu+kXtCjBC24CgirmckVHjIVcIhczQtzCTqLZBZhcyqsr1TDbKqxoQPIs7aWlB/kujMNqPg34oRXQisAJRafDK59VOuFLkrm4M3Ih/tS2C0EGwPYKFYiYqZwptt0IZIxrvGvCoIQhliyiqwW+hoA+qQqHirDUHu2rB72gR8gpqJbNO4q7h1DbOGVA2Zleq1qDMSmUC9D1V4yE0zgYIbHCyXPLnbhHnlLvRATltjh9T5qi5s5QxsoVqGqMJNrJYfA1s1o3yuOvvDEptNS+ix+iPvA3JKu8VV6ER6piTs/BnGZEeNNzmK+SMNWo0LPiEnuD6nd30s4fV/mjrDfgn1X5LaD2pd0YkOdc1PKl4yhU9y92TSm8Tax7Uuwv0qQia9UWhcxYpvxPfKvCQjhF2iVPXyrRML5KHiGSYYHtGDlLQdT+TcKPYbTyT8oojIQScUxQgS99aJFgu47FmRE18dXJPaqwtKhXEirKkTSZUTbyo21pmL+m/ukn/V1zoKExwuVbmMkDeeo27SxuPdRo41fLMyA1fPs/7//z06w+r1er7crn8/ubLl6I76V/w51X/M+0sly+SLC6612nvdf+jPMpyowKDcbi+414xMP44UQ9XrfaHzjO9hmzBlwYr6hjcQlxLAmbBPCYw+I+fqf+pP1ZM/kBQI3Ctz2E+yWTkOTbDW88HXl2kILOBQetpNDKkMApFkm/gkaCpO62PICUgubPMJGMbW/IB6fVDUJfOY2tHaIypOgWEOOWppSWOxIvxKBwh2CPPD7JzGiupir2qSKq3x5vKvSf8mtv2/n6mW8k/ujKAleNMtoCJ0xUt0ozjuQD+ej+0Wm9oq0JsQrZYdJUL2GddQ2D1pHmtvFYbk2YC76UmPswOaVyuTBRTULa5u/3LG5oifRwu2pYuDqIh24903OjEW0e95uO7T+fi9K8PHI/SSrj8/TL5DFirOEQGoC/ObufyWrwHjOQZDsvsiFM0UngmcqnzY7S7w6R67jNgaKwIN7hojKL5SmlF0LoB19GDICF0IbuOufjZm75ncZrHjHahA8O5Z/Yj6f1fD4Z766OJcHjIRPLTUvI57glB1fAAqAglIjWXlmxO8xyasdXkPcBebvn5/t05EeQ/rwVOqA== sidebar_class_name: "get api-method" info_path: versioned_docs/version-3.X/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,15 +22,22 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

[Deprecated] Get the currently defined model.

+

+ [Deprecated] Get the currently defined model. +

- + + + - +:::warning deprecated -:::caution deprecated - -This endpoint has been deprecated and may be removed in future versions of the API. +This endpoint has been deprecated and may be replaced or removed in future versions of the API. ::: @@ -38,548 +45,3588 @@ Use /graph/{graph_id}/model instead. ## Request -

Query Parameters

- -The list of all kinds. - -
Schema
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The list of all kinds. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/evaluate-a-cli-command.api.mdx b/versioned_docs/version-3.X/reference/api/evaluate-a-cli-command.api.mdx index 212027081..46f5e7d42 100644 --- a/versioned_docs/version-3.X/reference/api/evaluate-a-cli-command.api.mdx +++ b/versioned_docs/version-3.X/reference/api/evaluate-a-cli-command.api.mdx @@ -22,34 +22,251 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Evaluate a cli command

+

+ Evaluate a cli command +

- - - + + + This method can be used to analyze if the command can be interpreted without executing it. When this method returns a 200 OK, the command can be parsed and evaluated. ## Request -

Query Parameters

Body

- -The command will be sent as request body. A command can contain multiple command line separated by semicolon. Every single line can contain multiple commands that are combined via the pipe operator. - -
    - -string - -
- -When the command can be evaluated. - -
Schema
  • Array [
  • ]
- -When the command can not be evaluated. - -
Schema
    - -string - -
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The command will be sent as request body. + A command can contain multiple command line separated by semicolon. + Every single line can contain multiple commands that are combined via the pipe operator. + + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + When the command can be evaluated. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+ + + When the command can not be evaluated. + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/execute-a-cli-command.api.mdx b/versioned_docs/version-3.X/reference/api/execute-a-cli-command.api.mdx index d99701360..19ae44dbe 100644 --- a/versioned_docs/version-3.X/reference/api/execute-a-cli-command.api.mdx +++ b/versioned_docs/version-3.X/reference/api/execute-a-cli-command.api.mdx @@ -22,26 +22,257 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Execute a cli command

+

+ Execute a cli command +

- - - + + + The body defines the command to execute. The command is executed and the result is returned to the client. Request and execution are synchronized: the request is done, when the command is done. ## Request -

Query Parameters

Body

- -The command will be sent as request body. A command can contain multiple command line separated by semicolon. Every single line can contain multiple commands that are combined via the pipe operator. - -
    - -string - -
- -The result of the command. - -
Schema
  • Array [
  • ]
Schema
  • Array [
  • ]
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The command will be sent as request body. + A command can contain multiple command line separated by semicolon. + Every single line can contain multiple commands that are combined via the pipe operator. + + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The result of the command. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/explain-the-search-execution-plan.api.mdx b/versioned_docs/version-3.X/reference/api/explain-the-search-execution-plan.api.mdx index 1beeb537d..49085c672 100644 --- a/versioned_docs/version-3.X/reference/api/explain-the-search-execution-plan.api.mdx +++ b/versioned_docs/version-3.X/reference/api/explain-the-search-execution-plan.api.mdx @@ -22,26 +22,238 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Explain the search execution plan

+

+ Explain the search execution plan +

- + + + - - -Explain the runtime characteristics of a search without performing the search. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age\>23d or desired.clean==true or metadata.version==2) +Explain the runtime characteristics of a search without performing the search. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age>23d or desired.clean==true or metadata.version==2) ## Request -

Path Parameters

Query Parameters

Body

- -The search to perform - -
    - -string - -
- -The execution plan of the database - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The execution plan of the database + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + + + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/get-a-configuration-by-its-id.api.mdx b/versioned_docs/version-3.X/reference/api/get-a-configuration-by-its-id.api.mdx index 1191a813d..3690608d4 100644 --- a/versioned_docs/version-3.X/reference/api/get-a-configuration-by-its-id.api.mdx +++ b/versioned_docs/version-3.X/reference/api/get-a-configuration-by-its-id.api.mdx @@ -22,26 +22,179 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get a configuration by its id

+

+ Get a configuration by its id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Fetch a configuration by id. ## Request -

Path Parameters

- -The configuration - -
Response Headers
  • Resoto-Config-Revision string
    - -The revision of this config - -
Schema
- -No configuration for this key. - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The configuration + + +
+ + + Response Headers + +
    +
  • + + + Resoto-Config-Revision + + string + +
    +
    + + + The revision of this config + + +
    +
    +
  • +
+
+ + + + +
+ + + Schema + +
+ +
    + + + +
+
+
+ + + + +
+
+
+
+
+
+ + + No configuration for this key. + + +
+ +
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/get-a-configuration-validation-by-its-id.api.mdx b/versioned_docs/version-3.X/reference/api/get-a-configuration-validation-by-its-id.api.mdx index 86e61d935..c0032651f 100644 --- a/versioned_docs/version-3.X/reference/api/get-a-configuration-validation-by-its-id.api.mdx +++ b/versioned_docs/version-3.X/reference/api/get-a-configuration-validation-by-its-id.api.mdx @@ -22,22 +22,210 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get a configuration validation by its id

+

+ Get a configuration validation by its id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Fetch the validation of a configuration by id. ## Request -

Path Parameters

- -The configuration validation. - -
Schema
Schema
- -No config validation for this key. - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The configuration validation. + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+ + + No config validation for this key. + + +
+ +
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/get-a-list-of-all-running-batch-updates.api.mdx b/versioned_docs/version-3.X/reference/api/get-a-list-of-all-running-batch-updates.api.mdx index 21645a807..f65b6ef14 100644 --- a/versioned_docs/version-3.X/reference/api/get-a-list-of-all-running-batch-updates.api.mdx +++ b/versioned_docs/version-3.X/reference/api/get-a-list-of-all-running-batch-updates.api.mdx @@ -22,18 +22,142 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get a list of all running batch updates

+

+ Get a list of all running batch updates +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Get a list of all running batch updates. ## Request -

Path Parameters

- -Ok message - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + Ok message + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/get-a-node-with-the-given-node-id.api.mdx b/versioned_docs/version-3.X/reference/api/get-a-node-with-the-given-node-id.api.mdx index 40fd98b68..1efb2aea1 100644 --- a/versioned_docs/version-3.X/reference/api/get-a-node-with-the-given-node-id.api.mdx +++ b/versioned_docs/version-3.X/reference/api/get-a-node-with-the-given-node-id.api.mdx @@ -22,18 +22,139 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get a node with the given node id

+

+ Get a node with the given node id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Get a node with the given node id ## Request -

Path Parameters

- -Return the defined node - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + Return the defined node + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/get-all-configuration-keys-that-have-a-model-defined.api.mdx b/versioned_docs/version-3.X/reference/api/get-all-configuration-keys-that-have-a-model-defined.api.mdx index 3d0e7d384..6abc234dd 100644 --- a/versioned_docs/version-3.X/reference/api/get-all-configuration-keys-that-have-a-model-defined.api.mdx +++ b/versioned_docs/version-3.X/reference/api/get-all-configuration-keys-that-have-a-model-defined.api.mdx @@ -22,22 +22,111 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get all configuration keys that have a model defined.

+

+ Get all configuration keys that have a model defined. +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Get all configuration keys that have a model defined. ## Request -
- -All configuration keys that have a model. - -
Schema
  • Array [
  • - -string - -
  • ]
+
+
+ + +
+ + + All configuration keys that have a model. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/get-all-configuration-keys.api.mdx b/versioned_docs/version-3.X/reference/api/get-all-configuration-keys.api.mdx index 5b4bd3e6d..99064182b 100644 --- a/versioned_docs/version-3.X/reference/api/get-all-configuration-keys.api.mdx +++ b/versioned_docs/version-3.X/reference/api/get-all-configuration-keys.api.mdx @@ -22,22 +22,111 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get all configuration keys

+

+ Get all configuration keys +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Get all configuration keys in the system. ## Request -
- -All configuration keys. - -
Schema
  • Array [
  • - -string - -
  • ]
+
+
+ + +
+ + + All configuration keys. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/get-information-about-cli.api.mdx b/versioned_docs/version-3.X/reference/api/get-information-about-cli.api.mdx index 0f07274d7..a60815dec 100644 --- a/versioned_docs/version-3.X/reference/api/get-information-about-cli.api.mdx +++ b/versioned_docs/version-3.X/reference/api/get-information-about-cli.api.mdx @@ -5,7 +5,7 @@ description: "**Experimental**: This API is not stable and might be subject of c sidebar_label: "Get information about CLI" hide_title: true hide_table_of_contents: true -api: eJztWN9rGzEM/leMn7YQmmxPWxiDUkpXGKy02V7WEBxHybnz2Tdb1zYc+d8n+S7Nr7YpbSkM8pSc7Pv0Sfp0Mq7kGKIOpkDjnezJVuv4toBgcnCobKvVE/3MRHF4dirox3kUEdXIglBuLHIzzVCMQMRydAUahZ8InSk3hYMvo9D5eulOAIVxEx9yxQ6EGvkSxdH300sn2xLVNMreb6mtkYO2DBAL7yKQrZIfu13+WWfnVA7tdUCikYEt2LW6VsYmctrnOa3EA3KivUMKhsFUUVij04udq8iIlYw6g1zxP5wVQD58CoVeXHd9uhUFZsCR0M4ieMoZmpr5wvk2/UNr7yHJiahdqxDUjB4NQh6fQ0kxoQXwFjHO3gpqxGDcdAu1T2HxTs5oE+IC8UDO20RymtC8gx8Tql71ZPavzEYQk5J1mmgByVZjHF4rW67ijry3oNw9yRuzFCCSnmroBZxooCibCSzBFz5GQ1Wr8VfDeyjsJqD5puOzBqkGj4JqSO6pudbC0coNvdZlGOalRVOQZ6SmjC+LjFBFQhULVJFQk8vEZ5iZulceL8s32tUwbwKpC7QZBrfmEOH2KZDcxbx1R6kJFQ1aRqIdR/WGwzDllb3m9pp7W80NaInn0W5fF5kPKFZsd2RfxjPBRF8G/TwJLsLlNFrrb4D+OlEDCpKgSfPl3cSEiMvNNHF41Bv3/qH0JHOAwioNnMad83B1r7gxmAkSTWAJ1f3V3mpuNR4ndsqerbX5Rjfw0LJGxSE39U4aaSvEV3BHzUkR4RNdisX29O052J8K9l/o/Rd6fyrYa+4/1Nz+VPDIqWDdzuOKjWzOATM/JvsUUpcqzOiho63ppGxSRBCuIcQ0YMpgaTVDLGKv06kyH3HeqwrK51yyhoLh4Zp0ymv1EJ4okhu9Zr1WNplTS4WN5U+fu11mNVipY8P5HKJHL458AHF+fNHnuxH2R7TqZP760LQpUsDL74t88C5ksxzV8s7ije9japWwpDp0FDGOA0lprppi1Hc1TVIoOXVif8uqGtGh6Wew8zmb/5YQZmQfLOvAT0nZagwh1e8PzPgkpDUUKJum56/Y5iUNF+FOGSfHfarLP9UZhgE= +api: eJztVlFr2zAQ/itCT1sISbenLYxBKKUrDFbabC9tGLJ9sdXJkied0wbj/747OWniuSVjjD31ydbpdPfd991ZbmQGIfW6Qu2snMnR6OyhAq9LsKjMaDQTi0IHMb+8EPSwDkVAlRgQymai1HmBIgER6uQOUhRuJdJC2RwmHxI//XhrzwGFtivnS8UJhEpcjeL088WtlWOJKg9ydiNTo+VyLD2EytkAZGvk25MTfvTRWVXCuB+QYBRgKk6t1kqbCC51ZUk7YUJJUmeRiuFgqqqMTuPB6V3giI0MaQGl4jfcVEA5XCyFDvZTXwyqwAK4EvKsvCPOUHfId8mH8OfGPAGSiehSK+/VhpYaoQx/A0kxoF3gATBm7yBqQK9tPoi6oLLYkxndlriLOJHtmEDmMZqz8GVF6jV99O14CBs1GjZQqNMu0tznsl1SNNbyOKbrwnkUB7aIhHU/fvYTdwfCAz5XUHC1Tw+JSZwzoOwTfGfcPRCoBbtQ2zA8GsoYdw/0akUXUFQu6KjNq5X2AffOpBaPibavKX/7FD3R7KEyKgWexKO9dOgr7jUWIq29p5VYK1PDvsUeNVFZFtEpc9lrkj6ZjEMZrcJ3bomjMKIrhH+QjiaAKsI/TCl27rFzJy8T9TJRw4nq21lqNrK5BCxcRvYcmNxKYUGLKV1L08gmVQR+DT5EcWpvaLdArMJsOm0KF7CdNRXx2ZLnWnnNjRkV5b2ugVeqNvQqjUuViWbKy2f62+/e07VHmJYHOm4xX0Fw6MSp8yCuzq4XfCdzPoLVkfntTRczIBW870757B38uxzN/q78z/8BXZdwS01pjLXlQiLNzVaM7h9hSwqR0xF7I5smoQ/OV2/als0/a/Absi/3OvAqdrbKwEf9fsCGvyJpChVGwfgDORv+HLAIj51xfrYgXX4BGkUpGA== sidebar_class_name: "get api-method" info_path: versioned_docs/version-3.X/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,34 +22,683 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get information about CLI

+

+ Get information about CLI +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Get information about CLI ## Request -
- -name, information and help of available commands. - -
Schema
    commands object[]
    - -All available commands - -
  • Array [
  • args object
    oneOf

    MOD1

  • ]
  • replacements object
    - -All available replacements with current value - -
    alias_names object
    - -All available aliases - -
    alias_templates object[]
    - -All available alias template name. - -
  • Array [
  • args object
    oneOf

    MOD1

  • ]
+
+
+ + +
+ + + name, information and help of available commands. + + +
+ + + + +
+ + + Schema + +
+ +
    + +
    + + + + commands + + object[] + + +
    +
    + + + All available commands + + +
  • +
    + Array [ +
    +
  • + + +
    + + + args + + object + +
    + +
    + + oneOf + + +
  • +
    + Array [ +
    +
  • + + + + + + + + + + + +
  • +
    + ] +
    +
  • +
    + + + + + + + + + + + + + + +
    +
    +
    +
    + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    + + + + replacements + + object + + +
    +
    + + + All available replacements with current value + + +
    + + +
    +
    +
    +
    + + + + alias_names + + object + + +
    +
    + + + All available aliases + + +
    + + +
    +
    +
    +
    + + + + alias_templates + + object[] + + +
    +
    + + + All available alias template name. + + +
  • +
    + Array [ +
    +
  • + + +
    + + + args + + object + +
    + +
    + + oneOf + + +
  • +
    + Array [ +
    +
  • + + + + + + + + + + + +
  • +
    + ] +
    +
  • +
    + + + + + + + + + + + + + + +
    +
    +
    +
    + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/get-root-of-a-specific-graph.api.mdx b/versioned_docs/version-3.X/reference/api/get-root-of-a-specific-graph.api.mdx index 1dd03e4ad..c00e772d5 100644 --- a/versioned_docs/version-3.X/reference/api/get-root-of-a-specific-graph.api.mdx +++ b/versioned_docs/version-3.X/reference/api/get-root-of-a-specific-graph.api.mdx @@ -22,22 +22,147 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get root of a specific graph

+

+ Get root of a specific graph +

- - - + + + Get root of a specific graph ## Request -

Path Parameters

- -The graph with the root node - -
Schema
- -The graph does not exist - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The graph with the root node + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+ + + The graph does not exist + + +
+ +
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/get-subscriber-by-id.api.mdx b/versioned_docs/version-3.X/reference/api/get-subscriber-by-id.api.mdx index f68f13fed..b657be661 100644 --- a/versioned_docs/version-3.X/reference/api/get-subscriber-by-id.api.mdx +++ b/versioned_docs/version-3.X/reference/api/get-subscriber-by-id.api.mdx @@ -22,34 +22,289 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get subscriber by id

+

+ Get subscriber by id +

- - - + + + Get the subscriber with a defined id. ## Request -

Path Parameters

- -The subscriber - -
Schema
    subscriptions object
    - -The dictionary of subscriptions, where the key is the message type - -
    property name* Subscription
    - -The definition of an action subscription - -
- -No subscriber found - -
Schema
    - -string - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The subscriber + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
    + + + + subscriptions + + object + + +
    +
    + + + The dictionary of subscriptions, where the key is the message type + + +
    +
    + + + + property name* + + Subscription + + +
    +
    + + + The definition of an action subscription + + +
    + + + + + + +
    +
    +
    +
    +
    +
    +
+
+
+ + + + +
+
+
+
+
+
+ + + No subscriber found + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/get-the-currently-defined-configuration-model.api.mdx b/versioned_docs/version-3.X/reference/api/get-the-currently-defined-configuration-model.api.mdx index 60679791f..cd1f05f25 100644 --- a/versioned_docs/version-3.X/reference/api/get-the-currently-defined-configuration-model.api.mdx +++ b/versioned_docs/version-3.X/reference/api/get-the-currently-defined-configuration-model.api.mdx @@ -5,7 +5,7 @@ description: "Get the currently defined configuration model." sidebar_label: "Get the currently defined configuration model." hide_title: true hide_table_of_contents: true -api: eJztXFlv2zgQ/itcYR8awJu4aRFs/bJIDxRFgd2ize6L7TUYiY7ZSqRCUm0MV/99Z0gdlCWnSY+gzvLJNkXO8c1wDgHjTWTohY4m0yiWYskvFh9pyhNquBTRfBTlVNGMGaZwyyYS8COaRMuUmmgUJUzHiud27yR6tSRGFWxEzIqRFWeKqni1JnJJYpnlKbsiH7hINOGa4HnDBEtGZCXThIsLQtOU5ErmTBnONKEisUsZUxcsgQ9DQSh6CFw5MrssmFrDDx2vWEajySYy6xxFO5cyZVRY6Za0SE00WdJUs7IEbRTTuRSaaTxwPB7jR1eJM5A95dqg2MjfioxcAR2Q2OAJmucpjy1ER+81Htt4cnTpPWdLLjj+sBQtPaBWCUuVoqgFNyyzMknB/lpapKsd8vw9ixFrEObWT1o8kfbyUng4aaMA9p4RUf9lkaZrclmAIyw5gI9GR+nRrlb+sgQNuEmRzmtYeEo1ixDfhCOtjAtqpEJmlQTrP53fqEIYnrFFhUIGSKIQiJ8TZxLFXMVFStWDd3YFyR9Yo5tHx574Pe29gxy9zR2cb4MAsvGsyAaxBh7sgqmoHDVLosjOcWU+hJOlRVMCN6aoAALfro+gelffj5ejtZMXE47RLsfqsR3gAVDKT2Bvy0NvMSHIAe60gQ0rpljHCf60W15b37C2OnkcbLUXtlqmkppgq72wVSKLc1wOxtoDY9V1yNdYq6b41NFo7A98v4necyDgE8Nc/M0Ez4CII4pgdB2tk+8Hag9nsGm74NJ8nULq8NS4/sgv7xANT49Bj6kEsGVLY8teDdNqZx2vd1kWKRMXZnWz6qm+EO5Mw7Q64W7E7Qii119HMMdiWt2wuFPg+lc5qc5gsU6NT5CsqCZGEpqgg8O3W1ysVqQb36uK6XX3qi0E/UDxfyuMv0fQD3780/hx3dC0xmvTx0ETAHc+rsq2XY/rSmHX85Cc7k9yCpXcj63kQsYJGec+ZZzQPf78MSe8QtsjW4VXaPtjq/AKbY+M1XQprU28puMgCk3HXTUdwz1fqIxDZRwq45AUQmUcbBUq4z23VaiM98hY+/P+vj3mV8YH0X2rjLt1/61K4zsvgLsMuRBMDVn+buXyFk/xaoUeI/QYoccI6TX0GMFWoce4H7YKPcYeGeuH9RjdlsB/lR/evn+xx9i//uKcVvNWX1mEvRIkBhLImgvwWW6oiO2UGUCX4HgVeDkKhYzqea2e5beYDwxp4dBZdwatto8/vjYg+A6g3ajcTZBukQVmdaOAKuxy0y8bq+NfPknFLguumE/Wn5gbQoVvkcEBvpoMkYoI6WYBO9N2W8S+pMM7CRCsiowKIE0TCpeLeDsGVPGc742/aMPfohAfhPwkFrhf79DVl3eX0/kTidBV0DhmucGxRdt+4BJobwcGAQsurB9mMmEpYq0L2K61VDbeWDG2EOYxfqPKTkk229uhQ3ZF0fVg64bMapFn0YRMZ9Y5Hs6iEXFfj2cQceymlBnm7XkED0g5Q517MSNJ7GgiTd9cd1l23dTSN8Izd0l2xqeu5qdE2xhHkhaCT7Zxs0OXbO0mQKschjg7pvrninTdVg/NWQXt0rPdtBIlMkybQ1AY00Q3EzV5Zhsl3G072xMADB6iUzTFz0OvODlBzD02WsacpgvN4gIi5npR1Rg9xjtgGebcNOzRvw/++OXk5OTzeDz+/GQ2SzbH5QF+PCp/gyfj8YFbsz82j92zx+Wv0ZaUGLK37NYOGVfhdlvQNoLZaeMBe3aCHwZvWcAC+sGhFaCibz/69K+Lz/gaQstCxeywJ4lH2U5UN5RbF586JqPKmed9bnDQhRa3fs6uYeoC7XwLUgASR5JHdd6dekjPd0G9lMoUwkPDd9U+IOBTignjfMTe0Wvh0FpsUd7pnX1ebiupt9Z1bJMQrLoD7Of+/azrwbJXXbxkxkJcqQRxwJUUCXHj8IWyc94uqNvbx8xKoiIXzLgrsYIfR263PnLBH2I/Ux/roflCpbBlZUyuJ0dHm5XUppxscsC8hJ0fqeKY72zMwmcuT1TZKUplTFO7jDUNnOk+/v3JeIyazbFGXUob8Cql34LXGEmeSYieb1+8OyOnb14hPxDL6f7PQ0dTm8zV+ZW9bo3JcKo37Moc5SnlAtlYEDYVXvWfDeAtcYiB/E73abTZoLP+rdKyxGU36Y84JlwjUMlwzt60I/p39lcEg5pC9oqav0iwtwN+2nRRmxq0wQyxgkoHX72Dau7MqS0vvFO9fxpAKo0HvnxxBqb/D3HI1jQ= +api: eJy9Vt9v0zAQ/leMxQNIZS0DVSwvaDCEEBKgbfCylclNLo3BiTP7MlZl+d+5s9OubTYGL/QltX0/P39351aiWniZnMnUVrleXFwpozOF2lZyNpK1cqoEBMciraxoIROZG4VyJDPwqdN1kE3kh1yga2AksABRaHDKpcVS2FyktqwNXIufusq80F6wPkIF2UgU1mS6WghljKidrcGhBi9UlYWtEtwCMvqgoqDUHnnV7OyyAbekhU8LKJVMWonLmkObW2tAVSG6XDUGZZIr46HrKBsHvraVB88K+5MJf7aTOKXYjfbIYbP/EDJ7JXQoYmQNVddGpwGi8Q/Pau1GHNv2jiDXleZFsBjskbU+WOWc4iw0QhlishV8zgPSvYSd/4CUsUaNhjdO0BFcH9lMN7pf7FNTzsE9KPYmovWg3JFCONUlPCh4yBn9lbkHhd5G1twrtw30ofCa5UWmU95Sbil+FeAgXiMsI6eI3Q3Ti/Z9QNIPsD0iA9HprBtJuFZsNtxJfsmeEDzukRcgTddUSLBchGtNiJr4Yv+O0FhaFMqLKUVJh0yoknhRNqVMntN/dR3/TznRDTfeplqZCw9p4zQuL6pwrUPHMZe/9Fxz8Tk+//7k9aPpdHozmUxuDs7Ps3a/e8qfF90zOplMnsa9sGhfxrOX3WO5E+VceQbjtnw3e0XP+N1AHVw22gHthaZxRxmyBhcNFtQxuIXYhjaYBXshgN5++AztD+2xYLQHghqBbVwKe4NINiyHxri2fMurs+hk1DNoNvRGiuRGoYj7c/iD09idZjuQEpDcWUaSsQ3t+Rbp2X1Q59ZhU22gsUnVISDEKUctLXIkFMYf4fC+2rF8LzuHvqKoWImKKLq+3pjuHe5n3LZX9Rmrkn+7Lt4DBoj7lMySkKfGS5MjTrXGhXYtSpuBCdUHWFhOZAEYS6KgxThK+3GQ4/EC7mo1+xpnSKRArH0yHreF9dglbU2YdyR5pZxWcxNHC5/FWdCPIGlsqkzYpthZZ/v41QENoy7MKF3lNsyzPuljYg1a8dZSyzp+d3IqDr98YH8UVsz92/No02Opwizq7+ufMdmCdN1vEa5xXBtFY5fcBBDaHq/Vm4GrJCJG8cfcz2TbMlm/OtN1vB0HNuOYac9Arag/8LuetP/tRXFnpjQybl86oTpoKfmGVldN2fCEKEBlxHpOLeocpinUm1qDBwNbWTPw/btTuvrfB1NHEA== sidebar_class_name: "get api-method" info_path: versioned_docs/version-3.X/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,558 +22,3605 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get the currently defined configuration model.

+

+ Get the currently defined configuration model. +

- - - + + + Get the currently defined configuration model. ## Request -

Query Parameters

- -The list of all kinds. - -
Schema
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The list of all kinds. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/get-the-currently-defined-model-as-svg-uml-image.api.mdx b/versioned_docs/version-3.X/reference/api/get-the-currently-defined-model-as-svg-uml-image.api.mdx index 687f09e3d..dd823e08d 100644 --- a/versioned_docs/version-3.X/reference/api/get-the-currently-defined-model-as-svg-uml-image.api.mdx +++ b/versioned_docs/version-3.X/reference/api/get-the-currently-defined-model-as-svg-uml-image.api.mdx @@ -22,18 +22,148 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get the currently defined model as svg uml image.

+

+ Get the currently defined model as svg uml image. +

- - - + + + Get the currently defined model as svg uml image. ## Request -

Path Parameters

Query Parameters

- -Returns the model as uml diagram in svg format - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + +
+ + + Returns the model as uml diagram in svg format + + +
+ +
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/get-the-currently-defined-model.api.mdx b/versioned_docs/version-3.X/reference/api/get-the-currently-defined-model.api.mdx index d61314901..8ac0598db 100644 --- a/versioned_docs/version-3.X/reference/api/get-the-currently-defined-model.api.mdx +++ b/versioned_docs/version-3.X/reference/api/get-the-currently-defined-model.api.mdx @@ -5,7 +5,7 @@ description: "Get the currently defined model." sidebar_label: "Get the currently defined model." hide_title: true hide_table_of_contents: true -api: eJztHNtu2zb0VzhiDw3gxW5aBKtfhvSCoiiwFW22F9sLGImO2MqkQlJtDFf/vnNIXShLTpNegjrTU6xD8tx5LgqONtSyC0OnM7pSMU/pYkQzptmKW64RvKESHuiUXmiWJWcipiMqJDxnzCbwO+Ym0iKzQiHwNOFExFxasRRcE7UkFiDuKOzlV2yVpYhMc6OsApDml7nQPKZTq3M+oiZK+IrR6YbadYY7jdVCXtCiGNWcLFNmO5RfASnE4AgmQJzpKFkjB5FColfkg5CxIcIQPG+55PGIJCqNAT1haUoyrTKureCGMBk70IrrCx7DH8tiZtlhJftlzvWa9nB7rlTKmXTcLVmeWjpdstTwoligrCZT0nCDB44mE/zTVV8qjEW2kb5jGalGSgLHFk+wLEtFxPDE+L3BY5uAjza+53wppMAHh9HhA2wls0xrhlIIy1eOJyX5X0tn83KHOn/PI9Q1MHPrlUafiHt5KbtW7XOfZZ6ma3KZsxR9KCZo9MqRHP/gCtQK6/zoNQCeMsMp6jcWiGslJLNKI7GSg/Wf3m90Dn654melFlagSWQC9efZmdJI6ChPmX7wzkEQ/YEzun10FLDfkT44KNDb/MHFthKAN7HKV726Bhr8gmuKjl6CZL46R8iiT08OF0vJR5bmpYLAt6sjKN7V96Plce2kxaUntMuxOmR7aIAq1Sewt6NhtogQpAB32sKGhGvecoI/3ZbXzjecrY4fD7baC1stU8XsYKu9sFWs8nMED8baA2NVdcjXWKvC+NTjqO0PdL8J33NAECLDXPzNCE8BiUeKymg7Wivf99Qe3mCzBuDTfJVCqvBUu/4oLO9QG4EcvR5TMuDKltqWnRqmkc45XueynKVcXkCtfaPqqboQ/kxNtKqi3Y24HUL0+usQZlhM6xsWdxpc/yoj5Rks1pkNEZKEGWIVYTE6OPy6xcVqWLrxvSqJXnevmkIwDBT/t8L4ewT9wY9/Gj+uGprGeE36OKgD4M7lsmzbtVxVCrvWh+R0f5LTUMn92EpuyDhDxrlPGWfoHn/+mDO8QtsjWw2v0PbHVsMrtD0yVt2lNDYJmo4DOjQdd9V09Pd8Q2U8VMZDZTwkhaEyHmw1VMZ7bquhMt4jY+3P+/vmWFgZH9D7Vhm36/5blcZ3XgC3CQopue6z/N3yFQBP8GoNPcbQYww9xpBehx5jsNXQY9wPWw09xh4Z64f1GO2WIHyVP7x9/2KPsX/9xTkr562+sgh7JUkEKJC0kOCzwjIZuSkzUF2M41Xg5cgUEqrmtTqW3yLeM6SFQ2ftGbTKPuH4Wg/jOxTtR+VuoulGs0CsahRQhF1u+mVjtfwrRNlM+9Vow4m5Pq2ILTQ4wFehIUoTqfwsYGvabgvZl2R4p0AFSb5iElCzmMHlIsGOHlEC53sTAl34O8vlB6k+yTPcb3bIGvK7y+nCiUToKlgU8czi2KJrPxAE0ruBQdCFkM4P/RQnsGJy2G6M0i7eODa2NCwi/MW0m5KstzdDh8245obMK5bndEpmc+ccD+d0RPzPozlEHLcp5ZYHex7BAinmKHMnZsSxG01k6ZvrLsuum1qERnjmL8nO+NSW/IQYF+NI3Kjgk2vc3NAlX/sJ0DKHoZ49UfNzRbp2q4fmLIN2EdhuVrJCLTf2EATGNNHORHWe2dYS7nad7TEoDBbRKeri52FQnByjzgMyRkWCpWeGRzlEzPVZWWN0CO9QSz/lumGn/z7445fj4+PPk8nk85P5PN4cFQf451HxG6xMJgce5h42j/3a4+JXusUlhuwtuzXjzmW43WZ0e165a89W8MPgrXIAoB8c0mCI2f3p4r8uPuNrCKNyHfHDDicBZjfPXWNuXHzmiYxKZ150qcFBH1o8/JxfQ9QH2sWWSkGROJI8qvLuLND0Ypeql0rbXAbaCF21qxDwKc2l9T7i7ui16jBGbmHe6Z1dWn4rqbZWdWydEJy4PeQX4f2s6sGiU1285NapuBQJ4oAvKWIfxt194zZRyPoFt/4SJPAwdiP14001lF+MfdyHsM/1x2pyP9cp7E2szcx0PN4kythiuslA3QXs/Mi0wFTnwhWu+RRRJiaaqoilDozlDJxpL//+ZDJBoRZYni6Vi3WlvG/dcD95piBwvn3x7pScvHmF9IAtL/Y/Dz1OY1e+xC9NdQN19Od1y6/sOEuZkIjYib0pVTWj1dcHpsEXDOpvHXi5Z3SzQR/9W6dFgWA/4I86jIVBJcX9qXrTTObf2RcIemWGpEXrLyO4SwGPLktUZr6lNA/elh59QK7/qEMvO1UOl+uQnYrN2hAuVSVQcuH/AIA9v3zi6pzgYOeTByhXfTFevjgFR/wPyTUtcQ== +api: eJy9Vt1v2zYQ/1dYYg8N4MVuWhirXoa0KYpiwDak2V5SL6Clk8WWEhXylMVQ9b/vjpQcxXI+9lK/yCSPd7/73RdbiWrjZXIpS5uBkauZrJVTJSA43m5lRQuZyI1TdXGlMzmTuqJ1rbCg/xn41OkateXNiwKEzqBCnWtwwuYCaSdcJVm4VWVtWJkDb9HSloPrRjvIZIKugZn0aQGlkkkrcVuzpEenq43sutkOSW4UTix/IlOsIRgsyLhyabFlBKllo7fim64yL7QXfB+hgmwmCmsyUi+UMaJ2tgaHGrxQVRa2SnAbyOiDKlOojgffrxtwW3kA7dpaA6oK6HLVGJRJroyHrluxr762lQfPF04WC/5M6TPaI8Nm+wEyW01tRYiRb6i6NjpVfGP+1fO1doTjvr4zyHWleRE0Bn2krQernFPshUYoAyZbwR95iHkvYddfIWWuUWOI2+cQjd9YDQfkIbHfm3IN7kmxd5GtJ+XOFMKFLuFJwVP26FnqnhR6H7PmQbn7RJ8Kr1leZDrlLeW24t8CHMQwwjbm1I0yDacX7ce89hNuz0hBNLrqRhVDMcmv2RKCx2OyAlw8DRVaCVchrAmlJr4+OQCNpUWhvFgSSjrkhCopL8qmlMkr+q9u4/8lOzoy422qlbnykDZO4/aqCmGdGu5r9HmWay4+x+f/vPz1xXK5/L5YLL6//fIla0+6I/687n6mk8XiKO6FRfsmnr3pfpJ7KNfKMxl35TvuWn3G7wPdbzvTMuQbsX9Rx+AWYhva4Cw4lqNeFD5T/VN9LDj0Q+5+jUvheIJkpDm05Z3mu7y6jEZmfQatptboIplRKOL+Gh4xGrvTao9SIpI7y0wyt2E43DG9eojq3DpsqhEb41SdEkI55ailxRwJhfEoHd5Xe5ofzM6prSgqBlERRXfhje4eML/itj3UZ6xK/u2b+AgYKO5dMltinhovTw6eqaHeAAvL0DeAsQgKWszDZJy3w2zt5nEI02QBdzMM4MYZki0Qa5/M521hPXZJWxPdHUneKKfV2sSpwmdxDPTTRxqbKhO2CTbfuX/8y1uaQ10YT7rKbRhlvb/nYUaL95a61fmHzxfi9M9PbI9gRbf/fhV1eixVGEN9qJ5Bxz3+ds0V4RbntVE0Y0lxcLvtqbqUwyMiGT1Edk+W6PelbFvO0b+c6TrejnOaOcy0Z5KGjJ8g2A3YH/aQOOgzTYq7B04oClpKjs4Q5v/pzcvzPqOPxONvs4NwhodCtR3DGWDuAhFGVQEqo/JjePH4NE2hHvsxebmwX7vC+PjhghLxPzchnj4= sidebar_class_name: "get api-method" info_path: versioned_docs/version-3.X/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,558 +22,3629 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get the currently defined model.

+

+ Get the currently defined model. +

- - - + + + Get the currently defined model. ## Request -

Path Parameters

Query Parameters

- -The list of all kinds. - -
Schema
  • Array [
  • oneOf
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(StringKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(NumberKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(BooleanKind) - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(SimpleKind) - -
    - -circular(DateTimeKind) - -
    inner object
    runtime_kind string
    - -**Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] - -
    - -The runtime kind of this kind - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    minimum object
    - -The minimal value of this number - -
    oneOf

    MOD1

    - -The minimal value of this number - -

    MOD2

    - -The minimal value of this number - -
    maximum object
    - -The maximum value of this number - -
    oneOf

    MOD1

    - -The maximum value of this number - -

    MOD2

    - -The maximum value of this number - -
    - -circular(SimpleKind) - -
    - -circular(DateKind) - -
    - -circular(SimpleKind) - -
    properties object[]
    - -Defines all properties of this complex kind - -
  • Array [
  • ]
  • successor_kinds object
    - -Dictionary of successor kinds. - -
    property name* string[]
  • Array [
  • - -string - -
  • ]
  • ]
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The list of all kinds. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + + + + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + +
    + + + circular(StringKind) + + +
    +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(NumberKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(BooleanKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateTimeKind) + + +
    +
    +
    +
    +
    + + +
    + +
    + + + + inner + + object + + +
    + + + +
    +
    +
    + + +
    +
    +
    + + + runtime_kind + + string + +
    + + + **Possible values:** [`string`, `int32`, `int64`, `float`, `double`, `boolean`, `date`, `datetime`] + + +
    + + + The runtime kind of this kind + + +
    + + + + + + + + + + + + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    + +
    + + + minimum + + object + +
    +
    + + + The minimal value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    +
    + + + maximum + + object + +
    +
    + + + The maximum value of this number + + +
    +
    + + oneOf + + +
    + + + integer + + +
    +
    +
    + + + number + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    + + + circular(DateKind) + + +
    +
    +
    + + + circular(SimpleKind) + + +
    +
    +
    +
    +
    + + +
    + + + +
    + + + + properties + + object[] + + +
    +
    + + + Defines all properties of this complex kind + + +
  • +
    + Array [ +
    +
  • + + + + + + + +
  • +
    + ] +
    +
  • +
    +
    +
    + + +
    + + + + successor_kinds + + object + + +
    +
    + + + Dictionary of successor kinds. + + +
    +
    + + + + property name* + + string[] + + +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
    +
    +
    +
    +
    +
    + + +
    + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/get-the-public-keys-of-the-configured-jwt-issuer.api.mdx b/versioned_docs/version-3.X/reference/api/get-the-public-keys-of-the-configured-jwt-issuer.api.mdx index 65614bd2c..413b3e363 100644 --- a/versioned_docs/version-3.X/reference/api/get-the-public-keys-of-the-configured-jwt-issuer.api.mdx +++ b/versioned_docs/version-3.X/reference/api/get-the-public-keys-of-the-configured-jwt-issuer.api.mdx @@ -22,18 +22,91 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Get the public keys of the configured JWT issuer.

+

+ Get the public keys of the configured JWT issuer. +

- - - + + + Get the public keys of the configured JWT issuer. ## Request -
- -The public keys of the configured JWT issuer. - -
Schema
    any
+
+
+ + +
+ + + The public keys of the configured JWT issuer. + + +
+ + + + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/list-all-checks.api.mdx b/versioned_docs/version-3.X/reference/api/list-all-checks.api.mdx index f11c10274..b16682d1c 100644 --- a/versioned_docs/version-3.X/reference/api/list-all-checks.api.mdx +++ b/versioned_docs/version-3.X/reference/api/list-all-checks.api.mdx @@ -22,26 +22,358 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

List all checks.

+

+ List all checks. +

- - - + + + List all checks. ## Request -

Query Parameters

- -List of checks. - -
Schema
  • Array [
  • detect
    - -The detect expression of this check - -
    remediation object
    action
    - -Action to remediate the inspected issue - -
  • ]
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + +
+
+
+
+ + +
+ + + List of checks. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + + + + + + + + + + + +
    + + + + detect + + + + +
    +
    + + + The detect expression of this check + + +
    + + +
    +
    +
    +
    + + + + remediation + + object + + +
    + + + + + +
    + + + + action + + + + +
    +
    + + + Action to remediate the inspected issue + + +
    + + +
    +
    +
    +
    +
    +
    + + + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/list-all-graphs.api.mdx b/versioned_docs/version-3.X/reference/api/list-all-graphs.api.mdx index 97b525c6b..2bd75b3f0 100644 --- a/versioned_docs/version-3.X/reference/api/list-all-graphs.api.mdx +++ b/versioned_docs/version-3.X/reference/api/list-all-graphs.api.mdx @@ -22,22 +22,111 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

List all graphs

+

+ List all graphs +

- - - + + + List all graphs ## Request -
- -The names of all graphs - -
Schema
  • Array [
  • - -string - -
  • ]
+
+
+ + +
+ + + The names of all graphs + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + + string + + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/list-all-outstanding-work-items.api.mdx b/versioned_docs/version-3.X/reference/api/list-all-outstanding-work-items.api.mdx index 694a987c9..e288d9a95 100644 --- a/versioned_docs/version-3.X/reference/api/list-all-outstanding-work-items.api.mdx +++ b/versioned_docs/version-3.X/reference/api/list-all-outstanding-work-items.api.mdx @@ -22,18 +22,258 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

List all outstanding work items

+

+ List all outstanding work items +

- - - + + + All work items that are initiated but not done are listed via this endpoint. ## Request -
- -The list of all outstanding work items - -
Schema
  • Array [
  • task object
    data object
    attrs object
  • ]
+
+
+ + +
+ + + The list of all outstanding work items + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • +
    + + + + task + + object + + +
    + + + + + +
    + + + + data + + object + + +
    + + + +
    +
    +
    +
    + + + + attrs + + object + + +
    + + + +
    +
    +
    +
    +
    +
    + + + + + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/list-all-resources-that-match-a-given-check.api.mdx b/versioned_docs/version-3.X/reference/api/list-all-resources-that-match-a-given-check.api.mdx index 77e31a659..7b2e41669 100644 --- a/versioned_docs/version-3.X/reference/api/list-all-resources-that-match-a-given-check.api.mdx +++ b/versioned_docs/version-3.X/reference/api/list-all-resources-that-match-a-given-check.api.mdx @@ -22,18 +22,232 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

List all resources that match a given check.

+

+ List all resources that match a given check. +

- - - + + + Perform the check identified by the given check identifier on the graph with provided identifier. It is possible to filter the list further by providing a list of account ids. ## Request -

Path Parameters

Query Parameters

- -The checks result. - -
Schema
  • Array [
  • ]
Schema
  • Array [
  • ]
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The checks result. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/list-all-subscribers-for-a-given-event-type.api.mdx b/versioned_docs/version-3.X/reference/api/list-all-subscribers-for-a-given-event-type.api.mdx index d4be2bbab..2a4636b4f 100644 --- a/versioned_docs/version-3.X/reference/api/list-all-subscribers-for-a-given-event-type.api.mdx +++ b/versioned_docs/version-3.X/reference/api/list-all-subscribers-for-a-given-event-type.api.mdx @@ -22,26 +22,239 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

List all subscribers for a given event type

+

+ List all subscribers for a given event type +

- - - + + + Get all subscriptions of registered subscribers ## Request -

Path Parameters

- -The list of all subscribers which are subscribed - -
Schema
  • Array [
  • subscriptions object
    - -The dictionary of subscriptions, where the key is the message type - -
    property name* Subscription
    - -The definition of an action subscription - -
  • ]
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + The list of all subscribers which are subscribed + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + +
    + + + + subscriptions + + object + + +
    +
    + + + The dictionary of subscriptions, where the key is the message type + + +
    +
    + + + + property name* + + Subscription + + +
    +
    + + + The definition of an action subscription + + +
    + + + + + + +
    +
    +
    +
    +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/list-all-subscriptions.api.mdx b/versioned_docs/version-3.X/reference/api/list-all-subscriptions.api.mdx index f9d7f1b53..893a4d190 100644 --- a/versioned_docs/version-3.X/reference/api/list-all-subscriptions.api.mdx +++ b/versioned_docs/version-3.X/reference/api/list-all-subscriptions.api.mdx @@ -22,26 +22,215 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

List all subscriptions

+

+ List all subscriptions +

- - - + + + Get all subscriptions of all subscribers in the system ## Request -
- -The list of all subscribers with all subscriptions - -
Schema
  • Array [
  • subscriptions object
    - -The dictionary of subscriptions, where the key is the message type - -
    property name* Subscription
    - -The definition of an action subscription - -
  • ]
+
+
+ + +
+ + + The list of all subscribers with all subscriptions + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + +
    + + + + subscriptions + + object + + +
    +
    + + + The dictionary of subscriptions, where the key is the message type + + +
    +
    + + + + property name* + + Subscription + + +
    +
    + + + The definition of an action subscription + + +
    + + + + + + +
    +
    +
    +
    +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/list-available-benchmarks.api.mdx b/versioned_docs/version-3.X/reference/api/list-available-benchmarks.api.mdx index bc9465329..854ca5838 100644 --- a/versioned_docs/version-3.X/reference/api/list-available-benchmarks.api.mdx +++ b/versioned_docs/version-3.X/reference/api/list-available-benchmarks.api.mdx @@ -5,7 +5,7 @@ description: "List available benchmarks." sidebar_label: "List available benchmarks." hide_title: true hide_table_of_contents: true -api: eJylV1tv2zYU/isEn1bAmNsBKza/pUZRBBiwIsv2UgQGTR1ZbChRJSmngeH/vnNI3a3YSpwXR+Thdz6eOw88ASetKr0yBV/xv5TzTOyF0mKrgW2hkFku7KP7lS+4FzvHV9+4hdJYzx8WvBRW5ODB0vqBF/iBIO0pPKMI9UcF9hk/hrrWJs8Fc0AgHhKmSbdJ+0rZjdZMpawwniWQqgISIuJkBrngqwP3zyVpdN6qYsePCw4/RV5qWhNPbiOV23zY/L7o/v/ISabUJkGZVGgHx0VL/En5bIPY8tGdp35bSF0lwIJsZKZoi6nCG+aznuWm6G6N0SCKAJuKSvuGSo+Ly8jGZ1ncQVJJCOpUkRqbi8CBGJiSadiDZqU1JVivwE0a7mUm6F0LrjSFA0cHfnv/nn4mwmXoMoSSpvBQeBIXZamVDLyW3x2dOZySENYKup3ykLveutl+B0k2EFr/nYYIG+901wvnlCfXj8NibLd7NFgQJeo+U672ozRaIywJHUdn5kD2Vs4DG1nlaB/xCuj+kbPgdfReNm6XMqPQThwpiDgYV7WqkRKlEwvFy2q4VFZWWthf1gS0bo+/O82lRiFi9vQ4jtnQeJSPUDiF59D3KplnSpW09utyFDWlVMmeDH7MgmnFp9H2WBJne7cWnkaS2lTJNQ4lDRGEWcCiIArPsFhMqIp1fXM5hEwBw3xsdV/K0Dd4KdAheoi0VwnYeQiN9CmOA7tXcmadqIVPUa6rNcGz2PV2xja16wrvtkBTl8XoUv557m2j9AgHW2ZR5dT6Ud5jPde4lKldhj85JAr3Flybp9CuUsMfAk1PAUA9IElCcxT667BaX75ZBGHYsLEXuZPaF4OWGIxr6UsNAn76mT5DyagMWF8FaqysnoeBgi9ACNnwfaNxbmTT6hvkZg5wJV4cpynlXAWDGnp37TWGZtc0tF0ZuTVK021GWnrcb+O91nHj4QTsbhqom0sGaJ+6qhf+KIp9ZvA2fAchaoTP8GMZK+KyBxPLRzPwBhvyzPvSrZbLQ2acP64OdOaIknthFY3RwRq0Fweoes7ChMFECstU3GjaG2z/8SdOXMcwiIWk6uYbvK0z6Pq1scDuPv9zz26+3vJe0+H/fYiYzucihFk9VJ4d70cDTzvFXXgURC9TvixLLVQ/tqIZ2wfDgvcMideKJvnGD4etcPCv1ccjLcdhl8ybKEcak3ooPUPx7W+JSf6P8Dx6x+yFrkgu9Lj5vF73UDjDZfg0eSOb1z8YzjBqHigdl4cu5NF9lKQZiNCw0Zfx0I2UUPZPnTwQCKXNxi+f7zEF/gcNkxn2 +api: eJylVl1v0zAU/SuWn0Cq6IYEgr6NakKTkEBj8DKhynVuFm+ObWyn2xT1v3Ovk6Zp2mXd2EsX595zju9nap5BkF65qKzhM/5NhcjESigtlhrYEowsSuHvwjs+4VHcBD675h6c9ZH/mXAnvCghgqfzmht8QJDOC30Uof6twD/iwy7X3JalYAEIJELGNHHbvE/KzrRmKmfGRpZBrgxkJCTIAkrBZzWPj44YQ/TK3PD1hMODKJ2mM3EfFlKFxeniw2T7/0dONk7bDG1yoQOsJ53wexWLBWLLuzAu/cJIXWXAkm2jTNErpky0LBa9yB2Su7RWgzAJNheVjhspPS2hoBiPqriErJKQ6JTJrS9F0kAKrGMaVqCZ89aBjwrCwcA9rQSz6yE4awIEcnh/ckI/B8plN2UIJa2JYCKZC+e0kknX9DaQT70vQngv6HYqQhl653Z5C5JiILT+nqcKG77ZXi/5qUipH5bFMG5XGLBkStJjoUKbR2m1RlgyWg98joHsnYwDW1mVGB/xAui+yyh4W73PB3fbMoPSzgIRNDhYVy3VgETpzIN5moZL5WWlhX8zJ6B55/52v5c2hIjZ4wkcu2GTUT5A4VSeu7lX2XGhVFkXv22PIlNOk+ze4sNRMJ35YbQVjsSjs9saH0aS2lbZ/ySUGBoQ5gGHgjCR4bA4QNXM9cXzJWQN7PZjx73foZsMXpjg8CQlEtO3J/MSdNoCbeHtxWK3Hr5sdae/Ccc1VFisAX4DaTCIWODDtLnTtAeDUxD8arOyKq/RrIjRhdl0Whc2xPWsJp81Wq6EV7QI063pXTMC20nJtZVCp2MUkHbizutPn3FmrtMopfncm1B422BxTs+tB3Z5/vOKnf244L2y4b9PG8wQS5HKqF0Lowt6MLK6OfzMWm8yFuEhTp0WKrV4ikvdhrFb+RPeCyReqwnJNa/rpQjwy+v1mo6bdUXhzVQgxqxdKyMSX/81cFD/HTwOvkRWQldkl6r0eF0vW/UjWnY/Ll6p5uUrf0TR5hNjq+XPtuQxfdSkBYgMfMpl43QmJbi+196KJ5SuG7+eX2EL/APhsJ5t sidebar_class_name: "get api-method" info_path: versioned_docs/version-3.X/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,34 +22,465 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

List available benchmarks.

+

+ List available benchmarks. +

- - - + + + List available benchmarks. ## Request -

Query Parameters

- -List of benchmarks. - -
Schema
  • Array [
  • report_checks object[]
    - -Related checks of this benchmarks - -
  • Array [
  • oneOf
    - -string - -
    detect
    - -The detect expression of this check - -
    remediation object
    action
    - -Action to remediate the inspected issue - -
  • ]
  • ]
+
+ +

+ Query Parameters +

+
+
    + + + + + + + +
+
+
+
+ + +
+ + + List of benchmarks. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + + + + + + + +
    + + + + report_checks + + object[] + + +
    +
    + + + Related checks of this benchmarks + + +
  • +
    + Array [ +
    +
  • + + oneOf + + +
    + + + string + + +
    +
    + + + + + + + + + + + + + +
    + + + + detect + + + + +
    +
    + + + The detect expression of this check + + +
    + + +
    +
    +
    +
    + + + + remediation + + object + + +
    + + + + + +
    + + + + action + + + + +
    +
    + + + Action to remediate the inspected issue + + +
    + + +
    +
    +
    +
    +
    +
    + + + + +
    +
    +
  • +
    + ] +
    +
  • +
    +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes-as-batch-update.api.mdx b/versioned_docs/version-3.X/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes-as-batch-update.api.mdx index b22c30b4e..e7945af76 100644 --- a/versioned_docs/version-3.X/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes-as-batch-update.api.mdx +++ b/versioned_docs/version-3.X/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes-as-batch-update.api.mdx @@ -5,7 +5,7 @@ description: "**Experimental**: This API is not stable and might be subject of c sidebar_label: "Merge a given graph with the existing graph under marked merge nodes as batch update." hide_title: true hide_table_of_contents: true -api: eJzlWN1v2zYQ/1cIPm2BY7fpBzZjGNAWRdGHrUWS7qUNDEo6W2woUiUpJ4bh/313R8mWI8dIOvShGAIktnQfv/u+y1oWEHKv66idlVN5cvL2tgavK7BRmZOTqbgsdRCvPr4X+Me6KEJUmQGhbCEqvSijyECEJvsKeRRuLvJS2QWM/8j85M8v9i/wC6QVC70EKxZe1aW40bEUsQQBtzpEbRft88YW4EWl/DWgaGa0DtEJFUSmYo4UdaEijL9YOZJRLYKcfpbMO6uUVQsg0PJqJGvlVQURPFGspcUvaFqi1AUyazK1VrHEz/v2XyIuXaAcPdeIBg0ipMyKtHCrqtqQMA/BRYePPHxrtIdCTqNvYCRDXkKl5HQt46omyhA92ig3m9EWCVvTQ/KtAb8aQHnVWt2DgyFQIglEXCqizzQym9WOKDDgPX+J92QF8m79QoJcpWOEYoQSLdwc1JV7QP5CqCa6SkWdK2NWY0E+Qvsbw8EbMObKUk54QJywRPalVgwKeWpnA2BwQ8BwpUDuHDhXJux5sIC5Qi1yahtjRkcceqN0nM2dnyVYx/160BsB4qgFiVwhYpYaIzLj8mt0ctRm4FbimmurQwnF1ifJPubNHVaQtj2+no+oeuLWjV2aDbP8gC9SmrW+yJwzoCw64yp5EqG/dsUqcdxN7FRnbK2NVFYYeKMtiAKMxnTAWH0Nzo7ETQke61MhGn5fOlNQ6hUub6jIiELnLAqwmskgrlXhyDQBBQb3QG2QS6hEEZyqa4P5ROAmt6e2IL30fGews/BhzvXb2uq4x6DY2jtsURFzneiwjAbF9pCq5nZWIM5N581ByZIFtfMR+iq2MFRRaJKvzMceoGTpPsRrbR8Ikijvwtv0+k4yVz49e/b8xUu5jy9pkRFTYIzKyaGjrkBeq4gtEr/nOmJyyHcO20fFsqOO3NH+Rm1kMoJKMXuMxciHpaQwcdUjGfetaxnJcipiskcXp9qedh34vxq8Z1/OtXPIgCWK46g8veui9/YdQ6Huczwx595Vh+tQc4y5YKKjgeqjYOpBj8MH7pgM6hqdnIUTPJEGIqgcZ12KDyXRm23OEe1ABoqwTUXTtutC5EaDvVNeHQ5gKya5gMOJ427m5jM103bWBZNs67/M+i97qLdqe7F4Sxo2V33tn9vqUASvDWSbI8apIlNG2Rw8JVZNRTQ+Gz8bP8evONtKR2Te4RLiXaZtGi8sLhuKy11VNxFhWwweymQZeYmtskO8iKcvKPucp2Q4e87iWneozvTsXjNb1fkPU53fpxoDyn0vjTJO5LMnT4aZcw6x8ZbWkabCnW1FGaRyehnSalLS2ga49XGrxxkp7x0Aw+a/r+uip6IdYmnNbDXuEvaeUuQ9ctauM4erABM8S6MhLZ2tDUtIRrS8450qjaYsMJvQW0l8mtvhu8Qn3qPiU8F9H/qW97B4SoMHO4eJH+WcJL418LvEH3VOEv9A5xwUf8Q5vX7DXf8TI8HnXCQ4MFLbqF3gnKODYionnKGTdXdvbCa81034pKGdDvyyO00ab5CjjLEO08lkXaKgzXRNI26DlEvlNR1bnFP0bm8RxKaGCzk/RjDEs//6t9+xbje8GWo75zHSGXPO14t4gy1CnL+9uKT7jvR1U0/+8zTJDDxFp9tF+4fcc3c3ofWuT/xE92hKnQi3cVIbRRNklMK7bhOjvVWRdto7RVkSNXHODoxVivNnuV5nKsAnbzYbepxuGcqZQgeyeHcw3eu8/8kFedD117Dav7SXyjRExtP14T78ma7FI44YXsg7f1ztOs0jE+yX8/bC+1Uc/8fJQWTtQ2VXfTgd4m2N8JJXgsJqZHjp9ZsE4vSShOzYD96VFPHE9SrPoY730Cfaq15j//jh4pJqtL2oKzpLcEtUN3SJ4O+p/II/1GT/BaEMrns= +api: eJzlV1tv2zYU/isEn7bAsZusAzZhGJAWQZGHrUWS7qUxDEo6tthQpEpSTgxD/33nkJQt146XBuhDMQRIYvJcvvPx3LzmJbjCysZLo3nGT04uHxuwsgbthTo5ydhtJR27+HDF8I82njkvcgVM6JLVclF5lgNzbf4ZCs/MnBWV0AsY/5HbyZ93+i+wC5RlC7kEzRZWNBV7kL5ivgIGj9J5qRfpvNUlWFYLew9oOihqg+iYcCwXvkCJphQexneaj7gXC8ezTzzozmqhxQIINJ+OeCOsqMGDJYk11/gBQ4uSskRlSaE2wlf4/278t4hLlmhHziWiwYAIaVBFWXgUdaPImAVnvMEjC19aaaHkmbctjLgrKqgFz9bcrxqSdN5ijLzrRhskIZoBki8t2NUelIsU9QAOPoFg0SDiEh45k6isVlshFwDv8MWuKArU3fBChkwtvYdyhBY1PBz0VVhA/ZKJ1ptaeFkIpVZjRhxh/K0Kj7enWAhNOWEBccIS1ZdSBFCo0xjtAB/XOXyu+JBbAudCuR0GS5gL9MIz3So1OkLog5B+Njd2FmEd5/UgGw78KIFELecxS5ViuTLFPZLspdqjlbTmUktXQbnhJMYXdAuDFST1QG/AEVWP39DYp9l+lh/gIqZZ4iI3RoHQSMY0MonQ35hyFTW+TuxYZyFa7ams8OGV1MBKUBLTAd/qszN6xB4qsFifAtGE+8qoklKvNEVLRUYSsgimAKuZAgq1ygyFxqDExz1QG0QJlSiCE02jMJ8I3OTxVJfkl863ARsN7+ehflOsJvSYYRVursg3PTp6wl+nUp/2FWuhMdYThDW/l5oEPHI0xh5HHkd9Br0RHnsIfi6kR/b4O4P1VfMuJE+MYc2LwHUIBi8wdwS+VAC7RHOB5zNMS+6lD03ib4R1pd8FKJSt/x0IMYcXc2vqFBa2iZmZz8RM6lkfFDaenct8eEkmZslcnzQDTJfkoZt2A+9IcWBOUKmkgBJXyogyF0roAiwR3ODZ2fh8/Mv4NX7EnlAZErMGm7c1udSxLIO5fN9cYeqm9Qhb4xRBm8FGUWGK9YgX/vRXegWDlcGz89fBXKJD9KHnT4aZXBffzXXxlOtpRy/ftwBHns9fvdqvw2vwrdXUxtsaZ92Kal8UdOliS69o3AFOy1Ai2Fv4k4WzXzS7vm4GLlLxx/GcPPLRXko21mBpeBkjCPN3lsbA4Z6i2zqPgzIO6xTDEmIQSXe8dSUxlAVmE7IVzcd+515kPuoeNY+9DV6KPukeNk9p8GxygvA3kRPNpwBfZP4oOdH8M8k5aP4IOYN+E7rfx4AEz0ORYOOMbaMxLuQcLWIZn4QMnaz7Pa2bhHk4CasgzUKwy36la61Cjcr7xmWTybpCQ122plbfoeRSWElLasgputsZoNjUcJEJxwiGdHavf/sd67YLE1XquQndOQVzHbY+9hZbBLu+vLmlvZj89d2f/3MWbbowTbLNgvJd9uCvN5v1tk/8QHt8TB0Pj37SKEETZBSfd50SI+34KJsNVvhgiZp4yA58q/jOn/h6nQsHH63qOjqOOyDlTCkdRbxdNJ8k73+yeR+k/h5Wu99QlkK1JBam6/M5/JG27CNE7H+z2PIx3Xaab0ywn67TZvwzO/6F8yCydCj0aginR7ypkbDkVSCwGgO8eP02gji9JSNb9YP7OL141LooCmj8E/JRdjpo7B/e39xSjaZvIjWt57gligfayPF3xu/wh5rsv7z4uZ4= sidebar_class_name: "post api-method" info_path: versioned_docs/version-3.X/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,22 +22,435 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Merge a given graph with the existing graph under marked merge nodes as batch update.

+

+ Merge a given graph with the existing graph under marked merge nodes as batch update. +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Merge a given graph with the existing graph under marked merge nodes as batch update. ## Request -

Path Parameters

Query Parameters

Body

required
- -The graph is sent as newline delimited json, where each line holds a document, which is either a node or an edge. - -
    oneOf
    reported object
    desired object
    metadata object
- -Return a summary of actions that has been applied. - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+ required + +
+
+ + + The graph is sent as newline delimited json, where each line holds a document, which is either a node or an edge. + + +
+
    +
    + + oneOf + + + + + + + +
    + + + + reported + + object + + +
    + + + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
    +
    + + + + + + + + +
    +
    +
+
+
+
+
+ + +
+ + + Return a summary of actions that has been applied. + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + + + + + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes.api.mdx b/versioned_docs/version-3.X/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes.api.mdx index 95abe3ec3..c7b0773e8 100644 --- a/versioned_docs/version-3.X/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes.api.mdx +++ b/versioned_docs/version-3.X/reference/api/merge-a-given-graph-with-the-existing-graph-under-marked-merge-nodes.api.mdx @@ -5,7 +5,7 @@ description: "Merge a given graph with the existing graph under marked merge nod sidebar_label: "Merge a given graph with the existing graph under marked merge nodes." hide_title: true hide_table_of_contents: true -api: eJzVV99v2zYQ/lcIPm2AYzdpOmx+a4uiyMPWIEn3kgbGSTpbbCRSJSk7geH/vXck5ciRYyTZ9jAEMCLyfnx3/O6OXEsPCyen13JhoSlnNWhYYI3ay5uRbMBCjR4tS6ylpg85TZKqkCOpNH034Ev6v0CXW9V4ZXjxqkShCrKj5gqtMHPhaSWokizeQd1UbMyiM97QksUfrbJYyKm3LY6ky0usQU7X0t83LOm8VXohN5vRFskKlJ/NjZ2RlbbyHaAfLdr7AaIzhqCc2AYl6MOhHwVk7B6dFytVVSKrTH4rWgJfhc0MfF6KtinAI2vNlVauxGIsroKqa4x2GHVzoz0o3dPrpQF0kbwx3i4rffPjb1r2gy9wDhxaykrKRWZMhaApGTcxcwT9gynuo8bjcwhZj9FqL8AJjatKaRQFVqpWHgvx3Rk9EqsSLQoEQhP2S1MVToAoTN4yJ1hC5cEUKkJOAQltChSGQxNYLHC85yg5JcwoAgdNU6kcGNzk7kgX7JfXHwI2Gr/MA91SrCb7jjmfbWNNg9YrdCxH/Btw4zkkJOwMeSw3XTYHDOMIGmM99l1sYUBRKLYP1XkPUIx0F+Kt0s8EyZKP4W16ZRLDlccnb0/f/SZ38UUv0hMFxuScEzrqCuQDeKpo+s6VJ3LIz8aXUAfbXvlQgH+RNw6ZQMUze0nEpEelBERceKHibnRJkSPnIuZ4VHGk9FHXMP5pwDvx5aF29gWwJHPhVI4fp+hMfw5QuPscJubcmnp/HapwxqFgvBHOg/UiSI+GDKSeeMAGd43OzsKI0EAHJrgcZx3Fh5Z4Z8s5lh3YIBO6rXk4dF2I01hR75Q3+w8wmYkpCMdJc2Jm5jOYKT3rDpNj629m/c0e6q3b3ll8Yg+bm77361QdwPDSQSaOVAaKDCrQOVomVsNFND4Zvx2f0mdNg8uwmDWtLqzJlI7jJZjLhuZyUzetJ9iaDo9sBht5Sa2yQ7zwR++YfcYyGU5Og7mUDuhCz54MM7nO/zPX+VOu6UBD34ujLBD55M2bIXMu0LdWU993bV2DvWcGQc6bjpgEXpQ0XzJEEuFWTzNSPjkAhs1/19dlz0UaYnkJeoHJ4wNhnyhF5pib5RYhtY5hFRDBszgagnAXwxJjEEl3/OBKUSgLYhNlK5qPc9u9ynzUPWg+Ftzr0Cfd/eaZBs9OThB+UXKi+RTgq8wfTE40/8zk7DV/IDm9fhO6/teAhNZDkex6+hMtE1Is1JKMRpau6HIUejTeKeeplaZ16jIEiDh9S1euOiiGc2MMNIZiM2qMC0zmW/VUToLmZN1dujeToMd3RLTL7mbe2opkS+8bN51M1iWZ2EzXPDI3JLkEqyCrIkd5b+diSU0yhyosU3Css7v9+x/UBzbhpqn0PIylLjkX4fIuPlLLERefLq/E+/Mz9tdNUfn3cbTpwlSebi/u/1bSdo5iO4U83vlJUwG381HMzTrlM71zSHXae8bElFKAMTnXcr3OwOFXW202vBwfFJzoQjnOJJ3THCqHAwTbTve/em7szdst3u99Yi2hallaMiM6ar0wOb9cpCfCr+LwQ3EvsrQI+r4Pp0O8PddwSygRiD4BXtz+GEEcXbGRB/W9DxOeoFHrfZ5j45+Qj7I3vRo+/3J5RcJZepLVfK+lawas+CpLv1P5jf64qn4C93FXgg== +api: eJzVVt1v2zYQ/1cIPm2AYzdZB2x6a4uiyMPWIkn30gbGSTpbbCRSJSk7hqD/vXck5cizk7XB9jAEMCLyPn7343310sPayeyTXFtoq2UDGtbYoPbydiZbsNCgR8sSvdT0IbMkqUo5k0rTdwu+ov9LdIVVrVeGD28qFKokO2ql0AqzEp5OgirJ4j00bc3GLDrjDR1Z/Nopi6XMvO1wJl1RYQMy66XftSzpvFV6LYdhtkeyBeWXK2OXZKWr/Qjoa4d2d4TokiEoJ/ZBCfpw6GcBGbtH58VW1bXIa1PciY7A1+EyB19UomtL8MhaK6WVq7Cci5ug6lqjHUbdwmgPSk/0JjSALpM3xjuyMjU//6zlNPgSV8ChJVYSF7kxNYImMm4jcwT9tSl3UePv7xBYj9FqL8AJjdtaaRQl1qpRHkvxxRk9E9sKLQoEQhPuK1OXToAoTdFxTrCEKoIpVIScAhLalCgMhyawXOP8xFMyJZxRBA7atlYFMLjF/Zku2S+fPwRsNL5fhXRLsZr8CxZ+mjT7K/bNj06e6OdM6bMxwSy2xnqG0Ms7pVnAE0fzlnLZMMMpg16Dp5Sn70J5Yk++M76CRg4heWIMvSwC1yEYuqDcAXqpAHZD5gLP55SW0isfcvpPgnWp3wUonK3/HAgzRxcra5oUFtXX0qyWsFR6OQZFdXJwmU8v2cQymRuTZoLpLXsYboeJd6I4MAdcKimgxFVtoMyhBl2gZYJbOjufX8x/mb+kz4YK3rCYNZ0urcmVjmUZzOXH5grTtJ0n2Np5thlsFBWl2Ih47c9+5VcwVBkyu3gZzCU6YAw9fzTM5Lr4z1wXj7m+Hfjlxxbg2PPFixfHdXiFvrOa6sV1TQN2x7UPBV866gHgRUV1mSOSCJcI9Rb5aOEcF82hr+uJi1T8RQV6jcmjnB2lZGsNlYZXMQLOMbcsLEIqoeOeorsmj309CI8xbDAGkXTnD64UhbKmbCK2ovnY79yzzEfdJ81Tb8Pnok+6p81zGnw3OUH4h8iJ5lOAzzL/JDnR/HeSc9L8E+RM+k3ofh8DEjoPRXLo6Q+0nJBirTZkNGbploZKmIh4r5ynaZ/OqcsQIMrpOxpVTVAM78YYqB3HZtQaFzKZt5FMLoLmoh+XlWER9Hi2ot2MG01na5KtvG9dtlj0FZkYsp5Hx0CSG7AK8jrmKN8dDGRqkgXU4ZiCY53D699+pz4whAmt9MqEbp/IuQpLj3hDLUdcvb2+Ea8+XLK/cZrIv86jTRemU7ZfeP4t0g6eYj+FPN77RVsDt/NZ5KZPfKb9kFSzyfoXKaUAIzmfZN/n4PCjrYeBj+MixkSXyjGT9E4rqB0eIdh3uv/VmnaStzvcnVxNN1B3LC05I8bU+kFyfrpKq9XP4ukF+ySydAh6N4UzIt6/a9gSKgRKnwAvXr+JIM5u2MiD+smFjido1HpVFNj6R+Sj7O2khj+8v74h4Tytsg3vd7RmwJZXOvrN5Gf646r6BvhhYqU= sidebar_class_name: "post api-method" info_path: versioned_docs/version-3.X/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,22 +22,430 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Merge a given graph with the existing graph under marked merge nodes.

+

+ Merge a given graph with the existing graph under marked merge nodes. +

- - - + + + Merge a given graph with the existing graph under marked merge nodes. ## Request -

Path Parameters

Query Parameters

Body

required
- -The graph is sent as newline delimited json, where each line holds a document, which is either a node or an edge. - -
    oneOf
    reported object
    desired object
    metadata object
- -Return a summary of actions that has been applied. - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+ required + +
+
+ + + The graph is sent as newline delimited json, where each line holds a document, which is either a node or an edge. + + +
+
    +
    + + oneOf + + + + + + + +
    + + + + reported + + object + + +
    + + + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
    +
    + + + + + + + + +
    +
    +
+
+
+
+
+ + +
+ + + Return a summary of actions that has been applied. + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + + + + + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/patch-a-configuration-by-its-id.api.mdx b/versioned_docs/version-3.X/reference/api/patch-a-configuration-by-its-id.api.mdx index a5593c306..530c7219b 100644 --- a/versioned_docs/version-3.X/reference/api/patch-a-configuration-by-its-id.api.mdx +++ b/versioned_docs/version-3.X/reference/api/patch-a-configuration-by-its-id.api.mdx @@ -22,22 +22,238 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Patch a configuration by its id

+

+ Patch a configuration by its id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Patch a configuration identified by id with provided value. ## Request -

Path Parameters

Query Parameters

Body

- -The configuration - -
Response Headers
  • Resoto-Config-Revision string
    - -The revision of this config - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+
+ +
    + + + +
+
+
+
+
+ + +
+ + + The configuration + + +
+ + + Response Headers + +
    +
  • + + + Resoto-Config-Revision + + string + +
    +
    + + + The revision of this config + + +
    +
    +
  • +
+
+ + + + +
+ + + Schema + +
+ +
    + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/patch-a-list-of-nodes.api.mdx b/versioned_docs/version-3.X/reference/api/patch-a-list-of-nodes.api.mdx index 7af79591b..8e7bf5075 100644 --- a/versioned_docs/version-3.X/reference/api/patch-a-list-of-nodes.api.mdx +++ b/versioned_docs/version-3.X/reference/api/patch-a-list-of-nodes.api.mdx @@ -22,26 +22,483 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Patch a list of nodes.

+

+ Patch a list of nodes. +

- - - + + + Apply a patch on existing nodes. Non existing nodes are not updated! Consider to stream the request body as new line delimited json (application/x-ndjson). ## Request -

Path Parameters

Body

- -The partial object data to patch. - -
    reported object
    desired object
    metadata object

Body

- -The partial object data to patch. - -
  • Array [
  • reported object
    desired object
    metadata object
  • ]
- -Return the patched node - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The partial object data to patch. + + +
+
    + + + +
    + + + + reported + + object + + +
    + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
    +
+
+
+
+ +

+ Body +

+
+
+ + + The partial object data to patch. + + +
+
    +
  • +
    + Array [ +
    +
  • + + +
    + + + + reported + + object + + +
    + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
  • +
    + ] +
    +
  • +
+
+
+
+
+ + +
+ + + Return the patched node + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/patch-a-node-with-the-given-node-id-in-given-section.api.mdx b/versioned_docs/version-3.X/reference/api/patch-a-node-with-the-given-node-id-in-given-section.api.mdx index 6f6fdd48e..14c5f399d 100644 --- a/versioned_docs/version-3.X/reference/api/patch-a-node-with-the-given-node-id-in-given-section.api.mdx +++ b/versioned_docs/version-3.X/reference/api/patch-a-node-with-the-given-node-id-in-given-section.api.mdx @@ -22,22 +22,195 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Patch a node with the given node id in given section

+

+ Patch a node with the given node id in given section +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Patch a node with the given node id in given section ## Request -

Path Parameters

Body

- -The partial object data to patch. - -
- -Return the patched node - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The partial object data to patch. + + +
+
    + + + +
+
+
+
+
+ + +
+ + + Return the patched node + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/perform-a-benchmark-on-a-graph.api.mdx b/versioned_docs/version-3.X/reference/api/perform-a-benchmark-on-a-graph.api.mdx index 485bf5857..95378c672 100644 --- a/versioned_docs/version-3.X/reference/api/perform-a-benchmark-on-a-graph.api.mdx +++ b/versioned_docs/version-3.X/reference/api/perform-a-benchmark-on-a-graph.api.mdx @@ -5,7 +5,7 @@ description: "Perform a benchmark with the given identifier on a graph with a gi sidebar_label: "Perform a benchmark on a graph." hide_title: true hide_table_of_contents: true -api: eJztWW1v2zYQ/isEv6wFVDtJ1631t6wIggBDF6TZgKE1DEY6WUwkUiWptJ7g/747Um+21TQeNqQD/CkmdXd87u0Rc6p5AjY2snRSKz7jl2BSbQom2A2oOCuEuWOfpcuYy4At5T0oJhNQTqYSDNMKBZdGlFkQEjsiEx5xJ5aWzz5wA6U2js8jXgojCnBgaL/mChd4dnci6kgCUwqX4e9NhNcIhBSYTj2oHqfTrAzwUcnGGRSCz2ruViVZt85IteTriMMXUZQ57YnPdhFLuzievEIVA58qaSDhM2cqWEcdMO/hQibfxCWTFlUISo8IN6VlGleC5CePRWjAaqcfAifiWFfK2R1Ab3VRCGaBgu0gYbm0juA1CgjWEkCp4rxKELvaDOfko7pImdLsXuQVPrYhtxETed7asEwYaC0kqNFG6FMFZvWwj71DqcgtkNNlrhMYrNsgHJ+8/PHVTz+/fnN0fBINFi/5Rhy831sAdnMU5AapmbA/dcVioRhgDWNVm0qxZ7EBjNpzpg3LtUh2YvMrbqInWyXYOGUj3Bduo4syYXGFzWFXuGW0kn9hUhAGWUiEEzfCkimEBBR7hZBwg55SEVQmBotGMAU/OBZnQi1R3WLsg0wuMLu9aV9lUatd5Y4SSCuL0Yo+qpvKBTXyrQkJShRVnLEUTWHn+mx+LYGYHlUVvqsrkiM71NkJpAJPo8rF/fV6Tom2pVYWLFk5OTqiP7tpwXPiO9uApfaItXLIIiQtyjKXsXdpqpJbS0r1ANqmtdOm+dCd2wqDgokVxogV1b7CAsOiVQmDZAnUM41bXoKKx0HhgSaSbBZSCacNbZSGutet3oVy83oRLxAbxQMFlC/eLlD65hZihyKNogwBQBYZCeYYlfQsmwb2oAMm1DpBe7SniGEhGYMhkkSSfZFfDgARmWxDvJPqkSBJchvekL6Cu03/8k184RTuwLoJHm597za9/ItwhaB1LN0K1+ca26nwtp10nhPeUbTXHlRgkX08Rj18/Qjquj0VN71rFH3mo+CrTF5I9cJX4L/g8IZ/cQ4oM+bAPZrzWTneDtGFOvdQCDdW/LfrMzW6GO/Q8HIjX4m1rBPGMS8d7RYivrIesEHE09pZIgHqMRMEd9FW+q4letKVnndt20ZPUS0pUTRzvHbw+XgeGzMhBD6r+NJf6HQhFlIt2pySb8OHN8OHA9TdsYOUnNEJazpdK/gt9befA18c+OI75IsDUTw9UcwHO01ecGd4HTpchg7kdiC3w2Xo/8txh8vQgS++e744EMXTE8XYZcizByYz01QdS/CZoensjE9D+Uy7Cdy07n6up/7kad1Odtc06gJz306kK5Ojicy50s6m0zrT1q1nNdkjyXthpLjJQ+rpWQh2O/nKdSxyv43g/Mh74/HrN0dHBH1Oo8rUp7x168pPe9lbbYBdnb2/ZqeXF3ReW6H8j+Ng0/qKn3XDz7GxfT+cn2zzT91P1/6biX9IpYMvblrmQipC7WNaN+npvgZEG2P/2XDRVsesm79jyEK4P/C6pnnp7yZfr2k7zHspdXhXpdz0c+Wvev5EA/LR4NwBMddglu+N4pYnn8f7dJhw7zvhfjAdzSeFPhnzvvv3rLZnV80Hj+fskZ+wRpG1/6Kp1RBXi7hvn/3KZgvcXt+x/gHMrqE9qWcgEjA+nOHxaRxD6QaKIx8AKBMd8Z+fXSOj/g30neak +api: eJztWG1v2zYQ/isEv6wFVDtJ1734W1YEQYChC9JswNAaxlmiLCYSqZJUWk/wf98dqTfbahoPe+kAf0pI3R2fe+6F5tU8ETY2snRSKz7j18Kk2hQM2FKoOCvA3LOP0mXMZYKt5INQTCZCOZlKYZhWKLgyUGZBCPZEJjziDlaWz95xI0ptHJ9HvAQDhXDC0H7NFS7w7O5E1JEEpgSX4f/bCG8RCCkwnXpQPU6nWRngo5KNM1EAn9XcrUuybp2RasU3ERefoChz2oOPdhFLuzidvEIVIz5U0oiEz5ypxCbqgHkPFzL5Ii6ZtKgCKT0i3JSWaVwByU+eitAIq51+DBzEsa6Us3uAXuuiAGYFke1EwnJpHcFrFBCsJYBSxXmVIHa1TefkvbpKmdLsAfIKP9sQ24hBnrc2LAMjWgsJarQMfaiEWT/uY+9QCrkV5HSZ60QM1i0Jp2cvv3313fc//HhyehYNFi/5Fg/e7x0A+zEKcoPQTNjvumIxKCYwhzGrTaXYs9gIZO0504blGpI9bn7GTfRkJwUbp2yE++C2qigDiyssDrvGLaOV/AODgjDIQgIOlmDJFEISxL1CSLhBXykJKhMLi0YwBN84FmegVqhukfsgkwNGtzftsyxqtavcUQBpZZGt6L1aVi6okW8NJShRVHHGUjSFleuj+bkAYnhUVfiqrkiO7FBlJyIFPI0yF/c3mzkF2pZaWWHJytnJCf3ZDwueE9/bBiyVR6yVwy5C0lCWuYy9S1OV3FlSqgfQtq2dN8WH7txVSAoGFoyBNeW+wgTDpFUJE8lKUM00bnkJSh4nCg80kWSzkAqcNrRRGqpet34T0s3rRbxAbMQHCiifvB1RenknYocijaIMBGAXGSFzrJX0XTYN3YMOmFDpBO3RmqIOK5IxGJAkkuxDfj0ARM1kF+K9VE8ESZK78IbtK7jb1C/fxhdO4U5YN8HDra/dppZ/AlcArWPp1ri+1FhOhbftpPM94Q2xvfGgQhc5xGPUw+sHqOoOVNz2rlH0kY+CrzJ5IdULn4F/g8Nb/sW5QJkxBx7QnI/K6S5FV+rSQyHcmPFfzs/U6GK8QsPlRr5S17IOjGNeOtpPRLyyHrFBjae1s8IGqMdMENxFm+n7luhLl3retV0bfYtqmxKxmePPDj4fj2NjJlDgo4qX/kKnC1hItWhjSr4NPy6HHweou2MHIbmgEzZ0ulbil9T/+tmNx/80v57iyL9F8Hyw0+DDneE1crxEjpfI8RI5XiLHS+Sryq+v/RLxrKNTmSaWVsKnPk0DZnwaaJx2L75p3f27mfqTp3U7SdjQ00qYh3YCUpkcTWTOlXY2ndaZtm4zq8keST6AkbDMQ23Rt5DN7Usr1zHkfhvB+RHL1md8KZ8Q9Dk9jVNfU61bN366wF7jk5PdXLy9ZefXV3ReGyn+22mwaX3kZ91je2xM1A+DJrt9vu5fc//MhCmE0olPblrmIBWh9pzWTXi66VO0NWaaDRdtdsy6eQ9SFuh+x+ua3ue/mnyzoe0wX6DQ4R1PsennGJ/1/D8ayIyScy/W27MjbxS3fBE+3afjROXQicqj4WhGWH0w5n31H5htz26aAdtz9sSR6Siy9qetWg9xtYj78jksbXbAHTQ3/Qswu4L2TT0TkAjj6Qyfz+NYlG6gODJwokh0jf/y4hY76p+IZ/zq sidebar_class_name: "get api-method" info_path: versioned_docs/version-3.X/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,18 +22,603 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Perform a benchmark on a graph.

+

+ Perform a benchmark on a graph. +

- - - + + + Perform a benchmark with the given identifier on a graph with a given identifier. ## Request -

Path Parameters

Query Parameters

- -The checks result. - -
Schema
  • Array [
  • oneOf
    reported object
    desired object
    metadata object
  • ]
Schema
  • Array [
  • oneOf
    reported object
    desired object
    metadata object
  • ]
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + The checks result. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + +
    + + + + reported + + object + + +
    + + + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
    +
    + + + + + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + +
    + + + + reported + + object + + +
    + + + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
    +
    + + + + + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/perform-a-dynamically-assembled-benchmark-on-a-graph.api.mdx b/versioned_docs/version-3.X/reference/api/perform-a-dynamically-assembled-benchmark-on-a-graph.api.mdx index f750fef1f..e5652525e 100644 --- a/versioned_docs/version-3.X/reference/api/perform-a-dynamically-assembled-benchmark-on-a-graph.api.mdx +++ b/versioned_docs/version-3.X/reference/api/perform-a-dynamically-assembled-benchmark-on-a-graph.api.mdx @@ -5,7 +5,7 @@ description: "Perform a benchmark by defining the check criteria on a graph with sidebar_label: "Perform a dynamically assembled benchmark on a graph." hide_title: true hide_table_of_contents: true -api: eJztWU1z2zYQ/SsYnNoZxZKdfiS8uanr8SX1OG4vqUYDESsRNggwAKhEw9F/7y5ISpTEKnLSjtMZnSSCi923H3iCnysuwadOFUFZwxN+C25mXc4Em4JJs1y4RzZdMgkzZZSZs5ABSzNIHxluCuCUYNag9dyJImMfVcjoQS3AMCXBBDVT4M74gAcx9zx5zx0U1gU+HvBCOJED+qD1iht8QADR0URJ3KIIUCFCht+3Ud4jiptfmZ1FPHXsYGtgFMzjt1zwpOJhWZBXHxyi56sBh08iLzStOfA2WLR28KFUDiRPgithNVhjKZxdYBauxfKhBLfcA/Ob0pgEVam1PxqC+Oh5J54Ht1ApHBuuMT86GqQX3WipCDC3McJR4Vr7o+N5SEsckmU36KMy8tiAZPuUUk4wwYkyPgiDRewEFWlqSxP8Xqw3Ns8F1pFGMYBkWvlAU9VswBH2NFfKpLqUgJ9x3tYn4+wvczNjxrKF0CW+9vXkD5jQuvXhmXDQepC4Yzf7A9ltBnMmtAdKt9BWQue5Tf/84uUPP/7086vXo/OLQefhJV+NyZEvrPHgKczFaEQf+ycqHh/P0LjUgQqfWhPwDJO1KAqtcALQemjkg6dNVQf7trfL5kxiRR5KLKlAinBOLKm2BhPAohjJQM6BetLkHS2oOgHyCFQq8pkrI4J1tIDnqwAXlm/rtsZ9A54jNioYGphYnHUl7fQB0oAmzUZVFwDJZa/afQyzIbCaaTAbCnBGral39/aM+A1kHwwhpSL/Qt92ABHp7EKMx+QokGS5C697MOp0m/ng2/jqKDyAD2cYnJo6aM/MLyLkgp5TOsEJv7YhE3n0HVSIM/eWqr2KoOopfUrGuA/JX0gRxBM3bmfXbIydH9S5KvlCmRdxAv+FhLfySzWgTV8CC3QXu3K+W6Ibcx2hEG6c+M/P58zZvP+EKtmeIKIlJDoXWLQe7A8i/rQd8EE81vqZWxZ/B/fZFeFO2knf90Rv1qMXU9v1gS5MmdPPPl4gBLJKHGGNP/p83N/Hxk1dgthVvAtM7GwikNknbU8pt+7LafdlB/U6bKclVxRhRdGtgd9n8e5x4osTX3yDfHEiiucninFnpekLrnSvQ6fL0IncTuR2ugz9fznudBk68cU3zxcnonh+oui7DEX2wGZmlqZjDrEzJNomfFiPz7AWloYx1LBqFd4ViV/gFq0AXDqNe7IQCp8Mh1VmfVglFTkgy4VwSkx13Wt6V1e3BppwbVOh4zKiiQrz1utXr0cjwjom8W0We9zmcRdlYPbGOmB3V+/u2eXtDcVrR5L/eV779HHEk7WquJHK5RKX8Dqo9ZIJ7yFHnLIjoG8U8rNdGqo2Itt/qL3XbQ3wKQwLLZShhGK5q6ZVa10eT3BsFn5pJyNZS/JYvbry73lVTYWHP5xerWi5FjOpi3hPpTZtNMt/TLdfN+/F+ghEKh05PgquuBR54UtCdrTzAxE3gvxXB+yq5wcidkT5rw7Z6ucHwjVy/BeGeib5/EA+HaV/k9N4wx5PHNHv7hoF/nv2uX859YJq/5gzW/1swa7PVeTVDATNNgGsX1+mKRShs7FHg6fc1tx7fXWPHPc3KXCBvQ== +api: eJztWEtz2zYQ/isYnNoZxbKdPnlzU9fjS+px3F5SjQYiViJsEGAAUImGo//eXZCUoEcVOekjndFJIrjY79sniG24BJ87VQVlDc/4HbipdSUTbAImL0rhnthkwSRMlVFmxkIBLC8gf2K4KYBTglmD0jMnqoK9V6GgBzUHw5QEE9RUgTvjAx7EzPPsLXdQWRf4aMAr4UQJqIPWG27wAQlERWMlcYsiQpUIBf7fZPmALG5/ZnYa+bTYwbbECMzjv1LwrOFhUZFWHxyy58sBhw+irDStOfA2WJR28K5WDiTPgqthOVhxqZydoxWu5/KuBrfYIfOL0mgEeamXP5qCeO95gufBzVUOx8J14kejQX6ZouUiwMxGhKPgevmj8TzkNSbJIgV9UkYeC0iyz3HlGA0cK+ODMOjEBFTkua1N8DtYr2xZCvQjpWIAybTygbKq24Ap7CmvlMl1LQF/Y76tKuPsD3M7ZcayudA1vvZt5g+Y0LrX4Zlw0GuQuGPb+gPWrRNzKrQHMrfSVkLy3Jt/cfnym2+/+/6HH88vLgfJw0u+HJEiX1njwRPM5fk5/exWVCwfz1C41oEcn1sTsIZJWlSVVpgBKD008tHTpibhvqntqqtJ9MhjjS4V2CKcEwvyrUED0ClGMpAzoJh0dkcJ8k6AMhKVinSWyohgHS1gfVXgwuJ1G9a4b8BL5EYOQwETnbPypJ08Qh5QpNuoWgdgc9nx9r4Os25gbadBawjgjELT7t4bM+pvIPfREFIq0i/0XUKIms42xVgmR5EkyW16aWG05nb5wTf5tSg8gA9nCE5BHfQ185MIpaDnnCo44zc2FKKMuoMKMedek7eXkVSbpc+xGPdh8xdSBPHMjZvWdRtj5AetrUq+UOZFzMC/weAN+3INKLPPgDmqi1G52HbRrbmJVIg3ZvzH83PqbLm/QpXsK4jaEjY6F1iUHuwmIh5tB3RQH+v1zCyL5+Bud0W64z7TdzXRm1XqRdO2daAKU5d07OMHhMCuElNY46HPR/vj2KlpXRCjit8CYzsdC+zs4z6mZFv6cpK+TFivYJOQXBPCktCtgV+n8dtjOx7/0/w6xpB/y8GjZKXjhyvpMXI6RE6HyOkQOR0ip0Pki8qvL/0QiV5HowpLXppBTH0aEmR82Lpx2F5khhFq2PQThSVdtvDK3A8caqdxTxFC5bPhsCmsD8usIQUkORdOiYlui4netenbEs24trnQcRnZxInGxmu8ep0T1xFd9qaxiHo77uPYgb2yeC28v37zwK7ubgmvDw3//aLV6WOos9Utdj2akQtcwmNU6wUT3kOJPGUysFlPZM62232zvtT9g7OeNqwBPoRhpQVed9Gg6O6mC9VqDoSZHIOFf/rMyFYjIPRe6/m3vGkmwsNvTi+XtNxenimKeL5TmNZ35L80d/+cZi/XJ6DiSsY/8YKPS7E+PgUymdUcQFwPgD4bMJ3WHEBMhkCfDdnPaw7AdeOfT4T6j8Y1B+xJJktrm0br7vHMFP3qvpv4fM0+NuLcS6r/CDYb8ezJruoq9tUCBOU2EWxfX+U5VCHZuGfmQ7ateu/N9QP2uD8BRC+YAw== sidebar_class_name: "get api-method" info_path: versioned_docs/version-3.X/reference/api/resoto-core-rest-api custom_edit_url: null @@ -22,18 +22,613 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Perform a dynamically assembled benchmark on a graph.

+

+ Perform a dynamically assembled benchmark on a graph. +

- - - + + + Perform a benchmark by defining the check criteria on a graph with a given identifier. ## Request -

Path Parameters

Query Parameters

- -The checks result. - -
Schema
  • Array [
  • oneOf
    reported object
    desired object
    metadata object
  • ]
Schema
  • Array [
  • oneOf
    reported object
    desired object
    metadata object
  • ]
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + + + +
+
+
+
+ + +
+ + + The checks result. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + +
    + + + + reported + + object + + +
    + + + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
    +
    + + + + + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + + oneOf + + + + + + + +
    + + + + reported + + object + + +
    + + + + + +
    +
    +
    +
    + + + + desired + + object + + +
    + + + +
    +
    +
    +
    + + + + metadata + + object + + +
    + + + +
    +
    +
    +
    + + + + + + + + +
    +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/proxy-request-to-a-configured-tsdb-server.api.mdx b/versioned_docs/version-3.X/reference/api/proxy-request-to-a-configured-tsdb-server.api.mdx index ca6542adf..ec75100ba 100644 --- a/versioned_docs/version-3.X/reference/api/proxy-request-to-a-configured-tsdb-server.api.mdx +++ b/versioned_docs/version-3.X/reference/api/proxy-request-to-a-configured-tsdb-server.api.mdx @@ -22,38 +22,231 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Proxy request to a configured tsdb server.

- - - - +

+ Proxy request to a configured tsdb server. +

+ + + + Proxy request to a configured tsdb server. ## Request -

Path Parameters

- -If the response is coming from Resoto (no ResotoVia header), this means that tsdb is not configured, so a request can not be made. - -
Schema
    - -string - -
- -If the response is coming from Resoto (no ResotoVia header), this means that the configured tsdb server can not be reached. - -
Schema
    - -string - -
- -The response from the tsdb. - -
Response Headers
  • ViaResoto string
    - -This header indicates, that the response is created by the tsdb server and Resoto is only a proxy. Depending on this header: you have to interpret the response differently. - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + If the response is coming from Resoto (no ResotoVia header), this means that tsdb is not configured, so a request can not be made. + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+ + + If the response is coming from Resoto (no ResotoVia header), this means that the configured tsdb server can not be reached. + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+ + + The response from the tsdb. + + +
+ + + Response Headers + +
    +
  • + + + ViaResoto + + string + +
    +
    + + + This header indicates, that the response is created by the tsdb server and Resoto is only a proxy. + Depending on this header: you have to interpret the response differently. + + + +
    +
    +
  • +
+
+ +
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/replace-a-configuration-validation-with-given-id.api.mdx b/versioned_docs/version-3.X/reference/api/replace-a-configuration-validation-with-given-id.api.mdx index 27b6fe7c7..d540b862b 100644 --- a/versioned_docs/version-3.X/reference/api/replace-a-configuration-validation-with-given-id.api.mdx +++ b/versioned_docs/version-3.X/reference/api/replace-a-configuration-validation-with-given-id.api.mdx @@ -22,18 +22,184 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Replace a configuration validation with given id

+

+ Replace a configuration validation with given id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Replace a configuration validation identified by id with provided value. ## Request -

Path Parameters

Body

- -The configuration validation. - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +
+ +

+ Body +

+
+ +
    + + + + + +
+
+
+
+
+ + +
+ + + The configuration validation. + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/replace-a-configuration-with-given-id.api.mdx b/versioned_docs/version-3.X/reference/api/replace-a-configuration-with-given-id.api.mdx index 0313a2318..41b381726 100644 --- a/versioned_docs/version-3.X/reference/api/replace-a-configuration-with-given-id.api.mdx +++ b/versioned_docs/version-3.X/reference/api/replace-a-configuration-with-given-id.api.mdx @@ -22,22 +22,238 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Replace a configuration with given id

+

+ Replace a configuration with given id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Replace a configuration identified by id with provided value. ## Request -

Path Parameters

Query Parameters

Body

- -The configuration - -
Response Headers
  • Resoto-Config-Revision string
    - -The revision of this config - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+
+ +
    + + + +
+
+
+
+
+ + +
+ + + The configuration + + +
+ + + Response Headers + +
    +
  • + + + Resoto-Config-Revision + + string + +
    +
    + + + The revision of this config + + +
    +
    +
  • +
+
+ + + + +
+ + + Schema + +
+ +
    + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/resoto-core-rest-api.info.mdx b/versioned_docs/version-3.X/reference/api/resoto-core-rest-api.info.mdx index 9924b192b..2336c304f 100644 --- a/versioned_docs/version-3.X/reference/api/resoto-core-rest-api.info.mdx +++ b/versioned_docs/version-3.X/reference/api/resoto-core-rest-api.info.mdx @@ -13,6 +13,14 @@ import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; import Export from "@theme/ApiExplorer/Export"; -Version: V1 + + Version: V1 + -

Resoto Core REST API

+

+ Resoto Core REST API +

diff --git a/versioned_docs/version-3.X/reference/api/retrieve-the-certificate-authorities-public-certificate.api.mdx b/versioned_docs/version-3.X/reference/api/retrieve-the-certificate-authorities-public-certificate.api.mdx index 4657db45f..b9dadcce5 100644 --- a/versioned_docs/version-3.X/reference/api/retrieve-the-certificate-authorities-public-certificate.api.mdx +++ b/versioned_docs/version-3.X/reference/api/retrieve-the-certificate-authorities-public-certificate.api.mdx @@ -22,22 +22,89 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Retrieve the certificate authorities public certificate.

+

+ Retrieve the certificate authorities public certificate. +

- - - + + + The certificate served here is only used to sign and validate. ## Request -
- -The certificate in PEM format. - -
Schema
    - -string - -
+
+
+ + +
+ + + The certificate in PEM format. + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/search-all-history-events-and-return-them.api.mdx b/versioned_docs/version-3.X/reference/api/search-all-history-events-and-return-them.api.mdx index 7148b1777..e07a81a4b 100644 --- a/versioned_docs/version-3.X/reference/api/search-all-history-events-and-return-them.api.mdx +++ b/versioned_docs/version-3.X/reference/api/search-all-history-events-and-return-them.api.mdx @@ -22,26 +22,401 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Search all history events and return them.

+

+ Search all history events and return them. +

- + + + - - -Search all history events and return them. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age\>23d or desired.clean==true or metadata.version==2) +Search all history events and return them. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age>23d or desired.clean==true or metadata.version==2) ## Request -

Path Parameters

Query Parameters

Body

- -The search to perform - -
    - -string - -
- -The result of this search in the defined format - -
Schema
  • Array [
  • ]
Schema
Schema
    any
Schema
    any
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The result of this search in the defined format + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + + + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/search-and-aggregate-history-events-and-return-the-aggregation-result.api.mdx b/versioned_docs/version-3.X/reference/api/search-and-aggregate-history-events-and-return-the-aggregation-result.api.mdx index 4971dcd6f..5c5280f95 100644 --- a/versioned_docs/version-3.X/reference/api/search-and-aggregate-history-events-and-return-the-aggregation-result.api.mdx +++ b/versioned_docs/version-3.X/reference/api/search-and-aggregate-history-events-and-return-the-aggregation-result.api.mdx @@ -22,26 +22,254 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Search and aggregate history events and return the aggregation result.

+

+ Search and aggregate history events and return the aggregation result. +

- + + + - - -Search and aggregate history events and return the aggregation result. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age\>23d or desired.clean==true or metadata.version==2) +Search and aggregate history events and return the aggregation result. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age>23d or desired.clean==true or metadata.version==2) ## Request -

Path Parameters

Query Parameters

Body

- -The aggregation search to perform - -
    - -string - -
- -The result of this search in the defined format - -
Schema
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The aggregation search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The result of this search in the defined format + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
+
+
+
+
+ + +
+ + + Schema + +
+ +
    + + + +
+
+
+
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/search-the-aggregate-function-on-the-specified-graph-and-return-the-aggregation-result.api.mdx b/versioned_docs/version-3.X/reference/api/search-the-aggregate-function-on-the-specified-graph-and-return-the-aggregation-result.api.mdx index 33d1a1eaf..ddc827377 100644 --- a/versioned_docs/version-3.X/reference/api/search-the-aggregate-function-on-the-specified-graph-and-return-the-aggregation-result.api.mdx +++ b/versioned_docs/version-3.X/reference/api/search-the-aggregate-function-on-the-specified-graph-and-return-the-aggregation-result.api.mdx @@ -22,26 +22,239 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Search the aggregate function on the specified graph and return the aggregation result.

+

+ Search the aggregate function on the specified graph and return the aggregation result. +

- + + + - - -Search and aggregate the graph and return the resulting aggregated data. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age\>23d or desired.clean==true or metadata.version==2) +Search and aggregate the graph and return the resulting aggregated data. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age>23d or desired.clean==true or metadata.version==2) ## Request -

Path Parameters

Query Parameters

Body

- -The aggregation search to perform - -
    - -string - -
- -The result of this search in the defined format - -
Schema
Schema
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The aggregation search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The result of this search in the defined format + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
+
+
+
+
+ + +
+ + + Schema + +
+ +
    + + + +
+
+
+
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/search-the-graph-and-return-all-nodes-as-list-this-will-not-contain-any-edges.api.mdx b/versioned_docs/version-3.X/reference/api/search-the-graph-and-return-all-nodes-as-list-this-will-not-contain-any-edges.api.mdx index cdbecd88e..f992c4451 100644 --- a/versioned_docs/version-3.X/reference/api/search-the-graph-and-return-all-nodes-as-list-this-will-not-contain-any-edges.api.mdx +++ b/versioned_docs/version-3.X/reference/api/search-the-graph-and-return-all-nodes-as-list-this-will-not-contain-any-edges.api.mdx @@ -22,26 +22,524 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Search the graph and return all nodes as list (this will not contain any edges)

+

+ Search the graph and return all nodes as list (this will not contain any edges) +

- + + + - - -Search the graph and return the matching nodes as list. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age\>23d or desired.clean==true or metadata.version==2) +Search the graph and return the matching nodes as list. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age>23d or desired.clean==true or metadata.version==2) ## Request -

Path Parameters

Query Parameters

Body

- -The search to perform - -
    - -string - -
- -The result of this search in the defined format - -
Schema
  • Array [
  • ]
Schema
Schema
    any
Schema
    any
Schema
    any
\n \n \n \n \n \n \n \n graph_root\n root\n root\n \n \n cloud\n onelogin\n onelogin\n 2021-12-14T08:49:52Z\n 6d7h\n \n \n \n\n"} language={"xml"}>
Schema
    any
Schema
    any
\"2RZlTX9yzeBwTNT_H1KZVA\"\n subgraph \"graph_root\" {\n \"root\"\n \"2RZlTX9yzeBwTNT_H1KZVA\"\n }\n}\n"} language={"shell"}>
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The result of this search in the defined format + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + + + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ \n \n \n \n \n \n \n \n graph_root\n root\n root\n \n \n cloud\n onelogin\n onelogin\n 2021-12-14T08:49:52Z\n 6d7h\n \n \n \n\n"} + language={"xml"} + > + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ \"2RZlTX9yzeBwTNT_H1KZVA\"\n subgraph \"graph_root\" {\n \"root\"\n \"2RZlTX9yzeBwTNT_H1KZVA\"\n }\n}\n"} + language={"shell"} + > + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/search-the-graph-and-return-the-resulting-graph.api.mdx b/versioned_docs/version-3.X/reference/api/search-the-graph-and-return-the-resulting-graph.api.mdx index a76b743e1..cfc3f4237 100644 --- a/versioned_docs/version-3.X/reference/api/search-the-graph-and-return-the-resulting-graph.api.mdx +++ b/versioned_docs/version-3.X/reference/api/search-the-graph-and-return-the-resulting-graph.api.mdx @@ -22,26 +22,529 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Search the graph and return the resulting graph.

+

+ Search the graph and return the resulting graph. +

- + + + - - -Search the graph and return the matching nodes including the traversed edges. The resulting data can be interpreted as a graph. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age\>23d or desired.clean==true or metadata.version==2) +Search the graph and return the matching nodes including the traversed edges. The resulting data can be interpreted as a graph. A section can be defined (defaults to `/` == root) to interpret relative property paths. Example: is(volume) and (reported.age>23d or desired.clean==true or metadata.version==2) ## Request -

Path Parameters

Query Parameters

Body

- -The search to perform - -
    - -string - -
- -The result of this search in the defined format - -
Schema
  • Array [
  • ]
Schema
Schema
    any
Schema
    any
Schema
    any
\n \n \n \n \n \n \n \n graph_root\n root\n root\n \n \n cloud\n onelogin\n onelogin\n 2021-12-14T08:49:52Z\n 6d7h\n \n \n \n\n"} language={"xml"}>
Schema
    any
Schema
    any
\"2RZlTX9yzeBwTNT_H1KZVA\"\n subgraph \"graph_root\" {\n \"root\"\n \"2RZlTX9yzeBwTNT_H1KZVA\"\n }\n}\n"} language={"shell"}>
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The result of this search in the defined format + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + + + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ \n \n \n \n \n \n \n \n graph_root\n root\n root\n \n \n cloud\n onelogin\n onelogin\n 2021-12-14T08:49:52Z\n 6d7h\n \n \n \n\n"} + language={"xml"} + > + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+ + +
+ + + Schema + +
+ +
    + any +
+
+
+ \"2RZlTX9yzeBwTNT_H1KZVA\"\n subgraph \"graph_root\" {\n \"root\"\n \"2RZlTX9yzeBwTNT_H1KZVA\"\n }\n}\n"} + language={"shell"} + > + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/send-a-ping-to-the-system-and-expect-a-pong.api.mdx b/versioned_docs/version-3.X/reference/api/send-a-ping-to-the-system-and-expect-a-pong.api.mdx index 4d217d475..c8ebf942b 100644 --- a/versioned_docs/version-3.X/reference/api/send-a-ping-to-the-system-and-expect-a-pong.api.mdx +++ b/versioned_docs/version-3.X/reference/api/send-a-ping-to-the-system-and-expect-a-pong.api.mdx @@ -22,22 +22,89 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Send a ping to the system and expect a pong.

+

+ Send a ping to the system and expect a pong. +

- - - + + + Send a ping to the system and expect a pong. ## Request -
- -The pong answer - -
Schema
    - -string - -
+
+
+ + +
+ + + The pong answer + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/send-analytics-events-to-the-server.api.mdx b/versioned_docs/version-3.X/reference/api/send-analytics-events-to-the-server.api.mdx index b5dfc5db0..f20f95e71 100644 --- a/versioned_docs/version-3.X/reference/api/send-analytics-events-to-the-server.api.mdx +++ b/versioned_docs/version-3.X/reference/api/send-analytics-events-to-the-server.api.mdx @@ -22,30 +22,220 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Send analytics events to the server

+

+ Send analytics events to the server +

- - - + + + Send analytics events to the server. The server will either drop or forward the event based on the user defined settings. ## Request -

Body

array
- -The analytics events to send - -
  • Array [
  • context object
    - -The context of the event. - -
    counters object
    - -The counters of the event. - -
  • ]
- -The events were accepted - -
+ + +
+ +

+ Body +

+ array + +
+
+ + + The analytics events to send + + +
+
    +
  • +
    + Array [ +
    +
  • + + + + +
    + + + + context + + object + + +
    +
    + + + The context of the event. + + +
    + + +
    +
    +
    +
    + + + + counters + + object + + +
    +
    + + + The counters of the event. + + +
    + + +
    +
    +
    + +
  • +
    + ] +
    +
  • +
+
+
+
+
+ + +
+ + + The events were accepted + + +
+ +
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/show-the-structure-of-the-search.api.mdx b/versioned_docs/version-3.X/reference/api/show-the-structure-of-the-search.api.mdx index 461888c4c..e5aa2c859 100644 --- a/versioned_docs/version-3.X/reference/api/show-the-structure-of-the-search.api.mdx +++ b/versioned_docs/version-3.X/reference/api/show-the-structure-of-the-search.api.mdx @@ -22,26 +22,193 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Show the structure of the search

+

+ Show the structure of the search +

- - - + + + Structure of the search as json object. ## Request -

Path Parameters

Query Parameters

Body

- -The search to perform - -
    - -string - -
- -The execution plan of the database - -
Schema
    any
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The execution plan of the database + + +
+ + + + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/sign-a-certificate-request.api.mdx b/versioned_docs/version-3.X/reference/api/sign-a-certificate-request.api.mdx index 2eab3eb72..ba498ba25 100644 --- a/versioned_docs/version-3.X/reference/api/sign-a-certificate-request.api.mdx +++ b/versioned_docs/version-3.X/reference/api/sign-a-certificate-request.api.mdx @@ -22,30 +22,138 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Sign a certificate request.

+

+ Sign a certificate request. +

- - - + + + Sign a certificate request. ## Request -

Body

- -The certificate signing request (csr) in pkcs10 format. - -
    - -string - -
- -The certificate in PEM format. - -
Schema
    - -string - -
+ + +
+ +

+ Body +

+
+
+ + + The certificate signing request (csr) in pkcs10 format. + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + The certificate in PEM format. + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-authenticate-the-user.api.mdx b/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-authenticate-the-user.api.mdx index b55a39660..f6da807bd 100644 --- a/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-authenticate-the-user.api.mdx +++ b/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-authenticate-the-user.api.mdx @@ -22,18 +22,100 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

This endpoint is used to authenticate the user.

+

+ This endpoint is used to authenticate the user. +

- - - + + + Authenticate the user. This endpoint needs to be accessed from a browser! It is possible that the user is redirected to another authentication server. ## Request -

Body

- -The redirect to the specified url in the form with a code parameter added. - -
+ + +
+ +

+ Body +

+
+ +
    + + + + + + + +
+
+
+
+
+ + +
+ + + The redirect to the specified url in the form with a code parameter added. + + +
+ +
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-create-the-first-user.api.mdx b/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-create-the-first-user.api.mdx index f2f81dbf0..00fe28478 100644 --- a/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-create-the-first-user.api.mdx +++ b/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-create-the-first-user.api.mdx @@ -22,18 +22,127 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

This endpoint is used to create the first user.

+

+ This endpoint is used to create the first user. +

- - - + + + Create the first user from the create first user login form. ## Request -

Body

- -The redirect to the specified url in the form. - -
+ + +
+ +

+ Body +

+
+ +
    + + + + + + + + + + + + + +
+
+
+
+
+ + +
+ + + The redirect to the specified url in the form. + + +
+ +
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-get-the-user-information.api.mdx b/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-get-the-user-information.api.mdx index 53145ecc0..3e042459c 100644 --- a/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-get-the-user-information.api.mdx +++ b/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-get-the-user-information.api.mdx @@ -22,18 +22,91 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

This endpoint is used to get the user information.

+

+ This endpoint is used to get the user information. +

- - - + + + Get the user information. ## Request -
- -The user information. - -
Schema
    any
+
+
+ + +
+ + + The user information. + + +
+ + + + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-login-the-user.api.mdx b/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-login-the-user.api.mdx index 1b4ed567b..bc73fea1a 100644 --- a/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-login-the-user.api.mdx +++ b/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-login-the-user.api.mdx @@ -22,18 +22,40 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

This endpoint is used to login the user.

- - - - +

+ This endpoint is used to login the user. +

+ + + + Authenticate the user. This endpoint needs to be accessed from a browser! It is possible that the user is redirected to another authentication server. ## Request -
- -The login page. - -
+
+
+ + +
+ + + The login page. + + +
+ +
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-renew-a-jwt-that-is-about-to-expire.api.mdx b/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-renew-a-jwt-that-is-about-to-expire.api.mdx index 88186f8c3..c676413b1 100644 --- a/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-renew-a-jwt-that-is-about-to-expire.api.mdx +++ b/versioned_docs/version-3.X/reference/api/this-endpoint-is-used-to-renew-a-jwt-that-is-about-to-expire.api.mdx @@ -22,22 +22,132 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

This endpoint is used to renew a JWT that is about to expire.

+

+ This endpoint is used to renew a JWT that is about to expire. +

- - - + + + Get the user information. ## Request -
- -The user information. - -
Response Headers
  • Authorization string
    - -The authorization header with the renewed JWT. - -
Schema
    any
+
+
+ + +
+ + + The user information. + + +
+ + + Response Headers + +
    +
  • + + + Authorization + + string + +
    +
    + + + The authorization header with the renewed JWT. + + +
    +
    +
  • +
+
+ + + + +
+ + + Schema + +
+ +
    + any +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/this-endpoint-signals-if-the-system-is-ready-to-serve-traffic.api.mdx b/versioned_docs/version-3.X/reference/api/this-endpoint-signals-if-the-system-is-ready-to-serve-traffic.api.mdx index ff5d80e66..c399ff879 100644 --- a/versioned_docs/version-3.X/reference/api/this-endpoint-signals-if-the-system-is-ready-to-serve-traffic.api.mdx +++ b/versioned_docs/version-3.X/reference/api/this-endpoint-signals-if-the-system-is-ready-to-serve-traffic.api.mdx @@ -22,22 +22,89 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

This endpoint signals if the system is ready to serve traffic.

+

+ This endpoint signals if the system is ready to serve traffic. +

- - - + + + This endpoint signals if the system is ready to serve traffic. ## Request -
- -This response code signals, that the system is ready. - -
Schema
    - -string - -
+
+
+ + +
+ + + This response code signals, that the system is ready. + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/transform-the-search-into-the-raw-database-search.api.mdx b/versioned_docs/version-3.X/reference/api/transform-the-search-into-the-raw-database-search.api.mdx index 8a3b3de33..20bd0d569 100644 --- a/versioned_docs/version-3.X/reference/api/transform-the-search-into-the-raw-database-search.api.mdx +++ b/versioned_docs/version-3.X/reference/api/transform-the-search-into-the-raw-database-search.api.mdx @@ -22,30 +22,250 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Transform the search into the raw database search

+

+ Transform the search into the raw database search +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Show the underlying raw search. ## Request -

Path Parameters

Query Parameters

Body

- -The search to perform - -
    - -string - -
- -Returns the search as performed by the database. - -
Schema
    bind_vars object
    - -All binding variables for this query - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The search to perform + + +
+
    +
    + + + string + + +
    +
+
+
+
+
+ + +
+ + + Returns the search as performed by the database. + + +
+ + + + +
+ + + Schema + +
+ +
    + + + +
    + + + + bind_vars + + object + + +
    +
    + + + All binding variables for this query + + +
    + + +
    +
    +
    +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/update-a-node-with-the-given-node-id.api.mdx b/versioned_docs/version-3.X/reference/api/update-a-node-with-the-given-node-id.api.mdx index 77d54a6dc..484df3bf8 100644 --- a/versioned_docs/version-3.X/reference/api/update-a-node-with-the-given-node-id.api.mdx +++ b/versioned_docs/version-3.X/reference/api/update-a-node-with-the-given-node-id.api.mdx @@ -22,22 +22,190 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

Update a node with the given node id

+

+ Update a node with the given node id +

- - - + + + **Experimental**: This API is not stable and might be subject of change.
Update a node with the given node id ## Request -

Path Parameters

Body

- -The partial object data to patch. - -
- -Return the patched node - -
Schema
+
+ +

+ Path Parameters +

+
+
    + + + + + +
+
+
+ +
+ +

+ Body +

+
+
+ + + The partial object data to patch. + + +
+
    + + + +
+
+
+
+
+ + +
+ + + Return the patched node + + +
+ + + + +
+ + + Schema + +
+ +
    + + + + + +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/web-socket-attach-to-the-working-queue.api.mdx b/versioned_docs/version-3.X/reference/api/web-socket-attach-to-the-working-queue.api.mdx index 751fae45b..7b906fe9d 100644 --- a/versioned_docs/version-3.X/reference/api/web-socket-attach-to-the-working-queue.api.mdx +++ b/versioned_docs/version-3.X/reference/api/web-socket-attach-to-the-working-queue.api.mdx @@ -22,11 +22,18 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

[WebSocket] Attach to the working queue

+

+ [WebSocket] Attach to the working queue +

- - - + + + ## WebSocket Endpoint @@ -40,8 +47,125 @@ Note: the server tries to spread the number of tasks evenly over the number of w ## Request -

Query Parameters

- -When the connection is established. - -
Schema
  • Array [
  • ]
+
+ +

+ Query Parameters +

+
+
    + + + + + +
+
+
+
+ + +
+ + + When the connection is established. + + +
+ + + + +
+ + + Schema + +
+ +
    +
  • +
    + Array [ +
    +
  • + +
  • +
    + ] +
    +
  • +
+
+
+ + + + +
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/web-socket-listen-to-registered-events-of-given-subscriber.api.mdx b/versioned_docs/version-3.X/reference/api/web-socket-listen-to-registered-events-of-given-subscriber.api.mdx index e4f4d43ca..94ccfd8bd 100644 --- a/versioned_docs/version-3.X/reference/api/web-socket-listen-to-registered-events-of-given-subscriber.api.mdx +++ b/versioned_docs/version-3.X/reference/api/web-socket-listen-to-registered-events-of-given-subscriber.api.mdx @@ -22,11 +22,18 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

[WebSocket] Listen to registered events of given subscriber

+

+ [WebSocket] Listen to registered events of given subscriber +

- - - + + + ## WebSocket Endpoint @@ -36,12 +43,96 @@ The connection to this endpoint will never be closed. All action events of the s ## Request -

Path Parameters

- -No subscriber found - -
Schema
    - -string - -
+
+ +

+ Path Parameters +

+
+
    + + + +
+
+
+
+ + +
+ + + No subscriber found + + +
+ + + + +
+ + + Schema + +
+ +
    +
    + + + string + + +
    +
+
+
+
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/api/web-socket-register-as-event-listener-and-receive-all-events.api.mdx b/versioned_docs/version-3.X/reference/api/web-socket-register-as-event-listener-and-receive-all-events.api.mdx index 8e986b398..ad642f823 100644 --- a/versioned_docs/version-3.X/reference/api/web-socket-register-as-event-listener-and-receive-all-events.api.mdx +++ b/versioned_docs/version-3.X/reference/api/web-socket-register-as-event-listener-and-receive-all-events.api.mdx @@ -22,11 +22,18 @@ import SchemaItem from "@theme/SchemaItem"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; -

[WebSocket] Register as event listener and receive all events.

+

+ [WebSocket] Register as event listener and receive all events. +

- - - + + + ## WebSocket Endpoint @@ -34,8 +41,47 @@ The client needs to send all the required headers for a ws connection and has to ## Authorization -In case Resoto has a PSK infrastructure in place, the client needs to send a JWT token via the `Authorization` header or via the `resoto_authorization` cookie. It is also possible to omit header or cookie and send an Authorization message as first message on the websocket. Example { "kind": "authorization", "jwt": "Bearer " } +In case Resoto has a PSK infrastructure in place, the client needs to send a JWT token via the `Authorization` header or via the `resoto_authorization` cookie. It is also possible to omit header or cookie and send an Authorization message as first message on the websocket. Example \{ "kind": "authorization", "jwt": "Bearer <jwt>" \} ## Request -

Query Parameters

+
+ +

+ Query Parameters +

+
+
    + + + +
+
+
+
+ + +
+ +
+ +
+
+
+
+
diff --git a/versioned_docs/version-3.X/reference/configuration/worker.mdx b/versioned_docs/version-3.X/reference/configuration/worker.mdx index 11a395af9..08c609243 100644 --- a/versioned_docs/version-3.X/reference/configuration/worker.mdx +++ b/versioned_docs/version-3.X/reference/configuration/worker.mdx @@ -38,7 +38,7 @@ Resoto Worker can only write files to its home directory. ::: -:::caution +:::warning Resoto Worker will overwrite any existing files with the defined filenames. @@ -49,7 +49,6 @@ Resoto Worker will overwrite any existing files with the defined filenames. For [Docker](../../getting-started/install-resoto/docker.mdx) and [Kubernetes](../../getting-started/install-resoto/kubernetes.mdx) installations, you can mount configuration files within the `resotoworker` container instead of defining them in the configuration. - 1. Add the desired volume definition to the `resotoworker` service in `docker-compose.yaml`: @@ -84,7 +83,6 @@ For [Docker](../../getting-started/install-resoto/docker.mdx) and [Kubernetes](. ::: - 1. Create a secret with the path to the configuration file: @@ -118,7 +116,6 @@ For [Docker](../../getting-started/install-resoto/docker.mdx) and [Kubernetes](. ``` - ## Multi-Core Machines @@ -161,7 +158,7 @@ gcp: - Within AWS, `aws.region_pool_size` is used to determine how many regions per account are collected concurrently. -:::caution +:::warning At peak, Resoto creates concurrent network connections for each region in every account. With a single cloud with 32 accounts and 20 regions per account, for example, there will be a maximum of 32 × 20 = 640 connections. diff --git a/versioned_docs/version-3.X/reference/search/filters.mdx b/versioned_docs/version-3.X/reference/search/filters.mdx index 1447f9aea..6a5128ab1 100644 --- a/versioned_docs/version-3.X/reference/search/filters.mdx +++ b/versioned_docs/version-3.X/reference/search/filters.mdx @@ -5,7 +5,7 @@ sidebar_label: Filters # Search Filters -## Selecting Nodes by [Kind](../../concepts/asset-inventory-graph/index.mdx#resource-kinds) {#selecting-nodes-by-kind} +## Selecting Nodes by [Kind](../../concepts/asset-inventory-graph/index.mdx#resource-kinds) \{#selecting-nodes-by-kind} ```bash title="Filter by kind" > search is(instance) @@ -156,7 +156,7 @@ Let us assume following document: `{"reported": { "test": [1, 2, 3, 4]}}`, we co In case no operator modifier is defined, the default is `any`. -:::tip Example Predicates +:::tip[Example] Predicates ```bash title="Select nodes with names exactly matching "sunset"" name == "sunset" @@ -186,7 +186,7 @@ All listed selections can be combined with `and` and `or` clauses. In order to d It is possible to negate a simple predicate or more complex term with `not`. -:::tip Examples +:::tip[Examples] ```bash title="Select nodes where reported.name is either sunrise or sunset" > search name in [sunset, sunrise] @@ -216,7 +216,7 @@ There are entities that contain complex, deeply nested structures. As explained If you need to combine several predicates for nested array elements, it is not sufficient to combine multiple predicates using `[*]` since there is no way to define the same position for all predicates. However, this is achievable using context notation. -:::tip Example +:::tip[Example] ```json title="Example document showing the data of an AWS security gateway" { @@ -278,7 +278,7 @@ It is also possible to nest a context within another: path[*].{predicate1, nested[*].{predicate2, ...}, ...} ``` -:::tip Example +:::tip[Example] Here is another example of context notation using the example JSON document above: @@ -326,7 +326,7 @@ Values coming from the cloud provider are available in the `reported` section, a Nodes can be selected based on the fact that a specific property exists, no matter which value this property has. The `has_key(parent, property)` function will select all nodes where the property `parent` has property `property`. -:::tip Example +:::tip[Example] We want to find all volumes that are tagged with the tag `owner`. @@ -342,7 +342,7 @@ We want to find all volumes that are tagged with the tag `owner`. For resources with IPv4 addresses, it is possible to select nodes in a specific subnet range. The function `in_subnet(ipv4_property, cidr)` will select all nodes where the property `ipv4_property` is in the subnet range `cidr`. -:::tip Example +:::tip[Example] We want to find all load balancer, where the public IPv4 address is in the subnet range `167.123.0.0/16`. diff --git a/versioned_docs/version-3.X/reference/search/merging-nodes.mdx b/versioned_docs/version-3.X/reference/search/merging-nodes.mdx index 64f7d7285..ba0ac0e46 100644 --- a/versioned_docs/version-3.X/reference/search/merging-nodes.mdx +++ b/versioned_docs/version-3.X/reference/search/merging-nodes.mdx @@ -13,7 +13,7 @@ This approach merges multiple nodes in a graph into one node. This combined node The nested search is executed for every node in the result. The result of the nested search is then merged with the original node data. -:::tip Example +:::tip[Example] Most cloud resources are maintained in an account. Accounts are modeled as [nodes](../../concepts/asset-inventory-graph/index.mdx#nodes) in Resoto. @@ -52,7 +52,7 @@ If the merge name is a simple literal, zero or one result of the nested search i If the expected result of the nested search is a list, than the merge name has to be defined with square brackets. -:::tip Example +:::tip[Example] The following search will traverse inbound on every element and collect all predecessors under the name `predecessors`). Please note the square brackets in the name `predecessors[]` - which will tell the search engine to return all predecessors, not only the first one. As a result the node is returned with a new property, which contains the list of all predecessors. @@ -76,7 +76,7 @@ The following search will traverse inbound on every element and collect all pred It is also possible to define multiple merge queries in one `search` statement. -:::tip Example +:::tip[Example] As a result every node that is returned has two additional properties: `account` holds the complete data of the account node, as well `region`, which contains the related region node. diff --git a/versioned_docs/version-3.X/reference/search/sort-and-limit.mdx b/versioned_docs/version-3.X/reference/search/sort-and-limit.mdx index 1f695bf63..c5c5972ae 100644 --- a/versioned_docs/version-3.X/reference/search/sort-and-limit.mdx +++ b/versioned_docs/version-3.X/reference/search/sort-and-limit.mdx @@ -37,7 +37,11 @@ Example: > search is(volume) limit 3, 5 ``` -:::tip While experimenting with a specific search or exploring the cloud you should always define a meaningful limit. This will reduce the search result to a number that can be digested easily. ::: +:::tip + +While experimenting with a specific search or exploring the cloud, you should always define a meaningful limit. This will reduce the search result to a number that can be digested easily. + +::: Please note: a single search can have multiple limits: one for each partial search result. This is especially useful when the graph is traversed, since the limit can be applied to every graph traversal. diff --git a/versioned_docs/version-3.X/reference/search/traversals.mdx b/versioned_docs/version-3.X/reference/search/traversals.mdx index 038a0b3d1..95e2e9bf3 100644 --- a/versioned_docs/version-3.X/reference/search/traversals.mdx +++ b/versioned_docs/version-3.X/reference/search/traversals.mdx @@ -13,7 +13,7 @@ sidebar_label: Traversals `-->` traverses the graph outbound to the next level. -:::tip Example +:::tip[Example] ```bash title="Select AWS accounts and traverse the graph outbound" > search is(aws_account) --> @@ -29,7 +29,7 @@ This query would return a list of all matching regions. `<--` traverses the graph inbound to the next level. -:::tip Example +:::tip[Example] ```bash title="Select AWS EC2 instances, traverse the graph inbound, and filter to only return the aws_regions" > search is(aws_ec2_instance) <-- is(aws_region) @@ -43,7 +43,7 @@ This query would return a list of all matching regions. `-[0:1]->` traverses the graph outbound, starting from the current node **(0)** until the next level **(1)**. The result will contain the current node plus all nodes one level outbound. The same applies for inbound with this statement `<-[0:1]-`. -:::tip Example +:::tip[Example] ```bash title="Return all resources "under" an aws_region together with the matching aws_region" > search is(aws_region) -[0:1]->` @@ -53,7 +53,7 @@ This query would return a list of all matching regions. ::: -:::tip Example +:::tip[Example] ```bash title="Return all aws_regions with name global, together with all accounts" > search is(aws_region) and name==global <-[0:1]- @@ -69,7 +69,7 @@ This query would return a list of all matching regions. ![Traversal by Depth Diagram](./img/graph_query_startuntil.png) -:::tip Example +:::tip[Example] The following query answers the question, "Which instance profile is used for ec2 instances connected to an alb target group?" @@ -83,7 +83,7 @@ The following query answers the question, "Which instance profile is used for ec `-[start:]->` traverses the graph outbound starting from a user defined depth to the leafs of the graph. The graph will be traversed from the current node according to this specification. All matching nodes will be returned. The same applies for inbound traversals with `<-[start:]-`. -:::tip Example +:::tip[Example] ```bash > search is(aws_account) and name==sunshine -[0:]-> @@ -97,7 +97,7 @@ This query will select the aws account with name `sunshine` and then select all `<-[start:until]->` traverses the graph inbound and outbound starting from a user defined depth to a user defined depth. The graph will be traversed from the current node according to this specification. All matching nodes will be returned. -:::tip Example +:::tip[Example] ```bash title="Select nodes with the name sunset connected on any depth to the AWS account" > search name="sunset" and is(aws_account) <-[0:]-> @@ -136,7 +136,7 @@ graph LR; network_interface --delete--> instance ; ``` -:::tip Examples +:::tip[Examples] ```bash title="Selects all instances, walk the default edge outbound, and filter on volumes; returns volumes that are attached to an instance" > search is(instance) -default-> is(volume) @@ -173,7 +173,7 @@ There are abbreviations for commonly used traversal selectors: | `<-->` | `<-[1:1]->` | | `<-[x]-` | `<-[x:x]-` | -:::tip Examples +:::tip[Examples] | Abbreviated | Unabbreviated | | ------------------------------- | --------------------------------- | diff --git a/versioned_docs/version-3.X/reference/search/with-clause.mdx b/versioned_docs/version-3.X/reference/search/with-clause.mdx index 33b855d4a..0b2053456 100644 --- a/versioned_docs/version-3.X/reference/search/with-clause.mdx +++ b/versioned_docs/version-3.X/reference/search/with-clause.mdx @@ -10,7 +10,7 @@ The `with` clause can be useful, in case you want to select elements and ensure The `with` clause enables us to ensure defined relationships or positions in the graph without selecting their related nodes. -:::tip Example +:::tip[Example] ```mermaid graph LR; @@ -42,7 +42,7 @@ The `with` clause has three forms: No result is allowed in order to select the node. -:::tip Example +:::tip[Example] ```bash with (empty, [filter]) @@ -56,7 +56,7 @@ The first filter will select elements. With every element a graph traversal is d The `with` clause needs to select at least one matching node in order to select the filtered node. -:::tip Example +:::tip[Example] ```bash with (any, [filter]) @@ -68,7 +68,7 @@ The `with` clause needs to select at least one matching node in order to select The `with` clause needs to select the specified amount of matching nodes in order to select the filtered node. -:::tip Example +:::tip[Example] ```bash with (count==3, [filter]) diff --git a/versioned_docs/version-3.X/reference/security.mdx b/versioned_docs/version-3.X/reference/security.mdx index 5b6cc59c5..6ca7fb298 100644 --- a/versioned_docs/version-3.X/reference/security.mdx +++ b/versioned_docs/version-3.X/reference/security.mdx @@ -6,7 +6,7 @@ The trust between components is established using a [JWTs. -## JSON Web Token (JWT) {#json-web-token} +## JSON Web Token (JWT) \{#json-web-token} If a [PSK](#pre-shared-key) is provided, every request that a component makes to [Resoto Core](./components/core.mdx) must provide a valid `Authentication` header with a JWT signed using the PSK. This is true for encrypted HTTPS and unencrypted HTTP requests, meaning that if TLS is turned off (`--no-tls`) but a PSK was specified, the request will still be authenticated (just not encrypted!). -## Certificate Authority (CA) {#certificate-authority} +## Certificate Authority (CA) \{#certificate-authority} **By default, Resoto's built-in CA will be used.** @@ -95,7 +95,7 @@ When interfacing with Resoto's [API endpoints](./api/index.mdx), it is possible ### Retrieving and Validating the CA Certificate -The Resoto CA certificate can be retrieved at (replace `localhost` with the hostname or IP where [Resoto Core](./components/core.mdx) is running). +The Resoto CA certificate can be retrieved at [https://localhost:8900/ca/cert](https://localhost:8900/ca/cert) (replace `localhost` with the hostname or IP where [Resoto Core](./components/core.mdx) is running). In a Python 3 REPL with `resotolib` installed, execute the following: diff --git a/versioned_docs/version-3.X/reference/telemetry.mdx b/versioned_docs/version-3.X/reference/telemetry.mdx index 98b152764..3a1177b1e 100644 --- a/versioned_docs/version-3.X/reference/telemetry.mdx +++ b/versioned_docs/version-3.X/reference/telemetry.mdx @@ -4,7 +4,7 @@ Resoto collects anonymized telemetry data to inform product development. Telemet All data collected is anonymous—**we do not capture or store any personally identifiable information (PII)**. There are no unique identifiers that allow us to correlate a Resoto installation back to an actual person. -## Types of Telemetry Data {#types} +## Types of Telemetry Data \{#types} There are currently two types of telemetry data collected. @@ -25,6 +25,6 @@ The following are examples of metrics we currently monitor based on this usage d Error reporting aids us in identifying and fixing bugs or issues in Resoto. This reporting does not contain any sensitive or personally identifiable data. -## Disabling Telemetry Reporting {#disabling} +## Disabling Telemetry Reporting \{#disabling} Telemetry can be disabled via the `resotocore.runtime.usage_metrics` [Resoto Core configuration](./configuration/core.mdx) option. diff --git a/versioned_docs/version-3.X/reference/templates.mdx b/versioned_docs/version-3.X/reference/templates.mdx index 6e83ca6b6..14a3233b1 100644 --- a/versioned_docs/version-3.X/reference/templates.mdx +++ b/versioned_docs/version-3.X/reference/templates.mdx @@ -1,6 +1,6 @@ # Templates -[{{ mustache }}](https://mustache.github.io) templates can be used to define [custom commands](./cli/index.mdx#custom-commands) and [search templates](./cli/template/index.mdx). +[\{\{ mustache \}\}](https://mustache.github.io) templates can be used to define [custom commands](./cli/index.mdx#custom-commands) and [search templates](./cli/template/index.mdx). The [`template test` command](./cli/template/test.mdx) offers a way to test templates. We use this functionality below to illustrate template usage. diff --git a/versioned_docs/version-3.X/reference/unified-data-model/aws.mdx b/versioned_docs/version-3.X/reference/unified-data-model/aws.mdx index 47ed181e2..c52e7b0bd 100644 --- a/versioned_docs/version-3.X/reference/unified-data-model/aws.mdx +++ b/versioned_docs/version-3.X/reference/unified-data-model/aws.mdx @@ -91,11 +91,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_account resource relationships" @@ -136,9 +133,7 @@ aws_s3_account_settings -[#1A83AF]-> aws_account ``` -
-
## `aws_alb` @@ -312,11 +307,8 @@ resource <|--- load_balancer
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_alb resource relationships" @@ -378,9 +370,7 @@ aws_vpc -[#1A83AF]-> aws_ec2_subnet ``` -
-
## `aws_alb_target_group` @@ -474,11 +464,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_alb_target_group resource relationships" @@ -530,9 +517,7 @@ aws_vpc -[#1A83AF]-> aws_ec2_instance ``` -
-
## `aws_api_gateway_authorizer` @@ -596,11 +581,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_api_gateway_authorizer resource relationships" @@ -647,9 +629,7 @@ aws_iam_role -[#1A83AF]-> aws_api_gateway_authorizer ``` -
-
## `aws_api_gateway_deployment` @@ -707,11 +687,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_api_gateway_deployment resource relationships" @@ -749,9 +726,7 @@ aws_api_gateway_rest_api -[#1A83AF]-> aws_api_gateway_deployment ``` -
-
## `aws_api_gateway_domain_name` @@ -832,11 +807,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_api_gateway_domain_name resource relationships" @@ -874,9 +846,7 @@ aws_api_gateway_domain_name -[#1A83AF]-> aws_vpc_endpoint ``` -
-
## `aws_api_gateway_resource` @@ -982,11 +952,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_api_gateway_resource resource relationships" @@ -1030,9 +997,7 @@ aws_api_gateway_rest_api -[#1A83AF]-> aws_lambda_function ``` -
-
## `aws_api_gateway_rest_api` @@ -1101,11 +1066,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_api_gateway_rest_api resource relationships" @@ -1155,9 +1117,7 @@ aws_api_gateway_rest_api -[#1A83AF]-> aws_vpc_endpoint ``` -
-
## `aws_api_gateway_stage` @@ -1232,11 +1192,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_api_gateway_stage resource relationships" @@ -1271,9 +1228,7 @@ aws_api_gateway_deployment -[#1A83AF]-> aws_api_gateway_stage ``` -
-
## `aws_athena_data_catalog` @@ -1331,11 +1286,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_athena_data_catalog resource relationships" @@ -1370,9 +1322,7 @@ aws_athena_data_catalog -[#1A83AF]-> aws_sagemaker_processing_job ``` -
-
## `aws_athena_work_group` @@ -1455,11 +1405,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_athena_work_group resource relationships" @@ -1502,9 +1449,7 @@ aws_sagemaker_processing_job -[#1A83AF]-> aws_s3_bucket ``` -
-
## `aws_autoscaling_group` @@ -1685,11 +1630,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_autoscaling_group resource relationships" @@ -1738,9 +1680,7 @@ aws_region -[#1A83AF]-> aws_ec2_instance ``` -
-
## `aws_beanstalk_application` @@ -1821,11 +1761,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_beanstalk_application resource relationships" @@ -1860,9 +1797,7 @@ aws_beanstalk_application -[#1A83AF]-> aws_beanstalk_environment ``` -
-
## `aws_beanstalk_environment` @@ -1968,11 +1903,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_beanstalk_environment resource relationships" @@ -2020,9 +1952,7 @@ aws_beanstalk_environment -[#1A83AF]-> aws_sqs_queue ``` -
-
## `aws_cloud_formation_stack_instance_summary` @@ -2088,11 +2018,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloud_formation_stack_instance_summary resource relationships" @@ -2124,9 +2051,7 @@ class aws_cloud_formation_stack_instance_summary { ``` -
-
## `aws_cloud_trail` @@ -2232,11 +2157,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloud_trail resource relationships" @@ -2278,9 +2200,7 @@ aws_sns_topic -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_cloudformation_stack` @@ -2378,11 +2298,8 @@ resource <|--- stack
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudformation_stack resource relationships" @@ -2417,9 +2334,7 @@ aws_region -[#1A83AF]-> aws_cloudformation_stack ``` -
-
## `aws_cloudformation_stack_set` @@ -2487,11 +2402,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudformation_stack_set resource relationships" @@ -2526,9 +2438,7 @@ aws_region -[#1A83AF]-> aws_cloudformation_stack_set ``` -
-
## `aws_cloudfront_cache_policy` @@ -2616,11 +2526,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_cache_policy resource relationships" @@ -2655,9 +2562,7 @@ aws_cloudfront_distribution -[#1A83AF]-> aws_cloudfront_cache_policy ``` -
-
## `aws_cloudfront_distribution` @@ -2870,11 +2775,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_distribution resource relationships" @@ -2933,9 +2835,7 @@ aws_cloudfront_distribution -[#1A83AF]-> aws_s3_bucket ``` -
-
## `aws_cloudfront_field_level_encryption_config` @@ -3014,11 +2914,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_field_level_encryption_config resource relationships" @@ -3056,9 +2953,7 @@ aws_cloudfront_field_level_encryption_config -[#1A83AF]-> aws_cloudfront_field_l ``` -
-
## `aws_cloudfront_field_level_encryption_profile` @@ -3121,11 +3016,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_field_level_encryption_profile resource relationships" @@ -3163,9 +3055,7 @@ aws_cloudfront_field_level_encryption_profile -[#1A83AF]-> aws_cloudfront_public ``` -
-
## `aws_cloudfront_function` @@ -3228,11 +3118,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_function resource relationships" @@ -3267,9 +3154,7 @@ aws_cloudfront_distribution -[#1A83AF]-> aws_cloudfront_function ``` -
-
## `aws_cloudfront_origin_access_control` @@ -3328,11 +3213,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_origin_access_control resource relationships" @@ -3367,9 +3249,7 @@ aws_cloudfront_distribution -[#1A83AF]-> aws_cloudfront_origin_access_control ``` -
-
## `aws_cloudfront_public_key` @@ -3426,11 +3306,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_public_key resource relationships" @@ -3465,9 +3342,7 @@ aws_cloudfront_field_level_encryption_profile -[#1A83AF]-> aws_cloudfront_public ``` -
-
## `aws_cloudfront_realtime_log_config` @@ -3535,11 +3410,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_realtime_log_config resource relationships" @@ -3574,9 +3446,7 @@ aws_cloudfront_distribution -[#1A83AF]-> aws_cloudfront_realtime_log_config ``` -
-
## `aws_cloudfront_response_headers_policy` @@ -3701,11 +3571,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_response_headers_policy resource relationships" @@ -3740,9 +3607,7 @@ aws_cloudfront_distribution -[#1A83AF]-> aws_cloudfront_response_headers_policy ``` -
-
## `aws_cloudfront_streaming_distribution` @@ -3803,11 +3668,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudfront_streaming_distribution resource relationships" @@ -3839,9 +3701,7 @@ class aws_cloudfront_streaming_distribution { ``` -
-
## `aws_cloudwatch_alarm` @@ -3949,11 +3809,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudwatch_alarm resource relationships" @@ -3998,9 +3855,7 @@ aws_sagemaker_endpoint -[#1A83AF]-> aws_cloudwatch_alarm ``` -
-
## `aws_cloudwatch_log_group` @@ -4059,11 +3914,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudwatch_log_group resource relationships" @@ -4101,9 +3953,7 @@ aws_cloudwatch_log_group -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_cloudwatch_metric_filter` @@ -4169,11 +4019,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cloudwatch_metric_filter resource relationships" @@ -4211,9 +4058,7 @@ aws_cloudwatch_metric_filter -[#1A83AF]-> aws_cloudwatch_alarm ``` -
-
## `aws_cognito_group` @@ -4272,11 +4117,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cognito_group resource relationships" @@ -4318,9 +4160,7 @@ aws_sagemaker_workteam -[#1A83AF]-> aws_cognito_user_pool ``` -
-
## `aws_cognito_user` @@ -4393,11 +4233,8 @@ resource <|--- user
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cognito_user resource relationships" @@ -4432,9 +4269,7 @@ aws_cognito_user_pool -[#1A83AF]-> aws_cognito_user ``` -
-
## `aws_cognito_user_pool` @@ -4517,11 +4352,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_cognito_user_pool resource relationships" @@ -4570,9 +4402,7 @@ aws_sagemaker_workteam -[#1A83AF]-> aws_cognito_user_pool ``` -
-
## `aws_config_recorder` @@ -4645,11 +4475,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_config_recorder resource relationships" @@ -4681,9 +4508,7 @@ class aws_config_recorder { ``` -
-
## `aws_dynamo_db_global_table` @@ -4762,11 +4587,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_dynamo_db_global_table resource relationships" @@ -4801,9 +4623,7 @@ aws_dynamo_db_global_table -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_dynamo_db_table` @@ -4977,11 +4797,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_dynamo_db_table resource relationships" @@ -5020,9 +4837,7 @@ aws_kinesis_stream -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_ec2_elastic_ip` @@ -5094,11 +4909,8 @@ resource <|--- ip_address
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_elastic_ip resource relationships" @@ -5142,9 +4954,7 @@ aws_region -[#1A83AF]-> aws_ec2_network_interface ``` -
-
## `aws_ec2_flow_log` @@ -5218,11 +5028,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_flow_log resource relationships" @@ -5260,9 +5067,7 @@ aws_vpc -[#1A83AF]-> aws_ec2_flow_log ``` -
-
## `aws_ec2_host` @@ -5357,11 +5162,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_host resource relationships" @@ -5396,9 +5198,7 @@ aws_ec2_host -[#1A83AF]-> aws_ec2_instance ``` -
-
## `aws_ec2_instance` @@ -5649,11 +5449,8 @@ resource <|--- instance
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_instance resource relationships" @@ -5742,9 +5539,7 @@ aws_vpc -[#1A83AF]-> aws_elb ``` -
-
## `aws_ec2_instance_type` @@ -5948,11 +5743,8 @@ quota <|--- type
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_instance_type resource relationships" @@ -5998,9 +5790,7 @@ aws_service_quota -[#1A83AF]-> aws_ec2_instance_type ``` -
-
## `aws_ec2_internet_gateway` @@ -6065,11 +5855,8 @@ resource <|--- gateway
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_internet_gateway resource relationships" @@ -6108,9 +5895,7 @@ aws_vpc -[#1A83AF]-> aws_ec2_internet_gateway ``` -
-
## `aws_ec2_keypair` @@ -6168,11 +5953,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_keypair resource relationships" @@ -6211,9 +5993,7 @@ aws_region -[#1A83AF]-> aws_ec2_keypair ``` -
-
## `aws_ec2_nat_gateway` @@ -6294,11 +6074,8 @@ resource <|--- gateway
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_nat_gateway resource relationships" @@ -6348,9 +6125,7 @@ aws_vpc -[#1A83AF]-> aws_ec2_subnet ``` -
-
## `aws_ec2_network_acl` @@ -6435,11 +6210,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_network_acl resource relationships" @@ -6483,9 +6255,7 @@ aws_vpc -[#1A83AF]-> aws_ec2_subnet ``` -
-
## `aws_ec2_network_interface` @@ -6606,11 +6376,8 @@ resource <|--- network_interface
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_network_interface resource relationships" @@ -6690,9 +6457,7 @@ aws_vpc_endpoint -[#1A83AF]-> aws_ec2_network_interface ``` -
-
## `aws_ec2_reserved_instances` @@ -6769,11 +6534,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_reserved_instances resource relationships" @@ -6808,9 +6570,7 @@ aws_ec2_instance_type -[#1A83AF]-> aws_ec2_reserved_instances ``` -
-
## `aws_ec2_route_table` @@ -6906,11 +6666,8 @@ resource <|--- routing_table
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_route_table resource relationships" @@ -6954,9 +6711,7 @@ aws_vpc -[#1A83AF]-> aws_vpc_endpoint ``` -
-
## `aws_ec2_security_group` @@ -7053,11 +6808,8 @@ resource <|--- security_group
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_security_group resource relationships" @@ -7180,9 +6932,7 @@ aws_vpc_endpoint -[#1A83AF]-> aws_ec2_network_interface ``` -
-
## `aws_ec2_snapshot` @@ -7255,11 +7005,8 @@ resource <|--- snapshot
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_snapshot resource relationships" @@ -7302,9 +7049,7 @@ aws_region -[#1A83AF]-> aws_ec2_volume ``` -
-
## `aws_ec2_subnet` @@ -7396,11 +7141,8 @@ resource <|--- subnet
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_subnet resource relationships" @@ -7527,9 +7269,7 @@ aws_vpc_endpoint -[#1A83AF]-> aws_ec2_network_interface ``` -
-
## `aws_ec2_volume` @@ -7611,11 +7351,8 @@ resource <|--- volume
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_volume resource relationships" @@ -7666,9 +7403,7 @@ aws_region -[#1A83AF]-> aws_ec2_volume_type ``` -
-
## `aws_ec2_volume_type` @@ -7741,11 +7476,8 @@ type <|--- volume_type
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ec2_volume_type resource relationships" @@ -7788,9 +7520,7 @@ aws_service_quota -[#1A83AF]-> aws_ec2_volume_type ``` -
-
## `aws_ecs_capacity_provider` @@ -7863,11 +7593,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ecs_capacity_provider resource relationships" @@ -7913,9 +7640,7 @@ aws_ecs_task -[#1A83AF]-> aws_ecs_capacity_provider ``` -
-
## `aws_ecs_cluster` @@ -8024,11 +7749,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ecs_cluster resource relationships" @@ -8081,9 +7803,7 @@ aws_ecs_task -[#1A83AF]-> aws_ecs_container_instance ``` -
-
## `aws_ecs_container_instance` @@ -8200,11 +7920,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ecs_container_instance resource relationships" @@ -8246,9 +7963,7 @@ aws_ecs_task -[#1A83AF]-> aws_ecs_container_instance ``` -
-
## `aws_ecs_service` @@ -8443,11 +8158,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ecs_service resource relationships" @@ -8503,9 +8215,7 @@ aws_iam_role -[#1A83AF]-> aws_ecs_service ``` -
-
## `aws_ecs_task` @@ -8690,11 +8400,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ecs_task resource relationships" @@ -8744,9 +8451,7 @@ aws_iam_role -[#1A83AF]-> aws_ecs_task_definition ``` -
-
## `aws_ecs_task_definition` @@ -9038,11 +8743,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_ecs_task_definition resource relationships" @@ -9081,9 +8783,7 @@ aws_iam_role -[#1A83AF]-> aws_ecs_task_definition ``` -
-
## `aws_efs_access_point` @@ -9160,11 +8860,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_efs_access_point resource relationships" @@ -9199,9 +8896,7 @@ aws_efs_file_system -[#1A83AF]-> aws_efs_access_point ``` -
-
## `aws_efs_file_system` @@ -9273,11 +8968,8 @@ resource <|--- network_share
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_efs_file_system resource relationships" @@ -9315,9 +9007,7 @@ aws_efs_file_system -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_efs_mount_target` @@ -9376,11 +9066,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_efs_mount_target resource relationships" @@ -9415,9 +9102,7 @@ aws_ec2_network_interface -[#1A83AF]-> aws_efs_mount_target ``` -
-
## `aws_eks_cluster` @@ -9527,11 +9212,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_eks_cluster resource relationships" @@ -9573,9 +9255,7 @@ aws_region -[#1A83AF]-> aws_iam_role ``` -
-
## `aws_eks_nodegroup` @@ -9693,11 +9373,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_eks_nodegroup resource relationships" @@ -9735,9 +9412,7 @@ aws_eks_nodegroup -[#1A83AF]-> aws_autoscaling_group ``` -
-
## `aws_elasticache_cache_cluster` @@ -9888,11 +9563,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_elasticache_cache_cluster resource relationships" @@ -9933,9 +9605,7 @@ aws_elasticache_replication_group -[#1A83AF]-> aws_elasticache_cache_cluster ``` -
-
## `aws_elasticache_replication_group` @@ -10084,11 +9754,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_elasticache_replication_group resource relationships" @@ -10126,9 +9793,7 @@ aws_elasticache_replication_group -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_elb` @@ -10246,11 +9911,8 @@ resource <|--- load_balancer
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_elb resource relationships" @@ -10314,9 +9976,7 @@ aws_vpc -[#1A83AF]-> aws_elb ``` -
-
## `aws_glacier_job` @@ -10429,11 +10089,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_glacier_job resource relationships" @@ -10471,9 +10128,7 @@ aws_glacier_vault -[#1A83AF]-> aws_glacier_job ``` -
-
## `aws_glacier_vault` @@ -10531,11 +10186,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_glacier_vault resource relationships" @@ -10570,9 +10222,7 @@ aws_glacier_vault -[#1A83AF]-> aws_glacier_job ``` -
-
## `aws_iam_access_key` @@ -10640,11 +10290,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_iam_access_key resource relationships" @@ -10676,9 +10323,7 @@ class aws_iam_access_key { ``` -
-
## `aws_iam_group` @@ -10744,11 +10389,8 @@ resource <|--- group
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_iam_group resource relationships" @@ -10792,9 +10434,7 @@ aws_region -[#1A83AF]-> aws_iam_user ``` -
-
## `aws_iam_instance_profile` @@ -10854,11 +10494,8 @@ resource <|--- instance_profile
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_iam_instance_profile resource relationships" @@ -10897,9 +10534,7 @@ aws_region -[#1A83AF]-> aws_iam_role ``` -
-
## `aws_iam_policy` @@ -10972,11 +10607,8 @@ resource <|--- policy
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_iam_policy resource relationships" @@ -11024,9 +10656,7 @@ aws_region -[#1A83AF]-> aws_iam_user ``` -
-
## `aws_iam_role` @@ -11103,11 +10733,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_iam_role resource relationships" @@ -11229,9 +10856,7 @@ aws_sagemaker_training_job -[#1A83AF]-> aws_sagemaker_algorithm ``` -
-
## `aws_iam_server_certificate` @@ -11294,11 +10919,8 @@ resource <|--- certificate
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_iam_server_certificate resource relationships" @@ -11340,9 +10962,7 @@ aws_service_quota -[#1A83AF]-> aws_iam_server_certificate ``` -
-
## `aws_iam_user` @@ -11425,11 +11045,8 @@ resource <|--- user
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_iam_user resource relationships" @@ -11473,9 +11090,7 @@ aws_region -[#1A83AF]-> aws_iam_user ``` -
-
## `aws_kinesis_stream` @@ -11560,11 +11175,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_kinesis_stream resource relationships" @@ -11607,9 +11219,7 @@ aws_rds_cluster -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_kms_key` @@ -11705,11 +11315,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_kms_key resource relationships" @@ -11853,9 +11460,7 @@ aws_sqs_queue -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_lambda_function` @@ -12016,11 +11621,8 @@ resource <|--- serverless_function
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_lambda_function resource relationships" @@ -12091,9 +11693,7 @@ aws_vpc -[#1A83AF]-> aws_lambda_function ``` -
-
## `aws_rds_cluster` @@ -12288,11 +11888,8 @@ resource <|--- database
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_rds_cluster resource relationships" @@ -12339,9 +11936,7 @@ aws_rds_instance -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_rds_instance` @@ -12565,11 +12160,8 @@ resource <|--- database
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_rds_instance resource relationships" @@ -12626,9 +12218,7 @@ aws_vpc -[#1A83AF]-> aws_rds_instance ``` -
-
## `aws_redshift_cluster` @@ -12862,11 +12452,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_redshift_cluster resource relationships" @@ -12922,9 +12509,7 @@ aws_vpc -[#1A83AF]-> aws_redshift_cluster ``` -
-
## `aws_region` @@ -12984,11 +12569,8 @@ resource <|--- region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_region resource relationships" @@ -13179,9 +12761,7 @@ aws_vpc_endpoint -[#1A83AF]-> aws_ec2_network_interface ``` -
-
## `aws_resource` @@ -13233,11 +12813,8 @@ resource <|--- aws_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_resource resource relationships" @@ -13269,9 +12846,7 @@ class aws_resource { ``` -
-
## `aws_root_user` @@ -13341,11 +12916,8 @@ resource <|--- user
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_root_user resource relationships" @@ -13380,9 +12952,7 @@ aws_account -[#1A83AF]-> aws_root_user ``` -
-
## `aws_route53_resource_record` @@ -13457,11 +13027,8 @@ resource <|--- dns_record
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_route53_resource_record resource relationships" @@ -13496,9 +13063,7 @@ aws_route53_resource_record_set -[#1A83AF]-> aws_route53_resource_record ``` -
-
## `aws_route53_resource_record_set` @@ -13588,11 +13153,8 @@ resource <|--- dns_record_set
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_route53_resource_record_set resource relationships" @@ -13630,9 +13192,7 @@ aws_route53_zone -[#1A83AF]-> aws_route53_resource_record_set ``` -
-
## `aws_route53_zone` @@ -13705,11 +13265,8 @@ resource <|--- dns_zone
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_route53_zone resource relationships" @@ -13747,9 +13304,7 @@ aws_route53_zone -[#1A83AF]-> aws_route53_resource_record_set ``` -
-
## `aws_s3_account_settings` @@ -13816,11 +13371,8 @@ resource <|--- phantom_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_s3_account_settings resource relationships" @@ -13855,9 +13407,7 @@ aws_s3_account_settings -[#1A83AF]-> aws_account ``` -
-
## `aws_s3_bucket` @@ -13971,11 +13521,8 @@ resource <|--- bucket
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_s3_bucket resource relationships" @@ -14073,9 +13620,7 @@ aws_sagemaker_transform_job -[#1A83AF]-> aws_s3_bucket ``` -
-
## `aws_sagemaker_algorithm` @@ -14330,11 +13875,8 @@ aws_sagemaker_transform_job_definition --> aws_sagemaker_transform_resources
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_algorithm resource relationships" @@ -14373,9 +13915,7 @@ aws_sagemaker_training_job -[#1A83AF]-> aws_sagemaker_algorithm ``` -
-
## `aws_sagemaker_app` @@ -14445,11 +13985,8 @@ aws_sagemaker_app --> aws_sagemaker_resource_spec
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_app resource relationships" @@ -14492,9 +14029,7 @@ aws_sagemaker_user_profile -[#1A83AF]-> aws_sagemaker_app ``` -
-
## `aws_sagemaker_artifact` @@ -14577,11 +14112,8 @@ aws_sagemaker_artifact_source --> aws_sagemaker_artifact_source_type
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_artifact resource relationships" @@ -14627,9 +14159,7 @@ aws_sagemaker_user_profile -[#1A83AF]-> aws_sagemaker_artifact ``` -
-
## `aws_sagemaker_auto_ml_job` @@ -14816,11 +14346,8 @@ aws_sagemaker_resolved_attributes --> aws_sagemaker_auto_ml_job_completion_crite
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_auto_ml_job resource relationships" @@ -14889,9 +14416,7 @@ aws_sagemaker_transform_job -[#1A83AF]-> aws_s3_bucket ``` -
-
## `aws_sagemaker_code_repository` @@ -14954,11 +14479,8 @@ aws_sagemaker_code_repository --> aws_sagemaker_git_config
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_code_repository resource relationships" @@ -15004,9 +14526,7 @@ aws_sagemaker_domain -[#1A83AF]-> aws_sagemaker_trial ``` -
-
## `aws_sagemaker_compilation_job` @@ -15107,11 +14627,8 @@ aws_sagemaker_output_config --> aws_sagemaker_target_platform
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_compilation_job resource relationships" @@ -15158,9 +14675,7 @@ aws_sagemaker_compilation_job -[#1A83AF]-> aws_s3_bucket ``` -
-
## `aws_sagemaker_domain` @@ -15323,11 +14838,8 @@ aws_sagemaker_user_settings --> aws_sagemaker_tensor_board_app_settings
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_domain resource relationships" @@ -15404,9 +14916,7 @@ aws_sagemaker_user_profile -[#1A83AF]-> aws_sagemaker_trial ``` -
-
## `aws_sagemaker_edge_packaging_job` @@ -15487,11 +14997,8 @@ aws_resource <|--- aws_sagemaker_job
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_edge_packaging_job resource relationships" @@ -15537,9 +15044,7 @@ aws_sagemaker_model -[#1A83AF]-> aws_sagemaker_edge_packaging_job ``` -
-
## `aws_sagemaker_endpoint` @@ -15749,11 +15254,8 @@ aws_sagemaker_traffic_routing_config --> aws_sagemaker_capacity_size
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_endpoint resource relationships" @@ -15803,9 +15305,7 @@ aws_sns_topic -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_sagemaker_experiment` @@ -15867,11 +15367,8 @@ aws_sagemaker_experiment --> aws_sagemaker_experiment_source
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_experiment resource relationships" @@ -15919,9 +15416,7 @@ aws_sagemaker_trial -[#1A83AF]-> aws_sagemaker_transform_job ``` -
-
## `aws_sagemaker_hyper_parameter_tuning_job` @@ -16191,11 +15686,8 @@ aws_sagemaker_resource_config --> aws_sagemaker_instance_group
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_hyper_parameter_tuning_job resource relationships" @@ -16250,9 +15742,7 @@ aws_sagemaker_training_job -[#1A83AF]-> aws_s3_bucket ``` -
-
## `aws_sagemaker_image` @@ -16311,11 +15801,8 @@ aws_resource <|--- aws_sagemaker_image
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_image resource relationships" @@ -16358,9 +15845,7 @@ aws_sagemaker_domain -[#1A83AF]-> aws_sagemaker_image ``` -
-
## `aws_sagemaker_inference_recommendations_job` @@ -16535,11 +16020,8 @@ aws_sagemaker_traffic_pattern --> aws_sagemaker_phase
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_inference_recommendations_job resource relationships" @@ -16591,9 +16073,7 @@ aws_sagemaker_inference_recommendations_job -[#1A83AF]-> aws_sagemaker_endpoint ``` -
-
## `aws_sagemaker_job` @@ -16648,11 +16128,8 @@ aws_resource <|--- aws_sagemaker_job
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_job resource relationships" @@ -16684,9 +16161,7 @@ class aws_sagemaker_job { ``` -
-
## `aws_sagemaker_labeling_job` @@ -16837,11 +16312,8 @@ aws_sagemaker_public_workforce_task_price --> aws_sagemaker_usd
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_labeling_job resource relationships" @@ -16923,9 +16395,7 @@ aws_sns_topic -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_sagemaker_model` @@ -17007,11 +16477,8 @@ aws_sagemaker_model --> aws_sagemaker_vpc_config
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_model resource relationships" @@ -17072,9 +16539,7 @@ aws_sagemaker_transform_job -[#1A83AF]-> aws_s3_bucket ``` -
-
## `aws_sagemaker_notebook` @@ -17142,11 +16607,8 @@ aws_resource <|--- aws_sagemaker_notebook
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_notebook resource relationships" @@ -17198,9 +16660,7 @@ aws_sagemaker_notebook -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_sagemaker_pipeline` @@ -17268,11 +16728,8 @@ aws_sagemaker_pipeline --> aws_sagemaker_user_context
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_pipeline resource relationships" @@ -17315,9 +16772,7 @@ aws_sagemaker_user_profile -[#1A83AF]-> aws_sagemaker_pipeline ``` -
-
## `aws_sagemaker_processing_job` @@ -17484,11 +16939,8 @@ aws_sagemaker_processing_resources --> aws_sagemaker_processing_cluster_config
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_processing_job resource relationships" @@ -17576,9 +17028,7 @@ aws_sagemaker_trial -[#1A83AF]-> aws_sagemaker_training_job ``` -
-
## `aws_sagemaker_project` @@ -17635,11 +17085,8 @@ aws_resource <|--- aws_sagemaker_project
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_project resource relationships" @@ -17677,9 +17124,7 @@ aws_sagemaker_project -[#1A83AF]-> aws_sagemaker_trial ``` -
-
## `aws_sagemaker_training_job` @@ -17931,11 +17376,8 @@ aws_sagemaker_training_job --> aws_sagemaker_warm_pool_status
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_training_job resource relationships" @@ -18028,9 +17470,7 @@ aws_sagemaker_trial -[#1A83AF]-> aws_sagemaker_training_job ``` -
-
## `aws_sagemaker_transform_job` @@ -18152,11 +17592,8 @@ aws_sagemaker_transform_job --> aws_sagemaker_transform_resources
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_transform_job resource relationships" @@ -18216,9 +17653,7 @@ aws_sagemaker_trial -[#1A83AF]-> aws_sagemaker_transform_job ``` -
-
## `aws_sagemaker_trial` @@ -18295,11 +17730,8 @@ aws_sagemaker_trial --> aws_sagemaker_user_context
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_trial resource relationships" @@ -18361,9 +17793,7 @@ aws_sagemaker_user_profile -[#1A83AF]-> aws_sagemaker_trial ``` -
-
## `aws_sagemaker_user_profile` @@ -18420,11 +17850,8 @@ aws_resource <|--- aws_sagemaker_user_profile
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_user_profile resource relationships" @@ -18475,9 +17902,7 @@ aws_sagemaker_user_profile -[#1A83AF]-> aws_sagemaker_trial ``` -
-
## `aws_sagemaker_workteam` @@ -18553,11 +17978,8 @@ aws_sagemaker_workteam --> aws_sagemaker_member_definition
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sagemaker_workteam resource relationships" @@ -18603,9 +18025,7 @@ aws_sagemaker_workteam -[#1A83AF]-> aws_sns_topic ``` -
-
## `aws_service_quota` @@ -18693,11 +18113,8 @@ phantom_resource <|--- quota
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_service_quota resource relationships" @@ -18758,9 +18175,7 @@ aws_vpc -[#1A83AF]-> aws_elb ``` -
-
## `aws_sns_endpoint` @@ -18817,11 +18232,8 @@ aws_resource <|--- aws_sns_endpoint
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sns_endpoint resource relationships" @@ -18856,9 +18268,7 @@ aws_sns_platform_application -[#1A83AF]-> aws_sns_endpoint ``` -
-
## `aws_sns_platform_application` @@ -18920,11 +18330,8 @@ aws_resource <|--- aws_sns_platform_application
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sns_platform_application resource relationships" @@ -18962,9 +18369,7 @@ aws_sns_platform_application -[#1A83AF]-> aws_sns_topic ``` -
-
## `aws_sns_subscription` @@ -19029,11 +18434,8 @@ aws_resource <|--- aws_sns_subscription
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sns_subscription resource relationships" @@ -19071,9 +18473,7 @@ aws_sns_topic -[#1A83AF]-> aws_sns_subscription ``` -
-
## `aws_sns_topic` @@ -19138,11 +18538,8 @@ aws_resource <|--- aws_sns_topic
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sns_topic resource relationships" @@ -19202,9 +18599,7 @@ aws_sns_topic -[#1A83AF]-> aws_sns_subscription ``` -
-
## `aws_sqs_queue` @@ -19283,11 +18678,8 @@ aws_sqs_queue --> aws_sqs_redrive_policy
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_sqs_queue resource relationships" @@ -19325,9 +18717,7 @@ aws_sqs_queue -[#1A83AF]-> aws_kms_key ``` -
-
## `aws_vpc` @@ -19413,11 +18803,8 @@ resource <|--- network
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_vpc resource relationships" @@ -19546,9 +18933,7 @@ aws_vpc_endpoint -[#1A83AF]-> aws_ec2_network_interface ``` -
-
## `aws_vpc_endpoint` @@ -19629,11 +19014,8 @@ resource <|--- endpoint
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_vpc_endpoint resource relationships" @@ -19700,9 +19082,7 @@ aws_vpc_endpoint -[#1A83AF]-> aws_ec2_network_interface ``` -
-
## `aws_vpc_peering_connection` @@ -19786,11 +19166,8 @@ resource <|--- peering_connection
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of aws_vpc_peering_connection resource relationships" @@ -19829,7 +19206,5 @@ aws_vpc -[#1A83AF]-> aws_vpc_peering_connection ``` -
-
diff --git a/versioned_docs/version-3.X/reference/unified-data-model/digitalocean.mdx b/versioned_docs/version-3.X/reference/unified-data-model/digitalocean.mdx index 5ae38d4a2..d6d463063 100644 --- a/versioned_docs/version-3.X/reference/unified-data-model/digitalocean.mdx +++ b/versioned_docs/version-3.X/reference/unified-data-model/digitalocean.mdx @@ -66,11 +66,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_alert_policy resource relationships" @@ -105,9 +102,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_alert_policy ``` -
-
## `digitalocean_app` @@ -168,11 +163,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_app resource relationships" @@ -216,9 +208,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_region ``` -
-
## `digitalocean_cdn_endpoint` @@ -282,11 +272,8 @@ resource <|--- endpoint
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_cdn_endpoint resource relationships" @@ -321,9 +308,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_cdn_endpoint ``` -
-
## `digitalocean_certificate` @@ -387,11 +372,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_certificate resource relationships" @@ -426,9 +408,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_certificate ``` -
-
## `digitalocean_container_registry` @@ -486,11 +466,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_container_registry resource relationships" @@ -533,9 +510,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_region ``` -
-
## `digitalocean_container_registry_repository` @@ -593,11 +568,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_container_registry_repository resource relationships" @@ -640,9 +612,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_container_registry_repository_tag ``` -
-
## `digitalocean_container_registry_repository_tag` @@ -703,11 +673,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_container_registry_repository_tag resource relationships" @@ -746,9 +713,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_container_registry_repository_tag ``` -
-
## `digitalocean_database` @@ -816,11 +781,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_database resource relationships" @@ -873,9 +835,7 @@ digitalocean_vpc -[#1A83AF]-> digitalocean_database ``` -
-
## `digitalocean_domain` @@ -936,11 +896,8 @@ resource <|--- dns_zone
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_domain resource relationships" @@ -983,9 +940,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_project ``` -
-
## `digitalocean_domain_record` @@ -1061,11 +1016,8 @@ resource <|--- dns_record
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_domain_record resource relationships" @@ -1104,9 +1056,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_domain_record ``` -
-
## `digitalocean_droplet` @@ -1173,11 +1123,8 @@ resource <|--- instance
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_droplet resource relationships" @@ -1268,9 +1215,7 @@ digitalocean_vpc -[#1A83AF]-> digitalocean_load_balancer ``` -
-
## `digitalocean_droplet_neighborhood` @@ -1330,11 +1275,8 @@ resource <|--- phantom_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_droplet_neighborhood resource relationships" @@ -1366,9 +1308,7 @@ class digitalocean_droplet_neighborhood { ``` -
-
## `digitalocean_droplet_size` @@ -1444,11 +1384,8 @@ quota <|--- type
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_droplet_size resource relationships" @@ -1483,9 +1420,7 @@ digitalocean_droplet_size -[#1A83AF]-> digitalocean_droplet ``` -
-
## `digitalocean_firewall` @@ -1542,11 +1477,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_firewall resource relationships" @@ -1585,9 +1517,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_firewall ``` -
-
## `digitalocean_floating_ip` @@ -1649,11 +1579,8 @@ resource <|--- ip_address
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_floating_ip resource relationships" @@ -1702,9 +1629,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_region ``` -
-
## `digitalocean_image` @@ -1768,11 +1693,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_image resource relationships" @@ -1816,9 +1738,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_region ``` -
-
## `digitalocean_kubernetes_cluster` @@ -1884,11 +1804,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_kubernetes_cluster resource relationships" @@ -1943,9 +1860,7 @@ digitalocean_vpc -[#1A83AF]-> digitalocean_kubernetes_cluster ``` -
-
## `digitalocean_load_balancer` @@ -2013,11 +1928,8 @@ resource <|--- load_balancer
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_load_balancer resource relationships" @@ -2072,9 +1984,7 @@ digitalocean_vpc -[#1A83AF]-> digitalocean_load_balancer ``` -
-
## `digitalocean_project` @@ -2136,11 +2046,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_project resource relationships" @@ -2211,9 +2118,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_volume ``` -
-
## `digitalocean_region` @@ -2276,11 +2181,8 @@ resource <|--- region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_region resource relationships" @@ -2369,9 +2271,7 @@ digitalocean_vpc -[#1A83AF]-> digitalocean_load_balancer ``` -
-
## `digitalocean_resource` @@ -2423,11 +2323,8 @@ resource <|--- digitalocean_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_resource resource relationships" @@ -2462,9 +2359,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_resource ``` -
-
## `digitalocean_snapshot` @@ -2533,11 +2428,8 @@ resource <|--- snapshot
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_snapshot resource relationships" @@ -2586,9 +2478,7 @@ digitalocean_volume -[#1A83AF]-> digitalocean_snapshot ``` -
-
## `digitalocean_space` @@ -2647,11 +2537,8 @@ digitalocean_resource <|--- digitalocean_space
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_space resource relationships" @@ -2694,9 +2581,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_space ``` -
-
## `digitalocean_ssh_key` @@ -2757,11 +2642,8 @@ resource <|--- keypair
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_ssh_key resource relationships" @@ -2796,9 +2678,7 @@ digitalocean_team -[#1A83AF]-> digitalocean_ssh_key ``` -
-
## `digitalocean_team` @@ -2857,11 +2737,8 @@ digitalocean_resource <|--- digitalocean_team
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_team resource relationships" @@ -3000,9 +2877,7 @@ digitalocean_vpc -[#1A83AF]-> digitalocean_load_balancer ``` -
-
## `digitalocean_volume` @@ -3072,11 +2947,8 @@ resource <|--- volume
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_volume resource relationships" @@ -3125,9 +2997,7 @@ digitalocean_volume -[#1A83AF]-> digitalocean_snapshot ``` -
-
## `digitalocean_vpc` @@ -3189,11 +3059,8 @@ resource <|--- network
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of digitalocean_vpc resource relationships" @@ -3254,7 +3121,5 @@ digitalocean_vpc -[#1A83AF]-> digitalocean_load_balancer ``` -
-
diff --git a/versioned_docs/version-3.X/reference/unified-data-model/dockerhub.mdx b/versioned_docs/version-3.X/reference/unified-data-model/dockerhub.mdx index 71538bef0..aee71b9a2 100644 --- a/versioned_docs/version-3.X/reference/unified-data-model/dockerhub.mdx +++ b/versioned_docs/version-3.X/reference/unified-data-model/dockerhub.mdx @@ -60,11 +60,8 @@ dockerhub_resource <|--- dockerhub_namespace
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of dockerhub_namespace resource relationships" @@ -96,9 +93,7 @@ class dockerhub_namespace { ``` -
-
## `dockerhub_repository` @@ -158,11 +153,8 @@ resource <|--- dockerhub_repository
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of dockerhub_repository resource relationships" @@ -194,7 +186,5 @@ class dockerhub_repository { ``` -
-
diff --git a/versioned_docs/version-3.X/reference/unified-data-model/gcp.mdx b/versioned_docs/version-3.X/reference/unified-data-model/gcp.mdx index b03c8a830..123912891 100644 --- a/versioned_docs/version-3.X/reference/unified-data-model/gcp.mdx +++ b/versioned_docs/version-3.X/reference/unified-data-model/gcp.mdx @@ -76,11 +76,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_accelerator_type resource relationships" @@ -115,9 +112,7 @@ gcp_machine_type -[#1A83AF]-> gcp_accelerator_type ``` -
-
## `gcp_address` @@ -195,11 +190,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_address resource relationships" @@ -234,9 +226,7 @@ gcp_subnetwork -[#1A83AF]-> gcp_address ``` -
-
## `gcp_autoscaler` @@ -365,11 +355,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_autoscaler resource relationships" @@ -404,9 +391,7 @@ gcp_autoscaler -[#1A83AF]-> gcp_instance_group_manager ``` -
-
## `gcp_backend_bucket` @@ -504,11 +489,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_backend_bucket resource relationships" @@ -540,9 +522,7 @@ class gcp_backend_bucket { ``` -
-
## `gcp_backend_service` @@ -767,11 +747,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_backend_service resource relationships" @@ -835,9 +812,7 @@ gcp_url_map -[#1A83AF]-> gcp_backend_service ``` -
-
## `gcp_billing_account` @@ -907,11 +882,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_billing_account resource relationships" @@ -946,9 +918,7 @@ gcp_billing_account -[#1A83AF]-> gcp_project_billing_info ``` -
-
## `gcp_bucket` @@ -1146,11 +1116,8 @@ gcp_rule --> gcp_condition
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_bucket resource relationships" @@ -1182,9 +1149,7 @@ class gcp_bucket { ``` -
-
## `gcp_commitment` @@ -1325,11 +1290,8 @@ gcp_share_settings --> gcp_share_settings_project_config
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_commitment resource relationships" @@ -1361,9 +1323,7 @@ class gcp_commitment { ``` -
-
## `gcp_container_cluster` @@ -1864,11 +1824,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_container_cluster resource relationships" @@ -1903,9 +1860,7 @@ gcp_container_cluster -[#1A83AF]-> gcp_container_operation ``` -
-
## `gcp_container_operation` @@ -2009,11 +1964,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_container_operation resource relationships" @@ -2048,9 +2000,7 @@ gcp_container_cluster -[#1A83AF]-> gcp_container_operation ``` -
-
## `gcp_disk` @@ -2168,11 +2118,8 @@ resource <|--- volume
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_disk resource relationships" @@ -2222,9 +2169,7 @@ gcp_operation -[#1A83AF]-> gcp_disk ``` -
-
## `gcp_disk_type` @@ -2311,11 +2256,8 @@ type <|--- volume_type
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_disk_type resource relationships" @@ -2356,9 +2298,7 @@ gcp_sku -[#1A83AF]-> gcp_disk_type ``` -
-
## `gcp_external_vpn_gateway` @@ -2432,11 +2372,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_external_vpn_gateway resource relationships" @@ -2468,9 +2405,7 @@ class gcp_external_vpn_gateway { ``` -
-
## `gcp_firewall` @@ -2565,11 +2500,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_firewall resource relationships" @@ -2604,9 +2536,7 @@ gcp_firewall -[#1A83AF]-> gcp_network ``` -
-
## `gcp_firewall_policy` @@ -2722,11 +2652,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_firewall_policy resource relationships" @@ -2761,9 +2688,7 @@ gcp_firewall_policy -[#1A83AF]-> gcp_network ``` -
-
## `gcp_forwarding_rule` @@ -2868,11 +2793,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_forwarding_rule resource relationships" @@ -2929,9 +2851,7 @@ gcp_network -[#1A83AF]-> gcp_target_vpn_gateway ``` -
-
## `gcp_health_check` @@ -3065,11 +2985,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_health_check resource relationships" @@ -3107,9 +3024,7 @@ gcp_instance_group_manager -[#1A83AF]-> gcp_health_check ``` -
-
## `gcp_health_check_service` @@ -3181,11 +3096,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_health_check_service resource relationships" @@ -3217,9 +3129,7 @@ class gcp_health_check_service { ``` -
-
## `gcp_http_health_check` @@ -3293,11 +3203,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_http_health_check resource relationships" @@ -3335,9 +3242,7 @@ gcp_instance_group_manager -[#1A83AF]-> gcp_http_health_check ``` -
-
## `gcp_https_health_check` @@ -3411,11 +3316,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_https_health_check resource relationships" @@ -3453,9 +3355,7 @@ gcp_instance_group_manager -[#1A83AF]-> gcp_https_health_check ``` -
-
## `gcp_image` @@ -3571,11 +3471,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_image resource relationships" @@ -3610,9 +3507,7 @@ gcp_disk -[#1A83AF]-> gcp_image ``` -
-
## `gcp_instance` @@ -3879,11 +3774,8 @@ resource <|--- instance
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_instance resource relationships" @@ -3936,9 +3828,7 @@ gcp_target_instance -[#1A83AF]-> gcp_instance ``` -
-
## `gcp_instance_group` @@ -4015,11 +3905,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_instance_group resource relationships" @@ -4065,9 +3952,7 @@ gcp_subnetwork -[#1A83AF]-> gcp_instance_group ``` -
-
## `gcp_instance_group_manager` @@ -4227,11 +4112,8 @@ gcp_stateful_policy_preserved_state --> gcp_stateful_policy_preserved_state_disk
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_instance_group_manager resource relationships" @@ -4278,9 +4160,7 @@ gcp_instance_group_manager -[#1A83AF]-> gcp_https_health_check ``` -
-
## `gcp_instance_template` @@ -4537,11 +4417,8 @@ gcp_source_instance_params --> gcp_disk_instantiation_config
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_instance_template resource relationships" @@ -4576,9 +4453,7 @@ gcp_machine_type -[#1A83AF]-> gcp_instance_template ``` -
-
## `gcp_interconnect` @@ -4679,11 +4554,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_interconnect resource relationships" @@ -4715,9 +4587,7 @@ class gcp_interconnect { ``` -
-
## `gcp_interconnect_attachment` @@ -4818,11 +4688,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_interconnect_attachment resource relationships" @@ -4857,9 +4724,7 @@ gcp_vpn_gateway -[#1A83AF]-> gcp_interconnect_attachment ``` -
-
## `gcp_interconnect_location` @@ -4942,11 +4807,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_interconnect_location resource relationships" @@ -4978,9 +4840,7 @@ class gcp_interconnect_location { ``` -
-
## `gcp_license` @@ -5056,11 +4916,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_license resource relationships" @@ -5092,9 +4949,7 @@ class gcp_license { ``` -
-
## `gcp_machine_image` @@ -5404,11 +5259,8 @@ gcp_source_instance_properties --> gcp_tags
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_machine_image resource relationships" @@ -5443,9 +5295,7 @@ gcp_disk -[#1A83AF]-> gcp_machine_image ``` -
-
## `gcp_machine_type` @@ -5544,11 +5394,8 @@ quota <|--- type
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_machine_type resource relationships" @@ -5592,9 +5439,7 @@ gcp_sku -[#1A83AF]-> gcp_machine_type ``` -
-
## `gcp_network` @@ -5688,11 +5533,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_network resource relationships" @@ -5770,9 +5612,7 @@ gcp_target_instance -[#1A83AF]-> gcp_instance ``` -
-
## `gcp_network_edge_security_service` @@ -5842,11 +5682,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_network_edge_security_service resource relationships" @@ -5878,9 +5715,7 @@ class gcp_network_edge_security_service { ``` -
-
## `gcp_network_endpoint_group` @@ -5981,11 +5816,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_network_endpoint_group resource relationships" @@ -6028,9 +5860,7 @@ gcp_subnetwork -[#1A83AF]-> gcp_network_endpoint_group ``` -
-
## `gcp_node_group` @@ -6131,11 +5961,8 @@ gcp_share_settings --> gcp_share_settings_project_config
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_node_group resource relationships" @@ -6170,9 +5997,7 @@ gcp_node_template -[#1A83AF]-> gcp_node_group ``` -
-
## `gcp_node_template` @@ -6265,11 +6090,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_node_template resource relationships" @@ -6307,9 +6129,7 @@ gcp_node_template -[#1A83AF]-> gcp_node_group ``` -
-
## `gcp_node_type` @@ -6380,11 +6200,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_node_type resource relationships" @@ -6416,9 +6233,7 @@ class gcp_node_type { ``` -
-
## `gcp_notification_endpoint` @@ -6499,11 +6314,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_notification_endpoint resource relationships" @@ -6535,9 +6347,7 @@ class gcp_notification_endpoint { ``` -
-
## `gcp_object` @@ -6604,11 +6414,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_object resource relationships" @@ -6640,9 +6447,7 @@ class gcp_object { ``` -
-
## `gcp_operation` @@ -6773,11 +6578,8 @@ gcp_warnings --> gcp_data
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_operation resource relationships" @@ -6812,9 +6614,7 @@ gcp_operation -[#1A83AF]-> gcp_disk ``` -
-
## `gcp_packet_mirroring` @@ -6919,11 +6719,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_packet_mirroring resource relationships" @@ -6962,9 +6759,7 @@ gcp_subnetwork -[#1A83AF]-> gcp_packet_mirroring ``` -
-
## `gcp_project` @@ -7035,11 +6830,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_project resource relationships" @@ -7071,9 +6863,7 @@ class gcp_project { ``` -
-
## `gcp_project_billing_info` @@ -7143,11 +6933,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_project_billing_info resource relationships" @@ -7182,9 +6969,7 @@ gcp_billing_account -[#1A83AF]-> gcp_project_billing_info ``` -
-
## `gcp_public_advertised_prefix` @@ -7265,11 +7050,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_public_advertised_prefix resource relationships" @@ -7304,9 +7086,7 @@ gcp_public_delegated_prefix -[#1A83AF]-> gcp_public_advertised_prefix ``` -
-
## `gcp_public_delegated_prefix` @@ -7389,11 +7169,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_public_delegated_prefix resource relationships" @@ -7428,9 +7205,7 @@ gcp_public_delegated_prefix -[#1A83AF]-> gcp_public_advertised_prefix ``` -
-
## `gcp_region` @@ -7504,11 +7279,8 @@ resource <|--- region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_region resource relationships" @@ -7543,9 +7315,7 @@ gcp_region -[#1A83AF]-> gcp_zone ``` -
-
## `gcp_region_quota` @@ -7720,11 +7490,8 @@ resource <|--- gcp_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_resource resource relationships" @@ -7756,9 +7523,7 @@ class gcp_resource { ``` -
-
## `gcp_resource_policy` @@ -7899,11 +7664,8 @@ gcp_resource_policy_weekly_cycle --> gcp_resource_policy_weekly_cycle_day_of_wee
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_resource_policy resource relationships" @@ -7935,9 +7697,7 @@ class gcp_resource_policy { ``` -
-
## `gcp_route` @@ -8035,11 +7795,8 @@ gcp_warnings --> gcp_data
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_route resource relationships" @@ -8074,9 +7831,7 @@ gcp_network -[#1A83AF]-> gcp_route ``` -
-
## `gcp_router` @@ -8251,11 +8006,8 @@ gcp_router_nat_rule --> gcp_router_nat_rule_action
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_router resource relationships" @@ -8293,9 +8045,7 @@ gcp_vpn_tunnel -[#1A83AF]-> gcp_router ``` -
-
## `gcp_security_policy` @@ -8447,11 +8197,8 @@ gcp_security_policy_rule_rate_limit_options --> gcp_security_policy_rule_redirec
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_security_policy resource relationships" @@ -8483,9 +8230,7 @@ class gcp_security_policy { ``` -
-
## `gcp_service` @@ -8554,11 +8299,8 @@ gcp_resource <|--- gcp_service
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_service resource relationships" @@ -8593,9 +8335,7 @@ gcp_service -[#1A83AF]-> gcp_sku ``` -
-
## `gcp_service_attachment` @@ -8689,11 +8429,8 @@ gcp_service_attachment --> gcp_uint128
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_service_attachment resource relationships" @@ -8731,9 +8468,7 @@ gcp_service_attachment -[#1A83AF]-> gcp_subnetwork ``` -
-
## `gcp_sku` @@ -8853,11 +8588,8 @@ gcp_tier_rate --> gcp_money
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_sku resource relationships" @@ -8898,9 +8630,7 @@ gcp_sku -[#1A83AF]-> gcp_machine_type ``` -
-
## `gcp_snapshot` @@ -8996,11 +8726,8 @@ gcp_resource <|--- gcp_snapshot
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_snapshot resource relationships" @@ -9035,9 +8762,7 @@ gcp_disk -[#1A83AF]-> gcp_snapshot ``` -
-
## `gcp_sql_backup_run` @@ -9122,11 +8847,8 @@ gcp_sql_backup_run --> gcp_sql_operation_error
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_sql_backup_run resource relationships" @@ -9158,9 +8880,7 @@ class gcp_sql_backup_run { ``` -
-
## `gcp_sql_database` @@ -9238,11 +8958,8 @@ gcp_sql_database --> gcp_sql_sql_server_database_details
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_sql_database resource relationships" @@ -9277,9 +8994,7 @@ gcp_sql_database_instance -[#1A83AF]-> gcp_sql_database ``` -
-
## `gcp_sql_database_instance` @@ -9554,11 +9269,8 @@ gcp_sql_settings --> gcp_sql_sql_server_audit_config
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_sql_database_instance resource relationships" @@ -9602,9 +9314,7 @@ gcp_ssl_certificate -[#1A83AF]-> gcp_sql_database_instance ``` -
-
## `gcp_sql_operation` @@ -9744,11 +9454,8 @@ gcp_sql_sqlexportoptions --> gcp_sql_mysqlexportoptions
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_sql_operation resource relationships" @@ -9783,9 +9490,7 @@ gcp_sql_database_instance -[#1A83AF]-> gcp_sql_operation ``` -
-
## `gcp_sql_user` @@ -9879,11 +9584,8 @@ gcp_sql_user_password_validation_policy --> gcp_sql_password_status
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_sql_user resource relationships" @@ -9918,9 +9620,7 @@ gcp_sql_database_instance -[#1A83AF]-> gcp_sql_user ``` -
-
## `gcp_ssl_certificate` @@ -10005,11 +9705,8 @@ gcp_ssl_certificate --> gcp_ssl_certificate_self_managed_ssl_certificate
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_ssl_certificate resource relationships" @@ -10050,9 +9747,7 @@ gcp_target_ssl_proxy -[#1A83AF]-> gcp_ssl_certificate ``` -
-
## `gcp_ssl_policy` @@ -10136,11 +9831,8 @@ gcp_warnings --> gcp_data
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_ssl_policy resource relationships" @@ -10175,9 +9867,7 @@ gcp_ssl_policy -[#1A83AF]-> gcp_target_https_proxy ``` -
-
## `gcp_subnetwork` @@ -10275,11 +9965,8 @@ gcp_subnetwork --> gcp_subnetwork_secondary_range
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_subnetwork resource relationships" @@ -10336,9 +10023,7 @@ gcp_subnetwork -[#1A83AF]-> gcp_packet_mirroring ``` -
-
## `gcp_target_grpc_proxy` @@ -10409,11 +10094,8 @@ gcp_resource <|--- gcp_target_grpc_proxy
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_grpc_proxy resource relationships" @@ -10451,9 +10133,7 @@ gcp_target_grpc_proxy -[#1A83AF]-> gcp_url_map ``` -
-
## `gcp_target_http_proxy` @@ -10523,11 +10203,8 @@ gcp_resource <|--- gcp_target_http_proxy
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_http_proxy resource relationships" @@ -10565,9 +10242,7 @@ gcp_target_http_proxy -[#1A83AF]-> gcp_url_map ``` -
-
## `gcp_target_https_proxy` @@ -10643,11 +10318,8 @@ gcp_resource <|--- gcp_target_https_proxy
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_https_proxy resource relationships" @@ -10691,9 +10363,7 @@ gcp_target_https_proxy -[#1A83AF]-> gcp_url_map ``` -
-
## `gcp_target_instance` @@ -10763,11 +10433,8 @@ gcp_resource <|--- gcp_target_instance
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_instance resource relationships" @@ -10806,9 +10473,7 @@ gcp_target_instance -[#1A83AF]-> gcp_instance ``` -
-
## `gcp_target_pool` @@ -10880,11 +10545,8 @@ gcp_resource <|--- gcp_target_pool
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_pool resource relationships" @@ -10919,9 +10581,7 @@ gcp_forwarding_rule -[#1A83AF]-> gcp_target_pool ``` -
-
## `gcp_target_ssl_proxy` @@ -10993,11 +10653,8 @@ gcp_resource <|--- gcp_target_ssl_proxy
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_ssl_proxy resource relationships" @@ -11038,9 +10695,7 @@ gcp_target_ssl_proxy -[#1A83AF]-> gcp_ssl_certificate ``` -
-
## `gcp_target_tcp_proxy` @@ -11110,11 +10765,8 @@ gcp_resource <|--- gcp_target_tcp_proxy
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_tcp_proxy resource relationships" @@ -11152,9 +10804,7 @@ gcp_target_tcp_proxy -[#1A83AF]-> gcp_backend_service ``` -
-
## `gcp_target_vpn_gateway` @@ -11225,11 +10875,8 @@ gcp_resource <|--- gcp_target_vpn_gateway
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_target_vpn_gateway resource relationships" @@ -11271,9 +10918,7 @@ gcp_vpn_tunnel -[#1A83AF]-> gcp_target_vpn_gateway ``` -
-
## `gcp_url_map` @@ -11532,11 +11177,8 @@ gcp_weighted_backend_service --> gcp_http_header_action
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_url_map resource relationships" @@ -11580,9 +11222,7 @@ gcp_url_map -[#1A83AF]-> gcp_backend_service ``` -
-
## `gcp_vpn_gateway` @@ -11658,11 +11298,8 @@ gcp_vpn_gateway --> gcp_vpn_gateway_vpn_gateway_interface
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_vpn_gateway resource relationships" @@ -11703,9 +11340,7 @@ gcp_vpn_tunnel -[#1A83AF]-> gcp_vpn_gateway ``` -
-
## `gcp_vpn_tunnel` @@ -11787,11 +11422,8 @@ gcp_resource <|--- gcp_vpn_tunnel
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_vpn_tunnel resource relationships" @@ -11832,9 +11464,7 @@ gcp_vpn_tunnel -[#1A83AF]-> gcp_vpn_gateway ``` -
-
## `gcp_zone` @@ -11909,11 +11539,8 @@ resource <|--- zone
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of gcp_zone resource relationships" @@ -11948,7 +11575,5 @@ gcp_region -[#1A83AF]-> gcp_zone ``` -
-
diff --git a/versioned_docs/version-3.X/reference/unified-data-model/github.mdx b/versioned_docs/version-3.X/reference/unified-data-model/github.mdx index f5e8d99e0..f8cbdd8ca 100644 --- a/versioned_docs/version-3.X/reference/unified-data-model/github.mdx +++ b/versioned_docs/version-3.X/reference/unified-data-model/github.mdx @@ -55,11 +55,8 @@ account <|--- github_account
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of github_account resource relationships" @@ -91,9 +88,7 @@ class github_account { ``` -
-
## `github_org` @@ -182,11 +177,8 @@ resource <|--- github_org
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of github_org resource relationships" @@ -218,9 +210,7 @@ class github_org { ``` -
-
## `github_pull_request` @@ -304,11 +294,8 @@ resource <|--- github_pull_request
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of github_pull_request resource relationships" @@ -340,9 +327,7 @@ class github_pull_request { ``` -
-
## `github_region` @@ -396,11 +381,8 @@ resource <|--- region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of github_region resource relationships" @@ -432,9 +414,7 @@ class github_region { ``` -
-
## `github_repo` @@ -606,11 +586,8 @@ github_repo_views_traffic --> github_repo_view
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of github_repo resource relationships" @@ -642,9 +619,7 @@ class github_repo { ``` -
-
## `github_user` @@ -743,11 +718,8 @@ resource <|--- user
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of github_user resource relationships" @@ -779,7 +751,5 @@ class github_user { ``` -
-
diff --git a/versioned_docs/version-3.X/reference/unified-data-model/index.mdx b/versioned_docs/version-3.X/reference/unified-data-model/index.mdx index 4b51cf8fc..50544f82c 100644 --- a/versioned_docs/version-3.X/reference/unified-data-model/index.mdx +++ b/versioned_docs/version-3.X/reference/unified-data-model/index.mdx @@ -45,11 +45,8 @@ Every resource in Resoto has the `resource` base kind as its root. Resoto also introduces abstract model classes for different resource types, making it easy to query and reason about common data.
- Example -
- ![Example Resource Model](./img/resource_example.svg) @@ -67,7 +64,6 @@ Resoto also introduces abstract model classes for different resource types, maki A [Google Cloud Disk resource](https://cloud.google.com/compute/docs/reference/rest/v1/disks) is conceptually similar to an AWS EC2 Volume and the two resource types have many properties in common.
-
## Supported Resource Types @@ -76,7 +72,7 @@ Resoto has built-in support for resource types from the following cloud provider -## Resource Kinds {#kinds} +## Resource Kinds \{#kinds} For a list of available kinds, you can use the [`kinds` CLI command](../cli/kinds.mdx): @@ -139,9 +135,7 @@ Since Resoto uses JSON in order to exchange data, all the different simple types Resoto also introduces some additional simple types like `datetime` or `date`. The reason for this is the ability to coerce proper values from values given to Resoto.
- Example -
**Assume a user wants to query a resource by creation time.** @@ -167,5 +161,4 @@ According to the model, we would need to filter for the `ctime` property. Since This translates `"-3d"` using the current server time into a valid datetime string.
-
diff --git a/versioned_docs/version-3.X/reference/unified-data-model/kubernetes.mdx b/versioned_docs/version-3.X/reference/unified-data-model/kubernetes.mdx index 69248afc3..c1e02dec1 100644 --- a/versioned_docs/version-3.X/reference/unified-data-model/kubernetes.mdx +++ b/versioned_docs/version-3.X/reference/unified-data-model/kubernetes.mdx @@ -76,11 +76,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_cluster resource relationships" @@ -158,9 +155,7 @@ kubernetes_node -[#1A83AF]-> kubernetes_csi_node ``` -
-
## `kubernetes_cluster_role` @@ -217,11 +212,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_cluster_role resource relationships" @@ -256,9 +248,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_cluster_role ``` -
-
## `kubernetes_cluster_role_binding` @@ -315,11 +305,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_cluster_role_binding resource relationships" @@ -354,9 +341,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_cluster_role_binding ``` -
-
## `kubernetes_config_map` @@ -413,11 +398,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_config_map resource relationships" @@ -456,9 +438,7 @@ kubernetes_pod -[#1A83AF]-> kubernetes_config_map ``` -
-
## `kubernetes_controller_revision` @@ -515,11 +495,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_controller_revision resource relationships" @@ -562,9 +539,7 @@ kubernetes_stateful_set -[#1A83AF]-> kubernetes_controller_revision ``` -
-
## `kubernetes_cron_job` @@ -823,11 +798,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_cron_job resource relationships" @@ -866,9 +838,7 @@ kubernetes_namespace -[#1A83AF]-> kubernetes_job ``` -
-
## `kubernetes_csi_driver` @@ -925,11 +895,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_csi_driver resource relationships" @@ -964,9 +931,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_csi_driver ``` -
-
## `kubernetes_csi_node` @@ -1023,11 +988,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_csi_node resource relationships" @@ -1066,9 +1028,7 @@ kubernetes_node -[#1A83AF]-> kubernetes_csi_node ``` -
-
## `kubernetes_csi_storage_capacity` @@ -1125,11 +1085,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_csi_storage_capacity resource relationships" @@ -1161,9 +1118,7 @@ class kubernetes_csi_storage_capacity { ``` -
-
## `kubernetes_daemon_set` @@ -1407,11 +1362,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_daemon_set resource relationships" @@ -1454,9 +1406,7 @@ kubernetes_namespace -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_deployment` @@ -1713,11 +1663,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_deployment resource relationships" @@ -1756,9 +1703,7 @@ kubernetes_namespace -[#1A83AF]-> kubernetes_replica_set ``` -
-
## `kubernetes_endpoint` @@ -1832,11 +1777,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_endpoint resource relationships" @@ -1883,9 +1825,7 @@ kubernetes_node -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_endpoint_slice` @@ -1942,11 +1882,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_endpoint_slice resource relationships" @@ -1989,9 +1926,7 @@ kubernetes_service -[#1A83AF]-> kubernetes_endpoint_slice ``` -
-
## `kubernetes_flow_schema` @@ -2061,11 +1996,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_flow_schema resource relationships" @@ -2100,9 +2032,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_flow_schema ``` -
-
## `kubernetes_horizontal_pod_autoscaler` @@ -2182,11 +2112,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_horizontal_pod_autoscaler resource relationships" @@ -2218,9 +2145,7 @@ class kubernetes_horizontal_pod_autoscaler { ``` -
-
## `kubernetes_ingress` @@ -2322,11 +2247,8 @@ resource <|--- load_balancer
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_ingress resource relationships" @@ -2358,9 +2280,7 @@ class kubernetes_ingress { ``` -
-
## `kubernetes_ingress_class` @@ -2417,11 +2337,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_ingress_class resource relationships" @@ -2456,9 +2373,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_ingress_class ``` -
-
## `kubernetes_job` @@ -2707,11 +2622,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_job resource relationships" @@ -2754,9 +2666,7 @@ kubernetes_namespace -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_limit_range` @@ -2813,11 +2723,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_limit_range resource relationships" @@ -2849,9 +2756,7 @@ class kubernetes_limit_range { ``` -
-
## `kubernetes_mutating_webhook_configuration` @@ -2908,11 +2813,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_mutating_webhook_configuration resource relationships" @@ -2947,9 +2849,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_mutating_webhook_configuration ``` -
-
## `kubernetes_namespace` @@ -3024,11 +2924,8 @@ resource <|--- region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_namespace resource relationships" @@ -3133,9 +3030,7 @@ kubernetes_stateful_set -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_network_policy` @@ -3206,11 +3101,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_network_policy resource relationships" @@ -3242,9 +3134,7 @@ class kubernetes_network_policy { ``` -
-
## `kubernetes_node` @@ -3404,11 +3294,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_node resource relationships" @@ -3454,9 +3341,7 @@ kubernetes_node -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_persistent_volume` @@ -3570,11 +3455,8 @@ resource <|--- volume
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_persistent_volume resource relationships" @@ -3612,9 +3494,7 @@ kubernetes_persistent_volume_claim -[#1A83AF]-> kubernetes_persistent_volume ``` -
-
## `kubernetes_persistent_volume_claim` @@ -3715,11 +3595,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_persistent_volume_claim resource relationships" @@ -3761,9 +3638,7 @@ kubernetes_pod -[#1A83AF]-> kubernetes_persistent_volume_claim ``` -
-
## `kubernetes_pod` @@ -4031,11 +3906,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_pod resource relationships" @@ -4110,9 +3982,7 @@ kubernetes_stateful_set -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_pod_disruption_budget` @@ -4207,11 +4077,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_pod_disruption_budget resource relationships" @@ -4246,9 +4113,7 @@ kubernetes_namespace -[#1A83AF]-> kubernetes_pod_disruption_budget ``` -
-
## `kubernetes_pod_template` @@ -4305,11 +4170,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_pod_template resource relationships" @@ -4341,9 +4203,7 @@ class kubernetes_pod_template { ``` -
-
## `kubernetes_priority_class` @@ -4400,11 +4260,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_priority_class resource relationships" @@ -4439,9 +4296,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_priority_class ``` -
-
## `kubernetes_priority_level_configuration` @@ -4511,11 +4366,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_priority_level_configuration resource relationships" @@ -4550,9 +4402,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_priority_level_configuration ``` -
-
## `kubernetes_replica_set` @@ -4792,11 +4642,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_replica_set resource relationships" @@ -4839,9 +4686,7 @@ kubernetes_replica_set -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_replication_controller` @@ -4916,11 +4761,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_replication_controller resource relationships" @@ -4952,9 +4794,7 @@ class kubernetes_replication_controller { ``` -
-
## `kubernetes_resource` @@ -5008,11 +4848,8 @@ resource <|--- kubernetes_resource
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_resource resource relationships" @@ -5044,9 +4881,7 @@ class kubernetes_resource { ``` -
-
## `kubernetes_resource_quota` @@ -5126,11 +4961,8 @@ phantom_resource <|--- quota
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_resource_quota resource relationships" @@ -5162,9 +4994,7 @@ class kubernetes_resource_quota { ``` -
-
## `kubernetes_role` @@ -5221,11 +5051,8 @@ kubernetes_resource <|--- kubernetes_role
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_role resource relationships" @@ -5260,9 +5087,7 @@ kubernetes_namespace -[#1A83AF]-> kubernetes_role ``` -
-
## `kubernetes_role_binding` @@ -5319,11 +5144,8 @@ kubernetes_resource <|--- kubernetes_role_binding
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_role_binding resource relationships" @@ -5358,9 +5180,7 @@ kubernetes_namespace -[#1A83AF]-> kubernetes_role_binding ``` -
-
## `kubernetes_runtime_class` @@ -5417,11 +5237,8 @@ kubernetes_resource <|--- kubernetes_runtime_class
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_runtime_class resource relationships" @@ -5453,9 +5270,7 @@ class kubernetes_runtime_class { ``` -
-
## `kubernetes_secret` @@ -5512,11 +5327,8 @@ kubernetes_resource <|--- kubernetes_secret
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_secret resource relationships" @@ -5559,9 +5371,7 @@ kubernetes_service_account -[#1A83AF]-> kubernetes_secret ``` -
-
## `kubernetes_service` @@ -5687,11 +5497,8 @@ resource <|--- load_balancer
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_service resource relationships" @@ -5734,9 +5541,7 @@ kubernetes_service -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_service_account` @@ -5793,11 +5598,8 @@ kubernetes_resource <|--- kubernetes_service_account
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_service_account resource relationships" @@ -5836,9 +5638,7 @@ kubernetes_service_account -[#1A83AF]-> kubernetes_secret ``` -
-
## `kubernetes_stateful_set` @@ -6085,11 +5885,8 @@ kubernetes_stateful_set_status --> kubernetes_stateful_set_status_condition
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_stateful_set resource relationships" @@ -6132,9 +5929,7 @@ kubernetes_stateful_set -[#1A83AF]-> kubernetes_pod ``` -
-
## `kubernetes_storage_class` @@ -6191,11 +5986,8 @@ kubernetes_resource <|--- kubernetes_storage_class
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_storage_class resource relationships" @@ -6230,9 +6022,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_storage_class ``` -
-
## `kubernetes_validating_webhook_configuration` @@ -6289,11 +6079,8 @@ kubernetes_resource <|--- kubernetes_validating_webhook_configuration
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_validating_webhook_configuration resource relationships" @@ -6328,9 +6115,7 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_validating_webhook_configuration ``` -
-
## `kubernetes_volume_attachment` @@ -6407,11 +6192,8 @@ kubernetes_volume_attachment_status --> kubernetes_volume_error
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of kubernetes_volume_attachment resource relationships" @@ -6446,7 +6228,5 @@ kubernetes_cluster -[#1A83AF]-> kubernetes_volume_attachment ``` -
-
diff --git a/versioned_docs/version-3.X/reference/unified-data-model/onelogin.mdx b/versioned_docs/version-3.X/reference/unified-data-model/onelogin.mdx index fb840cd38..662ec35da 100644 --- a/versioned_docs/version-3.X/reference/unified-data-model/onelogin.mdx +++ b/versioned_docs/version-3.X/reference/unified-data-model/onelogin.mdx @@ -58,11 +58,8 @@ onelogin_resource <|--- onelogin_account
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of onelogin_account resource relationships" @@ -94,9 +91,7 @@ class onelogin_account { ``` -
-
## `onelogin_region` @@ -153,11 +148,8 @@ resource <|--- region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of onelogin_region resource relationships" @@ -189,9 +181,7 @@ class onelogin_region { ``` -
-
## `onelogin_user` @@ -283,11 +273,8 @@ resource <|--- user
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of onelogin_user resource relationships" @@ -319,7 +306,5 @@ class onelogin_user { ``` -
-
diff --git a/versioned_docs/version-3.X/reference/unified-data-model/onprem.mdx b/versioned_docs/version-3.X/reference/unified-data-model/onprem.mdx index cb724cdde..ab2e3c4ed 100644 --- a/versioned_docs/version-3.X/reference/unified-data-model/onprem.mdx +++ b/versioned_docs/version-3.X/reference/unified-data-model/onprem.mdx @@ -66,11 +66,8 @@ onprem_resource <|--- onprem_instance
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of onprem_instance resource relationships" @@ -102,9 +99,7 @@ class onprem_instance { ``` -
-
## `onprem_location` @@ -158,11 +153,8 @@ account <|--- onprem_location
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of onprem_location resource relationships" @@ -194,9 +186,7 @@ class onprem_location { ``` -
-
## `onprem_network` @@ -253,11 +243,8 @@ onprem_resource <|--- onprem_network
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of onprem_network resource relationships" @@ -289,9 +276,7 @@ class onprem_network { ``` -
-
## `onprem_region` @@ -345,11 +330,8 @@ resource <|--- region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of onprem_region resource relationships" @@ -381,7 +363,5 @@ class onprem_region { ``` -
-
diff --git a/versioned_docs/version-3.X/reference/unified-data-model/posthog.mdx b/versioned_docs/version-3.X/reference/unified-data-model/posthog.mdx index d511470ee..0b36cfc70 100644 --- a/versioned_docs/version-3.X/reference/unified-data-model/posthog.mdx +++ b/versioned_docs/version-3.X/reference/unified-data-model/posthog.mdx @@ -69,11 +69,8 @@ resource <|--- posthog_event
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of posthog_event resource relationships" @@ -105,9 +102,7 @@ class posthog_event { ``` -
-
## `posthog_project` @@ -181,11 +176,8 @@ posthog_resource <|--- posthog_project
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of posthog_project resource relationships" @@ -217,7 +209,5 @@ class posthog_project { ``` -
-
diff --git a/versioned_docs/version-3.X/reference/unified-data-model/scarf.mdx b/versioned_docs/version-3.X/reference/unified-data-model/scarf.mdx index 14230f4d1..2b61f3f74 100644 --- a/versioned_docs/version-3.X/reference/unified-data-model/scarf.mdx +++ b/versioned_docs/version-3.X/reference/unified-data-model/scarf.mdx @@ -61,11 +61,8 @@ scarf_resource <|--- scarf_organization
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of scarf_organization resource relationships" @@ -97,9 +94,7 @@ class scarf_organization { ``` -
-
## `scarf_package` @@ -159,11 +154,8 @@ scarf_resource <|--- scarf_package
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of scarf_package resource relationships" @@ -195,7 +187,5 @@ class scarf_package { ``` -
-
diff --git a/versioned_docs/version-3.X/reference/unified-data-model/slack.mdx b/versioned_docs/version-3.X/reference/unified-data-model/slack.mdx index 7c5434a8c..886a8d932 100644 --- a/versioned_docs/version-3.X/reference/unified-data-model/slack.mdx +++ b/versioned_docs/version-3.X/reference/unified-data-model/slack.mdx @@ -82,11 +82,8 @@ slack_resource <|--- slack_conversation
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of slack_conversation resource relationships" @@ -125,9 +122,7 @@ slack_region -[#1A83AF]-> slack_user ``` -
-
## `slack_region` @@ -184,11 +179,8 @@ slack_resource <|--- slack_region
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of slack_region resource relationships" @@ -234,9 +226,7 @@ slack_usergroup -[#1A83AF]-> slack_user ``` -
-
## `slack_team` @@ -296,11 +286,8 @@ slack_resource <|--- slack_team
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of slack_team resource relationships" @@ -335,9 +322,7 @@ slack_team -[#1A83AF]-> slack_region ``` -
-
## `slack_user` @@ -428,11 +413,8 @@ resource <|--- user
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of slack_user resource relationships" @@ -475,9 +457,7 @@ slack_usergroup -[#1A83AF]-> slack_user ``` -
-
## `slack_usergroup` @@ -546,11 +526,8 @@ slack_resource <|--- slack_usergroup
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of slack_usergroup resource relationships" @@ -589,7 +566,5 @@ slack_usergroup -[#1A83AF]-> slack_user ``` -
-
diff --git a/versioned_docs/version-3.X/reference/unified-data-model/vsphere.mdx b/versioned_docs/version-3.X/reference/unified-data-model/vsphere.mdx index 73de3a418..5117e4c5c 100644 --- a/versioned_docs/version-3.X/reference/unified-data-model/vsphere.mdx +++ b/versioned_docs/version-3.X/reference/unified-data-model/vsphere.mdx @@ -55,11 +55,8 @@ resource <|--- zone
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_cluster resource relationships" @@ -91,9 +88,7 @@ class vsphere_cluster { ``` -
-
## `vsphere_data_center` @@ -147,11 +142,8 @@ region <|--- vsphere_data_center
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_data_center resource relationships" @@ -183,9 +175,7 @@ class vsphere_data_center { ``` -
-
## `vsphere_datastore` @@ -236,11 +226,8 @@ resource <|--- vsphere_datastore
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_datastore resource relationships" @@ -272,9 +259,7 @@ class vsphere_datastore { ``` -
-
## `vsphere_datastore_cluster` @@ -325,11 +310,8 @@ resource <|--- vsphere_datastore_cluster
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_datastore_cluster resource relationships" @@ -361,9 +343,7 @@ class vsphere_datastore_cluster { ``` -
-
## `vsphere_esxi_host` @@ -414,11 +394,8 @@ resource <|--- vsphere_esxi_host
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_esxi_host resource relationships" @@ -450,9 +427,7 @@ class vsphere_esxi_host { ``` -
-
## `vsphere_host` @@ -506,11 +481,8 @@ account <|--- vsphere_host
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_host resource relationships" @@ -542,9 +514,7 @@ class vsphere_host { ``` -
-
## `vsphere_instance` @@ -605,11 +575,8 @@ vsphere_resource <|--- vsphere_instance
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_instance resource relationships" @@ -641,9 +608,7 @@ class vsphere_instance { ``` -
-
## `vsphere_resource_pool` @@ -694,11 +659,8 @@ resource <|--- vsphere_resource_pool
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_resource_pool resource relationships" @@ -730,9 +692,7 @@ class vsphere_resource_pool { ``` -
-
## `vsphere_template` @@ -786,11 +746,8 @@ vsphere_resource <|--- vsphere_template
- Relationships to Other Resources -
- ```kroki imgType="plantuml" imgAlt="Diagram of vsphere_template resource relationships" @@ -822,7 +779,5 @@ class vsphere_template { ``` -
-
diff --git a/versioned_docs/version-3.X/reference/user-interface/configuration-editor.mdx b/versioned_docs/version-3.X/reference/user-interface/configuration-editor.mdx index 2f87ed080..59d72d664 100644 --- a/versioned_docs/version-3.X/reference/user-interface/configuration-editor.mdx +++ b/versioned_docs/version-3.X/reference/user-interface/configuration-editor.mdx @@ -17,9 +17,7 @@ Configurations can be saved, deleted, duplicated, renamed, and added using this On the left side of the interface, you can find the navigation. Here you can select which configuration you want to edit. The displayed folder structure is created by the configuration names.
- How the folder structure is created -
- config: `resoto.core` @@ -53,7 +51,6 @@ On the left side of the interface, you can find the navigation. Here you can sel ```
-
### Right Side diff --git a/versioned_docs/version-3.X/reference/user-interface/dashboards/widgets/index.mdx b/versioned_docs/version-3.X/reference/user-interface/dashboards/widgets/index.mdx index dc6d30ad3..597bdb624 100644 --- a/versioned_docs/version-3.X/reference/user-interface/dashboards/widgets/index.mdx +++ b/versioned_docs/version-3.X/reference/user-interface/dashboards/widgets/index.mdx @@ -28,9 +28,7 @@ The Indicator Widget displays data as a Number. In the Widgets Options, you can - [Aggregate Search (Live Data)](../data-sources/index.mdx#aggregate-search)
- Indicator Aggregate Data Source examples -
- Monthly Volume Cost estimation @@ -51,7 +49,6 @@ The Indicator Widget displays data as a Number. In the Widgets Options, you can ```
-
## Chart @@ -65,9 +62,7 @@ The Chart Widget displays time series data as a line chart. You can change setti - [Time Series (Historic Data)](../data-sources/index.mdx#time-series)
- Chart Time Series Data Source examples -
- Total Accounts across all clouds @@ -80,7 +75,6 @@ The Chart Widget displays time series data as a line chart. You can change setti ```
-
## Table @@ -101,9 +95,7 @@ You can export the displayed data directly from the widget by clicking the expor :::
- Table Aggregate Search Data Source examples -
- Instances per kind and cloud @@ -116,7 +108,6 @@ You can export the displayed data directly from the widget by clicking the expor ```
-
## Heatmap @@ -131,9 +122,7 @@ The Heatmap Widget provides a visual tool to quickly find hotspots of certain me - [Two Entries Aggregate (Live Data)](../data-sources/index.mdx#two-entries-aggregate)
- Heatmap Aggregate Data Source examples -
- Instances per type and account @@ -146,7 +135,6 @@ The Heatmap Widget provides a visual tool to quickly find hotspots of certain me ```
-
## World Map @@ -161,9 +149,7 @@ The World Map Widget is a way of displaying elements grouped by the geolocation - [Fixed Aggregate (Live Data)](../data-sources/index.mdx#fixed-aggregate)
- World Map Fixed Aggregate Data Source examples -
- Instances number per region and cloud @@ -172,5 +158,4 @@ The World Map Widget is a way of displaying elements grouped by the geolocation ```
-
diff --git a/versioned_sidebars/version-3.X-sidebars.json b/versioned_sidebars/version-3.X-sidebars.json index c6ff2bc28..637a3a9fd 100644 --- a/versioned_sidebars/version-3.X-sidebars.json +++ b/versioned_sidebars/version-3.X-sidebars.json @@ -397,7 +397,7 @@ }, { "type": "doc", - "id": "version-3.X/reference/api/list-available-benchmarks", + "id": "reference/api/list-available-benchmarks", "label": "List available benchmarks.", "className": "api-method get" }, diff --git a/yarn.lock b/yarn.lock index ed7906abe..76bcc8df8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -179,68 +179,46 @@ js-yaml "^4.1.0" lodash.clonedeep "^4.5.0" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.8.3": - version "7.22.13" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e" - integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.8.3": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" + integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== dependencies: - "@babel/highlight" "^7.22.13" + "@babel/highlight" "^7.23.4" chalk "^2.4.2" -"@babel/compat-data@^7.22.20", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.20.tgz#8df6e96661209623f1975d66c35ffca66f3306d0" - integrity sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw== - -"@babel/core@7.12.9": - version "7.12.9" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8" - integrity sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.12.5" - "@babel/helper-module-transforms" "^7.12.1" - "@babel/helpers" "^7.12.5" - "@babel/parser" "^7.12.7" - "@babel/template" "^7.12.7" - "@babel/traverse" "^7.12.9" - "@babel/types" "^7.12.7" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.1" - json5 "^2.1.2" - lodash "^4.17.19" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" +"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9", "@babel/compat-data@^7.23.3", "@babel/compat-data@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98" + integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw== -"@babel/core@^7.11.1", "@babel/core@^7.18.6", "@babel/core@^7.19.6": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.0.tgz#f8259ae0e52a123eb40f552551e647b506a94d83" - integrity sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ== +"@babel/core@^7.11.1", "@babel/core@^7.19.6", "@babel/core@^7.23.3": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.5.tgz#6e23f2acbcb77ad283c5ed141f824fd9f70101c7" + integrity sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g== dependencies: "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.22.13" - "@babel/generator" "^7.23.0" + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.5" "@babel/helper-compilation-targets" "^7.22.15" - "@babel/helper-module-transforms" "^7.23.0" - "@babel/helpers" "^7.23.0" - "@babel/parser" "^7.23.0" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helpers" "^7.23.5" + "@babel/parser" "^7.23.5" "@babel/template" "^7.22.15" - "@babel/traverse" "^7.23.0" - "@babel/types" "^7.23.0" + "@babel/traverse" "^7.23.5" + "@babel/types" "^7.23.5" convert-source-map "^2.0.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.3" semver "^6.3.1" -"@babel/generator@^7.12.5", "@babel/generator@^7.18.7", "@babel/generator@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420" - integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g== +"@babel/generator@^7.23.3", "@babel/generator@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.5.tgz#17d0a1ea6b62f351d281350a5f80b87a810c4755" + integrity sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA== dependencies: - "@babel/types" "^7.23.0" + "@babel/types" "^7.23.5" "@jridgewell/gen-mapping" "^0.3.2" "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" @@ -252,14 +230,14 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5": +"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz#5426b109cf3ad47b91120f8328d8ab1be8b0b956" integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw== dependencies: "@babel/types" "^7.22.15" -"@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6": +"@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.6": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz#0698fc44551a26cf29f18d4662d5bf545a6cfc52" integrity sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw== @@ -270,22 +248,22 @@ lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.22.11", "@babel/helper-create-class-features-plugin@^7.22.15", "@babel/helper-create-class-features-plugin@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz#97a61b385e57fe458496fad19f8e63b63c867de4" - integrity sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg== +"@babel/helper-create-class-features-plugin@^7.22.15", "@babel/helper-create-class-features-plugin@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.5.tgz#2a8792357008ae9ce8c0f2b78b9f646ac96b314b" + integrity sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-member-expression-to-functions" "^7.22.15" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-member-expression-to-functions" "^7.23.0" "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.9" + "@babel/helper-replace-supers" "^7.22.20" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" "@babel/helper-split-export-declaration" "^7.22.6" semver "^6.3.1" -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.15", "@babel/helper-create-regexp-features-plugin@^7.22.5": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1" integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== @@ -294,10 +272,10 @@ regexpu-core "^5.3.1" semver "^6.3.1" -"@babel/helper-define-polyfill-provider@^0.4.2": - version "0.4.2" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz#82c825cadeeeee7aad237618ebbe8fa1710015d7" - integrity sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw== +"@babel/helper-define-polyfill-provider@^0.4.3": + version "0.4.3" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz#a71c10f7146d809f4a256c373f462d9bba8cf6ba" + integrity sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug== dependencies: "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-plugin-utils" "^7.22.5" @@ -305,7 +283,7 @@ lodash.debounce "^4.0.8" resolve "^1.14.2" -"@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5": +"@babel/helper-environment-visitor@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== @@ -325,24 +303,24 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-member-expression-to-functions@^7.22.15": +"@babel/helper-member-expression-to-functions@^7.22.15", "@babel/helper-member-expression-to-functions@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366" integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA== dependencies: "@babel/types" "^7.23.0" -"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.22.5": +"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== dependencies: "@babel/types" "^7.22.15" -"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz#3ec246457f6c842c0aee62a01f60739906f7047e" - integrity sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw== +"@babel/helper-module-transforms@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz#d7d12c3c5d30af5b3c0fcab2a6d5217773e2d0f1" + integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== dependencies: "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-module-imports" "^7.22.15" @@ -357,17 +335,12 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-plugin-utils@7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" - integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== - "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== -"@babel/helper-remap-async-to-generator@^7.22.5", "@babel/helper-remap-async-to-generator@^7.22.9": +"@babel/helper-remap-async-to-generator@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0" integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== @@ -376,7 +349,7 @@ "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-wrap-function" "^7.22.20" -"@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9": +"@babel/helper-replace-supers@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793" integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== @@ -406,20 +379,20 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-string-parser@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" - integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== +"@babel/helper-string-parser@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" + integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== "@babel/helper-validator-identifier@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== -"@babel/helper-validator-option@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040" - integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA== +"@babel/helper-validator-option@^7.22.15", "@babel/helper-validator-option@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" + integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== "@babel/helper-wrap-function@^7.22.20": version "7.22.20" @@ -430,53 +403,52 @@ "@babel/template" "^7.22.15" "@babel/types" "^7.22.19" -"@babel/helpers@^7.12.5", "@babel/helpers@^7.23.0": - version "7.23.1" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.1.tgz#44e981e8ce2b9e99f8f0b703f3326a4636c16d15" - integrity sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA== +"@babel/helpers@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.5.tgz#52f522840df8f1a848d06ea6a79b79eefa72401e" + integrity sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg== dependencies: "@babel/template" "^7.22.15" - "@babel/traverse" "^7.23.0" - "@babel/types" "^7.23.0" + "@babel/traverse" "^7.23.5" + "@babel/types" "^7.23.5" -"@babel/highlight@^7.22.13": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54" - integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg== +"@babel/highlight@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" + integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== dependencies: "@babel/helper-validator-identifier" "^7.22.20" chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/parser@^7.12.7", "@babel/parser@^7.18.8", "@babel/parser@^7.22.15", "@babel/parser@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719" - integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw== +"@babel/parser@^7.22.15", "@babel/parser@^7.22.7", "@babel/parser@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.5.tgz#37dee97c4752af148e1d38c34b856b2507660563" + integrity sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ== -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz#02dc8a03f613ed5fdc29fb2f728397c78146c962" - integrity sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg== +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz#5cd1c87ba9380d0afb78469292c954fee5d2411a" + integrity sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz#2aeb91d337d4e1a1e7ce85b76a37f5301781200f" - integrity sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ== +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz#f6652bb16b94f8f9c20c50941e16e9756898dc5d" + integrity sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.22.15" + "@babel/plugin-transform-optional-chaining" "^7.23.3" -"@babel/plugin-proposal-object-rest-spread@7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069" - integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.3.tgz#20c60d4639d18f7da8602548512e9d3a4c8d7098" + integrity sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w== dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.0" - "@babel/plugin-transform-parameters" "^7.12.1" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": version "7.21.0-placeholder-for-preset-env.2" @@ -518,17 +490,17 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-import-assertions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98" - integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== +"@babel/plugin-syntax-import-assertions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz#9c05a7f592982aff1a2768260ad84bcd3f0c77fc" + integrity sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-syntax-import-attributes@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb" - integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== +"@babel/plugin-syntax-import-attributes@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz#992aee922cf04512461d7dae3ff6951b90a2dc06" + integrity sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" @@ -546,17 +518,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926" - integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-jsx@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" - integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== +"@babel/plugin-syntax-jsx@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz#8f2e4f8a9b5f9aa16067e142c1ac9cd9f810f473" + integrity sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" @@ -581,7 +546,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-object-rest-spread@7.8.3", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": +"@babel/plugin-syntax-object-rest-spread@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== @@ -616,10 +581,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-typescript@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272" - integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ== +"@babel/plugin-syntax-typescript@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz#24f460c85dbbc983cd2b9c4994178bcc01df958f" + integrity sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" @@ -631,211 +596,211 @@ "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-arrow-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958" - integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== +"@babel/plugin-transform-arrow-functions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz#94c6dcfd731af90f27a79509f9ab7fb2120fc38b" + integrity sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-async-generator-functions@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.15.tgz#3b153af4a6b779f340d5b80d3f634f55820aefa3" - integrity sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w== +"@babel/plugin-transform-async-generator-functions@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.4.tgz#93ac8e3531f347fba519b4703f9ff2a75c6ae27a" + integrity sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw== dependencies: - "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.9" + "@babel/helper-remap-async-to-generator" "^7.22.20" "@babel/plugin-syntax-async-generators" "^7.8.4" -"@babel/plugin-transform-async-to-generator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775" - integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== +"@babel/plugin-transform-async-to-generator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz#d1f513c7a8a506d43f47df2bf25f9254b0b051fa" + integrity sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw== dependencies: - "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-module-imports" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.20" -"@babel/plugin-transform-block-scoped-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024" - integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== +"@babel/plugin-transform-block-scoped-functions@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz#fe1177d715fb569663095e04f3598525d98e8c77" + integrity sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-block-scoping@^7.22.15": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz#8744d02c6c264d82e1a4bc5d2d501fd8aff6f022" - integrity sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g== +"@babel/plugin-transform-block-scoping@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz#b2d38589531c6c80fbe25e6b58e763622d2d3cf5" + integrity sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-class-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" - integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== +"@babel/plugin-transform-class-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz#35c377db11ca92a785a718b6aa4e3ed1eb65dc48" + integrity sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-class-static-block@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz#dc8cc6e498f55692ac6b4b89e56d87cec766c974" - integrity sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g== +"@babel/plugin-transform-class-static-block@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz#2a202c8787a8964dd11dfcedf994d36bfc844ab5" + integrity sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.11" + "@babel/helper-create-class-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-class-static-block" "^7.14.5" -"@babel/plugin-transform-classes@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz#aaf4753aee262a232bbc95451b4bdf9599c65a0b" - integrity sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw== +"@babel/plugin-transform-classes@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.5.tgz#e7a75f815e0c534cc4c9a39c56636c84fc0d64f2" + integrity sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" "@babel/helper-compilation-targets" "^7.22.15" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" "@babel/helper-optimise-call-expression" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.9" + "@babel/helper-replace-supers" "^7.22.20" "@babel/helper-split-export-declaration" "^7.22.6" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869" - integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== +"@babel/plugin-transform-computed-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz#652e69561fcc9d2b50ba4f7ac7f60dcf65e86474" + integrity sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" - "@babel/template" "^7.22.5" + "@babel/template" "^7.22.15" -"@babel/plugin-transform-destructuring@^7.22.15": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz#6447aa686be48b32eaf65a73e0e2c0bd010a266c" - integrity sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg== +"@babel/plugin-transform-destructuring@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz#8c9ee68228b12ae3dff986e56ed1ba4f3c446311" + integrity sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-dotall-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165" - integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== +"@babel/plugin-transform-dotall-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz#3f7af6054882ede89c378d0cf889b854a993da50" + integrity sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-duplicate-keys@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285" - integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== +"@babel/plugin-transform-duplicate-keys@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz#664706ca0a5dfe8d066537f99032fc1dc8b720ce" + integrity sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-dynamic-import@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz#2c7722d2a5c01839eaf31518c6ff96d408e447aa" - integrity sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA== +"@babel/plugin-transform-dynamic-import@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz#c7629e7254011ac3630d47d7f34ddd40ca535143" + integrity sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" -"@babel/plugin-transform-exponentiation-operator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a" - integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== +"@babel/plugin-transform-exponentiation-operator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz#ea0d978f6b9232ba4722f3dbecdd18f450babd18" + integrity sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ== dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-export-namespace-from@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz#b3c84c8f19880b6c7440108f8929caf6056db26c" - integrity sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw== +"@babel/plugin-transform-export-namespace-from@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz#084c7b25e9a5c8271e987a08cf85807b80283191" + integrity sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" -"@babel/plugin-transform-for-of@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz#f64b4ccc3a4f131a996388fae7680b472b306b29" - integrity sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA== +"@babel/plugin-transform-for-of@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.3.tgz#afe115ff0fbce735e02868d41489093c63e15559" + integrity sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143" - integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== +"@babel/plugin-transform-function-name@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz#8f424fcd862bf84cb9a1a6b42bc2f47ed630f8dc" + integrity sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw== dependencies: - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-function-name" "^7.23.0" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-json-strings@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz#689a34e1eed1928a40954e37f74509f48af67835" - integrity sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw== +"@babel/plugin-transform-json-strings@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz#a871d9b6bd171976efad2e43e694c961ffa3714d" + integrity sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-json-strings" "^7.8.3" -"@babel/plugin-transform-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920" - integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== +"@babel/plugin-transform-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz#8214665f00506ead73de157eba233e7381f3beb4" + integrity sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-logical-assignment-operators@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz#24c522a61688bde045b7d9bc3c2597a4d948fc9c" - integrity sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ== +"@babel/plugin-transform-logical-assignment-operators@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz#e599f82c51d55fac725f62ce55d3a0886279ecb5" + integrity sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" -"@babel/plugin-transform-member-expression-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def" - integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== +"@babel/plugin-transform-member-expression-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz#e37b3f0502289f477ac0e776b05a833d853cabcc" + integrity sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-amd@^7.22.5": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz#05b2bc43373faa6d30ca89214731f76f966f3b88" - integrity sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw== +"@babel/plugin-transform-modules-amd@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz#e19b55436a1416829df0a1afc495deedfae17f7d" + integrity sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw== dependencies: - "@babel/helper-module-transforms" "^7.23.0" + "@babel/helper-module-transforms" "^7.23.3" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-commonjs@^7.22.15", "@babel/plugin-transform-modules-commonjs@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz#b3dba4757133b2762c00f4f94590cf6d52602481" - integrity sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ== +"@babel/plugin-transform-modules-commonjs@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz#661ae831b9577e52be57dd8356b734f9700b53b4" + integrity sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA== dependencies: - "@babel/helper-module-transforms" "^7.23.0" + "@babel/helper-module-transforms" "^7.23.3" "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-simple-access" "^7.22.5" -"@babel/plugin-transform-modules-systemjs@^7.22.11": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz#77591e126f3ff4132a40595a6cccd00a6b60d160" - integrity sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg== +"@babel/plugin-transform-modules-systemjs@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz#fa7e62248931cb15b9404f8052581c302dd9de81" + integrity sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ== dependencies: "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-module-transforms" "^7.23.0" + "@babel/helper-module-transforms" "^7.23.3" "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-validator-identifier" "^7.22.20" -"@babel/plugin-transform-modules-umd@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98" - integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== +"@babel/plugin-transform-modules-umd@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz#5d4395fccd071dfefe6585a4411aa7d6b7d769e9" + integrity sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg== dependencies: - "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-module-transforms" "^7.23.3" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": @@ -846,108 +811,108 @@ "@babel/helper-create-regexp-features-plugin" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-new-target@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d" - integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== +"@babel/plugin-transform-new-target@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz#5491bb78ed6ac87e990957cea367eab781c4d980" + integrity sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-nullish-coalescing-operator@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz#debef6c8ba795f5ac67cd861a81b744c5d38d9fc" - integrity sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg== +"@babel/plugin-transform-nullish-coalescing-operator@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz#45556aad123fc6e52189ea749e33ce090637346e" + integrity sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-transform-numeric-separator@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz#498d77dc45a6c6db74bb829c02a01c1d719cbfbd" - integrity sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg== +"@babel/plugin-transform-numeric-separator@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz#03d08e3691e405804ecdd19dd278a40cca531f29" + integrity sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-transform-object-rest-spread@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz#21a95db166be59b91cde48775310c0df6e1da56f" - integrity sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q== +"@babel/plugin-transform-object-rest-spread@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz#2b9c2d26bf62710460bdc0d1730d4f1048361b83" + integrity sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g== dependencies: - "@babel/compat-data" "^7.22.9" + "@babel/compat-data" "^7.23.3" "@babel/helper-compilation-targets" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.22.15" + "@babel/plugin-transform-parameters" "^7.23.3" -"@babel/plugin-transform-object-super@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c" - integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== +"@babel/plugin-transform-object-super@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz#81fdb636dcb306dd2e4e8fd80db5b2362ed2ebcd" + integrity sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.20" -"@babel/plugin-transform-optional-catch-binding@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz#461cc4f578a127bb055527b3e77404cad38c08e0" - integrity sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ== +"@babel/plugin-transform-optional-catch-binding@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz#318066de6dacce7d92fa244ae475aa8d91778017" + integrity sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-transform-optional-chaining@^7.22.15": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.0.tgz#73ff5fc1cf98f542f09f29c0631647d8ad0be158" - integrity sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g== +"@babel/plugin-transform-optional-chaining@^7.23.3", "@babel/plugin-transform-optional-chaining@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz#6acf61203bdfc4de9d4e52e64490aeb3e52bd017" + integrity sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" "@babel/plugin-syntax-optional-chaining" "^7.8.3" -"@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz#719ca82a01d177af358df64a514d64c2e3edb114" - integrity sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ== +"@babel/plugin-transform-parameters@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz#83ef5d1baf4b1072fa6e54b2b0999a7b2527e2af" + integrity sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-private-methods@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722" - integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== +"@babel/plugin-transform-private-methods@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz#b2d7a3c97e278bfe59137a978d53b2c2e038c0e4" + integrity sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-private-property-in-object@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz#ad45c4fc440e9cb84c718ed0906d96cf40f9a4e1" - integrity sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ== +"@babel/plugin-transform-private-property-in-object@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz#3ec711d05d6608fd173d9b8de39872d8dbf68bf5" + integrity sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.11" + "@babel/helper-create-class-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" -"@babel/plugin-transform-property-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766" - integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== +"@babel/plugin-transform-property-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz#54518f14ac4755d22b92162e4a852d308a560875" + integrity sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-transform-react-constant-elements@^7.18.12": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.22.5.tgz#6dfa7c1c37f7d7279e417ceddf5a04abb8bb9c29" - integrity sha512-BF5SXoO+nX3h5OhlN78XbbDrBOffv+AxPP2ENaJOVqjWCgBDeOY3WcaUcddutGSfoap+5NEQ/q/4I3WZIvgkXA== + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.23.3.tgz#5efc001d07ef0f7da0d73c3a86c132f73d28e43c" + integrity sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-react-display-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz#3c4326f9fce31c7968d6cb9debcaf32d9e279a2b" - integrity sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw== +"@babel/plugin-transform-react-display-name@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz#70529f034dd1e561045ad3c8152a267f0d7b6200" + integrity sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" @@ -959,147 +924,148 @@ "@babel/plugin-transform-react-jsx" "^7.22.5" "@babel/plugin-transform-react-jsx@^7.22.15", "@babel/plugin-transform-react-jsx@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.15.tgz#7e6266d88705d7c49f11c98db8b9464531289cd6" - integrity sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA== + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz#393f99185110cea87184ea47bcb4a7b0c2e39312" + integrity sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" "@babel/helper-module-imports" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-jsx" "^7.22.5" - "@babel/types" "^7.22.15" + "@babel/plugin-syntax-jsx" "^7.23.3" + "@babel/types" "^7.23.4" -"@babel/plugin-transform-react-pure-annotations@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.22.5.tgz#1f58363eef6626d6fa517b95ac66fe94685e32c0" - integrity sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA== +"@babel/plugin-transform-react-pure-annotations@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz#fabedbdb8ee40edf5da96f3ecfc6958e3783b93c" + integrity sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-regenerator@^7.22.10": - version "7.22.10" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz#8ceef3bd7375c4db7652878b0241b2be5d0c3cca" - integrity sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw== +"@babel/plugin-transform-regenerator@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz#141afd4a2057298602069fce7f2dc5173e6c561c" + integrity sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" regenerator-transform "^0.15.2" -"@babel/plugin-transform-reserved-words@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb" - integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== +"@babel/plugin-transform-reserved-words@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz#4130dcee12bd3dd5705c587947eb715da12efac8" + integrity sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-runtime@^7.18.6": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.15.tgz#3a625c4c05a39e932d7d34f5d4895cdd0172fdc9" - integrity sha512-tEVLhk8NRZSmwQ0DJtxxhTrCht1HVo8VaMzYT4w6lwyKBuHsgoioAUA7/6eT2fRfc5/23fuGdlwIxXhRVgWr4g== +"@babel/plugin-transform-runtime@^7.22.9": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.4.tgz#5132b388580002fc5cb7c84eccfb968acdc231cb" + integrity sha512-ITwqpb6V4btwUG0YJR82o2QvmWrLgDnx/p2A3CTPYGaRgULkDiC0DRA2C4jlRB9uXGUEfaSS/IGHfVW+ohzYDw== dependencies: "@babel/helper-module-imports" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" - babel-plugin-polyfill-corejs2 "^0.4.5" - babel-plugin-polyfill-corejs3 "^0.8.3" - babel-plugin-polyfill-regenerator "^0.5.2" + babel-plugin-polyfill-corejs2 "^0.4.6" + babel-plugin-polyfill-corejs3 "^0.8.5" + babel-plugin-polyfill-regenerator "^0.5.3" semver "^6.3.1" -"@babel/plugin-transform-shorthand-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624" - integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== +"@babel/plugin-transform-shorthand-properties@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz#97d82a39b0e0c24f8a981568a8ed851745f59210" + integrity sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-spread@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b" - integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== +"@babel/plugin-transform-spread@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz#41d17aacb12bde55168403c6f2d6bdca563d362c" + integrity sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" -"@babel/plugin-transform-sticky-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa" - integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== +"@babel/plugin-transform-sticky-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz#dec45588ab4a723cb579c609b294a3d1bd22ff04" + integrity sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-template-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff" - integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== +"@babel/plugin-transform-template-literals@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz#5f0f028eb14e50b5d0f76be57f90045757539d07" + integrity sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-typeof-symbol@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34" - integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== +"@babel/plugin-transform-typeof-symbol@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz#9dfab97acc87495c0c449014eb9c547d8966bca4" + integrity sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-typescript@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.15.tgz#15adef906451d86349eb4b8764865c960eb54127" - integrity sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA== +"@babel/plugin-transform-typescript@^7.23.3": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.5.tgz#83da13ef62a1ebddf2872487527094b31c9adb84" + integrity sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.15" + "@babel/helper-create-class-features-plugin" "^7.23.5" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-typescript" "^7.22.5" + "@babel/plugin-syntax-typescript" "^7.23.3" -"@babel/plugin-transform-unicode-escapes@^7.22.10": - version "7.22.10" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz#c723f380f40a2b2f57a62df24c9005834c8616d9" - integrity sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg== +"@babel/plugin-transform-unicode-escapes@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz#1f66d16cab01fab98d784867d24f70c1ca65b925" + integrity sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-property-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81" - integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== +"@babel/plugin-transform-unicode-property-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz#19e234129e5ffa7205010feec0d94c251083d7ad" + integrity sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183" - integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== +"@babel/plugin-transform-unicode-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz#26897708d8f42654ca4ce1b73e96140fbad879dc" + integrity sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-unicode-sets-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91" - integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== +"@babel/plugin-transform-unicode-sets-regex@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz#4fb6f0a719c2c5859d11f6b55a050cc987f3799e" + integrity sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-create-regexp-features-plugin" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.18.6", "@babel/preset-env@^7.19.4": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.20.tgz#de9e9b57e1127ce0a2f580831717f7fb677ceedb" - integrity sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg== +"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.19.4", "@babel/preset-env@^7.22.9", "@babel/preset-env@^7.23.3": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.23.5.tgz#350a3aedfa9f119ad045b068886457e895ba0ca1" + integrity sha512-0d/uxVD6tFGWXGDSfyMD1p2otoaKmu6+GD+NfAx0tMaH+dxORnp7T9TaVQ6mKyya7iBtCIVxHjWT7MuzzM9z+A== dependencies: - "@babel/compat-data" "^7.22.20" + "@babel/compat-data" "^7.23.5" "@babel/helper-compilation-targets" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.15" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.15" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.15" + "@babel/helper-validator-option" "^7.23.5" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.23.3" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.23.3" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.23.3" "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-syntax-class-properties" "^7.12.13" "@babel/plugin-syntax-class-static-block" "^7.14.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.22.5" - "@babel/plugin-syntax-import-attributes" "^7.22.5" + "@babel/plugin-syntax-import-assertions" "^7.23.3" + "@babel/plugin-syntax-import-attributes" "^7.23.3" "@babel/plugin-syntax-import-meta" "^7.10.4" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" @@ -1111,59 +1077,58 @@ "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-syntax-top-level-await" "^7.14.5" "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" - "@babel/plugin-transform-arrow-functions" "^7.22.5" - "@babel/plugin-transform-async-generator-functions" "^7.22.15" - "@babel/plugin-transform-async-to-generator" "^7.22.5" - "@babel/plugin-transform-block-scoped-functions" "^7.22.5" - "@babel/plugin-transform-block-scoping" "^7.22.15" - "@babel/plugin-transform-class-properties" "^7.22.5" - "@babel/plugin-transform-class-static-block" "^7.22.11" - "@babel/plugin-transform-classes" "^7.22.15" - "@babel/plugin-transform-computed-properties" "^7.22.5" - "@babel/plugin-transform-destructuring" "^7.22.15" - "@babel/plugin-transform-dotall-regex" "^7.22.5" - "@babel/plugin-transform-duplicate-keys" "^7.22.5" - "@babel/plugin-transform-dynamic-import" "^7.22.11" - "@babel/plugin-transform-exponentiation-operator" "^7.22.5" - "@babel/plugin-transform-export-namespace-from" "^7.22.11" - "@babel/plugin-transform-for-of" "^7.22.15" - "@babel/plugin-transform-function-name" "^7.22.5" - "@babel/plugin-transform-json-strings" "^7.22.11" - "@babel/plugin-transform-literals" "^7.22.5" - "@babel/plugin-transform-logical-assignment-operators" "^7.22.11" - "@babel/plugin-transform-member-expression-literals" "^7.22.5" - "@babel/plugin-transform-modules-amd" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.22.15" - "@babel/plugin-transform-modules-systemjs" "^7.22.11" - "@babel/plugin-transform-modules-umd" "^7.22.5" + "@babel/plugin-transform-arrow-functions" "^7.23.3" + "@babel/plugin-transform-async-generator-functions" "^7.23.4" + "@babel/plugin-transform-async-to-generator" "^7.23.3" + "@babel/plugin-transform-block-scoped-functions" "^7.23.3" + "@babel/plugin-transform-block-scoping" "^7.23.4" + "@babel/plugin-transform-class-properties" "^7.23.3" + "@babel/plugin-transform-class-static-block" "^7.23.4" + "@babel/plugin-transform-classes" "^7.23.5" + "@babel/plugin-transform-computed-properties" "^7.23.3" + "@babel/plugin-transform-destructuring" "^7.23.3" + "@babel/plugin-transform-dotall-regex" "^7.23.3" + "@babel/plugin-transform-duplicate-keys" "^7.23.3" + "@babel/plugin-transform-dynamic-import" "^7.23.4" + "@babel/plugin-transform-exponentiation-operator" "^7.23.3" + "@babel/plugin-transform-export-namespace-from" "^7.23.4" + "@babel/plugin-transform-for-of" "^7.23.3" + "@babel/plugin-transform-function-name" "^7.23.3" + "@babel/plugin-transform-json-strings" "^7.23.4" + "@babel/plugin-transform-literals" "^7.23.3" + "@babel/plugin-transform-logical-assignment-operators" "^7.23.4" + "@babel/plugin-transform-member-expression-literals" "^7.23.3" + "@babel/plugin-transform-modules-amd" "^7.23.3" + "@babel/plugin-transform-modules-commonjs" "^7.23.3" + "@babel/plugin-transform-modules-systemjs" "^7.23.3" + "@babel/plugin-transform-modules-umd" "^7.23.3" "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" - "@babel/plugin-transform-new-target" "^7.22.5" - "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.11" - "@babel/plugin-transform-numeric-separator" "^7.22.11" - "@babel/plugin-transform-object-rest-spread" "^7.22.15" - "@babel/plugin-transform-object-super" "^7.22.5" - "@babel/plugin-transform-optional-catch-binding" "^7.22.11" - "@babel/plugin-transform-optional-chaining" "^7.22.15" - "@babel/plugin-transform-parameters" "^7.22.15" - "@babel/plugin-transform-private-methods" "^7.22.5" - "@babel/plugin-transform-private-property-in-object" "^7.22.11" - "@babel/plugin-transform-property-literals" "^7.22.5" - "@babel/plugin-transform-regenerator" "^7.22.10" - "@babel/plugin-transform-reserved-words" "^7.22.5" - "@babel/plugin-transform-shorthand-properties" "^7.22.5" - "@babel/plugin-transform-spread" "^7.22.5" - "@babel/plugin-transform-sticky-regex" "^7.22.5" - "@babel/plugin-transform-template-literals" "^7.22.5" - "@babel/plugin-transform-typeof-symbol" "^7.22.5" - "@babel/plugin-transform-unicode-escapes" "^7.22.10" - "@babel/plugin-transform-unicode-property-regex" "^7.22.5" - "@babel/plugin-transform-unicode-regex" "^7.22.5" - "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" + "@babel/plugin-transform-new-target" "^7.23.3" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.23.4" + "@babel/plugin-transform-numeric-separator" "^7.23.4" + "@babel/plugin-transform-object-rest-spread" "^7.23.4" + "@babel/plugin-transform-object-super" "^7.23.3" + "@babel/plugin-transform-optional-catch-binding" "^7.23.4" + "@babel/plugin-transform-optional-chaining" "^7.23.4" + "@babel/plugin-transform-parameters" "^7.23.3" + "@babel/plugin-transform-private-methods" "^7.23.3" + "@babel/plugin-transform-private-property-in-object" "^7.23.4" + "@babel/plugin-transform-property-literals" "^7.23.3" + "@babel/plugin-transform-regenerator" "^7.23.3" + "@babel/plugin-transform-reserved-words" "^7.23.3" + "@babel/plugin-transform-shorthand-properties" "^7.23.3" + "@babel/plugin-transform-spread" "^7.23.3" + "@babel/plugin-transform-sticky-regex" "^7.23.3" + "@babel/plugin-transform-template-literals" "^7.23.3" + "@babel/plugin-transform-typeof-symbol" "^7.23.3" + "@babel/plugin-transform-unicode-escapes" "^7.23.3" + "@babel/plugin-transform-unicode-property-regex" "^7.23.3" + "@babel/plugin-transform-unicode-regex" "^7.23.3" + "@babel/plugin-transform-unicode-sets-regex" "^7.23.3" "@babel/preset-modules" "0.1.6-no-external-plugins" - "@babel/types" "^7.22.19" - babel-plugin-polyfill-corejs2 "^0.4.5" - babel-plugin-polyfill-corejs3 "^0.8.3" - babel-plugin-polyfill-regenerator "^0.5.2" + babel-plugin-polyfill-corejs2 "^0.4.6" + babel-plugin-polyfill-corejs3 "^0.8.5" + babel-plugin-polyfill-regenerator "^0.5.3" core-js-compat "^3.31.0" semver "^6.3.1" @@ -1176,57 +1141,50 @@ "@babel/types" "^7.4.4" esutils "^2.0.2" -"@babel/preset-react@^7.18.6": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.22.15.tgz#9a776892b648e13cc8ca2edf5ed1264eea6b6afc" - integrity sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w== +"@babel/preset-react@^7.18.6", "@babel/preset-react@^7.22.5": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.23.3.tgz#f73ca07e7590f977db07eb54dbe46538cc015709" + integrity sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-validator-option" "^7.22.15" - "@babel/plugin-transform-react-display-name" "^7.22.5" + "@babel/plugin-transform-react-display-name" "^7.23.3" "@babel/plugin-transform-react-jsx" "^7.22.15" "@babel/plugin-transform-react-jsx-development" "^7.22.5" - "@babel/plugin-transform-react-pure-annotations" "^7.22.5" + "@babel/plugin-transform-react-pure-annotations" "^7.23.3" -"@babel/preset-typescript@^7.18.6": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.23.0.tgz#cc6602d13e7e5b2087c811912b87cf937a9129d9" - integrity sha512-6P6VVa/NM/VlAYj5s2Aq/gdVg8FSENCg3wlZ6Qau9AcPaoF5LbN1nyGlR9DTRIw9PpxI94e+ReydsJHcjwAweg== +"@babel/preset-typescript@^7.18.6", "@babel/preset-typescript@^7.22.5": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz#14534b34ed5b6d435aa05f1ae1c5e7adcc01d913" + integrity sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-validator-option" "^7.22.15" - "@babel/plugin-syntax-jsx" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.23.0" - "@babel/plugin-transform-typescript" "^7.22.15" + "@babel/plugin-syntax-jsx" "^7.23.3" + "@babel/plugin-transform-modules-commonjs" "^7.23.3" + "@babel/plugin-transform-typescript" "^7.23.3" "@babel/regjsgen@^0.8.0": version "0.8.0" resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== -"@babel/runtime-corejs3@^7.18.6": - version "7.23.1" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.23.1.tgz#d03f5819f4ba81a21dd1f80edfb19983e9e20fc1" - integrity sha512-OKKfytwoc0tr7cDHwQm0RLVR3y+hDGFz3EPuvLNU/0fOeXJeKNIHj7ffNVFnncWt3sC58uyUCRSzf8nBQbyF6A== +"@babel/runtime-corejs3@^7.22.6": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.23.5.tgz#818778beea4f23d40b77b5ad213894404c14f3f3" + integrity sha512-7+ziVclejQTLYhXl+Oi1f6gTGD1XDCeLa4R472TNGQxb08zbEJ0OdNoh5Piz+57Ltmui6xR88BXR4gS3/Toslw== dependencies: core-js-pure "^3.30.2" regenerator-runtime "^0.14.0" -"@babel/runtime@7.9.6": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.6.tgz#a9102eb5cadedf3f31d08a9ecf294af7827ea29f" - integrity sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.6", "@babel/runtime@^7.20.13", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": - version "7.23.1" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.1.tgz#72741dc4d413338a91dcb044a86f3c0bc402646d" - integrity sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g== +"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.15.4", "@babel/runtime@^7.21.0", "@babel/runtime@^7.22.6", "@babel/runtime@^7.23.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.5.tgz#11edb98f8aeec529b82b211028177679144242db" + integrity sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w== dependencies: regenerator-runtime "^0.14.0" -"@babel/template@^7.12.7", "@babel/template@^7.22.15", "@babel/template@^7.22.5": +"@babel/template@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== @@ -1235,32 +1193,32 @@ "@babel/parser" "^7.22.15" "@babel/types" "^7.22.15" -"@babel/traverse@^7.12.9", "@babel/traverse@^7.18.8", "@babel/traverse@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.0.tgz#18196ddfbcf4ccea324b7f6d3ada00d8c5a99c53" - integrity sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw== +"@babel/traverse@^7.22.8", "@babel/traverse@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.5.tgz#f546bf9aba9ef2b042c0e00d245990c15508e7ec" + integrity sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w== dependencies: - "@babel/code-frame" "^7.22.13" - "@babel/generator" "^7.23.0" + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.5" "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-function-name" "^7.23.0" "@babel/helper-hoist-variables" "^7.22.5" "@babel/helper-split-export-declaration" "^7.22.6" - "@babel/parser" "^7.23.0" - "@babel/types" "^7.23.0" + "@babel/parser" "^7.23.5" + "@babel/types" "^7.23.5" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.12.7", "@babel/types@^7.20.0", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.4.4": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb" - integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg== +"@babel/types@^7.20.0", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.4", "@babel/types@^7.23.5", "@babel/types@^7.4.4": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.5.tgz#48d730a00c95109fa4393352705954d74fb5b602" + integrity sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w== dependencies: - "@babel/helper-string-parser" "^7.22.5" + "@babel/helper-string-parser" "^7.23.4" "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" -"@braintree/sanitize-url@^6.0.0": +"@braintree/sanitize-url@^6.0.1": version "6.0.4" resolved "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-6.0.4.tgz#923ca57e173c6b232bbbb07347b1be982f03e783" integrity sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A== @@ -1270,174 +1228,165 @@ resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== -"@commitlint/cli@17.7.2": - version "17.7.2" - resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-17.7.2.tgz#3a0287373224db14968ab160b2b4988c693d3400" - integrity sha512-t3N7TZq7lOeqTOyEgfGcaltHqEJf7YDlPg75MldeVPPyz14jZq/+mbGF9tueDLFX8R6RwdymrN6D+U5XwZ8Iwg== - dependencies: - "@commitlint/format" "^17.4.4" - "@commitlint/lint" "^17.7.0" - "@commitlint/load" "^17.7.2" - "@commitlint/read" "^17.5.1" - "@commitlint/types" "^17.4.4" +"@commitlint/cli@18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-18.4.3.tgz#5b6112035f2cb17b76244cde5f1587ab853c2365" + integrity sha512-zop98yfB3A6NveYAZ3P1Mb6bIXuCeWgnUfVNkH4yhIMQpQfzFwseadazOuSn0OOfTt0lWuFauehpm9GcqM5lww== + dependencies: + "@commitlint/format" "^18.4.3" + "@commitlint/lint" "^18.4.3" + "@commitlint/load" "^18.4.3" + "@commitlint/read" "^18.4.3" + "@commitlint/types" "^18.4.3" execa "^5.0.0" lodash.isfunction "^3.0.9" resolve-from "5.0.0" resolve-global "1.0.0" yargs "^17.0.0" -"@commitlint/config-conventional@17.7.0": - version "17.7.0" - resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-17.7.0.tgz#1bbf2bce7851db63c1a8aa8d924277ad4938247e" - integrity sha512-iicqh2o6et+9kWaqsQiEYZzfLbtoWv9uZl8kbI8EGfnc0HeGafQBF7AJ0ylN9D/2kj6txltsdyQs8+2fTMwWEw== +"@commitlint/config-conventional@18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/config-conventional/-/config-conventional-18.4.3.tgz#8158e6bd874a86ff46a6424f45acd803bc5fef1b" + integrity sha512-729eRRaNta7JZF07qf6SAGSghoDEp9mH7yHU0m7ff0q89W97wDrWCyZ3yoV3mcQJwbhlmVmZPTkPcm7qiAu8WA== dependencies: - conventional-changelog-conventionalcommits "^6.1.0" + conventional-changelog-conventionalcommits "^7.0.2" -"@commitlint/config-validator@^17.6.7": - version "17.6.7" - resolved "https://registry.yarnpkg.com/@commitlint/config-validator/-/config-validator-17.6.7.tgz#c664d42a1ecf5040a3bb0843845150f55734df41" - integrity sha512-vJSncmnzwMvpr3lIcm0I8YVVDJTzyjy7NZAeXbTXy+MPUdAr9pKyyg7Tx/ebOQ9kqzE6O9WT6jg2164br5UdsQ== +"@commitlint/config-validator@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/config-validator/-/config-validator-18.4.3.tgz#cf71d36383cd5241e3b74097e7110514d5d43860" + integrity sha512-FPZZmTJBARPCyef9ohRC9EANiQEKSWIdatx5OlgeHKu878dWwpyeFauVkhzuBRJFcCA4Uvz/FDtlDKs008IHcA== dependencies: - "@commitlint/types" "^17.4.4" + "@commitlint/types" "^18.4.3" ajv "^8.11.0" -"@commitlint/ensure@^17.6.7": - version "17.6.7" - resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-17.6.7.tgz#77a77a0c05e6a1c34589f59e82e6cb937101fc4b" - integrity sha512-mfDJOd1/O/eIb/h4qwXzUxkmskXDL9vNPnZ4AKYKiZALz4vHzwMxBSYtyL2mUIDeU9DRSpEUins8SeKtFkYHSw== +"@commitlint/ensure@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-18.4.3.tgz#1193a6418fe05edc8d5eff91f3129db345fa1d38" + integrity sha512-MI4fwD9TWDVn4plF5+7JUyLLbkOdzIRBmVeNlk4dcGlkrVA+/l5GLcpN66q9LkFsFv6G2X31y89ApA3hqnqIFg== dependencies: - "@commitlint/types" "^17.4.4" + "@commitlint/types" "^18.4.3" lodash.camelcase "^4.3.0" lodash.kebabcase "^4.1.1" lodash.snakecase "^4.1.1" lodash.startcase "^4.4.0" lodash.upperfirst "^4.3.1" -"@commitlint/execute-rule@^17.4.0": - version "17.4.0" - resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-17.4.0.tgz#4518e77958893d0a5835babe65bf87e2638f6939" - integrity sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA== +"@commitlint/execute-rule@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-18.4.3.tgz#4dca5412dc8fdeb4210432961f209d9eb65008f5" + integrity sha512-t7FM4c+BdX9WWZCPrrbV5+0SWLgT3kCq7e7/GhHCreYifg3V8qyvO127HF796vyFql75n4TFF+5v1asOOWkV1Q== -"@commitlint/format@^17.4.4": - version "17.4.4" - resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-17.4.4.tgz#0f6e1b4d7a301c7b1dfd4b6334edd97fc050b9f5" - integrity sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ== +"@commitlint/format@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-18.4.3.tgz#3478bc2980eb178e13881834e290f12362ec6357" + integrity sha512-8b+ItXYHxAhRAXFfYki5PpbuMMOmXYuzLxib65z2XTqki59YDQJGpJ/wB1kEE5MQDgSTQWtKUrA8n9zS/1uIDQ== dependencies: - "@commitlint/types" "^17.4.4" + "@commitlint/types" "^18.4.3" chalk "^4.1.0" -"@commitlint/is-ignored@^17.7.0": - version "17.7.0" - resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-17.7.0.tgz#df9b284420bdb1aed5fdb2be44f4e98cc4826014" - integrity sha512-043rA7m45tyEfW7Zv2vZHF++176MLHH9h70fnPoYlB1slKBeKl8BwNIlnPg4xBdRBVNPaCqvXxWswx2GR4c9Hw== +"@commitlint/is-ignored@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-18.4.3.tgz#443e1791af9a13a62299c54f836ad25da42f2663" + integrity sha512-ZseOY9UfuAI32h9w342Km4AIaTieeFskm2ZKdrG7r31+c6zGBzuny9KQhwI9puc0J3GkUquEgKJblCl7pMnjwg== dependencies: - "@commitlint/types" "^17.4.4" + "@commitlint/types" "^18.4.3" semver "7.5.4" -"@commitlint/lint@^17.7.0": - version "17.7.0" - resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-17.7.0.tgz#33f831298dc43679e4de6b088aea63d1f884c7e7" - integrity sha512-TCQihm7/uszA5z1Ux1vw+Nf3yHTgicus/+9HiUQk+kRSQawByxZNESeQoX9ujfVd3r4Sa+3fn0JQAguG4xvvbA== - dependencies: - "@commitlint/is-ignored" "^17.7.0" - "@commitlint/parse" "^17.7.0" - "@commitlint/rules" "^17.7.0" - "@commitlint/types" "^17.4.4" - -"@commitlint/load@>6.1.1", "@commitlint/load@^17.7.2": - version "17.7.2" - resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-17.7.2.tgz#85730900a501c50f0bc890bb50e4a2167ee3085a" - integrity sha512-XA7WTnsjHZ4YH6ZYsrnxgLdXzriwMMq+utZUET6spbOEEIPBCDLdOQXS26P+v3TTO4hUHOEhzUquaBv3jbBixw== - dependencies: - "@commitlint/config-validator" "^17.6.7" - "@commitlint/execute-rule" "^17.4.0" - "@commitlint/resolve-extends" "^17.6.7" - "@commitlint/types" "^17.4.4" - "@types/node" "20.5.1" +"@commitlint/lint@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-18.4.3.tgz#1c5a912c2c3785e21d499821c4b70c58ff9a2cfb" + integrity sha512-18u3MRgEXNbnYkMOWoncvq6QB8/90m9TbERKgdPqVvS+zQ/MsuRhdvHYCIXGXZxUb0YI4DV2PC4bPneBV/fYuA== + dependencies: + "@commitlint/is-ignored" "^18.4.3" + "@commitlint/parse" "^18.4.3" + "@commitlint/rules" "^18.4.3" + "@commitlint/types" "^18.4.3" + +"@commitlint/load@>6.1.1", "@commitlint/load@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-18.4.3.tgz#de156698ddf6e9719ecc49159890834490f61bff" + integrity sha512-v6j2WhvRQJrcJaj5D+EyES2WKTxPpxENmNpNG3Ww8MZGik3jWRXtph0QTzia5ZJyPh2ib5aC/6BIDymkUUM58Q== + dependencies: + "@commitlint/config-validator" "^18.4.3" + "@commitlint/execute-rule" "^18.4.3" + "@commitlint/resolve-extends" "^18.4.3" + "@commitlint/types" "^18.4.3" + "@types/node" "^18.11.9" chalk "^4.1.0" - cosmiconfig "^8.0.0" - cosmiconfig-typescript-loader "^4.0.0" + cosmiconfig "^8.3.6" + cosmiconfig-typescript-loader "^5.0.0" lodash.isplainobject "^4.0.6" lodash.merge "^4.6.2" lodash.uniq "^4.5.0" resolve-from "^5.0.0" - ts-node "^10.8.1" - typescript "^4.6.4 || ^5.0.0" - -"@commitlint/message@^17.4.2": - version "17.4.2" - resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-17.4.2.tgz#f4753a79701ad6db6db21f69076e34de6580e22c" - integrity sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q== - -"@commitlint/parse@^17.7.0": - version "17.7.0" - resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-17.7.0.tgz#aacb2d189e50ab8454154b1df150aaf20478ae47" - integrity sha512-dIvFNUMCUHqq5Abv80mIEjLVfw8QNuA4DS7OWip4pcK/3h5wggmjVnlwGCDvDChkw2TjK1K6O+tAEV78oxjxag== - dependencies: - "@commitlint/types" "^17.4.4" - conventional-changelog-angular "^6.0.0" - conventional-commits-parser "^4.0.0" - -"@commitlint/read@^17.5.1": - version "17.5.1" - resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-17.5.1.tgz#fec903b766e2c41e3cefa80630040fcaba4f786c" - integrity sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg== - dependencies: - "@commitlint/top-level" "^17.4.0" - "@commitlint/types" "^17.4.4" + +"@commitlint/message@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-18.4.3.tgz#1e0985ae7c751a620f01b2cfe8f0e875354805e2" + integrity sha512-ddJ7AztWUIoEMAXoewx45lKEYEOeOlBVWjk8hDMUGpprkuvWULpaXczqdjwVtjrKT3JhhN+gMs8pm5G3vB2how== + +"@commitlint/parse@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-18.4.3.tgz#f96515b0fa9b7a05dca52be8b214ab50eadfd9c9" + integrity sha512-eoH7CXM9L+/Me96KVcfJ27EIIbA5P9sqw3DqjJhRYuhaULIsPHFs5S5GBDCqT0vKZQDx0DgxhMpW6AQbnKrFtA== + dependencies: + "@commitlint/types" "^18.4.3" + conventional-changelog-angular "^7.0.0" + conventional-commits-parser "^5.0.0" + +"@commitlint/read@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-18.4.3.tgz#269fb814bb914bf23c8719690bd01c9ad4a6c09a" + integrity sha512-H4HGxaYA6OBCimZAtghL+B+SWu8ep4X7BwgmedmqWZRHxRLcX2q0bWBtUm5FsMbluxbOfrJwOs/Z0ah4roP/GQ== + dependencies: + "@commitlint/top-level" "^18.4.3" + "@commitlint/types" "^18.4.3" fs-extra "^11.0.0" git-raw-commits "^2.0.11" minimist "^1.2.6" -"@commitlint/resolve-extends@^17.6.7": - version "17.6.7" - resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-17.6.7.tgz#9c53a4601c96ab2dd20b90fb35c988639307735d" - integrity sha512-PfeoAwLHtbOaC9bGn/FADN156CqkFz6ZKiVDMjuC2N5N0740Ke56rKU7Wxdwya8R8xzLK9vZzHgNbuGhaOVKIg== +"@commitlint/resolve-extends@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-18.4.3.tgz#741c42381ea48f4624209bfc0da0a15b5fba75b5" + integrity sha512-30sk04LZWf8+SDgJrbJCjM90gTg2LxsD9cykCFeFu+JFHvBFq5ugzp2eO/DJGylAdVaqxej3c7eTSE64hR/lnw== dependencies: - "@commitlint/config-validator" "^17.6.7" - "@commitlint/types" "^17.4.4" + "@commitlint/config-validator" "^18.4.3" + "@commitlint/types" "^18.4.3" import-fresh "^3.0.0" lodash.mergewith "^4.6.2" resolve-from "^5.0.0" resolve-global "^1.0.0" -"@commitlint/rules@^17.7.0": - version "17.7.0" - resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-17.7.0.tgz#b97a4933c5cba11a659a19ee467f6f000f31533e" - integrity sha512-J3qTh0+ilUE5folSaoK91ByOb8XeQjiGcdIdiB/8UT1/Rd1itKo0ju/eQVGyFzgTMYt8HrDJnGTmNWwcMR1rmA== +"@commitlint/rules@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-18.4.3.tgz#2ae1f16ea1ede20e01ca81ad187fdc65ccc9a5f1" + integrity sha512-8KIeukDf45BiY+Lul1T0imSNXF0sMrlLG6JpLLKolkmYVQ6PxxoNOriwyZ3UTFFpaVbPy0rcITaV7U9JCAfDTA== dependencies: - "@commitlint/ensure" "^17.6.7" - "@commitlint/message" "^17.4.2" - "@commitlint/to-lines" "^17.4.0" - "@commitlint/types" "^17.4.4" + "@commitlint/ensure" "^18.4.3" + "@commitlint/message" "^18.4.3" + "@commitlint/to-lines" "^18.4.3" + "@commitlint/types" "^18.4.3" execa "^5.0.0" -"@commitlint/to-lines@^17.4.0": - version "17.4.0" - resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-17.4.0.tgz#9bd02e911e7d4eab3fb4a50376c4c6d331e10d8d" - integrity sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg== +"@commitlint/to-lines@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-18.4.3.tgz#b6cac1eff3d93f0791791a9f8db7b13c6136a350" + integrity sha512-fy1TAleik4Zfru1RJ8ZU6cOSvgSVhUellxd3WZV1D5RwHZETt1sZdcA4mQN2y3VcIZsUNKkW0Mq8CM9/L9harQ== -"@commitlint/top-level@^17.4.0": - version "17.4.0" - resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-17.4.0.tgz#540cac8290044cf846fbdd99f5cc51e8ac5f27d6" - integrity sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g== +"@commitlint/top-level@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-18.4.3.tgz#f4c6fb8ab98de9240c3ed3e4b330d8c50a0fee3a" + integrity sha512-E6fJPBLPFL5R8+XUNSYkj4HekIOuGMyJo3mIx2PkYc3clel+pcWQ7TConqXxNWW4x1ugigiIY2RGot55qUq1hw== dependencies: find-up "^5.0.0" -"@commitlint/types@^17.4.4": - version "17.4.4" - resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-17.4.4.tgz#1416df936e9aad0d6a7bbc979ecc31e55dade662" - integrity sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ== +"@commitlint/types@^18.4.3": + version "18.4.3" + resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-18.4.3.tgz#bb50de49330ddff2adcc8ccabb840c8e660336b3" + integrity sha512-cvzx+vtY/I2hVBZHCLrpoh+sA0hfuzHwDc+BAFPimYLjJkpHnghQM+z8W/KyLGkygJh3BtI3xXXq+dKjnSWEmA== dependencies: chalk "^4.1.0" -"@cspotcode/source-map-support@^0.8.0": - version "0.8.1" - resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" - integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== - dependencies: - "@jridgewell/trace-mapping" "0.3.9" - "@discoveryjs/json-ext@0.5.7": version "0.5.7" resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" @@ -1448,7 +1397,7 @@ resolved "https://registry.yarnpkg.com/@docsearch/css/-/css-3.5.2.tgz#610f47b48814ca94041df969d9fcc47b91fc5aac" integrity sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA== -"@docsearch/react@^3.1.1": +"@docsearch/react@^3.5.2": version "3.5.2" resolved "https://registry.yarnpkg.com/@docsearch/react/-/react-3.5.2.tgz#2e6bbee00eb67333b64906352734da6aef1232b9" integrity sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng== @@ -1458,92 +1407,90 @@ "@docsearch/css" "3.5.2" algoliasearch "^4.19.1" -"@docusaurus/core@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/core/-/core-2.4.3.tgz#d86624901386fd8164ce4bff9cc7f16fde57f523" - integrity sha512-dWH5P7cgeNSIg9ufReX6gaCl/TmrGKD38Orbwuz05WPhAQtFXHd5B8Qym1TiXfvUNvwoYKkAJOJuGe8ou0Z7PA== +"@docusaurus/core@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/core/-/core-3.0.1.tgz#ad9a66b20802ea81b25e65db75d4ca952eda7e01" + integrity sha512-CXrLpOnW+dJdSv8M5FAJ3JBwXtL6mhUWxFA8aS0ozK6jBG/wgxERk5uvH28fCeFxOGbAT9v1e9dOMo1X2IEVhQ== dependencies: - "@babel/core" "^7.18.6" - "@babel/generator" "^7.18.7" + "@babel/core" "^7.23.3" + "@babel/generator" "^7.23.3" "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-transform-runtime" "^7.18.6" - "@babel/preset-env" "^7.18.6" - "@babel/preset-react" "^7.18.6" - "@babel/preset-typescript" "^7.18.6" - "@babel/runtime" "^7.18.6" - "@babel/runtime-corejs3" "^7.18.6" - "@babel/traverse" "^7.18.8" - "@docusaurus/cssnano-preset" "2.4.3" - "@docusaurus/logger" "2.4.3" - "@docusaurus/mdx-loader" "2.4.3" + "@babel/plugin-transform-runtime" "^7.22.9" + "@babel/preset-env" "^7.22.9" + "@babel/preset-react" "^7.22.5" + "@babel/preset-typescript" "^7.22.5" + "@babel/runtime" "^7.22.6" + "@babel/runtime-corejs3" "^7.22.6" + "@babel/traverse" "^7.22.8" + "@docusaurus/cssnano-preset" "3.0.1" + "@docusaurus/logger" "3.0.1" + "@docusaurus/mdx-loader" "3.0.1" "@docusaurus/react-loadable" "5.5.2" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-common" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" + "@docusaurus/utils" "3.0.1" + "@docusaurus/utils-common" "3.0.1" + "@docusaurus/utils-validation" "3.0.1" "@slorber/static-site-generator-webpack-plugin" "^4.0.7" - "@svgr/webpack" "^6.2.1" - autoprefixer "^10.4.7" - babel-loader "^8.2.5" + "@svgr/webpack" "^6.5.1" + autoprefixer "^10.4.14" + babel-loader "^9.1.3" babel-plugin-dynamic-import-node "^2.3.3" boxen "^6.2.1" chalk "^4.1.2" chokidar "^3.5.3" - clean-css "^5.3.0" - cli-table3 "^0.6.2" + clean-css "^5.3.2" + cli-table3 "^0.6.3" combine-promises "^1.1.0" commander "^5.1.0" copy-webpack-plugin "^11.0.0" - core-js "^3.23.3" - css-loader "^6.7.1" - css-minimizer-webpack-plugin "^4.0.0" - cssnano "^5.1.12" + core-js "^3.31.1" + css-loader "^6.8.1" + css-minimizer-webpack-plugin "^4.2.2" + cssnano "^5.1.15" del "^6.1.1" - detect-port "^1.3.0" + detect-port "^1.5.1" escape-html "^1.0.3" - eta "^2.0.0" + eta "^2.2.0" file-loader "^6.2.0" - fs-extra "^10.1.0" - html-minifier-terser "^6.1.0" - html-tags "^3.2.0" - html-webpack-plugin "^5.5.0" - import-fresh "^3.3.0" + fs-extra "^11.1.1" + html-minifier-terser "^7.2.0" + html-tags "^3.3.1" + html-webpack-plugin "^5.5.3" leven "^3.1.0" lodash "^4.17.21" - mini-css-extract-plugin "^2.6.1" - postcss "^8.4.14" - postcss-loader "^7.0.0" + mini-css-extract-plugin "^2.7.6" + postcss "^8.4.26" + postcss-loader "^7.3.3" prompts "^2.4.2" react-dev-utils "^12.0.1" react-helmet-async "^1.3.0" react-loadable "npm:@docusaurus/react-loadable@5.5.2" react-loadable-ssr-addon-v5-slorber "^1.0.1" - react-router "^5.3.3" + react-router "^5.3.4" react-router-config "^5.1.1" - react-router-dom "^5.3.3" + react-router-dom "^5.3.4" rtl-detect "^1.0.4" - semver "^7.3.7" - serve-handler "^6.1.3" + semver "^7.5.4" + serve-handler "^6.1.5" shelljs "^0.8.5" - terser-webpack-plugin "^5.3.3" - tslib "^2.4.0" - update-notifier "^5.1.0" + terser-webpack-plugin "^5.3.9" + tslib "^2.6.0" + update-notifier "^6.0.2" url-loader "^4.1.1" - wait-on "^6.0.1" - webpack "^5.73.0" - webpack-bundle-analyzer "^4.5.0" - webpack-dev-server "^4.9.3" - webpack-merge "^5.8.0" + webpack "^5.88.1" + webpack-bundle-analyzer "^4.9.0" + webpack-dev-server "^4.15.1" + webpack-merge "^5.9.0" webpackbar "^5.0.2" -"@docusaurus/cssnano-preset@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/cssnano-preset/-/cssnano-preset-2.4.3.tgz#1d7e833c41ce240fcc2812a2ac27f7b862f32de0" - integrity sha512-ZvGSRCi7z9wLnZrXNPG6DmVPHdKGd8dIn9pYbEOFiYihfv4uDR3UtxogmKf+rT8ZlKFf5Lqne8E8nt08zNM8CA== +"@docusaurus/cssnano-preset@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/cssnano-preset/-/cssnano-preset-3.0.1.tgz#22fbf2e97389e338747864baf011743846e8fd26" + integrity sha512-wjuXzkHMW+ig4BD6Ya1Yevx9UJadO4smNZCEljqBoQfIQrQskTswBs7lZ8InHP7mCt273a/y/rm36EZhqJhknQ== dependencies: - cssnano-preset-advanced "^5.3.8" - postcss "^8.4.14" - postcss-sort-media-queries "^4.2.1" - tslib "^2.4.0" + cssnano-preset-advanced "^5.3.10" + postcss "^8.4.26" + postcss-sort-media-queries "^4.4.1" + tslib "^2.6.0" "@docusaurus/logger@2.4.3": version "2.4.3" @@ -1553,36 +1500,53 @@ chalk "^4.1.2" tslib "^2.4.0" -"@docusaurus/mdx-loader@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/mdx-loader/-/mdx-loader-2.4.3.tgz#e8ff37f30a060eaa97b8121c135f74cb531a4a3e" - integrity sha512-b1+fDnWtl3GiqkL0BRjYtc94FZrcDDBV1j8446+4tptB9BAOlePwG2p/pK6vGvfL53lkOsszXMghr2g67M0vCw== +"@docusaurus/logger@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/logger/-/logger-3.0.1.tgz#06f512eef6c6ae4e2da63064257e01b1cdc41a82" + integrity sha512-I5L6Nk8OJzkVA91O2uftmo71LBSxe1vmOn9AMR6JRCzYeEBrqneWMH02AqMvjJ2NpMiviO+t0CyPjyYV7nxCWQ== dependencies: - "@babel/parser" "^7.18.8" - "@babel/traverse" "^7.18.8" - "@docusaurus/logger" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@mdx-js/mdx" "^1.6.22" + chalk "^4.1.2" + tslib "^2.6.0" + +"@docusaurus/mdx-loader@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/mdx-loader/-/mdx-loader-3.0.1.tgz#89f221e5bcc570983fd61d7ab56d6fbe36810b59" + integrity sha512-ldnTmvnvlrONUq45oKESrpy+lXtbnTcTsFkOTIDswe5xx5iWJjt6eSa0f99ZaWlnm24mlojcIGoUWNCS53qVlQ== + dependencies: + "@babel/parser" "^7.22.7" + "@babel/traverse" "^7.22.8" + "@docusaurus/logger" "3.0.1" + "@docusaurus/utils" "3.0.1" + "@docusaurus/utils-validation" "3.0.1" + "@mdx-js/mdx" "^3.0.0" + "@slorber/remark-comment" "^1.0.0" escape-html "^1.0.3" + estree-util-value-to-estree "^3.0.1" file-loader "^6.2.0" - fs-extra "^10.1.0" - image-size "^1.0.1" - mdast-util-to-string "^2.0.0" - remark-emoji "^2.2.0" + fs-extra "^11.1.1" + image-size "^1.0.2" + mdast-util-mdx "^3.0.0" + mdast-util-to-string "^4.0.0" + rehype-raw "^7.0.0" + remark-directive "^3.0.0" + remark-emoji "^4.0.0" + remark-frontmatter "^5.0.0" + remark-gfm "^4.0.0" stringify-object "^3.3.0" - tslib "^2.4.0" - unified "^9.2.2" - unist-util-visit "^2.0.3" + tslib "^2.6.0" + unified "^11.0.3" + unist-util-visit "^5.0.0" url-loader "^4.1.1" - webpack "^5.73.0" + vfile "^6.0.1" + webpack "^5.88.1" -"@docusaurus/module-type-aliases@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/module-type-aliases/-/module-type-aliases-2.4.3.tgz#d08ef67e4151e02f352a2836bcf9ecde3b9c56ac" - integrity sha512-cwkBkt1UCiduuvEAo7XZY01dJfRn7UR/75mBgOdb1hKknhrabJZ8YH+7savd/y9kLExPyrhe0QwdS9GuzsRRIA== +"@docusaurus/module-type-aliases@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/module-type-aliases/-/module-type-aliases-3.0.1.tgz#d45990fe377d7ffaa68841cf89401188a5d65293" + integrity sha512-DEHpeqUDsLynl3AhQQiO7AbC7/z/lBra34jTcdYuvp9eGm01pfH1wTVq8YqWZq6Jyx0BgcVl/VJqtE9StRd9Ag== dependencies: "@docusaurus/react-loadable" "5.5.2" - "@docusaurus/types" "2.4.3" + "@docusaurus/types" "3.0.1" "@types/history" "^4.7.11" "@types/react" "*" "@types/react-router-config" "*" @@ -1590,163 +1554,165 @@ react-helmet-async "*" react-loadable "npm:@docusaurus/react-loadable@5.5.2" -"@docusaurus/plugin-content-blog@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-blog/-/plugin-content-blog-2.4.3.tgz#6473b974acab98e967414d8bbb0d37e0cedcea14" - integrity sha512-PVhypqaA0t98zVDpOeTqWUTvRqCEjJubtfFUQ7zJNYdbYTbS/E/ytq6zbLVsN/dImvemtO/5JQgjLxsh8XLo8Q== - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/logger" "2.4.3" - "@docusaurus/mdx-loader" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-common" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" +"@docusaurus/plugin-content-blog@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.0.1.tgz#dee6147187c2d8b634252444d60312d12c9571a6" + integrity sha512-cLOvtvAyaMQFLI8vm4j26svg3ktxMPSXpuUJ7EERKoGbfpJSsgtowNHcRsaBVmfuCsRSk1HZ/yHBsUkTmHFEsg== + dependencies: + "@docusaurus/core" "3.0.1" + "@docusaurus/logger" "3.0.1" + "@docusaurus/mdx-loader" "3.0.1" + "@docusaurus/types" "3.0.1" + "@docusaurus/utils" "3.0.1" + "@docusaurus/utils-common" "3.0.1" + "@docusaurus/utils-validation" "3.0.1" cheerio "^1.0.0-rc.12" feed "^4.2.2" - fs-extra "^10.1.0" + fs-extra "^11.1.1" lodash "^4.17.21" reading-time "^1.5.0" - tslib "^2.4.0" - unist-util-visit "^2.0.3" + srcset "^4.0.0" + tslib "^2.6.0" + unist-util-visit "^5.0.0" utility-types "^3.10.0" - webpack "^5.73.0" + webpack "^5.88.1" -"@docusaurus/plugin-content-docs@2.4.3", "@docusaurus/plugin-content-docs@>=2.3.0 <2.5.0": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-docs/-/plugin-content-docs-2.4.3.tgz#aa224c0512351e81807adf778ca59fd9cd136973" - integrity sha512-N7Po2LSH6UejQhzTCsvuX5NOzlC+HiXOVvofnEPj0WhMu1etpLEXE6a4aTxrtg95lQ5kf0xUIdjX9sh3d3G76A== - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/logger" "2.4.3" - "@docusaurus/mdx-loader" "2.4.3" - "@docusaurus/module-type-aliases" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - "@types/react-router-config" "^5.0.6" +"@docusaurus/plugin-content-docs@3.0.1", "@docusaurus/plugin-content-docs@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.0.1.tgz#d9b1884562186573d5c4521ac3546b68512c1126" + integrity sha512-dRfAOA5Ivo+sdzzJGXEu33yAtvGg8dlZkvt/NEJ7nwi1F2j4LEdsxtfX2GKeETB2fP6XoGNSQnFXqa2NYGrHFg== + dependencies: + "@docusaurus/core" "3.0.1" + "@docusaurus/logger" "3.0.1" + "@docusaurus/mdx-loader" "3.0.1" + "@docusaurus/module-type-aliases" "3.0.1" + "@docusaurus/types" "3.0.1" + "@docusaurus/utils" "3.0.1" + "@docusaurus/utils-validation" "3.0.1" + "@types/react-router-config" "^5.0.7" combine-promises "^1.1.0" - fs-extra "^10.1.0" - import-fresh "^3.3.0" + fs-extra "^11.1.1" js-yaml "^4.1.0" lodash "^4.17.21" - tslib "^2.4.0" + tslib "^2.6.0" utility-types "^3.10.0" - webpack "^5.73.0" + webpack "^5.88.1" -"@docusaurus/plugin-content-pages@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-pages/-/plugin-content-pages-2.4.3.tgz#7f285e718b53da8c8d0101e70840c75b9c0a1ac0" - integrity sha512-txtDVz7y3zGk67q0HjG0gRttVPodkHqE0bpJ+7dOaTH40CQFLSh7+aBeGnPOTl+oCPG+hxkim4SndqPqXjQ8Bg== - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/mdx-loader" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - fs-extra "^10.1.0" - tslib "^2.4.0" - webpack "^5.73.0" +"@docusaurus/plugin-content-pages@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.0.1.tgz#27e6424c77173f867760efe53f848bbab8849ea6" + integrity sha512-oP7PoYizKAXyEttcvVzfX3OoBIXEmXTMzCdfmC4oSwjG4SPcJsRge3mmI6O8jcZBgUPjIzXD21bVGWEE1iu8gg== + dependencies: + "@docusaurus/core" "3.0.1" + "@docusaurus/mdx-loader" "3.0.1" + "@docusaurus/types" "3.0.1" + "@docusaurus/utils" "3.0.1" + "@docusaurus/utils-validation" "3.0.1" + fs-extra "^11.1.1" + tslib "^2.6.0" + webpack "^5.88.1" -"@docusaurus/plugin-debug@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-debug/-/plugin-debug-2.4.3.tgz#2f90eb0c9286a9f225444e3a88315676fe02c245" - integrity sha512-LkUbuq3zCmINlFb+gAd4ZvYr+bPAzMC0hwND4F7V9bZ852dCX8YoWyovVUBKq4er1XsOwSQaHmNGtObtn8Av8Q== - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils" "2.4.3" - fs-extra "^10.1.0" - react-json-view "^1.21.3" - tslib "^2.4.0" +"@docusaurus/plugin-debug@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-debug/-/plugin-debug-3.0.1.tgz#886b5dd03c066e970484ca251c1b79613df90700" + integrity sha512-09dxZMdATky4qdsZGzhzlUvvC+ilQ2hKbYF+wez+cM2mGo4qHbv8+qKXqxq0CQZyimwlAOWQLoSozIXU0g0i7g== + dependencies: + "@docusaurus/core" "3.0.1" + "@docusaurus/types" "3.0.1" + "@docusaurus/utils" "3.0.1" + fs-extra "^11.1.1" + react-json-view-lite "^1.2.0" + tslib "^2.6.0" -"@docusaurus/plugin-google-analytics@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-2.4.3.tgz#0d19993136ade6f7a7741251b4f617400d92ab45" - integrity sha512-KzBV3k8lDkWOhg/oYGxlK5o9bOwX7KpPc/FTWoB+SfKhlHfhq7qcQdMi1elAaVEIop8tgK6gD1E58Q+XC6otSQ== +"@docusaurus/plugin-google-analytics@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.0.1.tgz#ec69902131ea3aad8b062eeb1d17bf0962986f80" + integrity sha512-jwseSz1E+g9rXQwDdr0ZdYNjn8leZBnKPjjQhMBEiwDoenL3JYFcNW0+p0sWoVF/f2z5t7HkKA+cYObrUh18gg== dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - tslib "^2.4.0" + "@docusaurus/core" "3.0.1" + "@docusaurus/types" "3.0.1" + "@docusaurus/utils-validation" "3.0.1" + tslib "^2.6.0" -"@docusaurus/plugin-google-gtag@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-2.4.3.tgz#e1a80b0696771b488562e5b60eff21c9932d9e1c" - integrity sha512-5FMg0rT7sDy4i9AGsvJC71MQrqQZwgLNdDetLEGDHLfSHLvJhQbTCUGbGXknUgWXQJckcV/AILYeJy+HhxeIFA== +"@docusaurus/plugin-google-gtag@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.0.1.tgz#bb5526377d3a324ebec235127846fda386562b05" + integrity sha512-UFTDvXniAWrajsulKUJ1DB6qplui1BlKLQZjX4F7qS/qfJ+qkKqSkhJ/F4VuGQ2JYeZstYb+KaUzUzvaPK1aRQ== dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - tslib "^2.4.0" + "@docusaurus/core" "3.0.1" + "@docusaurus/types" "3.0.1" + "@docusaurus/utils-validation" "3.0.1" + "@types/gtag.js" "^0.0.12" + tslib "^2.6.0" -"@docusaurus/plugin-google-tag-manager@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-2.4.3.tgz#e41fbf79b0ffc2de1cc4013eb77798cff0ad98e3" - integrity sha512-1jTzp71yDGuQiX9Bi0pVp3alArV0LSnHXempvQTxwCGAEzUWWaBg4d8pocAlTpbP9aULQQqhgzrs8hgTRPOM0A== +"@docusaurus/plugin-google-tag-manager@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.0.1.tgz#4e36d13279cf90c2614b62438aa1109dd4696ec8" + integrity sha512-IPFvuz83aFuheZcWpTlAdiiX1RqWIHM+OH8wS66JgwAKOiQMR3+nLywGjkLV4bp52x7nCnwhNk1rE85Cpy/CIw== dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - tslib "^2.4.0" + "@docusaurus/core" "3.0.1" + "@docusaurus/types" "3.0.1" + "@docusaurus/utils-validation" "3.0.1" + tslib "^2.6.0" -"@docusaurus/plugin-pwa@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-pwa/-/plugin-pwa-2.4.3.tgz#01a5fd9f37a94fb16c1187d9553ad3ab34d1f3d3" - integrity sha512-D/3F/tBMmcvPWgDxE4Oc6q7kO0hbMAqO6gGSqYJ4wNKpgZdFyDhURsep97k03UUojn/Oe/SDls+0D/Omopd0tQ== - dependencies: - "@babel/core" "^7.18.6" - "@babel/preset-env" "^7.18.6" - "@docusaurus/core" "2.4.3" - "@docusaurus/theme-common" "2.4.3" - "@docusaurus/theme-translations" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - babel-loader "^8.2.5" - clsx "^1.2.1" - core-js "^3.23.3" - terser-webpack-plugin "^5.3.3" - tslib "^2.4.0" - webpack "^5.73.0" - webpack-merge "^5.8.0" - workbox-build "^6.5.3" - workbox-precaching "^6.5.3" - workbox-window "^6.5.3" +"@docusaurus/plugin-pwa@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-pwa/-/plugin-pwa-3.0.1.tgz#c267b090602fdc684f3951280ac6963b2b7393ed" + integrity sha512-KC9Axpw7NOB2RiW/28jq56Q8o6CLXo2pqo/b513g9WTqYkSCadm43inIEo7bSiyXaOTWvhW1f5H5jUEU4wM8LA== + dependencies: + "@babel/core" "^7.23.3" + "@babel/preset-env" "^7.23.3" + "@docusaurus/core" "3.0.1" + "@docusaurus/theme-common" "3.0.1" + "@docusaurus/theme-translations" "3.0.1" + "@docusaurus/types" "3.0.1" + "@docusaurus/utils" "3.0.1" + "@docusaurus/utils-validation" "3.0.1" + babel-loader "^9.1.3" + clsx "^2.0.0" + core-js "^3.31.1" + terser-webpack-plugin "^5.3.9" + tslib "^2.6.0" + webpack "^5.88.1" + webpack-merge "^5.9.0" + webpackbar "^5.0.2" + workbox-build "^6.6.1" + workbox-precaching "^6.6.1" + workbox-window "^6.6.1" -"@docusaurus/plugin-sitemap@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-sitemap/-/plugin-sitemap-2.4.3.tgz#1b3930900a8f89670ce7e8f83fb4730cd3298c32" - integrity sha512-LRQYrK1oH1rNfr4YvWBmRzTL0LN9UAPxBbghgeFRBm5yloF6P+zv1tm2pe2hQTX/QP5bSKdnajCvfnScgKXMZQ== - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/logger" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-common" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - fs-extra "^10.1.0" +"@docusaurus/plugin-sitemap@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.0.1.tgz#ab55857e90d4500f892e110b30e4bc3289202bd4" + integrity sha512-xARiWnjtVvoEniZudlCq5T9ifnhCu/GAZ5nA7XgyLfPcNpHQa241HZdsTlLtVcecEVVdllevBKOp7qknBBaMGw== + dependencies: + "@docusaurus/core" "3.0.1" + "@docusaurus/logger" "3.0.1" + "@docusaurus/types" "3.0.1" + "@docusaurus/utils" "3.0.1" + "@docusaurus/utils-common" "3.0.1" + "@docusaurus/utils-validation" "3.0.1" + fs-extra "^11.1.1" sitemap "^7.1.1" - tslib "^2.4.0" + tslib "^2.6.0" -"@docusaurus/preset-classic@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/preset-classic/-/preset-classic-2.4.3.tgz#074c57ebf29fa43d23bd1c8ce691226f542bc262" - integrity sha512-tRyMliepY11Ym6hB1rAFSNGwQDpmszvWYJvlK1E+md4SW8i6ylNHtpZjaYFff9Mdk3i/Pg8ItQq9P0daOJAvQw== - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/plugin-content-blog" "2.4.3" - "@docusaurus/plugin-content-docs" "2.4.3" - "@docusaurus/plugin-content-pages" "2.4.3" - "@docusaurus/plugin-debug" "2.4.3" - "@docusaurus/plugin-google-analytics" "2.4.3" - "@docusaurus/plugin-google-gtag" "2.4.3" - "@docusaurus/plugin-google-tag-manager" "2.4.3" - "@docusaurus/plugin-sitemap" "2.4.3" - "@docusaurus/theme-classic" "2.4.3" - "@docusaurus/theme-common" "2.4.3" - "@docusaurus/theme-search-algolia" "2.4.3" - "@docusaurus/types" "2.4.3" +"@docusaurus/preset-classic@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/preset-classic/-/preset-classic-3.0.1.tgz#d363ac837bba967095ed2a896d13c54f3717d6b5" + integrity sha512-il9m9xZKKjoXn6h0cRcdnt6wce0Pv1y5t4xk2Wx7zBGhKG1idu4IFHtikHlD0QPuZ9fizpXspXcTzjL5FXc1Gw== + dependencies: + "@docusaurus/core" "3.0.1" + "@docusaurus/plugin-content-blog" "3.0.1" + "@docusaurus/plugin-content-docs" "3.0.1" + "@docusaurus/plugin-content-pages" "3.0.1" + "@docusaurus/plugin-debug" "3.0.1" + "@docusaurus/plugin-google-analytics" "3.0.1" + "@docusaurus/plugin-google-gtag" "3.0.1" + "@docusaurus/plugin-google-tag-manager" "3.0.1" + "@docusaurus/plugin-sitemap" "3.0.1" + "@docusaurus/theme-classic" "3.0.1" + "@docusaurus/theme-common" "3.0.1" + "@docusaurus/theme-search-algolia" "3.0.1" + "@docusaurus/types" "3.0.1" "@docusaurus/react-loadable@5.5.2", "react-loadable@npm:@docusaurus/react-loadable@5.5.2": version "5.5.2" @@ -1756,125 +1722,139 @@ "@types/react" "*" prop-types "^15.6.2" -"@docusaurus/theme-classic@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-classic/-/theme-classic-2.4.3.tgz#29360f2eb03a0e1686eb19668633ef313970ee8f" - integrity sha512-QKRAJPSGPfDY2yCiPMIVyr+MqwZCIV2lxNzqbyUW0YkrlmdzzP3WuQJPMGLCjWgQp/5c9kpWMvMxjhpZx1R32Q== - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/mdx-loader" "2.4.3" - "@docusaurus/module-type-aliases" "2.4.3" - "@docusaurus/plugin-content-blog" "2.4.3" - "@docusaurus/plugin-content-docs" "2.4.3" - "@docusaurus/plugin-content-pages" "2.4.3" - "@docusaurus/theme-common" "2.4.3" - "@docusaurus/theme-translations" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-common" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - "@mdx-js/react" "^1.6.22" - clsx "^1.2.1" - copy-text-to-clipboard "^3.0.1" +"@docusaurus/theme-classic@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-classic/-/theme-classic-3.0.1.tgz#3ba4dc77553d2c1608e433c0d01bed7c6db14eb9" + integrity sha512-XD1FRXaJiDlmYaiHHdm27PNhhPboUah9rqIH0lMpBt5kYtsGjJzhqa27KuZvHLzOP2OEpqd2+GZ5b6YPq7Q05Q== + dependencies: + "@docusaurus/core" "3.0.1" + "@docusaurus/mdx-loader" "3.0.1" + "@docusaurus/module-type-aliases" "3.0.1" + "@docusaurus/plugin-content-blog" "3.0.1" + "@docusaurus/plugin-content-docs" "3.0.1" + "@docusaurus/plugin-content-pages" "3.0.1" + "@docusaurus/theme-common" "3.0.1" + "@docusaurus/theme-translations" "3.0.1" + "@docusaurus/types" "3.0.1" + "@docusaurus/utils" "3.0.1" + "@docusaurus/utils-common" "3.0.1" + "@docusaurus/utils-validation" "3.0.1" + "@mdx-js/react" "^3.0.0" + clsx "^2.0.0" + copy-text-to-clipboard "^3.2.0" infima "0.2.0-alpha.43" lodash "^4.17.21" nprogress "^0.2.0" - postcss "^8.4.14" - prism-react-renderer "^1.3.5" - prismjs "^1.28.0" - react-router-dom "^5.3.3" - rtlcss "^3.5.0" - tslib "^2.4.0" + postcss "^8.4.26" + prism-react-renderer "^2.3.0" + prismjs "^1.29.0" + react-router-dom "^5.3.4" + rtlcss "^4.1.0" + tslib "^2.6.0" utility-types "^3.10.0" -"@docusaurus/theme-common@2.4.3", "@docusaurus/theme-common@>=2.3.0 <2.5.0": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-common/-/theme-common-2.4.3.tgz#bb31d70b6b67d0bdef9baa343192dcec49946a2e" - integrity sha512-7KaDJBXKBVGXw5WOVt84FtN8czGWhM0lbyWEZXGp8AFfL6sZQfRTluFp4QriR97qwzSyOfQb+nzcDZZU4tezUw== - dependencies: - "@docusaurus/mdx-loader" "2.4.3" - "@docusaurus/module-type-aliases" "2.4.3" - "@docusaurus/plugin-content-blog" "2.4.3" - "@docusaurus/plugin-content-docs" "2.4.3" - "@docusaurus/plugin-content-pages" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-common" "2.4.3" +"@docusaurus/theme-common@3.0.1", "@docusaurus/theme-common@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-common/-/theme-common-3.0.1.tgz#29a5bcb286296a52bc10afa5308e360cbed6b49c" + integrity sha512-cr9TOWXuIOL0PUfuXv6L5lPlTgaphKP+22NdVBOYah5jSq5XAAulJTjfe+IfLsEG4L7lJttLbhW7LXDFSAI7Ag== + dependencies: + "@docusaurus/mdx-loader" "3.0.1" + "@docusaurus/module-type-aliases" "3.0.1" + "@docusaurus/plugin-content-blog" "3.0.1" + "@docusaurus/plugin-content-docs" "3.0.1" + "@docusaurus/plugin-content-pages" "3.0.1" + "@docusaurus/utils" "3.0.1" + "@docusaurus/utils-common" "3.0.1" "@types/history" "^4.7.11" "@types/react" "*" "@types/react-router-config" "*" - clsx "^1.2.1" + clsx "^2.0.0" parse-numeric-range "^1.3.0" - prism-react-renderer "^1.3.5" - tslib "^2.4.0" - use-sync-external-store "^1.2.0" + prism-react-renderer "^2.3.0" + tslib "^2.6.0" utility-types "^3.10.0" -"@docusaurus/theme-mermaid@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-mermaid/-/theme-mermaid-2.4.3.tgz#b40194fb4f46813a18d1350a188d43b68a8192dd" - integrity sha512-S1tZ3xpowtFiTrpTKmvVbRHUYGOlEG5CnPzWlO4huJT1sAwLR+pD6f9DYUlPv2+9NezF3EfUrUyW9xLH0UP58w== - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/module-type-aliases" "2.4.3" - "@docusaurus/theme-common" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - "@mdx-js/react" "^1.6.22" - mermaid "^9.2.2" - tslib "^2.4.0" +"@docusaurus/theme-mermaid@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-mermaid/-/theme-mermaid-3.0.1.tgz#a8e3db9f8ccb680f0a4359e2b0f6427f52223c15" + integrity sha512-jquSDnZfazABnC5i+02GzRIvufXKruKgvbYkQjKbI7/LWo0XvBs0uKAcCDGgHhth0t/ON5+Sn27joRfpeSk3Lw== + dependencies: + "@docusaurus/core" "3.0.1" + "@docusaurus/module-type-aliases" "3.0.1" + "@docusaurus/theme-common" "3.0.1" + "@docusaurus/types" "3.0.1" + "@docusaurus/utils-validation" "3.0.1" + mermaid "^10.4.0" + tslib "^2.6.0" -"@docusaurus/theme-search-algolia@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-search-algolia/-/theme-search-algolia-2.4.3.tgz#32d4cbefc3deba4112068fbdb0bde11ac51ece53" - integrity sha512-jziq4f6YVUB5hZOB85ELATwnxBz/RmSLD3ksGQOLDPKVzat4pmI8tddNWtriPpxR04BNT+ZfpPUMFkNFetSW1Q== - dependencies: - "@docsearch/react" "^3.1.1" - "@docusaurus/core" "2.4.3" - "@docusaurus/logger" "2.4.3" - "@docusaurus/plugin-content-docs" "2.4.3" - "@docusaurus/theme-common" "2.4.3" - "@docusaurus/theme-translations" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - algoliasearch "^4.13.1" - algoliasearch-helper "^3.10.0" - clsx "^1.2.1" - eta "^2.0.0" - fs-extra "^10.1.0" +"@docusaurus/theme-search-algolia@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.0.1.tgz#d8fb6bddca8d8355e4706c4c7d30d3b800217cf4" + integrity sha512-DDiPc0/xmKSEdwFkXNf1/vH1SzJPzuJBar8kMcBbDAZk/SAmo/4lf6GU2drou4Ae60lN2waix+jYWTWcJRahSA== + dependencies: + "@docsearch/react" "^3.5.2" + "@docusaurus/core" "3.0.1" + "@docusaurus/logger" "3.0.1" + "@docusaurus/plugin-content-docs" "3.0.1" + "@docusaurus/theme-common" "3.0.1" + "@docusaurus/theme-translations" "3.0.1" + "@docusaurus/utils" "3.0.1" + "@docusaurus/utils-validation" "3.0.1" + algoliasearch "^4.18.0" + algoliasearch-helper "^3.13.3" + clsx "^2.0.0" + eta "^2.2.0" + fs-extra "^11.1.1" lodash "^4.17.21" - tslib "^2.4.0" + tslib "^2.6.0" utility-types "^3.10.0" -"@docusaurus/theme-translations@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-translations/-/theme-translations-2.4.3.tgz#91ac73fc49b8c652b7a54e88b679af57d6ac6102" - integrity sha512-H4D+lbZbjbKNS/Zw1Lel64PioUAIT3cLYYJLUf3KkuO/oc9e0QCVhIYVtUI2SfBCF2NNdlyhBDQEEMygsCedIg== +"@docusaurus/theme-translations@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-translations/-/theme-translations-3.0.1.tgz#837a01a166ccd698a3eceaed0c2f798555bc024b" + integrity sha512-6UrbpzCTN6NIJnAtZ6Ne9492vmPVX+7Fsz4kmp+yor3KQwA1+MCzQP7ItDNkP38UmVLnvB/cYk/IvehCUqS3dg== dependencies: - fs-extra "^10.1.0" - tslib "^2.4.0" + fs-extra "^11.1.1" + tslib "^2.6.0" -"@docusaurus/types@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/types/-/types-2.4.3.tgz#4aead281ca09f721b3c0a9b926818450cfa3db31" - integrity sha512-W6zNLGQqfrp/EoPD0bhb9n7OobP+RHpmvVzpA+Z/IuU3Q63njJM24hmT0GYboovWcDtFmnIJC9wcyx4RVPQscw== +"@docusaurus/tsconfig@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/tsconfig/-/tsconfig-3.0.1.tgz#170f230c34ff12e55995bd7e9f1f21db33035d8f" + integrity sha512-hT2HCdNE3pWTzXV/7cSsowfmaOxXVOTFOXmkqaYjBWjaxjJ3FO0nHbdJ8rF6Da7PvWmIPbUekdP5gep1XCJ7Vg== + +"@docusaurus/types@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/types/-/types-3.0.1.tgz#4fe306aa10ef7c97dbc07588864f6676a40f3b6f" + integrity sha512-plyX2iU1tcUsF46uQ01pAd4JhexR7n0iiQ5MSnBFX6M6NSJgDYdru/i1/YNPKOnQHBoXGLHv0dNT6OAlDWNjrg== dependencies: "@types/history" "^4.7.11" "@types/react" "*" commander "^5.1.0" - joi "^17.6.0" + joi "^17.9.2" react-helmet-async "^1.3.0" utility-types "^3.10.0" - webpack "^5.73.0" - webpack-merge "^5.8.0" + webpack "^5.88.1" + webpack-merge "^5.9.0" -"@docusaurus/utils-common@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/utils-common/-/utils-common-2.4.3.tgz#30656c39ef1ce7e002af7ba39ea08330f58efcfb" - integrity sha512-/jascp4GbLQCPVmcGkPzEQjNaAk3ADVfMtudk49Ggb+131B1WDD6HqlSmDf8MxGdy7Dja2gc+StHf01kiWoTDQ== +"@docusaurus/utils-common@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/utils-common/-/utils-common-3.0.1.tgz#111f450089d5f0a290c0c25f8a574a270d08436f" + integrity sha512-W0AxD6w6T8g6bNro8nBRWf7PeZ/nn7geEWM335qHU2DDDjHuV4UZjgUGP1AQsdcSikPrlIqTJJbKzer1lRSlIg== dependencies: - tslib "^2.4.0" + tslib "^2.6.0" -"@docusaurus/utils-validation@2.4.3", "@docusaurus/utils-validation@>=2.3.0 <2.5.0", "@docusaurus/utils-validation@^2.2.0": +"@docusaurus/utils-validation@3.0.1", "@docusaurus/utils-validation@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/utils-validation/-/utils-validation-3.0.1.tgz#3c5f12941b328a19fc9acb34d070219f3e865ec6" + integrity sha512-ujTnqSfyGQ7/4iZdB4RRuHKY/Nwm58IIb+41s5tCXOv/MBU2wGAjOHq3U+AEyJ8aKQcHbxvTKJaRchNHYUVUQg== + dependencies: + "@docusaurus/logger" "3.0.1" + "@docusaurus/utils" "3.0.1" + joi "^17.9.2" + js-yaml "^4.1.0" + tslib "^2.6.0" + +"@docusaurus/utils-validation@^2.2.0": version "2.4.3" resolved "https://registry.yarnpkg.com/@docusaurus/utils-validation/-/utils-validation-2.4.3.tgz#8122c394feef3e96c73f6433987837ec206a63fb" integrity sha512-G2+Vt3WR5E/9drAobP+hhZQMaswRwDlp6qOMi7o7ZypB+VO7N//DZWhZEwhcRGepMDJGQEwtPv7UxtYwPL9PBw== @@ -1885,7 +1865,7 @@ js-yaml "^4.1.0" tslib "^2.4.0" -"@docusaurus/utils@2.4.3", "@docusaurus/utils@>=2.3.0 <2.5.0": +"@docusaurus/utils@2.4.3": version "2.4.3" resolved "https://registry.yarnpkg.com/@docusaurus/utils/-/utils-2.4.3.tgz#52b000d989380a2125831b84e3a7327bef471e89" integrity sha512-fKcXsjrD86Smxv8Pt0TBFqYieZZCPh4cbf9oszUq/AMhZn3ujwpKaVYZACPX8mmjtYx0JOgNx52CREBfiGQB4A== @@ -1907,6 +1887,29 @@ url-loader "^4.1.1" webpack "^5.73.0" +"@docusaurus/utils@3.0.1", "@docusaurus/utils@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@docusaurus/utils/-/utils-3.0.1.tgz#c64f68980a90c5bc6d53a5b8f32deb9026b1e303" + integrity sha512-TwZ33Am0q4IIbvjhUOs+zpjtD/mXNmLmEgeTGuRq01QzulLHuPhaBTTAC/DHu6kFx3wDgmgpAlaRuCHfTcXv8g== + dependencies: + "@docusaurus/logger" "3.0.1" + "@svgr/webpack" "^6.5.1" + escape-string-regexp "^4.0.0" + file-loader "^6.2.0" + fs-extra "^11.1.1" + github-slugger "^1.5.0" + globby "^11.1.0" + gray-matter "^4.0.3" + jiti "^1.20.0" + js-yaml "^4.1.0" + lodash "^4.17.21" + micromatch "^4.0.5" + resolve-pathname "^3.0.0" + shelljs "^0.8.5" + tslib "^2.6.0" + url-loader "^4.1.1" + webpack "^5.88.1" + "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": version "4.4.0" resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" @@ -1914,15 +1917,15 @@ dependencies: eslint-visitor-keys "^3.3.0" -"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.5.0", "@eslint-community/regexpp@^4.5.1", "@eslint-community/regexpp@^4.6.1": - version "4.9.1" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.9.1.tgz#449dfa81a57a1d755b09aa58d826c1262e4283b4" - integrity sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA== +"@eslint-community/regexpp@^4.5.1", "@eslint-community/regexpp@^4.6.1", "@eslint-community/regexpp@^4.8.0", "@eslint-community/regexpp@^4.9.1": + version "4.10.0" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63" + integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA== -"@eslint/eslintrc@^2.1.2": - version "2.1.2" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.2.tgz#c6936b4b328c64496692f76944e755738be62396" - integrity sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g== +"@eslint/eslintrc@^2.1.4": + version "2.1.4" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" + integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== dependencies: ajv "^6.12.4" debug "^4.3.2" @@ -1934,77 +1937,70 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@8.50.0": - version "8.50.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.50.0.tgz#9e93b850f0f3fa35f5fa59adfd03adae8488e484" - integrity sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ== +"@eslint/js@8.55.0": + version "8.55.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.55.0.tgz#b721d52060f369aa259cf97392403cb9ce892ec6" + integrity sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA== "@exodus/schemasafe@^1.0.0-rc.2": version "1.3.0" resolved "https://registry.yarnpkg.com/@exodus/schemasafe/-/schemasafe-1.3.0.tgz#731656abe21e8e769a7f70a4d833e6312fe59b7f" integrity sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw== -"@fec/remark-a11y-emoji@3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@fec/remark-a11y-emoji/-/remark-a11y-emoji-3.1.0.tgz#765ead0e26b6f06878f246c6e920a6edf0a5dc08" - integrity sha512-cYjCutvrValbQ2dykKhEE6OBTsEGpAJzeJnDtGKXhk2JYkMNSlKPnUk/kRFHH+PHmrAF+FlNIU28XKD+nYy7jQ== +"@fec/remark-a11y-emoji@4.0.2": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@fec/remark-a11y-emoji/-/remark-a11y-emoji-4.0.2.tgz#14e217e11e91fefebc30e9189367e7996a1fd825" + integrity sha512-Au3jSkt66PRwTKTCYm7KzTGfMzUmn1LYPK+cyrytfzjfOPkHpohrLcGYPLsgxV8nzc4vXxt3Ay7MlBrmeIfFLg== dependencies: - emoji-regex "^9.2.0" + emoji-regex "^10.0.0" gemoji "^6.1.0" - mdast-util-find-and-replace "^1.0.0" + mdast-util-find-and-replace "^1.1.1" unist-util-visit "^2.0.3" -"@formatjs/ecma402-abstract@1.17.2": - version "1.17.2" - resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.17.2.tgz#d197c6e26b9fd96ff7ba3b3a0cc2f25f1f2dcac3" - integrity sha512-k2mTh0m+IV1HRdU0xXM617tSQTi53tVR2muvYOsBeYcUgEAyxV1FOC7Qj279th3fBVQ+Dj6muvNJZcHSPNdbKg== - dependencies: - "@formatjs/intl-localematcher" "0.4.2" - tslib "^2.4.0" - -"@formatjs/fast-memoize@2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@formatjs/fast-memoize/-/fast-memoize-2.2.0.tgz#33bd616d2e486c3e8ef4e68c99648c196887802b" - integrity sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA== +"@formatjs/ecma402-abstract@1.18.0": + version "1.18.0" + resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.18.0.tgz#e2120e7101020140661b58430a7ff4262705a2f2" + integrity sha512-PEVLoa3zBevWSCZzPIM/lvPCi8P5l4G+NXQMc/CjEiaCWgyHieUoo0nM7Bs0n/NbuQ6JpXEolivQ9pKSBHaDlA== dependencies: + "@formatjs/intl-localematcher" "0.5.2" tslib "^2.4.0" -"@formatjs/icu-messageformat-parser@2.6.2": - version "2.6.2" - resolved "https://registry.yarnpkg.com/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.6.2.tgz#9bbb29099416e4ce2c7df50029c48985d4f901b3" - integrity sha512-nF/Iww7sc5h+1MBCDRm68qpHTCG4xvGzYs/x9HFcDETSGScaJ1Fcadk5U/NXjXeCtzD+DhN4BAwKFVclHfKMdA== +"@formatjs/icu-messageformat-parser@2.7.3": + version "2.7.3" + resolved "https://registry.yarnpkg.com/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.7.3.tgz#c8c95e7c9f8141bdb93bea0e92e4fcace19d3c9f" + integrity sha512-X/jy10V9S/vW+qlplqhMUxR8wErQ0mmIYSq4mrjpjDl9mbuGcCILcI1SUYkL5nlM4PJqpc0KOS0bFkkJNPxYRw== dependencies: - "@formatjs/ecma402-abstract" "1.17.2" - "@formatjs/icu-skeleton-parser" "1.6.2" + "@formatjs/ecma402-abstract" "1.18.0" + "@formatjs/icu-skeleton-parser" "1.7.0" tslib "^2.4.0" -"@formatjs/icu-skeleton-parser@1.6.2": - version "1.6.2" - resolved "https://registry.yarnpkg.com/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.6.2.tgz#00303034dc08583973c8aa67b96534c49c0bad8d" - integrity sha512-VtB9Slo4ZL6QgtDFJ8Injvscf0xiDd4bIV93SOJTBjUF4xe2nAWOoSjLEtqIG+hlIs1sNrVKAaFo3nuTI4r5ZA== +"@formatjs/icu-skeleton-parser@1.7.0": + version "1.7.0" + resolved "https://registry.yarnpkg.com/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.7.0.tgz#796938d6d0ba8fc75bb9edee038d1350bfee32cb" + integrity sha512-Cfdo/fgbZzpN/jlN/ptQVe0lRHora+8ezrEeg2RfrNjyp+YStwBy7cqDY8k5/z2LzXg6O0AdzAV91XS0zIWv+A== dependencies: - "@formatjs/ecma402-abstract" "1.17.2" + "@formatjs/ecma402-abstract" "1.18.0" tslib "^2.4.0" -"@formatjs/intl-localematcher@0.4.2": - version "0.4.2" - resolved "https://registry.yarnpkg.com/@formatjs/intl-localematcher/-/intl-localematcher-0.4.2.tgz#7e6e596dbaf2f0c5a7c22da5a01d5c55f4c37e9a" - integrity sha512-BGdtJFmaNJy5An/Zan4OId/yR9Ih1OojFjcduX/xOvq798OgWSyDtd6Qd5jqJXwJs1ipe4Fxu9+cshic5Ox2tA== +"@formatjs/intl-localematcher@0.5.2": + version "0.5.2" + resolved "https://registry.yarnpkg.com/@formatjs/intl-localematcher/-/intl-localematcher-0.5.2.tgz#5fcf029fd218905575e5080fa33facdcb623d532" + integrity sha512-txaaE2fiBMagLrR4jYhxzFO6wEdEG4TPMqrzBAcbr4HFUYzH/YC+lg6OIzKCHm8WgDdyQevxbAAV1OgcXctuGw== dependencies: tslib "^2.4.0" -"@formatjs/ts-transformer@3.13.5": - version "3.13.5" - resolved "https://registry.yarnpkg.com/@formatjs/ts-transformer/-/ts-transformer-3.13.5.tgz#8b4f5dcb02940e3f12b9f6c95b47f52777a9969d" - integrity sha512-dh2mmZqkId0UeM+FQtmwugpMGvyzTBmXj5LjwD4M5OeSm62tcgkScjqeO/1EetaNS/JkTUBbsFBnHzaDzh3yOw== +"@formatjs/ts-transformer@3.13.9": + version "3.13.9" + resolved "https://registry.yarnpkg.com/@formatjs/ts-transformer/-/ts-transformer-3.13.9.tgz#8b6f17b3b1abf9a76b5394ef2dfef0a27746127c" + integrity sha512-J3kmCHOwkc0Tru0ZnBHPVDIwHCcaNh/zB8ZU4VQFBH2jhaOku0drym/hjz+f9/PCKLutd3Q7alUi2+Z2VpBIng== dependencies: - "@formatjs/icu-messageformat-parser" "2.6.2" + "@formatjs/icu-messageformat-parser" "2.7.3" "@types/json-stable-stringify" "^1.0.32" "@types/node" "14 || 16 || 17" chalk "^4.0.0" json-stable-stringify "^1.0.1" tslib "^2.4.0" - typescript "^4.7 || 5" + typescript "5" "@hapi/hoek@^9.0.0": version "9.3.0" @@ -2023,12 +2019,12 @@ resolved "https://registry.yarnpkg.com/@hookform/error-message/-/error-message-2.0.1.tgz#6a37419106e13664ad6a29c9dae699ae6cd276b8" integrity sha512-U410sAr92xgxT1idlu9WWOVjndxLdgPUHEB8Schr27C9eh7/xUnITWpCMF93s+lGiG++D4JnbSnrb5A21AdSNg== -"@humanwhocodes/config-array@^0.11.11": - version "0.11.11" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.11.tgz#88a04c570dbbc7dd943e4712429c3df09bc32844" - integrity sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA== +"@humanwhocodes/config-array@^0.11.13": + version "0.11.13" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.13.tgz#075dc9684f40a531d9b26b0822153c1e832ee297" + integrity sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ== dependencies: - "@humanwhocodes/object-schema" "^1.2.1" + "@humanwhocodes/object-schema" "^2.0.1" debug "^4.1.1" minimatch "^3.0.5" @@ -2037,46 +2033,10 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== -"@humanwhocodes/object-schema@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" - integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== - -"@internationalized/date@3.0.0-rc.1": - version "3.0.0-rc.1" - resolved "https://registry.yarnpkg.com/@internationalized/date/-/date-3.0.0-rc.1.tgz#828f79517249ac65982ec760205089a98ec56555" - integrity sha512-IHc1NqUTA/fo9nf0pwRXrMjrabJ/9vTw5RIFAF3qS8JsdEGnw3dIyDb/+ipjEEqZyHVHHXwnqD8hKM18gGoWTg== - dependencies: - "@babel/runtime" "^7.6.2" - -"@internationalized/date@^3.5.0": - version "3.5.0" - resolved "https://registry.yarnpkg.com/@internationalized/date/-/date-3.5.0.tgz#67f1dd62355f05140cc80e324842e9bfb4553abe" - integrity sha512-nw0Q+oRkizBWMioseI8+2TeUPEyopJVz5YxoYVzR0W1v+2YytiYah7s/ot35F149q/xAg4F1gT/6eTd+tsUpFQ== - dependencies: - "@swc/helpers" "^0.5.0" - -"@internationalized/message@^3.0.7", "@internationalized/message@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@internationalized/message/-/message-3.1.1.tgz#0f29c5a239b5dcd457b55f21dcd38d1a44a1236a" - integrity sha512-ZgHxf5HAPIaR0th+w0RUD62yF6vxitjlprSxmLJ1tam7FOekqRSDELMg4Cr/DdszG5YLsp5BG3FgHgqquQZbqw== - dependencies: - "@swc/helpers" "^0.5.0" - intl-messageformat "^10.1.0" - -"@internationalized/number@^3.1.1", "@internationalized/number@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@internationalized/number/-/number-3.3.0.tgz#92233d130a0591085f93be86a9e6356cfa0e2de2" - integrity sha512-PuxgnKE5NJMOGKUcX1QROo8jq7sW7UWLrL5B6Rfe8BdWgU/be04cVvLyCeALD46vvbAv3d1mUvyHav/Q9a237g== - dependencies: - "@swc/helpers" "^0.5.0" - -"@internationalized/string@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@internationalized/string/-/string-3.1.1.tgz#2ab7372d58bbb7ffd3de62fc2a311e4690186981" - integrity sha512-fvSr6YRoVPgONiVIUhgCmIAlifMVCeej/snPZVzbzRPxGpHl3o1GRe+d/qh92D8KhgOciruDUH8I5mjdfdjzfA== - dependencies: - "@swc/helpers" "^0.5.0" +"@humanwhocodes/object-schema@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz#e5211452df060fa8522b55c7b3c0c4d1981cb044" + integrity sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw== "@jest/schemas@^29.6.3": version "29.6.3" @@ -2106,7 +2066,7 @@ "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/resolve-uri@^3.0.3", "@jridgewell/resolve-uri@^3.1.0": +"@jridgewell/resolve-uri@^3.1.0": version "3.1.1" resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== @@ -2129,18 +2089,10 @@ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@0.3.9": - version "0.3.9" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" - integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== - dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.19" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" - integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== + version "0.3.20" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f" + integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q== dependencies: "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" @@ -2155,75 +2107,41 @@ resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b" integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A== -"@mdx-js/mdx@^1.6.22": - version "1.6.22" - resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-1.6.22.tgz#8a723157bf90e78f17dc0f27995398e6c731f1ba" - integrity sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA== - dependencies: - "@babel/core" "7.12.9" - "@babel/plugin-syntax-jsx" "7.12.1" - "@babel/plugin-syntax-object-rest-spread" "7.8.3" - "@mdx-js/util" "1.6.22" - babel-plugin-apply-mdx-type-prop "1.6.22" - babel-plugin-extract-import-names "1.6.22" - camelcase-css "2.0.1" - detab "2.0.4" - hast-util-raw "6.0.1" - lodash.uniq "4.5.0" - mdast-util-to-hast "10.0.1" - remark-footnotes "2.0.0" - remark-mdx "1.6.22" - remark-parse "8.0.3" - remark-squeeze-paragraphs "4.0.0" - style-to-object "0.3.0" - unified "9.2.0" - unist-builder "2.0.3" - unist-util-visit "2.0.3" - -"@mdx-js/react@1.6.22", "@mdx-js/react@^1.6.22": - version "1.6.22" - resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-1.6.22.tgz#ae09b4744fddc74714ee9f9d6f17a66e77c43573" - integrity sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg== - -"@mdx-js/util@1.6.22": - version "1.6.22" - resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-1.6.22.tgz#219dfd89ae5b97a8801f015323ffa4b62f45718b" - integrity sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA== - -"@nextui-org/react@^1.0.0-beta.12": - version "1.0.0-beta.9-dbg2" - resolved "https://registry.yarnpkg.com/@nextui-org/react/-/react-1.0.0-beta.9-dbg2.tgz#ffbf02652076ae28410b74339cb90d2a6b2a2e09" - integrity sha512-ZmeMtvTZRT550hk2X/SBPYUNXFU9zRX0ZGkJtiXz8K1f2a7PQbYzz07GmeWcZ35SubdXMTspHiA0mGwprRHNKg== - dependencies: - "@babel/runtime" "7.9.6" - "@react-aria/button" "3.5.0" - "@react-aria/checkbox" "3.4.0" - "@react-aria/dialog" "3.2.0" - "@react-aria/focus" "3.6.0" - "@react-aria/i18n" "3.4.0" - "@react-aria/interactions" "3.9.0" - "@react-aria/label" "3.3.0" - "@react-aria/menu" "3.5.0" - "@react-aria/overlays" "3.9.0" - "@react-aria/radio" "3.2.0" - "@react-aria/ssr" "3.2.0" - "@react-aria/table" "3.3.0" - "@react-aria/utils" "3.13.0" - "@react-aria/visually-hidden" "3.3.0" - "@react-stately/checkbox" "3.1.0" - "@react-stately/data" "3.5.0" - "@react-stately/overlays" "3.3.0" - "@react-stately/radio" "3.4.0" - "@react-stately/table" "3.2.0" - "@react-stately/toggle" "3.3.0" - "@react-stately/tree" "3.3.0" - "@react-types/button" "^3.5.0" - "@react-types/checkbox" "3.3.0" - "@react-types/grid" "3.1.0" - "@react-types/menu" "3.6.0" - "@react-types/overlays" "3.6.0" - "@react-types/shared" "3.13.0" - "@stitches/react" "1.2.8" +"@mdx-js/mdx@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-3.0.0.tgz#37ef87685143fafedf1165f0a79e9fe95fbe5154" + integrity sha512-Icm0TBKBLYqroYbNW3BPnzMGn+7mwpQOK310aZ7+fkCtiU3aqv2cdcX+nd0Ydo3wI5Rx8bX2Z2QmGb/XcAClCw== + dependencies: + "@types/estree" "^1.0.0" + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/mdx" "^2.0.0" + collapse-white-space "^2.0.0" + devlop "^1.0.0" + estree-util-build-jsx "^3.0.0" + estree-util-is-identifier-name "^3.0.0" + estree-util-to-js "^2.0.0" + estree-walker "^3.0.0" + hast-util-to-estree "^3.0.0" + hast-util-to-jsx-runtime "^2.0.0" + markdown-extensions "^2.0.0" + periscopic "^3.0.0" + remark-mdx "^3.0.0" + remark-parse "^11.0.0" + remark-rehype "^11.0.0" + source-map "^0.7.0" + unified "^11.0.0" + unist-util-position-from-estree "^2.0.0" + unist-util-stringify-position "^4.0.0" + unist-util-visit "^5.0.0" + vfile "^6.0.0" + +"@mdx-js/react@3.0.0", "@mdx-js/react@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-3.0.0.tgz#eaccaa8d6a7736b19080aff5a70448a7ba692271" + integrity sha512-nDctevR9KyYFyV+m+/+S4cpzCWHqj+iHDHq3QrsWezcC+B17uZdIWgCguESUkwFhM3n/56KxWVE3V6EokrmONQ== + dependencies: + "@types/mdx" "^2.0.0" "@nodelib/fs.scandir@2.1.5": version "2.1.5" @@ -2246,74 +2164,71 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@octokit/auth-token@^3.0.0": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-3.0.4.tgz#70e941ba742bdd2b49bdb7393e821dea8520a3db" - integrity sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ== - -"@octokit/core@4.2.4": - version "4.2.4" - resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.2.4.tgz#d8769ec2b43ff37cc3ea89ec4681a20ba58ef907" - integrity sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ== - dependencies: - "@octokit/auth-token" "^3.0.0" - "@octokit/graphql" "^5.0.0" - "@octokit/request" "^6.0.0" - "@octokit/request-error" "^3.0.0" - "@octokit/types" "^9.0.0" +"@octokit/auth-token@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-4.0.0.tgz#40d203ea827b9f17f42a29c6afb93b7745ef80c7" + integrity sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA== + +"@octokit/core@5.0.2": + version "5.0.2" + resolved "https://registry.yarnpkg.com/@octokit/core/-/core-5.0.2.tgz#ae7c5d61fdd98ba348a27c3cc510879a130b1234" + integrity sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg== + dependencies: + "@octokit/auth-token" "^4.0.0" + "@octokit/graphql" "^7.0.0" + "@octokit/request" "^8.0.2" + "@octokit/request-error" "^5.0.0" + "@octokit/types" "^12.0.0" before-after-hook "^2.2.0" universal-user-agent "^6.0.0" -"@octokit/endpoint@^7.0.0": - version "7.0.6" - resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-7.0.6.tgz#791f65d3937555141fb6c08f91d618a7d645f1e2" - integrity sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg== +"@octokit/endpoint@^9.0.0": + version "9.0.4" + resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-9.0.4.tgz#8afda5ad1ffc3073d08f2b450964c610b821d1ea" + integrity sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw== dependencies: - "@octokit/types" "^9.0.0" - is-plain-object "^5.0.0" + "@octokit/types" "^12.0.0" universal-user-agent "^6.0.0" -"@octokit/graphql@^5.0.0": - version "5.0.6" - resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-5.0.6.tgz#9eac411ac4353ccc5d3fca7d76736e6888c5d248" - integrity sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw== +"@octokit/graphql@^7.0.0": + version "7.0.2" + resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-7.0.2.tgz#3df14b9968192f9060d94ed9e3aa9780a76e7f99" + integrity sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q== dependencies: - "@octokit/request" "^6.0.0" - "@octokit/types" "^9.0.0" + "@octokit/request" "^8.0.1" + "@octokit/types" "^12.0.0" universal-user-agent "^6.0.0" -"@octokit/openapi-types@^18.0.0": - version "18.1.1" - resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-18.1.1.tgz#09bdfdabfd8e16d16324326da5148010d765f009" - integrity sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw== +"@octokit/openapi-types@^19.1.0": + version "19.1.0" + resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-19.1.0.tgz#75ec7e64743870fc73e1ab4bc6ec252ecdd624dc" + integrity sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw== -"@octokit/request-error@^3.0.0": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-3.0.3.tgz#ef3dd08b8e964e53e55d471acfe00baa892b9c69" - integrity sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ== +"@octokit/request-error@^5.0.0": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-5.0.1.tgz#277e3ce3b540b41525e07ba24c5ef5e868a72db9" + integrity sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ== dependencies: - "@octokit/types" "^9.0.0" + "@octokit/types" "^12.0.0" deprecation "^2.0.0" once "^1.4.0" -"@octokit/request@^6.0.0": - version "6.2.8" - resolved "https://registry.yarnpkg.com/@octokit/request/-/request-6.2.8.tgz#aaf480b32ab2b210e9dadd8271d187c93171d8eb" - integrity sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw== +"@octokit/request@^8.0.1", "@octokit/request@^8.0.2": + version "8.1.6" + resolved "https://registry.yarnpkg.com/@octokit/request/-/request-8.1.6.tgz#a76a859c30421737a3918b40973c2ff369009571" + integrity sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ== dependencies: - "@octokit/endpoint" "^7.0.0" - "@octokit/request-error" "^3.0.0" - "@octokit/types" "^9.0.0" - is-plain-object "^5.0.0" - node-fetch "^2.6.7" + "@octokit/endpoint" "^9.0.0" + "@octokit/request-error" "^5.0.0" + "@octokit/types" "^12.0.0" universal-user-agent "^6.0.0" -"@octokit/types@^9.0.0": - version "9.3.2" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.3.2.tgz#3f5f89903b69f6a2d196d78ec35f888c0013cac5" - integrity sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA== +"@octokit/types@^12.0.0": + version "12.4.0" + resolved "https://registry.yarnpkg.com/@octokit/types/-/types-12.4.0.tgz#8f97b601e91ce6b9776ed8152217e77a71be7aac" + integrity sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ== dependencies: - "@octokit/openapi-types" "^18.0.0" + "@octokit/openapi-types" "^19.1.0" "@paloaltonetworks/openapi-to-postmanv2@3.1.0-hotfix.1": version "3.1.0-hotfix.1" @@ -2358,7 +2273,7 @@ semver "7.3.5" uuid "8.3.2" -"@pkgr/utils@^2.3.1": +"@pkgr/utils@^2.4.2": version "2.4.2" resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.4.2.tgz#9e638bbe9a6a6f165580dc943f138fd3309a2cbc" integrity sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw== @@ -2370,645 +2285,31 @@ picocolors "^1.0.0" tslib "^2.6.0" -"@polka/url@^1.0.0-next.20": - version "1.0.0-next.23" - resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.23.tgz#498e41218ab3b6a1419c735e5c6ae2c5ed609b6c" - integrity sha512-C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg== - -"@react-aria/button@3.5.0": - version "3.5.0" - resolved "https://registry.yarnpkg.com/@react-aria/button/-/button-3.5.0.tgz#8b27d0bca98ccd6cd1999e3c21a89f907eafcfda" - integrity sha512-S15W77YemT5g8jNHr8QpIHqT242TxpiBwzj3D0HsQFKoTEb5uXoNAIqZinDjhmbl4ovx2s7h/XevqDNEzvjAtw== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-aria/focus" "^3.6.0" - "@react-aria/interactions" "^3.9.0" - "@react-aria/utils" "^3.13.0" - "@react-stately/toggle" "^3.3.0" - "@react-types/button" "^3.5.0" - -"@react-aria/checkbox@3.4.0": - version "3.4.0" - resolved "https://registry.yarnpkg.com/@react-aria/checkbox/-/checkbox-3.4.0.tgz#d6ac125c0d91c22052d14e12f153a840d4b265a6" - integrity sha512-G1lxa7Glb0HWOjPyA4bYx8n3vAPGF7GKpZ7E4wGnMt3UQfslHavhEmtFyplt3l0f4OkhV8E/yr8SXnNb0cZDLQ== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-aria/label" "^3.3.0" - "@react-aria/toggle" "^3.3.0" - "@react-aria/utils" "^3.13.0" - "@react-stately/checkbox" "^3.1.0" - "@react-stately/toggle" "^3.3.0" - "@react-types/checkbox" "^3.3.0" - -"@react-aria/dialog@3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@react-aria/dialog/-/dialog-3.2.0.tgz#065bcf2eb2afe3bdb199580a951960a182eb317e" - integrity sha512-ScjjfpNw9cvznuGjG+Q15U6wvLkwF++0NbE7v9PILWp1Vs3UHFyKJ7VrxUiDuG20rM3gfTYP8hi55CjwY7wbNA== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-aria/focus" "^3.6.0" - "@react-aria/utils" "^3.13.0" - "@react-stately/overlays" "^3.3.0" - "@react-types/dialog" "^3.4.0" - -"@react-aria/focus@3.6.0": - version "3.6.0" - resolved "https://registry.yarnpkg.com/@react-aria/focus/-/focus-3.6.0.tgz#45ff8aeaad3b594df54699ea3ea78296cb73fb5b" - integrity sha512-1XuwDvhrmLcNnYHBFzwmZOoXuxkybRc8MUhiGLYRD1aVX1h9GarglYo9sfbGZNRO5jxMptXjtJv2rdWz1mHmQw== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-aria/interactions" "^3.9.0" - "@react-aria/utils" "^3.13.0" - "@react-types/shared" "^3.13.0" - clsx "^1.1.1" - -"@react-aria/focus@^3.14.2", "@react-aria/focus@^3.6.0": - version "3.14.2" - resolved "https://registry.yarnpkg.com/@react-aria/focus/-/focus-3.14.2.tgz#aba74e40a985ba03c44a04aee0dc48e2a563b830" - integrity sha512-ozP3g+C/fp3BAgI7dhFgBSzJCOwlW+pKaUlv7ay+btzXX0nc3jgt26uPSDr+Yv2tQcHcQnxfP0kHlXLS7to+lA== - dependencies: - "@react-aria/interactions" "^3.19.0" - "@react-aria/utils" "^3.21.0" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - clsx "^1.1.1" - -"@react-aria/grid@^3.3.0": - version "3.8.3" - resolved "https://registry.yarnpkg.com/@react-aria/grid/-/grid-3.8.3.tgz#adcafd51d9388e7a2ecb16bfd85a863739a61264" - integrity sha512-Q1n6LP5JHxKW1rScDILrgDhGlRn/JJSD1mCutdZA3smi1dIlHm6smS4Cpy6Zl7RRppzeIC5fcy+QotpgF26oZg== - dependencies: - "@react-aria/focus" "^3.14.2" - "@react-aria/i18n" "^3.8.3" - "@react-aria/interactions" "^3.19.0" - "@react-aria/live-announcer" "^3.3.1" - "@react-aria/selection" "^3.17.0" - "@react-aria/utils" "^3.21.0" - "@react-stately/collections" "^3.10.2" - "@react-stately/grid" "^3.8.2" - "@react-stately/selection" "^3.14.0" - "@react-stately/virtualizer" "^3.6.3" - "@react-types/checkbox" "^3.5.2" - "@react-types/grid" "^3.2.2" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-aria/i18n@3.4.0": - version "3.4.0" - resolved "https://registry.yarnpkg.com/@react-aria/i18n/-/i18n-3.4.0.tgz#7ee8c468ce85b959ecef90e403332cbbc1ab9d01" - integrity sha512-2pU13zT9bgD4eMlqfJ/Um2wjYRS7ORvR0jqGSfNzY9Lx+1IeSCqTkBNubT7bCV+Oc0LMUR93fGRDxfdtMyJCog== - dependencies: - "@babel/runtime" "^7.6.2" - "@internationalized/date" "3.0.0-rc.1" - "@internationalized/message" "^3.0.7" - "@internationalized/number" "^3.1.1" - "@react-aria/ssr" "^3.2.0" - "@react-aria/utils" "^3.13.0" - "@react-types/shared" "^3.13.0" - -"@react-aria/i18n@^3.4.0", "@react-aria/i18n@^3.8.3": - version "3.8.3" - resolved "https://registry.yarnpkg.com/@react-aria/i18n/-/i18n-3.8.3.tgz#dd61061d5306edcb8761b9cebfc40fd1bb396e09" - integrity sha512-Q3jF+cwXfFIJFeCMX5M+JX8qcNm3TEoWFrcFGfYoKnq740zaWosuuAaGh2iSfUUooDtwGG6X6uUJbZfBIK4j4w== - dependencies: - "@internationalized/date" "^3.5.0" - "@internationalized/message" "^3.1.1" - "@internationalized/number" "^3.3.0" - "@internationalized/string" "^3.1.1" - "@react-aria/ssr" "^3.8.0" - "@react-aria/utils" "^3.21.0" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-aria/interactions@3.9.0": - version "3.9.0" - resolved "https://registry.yarnpkg.com/@react-aria/interactions/-/interactions-3.9.0.tgz#cf15a1ba1402c2fc52d0c97aa7ccffa78204d166" - integrity sha512-tf9vJtHf7DSnj4e/q19hoO5h61xb0qxNXUkOwaVwU1XlaA+eh+Qas2RF0GIMARLj+JhGX9y2nLjw3FK8F+pItQ== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-aria/utils" "^3.13.0" - "@react-types/shared" "^3.13.0" - -"@react-aria/interactions@^3.19.0", "@react-aria/interactions@^3.9.0": - version "3.19.0" - resolved "https://registry.yarnpkg.com/@react-aria/interactions/-/interactions-3.19.0.tgz#37c14668e43f5c1fc737ddfa3cdf77311ce9c858" - integrity sha512-nJ8VTmEOYJAAvV7wzeQVnamxWd3j16hGAzG++onjhluSWWKO1jMRN6WG9LDwvT5mBI0VYwf7JdVB3QBaCa9fsQ== - dependencies: - "@react-aria/ssr" "^3.8.0" - "@react-aria/utils" "^3.21.0" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-aria/label@3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@react-aria/label/-/label-3.3.0.tgz#1a687c6b70d4bca4992433c97974b41df9f4dad4" - integrity sha512-E8vOEWv04xGasDigbNtB0JOcq5ZLyPEbbOFSa5VgB7LfXu3i+82ZSAjTA1OtZwOc6MiiXRs5BuKx5HgiZn3HHA== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-aria/utils" "^3.13.0" - "@react-types/label" "^3.6.0" - "@react-types/shared" "^3.13.0" - -"@react-aria/label@^3.3.0": - version "3.7.1" - resolved "https://registry.yarnpkg.com/@react-aria/label/-/label-3.7.1.tgz#87fe414506481dadbec684a8252b42ca7d090855" - integrity sha512-/MMHGXVlz6HvZyPDX9mu4an8rM8v5t68jGnyBoaAL8oultWHI1bVRJ/Ro8rT0zY/68m5EWtwNYNyvcZ2X3JZ/w== - dependencies: - "@react-aria/utils" "^3.21.0" - "@react-types/label" "^3.8.1" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-aria/live-announcer@^3.1.0", "@react-aria/live-announcer@^3.3.1": - version "3.3.1" - resolved "https://registry.yarnpkg.com/@react-aria/live-announcer/-/live-announcer-3.3.1.tgz#bf864b8820fb02daaeefc1c972782a0174fd60b9" - integrity sha512-hsc77U7S16trM86d+peqJCOCQ7/smO1cybgdpOuzXyiwcHQw8RQ4GrXrS37P4Ux/44E9nMZkOwATQRT2aK8+Ew== - dependencies: - "@swc/helpers" "^0.5.0" - -"@react-aria/menu@3.5.0": - version "3.5.0" - resolved "https://registry.yarnpkg.com/@react-aria/menu/-/menu-3.5.0.tgz#0505b8e11c27c4150454f17f6e09d7c2f186638d" - integrity sha512-Y5L9ESVnTG2eUOmLk33oQEl5UEK/hCw50udOEqjPBgOVv4drIr8sc4ZcoB0U6IVVKbLHEskhW/ExqlJd6GSACQ== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-aria/i18n" "^3.4.0" - "@react-aria/interactions" "^3.9.0" - "@react-aria/overlays" "^3.9.0" - "@react-aria/selection" "^3.9.0" - "@react-aria/utils" "^3.13.0" - "@react-stately/collections" "^3.4.0" - "@react-stately/menu" "^3.3.0" - "@react-stately/tree" "^3.3.0" - "@react-types/button" "^3.5.0" - "@react-types/menu" "^3.6.0" - "@react-types/shared" "^3.13.0" - -"@react-aria/overlays@3.9.0": - version "3.9.0" - resolved "https://registry.yarnpkg.com/@react-aria/overlays/-/overlays-3.9.0.tgz#950a9025e8d4086ce3840a97c52d0eb21d9c85c1" - integrity sha512-YeZ+/0yfBAcqhuRF/Aas5ga9rZWff3EkhisEy1yXjOrf5veedqb05CsyjRkefZzmUeUggfq/AmqX0DJBlZFbxg== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-aria/i18n" "^3.4.0" - "@react-aria/interactions" "^3.9.0" - "@react-aria/utils" "^3.13.0" - "@react-aria/visually-hidden" "^3.3.0" - "@react-stately/overlays" "^3.3.0" - "@react-types/button" "^3.5.0" - "@react-types/overlays" "^3.6.0" - "@react-types/shared" "^3.13.0" - dom-helpers "^5.2.1" - react-transition-group "^4.4.2" - -"@react-aria/overlays@^3.9.0": - version "3.18.0" - resolved "https://registry.yarnpkg.com/@react-aria/overlays/-/overlays-3.18.0.tgz#cba26f3cee1301999949d248979162c2456122c8" - integrity sha512-2y1QlDgR3CNN0koFFreSFlWgMuzhdZQ9CAVw6vUJaL5qZcIcS8H/1AzjNj81/sGrY2+iSauPpLNOh37lqDkKqQ== - dependencies: - "@react-aria/focus" "^3.14.2" - "@react-aria/i18n" "^3.8.3" - "@react-aria/interactions" "^3.19.0" - "@react-aria/ssr" "^3.8.0" - "@react-aria/utils" "^3.21.0" - "@react-aria/visually-hidden" "^3.8.5" - "@react-stately/overlays" "^3.6.3" - "@react-types/button" "^3.9.0" - "@react-types/overlays" "^3.8.3" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-aria/radio@3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@react-aria/radio/-/radio-3.2.0.tgz#f7f900ba78b160b09162f0c833bcebd3c3222eb0" - integrity sha512-siJmgPckrc29W7dt1g9P2w6wNHMIVKaBSJfP3uQ3qTJcDdTF4sTcK+cre+2peuWrHJiYOCQW1mrRYqfgARDUaA== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-aria/focus" "^3.6.0" - "@react-aria/i18n" "^3.4.0" - "@react-aria/interactions" "^3.9.0" - "@react-aria/label" "^3.3.0" - "@react-aria/utils" "^3.13.0" - "@react-stately/radio" "^3.4.0" - "@react-types/radio" "^3.2.0" - -"@react-aria/selection@^3.17.0", "@react-aria/selection@^3.9.0": - version "3.17.0" - resolved "https://registry.yarnpkg.com/@react-aria/selection/-/selection-3.17.0.tgz#29437753f4b276c96a8821e7476e5edcc2403667" - integrity sha512-Dmf2ri+czVDVIBdEq9KTbIqbohDaENnCUDCPqHmh87oJhrIZhgy29zsZIR5/j+zJzD59Ogy63weZ4yFnMzFtEw== - dependencies: - "@react-aria/focus" "^3.14.2" - "@react-aria/i18n" "^3.8.3" - "@react-aria/interactions" "^3.19.0" - "@react-aria/utils" "^3.21.0" - "@react-stately/collections" "^3.10.2" - "@react-stately/selection" "^3.14.0" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-aria/ssr@3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@react-aria/ssr/-/ssr-3.2.0.tgz#88460384b43204f91c972d5b0de24ee44d6a2984" - integrity sha512-wwJFdkl+Q8NU5yJ4NvdAOqx5LM3QtUVoSjuK7Ey8jZ4WS4bB0EqT3Kr3IInBs257HzZ5nXCiKXKE4NGXXuIRWA== - dependencies: - "@babel/runtime" "^7.6.2" - -"@react-aria/ssr@^3.2.0", "@react-aria/ssr@^3.8.0": - version "3.8.0" - resolved "https://registry.yarnpkg.com/@react-aria/ssr/-/ssr-3.8.0.tgz#e7f467ac42f72504682724304ce221f785d70d49" - integrity sha512-Y54xs483rglN5DxbwfCPHxnkvZ+gZ0LbSYmR72LyWPGft8hN/lrl1VRS1EW2SMjnkEWlj+Km2mwvA3kEHDUA0A== - dependencies: - "@swc/helpers" "^0.5.0" - -"@react-aria/table@3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@react-aria/table/-/table-3.3.0.tgz#48869c2fdbf63c5f04f2b4406c4f1b0f631b031f" - integrity sha512-OYKO0qd/oWYhtbStGByyaRxvz3MSFY+8yIhp5ibr/3fBQw6PuCXAUMJGhhHj+boFVx0Qx+LUWtDk0LOPt5aA0w== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-aria/focus" "^3.6.0" - "@react-aria/grid" "^3.3.0" - "@react-aria/i18n" "^3.4.0" - "@react-aria/interactions" "^3.9.0" - "@react-aria/live-announcer" "^3.1.0" - "@react-aria/selection" "^3.9.0" - "@react-aria/utils" "^3.13.0" - "@react-stately/table" "^3.2.0" - "@react-stately/virtualizer" "^3.2.0" - "@react-types/checkbox" "^3.3.0" - "@react-types/grid" "^3.1.0" - "@react-types/shared" "^3.13.0" - "@react-types/table" "^3.2.0" - -"@react-aria/toggle@^3.3.0": - version "3.8.1" - resolved "https://registry.yarnpkg.com/@react-aria/toggle/-/toggle-3.8.1.tgz#49a556987b31b3b7f2ba751a2e8c74ec9ac1d1a3" - integrity sha512-TGJdKIVcPHVH8zJ7RRTa5bGwO1+x6Sx3CM91V9O0Fhd5PlHxfob/eTrGMOCdmPeBUMd7rRBMfmGuQnp5e6iw9A== - dependencies: - "@react-aria/focus" "^3.14.2" - "@react-aria/interactions" "^3.19.0" - "@react-aria/utils" "^3.21.0" - "@react-stately/toggle" "^3.6.3" - "@react-types/checkbox" "^3.5.2" - "@react-types/shared" "^3.21.0" - "@react-types/switch" "^3.4.2" - "@swc/helpers" "^0.5.0" - -"@react-aria/utils@3.13.0": - version "3.13.0" - resolved "https://registry.yarnpkg.com/@react-aria/utils/-/utils-3.13.0.tgz#a9523a9d4b19839601753749b65e19ac0ad5ca86" - integrity sha512-iF/yYkUVCc2Cgyu7o8oE6w7a67P/M8gXKDR2tp592Be6iUKQPy2kb49VvSh+Bom6Wq/To3h4UBOLFI6I0VXJYA== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-aria/ssr" "^3.2.0" - "@react-stately/utils" "^3.5.0" - "@react-types/shared" "^3.13.0" - clsx "^1.1.1" - -"@react-aria/utils@^3.13.0", "@react-aria/utils@^3.21.0": - version "3.21.0" - resolved "https://registry.yarnpkg.com/@react-aria/utils/-/utils-3.21.0.tgz#147a91188d74f1aa284ad6d3d7db24b0de069fca" - integrity sha512-0ZNaXgvbWnqqiG7FB0qhAIENN7CmBU30AnyTzz5ZZgvJexUJkhd2GMjvTqrBZ6zSjeMpUEIKg5PUA1eptGRPww== - dependencies: - "@react-aria/ssr" "^3.8.0" - "@react-stately/utils" "^3.8.0" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - clsx "^1.1.1" - -"@react-aria/visually-hidden@3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@react-aria/visually-hidden/-/visually-hidden-3.3.0.tgz#2ecddb5704b9a2a68df918bb49e6f125a589ef99" - integrity sha512-pnm4CzO/pI/2xfDMY9OcnlLqYYpaE1bIAwDdFzkXr6ldcR+4kG6N0dJprL6x+ZMgXbztfxUDSPLmexVQShmFsQ== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-aria/interactions" "^3.9.0" - "@react-aria/utils" "^3.13.0" - clsx "^1.1.1" - -"@react-aria/visually-hidden@^3.3.0", "@react-aria/visually-hidden@^3.8.5": - version "3.8.5" - resolved "https://registry.yarnpkg.com/@react-aria/visually-hidden/-/visually-hidden-3.8.5.tgz#9c718f125fb6ab563e733bd1942eecffb5aa1d78" - integrity sha512-uJcYQ3FSuJIIvaRXrTdYl/EFMDML0WV5A8nl7IrO5AMTa2HG9CG04ufeFj2BH48gbbgzlRsiYM41SRSaKjYqBg== - dependencies: - "@react-aria/interactions" "^3.19.0" - "@react-aria/utils" "^3.21.0" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - clsx "^1.1.1" - -"@react-stately/checkbox@3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@react-stately/checkbox/-/checkbox-3.1.0.tgz#637fc0119bd567f0955cb99f9ef88810b211ea61" - integrity sha512-K4c2etj5DCNjvNFP7PaKZxKlRwX/DmpcJzhCQX29jmZJtLsrjsVhLrVNr59NleHbHVsOifF1GwbPlVUKbL5Y0w== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-stately/toggle" "^3.3.0" - "@react-stately/utils" "^3.5.0" - "@react-types/checkbox" "^3.3.0" - -"@react-stately/checkbox@^3.1.0": - version "3.5.1" - resolved "https://registry.yarnpkg.com/@react-stately/checkbox/-/checkbox-3.5.1.tgz#a6f6ad01852aded85f4baa7c3e97e44d2c47a607" - integrity sha512-j+EbHpZgS8J2LbysbVDK3vQAJc7YZHOjHRX20auEzVmulAFKwkRpevo/R5gEL4EpOz4bRyu+BH/jbssHXG+Ezw== - dependencies: - "@react-stately/toggle" "^3.6.3" - "@react-stately/utils" "^3.8.0" - "@react-types/checkbox" "^3.5.2" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-stately/collections@^3.10.2", "@react-stately/collections@^3.4.0": - version "3.10.2" - resolved "https://registry.yarnpkg.com/@react-stately/collections/-/collections-3.10.2.tgz#c739d9d596ecb744be15fde6f064ad85dd6145db" - integrity sha512-h+LzCa1gWhVRWVH8uR+ZxsKmFSx7kW3RIlcjWjhfyc59BzXCuojsOJKTTAyPVFP/3kOdJeltw8g/reV1Cw/x6Q== - dependencies: - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-stately/data@3.5.0": - version "3.5.0" - resolved "https://registry.yarnpkg.com/@react-stately/data/-/data-3.5.0.tgz#ff5ea799868c12f0202b95ea170db1bafcf6d2bd" - integrity sha512-Ww/tYEg0pOY870DJ7wTSlyCJ44jlwtmRuFsd649wD8pNKrYqkExYMO/gK9mfhR5hwaaHsubKl+XgqEgqHCr97g== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-types/shared" "^3.13.0" - -"@react-stately/flags@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@react-stately/flags/-/flags-3.0.0.tgz#c5a73965f8c90e8bf5981adddb4bdbb0ba2f5690" - integrity sha512-e3i2ItHbIa0eEwmSXAnPdD7K8syW76JjGe8ENxwFJPW/H1Pu9RJfjkCb/Mq0WSPN/TpxBb54+I9TgrGhbCoZ9w== - dependencies: - "@swc/helpers" "^0.4.14" - -"@react-stately/grid@^3.2.0", "@react-stately/grid@^3.8.2": - version "3.8.2" - resolved "https://registry.yarnpkg.com/@react-stately/grid/-/grid-3.8.2.tgz#b2bd8614489a46ad7d0de13551507afd68d95de2" - integrity sha512-CB5QpYjXFatuXZodj3r0vIiqTysUe6DURZdJu6RKG2Elx19n2k49fKyx7P7CTKD2sPBOMSSX4edWuTzpL8Tl+A== - dependencies: - "@react-stately/collections" "^3.10.2" - "@react-stately/selection" "^3.14.0" - "@react-types/grid" "^3.2.2" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-stately/menu@^3.3.0": - version "3.5.6" - resolved "https://registry.yarnpkg.com/@react-stately/menu/-/menu-3.5.6.tgz#21861b7cfba579d69272509aef8197d3fad7463a" - integrity sha512-Cm82SVda1qP71Fcz8ohIn3JYKmKCuSUIFr1WsEo/YwDPkX0x9+ev6rmphHTsxDdkCLcYHSTQL6e2KL0wAg50zA== - dependencies: - "@react-stately/overlays" "^3.6.3" - "@react-stately/utils" "^3.8.0" - "@react-types/menu" "^3.9.5" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-stately/overlays@3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@react-stately/overlays/-/overlays-3.3.0.tgz#1775807fef9f49aedfca344c6db6cc89103638da" - integrity sha512-x8ASMyhib7mL4ITgZQXUaTGGkFPZz4qPJVThdx9i6q1iu0CpO7hXpPxzrUFKPV+JV/fyXlWbo3n7tWBE2yHTVw== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-stately/utils" "^3.5.0" - "@react-types/overlays" "^3.6.0" - -"@react-stately/overlays@^3.3.0", "@react-stately/overlays@^3.6.3": - version "3.6.3" - resolved "https://registry.yarnpkg.com/@react-stately/overlays/-/overlays-3.6.3.tgz#cdfe5edb1ed6ad84fc1022af931586489cb23552" - integrity sha512-K3eIiYAdAGTepYqNf2pVb+lPqLoVudXwmxPhyOSZXzjgpynD6tR3E9QfWQtkMazBuU73PnNX7zkH4l87r2AmTg== - dependencies: - "@react-stately/utils" "^3.8.0" - "@react-types/overlays" "^3.8.3" - "@swc/helpers" "^0.5.0" - -"@react-stately/radio@3.4.0": - version "3.4.0" - resolved "https://registry.yarnpkg.com/@react-stately/radio/-/radio-3.4.0.tgz#978ec2dabcb06ca7266fcdbe771fe191ffd7f0e3" - integrity sha512-rdZbMzhVjFkN1BjhK4qZ61wddnFdkRzTPIXqpFo+iMD9x8VEn3lmOkOLIHUs0OyyMP0E/0Aje+F2ZT6/zqq6PA== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-stately/utils" "^3.5.0" - "@react-types/radio" "^3.2.0" - -"@react-stately/radio@^3.4.0": - version "3.9.1" - resolved "https://registry.yarnpkg.com/@react-stately/radio/-/radio-3.9.1.tgz#c43c88e2bff23d3059b0ea22191337a1d644fe0c" - integrity sha512-DrQPHiP9pz1uQbBP/NDFdO8uOZigPbvuAWPUNK7Gq6kye5lW+RsS97IUnYJePNTSMvhiAVz/aleBt05Gr/PZmg== - dependencies: - "@react-stately/utils" "^3.8.0" - "@react-types/radio" "^3.5.2" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-stately/selection@^3.10.0", "@react-stately/selection@^3.14.0": - version "3.14.0" - resolved "https://registry.yarnpkg.com/@react-stately/selection/-/selection-3.14.0.tgz#26a574bf2e35657db1988974df8bd2747b09f5c6" - integrity sha512-E5rNH+gVGDJQDSnPO30ynu6jZ0Z0++VPUbM5Bu3P/bZ3+TgoTtDDvlONba3fspgSBDfdnHpsuG9eqYnDtEAyYA== - dependencies: - "@react-stately/collections" "^3.10.2" - "@react-stately/utils" "^3.8.0" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-stately/table@3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@react-stately/table/-/table-3.2.0.tgz#862ed28b1133e8766ef48bee9fc876ff279c7418" - integrity sha512-W4MJITIxma6PCpRX1Z9vi6F35mJiwpM+g24yVG7VK6JD9Fbiw2nIPJf5ZYo11EI2PdIJlamv/xYqYtn2kmGlWw== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-aria/utils" "^3.13.0" - "@react-stately/collections" "^3.4.0" - "@react-stately/grid" "^3.2.0" - "@react-stately/selection" "^3.10.0" - "@react-types/grid" "^3.1.0" - "@react-types/shared" "^3.13.0" - "@react-types/table" "^3.2.0" - -"@react-stately/table@^3.2.0": - version "3.11.2" - resolved "https://registry.yarnpkg.com/@react-stately/table/-/table-3.11.2.tgz#df78442355f3dd086042ad4bf6473a2aaf31f6c1" - integrity sha512-EVgksPAsnEoqeT+5ej4aGJdu9kAu3LCDqQfnmif2P/R1BP5eDU1Kv0N/mV/90Xp546g7kuZ1wS2if/hWDXEA5g== - dependencies: - "@react-stately/collections" "^3.10.2" - "@react-stately/flags" "^3.0.0" - "@react-stately/grid" "^3.8.2" - "@react-stately/selection" "^3.14.0" - "@react-stately/utils" "^3.8.0" - "@react-types/grid" "^3.2.2" - "@react-types/shared" "^3.21.0" - "@react-types/table" "^3.9.0" - "@swc/helpers" "^0.5.0" - -"@react-stately/toggle@3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@react-stately/toggle/-/toggle-3.3.0.tgz#9330d57f0d4ae9f2c32009851fdcde546fc2db73" - integrity sha512-fiVT1yw9qBBWyfFviUwNR4AcdCnN7TPAX2VpuL7LO7zB1a+sOGiTz3nTnHI4837trvpsXHpCvYXTBMY6yxGEMg== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-stately/utils" "^3.5.0" - "@react-types/checkbox" "^3.3.0" - "@react-types/shared" "^3.13.0" - -"@react-stately/toggle@^3.3.0", "@react-stately/toggle@^3.6.3": - version "3.6.3" - resolved "https://registry.yarnpkg.com/@react-stately/toggle/-/toggle-3.6.3.tgz#4de25fd458890e37f6c363d058b018e5f11a9882" - integrity sha512-4kIMTjRjtaapFk4NVmBoFDUYfkmyqDaYAmHpRyEIHTDpBYn0xpxZL/MHv9WuLYa4MjJLRp0MeicuWiZ4ai7f6Q== - dependencies: - "@react-stately/utils" "^3.8.0" - "@react-types/checkbox" "^3.5.2" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-stately/tree@3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@react-stately/tree/-/tree-3.3.0.tgz#478ba8e0625b7b975e81b0ba5dfd378202d04f56" - integrity sha512-Ic3QMRlrLbbnYPEbiraJdDAcrOnaLd7nJK7qG/cq7Jg7gfruqbO4XFzy+2w7I5B2BbXqFCivtCgEQZIYsgMaSw== - dependencies: - "@babel/runtime" "^7.6.2" - "@react-stately/collections" "^3.4.0" - "@react-stately/selection" "^3.10.0" - "@react-stately/utils" "^3.5.0" - "@react-types/shared" "^3.13.0" - -"@react-stately/tree@^3.3.0": - version "3.7.3" - resolved "https://registry.yarnpkg.com/@react-stately/tree/-/tree-3.7.3.tgz#d0b3da5db553e64e8f3def5bae45f765f62a3fd8" - integrity sha512-wB/68qetgCYTe7OMqbTFmtWRrEqVdIH2VlACPCsMlECr3lW9TrrbrOwlHIJfLhkxWvY3kSCoKcOJ5KTiJC9LGA== - dependencies: - "@react-stately/collections" "^3.10.2" - "@react-stately/selection" "^3.14.0" - "@react-stately/utils" "^3.8.0" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-stately/utils@^3.5.0", "@react-stately/utils@^3.8.0": - version "3.8.0" - resolved "https://registry.yarnpkg.com/@react-stately/utils/-/utils-3.8.0.tgz#88a45742c58bde804f6cbecb20ea3833915cfdf0" - integrity sha512-wCIoFDbt/uwNkWIBF+xV+21k8Z8Sj5qGO3uptTcVmjYcZngOaGGyB4NkiuZhmhG70Pkv+yVrRwoC1+4oav9cCg== - dependencies: - "@swc/helpers" "^0.5.0" - -"@react-stately/virtualizer@^3.2.0", "@react-stately/virtualizer@^3.6.3": - version "3.6.3" - resolved "https://registry.yarnpkg.com/@react-stately/virtualizer/-/virtualizer-3.6.3.tgz#c718df2dbffc26c85b6798ecfe6f1e1f296bf91f" - integrity sha512-vzasjzaKSz+ViqhApvSqRlX7+hhY2uMtjZ2kbCS0U/RtxXra4m5/dD6BfsZ4hGhjQ3PBebDfP9+JvrNQn5EjFQ== - dependencies: - "@react-aria/utils" "^3.21.0" - "@react-types/shared" "^3.21.0" - "@swc/helpers" "^0.5.0" - -"@react-types/button@^3.5.0", "@react-types/button@^3.9.0": - version "3.9.0" - resolved "https://registry.yarnpkg.com/@react-types/button/-/button-3.9.0.tgz#66df80cafaa98aaa34c331e927d21fdf4a0bdc4a" - integrity sha512-YhbchUDB7yL88ZFA0Zqod6qOMdzCLD5yVRmhWymk0yNLvB7EB1XX4c5sRANalfZSFP0RpCTlkjB05Hzp4+xOYg== - dependencies: - "@react-types/shared" "^3.21.0" - -"@react-types/checkbox@3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@react-types/checkbox/-/checkbox-3.3.0.tgz#e2f7e9fc833a037452f0b2747eef18ca8d327fe0" - integrity sha512-aAlorLrY9mTQ01hBSXP+p5dXVLmhwYwPu+lW8rJSosyaZFtaV6GdNHaYb/NioR5YjiMInableWvIxSuTurrMmA== - dependencies: - "@react-types/shared" "^3.13.0" - -"@react-types/checkbox@^3.3.0", "@react-types/checkbox@^3.5.2": - version "3.5.2" - resolved "https://registry.yarnpkg.com/@react-types/checkbox/-/checkbox-3.5.2.tgz#f463befdd37bc2c9e5c6febd62e53131e8983fa4" - integrity sha512-iRQrbY8vRRya3bt3i7sHAifhP/ozfkly1/TItkRK5MNPRNPRDKns55D8ZFkRMj4NSyKQpjVt1zzlBXrnSOxWdQ== - dependencies: - "@react-types/shared" "^3.21.0" - -"@react-types/dialog@^3.4.0": - version "3.5.6" - resolved "https://registry.yarnpkg.com/@react-types/dialog/-/dialog-3.5.6.tgz#e874f0896d595e5a7f5924165b0db78e5f62fe9d" - integrity sha512-lwwaAgoi4xe4eEJxBns+cBIRstIPTKWWddMkp51r7Teeh2uKs1Wki7N+Acb9CfT6JQTQDqtVJm6K76rcqNBVwg== - dependencies: - "@react-types/overlays" "^3.8.3" - "@react-types/shared" "^3.21.0" - -"@react-types/grid@3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@react-types/grid/-/grid-3.1.0.tgz#f8c60582a8119dfddbaf99ac65725b5645464fad" - integrity sha512-cQNHz5qHw4GDSWTgu1hUXj7aXly/WmqUMIMnpwfqOt9UYFDH/9cIXvGfwUH+7wSVEdJQrkMYtHp1lpP8INWmew== - dependencies: - "@react-types/shared" "^3.13.0" - -"@react-types/grid@^3.1.0", "@react-types/grid@^3.2.2": - version "3.2.2" - resolved "https://registry.yarnpkg.com/@react-types/grid/-/grid-3.2.2.tgz#9434d8ed0a80a64e38b2c95f8bbccfa794fd3888" - integrity sha512-R4USOpn1xfsWVGwZsakRlIdsBA10XNCnAUcRXQTn2JmzLjDCtcln6uYo9IFob080lQuvjkSw3j4zkw7Yo4Qepg== - dependencies: - "@react-types/shared" "^3.21.0" - -"@react-types/label@^3.6.0", "@react-types/label@^3.8.1": - version "3.8.1" - resolved "https://registry.yarnpkg.com/@react-types/label/-/label-3.8.1.tgz#b076a0fb955051307bfa3fed7e18ce0dc76d8c7b" - integrity sha512-fA6zMTF2TmfU7H8JBJi0pNd8t5Ak4gO+ZA3cZBysf8r3EmdAsgr3LLqFaGTnZzPH1Fux6c7ARI3qjVpyNiejZQ== - dependencies: - "@react-types/shared" "^3.21.0" - -"@react-types/menu@3.6.0": - version "3.6.0" - resolved "https://registry.yarnpkg.com/@react-types/menu/-/menu-3.6.0.tgz#ddbdaf2d1f5b846411b1cf0370e39705e656d62f" - integrity sha512-GO6GjM+WH+8nOC9c1sVBPE9dYC5vKGBCNA3YxleQq9T2unFB0NOZc8hbzbFcAdwn7NnQbV9eLc0XHpUEkL9NLA== - dependencies: - "@react-types/overlays" "^3.6.0" - "@react-types/shared" "^3.13.0" - -"@react-types/menu@^3.6.0", "@react-types/menu@^3.9.5": - version "3.9.5" - resolved "https://registry.yarnpkg.com/@react-types/menu/-/menu-3.9.5.tgz#9f67aebda9f491f0e94e2de7a15898c6cabf0772" - integrity sha512-KB5lJM0p9PxwpVlHV9sRdpjh+sqINeHrJgGizy/cQI9bj26nupiEgamSD14dULNI6BFT9DkgKCsobBtE04DDKQ== - dependencies: - "@react-types/overlays" "^3.8.3" - "@react-types/shared" "^3.21.0" - -"@react-types/overlays@3.6.0": - version "3.6.0" - resolved "https://registry.yarnpkg.com/@react-types/overlays/-/overlays-3.6.0.tgz#2aed36e3cbdf6eab355dec094ea4934b9f559945" - integrity sha512-atoRgctzNHxWE4qhI2YLI/0Y9bicsib3EnaliV0jUQf2oJMr0S8yKVwwx+K0ENh9Ah00XBEFQxkjgP1q3xQQYw== - dependencies: - "@react-types/shared" "^3.13.0" - -"@react-types/overlays@^3.6.0", "@react-types/overlays@^3.8.3": - version "3.8.3" - resolved "https://registry.yarnpkg.com/@react-types/overlays/-/overlays-3.8.3.tgz#47132f08ae3a115273036d98b9441a51d4a4ab09" - integrity sha512-TrCG2I2+V+TD0PGi3CqfnyU5jEzcelSGgYJQvVxsl5Vv3ri7naBLIsOjF9x66tPxhINLCPUtOze/WYRAexp8aw== - dependencies: - "@react-types/shared" "^3.21.0" +"@pnpm/config.env-replace@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz#ab29da53df41e8948a00f2433f085f54de8b3a4c" + integrity sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w== -"@react-types/radio@^3.2.0", "@react-types/radio@^3.5.2": - version "3.5.2" - resolved "https://registry.yarnpkg.com/@react-types/radio/-/radio-3.5.2.tgz#399e220e2529b2e7c93aa117d39adcca6dc24d1f" - integrity sha512-crYQ+97abd5v0Iw9X+Tt+E7KWdm5ckr4g0+Iy8byV1g6MyiBOsNtq9QT99TOzyWJPqqD8T9qZfAOk49wK7KEDg== +"@pnpm/network.ca-file@^1.0.1": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz#2ab05e09c1af0cdf2fcf5035bea1484e222f7983" + integrity sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA== dependencies: - "@react-types/shared" "^3.21.0" + graceful-fs "4.2.10" -"@react-types/shared@3.13.0": - version "3.13.0" - resolved "https://registry.yarnpkg.com/@react-types/shared/-/shared-3.13.0.tgz#01ef4312886ed8d449065f44168e2bfd3134acb7" - integrity sha512-ha+Xzn6gG/aww2nl7A6kYSJdYQypTxdYgNrJvddDB7h0QuyVQTf27iVleOWrmkHQ1TM9Q/FUbMdJ93CgdtP26g== - -"@react-types/shared@^3.13.0", "@react-types/shared@^3.21.0": - version "3.21.0" - resolved "https://registry.yarnpkg.com/@react-types/shared/-/shared-3.21.0.tgz#1af41fdf7dfbdbd33bbc1210617c43ed0d4ef20c" - integrity sha512-wJA2cUF8dP4LkuNUt9Vh2kkfiQb2NLnV2pPXxVnKJZ7d4x2/7VPccN+LYPnH8m0X3+rt50cxWuPKQmjxSsCFOg== - -"@react-types/switch@^3.4.2": - version "3.4.2" - resolved "https://registry.yarnpkg.com/@react-types/switch/-/switch-3.4.2.tgz#8c0a8f8dfcaae29ccd9409a2beaac0d31a131027" - integrity sha512-OQWpawikWhF+ET1/kE0/JeJVr6gHjkR72p/idTsT7RUJySBcehhAscbIA8iWzVWJvdFCVF2hG7uzBAJTeDMr9A== +"@pnpm/npm-conf@^2.1.0": + version "2.2.2" + resolved "https://registry.yarnpkg.com/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz#0058baf1c26cbb63a828f0193795401684ac86f0" + integrity sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA== dependencies: - "@react-types/checkbox" "^3.5.2" - "@react-types/shared" "^3.21.0" + "@pnpm/config.env-replace" "^1.1.0" + "@pnpm/network.ca-file" "^1.0.1" + config-chain "^1.1.11" -"@react-types/table@^3.2.0", "@react-types/table@^3.9.0": - version "3.9.0" - resolved "https://registry.yarnpkg.com/@react-types/table/-/table-3.9.0.tgz#0053ce5b78f2214afaf7e38cdd96a57eecbd2ff9" - integrity sha512-WOLxZ3tzLA4gxRxvnsZhnnQDbh4Qe/johpHNk4coSOFOP5W8PbunPacXnbvdPkSx6rqrOIzCnYcZCtgk4gDQmg== - dependencies: - "@react-types/grid" "^3.2.2" - "@react-types/shared" "^3.21.0" +"@polka/url@^1.0.0-next.20": + version "1.0.0-next.24" + resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.24.tgz#58601079e11784d20f82d0585865bb42305c4df3" + integrity sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ== "@redocly/ajv@^8.11.0": version "8.11.0" @@ -3021,9 +2322,9 @@ uri-js "^4.2.2" "@redocly/openapi-core@^1.0.0-beta.125": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@redocly/openapi-core/-/openapi-core-1.2.0.tgz#de01c2d8d9c8ae70f7b4061ee048a464dd19d602" - integrity sha512-Ccft2n/JiF4u2crmj1cdDzPq6C40U7NgLZ+p/BxzAFXbfrddr/5FN0HMJPHT/op329qqv2P2jUrXsV2Bp+rzEQ== + version "1.5.0" + resolved "https://registry.yarnpkg.com/@redocly/openapi-core/-/openapi-core-1.5.0.tgz#aacdb9030a041a53e38c9b5c51b1caa25ab7957b" + integrity sha512-AnDLoDl1+a7mZO4+lx0KG8zH04BQx4ez6yh403PuNl9/0ygbicPPc9QG/y0/0OImChOA+knKLpJazNFjzhOAeg== dependencies: "@redocly/ajv" "^8.11.0" "@types/node" "^14.11.8" @@ -3037,26 +2338,26 @@ yaml-ast-parser "0.0.43" "@reduxjs/toolkit@^1.7.1": - version "1.9.6" - resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-1.9.6.tgz#fc968b45fe5b17ff90932c4556960d9c1078365a" - integrity sha512-Gc4ikl90ORF4viIdAkY06JNUnODjKfGxZRwATM30EdHq8hLSVoSrwXne5dd739yenP5bJxAX7tLuOWK5RPGtrw== + version "1.9.7" + resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-1.9.7.tgz#7fc07c0b0ebec52043f8cb43510cf346405f78a6" + integrity sha512-t7v8ZPxhhKgOKtU+uyJT13lu4vL7az5aFi4IdoDs/eS548edn2M8Ik9h8fxgvMjGoAUVFSt6ZC1P5cWmQ014QQ== dependencies: immer "^9.0.21" redux "^4.2.1" redux-thunk "^2.4.2" reselect "^4.1.8" -"@rive-app/canvas@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@rive-app/canvas/-/canvas-2.4.3.tgz#9dbfc4a354693f40db7e26037dbaab57b568d6e2" - integrity sha512-QDcVKsp9ZV1wp125V0LcVyuUez90QsMxR251h0mrlEMrrO93dwY9yYYkyB8bsGfd/o22yR6Tez7PKv8yo4TRnQ== +"@rive-app/canvas@2.7.6": + version "2.7.6" + resolved "https://registry.yarnpkg.com/@rive-app/canvas/-/canvas-2.7.6.tgz#bbe49b50e9fbb2021a3429b1e0c599fad9b04479" + integrity sha512-4jzJnuQOS6jdqmcrq5WhZkTmO048P55XR4dQP0y5PtEZERowNNt8zpwuZ3zWa51fuHCSlV0cM5c6m8sUJmpXNQ== -"@rive-app/react-canvas@4.3.3": - version "4.3.3" - resolved "https://registry.yarnpkg.com/@rive-app/react-canvas/-/react-canvas-4.3.3.tgz#0e0f52b48dd6af523c40c10691e5d7e3bdbd7cf8" - integrity sha512-kkNYwReNXxpF015UMCd7Y0zBjjngN9RAxAGCUGkVtx2XdIM7CuAdf7uaCBAmv9OzU0svPMp6zA6nihYc7kZgsg== +"@rive-app/react-canvas@4.5.6": + version "4.5.6" + resolved "https://registry.yarnpkg.com/@rive-app/react-canvas/-/react-canvas-4.5.6.tgz#9a3bf9f1d5bcaac395e32d655e89e61857fdc744" + integrity sha512-3Zagh7TDR8mwOhBTBQymSUJhlu7++Fw95+gTJ3/6e/YZ0pU/8RWOLOsWk9+k8GyrCVrbr1PPb0X8WneMEWpllA== dependencies: - "@rive-app/canvas" "2.4.3" + "@rive-app/canvas" "2.7.6" "@rollup/plugin-babel@^5.2.0": version "5.3.1" @@ -3117,10 +2418,24 @@ resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== -"@sindresorhus/is@^0.14.0": - version "0.14.0" - resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" - integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== +"@sindresorhus/is@^4.6.0": + version "4.6.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" + integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== + +"@sindresorhus/is@^5.2.0": + version "5.6.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-5.6.0.tgz#41dd6093d34652cddb5d5bdeee04eafc33826668" + integrity sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g== + +"@slorber/remark-comment@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@slorber/remark-comment/-/remark-comment-1.0.0.tgz#2a020b3f4579c89dec0361673206c28d67e08f5a" + integrity sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA== + dependencies: + micromark-factory-space "^1.0.0" + micromark-util-character "^1.1.0" + micromark-util-symbol "^1.0.1" "@slorber/static-site-generator-webpack-plugin@^4.0.7": version "4.0.7" @@ -3131,11 +2446,6 @@ p-map "^4.0.0" webpack-sources "^3.2.2" -"@stitches/react@1.2.8": - version "1.2.8" - resolved "https://registry.yarnpkg.com/@stitches/react/-/react-1.2.8.tgz#954f8008be8d9c65c4e58efa0937f32388ce3a38" - integrity sha512-9g9dWI4gsSVe8bNLlb+lMkBYsnIKCZTmvqvDG+Avnn69XfmHZKiaMrx7cgTaddq7aTPPmXiTsbFcUy0xgI4+wA== - "@surma/rollup-plugin-off-main-thread@^2.2.3": version "2.2.3" resolved "https://registry.yarnpkg.com/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz#ee34985952ca21558ab0d952f00298ad2190c053" @@ -3238,7 +2548,7 @@ deepmerge "^4.2.2" svgo "^2.8.0" -"@svgr/webpack@^6.2.1": +"@svgr/webpack@^6.2.1", "@svgr/webpack@^6.5.1": version "6.5.1" resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-6.5.1.tgz#ecf027814fc1cb2decc29dc92f39c3cf691e40e8" integrity sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA== @@ -3252,115 +2562,106 @@ "@svgr/plugin-jsx" "^6.5.1" "@svgr/plugin-svgo" "^6.5.1" -"@swc/helpers@^0.4.14": - version "0.4.36" - resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.36.tgz#fcfff76ed52c214f357e8e9d3f37b568908072d9" - integrity sha512-5lxnyLEYFskErRPenYItLRSge5DjrJngYKdVjRSrWfza9G6KkgHEXi0vUZiyUeMU5JfXH1YnvXZzSp8ul88o2Q== - dependencies: - legacy-swc-helpers "npm:@swc/helpers@=0.4.14" - tslib "^2.4.0" - -"@swc/helpers@^0.5.0": - version "0.5.2" - resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.2.tgz#85ea0c76450b61ad7d10a37050289eded783c27d" - integrity sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw== - dependencies: - tslib "^2.4.0" - -"@szmarczak/http-timer@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" - integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== +"@szmarczak/http-timer@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-5.0.1.tgz#c7c1bf1141cdd4751b0399c8fc7b8b664cd5be3a" + integrity sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw== dependencies: - defer-to-connect "^1.0.1" + defer-to-connect "^2.0.1" "@trysound/sax@0.2.0": version "0.2.0" resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== -"@tsconfig/docusaurus@2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@tsconfig/docusaurus/-/docusaurus-2.0.1.tgz#a5fafa047c8383258e3c5aad960e332e27ecf5ea" - integrity sha512-7JrI61bTZ37DWrHx1qhOW+kPxSG95+/q+EiDCMIahh8Aqbk03+nVu+Z6YGOj3O5e6lXHJuf/LHJ/lc6j8IEQyA== - -"@tsconfig/node10@^1.0.7": - version "1.0.9" - resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" - integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== - -"@tsconfig/node12@^1.0.7": - version "1.0.11" - resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" - integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== - -"@tsconfig/node14@^1.0.0": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" - integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== - -"@tsconfig/node16@^1.0.2": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" - integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== +"@types/acorn@^4.0.0": + version "4.0.6" + resolved "https://registry.yarnpkg.com/@types/acorn/-/acorn-4.0.6.tgz#d61ca5480300ac41a7d973dd5b84d0a591154a22" + integrity sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ== + dependencies: + "@types/estree" "*" "@types/body-parser@*": - version "1.19.3" - resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.3.tgz#fb558014374f7d9e56c8f34bab2042a3a07d25cd" - integrity sha512-oyl4jvAfTGX9Bt6Or4H9ni1Z447/tQuxnZsytsCaExKlmJiU8sFgnIBRzJUpKwB5eWn9HuBYlUlVA74q/yN0eQ== + version "1.19.5" + resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.5.tgz#04ce9a3b677dc8bd681a17da1ab9835dc9d3ede4" + integrity sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg== dependencies: "@types/connect" "*" "@types/node" "*" "@types/bonjour@^3.5.9": - version "3.5.11" - resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.11.tgz#fbaa46a1529ea5c5e46cde36e4be6a880db55b84" - integrity sha512-isGhjmBtLIxdHBDl2xGwUzEM8AOyOvWsADWq7rqirdi/ZQoHnLWErHvsThcEzTX8juDRiZtzp2Qkv5bgNh6mAg== + version "3.5.13" + resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.13.tgz#adf90ce1a105e81dd1f9c61fdc5afda1bfb92956" + integrity sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ== dependencies: "@types/node" "*" "@types/connect-history-api-fallback@^1.3.5": - version "1.5.1" - resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.1.tgz#6e5e3602d93bda975cebc3449e1a318340af9e20" - integrity sha512-iaQslNbARe8fctL5Lk+DsmgWOM83lM+7FzP0eQUJs1jd3kBE8NWqBTIT2S8SqQOJjxvt2eyIjpOuYeRXq2AdMw== + version "1.5.4" + resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz#7de71645a103056b48ac3ce07b3520b819c1d5b3" + integrity sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw== dependencies: "@types/express-serve-static-core" "*" "@types/node" "*" "@types/connect@*": - version "3.4.36" - resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.36.tgz#e511558c15a39cb29bd5357eebb57bd1459cd1ab" - integrity sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w== + version "3.4.38" + resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz#5ba7f3bc4fbbdeaff8dded952e5ff2cc53f8d858" + integrity sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug== dependencies: "@types/node" "*" +"@types/d3-scale-chromatic@^3.0.0": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.3.tgz#fc0db9c10e789c351f4c42d96f31f2e4df8f5644" + integrity sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw== + +"@types/d3-scale@^4.0.3": + version "4.0.8" + resolved "https://registry.yarnpkg.com/@types/d3-scale/-/d3-scale-4.0.8.tgz#d409b5f9dcf63074464bf8ddfb8ee5a1f95945bb" + integrity sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ== + dependencies: + "@types/d3-time" "*" + +"@types/d3-time@*": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/d3-time/-/d3-time-3.0.3.tgz#3c186bbd9d12b9d84253b6be6487ca56b54f88be" + integrity sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw== + "@types/debug@^4.0.0": - version "4.1.9" - resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.9.tgz#906996938bc672aaf2fb8c0d3733ae1dda05b005" - integrity sha512-8Hz50m2eoS56ldRlepxSBa6PWEVCtzUo/92HgLc2qTMnotJNIm7xP+UZhyWoYsyOdd5dxZ+NZLb24rsKyFs2ow== + version "4.1.12" + resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz#a155f21690871953410df4b6b6f53187f0500917" + integrity sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ== dependencies: "@types/ms" "*" "@types/eslint-scope@^3.7.3": - version "3.7.5" - resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.5.tgz#e28b09dbb1d9d35fdfa8a884225f00440dfc5a3e" - integrity sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA== + version "3.7.7" + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.7.tgz#3108bd5f18b0cdb277c867b3dd449c9ed7079ac5" + integrity sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg== dependencies: "@types/eslint" "*" "@types/estree" "*" "@types/eslint@*", "@types/eslint@7 || 8": - version "8.44.3" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.3.tgz#96614fae4875ea6328f56de38666f582d911d962" - integrity sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g== + version "8.44.8" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.8.tgz#f4fe1dab9b3d3dd98082d4b9f80e59ab40f1261c" + integrity sha512-4K8GavROwhrYl2QXDXm0Rv9epkA8GBFu0EI+XrrnnuCl7u8CWBRusX7fXJfanhZTDWSAL24gDI/UqXyUM0Injw== dependencies: "@types/estree" "*" "@types/json-schema" "*" +"@types/estree-jsx@^1.0.0": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-1.0.3.tgz#f8aa833ec986d82b8271a294a92ed1565bf2c66a" + integrity sha512-pvQ+TKeRHeiUGRhvYwRrQ/ISnohKkSJR14fT2yqyZ4e9K5vqc7hrtY2Y1Dw0ZwAzQ6DQsxsaCUuSIIi8v0Cq6w== + dependencies: + "@types/estree" "*" + "@types/estree@*", "@types/estree@^1.0.0": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.2.tgz#ff02bc3dc8317cd668dfec247b750ba1f1d62453" - integrity sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA== + version "1.0.5" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" + integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== "@types/estree@0.0.39": version "0.0.39" @@ -3368,9 +2669,9 @@ integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== "@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33": - version "4.17.37" - resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.37.tgz#7e4b7b59da9142138a2aaa7621f5abedce8c7320" - integrity sha512-ZohaCYTgGFcOP7u6aJOhY9uIZQgZ2vxC2yWoArY+FeDXlqeH66ZVBjgvg+RLVAS/DWNq4Ap9ZXu1+SUQiiWYMg== + version "4.17.41" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.41.tgz#5077defa630c2e8d28aa9ffc2c01c157c305bef6" + integrity sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA== dependencies: "@types/node" "*" "@types/qs" "*" @@ -3378,31 +2679,43 @@ "@types/send" "*" "@types/express@*", "@types/express@^4.17.13": - version "4.17.18" - resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.18.tgz#efabf5c4495c1880df1bdffee604b143b29c4a95" - integrity sha512-Sxv8BSLLgsBYmcnGdGjjEjqET2U+AKAdCRODmMiq02FgjwuV75Ut85DRpvFjyw/Mk0vgUOliGRU0UUmuuZHByQ== + version "4.17.21" + resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.21.tgz#c26d4a151e60efe0084b23dc3369ebc631ed192d" + integrity sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ== dependencies: "@types/body-parser" "*" "@types/express-serve-static-core" "^4.17.33" "@types/qs" "*" "@types/serve-static" "*" +"@types/gtag.js@^0.0.12": + version "0.0.12" + resolved "https://registry.yarnpkg.com/@types/gtag.js/-/gtag.js-0.0.12.tgz#095122edca896689bdfcdd73b057e23064d23572" + integrity sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg== + "@types/hast@^2.0.0": - version "2.3.6" - resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.6.tgz#bb8b05602112a26d22868acb70c4b20984ec7086" - integrity sha512-47rJE80oqPmFdVDCD7IheXBrVdwuBgsYwoczFvKmwfo2Mzsnt+V9OONsYauFmICb6lQPpCuXYJWejBNs4pDJRg== + version "2.3.8" + resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.8.tgz#4ac5caf38b262b7bd5ca3202dda71f0271635660" + integrity sha512-aMIqAlFd2wTIDZuvLbhUT+TGvMxrNC8ECUIVtH6xxy0sQLs3iu6NO8Kp/VT5je7i5ufnebXzdV1dNDMnvaH6IQ== dependencies: "@types/unist" "^2" +"@types/hast@^3.0.0": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/hast/-/hast-3.0.3.tgz#7f75e6b43bc3f90316046a287d9ad3888309f7e1" + integrity sha512-2fYGlaDy/qyLlhidX42wAH0KBi2TCjKMH8CHmBXgRlJ3Y+OXTiqsPQ6IWarZKwF1JoUcAJdPogv1d4b0COTpmQ== + dependencies: + "@types/unist" "*" + "@types/history@^4.7.11": version "4.7.11" resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.11.tgz#56588b17ae8f50c53983a524fc3cc47437969d64" integrity sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA== "@types/hoist-non-react-statics@^3.3.0", "@types/hoist-non-react-statics@^3.3.1": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#dc1e9ded53375d37603c479cc12c693b0878aa2a" - integrity sha512-YIQtIg4PKr7ZyqNPZObpxfHsHEmuB8dXCxd6qVcGuQVDK2bpsF7bYNnBJ4Nn7giuACZg+WewExgrtAJ3XnA4Xw== + version "3.3.5" + resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz#dab7867ef789d87e2b4b0003c9d65c49cc44a494" + integrity sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg== dependencies: "@types/react" "*" hoist-non-react-statics "^3.3.0" @@ -3412,125 +2725,148 @@ resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35" integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== +"@types/http-cache-semantics@^4.0.2": + version "4.0.4" + resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz#b979ebad3919799c979b17c72621c0bc0a31c6c4" + integrity sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA== + "@types/http-errors@*": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.2.tgz#a86e00bbde8950364f8e7846687259ffcd96e8c2" - integrity sha512-lPG6KlZs88gef6aD85z3HNkztpj7w2R7HmR3gygjfXCQmsLloWNARFkMuzKiiY8FGdh1XDpgBdrSf4aKDiA7Kg== + version "2.0.4" + resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.4.tgz#7eb47726c391b7345a6ec35ad7f4de469cf5ba4f" + integrity sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA== "@types/http-proxy@^1.17.8": - version "1.17.12" - resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.12.tgz#86e849e9eeae0362548803c37a0a1afc616bd96b" - integrity sha512-kQtujO08dVtQ2wXAuSFfk9ASy3sug4+ogFR8Kd8UgP8PEuc1/G/8yjYRmp//PcDNJEUKOza/MrQu15bouEUCiw== + version "1.17.14" + resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.14.tgz#57f8ccaa1c1c3780644f8a94f9c6b5000b5e2eec" + integrity sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w== dependencies: "@types/node" "*" "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" - integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== + version "2.0.6" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" + integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== "@types/istanbul-lib-report@*": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#412e0725ef41cde73bfa03e0e833eaff41e0fd63" - integrity sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ== + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" + integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== dependencies: "@types/istanbul-lib-coverage" "*" "@types/istanbul-reports@^3.0.0": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.2.tgz#edc8e421991a3b4df875036d381fc0a5a982f549" - integrity sha512-kv43F9eb3Lhj+lr/Hn6OcLCs/sSM8bt+fIaP11rCYngfV6NVjzWXJ17owQtDQTL9tQ8WSLUrGsSJ6rJz0F1w1A== + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" + integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== dependencies: "@types/istanbul-lib-report" "*" "@types/json-schema@*", "@types/json-schema@^7.0.11", "@types/json-schema@^7.0.12", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": - version "7.0.13" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.13.tgz#02c24f4363176d2d18fc8b70b9f3c54aba178a85" - integrity sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ== + version "7.0.15" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== "@types/json-stable-stringify@^1.0.32": - version "1.0.34" - resolved "https://registry.yarnpkg.com/@types/json-stable-stringify/-/json-stable-stringify-1.0.34.tgz#c0fb25e4d957e0ee2e497c1f553d7f8bb668fd75" - integrity sha512-s2cfwagOQAS8o06TcwKfr9Wx11dNGbH2E9vJz1cqV+a/LOyhWNLUNd6JSRYNzvB4d29UuJX2M0Dj9vE1T8fRXw== + version "1.0.36" + resolved "https://registry.yarnpkg.com/@types/json-stable-stringify/-/json-stable-stringify-1.0.36.tgz#fe6c6001a69ff8160a772da08779448a333c7ddd" + integrity sha512-b7bq23s4fgBB76n34m2b3RBf6M369B0Z9uRR8aHTMd8kZISRkmDEpPD8hhpYvDFzr3bJCPES96cm3Q6qRNDbQw== -"@types/katex@^0.11.0": - version "0.11.1" - resolved "https://registry.yarnpkg.com/@types/katex/-/katex-0.11.1.tgz#34de04477dcf79e2ef6c8d23b41a3d81f9ebeaf5" - integrity sha512-DUlIj2nk0YnJdlWgsFuVKcX27MLW0KbKmGVoUHmFr+74FYYNUDAaj9ZqTADvsbE8rfxuVmSFc7KczYn5Y09ozg== +"@types/katex@^0.16.0": + version "0.16.7" + resolved "https://registry.yarnpkg.com/@types/katex/-/katex-0.16.7.tgz#03ab680ab4fa4fbc6cb46ecf987ecad5d8019868" + integrity sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ== "@types/lodash.clonedeep@^4.5.7": - version "4.5.7" - resolved "https://registry.yarnpkg.com/@types/lodash.clonedeep/-/lodash.clonedeep-4.5.7.tgz#0e119f582ed6f9e6b373c04a644651763214f197" - integrity sha512-ccNqkPptFIXrpVqUECi60/DFxjNKsfoQxSQsgcBJCX/fuX1wgyQieojkcWH/KpE3xzLoWN/2k+ZeGqIN3paSvw== + version "4.5.9" + resolved "https://registry.yarnpkg.com/@types/lodash.clonedeep/-/lodash.clonedeep-4.5.9.tgz#ea48276c7cc18d080e00bb56cf965bcceb3f0fc1" + integrity sha512-19429mWC+FyaAhOLzsS8kZUsI+/GmBAQ0HFiCPsKGU+7pBXOQWhyrY6xNNDwUSX8SMZMJvuFVMF9O5dQOlQK9Q== dependencies: "@types/lodash" "*" "@types/lodash@*": - version "4.14.199" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.199.tgz#c3edb5650149d847a277a8961a7ad360c474e9bf" - integrity sha512-Vrjz5N5Ia4SEzWWgIVwnHNEnb1UE1XMkvY5DGXrAeOGE9imk0hgTHh5GyDjLDJi9OTCn9oo9dXH1uToK1VRfrg== + version "4.14.202" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.202.tgz#f09dbd2fb082d507178b2f2a5c7e74bd72ff98f8" + integrity sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ== "@types/mdast@^3.0.0": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.13.tgz#b7ba6e52d0faeb9c493e32c205f3831022be4e1b" - integrity sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg== + version "3.0.15" + resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.15.tgz#49c524a263f30ffa28b71ae282f813ed000ab9f5" + integrity sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ== dependencies: "@types/unist" "^2" +"@types/mdast@^4.0.0", "@types/mdast@^4.0.2": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-4.0.3.tgz#1e011ff013566e919a4232d1701ad30d70cab333" + integrity sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg== + dependencies: + "@types/unist" "*" + +"@types/mdx@^2.0.0": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.10.tgz#0d7b57fb1d83e27656156e4ee0dfba96532930e4" + integrity sha512-Rllzc5KHk0Al5/WANwgSPl1/CwjqCy+AZrGd78zuK+jO9aDM6ffblZ+zIjgPNAaEBmlO0RYDvLNh7wD0zKVgEg== + "@types/mime@*": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.2.tgz#c1ae807f13d308ee7511a5b81c74f327028e66e8" - integrity sha512-Wj+fqpTLtTbG7c0tH47dkahefpLKEbB+xAZuLq7b4/IDHPl/n6VoXcyUQ2bypFlbSwvCr0y+bD4euTTqTJsPxQ== + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.4.tgz#2198ac274de6017b44d941e00261d5bc6a0e0a45" + integrity sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw== "@types/mime@^1": - version "1.3.3" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.3.tgz#bbe64987e0eb05de150c305005055c7ad784a9ce" - integrity sha512-Ys+/St+2VF4+xuY6+kDIXGxbNRO0mesVg0bbxEfB97Od1Vjpjx9KD1qxs64Gcb3CWPirk9Xe+PT4YiiHQ9T+eg== + version "1.3.5" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.5.tgz#1ef302e01cf7d2b5a0fa526790c9123bf1d06690" + integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w== "@types/minimist@^1.2.0": - version "1.2.3" - resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.3.tgz#dd249cef80c6fff2ba6a0d4e5beca913e04e25f8" - integrity sha512-ZYFzrvyWUNhaPomn80dsMNgMeXxNWZBdkuG/hWlUvXvbdUH8ZERNBGXnU87McuGcWDsyzX2aChCv/SVN348k3A== + version "1.2.5" + resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz#ec10755e871497bcd83efe927e43ec46e8c0747e" + integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== "@types/ms@*": - version "0.7.32" - resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.32.tgz#f6cd08939ae3ad886fcc92ef7f0109dacddf61ab" - integrity sha512-xPSg0jm4mqgEkNhowKgZFBNtwoEwF6gJ4Dhww+GFpm3IgtNseHQZ5IqdNwnquZEoANxyDAKDRAdVo4Z72VvD/g== + version "0.7.34" + resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.34.tgz#10964ba0dee6ac4cd462e2795b6bebd407303433" + integrity sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g== + +"@types/node-forge@^1.3.0": + version "1.3.10" + resolved "https://registry.yarnpkg.com/@types/node-forge/-/node-forge-1.3.10.tgz#62a19d4f75a8b03290578c2b04f294b1a5a71b07" + integrity sha512-y6PJDYN4xYBxwd22l+OVH35N+1fCYWiuC3aiP2SlXVE6Lo7SS+rSx9r89hLxrP4pn6n1lBGhHJ12pj3F3Mpttw== + dependencies: + "@types/node" "*" "@types/node@*": - version "20.8.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.8.0.tgz#10ddf0119cf20028781c06d7115562934e53f745" - integrity sha512-LzcWltT83s1bthcvjBmiBvGJiiUe84NWRHkw+ZV6Fr41z2FbIzvc815dk2nQ3RAKMuN2fkenM/z3Xv2QzEpYxQ== + version "20.10.4" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.10.4.tgz#b246fd84d55d5b1b71bf51f964bd514409347198" + integrity sha512-D08YG6rr8X90YB56tSIuBaddy/UXAA9RKJoFvrsnogAum/0pmjkgi4+2nx96A330FmioegBWmEYQ+syqCFaveg== + dependencies: + undici-types "~5.26.4" "@types/node@14 || 16 || 17", "@types/node@^17.0.5": version "17.0.45" resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== -"@types/node@20.5.1": - version "20.5.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.5.1.tgz#178d58ee7e4834152b0e8b4d30cbfab578b9bb30" - integrity sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg== - "@types/node@^14.11.8": version "14.18.63" resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.63.tgz#1788fa8da838dbb5f9ea994b834278205db6ca2b" integrity sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ== +"@types/node@^18.11.9": + version "18.19.3" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.3.tgz#e4723c4cb385641d61b983f6fe0b716abd5f8fc0" + integrity sha512-k5fggr14DwAytoA/t8rPrIz++lXK7/DqckthCmoZOKNsEbJkId4Z//BqgApXBUGrGddrigYa1oqheo/7YmW4rg== + dependencies: + undici-types "~5.26.4" + "@types/normalize-package-data@^2.4.0": - version "2.4.2" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz#9b0e3e8533fe5024ad32d6637eb9589988b6fdca" - integrity sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A== + version "2.4.4" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" + integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== "@types/parse-json@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== - -"@types/parse5@^5.0.0": - version "5.0.3" - resolved "https://registry.yarnpkg.com/@types/parse5/-/parse5-5.0.3.tgz#e7b5aebbac150f8b5fdd4a46e7f0bd8e65e19109" - integrity sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw== + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239" + integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== "@types/parse5@^6.0.0": version "6.0.3" @@ -3538,44 +2874,44 @@ integrity sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g== "@types/picomatch@^2.3.0": - version "2.3.1" - resolved "https://registry.yarnpkg.com/@types/picomatch/-/picomatch-2.3.1.tgz#ebb5c749fa246b78b9fe3cea7656c340e605f759" - integrity sha512-Ejq9/KBsgfZZafGGdr9R7011EZhDzcAEMjoBl2W4eGNcZGhsUFMbUA0D+sHxjtAA1ldk3e6wapzXeyp0NSuM8Q== + version "2.3.3" + resolved "https://registry.yarnpkg.com/@types/picomatch/-/picomatch-2.3.3.tgz#be60498568c19e989e43fb39aa84be1ed3655e92" + integrity sha512-Yll76ZHikRFCyz/pffKGjrCwe/le2CDwOP5F210KQo27kpRE46U2rDnzikNlVn6/ezH3Mhn46bJMTfeVTtcYMg== "@types/prismjs@^1.26.0": - version "1.26.1" - resolved "https://registry.yarnpkg.com/@types/prismjs/-/prismjs-1.26.1.tgz#aae6739d8f0d14a3bc9e6dd83e6d791ad75d4d76" - integrity sha512-Q7jDsRbzcNHIQje15CS/piKhu6lMLb9jwjxSfEIi4KcFKXW23GoJMkwQiJ8VObyfx+VmUaDcJxXaWN+cTCjVog== + version "1.26.3" + resolved "https://registry.yarnpkg.com/@types/prismjs/-/prismjs-1.26.3.tgz#47fe8e784c2dee24fe636cab82e090d3da9b7dec" + integrity sha512-A0D0aTXvjlqJ5ZILMz3rNfDBOx9hHxLZYv2by47Sm/pqW35zzjusrZTryatjN/Rf8Us2gZrJD+KeHbUSTux1Cw== "@types/prop-types@*", "@types/prop-types@^15.0.0": - version "15.7.8" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.8.tgz#805eae6e8f41bd19e88917d2ea200dc992f405d3" - integrity sha512-kMpQpfZKSCBqltAJwskgePRaYRFukDkm1oItcAbC3gNELR20XIBcN9VRgg4+m8DKsTfkWeA4m4Imp4DDuWy7FQ== + version "15.7.11" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.11.tgz#2596fb352ee96a1379c657734d4b913a613ad563" + integrity sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng== "@types/qs@*": - version "6.9.8" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.8.tgz#f2a7de3c107b89b441e071d5472e6b726b4adf45" - integrity sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg== + version "6.9.10" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.10.tgz#0af26845b5067e1c9a622658a51f60a3934d51e8" + integrity sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw== "@types/range-parser@*": - version "1.2.5" - resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.5.tgz#38bd1733ae299620771bd414837ade2e57757498" - integrity sha512-xrO9OoVPqFuYyR/loIHjnbvvyRZREYKLjxV4+dY6v3FQR3stQ9ZxIGkaclF7YhI9hfjpuTbu14hZEy94qKLtOA== + version "1.2.7" + resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.7.tgz#50ae4353eaaddc04044279812f52c8c65857dbcb" + integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ== "@types/react-redux@^7.1.20": - version "7.1.27" - resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.27.tgz#1afb31f7354bf787e162c10ff3fa19bafa9e6b57" - integrity sha512-xj7d9z32p1K/eBmO+OEy+qfaWXtcPlN8f1Xk3Ne0p/ZRQ867RI5bQ/bpBtxbqU1AHNhKJSgGvld/P2myU2uYkg== + version "7.1.32" + resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.32.tgz#bf162289e0c69e44a649dfcadb30f7f7c4cb00e4" + integrity sha512-YJYV0M27cyHHJIacaRsZRx5OETzK8KWjEGnix7UH3ngItYo4It0MUBzU6WNwqnwhbrPw5wx9KXluuoTZ85Gg7A== dependencies: "@types/hoist-non-react-statics" "^3.3.0" "@types/react" "*" hoist-non-react-statics "^3.3.0" redux "^4.0.0" -"@types/react-router-config@*", "@types/react-router-config@^5.0.6": - version "5.0.8" - resolved "https://registry.yarnpkg.com/@types/react-router-config/-/react-router-config-5.0.8.tgz#dd00654de4d79927570a4a8807c4a728feed59f3" - integrity sha512-zBzYZsr05V9xRG96oQ/xBXHy5+fDCX5wL7bboM0FFoOYQp9Gxmz8uvuKSkLesNWHlICl+W1l64F7fmp/KsOkuw== +"@types/react-router-config@*", "@types/react-router-config@^5.0.7": + version "5.0.11" + resolved "https://registry.yarnpkg.com/@types/react-router-config/-/react-router-config-5.0.11.tgz#2761a23acc7905a66a94419ee40294a65aaa483a" + integrity sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw== dependencies: "@types/history" "^4.7.11" "@types/react" "*" @@ -3599,9 +2935,9 @@ "@types/react" "*" "@types/react@*": - version "18.2.24" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.24.tgz#3c7d68c02e0205a472f04abe4a0c1df35d995c05" - integrity sha512-Ee0Jt4sbJxMu1iDcetZEIKQr99J1Zfb6D4F3qfUWoR1JpInkY1Wdg4WwCyBjL257D0+jGqSl1twBjV8iCaC0Aw== + version "18.2.42" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.42.tgz#6f6b11a904f6d96dda3c2920328a97011a00aba7" + integrity sha512-c1zEr96MjakLYus/wPnuWDo1/zErfdU9rNsIGmE+NV71nx88FG9Ttgo5dqorXTu/LImX2f63WBP986gJkMPNbA== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" @@ -3620,92 +2956,97 @@ integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== "@types/sax@^1.2.1": - version "1.2.5" - resolved "https://registry.yarnpkg.com/@types/sax/-/sax-1.2.5.tgz#4392799e1770d24b6dc8d0c66c8882f8e1c38b3d" - integrity sha512-9jWta97bBVC027/MShr3gLab8gPhKy4l6qpb+UJLF5pDm3501NvA7uvqVCW+REFtx00oTi6Cq9JzLwgq6evVgw== + version "1.2.7" + resolved "https://registry.yarnpkg.com/@types/sax/-/sax-1.2.7.tgz#ba5fe7df9aa9c89b6dff7688a19023dd2963091d" + integrity sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A== dependencies: "@types/node" "*" "@types/scheduler@*": - version "0.16.4" - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.4.tgz#fedc3e5b15c26dc18faae96bf1317487cb3658cf" - integrity sha512-2L9ifAGl7wmXwP4v3pN4p2FLhD0O1qsJpvKmNin5VA8+UvNVb447UDaAEV6UdrkA+m/Xs58U1RFps44x6TFsVQ== + version "0.16.8" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.8.tgz#ce5ace04cfeabe7ef87c0091e50752e36707deff" + integrity sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A== "@types/semver@^7.5.0": - version "7.5.3" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.3.tgz#9a726e116beb26c24f1ccd6850201e1246122e04" - integrity sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw== + version "7.5.6" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.6.tgz#c65b2bfce1bec346582c07724e3f8c1017a20339" + integrity sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A== "@types/send@*": - version "0.17.2" - resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.2.tgz#af78a4495e3c2b79bfbdac3955fdd50e03cc98f2" - integrity sha512-aAG6yRf6r0wQ29bkS+x97BIs64ZLxeE/ARwyS6wrldMm3C1MdKwCcnnEwMC1slI8wuxJOpiUH9MioC0A0i+GJw== + version "0.17.4" + resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.4.tgz#6619cd24e7270793702e4e6a4b958a9010cfc57a" + integrity sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA== dependencies: "@types/mime" "^1" "@types/node" "*" "@types/serve-index@^1.9.1": - version "1.9.2" - resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.2.tgz#cb26e775678a8526b73a5d980a147518740aaecd" - integrity sha512-asaEIoc6J+DbBKXtO7p2shWUpKacZOoMBEGBgPG91P8xhO53ohzHWGCs4ScZo5pQMf5ukQzVT9fhX1WzpHihig== + version "1.9.4" + resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.4.tgz#e6ae13d5053cb06ed36392110b4f9a49ac4ec898" + integrity sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug== dependencies: "@types/express" "*" "@types/serve-static@*", "@types/serve-static@^1.13.10": - version "1.15.3" - resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.3.tgz#2cfacfd1fd4520bbc3e292cca432d5e8e2e3ee61" - integrity sha512-yVRvFsEMrv7s0lGhzrggJjNOSmZCdgCjw9xWrPr/kNNLp6FaDfMC1KaYl3TSJ0c58bECwNBMoQrZJ8hA8E1eFg== + version "1.15.5" + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.5.tgz#15e67500ec40789a1e8c9defc2d32a896f05b033" + integrity sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ== dependencies: "@types/http-errors" "*" "@types/mime" "*" "@types/node" "*" "@types/sockjs@^0.3.33": - version "0.3.34" - resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.34.tgz#43e10e549b36d2ba2589278f00f81b5d7ccda167" - integrity sha512-R+n7qBFnm/6jinlteC9DBL5dGiDGjWAvjo4viUanpnc/dG1y7uDoacXPIQ/PQEg1fI912SMHIa014ZjRpvDw4g== + version "0.3.36" + resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.36.tgz#ce322cf07bcc119d4cbf7f88954f3a3bd0f67535" + integrity sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q== dependencies: "@types/node" "*" "@types/trusted-types@^2.0.2": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.4.tgz#2b38784cd16957d3782e8e2b31c03bc1d13b4d65" - integrity sha512-IDaobHimLQhjwsQ/NMwRVfa/yL7L/wriQPMhw1ZJall0KX6E1oxk29XMDeilW5qTIg5aoiqf5Udy8U/51aNoQQ== + version "2.0.7" + resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.7.tgz#baccb07a970b91707df3a3e8ba6896c57ead2d11" + integrity sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw== + +"@types/unist@*", "@types/unist@^3.0.0": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.2.tgz#6dd61e43ef60b34086287f83683a5c1b2dc53d20" + integrity sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ== -"@types/unist@^2", "@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3": - version "2.0.8" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.8.tgz#bb197b9639aa1a04cf464a617fe800cccd92ad5c" - integrity sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw== +"@types/unist@^2", "@types/unist@^2.0.0", "@types/unist@^2.0.2": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.10.tgz#04ffa7f406ab628f7f7e97ca23e290cd8ab15efc" + integrity sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA== "@types/ws@^8.5.5": - version "8.5.6" - resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.6.tgz#e9ad51f0ab79b9110c50916c9fcbddc36d373065" - integrity sha512-8B5EO9jLVCy+B58PLHvLDuOD8DRVMgQzq8d55SjLCOn9kqGyqOvy27exVaTio1q1nX5zLu8/6N0n2ThSxOM6tg== + version "8.5.10" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.10.tgz#4acfb517970853fa6574a3a6886791d04a396787" + integrity sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A== dependencies: "@types/node" "*" "@types/yargs-parser@*": - version "21.0.1" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.1.tgz#07773d7160494d56aa882d7531aac7319ea67c3b" - integrity sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ== + version "21.0.3" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" + integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== "@types/yargs@^17.0.8": - version "17.0.26" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.26.tgz#388e5002a8b284ad7b4599ba89920a6d74d8d79a" - integrity sha512-Y3vDy2X6zw/ZCumcwLpdhM5L7jmyGpmBCTYMHDLqT2IKVMYRRLdv6ZakA+wxhra6Z/3bwhNbNl9bDGXaFU+6rw== + version "17.0.32" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.32.tgz#030774723a2f7faafebf645f4e5a48371dca6229" + integrity sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog== dependencies: "@types/yargs-parser" "*" -"@typescript-eslint/eslint-plugin@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.7.3.tgz#d98046e9f7102d49a93d944d413c6055c47fafd7" - integrity sha512-vntq452UHNltxsaaN+L9WyuMch8bMd9CqJ3zhzTPXXidwbf5mqqKCVXEuvRZUqLJSTLeWE65lQwyXsRGnXkCTA== +"@typescript-eslint/eslint-plugin@6.13.2": + version "6.13.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.13.2.tgz#2e03506c5362a65e43cb132c37c9ce2d3cb51470" + integrity sha512-3+9OGAWHhk4O1LlcwLBONbdXsAhLjyCFogJY/cWy2lxdVJ2JrcTF2pTGMaLl2AE7U1l31n8Py4a8bx5DLf/0dQ== dependencies: "@eslint-community/regexpp" "^4.5.1" - "@typescript-eslint/scope-manager" "6.7.3" - "@typescript-eslint/type-utils" "6.7.3" - "@typescript-eslint/utils" "6.7.3" - "@typescript-eslint/visitor-keys" "6.7.3" + "@typescript-eslint/scope-manager" "6.13.2" + "@typescript-eslint/type-utils" "6.13.2" + "@typescript-eslint/utils" "6.13.2" + "@typescript-eslint/visitor-keys" "6.13.2" debug "^4.3.4" graphemer "^1.4.0" ignore "^5.2.4" @@ -3713,100 +3054,79 @@ semver "^7.5.4" ts-api-utils "^1.0.1" -"@typescript-eslint/parser@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.7.3.tgz#aaf40092a32877439e5957e18f2d6a91c82cc2fd" - integrity sha512-TlutE+iep2o7R8Lf+yoer3zU6/0EAUc8QIBB3GYBc1KGz4c4TRm83xwXUZVPlZ6YCLss4r77jbu6j3sendJoiQ== +"@typescript-eslint/parser@6.13.2": + version "6.13.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.13.2.tgz#390b79cc9a57a5f904d197a201cc4b6bc4f9afb9" + integrity sha512-MUkcC+7Wt/QOGeVlM8aGGJZy1XV5YKjTpq9jK6r6/iLsGXhBVaGP5N0UYvFsu9BFlSpwY9kMretzdBH01rkRXg== dependencies: - "@typescript-eslint/scope-manager" "6.7.3" - "@typescript-eslint/types" "6.7.3" - "@typescript-eslint/typescript-estree" "6.7.3" - "@typescript-eslint/visitor-keys" "6.7.3" + "@typescript-eslint/scope-manager" "6.13.2" + "@typescript-eslint/types" "6.13.2" + "@typescript-eslint/typescript-estree" "6.13.2" + "@typescript-eslint/visitor-keys" "6.13.2" debug "^4.3.4" -"@typescript-eslint/scope-manager@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.7.3.tgz#07e5709c9bdae3eaf216947433ef97b3b8b7d755" - integrity sha512-wOlo0QnEou9cHO2TdkJmzF7DFGvAKEnB82PuPNHpT8ZKKaZu6Bm63ugOTn9fXNJtvuDPanBc78lGUGGytJoVzQ== +"@typescript-eslint/scope-manager@6.13.2": + version "6.13.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.13.2.tgz#5fa4e4adace028dafac212c770640b94e7b61052" + integrity sha512-CXQA0xo7z6x13FeDYCgBkjWzNqzBn8RXaE3QVQVIUm74fWJLkJkaHmHdKStrxQllGh6Q4eUGyNpMe0b1hMkXFA== dependencies: - "@typescript-eslint/types" "6.7.3" - "@typescript-eslint/visitor-keys" "6.7.3" + "@typescript-eslint/types" "6.13.2" + "@typescript-eslint/visitor-keys" "6.13.2" -"@typescript-eslint/type-utils@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.7.3.tgz#c2c165c135dda68a5e70074ade183f5ad68f3400" - integrity sha512-Fc68K0aTDrKIBvLnKTZ5Pf3MXK495YErrbHb1R6aTpfK5OdSFj0rVN7ib6Tx6ePrZ2gsjLqr0s98NG7l96KSQw== +"@typescript-eslint/type-utils@6.13.2": + version "6.13.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.13.2.tgz#ebec2da14a6bb7122e0fd31eea72a382c39c6102" + integrity sha512-Qr6ssS1GFongzH2qfnWKkAQmMUyZSyOr0W54nZNU1MDfo+U4Mv3XveeLZzadc/yq8iYhQZHYT+eoXJqnACM1tw== dependencies: - "@typescript-eslint/typescript-estree" "6.7.3" - "@typescript-eslint/utils" "6.7.3" + "@typescript-eslint/typescript-estree" "6.13.2" + "@typescript-eslint/utils" "6.13.2" debug "^4.3.4" ts-api-utils "^1.0.1" -"@typescript-eslint/types@5.62.0": - version "5.62.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" - integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== - -"@typescript-eslint/types@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.7.3.tgz#0402b5628a63f24f2dc9d4a678e9a92cc50ea3e9" - integrity sha512-4g+de6roB2NFcfkZb439tigpAMnvEIg3rIjWQ+EM7IBaYt/CdJt6em9BJ4h4UpdgaBWdmx2iWsafHTrqmgIPNw== - -"@typescript-eslint/typescript-estree@5.62.0": - version "5.62.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" - integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== - dependencies: - "@typescript-eslint/types" "5.62.0" - "@typescript-eslint/visitor-keys" "5.62.0" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" +"@typescript-eslint/types@6.13.2": + version "6.13.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.13.2.tgz#c044aac24c2f6cefb8e921e397acad5417dd0ae6" + integrity sha512-7sxbQ+EMRubQc3wTfTsycgYpSujyVbI1xw+3UMRUcrhSy+pN09y/lWzeKDbvhoqcRbHdc+APLs/PWYi/cisLPg== -"@typescript-eslint/typescript-estree@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.7.3.tgz#ec5bb7ab4d3566818abaf0e4a8fa1958561b7279" - integrity sha512-YLQ3tJoS4VxLFYHTw21oe1/vIZPRqAO91z6Uv0Ss2BKm/Ag7/RVQBcXTGcXhgJMdA4U+HrKuY5gWlJlvoaKZ5g== +"@typescript-eslint/typescript-estree@6.13.2": + version "6.13.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.13.2.tgz#ae556ee154c1acf025b48d37c3ef95a1d55da258" + integrity sha512-SuD8YLQv6WHnOEtKv8D6HZUzOub855cfPnPMKvdM/Bh1plv1f7Q/0iFUDLKKlxHcEstQnaUU4QZskgQq74t+3w== dependencies: - "@typescript-eslint/types" "6.7.3" - "@typescript-eslint/visitor-keys" "6.7.3" + "@typescript-eslint/types" "6.13.2" + "@typescript-eslint/visitor-keys" "6.13.2" debug "^4.3.4" globby "^11.1.0" is-glob "^4.0.3" semver "^7.5.4" ts-api-utils "^1.0.1" -"@typescript-eslint/utils@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.7.3.tgz#96c655816c373135b07282d67407cb577f62e143" - integrity sha512-vzLkVder21GpWRrmSR9JxGZ5+ibIUSudXlW52qeKpzUEQhRSmyZiVDDj3crAth7+5tmN1ulvgKaCU2f/bPRCzg== +"@typescript-eslint/utils@6.13.2", "@typescript-eslint/utils@^6.5.0": + version "6.13.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.13.2.tgz#8eb89e53adc6d703a879b131e528807245486f89" + integrity sha512-b9Ptq4eAZUym4idijCRzl61oPCwwREcfDI8xGk751Vhzig5fFZR9CyzDz4Sp/nxSLBYxUPyh4QdIDqWykFhNmQ== dependencies: "@eslint-community/eslint-utils" "^4.4.0" "@types/json-schema" "^7.0.12" "@types/semver" "^7.5.0" - "@typescript-eslint/scope-manager" "6.7.3" - "@typescript-eslint/types" "6.7.3" - "@typescript-eslint/typescript-estree" "6.7.3" + "@typescript-eslint/scope-manager" "6.13.2" + "@typescript-eslint/types" "6.13.2" + "@typescript-eslint/typescript-estree" "6.13.2" semver "^7.5.4" -"@typescript-eslint/visitor-keys@5.62.0": - version "5.62.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" - integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== - dependencies: - "@typescript-eslint/types" "5.62.0" - eslint-visitor-keys "^3.3.0" - -"@typescript-eslint/visitor-keys@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.7.3.tgz#83809631ca12909bd2083558d2f93f5747deebb2" - integrity sha512-HEVXkU9IB+nk9o63CeICMHxFWbHWr3E1mpilIQBe9+7L/lH97rleFLVtYsfnWB+JVMaiFnEaxvknvmIzX+CqVg== +"@typescript-eslint/visitor-keys@6.13.2": + version "6.13.2" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.13.2.tgz#e0a4a80cf842bb08e6127b903284166ac4a5594c" + integrity sha512-OGznFs0eAQXJsp+xSd6k/O1UbFi/K/L7WjqeRoFE7vadjAF9y0uppXhYNQNEqygjou782maGClOoZwPqF0Drlw== dependencies: - "@typescript-eslint/types" "6.7.3" + "@typescript-eslint/types" "6.13.2" eslint-visitor-keys "^3.4.1" +"@ungap/structured-clone@^1.0.0", "@ungap/structured-clone@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" + integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== + "@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5": version "1.11.6" resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.6.tgz#db046555d3c413f8966ca50a95176a0e2c642e24" @@ -3971,20 +3291,20 @@ acorn-import-assertions@^1.9.0: resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac" integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== -acorn-jsx@^5.3.2: +acorn-jsx@^5.0.0, acorn-jsx@^5.3.2: version "5.3.2" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -acorn-walk@^8.0.0, acorn-walk@^8.1.1: - version "8.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" - integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== +acorn-walk@^8.0.0: + version "8.3.1" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.1.tgz#2f10f5b69329d90ae18c58bf1fa8fccd8b959a43" + integrity sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw== -acorn@^8.0.4, acorn@^8.4.1, acorn@^8.7.1, acorn@^8.8.2, acorn@^8.9.0: - version "8.10.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" - integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== +acorn@^8.0.0, acorn@^8.0.4, acorn@^8.7.1, acorn@^8.8.2, acorn@^8.9.0: + version "8.11.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.2.tgz#ca0d78b51895be5390a5903c5b3bdcdaf78ae40b" + integrity sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w== address@^1.0.1, address@^1.1.2: version "1.2.2" @@ -4048,14 +3368,14 @@ ajv@^8.0.0, ajv@^8.11.0, ajv@^8.6.0, ajv@^8.9.0: require-from-string "^2.0.2" uri-js "^4.2.2" -algoliasearch-helper@^3.10.0: - version "3.14.2" - resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-3.14.2.tgz#c34cfe6cefcfecd65c60bcb8bf9b68134472d28c" - integrity sha512-FjDSrjvQvJT/SKMW74nPgFpsoPUwZCzGbCqbp8HhBFfSk/OvNFxzCaCmuO0p7AWeLy1gD+muFwQEkBwcl5H4pg== +algoliasearch-helper@^3.13.3: + version "3.16.0" + resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-3.16.0.tgz#42c7c8cecf5fa91fb9dd467011fa68c9050be7dc" + integrity sha512-RxOtBafSQwyqD5BLO/q9VsVw/zuNz8kjb51OZhCIWLr33uvKB+vrRis+QK+JFlNQXbXf+w28fsTWiBupc1pHew== dependencies: "@algolia/events" "^4.0.1" -algoliasearch@^4.13.1, algoliasearch@^4.19.1: +algoliasearch@^4.18.0, algoliasearch@^4.19.1: version "4.20.0" resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.20.0.tgz#700c2cb66e14f8a288460036c7b2a554d0d93cf4" integrity sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g== @@ -4075,7 +3395,7 @@ algoliasearch@^4.13.1, algoliasearch@^4.19.1: "@algolia/requester-node-http" "4.20.0" "@algolia/transporter" "4.20.0" -ansi-align@^3.0.0, ansi-align@^3.0.1: +ansi-align@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59" integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== @@ -4089,12 +3409,12 @@ ansi-escapes@^4.2.1: dependencies: type-fest "^0.21.3" -ansi-escapes@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-5.0.0.tgz#b6a0caf0eef0c41af190e9a749e0c00ec04bb2a6" - integrity sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA== +ansi-escapes@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-6.2.0.tgz#8a13ce75286f417f1963487d86ba9f90dccf9947" + integrity sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw== dependencies: - type-fest "^1.0.2" + type-fest "^3.0.0" ansi-html-community@^0.0.8: version "0.0.8" @@ -4125,7 +3445,7 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -ansi-styles@^6.0.0, ansi-styles@^6.1.0: +ansi-styles@^6.0.0, ansi-styles@^6.1.0, ansi-styles@^6.2.1: version "6.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== @@ -4143,11 +3463,6 @@ anymatch@~3.1.2: normalize-path "^3.0.0" picomatch "^2.0.4" -arg@^4.1.0: - version "4.1.3" - resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" - integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== - arg@^5.0.0: version "5.0.2" resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" @@ -4165,7 +3480,7 @@ argparse@^2.0.1: resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -aria-query@^5.1.3: +aria-query@^5.3.0: version "5.3.0" resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e" integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== @@ -4195,7 +3510,7 @@ array-ify@^1.0.0: resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== -array-includes@^3.1.6: +array-includes@^3.1.6, array-includes@^3.1.7: version "3.1.7" resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.7.tgz#8cd2e01b26f7a3086cbc87271593fe921c62abda" integrity sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ== @@ -4221,7 +3536,7 @@ array.prototype.flat@^1.3.1: es-abstract "^1.22.1" es-shim-unscopables "^1.0.0" -array.prototype.flatmap@^1.3.1: +array.prototype.flatmap@^1.3.1, array.prototype.flatmap@^1.3.2: version "1.3.2" resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz#c9a7c6831db8e719d6ce639190146c24bbd3e527" integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ== @@ -4260,15 +3575,10 @@ arrify@^1.0.1: resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== -asap@~2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" - integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== - -asciinema-player@3.6.2: - version "3.6.2" - resolved "https://registry.yarnpkg.com/asciinema-player/-/asciinema-player-3.6.2.tgz#f62133f8d38875839881cd15ded713c6022021bd" - integrity sha512-698O3/Vm2+V6uFlc6oYma67IZByQsiNpduhEGhuqrxBmKpIYpgouLNNJ3R8DrRPTNNMISHfnLgvAp1x8ChgrTw== +asciinema-player@3.6.3: + version "3.6.3" + resolved "https://registry.yarnpkg.com/asciinema-player/-/asciinema-player-3.6.3.tgz#b029290df39805180c986656ce39b8517b351422" + integrity sha512-62aDgLpbuduhmpFfNgPOzf6fOluACLsftVnjpWJjUXX6dqhqTckFqWoJ+ayA0XjSlZ9l9wXTcJqRqvAAIpMblg== dependencies: "@babel/runtime" "^7.21.0" solid-js "^1.3.0" @@ -4294,10 +3604,15 @@ assert@^2.0.0: object.assign "^4.1.4" util "^0.12.5" -ast-types-flow@^0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" - integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== +ast-types-flow@^0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.8.tgz#0a85e1c92695769ac13a428bb653e7538bea27d6" + integrity sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ== + +astring@^1.8.0: + version "1.8.6" + resolved "https://registry.yarnpkg.com/astring/-/astring-1.8.6.tgz#2c9c157cf1739d67561c56ba896e6948f6b93731" + integrity sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg== async@3.2.1: version "3.2.1" @@ -4305,9 +3620,9 @@ async@3.2.1: integrity sha512-XdD5lRO/87udXCMC9meWdYiR+Nq6ZjUfXidViUZGu2F1MO4T3XwZ1et0hb2++BgLfhyJwy44BGB/yx80ABx8hg== async@^3.2.3, async@^3.2.4: - version "3.2.4" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" - integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== + version "3.2.5" + resolved "https://registry.yarnpkg.com/async/-/async-3.2.5.tgz#ebd52a8fdaf7a2289a24df399f8d8485c8a46b66" + integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg== asynciterator.prototype@^1.0.0: version "1.0.0" @@ -4321,7 +3636,7 @@ at-least-node@^1.0.0: resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== -autoprefixer@^10.4.12, autoprefixer@^10.4.7: +autoprefixer@^10.4.12, autoprefixer@^10.4.14: version "10.4.16" resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.16.tgz#fad1411024d8670880bdece3970aa72e3572feb8" integrity sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ== @@ -4338,42 +3653,25 @@ available-typed-arrays@^1.0.5: resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== -axe-core@^4.6.2: - version "4.8.2" - resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.8.2.tgz#2f6f3cde40935825cf4465e3c1c9e77b240ff6ae" - integrity sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g== - -axios@^0.25.0: - version "0.25.0" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.25.0.tgz#349cfbb31331a9b4453190791760a8d35b093e0a" - integrity sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g== - dependencies: - follow-redirects "^1.14.7" +axe-core@=4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.0.tgz#34ba5a48a8b564f67e103f0aa5768d76e15bbbbf" + integrity sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ== -axobject-query@^3.1.1: +axobject-query@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.2.1.tgz#39c378a6e3b06ca679f29138151e45b2b32da62a" integrity sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg== dependencies: dequal "^2.0.3" -babel-loader@^8.2.5: - version "8.3.0" - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.3.0.tgz#124936e841ba4fe8176786d6ff28add1f134d6a8" - integrity sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q== - dependencies: - find-cache-dir "^3.3.1" - loader-utils "^2.0.0" - make-dir "^3.1.0" - schema-utils "^2.6.5" - -babel-plugin-apply-mdx-type-prop@1.6.22: - version "1.6.22" - resolved "https://registry.yarnpkg.com/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz#d216e8fd0de91de3f1478ef3231e05446bc8705b" - integrity sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ== +babel-loader@^9.1.3: + version "9.1.3" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.3.tgz#3d0e01b4e69760cc694ee306fe16d358aa1c6f9a" + integrity sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw== dependencies: - "@babel/helper-plugin-utils" "7.10.4" - "@mdx-js/util" "1.6.22" + find-cache-dir "^4.0.0" + schema-utils "^4.0.0" babel-plugin-dynamic-import-node@^2.3.3: version "2.3.3" @@ -4382,36 +3680,29 @@ babel-plugin-dynamic-import-node@^2.3.3: dependencies: object.assign "^4.1.0" -babel-plugin-extract-import-names@1.6.22: - version "1.6.22" - resolved "https://registry.yarnpkg.com/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz#de5f9a28eb12f3eb2578bf74472204e66d1a13dc" - integrity sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ== - dependencies: - "@babel/helper-plugin-utils" "7.10.4" - -babel-plugin-polyfill-corejs2@^0.4.5: - version "0.4.5" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz#8097b4cb4af5b64a1d11332b6fb72ef5e64a054c" - integrity sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg== +babel-plugin-polyfill-corejs2@^0.4.6: + version "0.4.6" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz#b2df0251d8e99f229a8e60fc4efa9a68b41c8313" + integrity sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q== dependencies: "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.4.2" + "@babel/helper-define-polyfill-provider" "^0.4.3" semver "^6.3.1" -babel-plugin-polyfill-corejs3@^0.8.3: - version "0.8.4" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.4.tgz#1fac2b1dcef6274e72b3c72977ed8325cb330591" - integrity sha512-9l//BZZsPR+5XjyJMPtZSK4jv0BsTO1zDac2GC6ygx9WLGlcsnRd1Co0B2zT5fF5Ic6BZy+9m3HNZ3QcOeDKfg== +babel-plugin-polyfill-corejs3@^0.8.5: + version "0.8.6" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz#25c2d20002da91fe328ff89095c85a391d6856cf" + integrity sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ== dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.2" - core-js-compat "^3.32.2" + "@babel/helper-define-polyfill-provider" "^0.4.3" + core-js-compat "^3.33.1" -babel-plugin-polyfill-regenerator@^0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz#80d0f3e1098c080c8b5a65f41e9427af692dc326" - integrity sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA== +babel-plugin-polyfill-regenerator@^0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz#d4c49e4b44614607c13fb769bcd85c72bb26a4a5" + integrity sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw== dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.2" + "@babel/helper-define-polyfill-provider" "^0.4.3" bail@^1.0.0: version "1.0.5" @@ -4428,11 +3719,6 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -base16@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/base16/-/base16-1.0.0.tgz#e297f60d7ec1014a7a971a39ebc8a98c0b681e70" - integrity sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ== - base64-js@^1.3.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" @@ -4449,9 +3735,9 @@ before-after-hook@^2.2.0: integrity sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ== big-integer@^1.6.44: - version "1.6.51" - resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686" - integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg== + version "1.6.52" + resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.52.tgz#60a887f3047614a8e1bffe5d7173490a97dc8c85" + integrity sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg== big.js@^5.2.2: version "5.2.2" @@ -4477,7 +3763,7 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== -bn.js@^5.0.0, bn.js@^5.1.1: +bn.js@^5.0.0, bn.js@^5.2.1: version "5.2.1" resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== @@ -4515,20 +3801,6 @@ boolbase@^1.0.0: resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== -boxen@^5.0.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/boxen/-/boxen-5.1.2.tgz#788cb686fc83c1f486dfa8a40c68fc2b831d2b50" - integrity sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ== - dependencies: - ansi-align "^3.0.0" - camelcase "^6.2.0" - chalk "^4.1.0" - cli-boxes "^2.2.1" - string-width "^4.2.2" - type-fest "^0.20.2" - widest-line "^3.1.0" - wrap-ansi "^7.0.0" - boxen@^6.2.1: version "6.2.1" resolved "https://registry.yarnpkg.com/boxen/-/boxen-6.2.1.tgz#b098a2278b2cd2845deef2dff2efc38d329b434d" @@ -4543,6 +3815,20 @@ boxen@^6.2.1: widest-line "^4.0.1" wrap-ansi "^8.0.1" +boxen@^7.0.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-7.1.1.tgz#f9ba525413c2fec9cdb88987d835c4f7cad9c8f4" + integrity sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog== + dependencies: + ansi-align "^3.0.1" + camelcase "^7.0.1" + chalk "^5.2.0" + cli-boxes "^3.0.0" + string-width "^5.1.2" + type-fest "^2.13.0" + widest-line "^4.0.1" + wrap-ansi "^8.1.0" + bplist-parser@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e" @@ -4608,7 +3894,7 @@ browserify-des@^1.0.0: inherits "^2.0.1" safe-buffer "^5.1.2" -browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: +browserify-rsa@^4.0.0, browserify-rsa@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== @@ -4617,19 +3903,19 @@ browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: randombytes "^2.0.1" browserify-sign@^4.0.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3" - integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg== + version "4.2.2" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.2.tgz#e78d4b69816d6e3dd1c747e64e9947f9ad79bc7e" + integrity sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg== dependencies: - bn.js "^5.1.1" - browserify-rsa "^4.0.1" + bn.js "^5.2.1" + browserify-rsa "^4.1.0" create-hash "^1.2.0" create-hmac "^1.1.7" - elliptic "^6.5.3" + elliptic "^6.5.4" inherits "^2.0.4" - parse-asn1 "^5.1.5" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" + parse-asn1 "^5.1.6" + readable-stream "^3.6.2" + safe-buffer "^5.2.1" browserify-zlib@^0.2.0: version "0.2.0" @@ -4638,14 +3924,14 @@ browserify-zlib@^0.2.0: dependencies: pako "~1.0.5" -browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.18.1, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.21.9, browserslist@^4.22.1: - version "4.22.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.1.tgz#ba91958d1a59b87dab6fed8dfbcb3da5e2e9c619" - integrity sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ== +browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.18.1, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.21.9, browserslist@^4.22.2: + version "4.22.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.2.tgz#704c4943072bd81ea18997f3bd2180e89c77874b" + integrity sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A== dependencies: - caniuse-lite "^1.0.30001541" - electron-to-chromium "^1.4.535" - node-releases "^2.0.13" + caniuse-lite "^1.0.30001565" + electron-to-chromium "^1.4.601" + node-releases "^2.0.14" update-browserslist-db "^1.0.13" buffer-from@^1.0.0: @@ -4701,31 +3987,37 @@ bytes@3.1.2: resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== -cacheable-request@^6.0.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" - integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== +cacheable-lookup@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz#3476a8215d046e5a3202a9209dd13fec1f933a27" + integrity sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w== + +cacheable-request@^10.2.8: + version "10.2.14" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-10.2.14.tgz#eb915b665fda41b79652782df3f553449c406b9d" + integrity sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ== dependencies: - clone-response "^1.0.2" - get-stream "^5.1.0" - http-cache-semantics "^4.0.0" - keyv "^3.0.0" - lowercase-keys "^2.0.0" - normalize-url "^4.1.0" - responselike "^1.0.2" + "@types/http-cache-semantics" "^4.0.2" + get-stream "^6.0.1" + http-cache-semantics "^4.1.1" + keyv "^4.5.3" + mimic-response "^4.0.0" + normalize-url "^8.0.0" + responselike "^3.0.0" cachedir@2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw== -call-bind@^1.0.0, call-bind@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== +call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.4, call-bind@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.5.tgz#6fa2b7845ce0ea49bf4d8b9ef64727a2c2e2e513" + integrity sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ== dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" + function-bind "^1.1.2" + get-intrinsic "^1.2.1" + set-function-length "^1.1.1" call-me-maybe@^1.0.1: version "1.0.2" @@ -4745,11 +4037,6 @@ camel-case@^4.1.2: pascal-case "^3.1.2" tslib "^2.0.3" -camelcase-css@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" - integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== - camelcase-keys@^6.2.2: version "6.2.2" resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" @@ -4769,6 +4056,11 @@ camelcase@^6.2.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== +camelcase@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-7.0.1.tgz#f02e50af9fd7782bc8b88a3558c32fd3a388f048" + integrity sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw== + caniuse-api@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" @@ -4779,17 +4071,17 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001538, caniuse-lite@^1.0.30001541: - version "1.0.30001542" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001542.tgz#823ddb5aed0a70d5e2bfb49126478e84e9514b85" - integrity sha512-UrtAXVcj1mvPBFQ4sKd38daP8dEcXXr5sQe6QNNinaPd0iA/cxg9/l3VrSdL73jgw5sKyuQ6jNgiKO12W3SsVA== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001538, caniuse-lite@^1.0.30001565: + version "1.0.30001566" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001566.tgz#61a8e17caf3752e3e426d4239c549ebbb37fef0d" + integrity sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA== -ccount@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043" - integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg== +ccount@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/ccount/-/ccount-2.0.1.tgz#17a3bf82302e0870d6da43a01311a8bc02a3ecf5" + integrity sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg== -chalk@5.3.0: +chalk@5.3.0, chalk@^5.0.1, chalk@^5.2.0: version "5.3.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== @@ -4811,11 +4103,26 @@ chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" +char-regex@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" + integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== + +character-entities-html4@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz#1f1adb940c971a4b22ba39ddca6b618dc6e56b2b" + integrity sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA== + character-entities-legacy@^1.0.0: version "1.1.4" resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== +character-entities-legacy@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz#76bc83a90738901d7bc223a9e93759fdd560125b" + integrity sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ== + character-entities@^1.0.0: version "1.2.4" resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b" @@ -4831,6 +4138,11 @@ character-reference-invalid@^1.0.0: resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560" integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== +character-reference-invalid@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz#85c66b041e43b47210faf401278abf808ac45cb9" + integrity sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw== + chardet@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" @@ -4886,15 +4198,10 @@ chrome-trace-event@^1.0.2: resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== -ci-info@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" - integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== - ci-info@^3.2.0: - version "3.8.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" - integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== + version "3.9.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" + integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: version "1.0.4" @@ -4904,10 +4211,10 @@ cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: inherits "^2.0.1" safe-buffer "^5.0.1" -clean-css@^5.2.2, clean-css@^5.3.0: - version "5.3.2" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.2.tgz#70ecc7d4d4114921f5d298349ff86a31a9975224" - integrity sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww== +clean-css@^5.2.2, clean-css@^5.3.2, clean-css@~5.3.2: + version "5.3.3" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.3.tgz#b330653cd3bd6b75009cc25c714cae7b93351ccd" + integrity sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg== dependencies: source-map "~0.6.0" @@ -4916,11 +4223,6 @@ clean-stack@^2.0.0: resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== -cli-boxes@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" - integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== - cli-boxes@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-3.0.0.tgz#71a10c716feeba005e4504f36329ef0b17cf3145" @@ -4941,11 +4243,11 @@ cli-cursor@^4.0.0: restore-cursor "^4.0.0" cli-spinners@^2.5.0: - version "2.9.1" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.1.tgz#9c0b9dad69a6d47cbb4333c14319b060ed395a35" - integrity sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ== + version "2.9.2" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41" + integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== -cli-table3@^0.6.2: +cli-table3@^0.6.3: version "0.6.3" resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2" integrity sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg== @@ -4954,13 +4256,13 @@ cli-table3@^0.6.2: optionalDependencies: "@colors/colors" "1.5.0" -cli-truncate@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-3.1.0.tgz#3f23ab12535e3d73e839bb43e73c9de487db1389" - integrity sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA== +cli-truncate@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-4.0.0.tgz#6cc28a2924fee9e25ce91e973db56c7066e6172a" + integrity sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA== dependencies: slice-ansi "^5.0.0" - string-width "^5.0.0" + string-width "^7.0.0" cli-width@^3.0.0: version "3.0.0" @@ -4994,13 +4296,6 @@ clone-deep@^4.0.1: kind-of "^6.0.2" shallow-clone "^3.0.0" -clone-response@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz#af2032aa47816399cf5f0a1d0db902f517abb8c3" - integrity sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA== - dependencies: - mimic-response "^1.0.0" - clone@^1.0.2: version "1.0.4" resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" @@ -5011,15 +4306,15 @@ clsx@2.0.0, clsx@^2.0.0: resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.0.0.tgz#12658f3fd98fafe62075595a5c30e43d18f3d00b" integrity sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q== -clsx@^1.1.1, clsx@^1.2.1: +clsx@^1.1.1: version "1.2.1" resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== -collapse-white-space@^1.0.2: - version "1.0.6" - resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287" - integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ== +collapse-white-space@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-2.1.0.tgz#640257174f9f42c740b40f3b55ee752924feefca" + integrity sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw== color-convert@^1.9.0: version "1.9.3" @@ -5065,20 +4360,15 @@ combine-promises@^1.1.0: resolved "https://registry.yarnpkg.com/combine-promises/-/combine-promises-1.2.0.tgz#5f2e68451862acf85761ded4d9e2af7769c2ca6a" integrity sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ== -comma-separated-tokens@^1.0.0: - version "1.0.8" - resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea" - integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw== - comma-separated-tokens@^2.0.0: version "2.0.3" resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee" integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg== -commander@11.0.0: - version "11.0.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-11.0.0.tgz#43e19c25dbedc8256203538e8d7e9346877a6f67" - integrity sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ== +commander@11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-11.1.0.tgz#62fdce76006a68e5c1ab3314dc92e800eb83d906" + integrity sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ== commander@2.20.3, commander@^2.20.0: version "2.20.3" @@ -5090,6 +4380,11 @@ commander@7, commander@^7.2.0: resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== +commander@^10.0.0: + version "10.0.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" + integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== + commander@^4.0.0: version "4.1.1" resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" @@ -5100,15 +4395,15 @@ commander@^5.1.0: resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== -commander@^8.0.0, commander@^8.3.0: +commander@^8.3.0: version "8.3.0" resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== -comment-parser@^1.1.2: - version "1.4.0" - resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-1.4.0.tgz#0f8c560f59698193854f12884c20c0e39a26d32c" - integrity sha512-QLyTNiZ2KDOibvFPlZ6ZngVsZ/0gYnE6uTXi5aoDg8ed3AkJAz4sEje3Y8a29hQ1s6A99MZXe47fLAXQ1rTqaw== +comment-parser@^1.4.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-1.4.1.tgz#bdafead37961ac079be11eb7ec65c4d021eaf9cc" + integrity sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg== commitizen@4.3.0, commitizen@^4.0.3: version "4.3.0" @@ -5130,16 +4425,16 @@ commitizen@4.3.0, commitizen@^4.0.3: strip-bom "4.0.0" strip-json-comments "3.1.1" +common-path-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-3.0.0.tgz#7d007a7e07c58c4b4d5f433131a19141b29f11e0" + integrity sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== + common-tags@^1.8.0: version "1.8.2" resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz#94ebb3c076d26032745fd54face7f688ef5ac9c6" integrity sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA== -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== - compare-func@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" @@ -5192,17 +4487,24 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -configstore@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96" - integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== +config-chain@^1.1.11: + version "1.1.13" + resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" + integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== dependencies: - dot-prop "^5.2.0" - graceful-fs "^4.1.2" - make-dir "^3.0.0" - unique-string "^2.0.0" - write-file-atomic "^3.0.0" - xdg-basedir "^4.0.0" + ini "^1.3.4" + proto-list "~1.2.1" + +configstore@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-6.0.0.tgz#49eca2ebc80983f77e09394a1a56e0aca8235566" + integrity sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA== + dependencies: + dot-prop "^6.0.1" + graceful-fs "^4.2.6" + unique-string "^3.0.0" + write-file-atomic "^3.0.3" + xdg-basedir "^5.0.1" connect-history-api-fallback@^2.0.0: version "2.0.0" @@ -5241,17 +4543,17 @@ content-type@~1.0.4: resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== -conventional-changelog-angular@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-6.0.0.tgz#a9a9494c28b7165889144fd5b91573c4aa9ca541" - integrity sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg== +conventional-changelog-angular@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz#5eec8edbff15aa9b1680a8dcfbd53e2d7eb2ba7a" + integrity sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ== dependencies: compare-func "^2.0.0" -conventional-changelog-conventionalcommits@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-6.1.0.tgz#3bad05f4eea64e423d3d90fc50c17d2c8cf17652" - integrity sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw== +conventional-changelog-conventionalcommits@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz#aa5da0f1b2543094889e8cf7616ebe1a8f5c70d5" + integrity sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w== dependencies: compare-func "^2.0.0" @@ -5260,20 +4562,15 @@ conventional-commit-types@^3.0.0: resolved "https://registry.yarnpkg.com/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz#7c9214e58eae93e85dd66dbfbafe7e4fffa2365b" integrity sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg== -conventional-commits-parser@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz#02ae1178a381304839bce7cea9da5f1b549ae505" - integrity sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg== +conventional-commits-parser@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz#57f3594b81ad54d40c1b4280f04554df28627d9a" + integrity sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA== dependencies: JSONStream "^1.3.5" - is-text-path "^1.0.1" - meow "^8.1.2" - split2 "^3.2.2" - -convert-source-map@^1.7.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" - integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + is-text-path "^2.0.0" + meow "^12.0.1" + split2 "^4.0.0" convert-source-map@^2.0.0: version "2.0.0" @@ -5290,7 +4587,7 @@ cookie@0.5.0: resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== -copy-text-to-clipboard@^3.0.1, copy-text-to-clipboard@^3.1.0: +copy-text-to-clipboard@^3.1.0, copy-text-to-clipboard@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz#0202b2d9bdae30a49a53f898626dcc3b49ad960b" integrity sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q== @@ -5307,22 +4604,22 @@ copy-webpack-plugin@^11.0.0: schema-utils "^4.0.0" serialize-javascript "^6.0.0" -core-js-compat@^3.31.0, core-js-compat@^3.32.2: - version "3.33.0" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.33.0.tgz#24aa230b228406450b2277b7c8bfebae932df966" - integrity sha512-0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw== +core-js-compat@^3.31.0, core-js-compat@^3.33.1: + version "3.34.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.34.0.tgz#61a4931a13c52f8f08d924522bba65f8c94a5f17" + integrity sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA== dependencies: - browserslist "^4.22.1" + browserslist "^4.22.2" core-js-pure@^3.30.2: - version "3.33.0" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.33.0.tgz#938a28754b4d82017a7a8cbd2727b1abecc63591" - integrity sha512-FKSIDtJnds/YFIEaZ4HszRX7hkxGpNKM7FC9aJ9WLJbSd3lD4vOltFuVIBLR8asSx9frkTSqL0dw90SKQxgKrg== + version "3.34.0" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.34.0.tgz#981e462500708664c91b827a75b011f04a8134a0" + integrity sha512-pmhivkYXkymswFfbXsANmBAewXx86UBfmagP+w0wkK06kLsLlTK5oQmsURPivzMkIBQiYq2cjamcZExIwlFQIg== -core-js@^3.23.3: - version "3.33.0" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.33.0.tgz#70366dbf737134761edb017990cf5ce6c6369c40" - integrity sha512-HoZr92+ZjFEKar5HS6MC776gYslNOKHt75mEBKWKnPeFDpZ6nH5OeF3S6HFT1mUAUZKrzkez05VboaX8myjSuw== +core-js@^3.31.1: + version "3.34.0" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.34.0.tgz#5705e6ad5982678612e96987d05b27c6c7c274a5" + integrity sha512-aDdvlDder8QmY91H88GzNi9EtQi2TjvQhpCX6B1v/dAZHU1AuLgHvRh54RiOerpEhEW46Tkf+vgAViB/CWC0ag== core-util-is@~1.0.0: version "1.0.3" @@ -5343,10 +4640,12 @@ cose-base@^2.2.0: dependencies: layout-base "^2.0.0" -cosmiconfig-typescript-loader@^4.0.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.4.0.tgz#f3feae459ea090f131df5474ce4b1222912319f9" - integrity sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw== +cosmiconfig-typescript-loader@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-5.0.0.tgz#0d3becfe022a871f7275ceb2397d692e06045dc8" + integrity sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA== + dependencies: + jiti "^1.19.1" cosmiconfig@^6.0.0: version "6.0.0" @@ -5370,7 +4669,7 @@ cosmiconfig@^7.0.1: path-type "^4.0.0" yaml "^1.10.0" -cosmiconfig@^8.0.0, cosmiconfig@^8.2.0: +cosmiconfig@^8.2.0, cosmiconfig@^8.3.6: version "8.3.6" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3" integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA== @@ -5411,18 +4710,6 @@ create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: safe-buffer "^5.0.1" sha.js "^2.4.8" -create-require@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" - integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== - -cross-fetch@^3.1.5: - version "3.1.8" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.8.tgz#0327eba65fd68a7d119f8fb2bf9334a1a7956f82" - integrity sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg== - dependencies: - node-fetch "^2.6.12" - cross-spawn@^7.0.2, cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" @@ -5450,15 +4737,22 @@ crypto-browserify@^3.12.0: randomfill "^1.0.3" crypto-js@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf" - integrity sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw== + version "4.2.0" + resolved "https://registry.yarnpkg.com/crypto-js/-/crypto-js-4.2.0.tgz#4d931639ecdfd12ff80e8186dba6af2c2e856631" + integrity sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q== crypto-random-string@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== +crypto-random-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-4.0.0.tgz#5a3cc53d7dd86183df5da0312816ceeeb5bb1fc2" + integrity sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA== + dependencies: + type-fest "^1.0.1" + css-declaration-sorter@^6.3.1: version "6.4.1" resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz#28beac7c20bad7f1775be3a7129d7eae409a3a71" @@ -5469,7 +4763,7 @@ css-declaration-sorter@^7.1.1: resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-7.1.1.tgz#9796bcc257b4647c39993bda8d431ce32b666f80" integrity sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ== -css-loader@^6.7.1: +css-loader@^6.8.1: version "6.8.1" resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.8.1.tgz#0f8f52699f60f5e679eab4ec0fcd68b8e8a50a88" integrity sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g== @@ -5483,7 +4777,7 @@ css-loader@^6.7.1: postcss-value-parser "^4.2.0" semver "^7.3.8" -css-minimizer-webpack-plugin@^4.0.0: +css-minimizer-webpack-plugin@^4.2.2: version "4.2.2" resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-4.2.2.tgz#79f6199eb5adf1ff7ba57f105e3752d15211eb35" integrity sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA== @@ -5551,7 +4845,7 @@ cssesc@^3.0.0: resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== -cssnano-preset-advanced@^5.3.8: +cssnano-preset-advanced@^5.3.10: version "5.3.10" resolved "https://registry.yarnpkg.com/cssnano-preset-advanced/-/cssnano-preset-advanced-5.3.10.tgz#25558a1fbf3a871fb6429ce71e41be7f5aca6eef" integrity sha512-fnYJyCS9jgMU+cmHO1rPSPf9axbQyD7iUhLO5Df6O4G+fKIOMps+ZbU0PdGFejFBBZ3Pftf18fn1eG7MAPUSWQ== @@ -5603,7 +4897,7 @@ cssnano-utils@^3.1.0: resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861" integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA== -cssnano@^5.1.12, cssnano@^5.1.8: +cssnano@^5.1.15, cssnano@^5.1.8: version "5.1.15" resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.15.tgz#ded66b5480d5127fcb44dac12ea5a983755136bf" integrity sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw== @@ -5612,6 +4906,13 @@ cssnano@^5.1.12, cssnano@^5.1.8: lilconfig "^2.0.3" yaml "^1.10.2" +csso@5.0.5: + version "5.0.5" + resolved "https://registry.yarnpkg.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6" + integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ== + dependencies: + css-tree "~2.2.0" + csso@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" @@ -5619,17 +4920,10 @@ csso@^4.2.0: dependencies: css-tree "^1.1.2" -csso@^5.0.5: - version "5.0.5" - resolved "https://registry.yarnpkg.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6" - integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ== - dependencies: - css-tree "~2.2.0" - csstype@^3.0.2, csstype@^3.1.0: - version "3.1.2" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" - integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== + version "3.1.3" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" + integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== cytoscape-cose-bilkent@^4.1.0: version "4.1.0" @@ -5646,9 +4940,9 @@ cytoscape-fcose@^2.1.0: cose-base "^2.2.0" cytoscape@^3.23.0: - version "3.26.0" - resolved "https://registry.yarnpkg.com/cytoscape/-/cytoscape-3.26.0.tgz#b4c6961445fd51e1fd3cca83c3ffe924d9a8abc9" - integrity sha512-IV+crL+KBcrCnVVUCZW+zRRRFUZQcrtdOPXki+o4CFUWLdAEYvuZLcBSJC9EBK++suamERKzeY7roq2hdovV3w== + version "3.27.0" + resolved "https://registry.yarnpkg.com/cytoscape/-/cytoscape-3.27.0.tgz#5141cd694570807c91075b609181bce102e0bb88" + integrity sha512-pPZJilfX9BxESwujODz5pydeGi+FBrXq1rcaB1mfhFXXFJ9GjE6CNndAk+8jPzoXGD+16LtSS4xlYEIUiW4Abg== dependencies: heap "^0.2.6" lodash "^4.17.21" @@ -5667,6 +4961,13 @@ cz-conventional-changelog@3.3.0: optionalDependencies: "@commitlint/load" ">6.1.1" +"d3-array@1 - 2": + version "2.12.1" + resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-2.12.1.tgz#e20b41aafcdffdf5d50928004ececf815a465e81" + integrity sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ== + dependencies: + internmap "^1.0.0" + "d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@3, d3-array@^3.2.0: version "3.2.4" resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.4.tgz#15fec33b237f97ac5d7c986dc77da273a8ed0bb5" @@ -5783,6 +5084,11 @@ d3-hierarchy@3: dependencies: d3-color "1 - 3" +d3-path@1: + version "1.0.9" + resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.9.tgz#48c050bb1fe8c262493a8caf5524e3e9591701cf" + integrity sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg== + "d3-path@1 - 3", d3-path@3, d3-path@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-3.1.0.tgz#22df939032fb5a71ae8b1800d61ddb7851c42526" @@ -5803,6 +5109,14 @@ d3-random@3: resolved "https://registry.yarnpkg.com/d3-random/-/d3-random-3.0.1.tgz#d4926378d333d9c0bfd1e6fa0194d30aebaa20f4" integrity sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ== +d3-sankey@^0.12.3: + version "0.12.3" + resolved "https://registry.yarnpkg.com/d3-sankey/-/d3-sankey-0.12.3.tgz#b3c268627bd72e5d80336e8de6acbfec9d15d01d" + integrity sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ== + dependencies: + d3-array "1 - 2" + d3-shape "^1.2.0" + d3-scale-chromatic@3: version "3.0.0" resolved "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz#15b4ceb8ca2bb0dcb6d1a641ee03d59c3b62376a" @@ -5834,6 +5148,13 @@ d3-shape@3: dependencies: d3-path "^3.1.0" +d3-shape@^1.2.0: + version "1.3.7" + resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.7.tgz#df63801be07bc986bc54f63789b4fe502992b5d7" + integrity sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw== + dependencies: + d3-path "1" + "d3-time-format@2 - 4", d3-time-format@4: version "4.1.0" resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a" @@ -5911,10 +5232,10 @@ d3@^7.4.0, d3@^7.8.2: d3-transition "3" d3-zoom "3" -dagre-d3-es@7.0.9: - version "7.0.9" - resolved "https://registry.yarnpkg.com/dagre-d3-es/-/dagre-d3-es-7.0.9.tgz#aca12fccd9d09955a4430029ba72ee6934542a8d" - integrity sha512-rYR4QfVmy+sR44IBDvVtcAmOReGBvRCWDpO2QjYwqgh9yijw6eSHBqaPG/LIOEy7aBsniLvtMW6pg19qJhq60w== +dagre-d3-es@7.0.10: + version "7.0.10" + resolved "https://registry.yarnpkg.com/dagre-d3-es/-/dagre-d3-es-7.0.10.tgz#19800d4be674379a3cd8c86a8216a2ac6827cadc" + integrity sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A== dependencies: d3 "^7.8.2" lodash-es "^4.17.21" @@ -5934,6 +5255,11 @@ dayjs@^1.11.7: resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.10.tgz#68acea85317a6e164457d6d6947564029a6a16a0" integrity sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ== +debounce@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5" + integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug== + debug@2.6.9, debug@^2.6.0: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" @@ -5968,12 +5294,12 @@ decode-named-character-reference@^1.0.0: dependencies: character-entities "^2.0.0" -decompress-response@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" - integrity sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA== +decompress-response@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" + integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== dependencies: - mimic-response "^1.0.0" + mimic-response "^3.1.0" dedent@0.7.0: version "0.7.0" @@ -6032,15 +5358,15 @@ defaults@^1.0.3: dependencies: clone "^1.0.2" -defer-to-connect@^1.0.1: - version "1.1.3" - resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" - integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== +defer-to-connect@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" + integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== -define-data-property@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.0.tgz#0db13540704e1d8d479a0656cf781267531b9451" - integrity sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g== +define-data-property@^1.0.1, define-data-property@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.1.tgz#c35f7cd0ab09883480d12ac5cb213715587800b3" + integrity sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ== dependencies: get-intrinsic "^1.2.1" gopd "^1.0.1" @@ -6056,7 +5382,7 @@ define-lazy-prop@^3.0.0: resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz#dbb19adfb746d7fc6d734a06b72f4a00d021255f" integrity sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg== -define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0, define-properties@^1.2.1: +define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== @@ -6119,13 +5445,6 @@ destroy@1.2.0: resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== -detab@2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/detab/-/detab-2.0.4.tgz#b927892069aff405fbb9a186fe97a44a92a94b43" - integrity sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g== - dependencies: - repeat-string "^1.5.4" - detect-file@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" @@ -6149,7 +5468,7 @@ detect-port-alt@^1.1.6: address "^1.0.1" debug "^2.6.0" -detect-port@^1.3.0: +detect-port@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.5.1.tgz#451ca9b6eaf20451acb0799b8ab40dff7718727b" integrity sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ== @@ -6157,10 +5476,12 @@ detect-port@^1.3.0: address "^1.0.1" debug "4" -diff@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" - integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== +devlop@^1.0.0, devlop@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/devlop/-/devlop-1.1.0.tgz#4db7c2ca4dc6e0e834c30be70c94bbc976dc7018" + integrity sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA== + dependencies: + dequal "^2.0.0" diff@^5.0.0: version "5.1.0" @@ -6209,15 +5530,15 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" -docusaurus-plugin-openapi-docs@2.0.0-beta.4, docusaurus-plugin-openapi-docs@^2.0.0-beta.4: - version "2.0.0-beta.4" - resolved "https://registry.yarnpkg.com/docusaurus-plugin-openapi-docs/-/docusaurus-plugin-openapi-docs-2.0.0-beta.4.tgz#f576e01d58c878b9305f579f923585fd2880f88b" - integrity sha512-O5wzCFbXCMdhtIk1E7xtmRabw0UBejf6fRV0ukbVzd5LrDMf33FnuYEFDq+eb3pXbA/yZjyVg99YMxwr2EE/1w== +docusaurus-plugin-openapi-docs@3.0.0-beta.2, docusaurus-plugin-openapi-docs@^3.0.0-beta.2: + version "3.0.0-beta.2" + resolved "https://registry.yarnpkg.com/docusaurus-plugin-openapi-docs/-/docusaurus-plugin-openapi-docs-3.0.0-beta.2.tgz#855615daae82270bd79496f728982a6bbd91832b" + integrity sha512-opjp5OTjuNgUVv7IrQGyJdVBybLwvmY60My9uAxDd3Bh1L1axLGqBt0+tyIwemd2M2GnJOxgegdzCVPM0a/1YQ== dependencies: "@apidevtools/json-schema-ref-parser" "^10.1.0" - "@docusaurus/plugin-content-docs" ">=2.3.0 <2.5.0" - "@docusaurus/utils" ">=2.3.0 <2.5.0" - "@docusaurus/utils-validation" ">=2.3.0 <2.5.0" + "@docusaurus/plugin-content-docs" "^3.0.0" + "@docusaurus/utils" "^3.0.0" + "@docusaurus/utils-validation" "^3.0.0" "@paloaltonetworks/openapi-to-postmanv2" "3.1.0-hotfix.1" "@paloaltonetworks/postman-collection" "^4.1.0" "@redocly/openapi-core" "^1.0.0-beta.125" @@ -6239,26 +5560,25 @@ docusaurus-plugin-sass@^0.2.3: dependencies: sass-loader "^10.1.1" -docusaurus-theme-openapi-docs@2.0.0-beta.4: - version "2.0.0-beta.4" - resolved "https://registry.yarnpkg.com/docusaurus-theme-openapi-docs/-/docusaurus-theme-openapi-docs-2.0.0-beta.4.tgz#313b9d04a673fee7015bd08a493ab9fd16d3ed91" - integrity sha512-FuZbsZHVgH2EutMeB8Ypx0Hbjv7PnMUDCX1YfvvSkSktvc34QqT13hOt6Vhfv3dGlnGHEeRawWS46cAeqkCt5w== +docusaurus-theme-openapi-docs@3.0.0-beta.2: + version "3.0.0-beta.2" + resolved "https://registry.yarnpkg.com/docusaurus-theme-openapi-docs/-/docusaurus-theme-openapi-docs-3.0.0-beta.2.tgz#a550f1bd7a8b138cf2c375c0691f28c46a5c30a8" + integrity sha512-PukJaR0hc+h7BfEMHCYlEJNyjEJltWCvP00tHJEPnskoWec/hAlkuQOyz/5ak8ZcRmGQ98YpXhEUReJR7GK9zQ== dependencies: - "@docusaurus/theme-common" ">=2.3.0 <2.5.0" + "@docusaurus/theme-common" "^3.0.0" "@hookform/error-message" "^2.0.1" - "@nextui-org/react" "^1.0.0-beta.12" "@paloaltonetworks/postman-code-generators" "1.1.15-patch.2" "@paloaltonetworks/postman-collection" "^4.1.0" "@reduxjs/toolkit" "^1.7.1" clsx "^1.1.1" copy-text-to-clipboard "^3.1.0" crypto-js "^4.1.1" - docusaurus-plugin-openapi-docs "^2.0.0-beta.4" + docusaurus-plugin-openapi-docs "^3.0.0-beta.2" docusaurus-plugin-sass "^0.2.3" file-saver "^2.0.5" lodash "^4.17.20" node-polyfill-webpack-plugin "^2.0.1" - prism-react-renderer "^1.3.5" + prism-react-renderer "^2.1.0" react-hook-form "^7.43.8" react-live "^4.0.0" react-magic-dropzone "^1.0.1" @@ -6267,6 +5587,7 @@ docusaurus-theme-openapi-docs@2.0.0-beta.4: react-redux "^7.2.0" rehype-raw "^6.1.1" sass "^1.58.1" + sass-loader "^13.3.2" webpack "^5.61.0" xml-formatter "^2.6.1" @@ -6277,14 +5598,6 @@ dom-converter@^0.2.0: dependencies: utila "~0.4" -dom-helpers@^5.0.1, dom-helpers@^5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" - integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== - dependencies: - "@babel/runtime" "^7.8.7" - csstype "^3.0.2" - dom-serializer@^1.0.1: version "1.4.1" resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" @@ -6304,9 +5617,9 @@ dom-serializer@^2.0.0: entities "^4.2.0" domain-browser@^4.22.0: - version "4.22.0" - resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-4.22.0.tgz#6ddd34220ec281f9a65d3386d267ddd35c491f9f" - integrity sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw== + version "4.23.0" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-4.23.0.tgz#427ebb91efcb070f05cffdfb8a4e9a6c25f8c94b" + integrity sha512-ArzcM/II1wCCujdCNyQjXrAFwS4mrLh4C7DZWlaI8mdh7h3BfKdNd3bKXITfl2PT9FtfQqaGvhi1vPRQPimjGA== domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0: version "2.3.0" @@ -6327,10 +5640,10 @@ domhandler@^5.0.2, domhandler@^5.0.3: dependencies: domelementtype "^2.3.0" -dompurify@2.4.3: - version "2.4.3" - resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.4.3.tgz#f4133af0e6a50297fc8874e2eaedc13a3c308c03" - integrity sha512-q6QaLcakcRjebxjg8/+NP+h0rPfatOgOzc46Fst9VAA3jF2ApfKBNKMzdP4DYTqtUMXSCd5pRS/8Po/OmoCHZQ== +dompurify@^3.0.5: + version "3.0.6" + resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.0.6.tgz#925ebd576d54a9531b5d76f0a5bef32548351dae" + integrity sha512-ilkD8YEnnGh1zJ240uJsW7AzE+2qpbOUYjacomn3AvJ6J4JhKGSZ2nh4wUIXPZrEPppaCLx5jFe8T89Rk8tQ7w== domutils@^2.5.2, domutils@^2.8.0: version "2.8.0" @@ -6358,17 +5671,19 @@ dot-case@^3.0.4: no-case "^3.0.4" tslib "^2.0.3" -dot-prop@^5.1.0, dot-prop@^5.2.0: +dot-prop@^5.1.0: version "5.3.0" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== dependencies: is-obj "^2.0.0" -duplexer3@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.5.tgz#0b5e4d7bad5de8901ea4440624c8e1d20099217e" - integrity sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA== +dot-prop@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-6.0.1.tgz#fc26b3cf142b9e59b74dbd39ed66ce620c681083" + integrity sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA== + dependencies: + is-obj "^2.0.0" duplexer@^0.1.2: version "0.1.2" @@ -6392,17 +5707,17 @@ ejs@^3.1.6: dependencies: jake "^10.8.5" -electron-to-chromium@^1.4.535: - version "1.4.537" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.537.tgz#aac4101db53066be1e49baedd000a26bc754adc9" - integrity sha512-W1+g9qs9hviII0HAwOdehGYkr+zt7KKdmCcJcjH0mYg6oL8+ioT3Skjmt7BLoAQqXhjf40AXd+HlR4oAWMlXjA== +electron-to-chromium@^1.4.601: + version "1.4.608" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.608.tgz#ff567c51dde4892ae330860c7d9f19571e9e1d69" + integrity sha512-J2f/3iIIm3Mo0npneITZ2UPe4B1bg8fTNrFjD8715F/k1BvbviRuqYGkET1PgprrczXYTHFvotbBOmUp6KE0uA== elkjs@^0.8.2: version "0.8.2" resolved "https://registry.yarnpkg.com/elkjs/-/elkjs-0.8.2.tgz#c37763c5a3e24e042e318455e0147c912a7c248e" integrity sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ== -elliptic@^6.5.3: +elliptic@^6.5.3, elliptic@^6.5.4: version "6.5.4" resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== @@ -6415,43 +5730,41 @@ elliptic@^6.5.3: minimalistic-assert "^1.0.1" minimalistic-crypto-utils "^1.0.1" -emoji-regex@10.2.1, emoji-regex@^10.2.1: - version "10.2.1" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.2.1.tgz#a41c330d957191efd3d9dfe6e1e8e1e9ab048b3f" - integrity sha512-97g6QgOk8zlDRdgq1WxwgTMgEWGVAQvB5Fdpgc1MkNy56la5SKP9GsMXKDOdqwn90/41a8yPwIGk1Y6WVbeMQA== +emoji-regex@10.3.0, emoji-regex@^10.0.0, emoji-regex@^10.2.1, emoji-regex@^10.3.0: + version "10.3.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.3.0.tgz#76998b9268409eb3dae3de989254d456e70cfe23" + integrity sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw== emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== -emoji-regex@^9.2.0, emoji-regex@^9.2.2: +emoji-regex@^9.2.2: version "9.2.2" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== +emojilib@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/emojilib/-/emojilib-2.4.0.tgz#ac518a8bb0d5f76dda57289ccb2fdf9d39ae721e" + integrity sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw== + emojis-list@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== -emoticon@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/emoticon/-/emoticon-3.2.0.tgz#c008ca7d7620fac742fe1bf4af8ff8fed154ae7f" - integrity sha512-SNujglcLTTg+lDAcApPNgEdudaqQFiAbJCqzjNxJkvN9vAwCGi0uu8IUVvx+f16h+V44KCY6Y2yboroc9pilHg== +emoticon@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/emoticon/-/emoticon-4.0.1.tgz#2d2bbbf231ce3a5909e185bbb64a9da703a1e749" + integrity sha512-dqx7eA9YaqyvYtUhJwT4rC1HIp82j5ybS1/vQ42ur+jBe17dJMwZE4+gvL1XadSFfxaPFFGt3Xsw+Y8akThDlw== encodeurl@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== -end-of-stream@^1.1.0: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - enhanced-resolve@^5.15.0: version "5.15.0" resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" @@ -6478,25 +5791,25 @@ error-ex@^1.3.1: is-arrayish "^0.2.1" es-abstract@^1.22.1: - version "1.22.2" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.2.tgz#90f7282d91d0ad577f505e423e52d4c1d93c1b8a" - integrity sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA== + version "1.22.3" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.3.tgz#48e79f5573198de6dee3589195727f4f74bc4f32" + integrity sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA== dependencies: array-buffer-byte-length "^1.0.0" arraybuffer.prototype.slice "^1.0.2" available-typed-arrays "^1.0.5" - call-bind "^1.0.2" + call-bind "^1.0.5" es-set-tostringtag "^2.0.1" es-to-primitive "^1.2.1" function.prototype.name "^1.1.6" - get-intrinsic "^1.2.1" + get-intrinsic "^1.2.2" get-symbol-description "^1.0.0" globalthis "^1.0.3" gopd "^1.0.1" - has "^1.0.3" has-property-descriptors "^1.0.0" has-proto "^1.0.1" has-symbols "^1.0.3" + hasown "^2.0.0" internal-slot "^1.0.5" is-array-buffer "^3.0.2" is-callable "^1.2.7" @@ -6506,7 +5819,7 @@ es-abstract@^1.22.1: is-string "^1.0.7" is-typed-array "^1.1.12" is-weakref "^1.0.2" - object-inspect "^1.12.3" + object-inspect "^1.13.1" object-keys "^1.1.1" object.assign "^4.1.4" regexp.prototype.flags "^1.5.1" @@ -6520,9 +5833,9 @@ es-abstract@^1.22.1: typed-array-byte-offset "^1.0.0" typed-array-length "^1.0.4" unbox-primitive "^1.0.2" - which-typed-array "^1.1.11" + which-typed-array "^1.1.13" -es-iterator-helpers@^1.0.12: +es-iterator-helpers@^1.0.12, es-iterator-helpers@^1.0.15: version "1.0.15" resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz#bd81d275ac766431d19305923707c3efd9f1ae40" integrity sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g== @@ -6543,25 +5856,25 @@ es-iterator-helpers@^1.0.12: safe-array-concat "^1.0.1" es-module-lexer@^1.2.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.1.tgz#c1b0dd5ada807a3b3155315911f364dc4e909db1" - integrity sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q== + version "1.4.1" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.4.1.tgz#41ea21b43908fe6a287ffcbe4300f790555331f5" + integrity sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w== es-set-tostringtag@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" - integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== + version "2.0.2" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz#11f7cc9f63376930a5f20be4915834f4bc74f9c9" + integrity sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q== dependencies: - get-intrinsic "^1.1.3" - has "^1.0.3" + get-intrinsic "^1.2.2" has-tostringtag "^1.0.0" + hasown "^2.0.0" es-shim-unscopables@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" - integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== + version "1.0.2" + resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763" + integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw== dependencies: - has "^1.0.3" + hasown "^2.0.0" es-to-primitive@^1.2.1: version "1.2.1" @@ -6582,10 +5895,10 @@ escalade@^3.1.1: resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== -escape-goat@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" - integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== +escape-goat@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-4.0.0.tgz#9424820331b510b0666b98f7873fe11ac4aa8081" + integrity sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg== escape-html@^1.0.3, escape-html@~1.0.3: version "1.0.3" @@ -6602,54 +5915,59 @@ escape-string-regexp@^4.0.0: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -eslint-config-prettier@9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.0.0.tgz#eb25485946dd0c66cd216a46232dc05451518d1f" - integrity sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw== +escape-string-regexp@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8" + integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== + +eslint-config-prettier@9.1.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz#31af3d94578645966c082fcb71a5846d3c94867f" + integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw== -eslint-plugin-formatjs@4.10.5: - version "4.10.5" - resolved "https://registry.yarnpkg.com/eslint-plugin-formatjs/-/eslint-plugin-formatjs-4.10.5.tgz#3b38ce5da1f8e9d135298df777cf87115e4d0818" - integrity sha512-pBPA4idiYHXPQMrIb9/Le+D0snlNa7MFQsw12yIzyva/z9uz0u/4NOK3NkfyENMBNMeTX2tZXtugk9FyqM5SRw== +eslint-plugin-formatjs@4.11.3: + version "4.11.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-formatjs/-/eslint-plugin-formatjs-4.11.3.tgz#c1258420b8aaf21fc01ed1f2315d1bd18f55d9f0" + integrity sha512-VGmDGbRZexN+rpweaXBoXkZ40mu96zk1fi1A+iVDAhxIyQr4QLZyhHWwMM1JXgGxgGCB90/buxkRl95nzSn10w== dependencies: - "@formatjs/icu-messageformat-parser" "2.6.2" - "@formatjs/ts-transformer" "3.13.5" + "@formatjs/icu-messageformat-parser" "2.7.3" + "@formatjs/ts-transformer" "3.13.9" "@types/eslint" "7 || 8" "@types/picomatch" "^2.3.0" - "@typescript-eslint/typescript-estree" "5.62.0" + "@typescript-eslint/utils" "^6.5.0" emoji-regex "^10.2.1" magic-string "^0.30.0" picomatch "^2.3.1" - tslib "2.6.0" - typescript "^4.7 || 5" + tslib "2.6.2" + typescript "5" unicode-emoji-utils "^1.1.1" -eslint-plugin-jsx-a11y@6.7.1: - version "6.7.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz#fca5e02d115f48c9a597a6894d5bcec2f7a76976" - integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA== - dependencies: - "@babel/runtime" "^7.20.7" - aria-query "^5.1.3" - array-includes "^3.1.6" - array.prototype.flatmap "^1.3.1" - ast-types-flow "^0.0.7" - axe-core "^4.6.2" - axobject-query "^3.1.1" +eslint-plugin-jsx-a11y@6.8.0: + version "6.8.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz#2fa9c701d44fcd722b7c771ec322432857fcbad2" + integrity sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA== + dependencies: + "@babel/runtime" "^7.23.2" + aria-query "^5.3.0" + array-includes "^3.1.7" + array.prototype.flatmap "^1.3.2" + ast-types-flow "^0.0.8" + axe-core "=4.7.0" + axobject-query "^3.2.1" damerau-levenshtein "^1.0.8" emoji-regex "^9.2.2" - has "^1.0.3" - jsx-ast-utils "^3.3.3" - language-tags "=1.0.5" + es-iterator-helpers "^1.0.15" + hasown "^2.0.0" + jsx-ast-utils "^3.3.5" + language-tags "^1.0.9" minimatch "^3.1.2" - object.entries "^1.1.6" - object.fromentries "^2.0.6" - semver "^6.3.0" + object.entries "^1.1.7" + object.fromentries "^2.0.7" -eslint-plugin-prettier@5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.0.tgz#6887780ed95f7708340ec79acfdf60c35b9be57a" - integrity sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w== +eslint-plugin-prettier@5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.1.tgz#a3b399f04378f79f066379f544e42d6b73f11515" + integrity sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg== dependencies: prettier-linter-helpers "^1.0.0" synckit "^0.8.5" @@ -6681,19 +5999,18 @@ eslint-plugin-react@7.33.2: semver "^6.3.1" string.prototype.matchall "^4.0.8" -eslint-plugin-regexp@1.15.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-regexp/-/eslint-plugin-regexp-1.15.0.tgz#2717cd4867418287b36d9569c72fca7d242c59b3" - integrity sha512-YEtQPfdudafU7RBIFci81R/Q1yErm0mVh3BkGnXD2Dk8DLwTFdc2ITYH1wCnHKim2gnHfPFgrkh+b2ozyyU7ag== +eslint-plugin-regexp@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-regexp/-/eslint-plugin-regexp-2.1.2.tgz#1a4e152636245d5fe846a2e934d86d914d063029" + integrity sha512-nnhNqHblaD8YTJiEHfyVRhiw8sm0eFQ9h+ee3rMqJhf2R9sJWbSXkjrLxIeCNZSNqitUOdaYFfrPVyvS9i72AA== dependencies: "@eslint-community/eslint-utils" "^4.2.0" - "@eslint-community/regexpp" "^4.4.0" - comment-parser "^1.1.2" - grapheme-splitter "^1.0.4" - jsdoctypeparser "^9.0.0" - refa "^0.11.0" - regexp-ast-analysis "^0.6.0" - scslre "^0.2.0" + "@eslint-community/regexpp" "^4.9.1" + comment-parser "^1.4.0" + jsdoc-type-pratt-parser "^4.0.0" + refa "^0.12.1" + regexp-ast-analysis "^0.7.1" + scslre "^0.3.0" eslint-scope@5.1.1: version "5.1.1" @@ -6716,18 +6033,19 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4 resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== -eslint@8.50.0: - version "8.50.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.50.0.tgz#2ae6015fee0240fcd3f83e1e25df0287f487d6b2" - integrity sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg== +eslint@8.55.0: + version "8.55.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.55.0.tgz#078cb7b847d66f2c254ea1794fa395bf8e7e03f8" + integrity sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@eslint-community/regexpp" "^4.6.1" - "@eslint/eslintrc" "^2.1.2" - "@eslint/js" "8.50.0" - "@humanwhocodes/config-array" "^0.11.11" + "@eslint/eslintrc" "^2.1.4" + "@eslint/js" "8.55.0" + "@humanwhocodes/config-array" "^0.11.13" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" + "@ungap/structured-clone" "^1.2.0" ajv "^6.12.4" chalk "^4.0.0" cross-spawn "^7.0.2" @@ -6797,17 +6115,71 @@ estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== +estree-util-attach-comments@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz#344bde6a64c8a31d15231e5ee9e297566a691c2d" + integrity sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw== + dependencies: + "@types/estree" "^1.0.0" + +estree-util-build-jsx@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz#b6d0bced1dcc4f06f25cf0ceda2b2dcaf98168f1" + integrity sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ== + dependencies: + "@types/estree-jsx" "^1.0.0" + devlop "^1.0.0" + estree-util-is-identifier-name "^3.0.0" + estree-walker "^3.0.0" + +estree-util-is-identifier-name@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz#0b5ef4c4ff13508b34dcd01ecfa945f61fce5dbd" + integrity sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg== + +estree-util-to-js@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz#10a6fb924814e6abb62becf0d2bc4dea51d04f17" + integrity sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg== + dependencies: + "@types/estree-jsx" "^1.0.0" + astring "^1.8.0" + source-map "^0.7.0" + +estree-util-value-to-estree@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/estree-util-value-to-estree/-/estree-util-value-to-estree-3.0.1.tgz#0b7b5d6b6a4aaad5c60999ffbc265a985df98ac5" + integrity sha512-b2tdzTurEIbwRh+mKrEcaWfu1wgb8J1hVsgREg7FFiecWwK/PhO8X0kyc+0bIcKNtD4sqxIdNoRy6/p/TvECEA== + dependencies: + "@types/estree" "^1.0.0" + is-plain-obj "^4.0.0" + +estree-util-visit@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/estree-util-visit/-/estree-util-visit-2.0.0.tgz#13a9a9f40ff50ed0c022f831ddf4b58d05446feb" + integrity sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww== + dependencies: + "@types/estree-jsx" "^1.0.0" + "@types/unist" "^3.0.0" + estree-walker@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700" integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== +estree-walker@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.3.tgz#67c3e549ec402a487b4fc193d1953a524752340d" + integrity sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g== + dependencies: + "@types/estree" "^1.0.0" + esutils@^2.0.2: version "2.0.3" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== -eta@^2.0.0: +eta@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/eta/-/eta-2.2.0.tgz#eb8b5f8c4e8b6306561a455e62cd7492fe3a9b8a" integrity sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g== @@ -6853,19 +6225,19 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: md5.js "^1.3.4" safe-buffer "^5.1.1" -execa@7.2.0, execa@^7.1.1: - version "7.2.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-7.2.0.tgz#657e75ba984f42a70f38928cedc87d6f2d4fe4e9" - integrity sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA== +execa@8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-8.0.1.tgz#51f6a5943b580f963c3ca9c6321796db8cc39b8c" + integrity sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg== dependencies: cross-spawn "^7.0.3" - get-stream "^6.0.1" - human-signals "^4.3.0" + get-stream "^8.0.1" + human-signals "^5.0.0" is-stream "^3.0.0" merge-stream "^2.0.0" npm-run-path "^5.1.0" onetime "^6.0.0" - signal-exit "^3.0.7" + signal-exit "^4.1.0" strip-final-newline "^3.0.0" execa@^5.0.0: @@ -6883,6 +6255,21 @@ execa@^5.0.0: signal-exit "^3.0.3" strip-final-newline "^2.0.0" +execa@^7.1.1: + version "7.2.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-7.2.0.tgz#657e75ba984f42a70f38928cedc87d6f2d4fe4e9" + integrity sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.1" + human-signals "^4.3.0" + is-stream "^3.0.0" + merge-stream "^2.0.0" + npm-run-path "^5.1.0" + onetime "^6.0.0" + signal-exit "^3.0.7" + strip-final-newline "^3.0.0" + exenv@^1.2.0: version "1.2.2" resolved "https://registry.yarnpkg.com/exenv/-/exenv-1.2.2.tgz#2ae78e85d9894158670b03d47bec1f03bd91bb9d" @@ -6964,9 +6351,9 @@ fast-diff@^1.1.2: integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== fast-glob@^3.2.11, fast-glob@^3.2.9, fast-glob@^3.3.0: - version "3.3.1" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4" - integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" @@ -7010,6 +6397,13 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" +fault@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/fault/-/fault-2.0.1.tgz#d47ca9f37ca26e4bd38374a7c500b5a384755b6c" + integrity sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ== + dependencies: + format "^0.2.0" + faye-websocket@^0.11.3: version "0.11.4" resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" @@ -7017,31 +6411,6 @@ faye-websocket@^0.11.3: dependencies: websocket-driver ">=0.5.1" -fbemitter@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/fbemitter/-/fbemitter-3.0.0.tgz#00b2a1af5411254aab416cd75f9e6289bee4bff3" - integrity sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw== - dependencies: - fbjs "^3.0.0" - -fbjs-css-vars@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8" - integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== - -fbjs@^3.0.0, fbjs@^3.0.1: - version "3.0.5" - resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.5.tgz#aa0edb7d5caa6340011790bd9249dbef8a81128d" - integrity sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg== - dependencies: - cross-fetch "^3.1.5" - fbjs-css-vars "^1.0.0" - loose-envify "^1.0.0" - object-assign "^4.1.0" - promise "^7.1.1" - setimmediate "^1.0.5" - ua-parser-js "^1.0.35" - feed@^4.2.2: version "4.2.2" resolved "https://registry.yarnpkg.com/feed/-/feed-4.2.2.tgz#865783ef6ed12579e2c44bbef3c9113bc4956a7e" @@ -7118,14 +6487,13 @@ finalhandler@1.2.0: statuses "2.0.1" unpipe "~1.0.0" -find-cache-dir@^3.3.1: - version "3.3.2" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" - integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== +find-cache-dir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-4.0.0.tgz#a30ee0448f81a3990708f6453633c733e2f6eec2" + integrity sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg== dependencies: - commondir "^1.0.1" - make-dir "^3.0.2" - pkg-dir "^4.1.0" + common-path-prefix "^3.0.0" + pkg-dir "^7.0.0" find-node-modules@^2.1.2: version "2.1.3" @@ -7147,7 +6515,7 @@ find-up@^3.0.0: dependencies: locate-path "^3.0.0" -find-up@^4.0.0, find-up@^4.1.0: +find-up@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== @@ -7163,6 +6531,14 @@ find-up@^5.0.0: locate-path "^6.0.0" path-exists "^4.0.0" +find-up@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790" + integrity sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== + dependencies: + locate-path "^7.1.0" + path-exists "^5.0.0" + findup-sync@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-4.0.0.tgz#956c9cdde804052b881b428512905c4a5f2cdef0" @@ -7174,28 +6550,25 @@ findup-sync@^4.0.0: resolve-dir "^1.0.1" flat-cache@^3.0.4: - version "3.1.0" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.1.0.tgz#0e54ab4a1a60fe87e2946b6b00657f1c99e1af3f" - integrity sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew== + version "3.2.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" + integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== dependencies: - flatted "^3.2.7" + flatted "^3.2.9" keyv "^4.5.3" rimraf "^3.0.2" -flatted@^3.2.7: +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +flatted@^3.2.9: version "3.2.9" resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.9.tgz#7eb4c67ca1ba34232ca9d2d93e9886e611ad7daf" integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ== -flux@^4.0.1: - version "4.0.4" - resolved "https://registry.yarnpkg.com/flux/-/flux-4.0.4.tgz#9661182ea81d161ee1a6a6af10d20485ef2ac572" - integrity sha512-NCj3XlayA2UsapRpM7va6wU1+9rE5FIL7qoMcmxWHRzbp0yujihMBm9BBHZ1MDIk5h5o2Bl6eGiCe8rYELAmYw== - dependencies: - fbemitter "^3.0.0" - fbjs "^3.0.1" - -follow-redirects@^1.0.0, follow-redirects@^1.14.7: +follow-redirects@^1.0.0: version "1.15.3" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.3.tgz#fe2f3ef2690afce7e82ed0b44db08165b207123a" integrity sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q== @@ -7231,6 +6604,16 @@ fork-ts-checker-webpack-plugin@^6.5.0: semver "^7.3.2" tapable "^1.0.0" +form-data-encoder@^2.1.2: + version "2.1.4" + resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-2.1.4.tgz#261ea35d2a70d48d30ec7a9603130fa5515e9cd5" + integrity sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw== + +format@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b" + integrity sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww== + formik@2.4.5: version "2.4.5" resolved "https://registry.yarnpkg.com/formik/-/formik-2.4.5.tgz#f899b5b7a6f103a8fabb679823e8fafc7e0ee1b4" @@ -7251,9 +6634,9 @@ forwarded@0.2.0: integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== fraction.js@^4.3.6: - version "4.3.6" - resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.6.tgz#e9e3acec6c9a28cf7bc36cbe35eea4ceb2c5c92d" - integrity sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg== + version "4.3.7" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" + integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== fresh@0.5.2: version "0.5.2" @@ -7279,10 +6662,10 @@ fs-extra@^10.1.0: jsonfile "^6.0.1" universalify "^2.0.0" -fs-extra@^11.0.0: - version "11.1.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.1.tgz#da69f7c39f3b002378b0954bb6ae7efdc0876e2d" - integrity sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ== +fs-extra@^11.0.0, fs-extra@^11.1.1: + version "11.2.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.2.0.tgz#e70e17dfad64232287d01929399e0ea7c86b0e5b" + integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw== dependencies: graceful-fs "^4.2.0" jsonfile "^6.0.1" @@ -7303,10 +6686,10 @@ fsevents@~2.3.2: resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +function-bind@^1.1.1, function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== function.prototype.name@^1.1.5, function.prototype.name@^1.1.6: version "1.1.6" @@ -7328,7 +6711,7 @@ gemoji@^6.1.0: resolved "https://registry.yarnpkg.com/gemoji/-/gemoji-6.1.0.tgz#268fbb0c81d1a8c32a4bcc39bdfdd66080ba7ce9" integrity sha512-MOlX3doQ1fsfzxQX8Y+u6bC5Ssc1pBUBIPVyrS69EzKt+5LIZAOm0G5XGVNhwXFgkBF3r+Yk88ONyrFHo8iNFA== -gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2: +gensync@^1.0.0-beta.2: version "1.0.0-beta.2" resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== @@ -7338,40 +6721,36 @@ get-caller-file@^2.0.1, get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" - integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== +get-east-asian-width@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz#5e6ebd9baee6fb8b7b6bd505221065f0cd91f64e" + integrity sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.2.tgz#281b7622971123e1ef4b3c90fd7539306da93f3b" + integrity sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA== dependencies: - function-bind "^1.1.1" - has "^1.0.3" + function-bind "^1.1.2" has-proto "^1.0.1" has-symbols "^1.0.3" + hasown "^2.0.0" get-own-enumerable-property-symbols@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== -get-stream@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" - integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== - dependencies: - pump "^3.0.0" - -get-stream@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" - integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== - dependencies: - pump "^3.0.0" - get-stream@^6.0.0, get-stream@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== +get-stream@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2" + integrity sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA== + get-symbol-description@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" @@ -7396,7 +6775,7 @@ github-slugger@2.0.0: resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-2.0.0.tgz#52cf2f9279a21eb6c59dd385b410f0c0adda8f1a" integrity sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw== -github-slugger@^1.4.0: +github-slugger@^1.4.0, github-slugger@^1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.5.0.tgz#17891bbc73232051474d68bd867a34625c955f7d" integrity sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw== @@ -7500,9 +6879,9 @@ globals@^11.1.0: integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== globals@^13.19.0: - version "13.22.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.22.0.tgz#0c9fcb9c48a2494fbb5edbfee644285543eba9d8" - integrity sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw== + version "13.23.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.23.0.tgz#ef31673c926a0976e1f61dab4dca57e0c0a8af02" + integrity sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA== dependencies: type-fest "^0.20.2" @@ -7543,33 +6922,33 @@ gopd@^1.0.1: dependencies: get-intrinsic "^1.1.3" -got@^9.6.0: - version "9.6.0" - resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" - integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== - dependencies: - "@sindresorhus/is" "^0.14.0" - "@szmarczak/http-timer" "^1.1.2" - cacheable-request "^6.0.0" - decompress-response "^3.3.0" - duplexer3 "^0.1.4" - get-stream "^4.1.0" - lowercase-keys "^1.0.1" - mimic-response "^1.0.1" - p-cancelable "^1.0.0" - to-readable-stream "^1.0.0" - url-parse-lax "^3.0.0" +got@^12.1.0: + version "12.6.1" + resolved "https://registry.yarnpkg.com/got/-/got-12.6.1.tgz#8869560d1383353204b5a9435f782df9c091f549" + integrity sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ== + dependencies: + "@sindresorhus/is" "^5.2.0" + "@szmarczak/http-timer" "^5.0.1" + cacheable-lookup "^7.0.0" + cacheable-request "^10.2.8" + decompress-response "^6.0.0" + form-data-encoder "^2.1.2" + get-stream "^6.0.1" + http2-wrapper "^2.1.10" + lowercase-keys "^3.0.0" + p-cancelable "^3.0.0" + responselike "^3.0.0" + +graceful-fs@4.2.10: + version "4.2.10" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== -grapheme-splitter@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" - integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== - graphemer@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" @@ -7618,11 +6997,11 @@ has-flag@^4.0.0: integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== has-property-descriptors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" - integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz#52ba30b6c5ec87fd89fa574bc1c39125c6f65340" + integrity sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg== dependencies: - get-intrinsic "^1.1.1" + get-intrinsic "^1.2.2" has-proto@^1.0.1: version "1.0.1" @@ -7641,17 +7020,10 @@ has-tostringtag@^1.0.0: dependencies: has-symbols "^1.0.2" -has-yarn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" - integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" +has-yarn@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-3.0.0.tgz#c3c21e559730d1d3b57e28af1f30d06fac38147d" + integrity sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA== hash-base@^3.0.0: version "3.1.0" @@ -7670,30 +7042,43 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.1" -hast-to-hyperscript@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz#9b67fd188e4c81e8ad66f803855334173920218d" - integrity sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA== - dependencies: - "@types/unist" "^2.0.3" - comma-separated-tokens "^1.0.0" - property-information "^5.3.0" - space-separated-tokens "^1.0.0" - style-to-object "^0.3.0" - unist-util-is "^4.0.0" - web-namespaces "^1.0.0" +hasown@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c" + integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA== + dependencies: + function-bind "^1.1.2" -hast-util-from-parse5@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz#554e34abdeea25ac76f5bd950a1f0180e0b3bc2a" - integrity sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA== +hast-util-from-dom@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/hast-util-from-dom/-/hast-util-from-dom-5.0.0.tgz#d32edd25bf28f4b178b5ae318f8d05762e67bd16" + integrity sha512-d6235voAp/XR3Hh5uy7aGLbM3S4KamdW0WEgOaU1YoewnuYw4HXb5eRtv9g65m/RFGEfUY1Mw4UqCc5Y8L4Stg== dependencies: - "@types/parse5" "^5.0.0" - hastscript "^6.0.0" - property-information "^5.0.0" - vfile "^4.0.0" - vfile-location "^3.2.0" - web-namespaces "^1.0.0" + "@types/hast" "^3.0.0" + hastscript "^8.0.0" + web-namespaces "^2.0.0" + +hast-util-from-html-isomorphic@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/hast-util-from-html-isomorphic/-/hast-util-from-html-isomorphic-2.0.0.tgz#b31baee386a899a2472326a3c5692f29f86d1d3c" + integrity sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw== + dependencies: + "@types/hast" "^3.0.0" + hast-util-from-dom "^5.0.0" + hast-util-from-html "^2.0.0" + unist-util-remove-position "^5.0.0" + +hast-util-from-html@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/hast-util-from-html/-/hast-util-from-html-2.0.1.tgz#9cd38ee81bf40b2607368b92a04b0905fa987488" + integrity sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g== + dependencies: + "@types/hast" "^3.0.0" + devlop "^1.1.0" + hast-util-from-parse5 "^8.0.0" + parse5 "^7.0.0" + vfile "^6.0.0" + vfile-message "^4.0.0" hast-util-from-parse5@^7.0.0: version "7.1.2" @@ -7708,15 +7093,26 @@ hast-util-from-parse5@^7.0.0: vfile-location "^4.0.0" web-namespaces "^2.0.0" -hast-util-is-element@1.1.0, hast-util-is-element@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-1.1.0.tgz#3b3ed5159a2707c6137b48637fbfe068e175a425" - integrity sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ== +hast-util-from-parse5@^8.0.0: + version "8.0.1" + resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-8.0.1.tgz#654a5676a41211e14ee80d1b1758c399a0327651" + integrity sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ== + dependencies: + "@types/hast" "^3.0.0" + "@types/unist" "^3.0.0" + devlop "^1.0.0" + hastscript "^8.0.0" + property-information "^6.0.0" + vfile "^6.0.0" + vfile-location "^5.0.0" + web-namespaces "^2.0.0" -hast-util-parse-selector@^2.0.0: - version "2.2.5" - resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz#d57c23f4da16ae3c63b3b6ca4616683313499c3a" - integrity sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ== +hast-util-is-element@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz#6e31a6532c217e5b533848c7e52c9d9369ca0932" + integrity sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g== + dependencies: + "@types/hast" "^3.0.0" hast-util-parse-selector@^3.0.0: version "3.1.1" @@ -7725,21 +7121,12 @@ hast-util-parse-selector@^3.0.0: dependencies: "@types/hast" "^2.0.0" -hast-util-raw@6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-6.0.1.tgz#973b15930b7529a7b66984c98148b46526885977" - integrity sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig== +hast-util-parse-selector@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz#352879fa86e25616036037dd8931fb5f34cb4a27" + integrity sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A== dependencies: - "@types/hast" "^2.0.0" - hast-util-from-parse5 "^6.0.0" - hast-util-to-parse5 "^6.0.0" - html-void-elements "^1.0.0" - parse5 "^6.0.0" - unist-util-position "^3.0.0" - vfile "^4.0.0" - web-namespaces "^1.0.0" - xtend "^4.0.0" - zwitch "^1.0.0" + "@types/hast" "^3.0.0" hast-util-raw@^7.2.0: version "7.2.3" @@ -7758,16 +7145,67 @@ hast-util-raw@^7.2.0: web-namespaces "^2.0.0" zwitch "^2.0.0" -hast-util-to-parse5@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz#1ec44650b631d72952066cea9b1445df699f8479" - integrity sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ== +hast-util-raw@^9.0.0: + version "9.0.1" + resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-9.0.1.tgz#2ba8510e4ed2a1e541cde2a4ebb5c38ab4c82c2d" + integrity sha512-5m1gmba658Q+lO5uqL5YNGQWeh1MYWZbZmWrM5lncdcuiXuo5E2HT/CIOp0rLF8ksfSwiCVJ3twlgVRyTGThGA== + dependencies: + "@types/hast" "^3.0.0" + "@types/unist" "^3.0.0" + "@ungap/structured-clone" "^1.0.0" + hast-util-from-parse5 "^8.0.0" + hast-util-to-parse5 "^8.0.0" + html-void-elements "^3.0.0" + mdast-util-to-hast "^13.0.0" + parse5 "^7.0.0" + unist-util-position "^5.0.0" + unist-util-visit "^5.0.0" + vfile "^6.0.0" + web-namespaces "^2.0.0" + zwitch "^2.0.0" + +hast-util-to-estree@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/hast-util-to-estree/-/hast-util-to-estree-3.1.0.tgz#f2afe5e869ddf0cf690c75f9fc699f3180b51b19" + integrity sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw== dependencies: - hast-to-hyperscript "^9.0.0" - property-information "^5.0.0" - web-namespaces "^1.0.0" - xtend "^4.0.0" - zwitch "^1.0.0" + "@types/estree" "^1.0.0" + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^3.0.0" + comma-separated-tokens "^2.0.0" + devlop "^1.0.0" + estree-util-attach-comments "^3.0.0" + estree-util-is-identifier-name "^3.0.0" + hast-util-whitespace "^3.0.0" + mdast-util-mdx-expression "^2.0.0" + mdast-util-mdx-jsx "^3.0.0" + mdast-util-mdxjs-esm "^2.0.0" + property-information "^6.0.0" + space-separated-tokens "^2.0.0" + style-to-object "^0.4.0" + unist-util-position "^5.0.0" + zwitch "^2.0.0" + +hast-util-to-jsx-runtime@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.0.tgz#3ed27caf8dc175080117706bf7269404a0aa4f7c" + integrity sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ== + dependencies: + "@types/estree" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/unist" "^3.0.0" + comma-separated-tokens "^2.0.0" + devlop "^1.0.0" + estree-util-is-identifier-name "^3.0.0" + hast-util-whitespace "^3.0.0" + mdast-util-mdx-expression "^2.0.0" + mdast-util-mdx-jsx "^3.0.0" + mdast-util-mdxjs-esm "^2.0.0" + property-information "^6.0.0" + space-separated-tokens "^2.0.0" + style-to-object "^1.0.0" + unist-util-position "^5.0.0" + vfile-message "^4.0.0" hast-util-to-parse5@^7.0.0: version "7.1.0" @@ -7781,30 +7219,40 @@ hast-util-to-parse5@^7.0.0: web-namespaces "^2.0.0" zwitch "^2.0.0" -hast-util-to-text@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/hast-util-to-text/-/hast-util-to-text-2.0.1.tgz#04f2e065642a0edb08341976084aa217624a0f8b" - integrity sha512-8nsgCARfs6VkwH2jJU9b8LNTuR4700na+0h3PqCaEk4MAnMDeu5P0tP8mjk9LLNGxIeQRLbiDbZVw6rku+pYsQ== +hast-util-to-parse5@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz#477cd42d278d4f036bc2ea58586130f6f39ee6ed" + integrity sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw== dependencies: - hast-util-is-element "^1.0.0" - repeat-string "^1.0.0" - unist-util-find-after "^3.0.0" + "@types/hast" "^3.0.0" + comma-separated-tokens "^2.0.0" + devlop "^1.0.0" + property-information "^6.0.0" + space-separated-tokens "^2.0.0" + web-namespaces "^2.0.0" + zwitch "^2.0.0" + +hast-util-to-text@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/hast-util-to-text/-/hast-util-to-text-4.0.0.tgz#7f33a45d0bf7981ead44e82d9d8d75f511b3642f" + integrity sha512-EWiE1FSArNBPUo1cKWtzqgnuRQwEeQbQtnFJRYV1hb1BWDgrAlBU0ExptvZMM/KSA82cDpm2sFGf3Dmc5Mza3w== + dependencies: + "@types/hast" "^3.0.0" + "@types/unist" "^3.0.0" + hast-util-is-element "^3.0.0" + unist-util-find-after "^5.0.0" hast-util-whitespace@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz#0ec64e257e6fc216c7d14c8a1b74d27d650b4557" integrity sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng== -hastscript@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-6.0.0.tgz#e8768d7eac56c3fdeac8a92830d58e811e5bf640" - integrity sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w== +hast-util-whitespace@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz#7778ed9d3c92dd9e8c5c8f648a49c21fc51cb621" + integrity sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw== dependencies: - "@types/hast" "^2.0.0" - comma-separated-tokens "^1.0.0" - hast-util-parse-selector "^2.0.0" - property-information "^5.0.0" - space-separated-tokens "^1.0.0" + "@types/hast" "^3.0.0" hastscript@^7.0.0: version "7.2.0" @@ -7817,6 +7265,17 @@ hastscript@^7.0.0: property-information "^6.0.0" space-separated-tokens "^2.0.0" +hastscript@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-8.0.0.tgz#4ef795ec8dee867101b9f23cc830d4baf4fd781a" + integrity sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw== + dependencies: + "@types/hast" "^3.0.0" + comma-separated-tokens "^2.0.0" + hast-util-parse-selector "^4.0.0" + property-information "^6.0.0" + space-separated-tokens "^2.0.0" + he@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" @@ -7889,7 +7348,12 @@ html-entities@^2.3.2: resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.4.0.tgz#edd0cee70402584c8c76cc2c0556db09d1f45061" integrity sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ== -html-minifier-terser@^6.0.2, html-minifier-terser@^6.1.0: +html-escaper@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + +html-minifier-terser@^6.0.2: version "6.1.0" resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab" integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== @@ -7902,25 +7366,38 @@ html-minifier-terser@^6.0.2, html-minifier-terser@^6.1.0: relateurl "^0.2.7" terser "^5.10.0" -html-tags@^3.2.0: +html-minifier-terser@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-7.2.0.tgz#18752e23a2f0ed4b0f550f217bb41693e975b942" + integrity sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA== + dependencies: + camel-case "^4.1.2" + clean-css "~5.3.2" + commander "^10.0.0" + entities "^4.4.0" + param-case "^3.0.4" + relateurl "^0.2.7" + terser "^5.15.1" + +html-tags@^3.3.1: version "3.3.1" resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.3.1.tgz#a04026a18c882e4bba8a01a3d39cfe465d40b5ce" integrity sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ== -html-void-elements@^1.0.0: - version "1.0.5" - resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-1.0.5.tgz#ce9159494e86d95e45795b166c2021c2cfca4483" - integrity sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w== - html-void-elements@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-2.0.1.tgz#29459b8b05c200b6c5ee98743c41b979d577549f" integrity sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A== -html-webpack-plugin@^5.5.0: - version "5.5.3" - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.3.tgz#72270f4a78e222b5825b296e5e3e1328ad525a3e" - integrity sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg== +html-void-elements@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-3.0.0.tgz#fc9dbd84af9e747249034d4d62602def6517f1d7" + integrity sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg== + +html-webpack-plugin@^5.5.3: + version "5.5.4" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.4.tgz#517a48e6f046ff1ae1a172c983cd993eb79d2f6a" + integrity sha512-3wNSaVVxdxcu0jd4FpQFoICdqgxs4zIQQvj+2yQKFfBOnLETQ6X5CDWdeasuGlSsooFlMkEioWDTqBv1wvw5Iw== dependencies: "@types/html-minifier-terser" "^6.0.0" html-minifier-terser "^6.0.2" @@ -7948,7 +7425,7 @@ htmlparser2@^8.0.1: domutils "^3.0.1" entities "^4.4.0" -http-cache-semantics@^4.0.0: +http-cache-semantics@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== @@ -8014,6 +7491,14 @@ http2-client@^1.2.5: resolved "https://registry.yarnpkg.com/http2-client/-/http2-client-1.3.5.tgz#20c9dc909e3cc98284dd20af2432c524086df181" integrity sha512-EC2utToWl4RKfs5zd36Mxq7nzHHBuomZboI0yYL6Y0RmBgT7Sgkq4rQ0ezFTYoIsSs7Tm9SJe+o2FcAg6GBhGA== +http2-wrapper@^2.1.10: + version "2.2.1" + resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-2.2.1.tgz#310968153dcdedb160d8b72114363ef5fce1f64a" + integrity sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ== + dependencies: + quick-lru "^5.1.1" + resolve-alpn "^1.2.0" + https-browserify@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" @@ -8029,6 +7514,11 @@ human-signals@^4.3.0: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2" integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ== +human-signals@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-5.0.0.tgz#42665a284f9ae0dade3ba41ebc37eb4b852f3a28" + integrity sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ== + husky@8.0.3: version "8.0.3" resolved "https://registry.yarnpkg.com/husky/-/husky-8.0.3.tgz#4936d7212e46d1dea28fef29bb3a108872cd9184" @@ -8064,11 +7554,11 @@ ieee754@^1.1.13, ieee754@^1.2.1: integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== ignore@^5.2.0, ignore@^5.2.4: - version "5.2.4" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" - integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== + version "5.3.0" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.0.tgz#67418ae40d34d6999c95ff56016759c718c82f78" + integrity sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg== -image-size@^1.0.1: +image-size@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/image-size/-/image-size-1.0.2.tgz#d778b6d0ab75b2737c1556dd631652eb963bc486" integrity sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg== @@ -8093,10 +7583,10 @@ import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1, import-fresh@^3.3 parent-module "^1.0.0" resolve-from "^4.0.0" -import-lazy@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" - integrity sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A== +import-lazy@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153" + integrity sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw== imurmurhash@^0.1.4: version "0.1.4" @@ -8121,7 +7611,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4: +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -8146,6 +7636,11 @@ inline-style-parser@0.1.1: resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1" integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== +inline-style-parser@0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.2.2.tgz#d498b4e6de0373458fc610ff793f6b14ebf45633" + integrity sha512-EcKzdTHVe8wFVOGEYXiW9WmJXPjqi1T+234YpJr98RiFYKHV3cdy1+3mkTE+KHTHxFFLH51SfaGOoUdW+v7ViQ== + inquirer@8.2.5: version "8.2.5" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.5.tgz#d8654a7542c35a9b9e069d27e2df4858784d54f8" @@ -8168,12 +7663,12 @@ inquirer@8.2.5: wrap-ansi "^7.0.0" internal-slot@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" - integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== + version "1.0.6" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.6.tgz#37e756098c4911c5e912b8edbf71ed3aa116f930" + integrity sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg== dependencies: - get-intrinsic "^1.2.0" - has "^1.0.3" + get-intrinsic "^1.2.2" + hasown "^2.0.0" side-channel "^1.0.4" "internmap@1 - 2": @@ -8181,21 +7676,16 @@ internal-slot@^1.0.5: resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009" integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== +internmap@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/internmap/-/internmap-1.0.1.tgz#0017cc8a3b99605f0302f2b198d272e015e5df95" + integrity sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw== + interpret@^1.0.0: version "1.4.0" resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== -intl-messageformat@^10.1.0: - version "10.5.3" - resolved "https://registry.yarnpkg.com/intl-messageformat/-/intl-messageformat-10.5.3.tgz#db0779d4a1988faa2977d76574489b7a25f0d5d0" - integrity sha512-TzKn1uhJBMyuKTO4zUX47SU+d66fu1W9tVzIiZrQ6hBqQQeYscBMIzKL/qEXnFbJrH9uU5VV3+T5fWib4SIcKA== - dependencies: - "@formatjs/ecma402-abstract" "1.17.2" - "@formatjs/fast-memoize" "2.2.0" - "@formatjs/icu-messageformat-parser" "2.6.2" - tslib "^2.4.0" - invariant@^2.2.4: version "2.2.4" resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" @@ -8213,11 +7703,16 @@ ipaddr.js@^2.0.1: resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.1.0.tgz#2119bc447ff8c257753b196fc5f1ce08a4cdf39f" integrity sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ== -is-alphabetical@1.0.4, is-alphabetical@^1.0.0: +is-alphabetical@^1.0.0: version "1.0.4" resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d" integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== +is-alphabetical@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-2.0.1.tgz#01072053ea7c1036df3c7d19a6daaec7f19e789b" + integrity sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ== + is-alphanumerical@^1.0.0: version "1.0.4" resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf" @@ -8226,6 +7721,14 @@ is-alphanumerical@^1.0.0: is-alphabetical "^1.0.0" is-decimal "^1.0.0" +is-alphanumerical@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz#7c03fbe96e3e931113e57f964b0a368cc2dfd875" + integrity sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw== + dependencies: + is-alphabetical "^2.0.0" + is-decimal "^2.0.0" + is-arguments@^1.0.4: version "1.1.1" resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" @@ -8287,19 +7790,19 @@ is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== -is-ci@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" - integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== +is-ci@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" + integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== dependencies: - ci-info "^2.0.0" + ci-info "^3.2.0" -is-core-module@^2.13.0, is-core-module@^2.5.0, is-core-module@^2.9.0: - version "2.13.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db" - integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== +is-core-module@^2.13.0, is-core-module@^2.5.0: + version "2.13.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" + integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== dependencies: - has "^1.0.3" + hasown "^2.0.0" is-date-object@^1.0.1, is-date-object@^1.0.5: version "1.0.5" @@ -8313,6 +7816,11 @@ is-decimal@^1.0.0: resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5" integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== +is-decimal@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-2.0.1.tgz#9469d2dc190d0214fd87d78b78caecc0cc14eef7" + integrity sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A== + is-docker@^2.0.0, is-docker@^2.1.1: version "2.2.1" resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" @@ -8350,6 +7858,13 @@ is-fullwidth-code-point@^4.0.0: resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== +is-fullwidth-code-point@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz#9609efced7c2f97da7b60145ef481c787c7ba704" + integrity sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA== + dependencies: + get-east-asian-width "^1.0.0" + is-generator-function@^1.0.10, is-generator-function@^1.0.7: version "1.0.10" resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" @@ -8369,6 +7884,11 @@ is-hexadecimal@^1.0.0: resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== +is-hexadecimal@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz#86b5bf668fca307498d319dfc03289d781a90027" + integrity sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg== + is-inside-container@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-inside-container/-/is-inside-container-1.0.0.tgz#e81fba699662eb31dbdaf26766a61d4814717ea4" @@ -8412,10 +7932,10 @@ is-negative-zero@^2.0.2: resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== -is-npm@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-5.0.0.tgz#43e8d65cc56e1b67f8d47262cf667099193f45a8" - integrity sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA== +is-npm@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-6.0.0.tgz#b59e75e8915543ca5d881ecff864077cba095261" + integrity sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ== is-number-object@^1.0.4: version "1.0.7" @@ -8481,6 +8001,13 @@ is-plain-object@^5.0.0: resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== +is-reference@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-3.0.2.tgz#154747a01f45cd962404ee89d43837af2cba247c" + integrity sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg== + dependencies: + "@types/estree" "*" + is-regex@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" @@ -8535,12 +8062,12 @@ is-symbol@^1.0.2, is-symbol@^1.0.3: dependencies: has-symbols "^1.0.2" -is-text-path@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" - integrity sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w== +is-text-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-2.0.0.tgz#b2484e2b720a633feb2e85b67dc193ff72c75636" + integrity sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw== dependencies: - text-extensions "^1.0.0" + text-extensions "^2.0.0" is-typed-array@^1.1.10, is-typed-array@^1.1.12, is-typed-array@^1.1.3, is-typed-array@^1.1.9: version "1.1.12" @@ -8584,21 +8111,11 @@ is-weakset@^2.0.1: call-bind "^1.0.2" get-intrinsic "^1.1.1" -is-whitespace-character@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7" - integrity sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w== - is-windows@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== -is-word-character@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.4.tgz#ce0e73216f98599060592f62ff31354ddbeb0230" - integrity sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA== - is-wsl@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" @@ -8606,10 +8123,10 @@ is-wsl@^2.2.0: dependencies: is-docker "^2.0.0" -is-yarn-global@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232" - integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== +is-yarn-global@^0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.4.1.tgz#b312d902b313f81e4eaf98b6361ba2b45cd694bb" + integrity sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ== isarray@0.0.1: version "0.0.1" @@ -8697,15 +8214,15 @@ jest-worker@^29.1.2: merge-stream "^2.0.0" supports-color "^8.0.0" -jiti@^1.18.2: - version "1.20.0" - resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.20.0.tgz#2d823b5852ee8963585c8dd8b7992ffc1ae83b42" - integrity sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA== +jiti@^1.18.2, jiti@^1.19.1, jiti@^1.20.0: + version "1.21.0" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d" + integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q== -joi@^17.6.0: - version "17.10.2" - resolved "https://registry.yarnpkg.com/joi/-/joi-17.10.2.tgz#4ecc348aa89ede0b48335aad172e0f5591e55b29" - integrity sha512-hcVhjBxRNW/is3nNLdGLIjkgXetkeGc2wyhydhz8KumG23Aerk4HPjU5zaPAMRqXQFc0xNqXTC7+zQjxr0GlKA== +joi@^17.6.0, joi@^17.9.2: + version "17.11.0" + resolved "https://registry.yarnpkg.com/joi/-/joi-17.11.0.tgz#aa9da753578ec7720e6f0ca2c7046996ed04fc1a" + integrity sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ== dependencies: "@hapi/hoek" "^9.0.0" "@hapi/topo" "^5.0.0" @@ -8738,10 +8255,10 @@ js-yaml@^4.1.0: dependencies: argparse "^2.0.1" -jsdoctypeparser@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/jsdoctypeparser/-/jsdoctypeparser-9.0.0.tgz#8c97e2fb69315eb274b0f01377eaa5c940bd7b26" - integrity sha512-jrTA2jJIL6/DAEILBEh2/w9QxCuwmvNXIry39Ay/HVfhE3o2yVV0U44blYkqdHA/OKloJEqvJy0xU+GSdE2SIw== +jsdoc-type-pratt-parser@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz#136f0571a99c184d84ec84662c45c29ceff71114" + integrity sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ== jsesc@^2.5.1: version "2.5.2" @@ -8753,11 +8270,6 @@ jsesc@~0.5.0: resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== -json-buffer@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" - integrity sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ== - json-buffer@3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" @@ -8812,11 +8324,14 @@ json-stable-stringify-without-jsonify@^1.0.1: integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== json-stable-stringify@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.2.tgz#e06f23128e0bbe342dc996ed5a19e28b57b580e0" - integrity sha512-eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g== + version "1.1.0" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.1.0.tgz#43d39c7c8da34bfaf785a61a56808b0def9f747d" + integrity sha512-zfA+5SuwYN2VWqN1/5HZaDzQKLJHaBVMZIIM+wuYjdptkaQsqzDdqjqf+lZZJUuJq1aanHiY8LhH8LmH+qBYJA== dependencies: + call-bind "^1.0.5" + isarray "^2.0.5" jsonify "^0.0.1" + object-keys "^1.1.1" json5@^2.1.2, json5@^2.2.0, json5@^2.2.3: version "2.2.3" @@ -8847,7 +8362,7 @@ jsonpointer@^5.0.0: resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz#2110e0af0900fd37467b5907ecd13a7884a1b559" integrity sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ== -"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: +"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.5: version "3.3.5" resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a" integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== @@ -8857,31 +8372,24 @@ jsonpointer@^5.0.0: object.assign "^4.1.4" object.values "^1.1.6" -katex@^0.13.0: - version "0.13.24" - resolved "https://registry.yarnpkg.com/katex/-/katex-0.13.24.tgz#fe55455eb455698cb24b911a353d16a3c855d905" - integrity sha512-jZxYuKCma3VS5UuxOx/rFV1QyGSl3Uy/i0kTJF3HgQ5xMinCQVF8Zd4bMY/9aI9b9A2pjIBOsjSSm68ykTAr8w== - dependencies: - commander "^8.0.0" - -keyv@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" - integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== +katex@^0.16.0: + version "0.16.9" + resolved "https://registry.yarnpkg.com/katex/-/katex-0.16.9.tgz#bc62d8f7abfea6e181250f85a56e4ef292dcb1fa" + integrity sha512-fsSYjWS0EEOwvy81j3vRA8TEAhQhKiqO+FQaKWp0m39qwOzHVBgAUBIXWj1pB+O2W3fIpNa6Y9KSKCVbfPhyAQ== dependencies: - json-buffer "3.0.0" + commander "^8.3.0" keyv@^4.5.3: - version "4.5.3" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.3.tgz#00873d2b046df737963157bd04f294ca818c9c25" - integrity sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug== + version "4.5.4" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== dependencies: json-buffer "3.0.1" khroma@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/khroma/-/khroma-2.0.0.tgz#7577de98aed9f36c7a474c4d453d94c0d6c6588b" - integrity sha512-2J8rDNlQWbtiNYThZRvmMv5yt44ZakX+Tz5ZIp/mN1pt4snn+m030Va5Z4v8xA0cQFDXBwO/8i42xL4QPsVk3g== + version "2.1.0" + resolved "https://registry.yarnpkg.com/khroma/-/khroma-2.1.0.tgz#45f2ce94ce231a437cf5b63c2e886e6eb42bbbb1" + integrity sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw== kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3: version "6.0.3" @@ -8903,32 +8411,32 @@ klona@^2.0.4: resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22" integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA== -language-subtag-registry@~0.3.2: +language-subtag-registry@^0.3.20: version "0.3.22" resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== -language-tags@=1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" - integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== +language-tags@^1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.9.tgz#1ffdcd0ec0fafb4b1be7f8b11f306ad0f9c08777" + integrity sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA== dependencies: - language-subtag-registry "~0.3.2" + language-subtag-registry "^0.3.20" -latest-version@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face" - integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== +latest-version@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-7.0.0.tgz#843201591ea81a4d404932eeb61240fe04e9e5da" + integrity sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg== dependencies: - package-json "^6.3.0" + package-json "^8.1.0" launch-editor@^2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.0.tgz#4c0c1a6ac126c572bd9ff9a30da1d2cae66defd7" - integrity sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ== + version "2.6.1" + resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.1.tgz#f259c9ef95cbc9425620bbbd14b468fcdb4ffe3c" + integrity sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw== dependencies: picocolors "^1.0.0" - shell-quote "^1.7.3" + shell-quote "^1.8.1" layout-base@^1.0.0: version "1.0.2" @@ -8940,13 +8448,6 @@ layout-base@^2.0.0: resolved "https://registry.yarnpkg.com/layout-base/-/layout-base-2.0.1.tgz#d0337913586c90f9c2c075292069f5c2da5dd285" integrity sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg== -"legacy-swc-helpers@npm:@swc/helpers@=0.4.14": - version "0.4.14" - resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.14.tgz#1352ac6d95e3617ccb7c1498ff019654f1e12a74" - integrity sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw== - dependencies: - tslib "^2.4.0" - leven@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" @@ -8960,7 +8461,12 @@ levn@^0.4.1: prelude-ls "^1.2.1" type-check "~0.4.0" -lilconfig@2.1.0, lilconfig@^2.0.3: +lilconfig@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.0.0.tgz#f8067feb033b5b74dab4602a5f5029420be749bc" + integrity sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g== + +lilconfig@^2.0.3: version "2.1.0" resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== @@ -8970,38 +8476,38 @@ lines-and-columns@^1.1.6: resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== -lint-staged@14.0.1: - version "14.0.1" - resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-14.0.1.tgz#57dfa3013a3d60762d9af5d9c83bdb51291a6232" - integrity sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw== +lint-staged@15.2.0: + version "15.2.0" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-15.2.0.tgz#3111534ca58096a3c8f70b044b6e7fe21b36f859" + integrity sha512-TFZzUEV00f+2YLaVPWBWGAMq7So6yQx+GG8YRMDeOEIf95Zn5RyiLMsEiX4KTNl9vq/w+NqRJkLA1kPIo15ufQ== dependencies: chalk "5.3.0" - commander "11.0.0" + commander "11.1.0" debug "4.3.4" - execa "7.2.0" - lilconfig "2.1.0" - listr2 "6.6.1" + execa "8.0.1" + lilconfig "3.0.0" + listr2 "8.0.0" micromatch "4.0.5" pidtree "0.6.0" string-argv "0.3.2" - yaml "2.3.1" + yaml "2.3.4" liquid-json@0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/liquid-json/-/liquid-json-0.3.1.tgz#9155a18136d8a6b2615e5f16f9a2448ab6b50eea" integrity sha512-wUayTU8MS827Dam6MxgD72Ui+KOSF+u/eIqpatOtjnvgJ0+mnDq33uC2M7J0tPK+upe/DpUAuK4JUU89iBoNKQ== -listr2@6.6.1: - version "6.6.1" - resolved "https://registry.yarnpkg.com/listr2/-/listr2-6.6.1.tgz#08b2329e7e8ba6298481464937099f4a2cd7f95d" - integrity sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg== +listr2@8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/listr2/-/listr2-8.0.0.tgz#aa7c230995f8ce378585f7c96c0c6d1cefa4700d" + integrity sha512-u8cusxAcyqAiQ2RhYvV7kRKNLgUvtObIbhOX2NCXqvp1UU32xIg5CT22ykS2TPKJXZWJwtK3IKLiqAGlGNE+Zg== dependencies: - cli-truncate "^3.1.0" + cli-truncate "^4.0.0" colorette "^2.0.20" eventemitter3 "^5.0.1" - log-update "^5.0.1" + log-update "^6.0.0" rfdc "^1.3.0" - wrap-ansi "^8.1.0" + wrap-ansi "^9.0.0" loader-runner@^4.2.0: version "4.3.0" @@ -9044,6 +8550,13 @@ locate-path@^6.0.0: dependencies: p-locate "^5.0.0" +locate-path@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.2.0.tgz#69cb1779bd90b35ab1e771e1f2f89a202c2a8a8a" + integrity sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA== + dependencies: + p-locate "^6.0.0" + lodash-es@^4.17.21: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" @@ -9059,35 +8572,10 @@ lodash.clonedeep@^4.5.0: resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" integrity sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ== -lodash.curry@^4.0.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.curry/-/lodash.curry-4.1.1.tgz#248e36072ede906501d75966200a86dab8b23170" - integrity sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA== - lodash.debounce@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== - -lodash.escape@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-4.0.1.tgz#c9044690c21e04294beaa517712fded1fa88de98" - integrity sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw== - -lodash.flatten@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" - integrity sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g== - -lodash.flow@^3.3.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/lodash.flow/-/lodash.flow-3.5.0.tgz#87bf40292b8cf83e4e8ce1a3ae4209e20071675a" - integrity sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw== - -lodash.invokemap@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.invokemap/-/lodash.invokemap-4.6.0.tgz#1748cda5d8b0ef8369c4eb3ec54c21feba1f2d62" - integrity sha512-CfkycNtMqgUlfjfdh2BhKO/ZXrP8ePOX5lEU/g0R3ItJcnuxWDwokMGKx1hWcfOikmyOVx6X9IwWnDGlgKl61w== + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== lodash.isequal@^4.5.0: version "4.5.0" @@ -9129,11 +8617,6 @@ lodash.mergewith@^4.6.2: resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55" integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== -lodash.pullall@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/lodash.pullall/-/lodash.pullall-4.2.0.tgz#9d98b8518b7c965b0fae4099bd9fb7df8bbf38ba" - integrity sha512-VhqxBKH0ZxPpLhiu68YD1KnHmbhQJQctcipvmFnqIBDYzcIHzf3Zpu0tpeOKtR4x76p9yohc506eGdOjTmyIBg== - lodash.snakecase@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" @@ -9149,22 +8632,17 @@ lodash.startcase@^4.4.0: resolved "https://registry.yarnpkg.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" integrity sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg== -lodash.uniq@4.5.0, lodash.uniq@^4.5.0: +lodash.uniq@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== -lodash.uniqby@^4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302" - integrity sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww== - lodash.upperfirst@^4.3.1: version "4.3.1" resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" integrity sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg== -lodash@4.17.21, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4: +lodash@4.17.21, lodash@^4.17.15, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== @@ -9177,22 +8655,27 @@ log-symbols@^4.1.0: chalk "^4.1.0" is-unicode-supported "^0.1.0" -log-update@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/log-update/-/log-update-5.0.1.tgz#9e928bf70cb183c1f0c9e91d9e6b7115d597ce09" - integrity sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw== +log-update@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-6.0.0.tgz#0ddeb7ac6ad658c944c1de902993fce7c33f5e59" + integrity sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw== dependencies: - ansi-escapes "^5.0.0" + ansi-escapes "^6.2.0" cli-cursor "^4.0.0" - slice-ansi "^5.0.0" - strip-ansi "^7.0.1" - wrap-ansi "^8.0.1" + slice-ansi "^7.0.0" + strip-ansi "^7.1.0" + wrap-ansi "^9.0.0" longest-streak@^2.0.0: version "2.0.4" resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4" integrity sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg== +longest-streak@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.1.0.tgz#62fa67cd958742a1574af9f39866364102d90cd4" + integrity sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g== + longest@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/longest/-/longest-2.0.1.tgz#781e183296aa94f6d4d916dc335d0d17aefa23f8" @@ -9212,15 +8695,10 @@ lower-case@^2.0.2: dependencies: tslib "^2.0.3" -lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" - integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== - -lowercase-keys@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" - integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== +lowercase-keys@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-3.0.0.tgz#c5e7d442e37ead247ae9db117a9d0a467c89d4f2" + integrity sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ== lru-cache@^5.1.1: version "5.1.1" @@ -9244,24 +8722,12 @@ magic-string@^0.25.0, magic-string@^0.25.7: sourcemap-codec "^1.4.8" magic-string@^0.30.0: - version "0.30.4" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.4.tgz#c2c683265fc18dda49b56fc7318d33ca0332c98c" - integrity sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg== + version "0.30.5" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.5.tgz#1994d980bd1c8835dc6e78db7cbd4ae4f24746f9" + integrity sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA== dependencies: "@jridgewell/sourcemap-codec" "^1.4.15" -make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -make-error@^1.1.1: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - map-obj@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" @@ -9272,10 +8738,15 @@ map-obj@^4.0.0: resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== -markdown-escapes@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.4.tgz#c95415ef451499d7602b91095f3c8e8975f78535" - integrity sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg== +markdown-extensions@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-2.0.0.tgz#34bebc83e9938cae16e0e017e4a9814a8330d3c4" + integrity sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q== + +markdown-table@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-3.0.3.tgz#e6331d30e493127e031dd385488b5bd326e4a6bd" + integrity sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw== md5.js@^1.3.4: version "1.3.5" @@ -9286,20 +8757,6 @@ md5.js@^1.3.4: inherits "^2.0.1" safe-buffer "^5.1.2" -mdast-squeeze-paragraphs@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz#7c4c114679c3bee27ef10b58e2e015be79f1ef97" - integrity sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ== - dependencies: - unist-util-remove "^2.0.0" - -mdast-util-definitions@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz#c5c1a84db799173b4dcf7643cda999e440c24db2" - integrity sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ== - dependencies: - unist-util-visit "^2.0.0" - mdast-util-definitions@^5.0.0: version "5.1.2" resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz#9910abb60ac5d7115d6819b57ae0bcef07a3f7a7" @@ -9309,7 +8766,21 @@ mdast-util-definitions@^5.0.0: "@types/unist" "^2.0.0" unist-util-visit "^4.0.0" -mdast-util-find-and-replace@^1.0.0: +mdast-util-directive@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-directive/-/mdast-util-directive-3.0.0.tgz#3fb1764e705bbdf0afb0d3f889e4404c3e82561f" + integrity sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q== + dependencies: + "@types/mdast" "^4.0.0" + "@types/unist" "^3.0.0" + devlop "^1.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + parse-entities "^4.0.0" + stringify-entities "^4.0.0" + unist-util-visit-parents "^6.0.0" + +mdast-util-find-and-replace@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/mdast-util-find-and-replace/-/mdast-util-find-and-replace-1.1.1.tgz#b7db1e873f96f66588c321f1363069abf607d1b5" integrity sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA== @@ -9318,6 +8789,16 @@ mdast-util-find-and-replace@^1.0.0: unist-util-is "^4.0.0" unist-util-visit-parents "^3.0.0" +mdast-util-find-and-replace@^3.0.0, mdast-util-find-and-replace@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.1.tgz#a6fc7b62f0994e973490e45262e4bc07607b04e0" + integrity sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA== + dependencies: + "@types/mdast" "^4.0.0" + escape-string-regexp "^5.0.0" + unist-util-is "^6.0.0" + unist-util-visit-parents "^6.0.0" + mdast-util-from-markdown@^0.8.0: version "0.8.5" resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz#d1ef2ca42bc377ecb0463a987910dae89bd9a28c" @@ -9329,7 +8810,7 @@ mdast-util-from-markdown@^0.8.0: parse-entities "^2.0.0" unist-util-stringify-position "^2.0.0" -mdast-util-from-markdown@^1.0.0: +mdast-util-from-markdown@^1.0.0, mdast-util-from-markdown@^1.3.0: version "1.3.1" resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz#9421a5a247f10d31d2faed2a30df5ec89ceafcf0" integrity sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww== @@ -9347,19 +8828,175 @@ mdast-util-from-markdown@^1.0.0: unist-util-stringify-position "^3.0.0" uvu "^0.5.0" -mdast-util-to-hast@10.0.1: - version "10.0.1" - resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz#0cfc82089494c52d46eb0e3edb7a4eb2aea021eb" - integrity sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA== +mdast-util-from-markdown@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.0.tgz#52f14815ec291ed061f2922fd14d6689c810cb88" + integrity sha512-n7MTOr/z+8NAX/wmhhDji8O3bRvPTV/U0oTCaZJkjhPSKTPhS3xufVhKGF8s1pJ7Ox4QgoIU7KHseh09S+9rTA== dependencies: - "@types/mdast" "^3.0.0" - "@types/unist" "^2.0.0" - mdast-util-definitions "^4.0.0" - mdurl "^1.0.0" - unist-builder "^2.0.0" - unist-util-generated "^1.0.0" - unist-util-position "^3.0.0" - unist-util-visit "^2.0.0" + "@types/mdast" "^4.0.0" + "@types/unist" "^3.0.0" + decode-named-character-reference "^1.0.0" + devlop "^1.0.0" + mdast-util-to-string "^4.0.0" + micromark "^4.0.0" + micromark-util-decode-numeric-character-reference "^2.0.0" + micromark-util-decode-string "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + unist-util-stringify-position "^4.0.0" + +mdast-util-frontmatter@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/mdast-util-frontmatter/-/mdast-util-frontmatter-2.0.1.tgz#f5f929eb1eb36c8a7737475c7eb438261f964ee8" + integrity sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA== + dependencies: + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + escape-string-regexp "^5.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + micromark-extension-frontmatter "^2.0.0" + +mdast-util-gfm-autolink-literal@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.0.tgz#5baf35407421310a08e68c15e5d8821e8898ba2a" + integrity sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg== + dependencies: + "@types/mdast" "^4.0.0" + ccount "^2.0.0" + devlop "^1.0.0" + mdast-util-find-and-replace "^3.0.0" + micromark-util-character "^2.0.0" + +mdast-util-gfm-footnote@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.0.0.tgz#25a1753c7d16db8bfd53cd84fe50562bd1e6d6a9" + integrity sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ== + dependencies: + "@types/mdast" "^4.0.0" + devlop "^1.1.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + +mdast-util-gfm-strikethrough@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz#d44ef9e8ed283ac8c1165ab0d0dfd058c2764c16" + integrity sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-gfm-table@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz#7a435fb6223a72b0862b33afbd712b6dae878d38" + integrity sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg== + dependencies: + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + markdown-table "^3.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-gfm-task-list-item@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz#e68095d2f8a4303ef24094ab642e1047b991a936" + integrity sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ== + dependencies: + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-gfm@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-gfm/-/mdast-util-gfm-3.0.0.tgz#3f2aecc879785c3cb6a81ff3a243dc11eca61095" + integrity sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw== + dependencies: + mdast-util-from-markdown "^2.0.0" + mdast-util-gfm-autolink-literal "^2.0.0" + mdast-util-gfm-footnote "^2.0.0" + mdast-util-gfm-strikethrough "^2.0.0" + mdast-util-gfm-table "^2.0.0" + mdast-util-gfm-task-list-item "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-math@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-math/-/mdast-util-math-3.0.0.tgz#8d79dd3baf8ab8ac781f62b8853768190b9a00b0" + integrity sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w== + dependencies: + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + longest-streak "^3.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.1.0" + unist-util-remove-position "^5.0.0" + +mdast-util-mdx-expression@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.0.tgz#4968b73724d320a379110d853e943a501bfd9d87" + integrity sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw== + dependencies: + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-mdx-jsx@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.0.0.tgz#f73631fa5bb7a36712ff1e9cedec0cafed03401c" + integrity sha512-XZuPPzQNBPAlaqsTTgRrcJnyFbSOBovSadFgbFu8SnuNgm+6Bdx1K+IWoitsmj6Lq6MNtI+ytOqwN70n//NaBA== + dependencies: + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + "@types/unist" "^3.0.0" + ccount "^2.0.0" + devlop "^1.1.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + parse-entities "^4.0.0" + stringify-entities "^4.0.0" + unist-util-remove-position "^5.0.0" + unist-util-stringify-position "^4.0.0" + vfile-message "^4.0.0" + +mdast-util-mdx@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz#792f9cf0361b46bee1fdf1ef36beac424a099c41" + integrity sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w== + dependencies: + mdast-util-from-markdown "^2.0.0" + mdast-util-mdx-expression "^2.0.0" + mdast-util-mdx-jsx "^3.0.0" + mdast-util-mdxjs-esm "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-mdxjs-esm@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz#019cfbe757ad62dd557db35a695e7314bcc9fa97" + integrity sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg== + dependencies: + "@types/estree-jsx" "^1.0.0" + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + devlop "^1.0.0" + mdast-util-from-markdown "^2.0.0" + mdast-util-to-markdown "^2.0.0" + +mdast-util-phrasing@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-phrasing/-/mdast-util-phrasing-4.0.0.tgz#468cbbb277375523de807248b8ad969feb02a5c7" + integrity sha512-xadSsJayQIucJ9n053dfQwVu1kuXg7jCTdYsMK8rqzKZh52nLfSH/k0sAxE0u+pj/zKZX+o5wB+ML5mRayOxFA== + dependencies: + "@types/mdast" "^4.0.0" + unist-util-is "^6.0.0" mdast-util-to-hast@^12.1.0: version "12.3.0" @@ -9375,6 +9012,20 @@ mdast-util-to-hast@^12.1.0: unist-util-position "^4.0.0" unist-util-visit "^4.0.0" +mdast-util-to-hast@^13.0.0: + version "13.0.2" + resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-13.0.2.tgz#74c0a9f014bb2340cae6118f6fccd75467792be7" + integrity sha512-U5I+500EOOw9e3ZrclN3Is3fRpw8c19SMyNZlZ2IS+7vLsNzb2Om11VpIVOR+/0137GhZsFEF6YiKD5+0Hr2Og== + dependencies: + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + "@ungap/structured-clone" "^1.0.0" + devlop "^1.0.0" + micromark-util-sanitize-uri "^2.0.0" + trim-lines "^3.0.0" + unist-util-position "^5.0.0" + unist-util-visit "^5.0.0" + mdast-util-to-markdown@^0.6.0: version "0.6.5" resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz#b33f67ca820d69e6cc527a93d4039249b504bebe" @@ -9387,6 +9038,20 @@ mdast-util-to-markdown@^0.6.0: repeat-string "^1.0.0" zwitch "^1.0.0" +mdast-util-to-markdown@^2.0.0, mdast-util-to-markdown@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.0.tgz#9813f1d6e0cdaac7c244ec8c6dabfdb2102ea2b4" + integrity sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ== + dependencies: + "@types/mdast" "^4.0.0" + "@types/unist" "^3.0.0" + longest-streak "^3.0.0" + mdast-util-phrasing "^4.0.0" + mdast-util-to-string "^4.0.0" + micromark-util-decode-string "^2.0.0" + unist-util-visit "^5.0.0" + zwitch "^2.0.0" + mdast-util-to-string@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz#b8cfe6a713e1091cb5b728fc48885a4767f8b97b" @@ -9399,6 +9064,13 @@ mdast-util-to-string@^3.1.0: dependencies: "@types/mdast" "^3.0.0" +mdast-util-to-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz#7a5121475556a04e7eddeb67b264aae79d312814" + integrity sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg== + dependencies: + "@types/mdast" "^4.0.0" + mdn-data@2.0.14: version "2.0.14" resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" @@ -9414,11 +9086,6 @@ mdn-data@2.0.30: resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.30.tgz#ce4df6f80af6cfbe218ecd5c552ba13c4dfa08cc" integrity sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA== -mdurl@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" - integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== - media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" @@ -9431,7 +9098,12 @@ memfs@^3.1.2, memfs@^3.4.3: dependencies: fs-monkey "^1.0.4" -meow@^8.0.0, meow@^8.1.2: +meow@^12.0.1: + version "12.1.1" + resolved "https://registry.yarnpkg.com/meow/-/meow-12.1.1.tgz#e558dddbab12477b69b2e9a2728c327f191bace6" + integrity sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw== + +meow@^8.0.0: version "8.1.2" resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897" integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q== @@ -9468,24 +9140,28 @@ merge@^2.1.1: resolved "https://registry.yarnpkg.com/merge/-/merge-2.1.1.tgz#59ef4bf7e0b3e879186436e8481c06a6c162ca98" integrity sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w== -mermaid@^9.2.2: - version "9.4.3" - resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-9.4.3.tgz#62cf210c246b74972ea98c19837519b6f03427f2" - integrity sha512-TLkQEtqhRSuEHSE34lh5bCa94KATCyluAXmFnNI2PRZwOpXFeqiJWwZl+d2CcemE1RS6QbbueSSq9QIg8Uxcyw== +mermaid@^10.4.0: + version "10.6.1" + resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-10.6.1.tgz#701f4160484137a417770ce757ce1887a98c00fc" + integrity sha512-Hky0/RpOw/1il9X8AvzOEChfJtVvmXm+y7JML5C//ePYMy0/9jCEmW1E1g86x9oDfW9+iVEdTV/i+M6KWRNs4A== dependencies: - "@braintree/sanitize-url" "^6.0.0" + "@braintree/sanitize-url" "^6.0.1" + "@types/d3-scale" "^4.0.3" + "@types/d3-scale-chromatic" "^3.0.0" cytoscape "^3.23.0" cytoscape-cose-bilkent "^4.1.0" cytoscape-fcose "^2.1.0" d3 "^7.4.0" - dagre-d3-es "7.0.9" + d3-sankey "^0.12.3" + dagre-d3-es "7.0.10" dayjs "^1.11.7" - dompurify "2.4.3" + dompurify "^3.0.5" elkjs "^0.8.2" khroma "^2.0.0" lodash-es "^4.17.21" + mdast-util-from-markdown "^1.3.0" non-layered-tidy-tree-layout "^2.0.2" - stylis "^4.1.2" + stylis "^4.1.3" ts-dedent "^2.2.0" uuid "^9.0.0" web-worker "^1.2.0" @@ -9517,6 +9193,209 @@ micromark-core-commonmark@^1.0.1: micromark-util-types "^1.0.1" uvu "^0.5.0" +micromark-core-commonmark@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-2.0.0.tgz#50740201f0ee78c12a675bf3e68ffebc0bf931a3" + integrity sha512-jThOz/pVmAYUtkroV3D5c1osFXAMv9e0ypGDOIZuCeAe91/sD6BoE2Sjzt30yuXtwOYUmySOhMas/PVyh02itA== + dependencies: + decode-named-character-reference "^1.0.0" + devlop "^1.0.0" + micromark-factory-destination "^2.0.0" + micromark-factory-label "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-factory-title "^2.0.0" + micromark-factory-whitespace "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-classify-character "^2.0.0" + micromark-util-html-tag-name "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-resolve-all "^2.0.0" + micromark-util-subtokenize "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-directive@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-directive/-/micromark-extension-directive-3.0.0.tgz#527869de497a6de9024138479091bc885dae076b" + integrity sha512-61OI07qpQrERc+0wEysLHMvoiO3s2R56x5u7glHq2Yqq6EHbH4dW25G9GfDdGCDYqA21KE6DWgNSzxSwHc2hSg== + dependencies: + devlop "^1.0.0" + micromark-factory-space "^2.0.0" + micromark-factory-whitespace "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + parse-entities "^4.0.0" + +micromark-extension-frontmatter@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-frontmatter/-/micromark-extension-frontmatter-2.0.0.tgz#651c52ffa5d7a8eeed687c513cd869885882d67a" + integrity sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg== + dependencies: + fault "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-autolink-literal@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.0.0.tgz#f1e50b42e67d441528f39a67133eddde2bbabfd9" + integrity sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-sanitize-uri "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-footnote@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.0.0.tgz#91afad310065a94b636ab1e9dab2c60d1aab953c" + integrity sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg== + dependencies: + devlop "^1.0.0" + micromark-core-commonmark "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-sanitize-uri "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-strikethrough@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.0.0.tgz#6917db8e320da70e39ffbf97abdbff83e6783e61" + integrity sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw== + dependencies: + devlop "^1.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-classify-character "^2.0.0" + micromark-util-resolve-all "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-table@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.0.0.tgz#2cf3fe352d9e089b7ef5fff003bdfe0da29649b7" + integrity sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw== + dependencies: + devlop "^1.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm-tagfilter@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz#f26d8a7807b5985fba13cf61465b58ca5ff7dc57" + integrity sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg== + dependencies: + micromark-util-types "^2.0.0" + +micromark-extension-gfm-task-list-item@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.0.1.tgz#ee8b208f1ced1eb9fb11c19a23666e59d86d4838" + integrity sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw== + dependencies: + devlop "^1.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-gfm@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz#3e13376ab95dd7a5cfd0e29560dfe999657b3c5b" + integrity sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w== + dependencies: + micromark-extension-gfm-autolink-literal "^2.0.0" + micromark-extension-gfm-footnote "^2.0.0" + micromark-extension-gfm-strikethrough "^2.0.0" + micromark-extension-gfm-table "^2.0.0" + micromark-extension-gfm-tagfilter "^2.0.0" + micromark-extension-gfm-task-list-item "^2.0.0" + micromark-util-combine-extensions "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-math@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-math/-/micromark-extension-math-3.0.0.tgz#c7a47d6ce990812243ad3946a30bb60e4c2a8c76" + integrity sha512-iJ2Q28vBoEovLN5o3GO12CpqorQRYDPT+p4zW50tGwTfJB+iv/VnB6Ini+gqa24K97DwptMBBIvVX6Bjk49oyQ== + dependencies: + "@types/katex" "^0.16.0" + devlop "^1.0.0" + katex "^0.16.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-mdx-expression@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.0.tgz#1407b9ce69916cf5e03a196ad9586889df25302a" + integrity sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ== + dependencies: + "@types/estree" "^1.0.0" + devlop "^1.0.0" + micromark-factory-mdx-expression "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-events-to-acorn "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-extension-mdx-jsx@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.0.tgz#4aba0797c25efb2366a3fd2d367c6b1c1159f4f5" + integrity sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w== + dependencies: + "@types/acorn" "^4.0.0" + "@types/estree" "^1.0.0" + devlop "^1.0.0" + estree-util-is-identifier-name "^3.0.0" + micromark-factory-mdx-expression "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + vfile-message "^4.0.0" + +micromark-extension-mdx-md@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz#1d252881ea35d74698423ab44917e1f5b197b92d" + integrity sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ== + dependencies: + micromark-util-types "^2.0.0" + +micromark-extension-mdxjs-esm@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz#de21b2b045fd2059bd00d36746081de38390d54a" + integrity sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A== + dependencies: + "@types/estree" "^1.0.0" + devlop "^1.0.0" + micromark-core-commonmark "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-events-to-acorn "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + unist-util-position-from-estree "^2.0.0" + vfile-message "^4.0.0" + +micromark-extension-mdxjs@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz#b5a2e0ed449288f3f6f6c544358159557549de18" + integrity sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ== + dependencies: + acorn "^8.0.0" + acorn-jsx "^5.0.0" + micromark-extension-mdx-expression "^3.0.0" + micromark-extension-mdx-jsx "^3.0.0" + micromark-extension-mdx-md "^2.0.0" + micromark-extension-mdxjs-esm "^3.0.0" + micromark-util-combine-extensions "^2.0.0" + micromark-util-types "^2.0.0" + micromark-factory-destination@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz#eb815957d83e6d44479b3df640f010edad667b9f" @@ -9526,6 +9405,15 @@ micromark-factory-destination@^1.0.0: micromark-util-symbol "^1.0.0" micromark-util-types "^1.0.0" +micromark-factory-destination@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz#857c94debd2c873cba34e0445ab26b74f6a6ec07" + integrity sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + micromark-factory-label@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz#cc95d5478269085cfa2a7282b3de26eb2e2dec68" @@ -9536,6 +9424,30 @@ micromark-factory-label@^1.0.0: micromark-util-types "^1.0.0" uvu "^0.5.0" +micromark-factory-label@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz#17c5c2e66ce39ad6f4fc4cbf40d972f9096f726a" + integrity sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw== + dependencies: + devlop "^1.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-factory-mdx-expression@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.1.tgz#f2a9724ce174f1751173beb2c1f88062d3373b1b" + integrity sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg== + dependencies: + "@types/estree" "^1.0.0" + devlop "^1.0.0" + micromark-util-character "^2.0.0" + micromark-util-events-to-acorn "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + unist-util-position-from-estree "^2.0.0" + vfile-message "^4.0.0" + micromark-factory-space@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz#c8f40b0640a0150751d3345ed885a080b0d15faf" @@ -9544,6 +9456,14 @@ micromark-factory-space@^1.0.0: micromark-util-character "^1.0.0" micromark-util-types "^1.0.0" +micromark-factory-space@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz#5e7afd5929c23b96566d0e1ae018ae4fcf81d030" + integrity sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-types "^2.0.0" + micromark-factory-title@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz#dd0fe951d7a0ac71bdc5ee13e5d1465ad7f50ea1" @@ -9554,6 +9474,16 @@ micromark-factory-title@^1.0.0: micromark-util-symbol "^1.0.0" micromark-util-types "^1.0.0" +micromark-factory-title@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz#726140fc77892af524705d689e1cf06c8a83ea95" + integrity sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A== + dependencies: + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + micromark-factory-whitespace@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz#798fb7489f4c8abafa7ca77eed6b5745853c9705" @@ -9564,7 +9494,17 @@ micromark-factory-whitespace@^1.0.0: micromark-util-symbol "^1.0.0" micromark-util-types "^1.0.0" -micromark-util-character@^1.0.0: +micromark-factory-whitespace@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz#9e92eb0f5468083381f923d9653632b3cfb5f763" + integrity sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA== + dependencies: + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-character@^1.0.0, micromark-util-character@^1.1.0: version "1.2.0" resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-1.2.0.tgz#4fedaa3646db249bc58caeb000eb3549a8ca5dcc" integrity sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg== @@ -9572,6 +9512,14 @@ micromark-util-character@^1.0.0: micromark-util-symbol "^1.0.0" micromark-util-types "^1.0.0" +micromark-util-character@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-2.0.1.tgz#52b824c2e2633b6fb33399d2ec78ee2a90d6b298" + integrity sha512-3wgnrmEAJ4T+mGXAUfMvMAbxU9RDG43XmGce4j6CwPtVxB3vfwXSZ6KhFwDzZ3mZHhmPimMAXg71veiBGzeAZw== + dependencies: + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + micromark-util-chunked@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz#37a24d33333c8c69a74ba12a14651fd9ea8a368b" @@ -9579,6 +9527,13 @@ micromark-util-chunked@^1.0.0: dependencies: micromark-util-symbol "^1.0.0" +micromark-util-chunked@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz#e51f4db85fb203a79dbfef23fd41b2f03dc2ef89" + integrity sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg== + dependencies: + micromark-util-symbol "^2.0.0" + micromark-util-classify-character@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz#6a7f8c8838e8a120c8e3c4f2ae97a2bff9190e9d" @@ -9588,6 +9543,15 @@ micromark-util-classify-character@^1.0.0: micromark-util-symbol "^1.0.0" micromark-util-types "^1.0.0" +micromark-util-classify-character@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz#8c7537c20d0750b12df31f86e976d1d951165f34" + integrity sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + micromark-util-combine-extensions@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz#192e2b3d6567660a85f735e54d8ea6e3952dbe84" @@ -9596,6 +9560,14 @@ micromark-util-combine-extensions@^1.0.0: micromark-util-chunked "^1.0.0" micromark-util-types "^1.0.0" +micromark-util-combine-extensions@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz#75d6ab65c58b7403616db8d6b31315013bfb7ee5" + integrity sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ== + dependencies: + micromark-util-chunked "^2.0.0" + micromark-util-types "^2.0.0" + micromark-util-decode-numeric-character-reference@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz#b1e6e17009b1f20bc652a521309c5f22c85eb1c6" @@ -9603,6 +9575,13 @@ micromark-util-decode-numeric-character-reference@^1.0.0: dependencies: micromark-util-symbol "^1.0.0" +micromark-util-decode-numeric-character-reference@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz#2698bbb38f2a9ba6310e359f99fcb2b35a0d2bd5" + integrity sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ== + dependencies: + micromark-util-symbol "^2.0.0" + micromark-util-decode-string@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz#dc12b078cba7a3ff690d0203f95b5d5537f2809c" @@ -9613,16 +9592,50 @@ micromark-util-decode-string@^1.0.0: micromark-util-decode-numeric-character-reference "^1.0.0" micromark-util-symbol "^1.0.0" +micromark-util-decode-string@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz#7dfa3a63c45aecaa17824e656bcdb01f9737154a" + integrity sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA== + dependencies: + decode-named-character-reference "^1.0.0" + micromark-util-character "^2.0.0" + micromark-util-decode-numeric-character-reference "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-encode@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz#92e4f565fd4ccb19e0dcae1afab9a173bbeb19a5" integrity sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw== +micromark-util-encode@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz#0921ac7953dc3f1fd281e3d1932decfdb9382ab1" + integrity sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA== + +micromark-util-events-to-acorn@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.2.tgz#4275834f5453c088bd29cd72dfbf80e3327cec07" + integrity sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA== + dependencies: + "@types/acorn" "^4.0.0" + "@types/estree" "^1.0.0" + "@types/unist" "^3.0.0" + devlop "^1.0.0" + estree-util-visit "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + vfile-message "^4.0.0" + micromark-util-html-tag-name@^1.0.0: version "1.2.0" resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz#48fd7a25826f29d2f71479d3b4e83e94829b3588" integrity sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q== +micromark-util-html-tag-name@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz#ae34b01cbe063363847670284c6255bb12138ec4" + integrity sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw== + micromark-util-normalize-identifier@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz#7a73f824eb9f10d442b4d7f120fecb9b38ebf8b7" @@ -9630,6 +9643,13 @@ micromark-util-normalize-identifier@^1.0.0: dependencies: micromark-util-symbol "^1.0.0" +micromark-util-normalize-identifier@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz#91f9a4e65fe66cc80c53b35b0254ad67aa431d8b" + integrity sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w== + dependencies: + micromark-util-symbol "^2.0.0" + micromark-util-resolve-all@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz#4652a591ee8c8fa06714c9b54cd6c8e693671188" @@ -9637,6 +9657,13 @@ micromark-util-resolve-all@^1.0.0: dependencies: micromark-util-types "^1.0.0" +micromark-util-resolve-all@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz#189656e7e1a53d0c86a38a652b284a252389f364" + integrity sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA== + dependencies: + micromark-util-types "^2.0.0" + micromark-util-sanitize-uri@^1.0.0, micromark-util-sanitize-uri@^1.1.0: version "1.2.0" resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz#613f738e4400c6eedbc53590c67b197e30d7f90d" @@ -9646,6 +9673,15 @@ micromark-util-sanitize-uri@^1.0.0, micromark-util-sanitize-uri@^1.1.0: micromark-util-encode "^1.0.0" micromark-util-symbol "^1.0.0" +micromark-util-sanitize-uri@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz#ec8fbf0258e9e6d8f13d9e4770f9be64342673de" + integrity sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw== + dependencies: + micromark-util-character "^2.0.0" + micromark-util-encode "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-subtokenize@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz#941c74f93a93eaf687b9054aeb94642b0e92edb1" @@ -9656,16 +9692,36 @@ micromark-util-subtokenize@^1.0.0: micromark-util-types "^1.0.0" uvu "^0.5.0" -micromark-util-symbol@^1.0.0: +micromark-util-subtokenize@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.0.tgz#9f412442d77e0c5789ffdf42377fa8a2bcbdf581" + integrity sha512-vc93L1t+gpR3p8jxeVdaYlbV2jTYteDje19rNSS/H5dlhxUYll5Fy6vJ2cDwP8RnsXi818yGty1ayP55y3W6fg== + dependencies: + devlop "^1.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + +micromark-util-symbol@^1.0.0, micromark-util-symbol@^1.0.1: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz#813cd17837bdb912d069a12ebe3a44b6f7063142" integrity sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag== +micromark-util-symbol@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz#12225c8f95edf8b17254e47080ce0862d5db8044" + integrity sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw== + micromark-util-types@^1.0.0, micromark-util-types@^1.0.1: version "1.1.0" resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.1.0.tgz#e6676a8cae0bb86a2171c498167971886cb7e283" integrity sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg== +micromark-util-types@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-2.0.0.tgz#63b4b7ffeb35d3ecf50d1ca20e68fc7caa36d95e" + integrity sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w== + micromark@^3.0.0: version "3.2.0" resolved "https://registry.yarnpkg.com/micromark/-/micromark-3.2.0.tgz#1af9fef3f995ea1ea4ac9c7e2f19c48fd5c006e9" @@ -9689,6 +9745,29 @@ micromark@^3.0.0: micromark-util-types "^1.0.1" uvu "^0.5.0" +micromark@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/micromark/-/micromark-4.0.0.tgz#84746a249ebd904d9658cfabc1e8e5f32cbc6249" + integrity sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ== + dependencies: + "@types/debug" "^4.0.0" + debug "^4.0.0" + decode-named-character-reference "^1.0.0" + devlop "^1.0.0" + micromark-core-commonmark "^2.0.0" + micromark-factory-space "^2.0.0" + micromark-util-character "^2.0.0" + micromark-util-chunked "^2.0.0" + micromark-util-combine-extensions "^2.0.0" + micromark-util-decode-numeric-character-reference "^2.0.0" + micromark-util-encode "^2.0.0" + micromark-util-normalize-identifier "^2.0.0" + micromark-util-resolve-all "^2.0.0" + micromark-util-sanitize-uri "^2.0.0" + micromark-util-subtokenize "^2.0.0" + micromark-util-symbol "^2.0.0" + micromark-util-types "^2.0.0" + micromark@~2.11.0: version "2.11.4" resolved "https://registry.yarnpkg.com/micromark/-/micromark-2.11.4.tgz#d13436138eea826383e822449c9a5c50ee44665a" @@ -9771,17 +9850,22 @@ mimic-fn@^4.0.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== -mimic-response@^1.0.0, mimic-response@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" - integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== +mimic-response@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" + integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== + +mimic-response@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-4.0.0.tgz#35468b19e7c75d10f5165ea25e75a5ceea7cf70f" + integrity sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg== min-indent@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== -mini-css-extract-plugin@^2.6.1: +mini-css-extract-plugin@^2.7.6: version "2.7.6" resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz#282a3d38863fddcd2e0c220aaed5b90bc156564d" integrity sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw== @@ -9826,7 +9910,7 @@ minimist@1.2.7: resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== -minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: +minimist@^1.2.0, minimist@^1.2.6: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== @@ -9883,10 +9967,10 @@ mz@^2.7.0: object-assign "^4.0.1" thenify-all "^1.0.0" -nanoid@^3.3.6: - version "3.3.6" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== +nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== natural-compare@^1.4.0: version "1.4.0" @@ -9916,12 +10000,15 @@ no-case@^3.0.4: lower-case "^2.0.2" tslib "^2.0.3" -node-emoji@^1.10.0: - version "1.11.0" - resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.11.0.tgz#69a0150e6946e2f115e9d7ea4df7971e2628301c" - integrity sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A== +node-emoji@^2.1.0: + version "2.1.3" + resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-2.1.3.tgz#93cfabb5cc7c3653aa52f29d6ffb7927d8047c06" + integrity sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA== dependencies: - lodash "^4.17.21" + "@sindresorhus/is" "^4.6.0" + char-regex "^1.0.2" + emojilib "^2.4.0" + skin-tone "^2.0.0" node-fetch-h2@^2.3.0: version "2.3.0" @@ -9930,7 +10017,7 @@ node-fetch-h2@^2.3.0: dependencies: http2-client "^1.2.5" -node-fetch@^2.6.1, node-fetch@^2.6.12, node-fetch@^2.6.7: +node-fetch@^2.6.1: version "2.7.0" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== @@ -9980,10 +10067,10 @@ node-readfiles@^0.2.0: dependencies: es6-promise "^3.2.1" -node-releases@^2.0.13: - version "2.0.13" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" - integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== +node-releases@^2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" + integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== non-layered-tidy-tree-layout@^2.0.2: version "2.0.2" @@ -10020,16 +10107,16 @@ normalize-range@^0.1.2: resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== -normalize-url@^4.1.0: - version "4.5.1" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" - integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== - normalize-url@^6.0.1: version "6.1.0" resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== +normalize-url@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-8.0.0.tgz#593dbd284f743e8dcf6a5ddf8fadff149c82701a" + integrity sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw== + npm-run-path@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" @@ -10114,15 +10201,15 @@ oas-validator@^5.0.8: should "^13.2.1" yaml "^1.10.0" -object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: +object-assign@^4.0.1, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== -object-inspect@^1.12.3, object-inspect@^1.9.0: - version "1.12.3" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" - integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== +object-inspect@^1.13.1, object-inspect@^1.9.0: + version "1.13.1" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" + integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== object-is@^1.1.5: version "1.1.5" @@ -10138,16 +10225,16 @@ object-keys@^1.1.1: integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== object.assign@^4.1.0, object.assign@^4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" - integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + version "4.1.5" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" + integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" + call-bind "^1.0.5" + define-properties "^1.2.1" has-symbols "^1.0.3" object-keys "^1.1.1" -object.entries@^1.1.6: +object.entries@^1.1.6, object.entries@^1.1.7: version "1.1.7" resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.7.tgz#2b47760e2a2e3a752f39dd874655c61a7f03c131" integrity sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA== @@ -10156,7 +10243,7 @@ object.entries@^1.1.6: define-properties "^1.2.0" es-abstract "^1.22.1" -object.fromentries@^2.0.6: +object.fromentries@^2.0.6, object.fromentries@^2.0.7: version "2.0.7" resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.7.tgz#71e95f441e9a0ea6baf682ecaaf37fa2a8d7e616" integrity sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA== @@ -10199,7 +10286,7 @@ on-headers@~1.0.2: resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== -once@^1.3.0, once@^1.3.1, once@^1.4.0: +once@^1.3.0, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== @@ -10281,10 +10368,10 @@ os-tmpdir@~1.0.2: resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== -p-cancelable@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" - integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== +p-cancelable@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-3.0.0.tgz#63826694b54d61ca1c20ebcb6d3ecf5e14cd8050" + integrity sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw== p-limit@^2.0.0, p-limit@^2.2.0: version "2.3.0" @@ -10300,6 +10387,13 @@ p-limit@^3.0.2: dependencies: yocto-queue "^0.1.0" +p-limit@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" + integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== + dependencies: + yocto-queue "^1.0.0" + p-locate@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" @@ -10321,6 +10415,13 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" +p-locate@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f" + integrity sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== + dependencies: + p-limit "^4.0.0" + p-map@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" @@ -10341,15 +10442,15 @@ p-try@^2.0.0: resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== -package-json@^6.3.0: - version "6.5.0" - resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0" - integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== +package-json@^8.1.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-8.1.1.tgz#3e9948e43df40d1e8e78a85485f1070bf8f03dc8" + integrity sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA== dependencies: - got "^9.6.0" - registry-auth-token "^4.0.0" - registry-url "^5.0.0" - semver "^6.2.0" + got "^12.1.0" + registry-auth-token "^5.0.1" + registry-url "^6.0.0" + semver "^7.3.7" pako@~1.0.5: version "1.0.11" @@ -10371,7 +10472,7 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" -parse-asn1@^5.0.0, parse-asn1@^5.1.5: +parse-asn1@^5.0.0, parse-asn1@^5.1.6: version "5.1.6" resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== @@ -10394,6 +10495,20 @@ parse-entities@^2.0.0: is-decimal "^1.0.0" is-hexadecimal "^1.0.0" +parse-entities@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-4.0.1.tgz#4e2a01111fb1c986549b944af39eeda258fc9e4e" + integrity sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w== + dependencies: + "@types/unist" "^2.0.0" + character-entities "^2.0.0" + character-entities-legacy "^3.0.0" + character-reference-invalid "^2.0.0" + decode-named-character-reference "^1.0.0" + is-alphanumerical "^2.0.0" + is-decimal "^2.0.0" + is-hexadecimal "^2.0.0" + parse-json@^5.0.0, parse-json@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" @@ -10462,6 +10577,11 @@ path-exists@^4.0.0: resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== +path-exists@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7" + integrity sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== + path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" @@ -10528,6 +10648,15 @@ pbkdf2@^3.0.3: safe-buffer "^5.0.1" sha.js "^2.4.8" +periscopic@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/periscopic/-/periscopic-3.1.0.tgz#7e9037bf51c5855bd33b48928828db4afa79d97a" + integrity sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw== + dependencies: + "@types/estree" "^1.0.0" + estree-walker "^3.0.0" + is-reference "^3.0.0" + picocolors@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" @@ -10548,12 +10677,12 @@ pirates@^4.0.1: resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== -pkg-dir@^4.1.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== +pkg-dir@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-7.0.0.tgz#8f0c08d6df4476756c5ff29b3282d0bab7517d11" + integrity sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA== dependencies: - find-up "^4.0.0" + find-up "^6.3.0" pkg-up@^3.1.0: version "3.1.0" @@ -10625,7 +10754,7 @@ postcss-less@^6.0.0: resolved "https://registry.yarnpkg.com/postcss-less/-/postcss-less-6.0.0.tgz#463b34c60f53b648c237f569aeb2e09149d85af4" integrity sha512-FPX16mQLyEjLzEuuJtxA8X3ejDLNGGEG503d2YGZR5Ask1SpDN8KmZUMpzCvyalWRywAn1n1VOA5dcqfCLo5rg== -postcss-loader@^7.0.0: +postcss-loader@^7.3.3: version "7.3.3" resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-7.3.3.tgz#6da03e71a918ef49df1bb4be4c80401df8e249dd" integrity sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA== @@ -10826,7 +10955,7 @@ postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector cssesc "^3.0.0" util-deprecate "^1.0.2" -postcss-sort-media-queries@^4.2.1: +postcss-sort-media-queries@^4.4.1: version "4.4.1" resolved "https://registry.yarnpkg.com/postcss-sort-media-queries/-/postcss-sort-media-queries-4.4.1.tgz#04a5a78db3921eb78f28a1a781a2e68e65258128" integrity sha512-QDESFzDDGKgpiIh4GYXsSy6sek2yAwQx1JASl5AxBtU1Lq2JfKBljIPNdil989NcSKRQX1ToiaKphImtBuhXWw== @@ -10858,12 +10987,12 @@ postcss-zindex@^5.1.0: resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-5.1.0.tgz#4a5c7e5ff1050bd4c01d95b1847dfdcc58a496ff" integrity sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A== -postcss@8.4.31, postcss@^8.3.11, postcss@^8.4.14, postcss@^8.4.17, postcss@^8.4.21: - version "8.4.31" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d" - integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== +postcss@8.4.32, postcss@^8.4.17, postcss@^8.4.21, postcss@^8.4.26: + version "8.4.32" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.32.tgz#1dac6ac51ab19adb21b8b34fd2d93a86440ef6c9" + integrity sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw== dependencies: - nanoid "^3.3.6" + nanoid "^3.3.7" picocolors "^1.0.0" source-map-js "^1.0.2" @@ -10879,11 +11008,6 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== -prepend-http@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" - integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA== - prettier-linter-helpers@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" @@ -10900,10 +11024,10 @@ prettier-plugin-css-order@2.0.1: postcss-less "^6.0.0" postcss-scss "^4.0.3" -prettier@3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.0.3.tgz#432a51f7ba422d1469096c0fdc28e235db8f9643" - integrity sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg== +prettier@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.1.0.tgz#c6d16474a5f764ea1a4a373c593b779697744d5e" + integrity sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw== pretty-bytes@^5.3.0: version "5.6.0" @@ -10923,20 +11047,15 @@ pretty-time@^1.1.0: resolved "https://registry.yarnpkg.com/pretty-time/-/pretty-time-1.1.0.tgz#ffb7429afabb8535c346a34e41873adf3d74dd0e" integrity sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA== -prism-react-renderer@2.1.0, prism-react-renderer@^2.0.6: - version "2.1.0" - resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-2.1.0.tgz#a2f418451647412ea73d18cfe363fea20e419f9d" - integrity sha512-I5cvXHjA1PVGbGm1MsWCpvBCRrYyxEri0MC7/JbfIfYfcXAxHyO5PaUjs3A8H5GW6kJcLhTHxxMaOZZpRZD2iQ== +prism-react-renderer@2.3.0, prism-react-renderer@^2.0.6, prism-react-renderer@^2.1.0, prism-react-renderer@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-2.3.0.tgz#5f8f615af6af8201a0b734bd8c946df3d818ea54" + integrity sha512-UYRg2TkVIaI6tRVHC5OJ4/BxqPUxJkJvq/odLT/ykpt1zGYXooNperUxQcCvi87LyRnR4nCh81ceOA+e7nrydg== dependencies: "@types/prismjs" "^1.26.0" - clsx "^1.2.1" - -prism-react-renderer@^1.3.5: - version "1.3.5" - resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-1.3.5.tgz#786bb69aa6f73c32ba1ee813fbe17a0115435085" - integrity sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg== + clsx "^2.0.0" -prismjs@^1.28.0: +prismjs@^1.29.0: version "1.29.0" resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.29.0.tgz#f113555a8fa9b57c35e637bba27509dcf802dd12" integrity sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q== @@ -10951,13 +11070,6 @@ process@^0.11.1, process@^0.11.10: resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== -promise@^7.1.1: - version "7.3.1" - resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" - integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== - dependencies: - asap "~2.0.3" - prompts@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" @@ -10976,21 +11088,19 @@ prop-types@^15.0.0, prop-types@^15.5.0, prop-types@^15.6.2, prop-types@^15.7.2, react-is "^16.13.1" property-expr@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/property-expr/-/property-expr-2.0.5.tgz#278bdb15308ae16af3e3b9640024524f4dc02cb4" - integrity sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA== - -property-information@^5.0.0, property-information@^5.3.0: - version "5.6.0" - resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.6.0.tgz#61675545fb23002f245c6540ec46077d4da3ed69" - integrity sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA== - dependencies: - xtend "^4.0.0" + version "2.0.6" + resolved "https://registry.yarnpkg.com/property-expr/-/property-expr-2.0.6.tgz#f77bc00d5928a6c748414ad12882e83f24aec1e8" + integrity sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA== property-information@^6.0.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.3.0.tgz#ba4a06ec6b4e1e90577df9931286953cdf4282c3" - integrity sha512-gVNZ74nqhRMiIUYWGQdosYetaKc83x8oT41a0LlV3AAFCAZwCpg4vmGkq8t34+cUhp3cnM4XDiU/7xlgK7HGrg== + version "6.4.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.4.0.tgz#6bc4c618b0c2d68b3bb8b552cbb97f8e300a0f82" + integrity sha512-9t5qARVofg2xQqKtytzt+lZ4d1Qvj8t5B8fEwXK6qOfgRLgH/b13QlgEyDh033NOS31nXeFbYv7CLUDG1CeifQ== + +proto-list@~1.2.1: + version "1.2.4" + resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" + integrity sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== proxy-addr@~2.0.7: version "2.0.7" @@ -11012,35 +11122,22 @@ public-encrypt@^4.0.0: randombytes "^2.0.1" safe-buffer "^5.1.2" -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - punycode@^1.3.2, punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== punycode@^2.1.0, punycode@^2.1.1: - version "2.3.0" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" - integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== -pupa@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.1.1.tgz#f5e8fd4afc2c5d97828faa523549ed8744a20d62" - integrity sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A== +pupa@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/pupa/-/pupa-3.1.0.tgz#f15610274376bbcc70c9a3aa8b505ea23f41c579" + integrity sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug== dependencies: - escape-goat "^2.0.0" - -pure-color@^1.2.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/pure-color/-/pure-color-1.3.0.tgz#1fe064fb0ac851f0de61320a8bf796836422f33e" - integrity sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA== + escape-goat "^4.0.0" qs@6.11.0: version "6.11.0" @@ -11078,6 +11175,11 @@ quick-lru@^4.0.1: resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== +quick-lru@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" + integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== + randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" @@ -11113,7 +11215,7 @@ raw-body@2.5.1: iconv-lite "0.4.24" unpipe "1.0.0" -rc@1.2.8, rc@^1.2.8: +rc@1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== @@ -11131,16 +11233,6 @@ react-async-script@^1.1.1: hoist-non-react-statics "^3.3.0" prop-types "^15.5.0" -react-base16-styling@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/react-base16-styling/-/react-base16-styling-0.6.0.tgz#ef2156d66cf4139695c8a167886cb69ea660792c" - integrity sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ== - dependencies: - base16 "^1.0.0" - lodash.curry "^4.0.1" - lodash.flow "^3.3.0" - pure-color "^1.2.0" - react-dev-utils@^12.0.1: version "12.0.1" resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-12.0.1.tgz#ba92edb4a1f379bd46ccd6bcd4e7bc398df33e73" @@ -11189,7 +11281,7 @@ react-fast-compare@^2.0.1: resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-2.0.4.tgz#e84b4d455b0fec113e0402c329352715196f81f9" integrity sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw== -react-fast-compare@^3.2.0: +react-fast-compare@^3.2.0, react-fast-compare@^3.2.2: version "3.2.2" resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.2.tgz#929a97a532304ce9fee4bcae44234f1ce2c21d49" integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== @@ -11202,7 +11294,16 @@ react-google-recaptcha@^2.1.0: prop-types "^15.5.0" react-async-script "^1.1.1" -react-helmet-async@*, react-helmet-async@^1.3.0: +react-helmet-async@*: + version "2.0.3" + resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-2.0.3.tgz#904f79d906f91da6728dab6a062c3b8354930881" + integrity sha512-7/X3ehSCbjCaIljWa39Bb7F1Y2JWM23FN80kLozx2TdgzUmxKDSLN6qu06NG0Srzm8ljGOjgk7r7CXeEOx4MPw== + dependencies: + invariant "^2.2.4" + react-fast-compare "^3.2.2" + shallowequal "^1.1.0" + +react-helmet-async@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.3.0.tgz#7bd5bf8c5c69ea9f02f6083f14ce33ef545c222e" integrity sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg== @@ -11214,9 +11315,9 @@ react-helmet-async@*, react-helmet-async@^1.3.0: shallowequal "^1.1.0" react-hook-form@^7.43.8: - version "7.47.0" - resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.47.0.tgz#a42f07266bd297ddf1f914f08f4b5f9783262f31" - integrity sha512-F/TroLjTICipmHeFlMrLtNLceO2xr1jU3CyiNla5zdwsGUGu2UOxxR4UyJgLlhMwLW/Wzp4cpJ7CPfgJIeKdSg== + version "7.48.2" + resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.48.2.tgz#01150354d2be61412ff56a030b62a119283b9935" + integrity sha512-H0T2InFQb1hX7qKtDIZmvpU1Xfn/bdahWBN1fH19gSe4bBEqTfmlr7H3XWTaVtiK4/tpPaI1F3355GPMZYge+A== react-is@^16.13.1, react-is@^16.6.0, react-is@^16.7.0: version "16.13.1" @@ -11233,25 +11334,20 @@ react-is@^18.0.0: resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== -react-json-view@^1.21.3: - version "1.21.3" - resolved "https://registry.yarnpkg.com/react-json-view/-/react-json-view-1.21.3.tgz#f184209ee8f1bf374fb0c41b0813cff54549c475" - integrity sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw== - dependencies: - flux "^4.0.1" - react-base16-styling "^0.6.0" - react-lifecycles-compat "^3.0.4" - react-textarea-autosize "^8.3.2" +react-json-view-lite@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/react-json-view-lite/-/react-json-view-lite-1.2.1.tgz#c59a0bea4ede394db331d482ee02e293d38f8218" + integrity sha512-Itc0g86fytOmKZoIoJyGgvNqohWSbh3NXIKNgH6W6FT9PC1ck4xas1tT3Rr/b3UlFXyA9Jjaw9QSXdZy2JwGMQ== -react-lifecycles-compat@^3.0.0, react-lifecycles-compat@^3.0.4: +react-lifecycles-compat@^3.0.0: version "3.0.4" resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== -react-lite-youtube-embed@^2.3.52: - version "2.3.52" - resolved "https://registry.yarnpkg.com/react-lite-youtube-embed/-/react-lite-youtube-embed-2.3.52.tgz#7f8125a03e7a940745b63d11abd6821ffe1babe5" - integrity sha512-G010PvCavA4EqL8mZ/Sv9XXiHnjMfONW+lmNeCRnSEPluPdptv2lZ0cNlngrj7K9j7luc8pbpyrmNpKbD9VMmw== +react-lite-youtube-embed@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/react-lite-youtube-embed/-/react-lite-youtube-embed-2.4.0.tgz#1f56a12be1061d50431444d52d836bd09a1283a2" + integrity sha512-Xo6cM1zPlROvvM97JkqQIoXstlQDaC4+DawmM7BB7Hh1cXrkBHEGq1iJlQxBTUWAUklmpcC7ph7qg7CztXtABQ== react-live@^4.0.0: version "4.1.5" @@ -11331,7 +11427,7 @@ react-router-config@^5.1.1: dependencies: "@babel/runtime" "^7.1.2" -react-router-dom@^5.3.3: +react-router-dom@^5.3.4: version "5.3.4" resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.3.4.tgz#2ed62ffd88cae6db134445f4a0c0ae8b91d2e5e6" integrity sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ== @@ -11344,7 +11440,7 @@ react-router-dom@^5.3.3: tiny-invariant "^1.0.2" tiny-warning "^1.0.0" -react-router@5.3.4, react-router@^5.3.3: +react-router@5.3.4, react-router@^5.3.4: version "5.3.4" resolved "https://registry.yarnpkg.com/react-router/-/react-router-5.3.4.tgz#8ca252d70fcc37841e31473c7a151cf777887bb5" integrity sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA== @@ -11367,34 +11463,15 @@ react-tabs@6.0.2: clsx "^2.0.0" prop-types "^15.5.0" -react-textarea-autosize@^8.3.2: - version "8.5.3" - resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz#d1e9fe760178413891484847d3378706052dd409" - integrity sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ== - dependencies: - "@babel/runtime" "^7.20.13" - use-composed-ref "^1.3.0" - use-latest "^1.2.1" - -react-transition-group@^4.4.2: - version "4.4.5" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1" - integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== - dependencies: - "@babel/runtime" "^7.5.5" - dom-helpers "^5.0.1" - loose-envify "^1.4.0" - prop-types "^15.6.2" - react-wrap-balancer@1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/react-wrap-balancer/-/react-wrap-balancer-1.1.0.tgz#3d246573413b936b799f29a1549cd217b948234c" integrity sha512-EhF3jOZm5Fjx+Cx41e423qOv2c2aOvXAtym2OHqrGeMUnwERIyNsRBgnfT3plB170JmuYvts8K2KSPEIerKr5A== -react-zoom-pan-pinch@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/react-zoom-pan-pinch/-/react-zoom-pan-pinch-3.1.0.tgz#d87a66fd22a97f5dd56b54076411a9dce1f448cd" - integrity sha512-a3LlP8QPgTikvteCNkZ3X6wIWC0lrg1geP5WkUJyx2MXXAhHQek3r17N1nT/esOiWGuPIECnsd9AGoK8jOeGcg== +react-zoom-pan-pinch@3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/react-zoom-pan-pinch/-/react-zoom-pan-pinch-3.3.0.tgz#873648438c5244d89fcc2127614046928429cbe0" + integrity sha512-vy1h8aenDzXye+HRqANZaSA8IPHoqOiuDPFBkswoyPUH8uMfsmbeH6gFI4r4BhEJa0xIlcA+FbvhidRWKGUrOg== react@18.2.0: version "18.2.0" @@ -11422,7 +11499,7 @@ read-pkg@^5.2.0: parse-json "^5.0.0" type-fest "^0.6.0" -readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.6, readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0: +readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.6, readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0, readable-stream@^3.6.2: version "3.6.2" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== @@ -11501,12 +11578,12 @@ redux@^4.0.0, redux@^4.2.1: dependencies: "@babel/runtime" "^7.9.2" -refa@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/refa/-/refa-0.11.0.tgz#07d57a9f5f3ee2dd58e0d145a6a489fda2591ed0" - integrity sha512-486O8/pQXwj9jV0mVvUnTsxq0uknpBnNJ0eCUhkZqJRQ8KutrT1PhzmumdCeM1hSBF2eMlFPmwECRER4IbKXlQ== +refa@^0.12.0, refa@^0.12.1: + version "0.12.1" + resolved "https://registry.yarnpkg.com/refa/-/refa-0.12.1.tgz#dac13c4782dc22b6bae6cce81a2b863888ea39c6" + integrity sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g== dependencies: - "@eslint-community/regexpp" "^4.5.0" + "@eslint-community/regexpp" "^4.8.0" reflect.getprototypeof@^1.0.4: version "1.0.4" @@ -11537,11 +11614,6 @@ regenerate@^1.4.2: resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== -regenerator-runtime@^0.13.4: - version "0.13.11" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" - integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== - regenerator-runtime@^0.14.0: version "0.14.0" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45" @@ -11554,13 +11626,13 @@ regenerator-transform@^0.15.2: dependencies: "@babel/runtime" "^7.8.4" -regexp-ast-analysis@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/regexp-ast-analysis/-/regexp-ast-analysis-0.6.0.tgz#c0b648728c85d266a409ce00a6440c01c9834c61" - integrity sha512-OLxjyjPkVH+rQlBLb1I/P/VTmamSjGkvN5PTV5BXP432k3uVz727J7H29GA5IFiY0m7e1xBN7049Wn59FY3DEQ== +regexp-ast-analysis@^0.7.0, regexp-ast-analysis@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/regexp-ast-analysis/-/regexp-ast-analysis-0.7.1.tgz#c0e24cb2a90f6eadd4cbaaba129317e29d29c482" + integrity sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A== dependencies: - "@eslint-community/regexpp" "^4.5.0" - refa "^0.11.0" + "@eslint-community/regexpp" "^4.8.0" + refa "^0.12.1" regexp.prototype.flags@^1.5.0, regexp.prototype.flags@^1.5.1: version "1.5.1" @@ -11583,19 +11655,19 @@ regexpu-core@^5.3.1: unicode-match-property-ecmascript "^2.0.0" unicode-match-property-value-ecmascript "^2.1.0" -registry-auth-token@^4.0.0: - version "4.2.2" - resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.2.tgz#f02d49c3668884612ca031419491a13539e21fac" - integrity sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg== +registry-auth-token@^5.0.1: + version "5.0.2" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-5.0.2.tgz#8b026cc507c8552ebbe06724136267e63302f756" + integrity sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ== dependencies: - rc "1.2.8" + "@pnpm/npm-conf" "^2.1.0" -registry-url@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009" - integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== +registry-url@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-6.0.1.tgz#056d9343680f2f64400032b1e199faa692286c58" + integrity sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q== dependencies: - rc "^1.2.8" + rc "1.2.8" regjsparser@^0.9.1: version "0.9.1" @@ -11604,25 +11676,18 @@ regjsparser@^0.9.1: dependencies: jsesc "~0.5.0" -rehype-katex@5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/rehype-katex/-/rehype-katex-5.0.0.tgz#b556f24fde918f28ba1cb642ea71c7e82f3373d7" - integrity sha512-ksSuEKCql/IiIadOHiKRMjypva9BLhuwQNascMqaoGLDVd0k2NlE2wMvgZ3rpItzRKCd6vs8s7MFbb8pcR0AEg== - dependencies: - "@types/katex" "^0.11.0" - hast-util-to-text "^2.0.0" - katex "^0.13.0" - rehype-parse "^7.0.0" - unified "^9.0.0" - unist-util-visit "^2.0.0" - -rehype-parse@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/rehype-parse/-/rehype-parse-7.0.1.tgz#58900f6702b56767814afc2a9efa2d42b1c90c57" - integrity sha512-fOiR9a9xH+Le19i4fGzIEowAbwG7idy2Jzs4mOrFWBSJ0sNUgy0ev871dwWnbOo371SjgjG4pwzrbgSVrKxecw== +rehype-katex@7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/rehype-katex/-/rehype-katex-7.0.0.tgz#f5e9e2825981175a7b0a4d58ed9816c33576dfed" + integrity sha512-h8FPkGE00r2XKU+/acgqwWUlyzve1IiOKwsEkg4pDL3k48PiE0Pt+/uLtVHDVkN1yA4iurZN6UES8ivHVEQV6Q== dependencies: - hast-util-from-parse5 "^6.0.0" - parse5 "^6.0.0" + "@types/hast" "^3.0.0" + "@types/katex" "^0.16.0" + hast-util-from-html-isomorphic "^2.0.0" + hast-util-to-text "^4.0.0" + katex "^0.16.0" + unist-util-visit-parents "^6.0.0" + vfile "^6.0.0" rehype-raw@^6.1.1: version "6.1.1" @@ -11633,24 +11698,62 @@ rehype-raw@^6.1.1: hast-util-raw "^7.2.0" unified "^10.0.0" +rehype-raw@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/rehype-raw/-/rehype-raw-7.0.0.tgz#59d7348fd5dbef3807bbaa1d443efd2dd85ecee4" + integrity sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww== + dependencies: + "@types/hast" "^3.0.0" + hast-util-raw "^9.0.0" + vfile "^6.0.0" + relateurl@^0.2.7: version "0.2.7" resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== -remark-emoji@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/remark-emoji/-/remark-emoji-2.2.0.tgz#1c702090a1525da5b80e15a8f963ef2c8236cac7" - integrity sha512-P3cj9s5ggsUvWw5fS2uzCHJMGuXYRb0NnZqYlNecewXt8QBU9n5vW3DUUKOhepS8F9CwdMx9B8a3i7pqFWAI5w== +remark-directive@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/remark-directive/-/remark-directive-3.0.0.tgz#34452d951b37e6207d2e2a4f830dc33442923268" + integrity sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA== dependencies: - emoticon "^3.2.0" - node-emoji "^1.10.0" - unist-util-visit "^2.0.3" + "@types/mdast" "^4.0.0" + mdast-util-directive "^3.0.0" + micromark-extension-directive "^3.0.0" + unified "^11.0.0" -remark-footnotes@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/remark-footnotes/-/remark-footnotes-2.0.0.tgz#9001c4c2ffebba55695d2dd80ffb8b82f7e6303f" - integrity sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ== +remark-emoji@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/remark-emoji/-/remark-emoji-4.0.1.tgz#671bfda668047689e26b2078c7356540da299f04" + integrity sha512-fHdvsTR1dHkWKev9eNyhTo4EFwbUvJ8ka9SgeWkMPYFX4WoI7ViVBms3PjlQYgw5TLvNQso3GUB/b/8t3yo+dg== + dependencies: + "@types/mdast" "^4.0.2" + emoticon "^4.0.1" + mdast-util-find-and-replace "^3.0.1" + node-emoji "^2.1.0" + unified "^11.0.4" + +remark-frontmatter@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/remark-frontmatter/-/remark-frontmatter-5.0.0.tgz#b68d61552a421ec412c76f4f66c344627dc187a2" + integrity sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-frontmatter "^2.0.0" + micromark-extension-frontmatter "^2.0.0" + unified "^11.0.0" + +remark-gfm@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/remark-gfm/-/remark-gfm-4.0.0.tgz#aea777f0744701aa288b67d28c43565c7e8c35de" + integrity sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-gfm "^3.0.0" + micromark-extension-gfm "^3.0.0" + remark-parse "^11.0.0" + remark-stringify "^11.0.0" + unified "^11.0.0" remark-kroki-plugin@0.1.1: version "0.1.1" @@ -11661,46 +11764,23 @@ remark-kroki-plugin@0.1.1: ts-md5 "1.2.7" unist-util-visit "2.0.3" -remark-math@3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/remark-math/-/remark-math-3.0.1.tgz#85a02a15b15cad34b89a27244d4887b3a95185bb" - integrity sha512-epT77R/HK0x7NqrWHdSV75uNLwn8g9qTyMqCRCDujL0vj/6T6+yhdrR7mjELWtkse+Fw02kijAaBuVcHBor1+Q== - -remark-mdx@1.6.22: - version "1.6.22" - resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-1.6.22.tgz#06a8dab07dcfdd57f3373af7f86bd0e992108bbd" - integrity sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ== - dependencies: - "@babel/core" "7.12.9" - "@babel/helper-plugin-utils" "7.10.4" - "@babel/plugin-proposal-object-rest-spread" "7.12.1" - "@babel/plugin-syntax-jsx" "7.12.1" - "@mdx-js/util" "1.6.22" - is-alphabetical "1.0.4" - remark-parse "8.0.3" - unified "9.2.0" - -remark-parse@8.0.3: - version "8.0.3" - resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-8.0.3.tgz#9c62aa3b35b79a486454c690472906075f40c7e1" - integrity sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q== +remark-math@6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/remark-math/-/remark-math-6.0.0.tgz#0acdf74675f1c195fea6efffa78582f7ed7fc0d7" + integrity sha512-MMqgnP74Igy+S3WwnhQ7kqGlEerTETXMvJhrUzDikVZ2/uogJCb+WHUg97hK9/jcfc0dkD73s3LN8zU49cTEtA== dependencies: - ccount "^1.0.0" - collapse-white-space "^1.0.2" - is-alphabetical "^1.0.0" - is-decimal "^1.0.0" - is-whitespace-character "^1.0.0" - is-word-character "^1.0.0" - markdown-escapes "^1.0.0" - parse-entities "^2.0.0" - repeat-string "^1.5.4" - state-toggle "^1.0.0" - trim "0.0.1" - trim-trailing-lines "^1.0.0" - unherit "^1.0.4" - unist-util-remove-position "^2.0.0" - vfile-location "^3.0.0" - xtend "^4.0.1" + "@types/mdast" "^4.0.0" + mdast-util-math "^3.0.0" + micromark-extension-math "^3.0.0" + unified "^11.0.0" + +remark-mdx@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-3.0.0.tgz#146905a3925b078970e05fc89b0e16b9cc3bfddd" + integrity sha512-O7yfjuC6ra3NHPbRVxfflafAj3LTwx3b73aBvkEFU5z4PsD6FD4vrqJAkE5iNGLz71GdjXfgRqm3SQ0h0VuE7g== + dependencies: + mdast-util-mdx "^3.0.0" + micromark-extension-mdxjs "^3.0.0" remark-parse@^10.0.0: version "10.0.2" @@ -11711,6 +11791,16 @@ remark-parse@^10.0.0: mdast-util-from-markdown "^1.0.0" unified "^10.0.0" +remark-parse@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-11.0.0.tgz#aa60743fcb37ebf6b069204eb4da304e40db45a1" + integrity sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-from-markdown "^2.0.0" + micromark-util-types "^2.0.0" + unified "^11.0.0" + remark-parse@^9.0.0: version "9.0.0" resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-9.0.0.tgz#4d20a299665880e4f4af5d90b7c7b8a935853640" @@ -11728,12 +11818,25 @@ remark-rehype@^10.0.0: mdast-util-to-hast "^12.1.0" unified "^10.0.0" -remark-squeeze-paragraphs@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz#76eb0e085295131c84748c8e43810159c5653ead" - integrity sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw== +remark-rehype@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-11.0.0.tgz#7f21c08738bde024be5f16e4a8b13e5d7a04cf6b" + integrity sha512-vx8x2MDMcxuE4lBmQ46zYUDfcFMmvg80WYX+UNLeG6ixjdCCLcw1lrgAukwBTuOFsS78eoAedHGn9sNM0w7TPw== dependencies: - mdast-squeeze-paragraphs "^4.0.0" + "@types/hast" "^3.0.0" + "@types/mdast" "^4.0.0" + mdast-util-to-hast "^13.0.0" + unified "^11.0.0" + vfile "^6.0.0" + +remark-stringify@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-11.0.0.tgz#4c5b01dd711c269df1aaae11743eb7e2e7636fd3" + integrity sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw== + dependencies: + "@types/mdast" "^4.0.0" + mdast-util-to-markdown "^2.0.0" + unified "^11.0.0" remark-stringify@^9.0.0: version "9.0.1" @@ -11762,7 +11865,7 @@ renderkid@^3.0.0: lodash "^4.17.21" strip-ansi "^6.0.1" -repeat-string@^1.0.0, repeat-string@^1.5.4: +repeat-string@^1.0.0: version "1.6.1" resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== @@ -11797,6 +11900,11 @@ reselect@^4.1.8: resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.1.8.tgz#3f5dc671ea168dccdeb3e141236f69f02eaec524" integrity sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ== +resolve-alpn@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" + integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== + resolve-dir@^1.0.0, resolve-dir@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" @@ -11827,30 +11935,30 @@ resolve-pathname@^3.0.0: resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd" integrity sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng== -resolve@^1.1.6, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.3.2: - version "1.22.6" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.6.tgz#dd209739eca3aef739c626fea1b4f3c506195362" - integrity sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw== +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.19.0: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== dependencies: is-core-module "^2.13.0" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" resolve@^2.0.0-next.4: - version "2.0.0-next.4" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" - integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== + version "2.0.0-next.5" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c" + integrity sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA== dependencies: - is-core-module "^2.9.0" + is-core-module "^2.13.0" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" -responselike@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" - integrity sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ== +responselike@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/responselike/-/responselike-3.0.0.tgz#20decb6c298aff0dbee1c355ca95461d42823626" + integrity sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg== dependencies: - lowercase-keys "^1.0.0" + lowercase-keys "^3.0.0" restore-cursor@^3.1.0: version "3.1.0" @@ -11921,18 +12029,18 @@ rollup@^2.43.1: fsevents "~2.3.2" rtl-detect@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/rtl-detect/-/rtl-detect-1.0.4.tgz#40ae0ea7302a150b96bc75af7d749607392ecac6" - integrity sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ== + version "1.1.2" + resolved "https://registry.yarnpkg.com/rtl-detect/-/rtl-detect-1.1.2.tgz#ca7f0330af5c6bb626c15675c642ba85ad6273c6" + integrity sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ== -rtlcss@^3.5.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/rtlcss/-/rtlcss-3.5.0.tgz#c9eb91269827a102bac7ae3115dd5d049de636c3" - integrity sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A== +rtlcss@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/rtlcss/-/rtlcss-4.1.1.tgz#f20409fcc197e47d1925996372be196fee900c0c" + integrity sha512-/oVHgBtnPNcggP2aVXQjSy6N1mMAfHg4GSag0QtZBlD5bdDgAHwr4pydqJGd+SUCu9260+Pjqbjwtvu7EMH1KQ== dependencies: - find-up "^5.0.0" + escalade "^3.1.1" picocolors "^1.0.0" - postcss "^8.3.11" + postcss "^8.4.21" strip-json-comments "^3.1.1" run-applescript@^5.0.0: @@ -11959,7 +12067,7 @@ rw@1: resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" integrity sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ== -rxjs@^7.5.4, rxjs@^7.5.5: +rxjs@^7.5.5: version "7.8.1" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== @@ -11988,7 +12096,7 @@ safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== -safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: +safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@^5.2.1, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== @@ -12008,9 +12116,9 @@ safe-regex-test@^1.0.0: integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== sass-loader@^10.1.1: - version "10.4.1" - resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.4.1.tgz#bea4e173ddf512c9d7f53e9ec686186146807cbf" - integrity sha512-aX/iJZTTpNUNx/OSYzo2KsjIUQHqvWsAhhUijFjAPdZTEhstjZI9zTNvkTTwsx+uNUJqUwOw5gacxQMx4hJxGQ== + version "10.5.0" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.5.0.tgz#011c92ea529029e296aea37508e034b94f7dd2dc" + integrity sha512-VsU71W7VR6SChMJZUqtrfLeMSA8ns7QTHbnA7cfevtjb3c392mX93lr0Dmr4uU1ch5uIbEmfmHjdrDYcXXkQ7w== dependencies: klona "^2.0.4" loader-utils "^2.0.0" @@ -12018,10 +12126,17 @@ sass-loader@^10.1.1: schema-utils "^3.0.0" semver "^7.3.2" +sass-loader@^13.3.2: + version "13.3.2" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-13.3.2.tgz#460022de27aec772480f03de17f5ba88fa7e18c6" + integrity sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg== + dependencies: + neo-async "^2.6.2" + sass@^1.58.1: - version "1.68.0" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.68.0.tgz#0034b0cc9a50248b7d1702ac166fd25990023669" - integrity sha512-Lmj9lM/fef0nQswm1J2HJcEsBUba4wgNx2fea6yJHODREoMFnwRpZydBnX/RjyXw2REIwdkbqE4hrTo4qfDBUA== + version "1.69.5" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.69.5.tgz#23e18d1c757a35f2e52cc81871060b9ad653dfde" + integrity sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ== dependencies: chokidar ">=3.0.0 <4.0.0" immutable "^4.0.0" @@ -12048,15 +12163,6 @@ schema-utils@2.7.0: ajv "^6.12.2" ajv-keywords "^3.4.1" -schema-utils@^2.6.5: - version "2.7.1" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" - integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== - dependencies: - "@types/json-schema" "^7.0.5" - ajv "^6.12.4" - ajv-keywords "^3.5.2" - schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.2.0: version "3.3.0" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" @@ -12076,14 +12182,14 @@ schema-utils@^4.0.0: ajv-formats "^2.1.1" ajv-keywords "^5.1.0" -scslre@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/scslre/-/scslre-0.2.0.tgz#b604eedbab76f87003738d00de44d7601a78609e" - integrity sha512-4hc49fUMmX3jM0XdFUAPBrs1xwEcdHa0KyjEsjFs+Zfc66mpFpq5YmRgDtl+Ffo6AtJIilfei+yKw8fUn3N88w== +scslre@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/scslre/-/scslre-0.3.0.tgz#c3211e9bfc5547fc86b1eabaa34ed1a657060155" + integrity sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ== dependencies: - "@eslint-community/regexpp" "^4.5.0" - refa "^0.11.0" - regexp-ast-analysis "^0.6.0" + "@eslint-community/regexpp" "^4.8.0" + refa "^0.12.0" + regexp-ast-analysis "^0.7.0" section-matter@^1.0.0: version "1.0.0" @@ -12099,20 +12205,21 @@ select-hose@^2.0.0: integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== selfsigned@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.1.1.tgz#18a7613d714c0cd3385c48af0075abf3f266af61" - integrity sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ== + version "2.4.1" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.4.1.tgz#560d90565442a3ed35b674034cec4e95dceb4ae0" + integrity sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q== dependencies: + "@types/node-forge" "^1.3.0" node-forge "^1" -semver-diff@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b" - integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== +semver-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-4.0.0.tgz#3afcf5ed6d62259f5c72d0d5d50dffbdc9680df5" + integrity sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA== dependencies: - semver "^6.3.0" + semver "^7.3.5" -"semver@2 || 3 || 4 || 5", semver@^5.4.1: +"semver@2 || 3 || 4 || 5": version "5.7.2" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== @@ -12124,14 +12231,14 @@ semver@7.3.5: dependencies: lru-cache "^6.0.0" -semver@7.5.4, semver@^7.3.2, semver@^7.3.4, semver@^7.3.7, semver@^7.3.8, semver@^7.5.4: +semver@7.5.4, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.4: version "7.5.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" -semver@^6.0.0, semver@^6.2.0, semver@^6.3.0, semver@^6.3.1: +semver@^6.3.1: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== @@ -12169,12 +12276,12 @@ serialize-javascript@^6.0.0, serialize-javascript@^6.0.1: dependencies: randombytes "^2.1.0" -seroval@^0.5.0: - version "0.5.1" - resolved "https://registry.yarnpkg.com/seroval/-/seroval-0.5.1.tgz#e6d17365cdaaae7e50815c7e0bcd7102facdadf3" - integrity sha512-ZfhQVB59hmIauJG5Ydynupy8KHyr5imGNtdDhbZG68Ufh1Ynkv9KOYOAABf71oVbQxJ8VkWnMHAjEHE7fWkH5g== +seroval@^0.15.1: + version "0.15.1" + resolved "https://registry.yarnpkg.com/seroval/-/seroval-0.15.1.tgz#598654725a3a680fd0d685e235ab7299a6096aff" + integrity sha512-OPVtf0qmeC7RW+ScVX+7aOS+xoIM7pWcZ0jOWg2aTZigCydgRB04adfteBRbecZnnrO1WuGQ+C3tLeBBzX2zSQ== -serve-handler@^6.1.3: +serve-handler@^6.1.5: version "6.1.5" resolved "https://registry.yarnpkg.com/serve-handler/-/serve-handler-6.1.5.tgz#a4a0964f5c55c7e37a02a633232b6f0d6f068375" integrity sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg== @@ -12216,6 +12323,16 @@ set-blocking@^2.0.0: resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== +set-function-length@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.1.1.tgz#4bc39fafb0307224a33e106a7d35ca1218d659ed" + integrity sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ== + dependencies: + define-data-property "^1.1.1" + get-intrinsic "^1.2.1" + gopd "^1.0.1" + has-property-descriptors "^1.0.0" + set-function-name@^2.0.0, set-function-name@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.1.tgz#12ce38b7954310b9f61faa12701620a0c882793a" @@ -12225,7 +12342,7 @@ set-function-name@^2.0.0, set-function-name@^2.0.1: functions-have-names "^1.2.3" has-property-descriptors "^1.0.0" -setimmediate@^1.0.4, setimmediate@^1.0.5: +setimmediate@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== @@ -12272,7 +12389,7 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -shell-quote@^1.7.3: +shell-quote@^1.7.3, shell-quote@^1.8.1: version "1.8.1" resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== @@ -12344,6 +12461,11 @@ signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== +signal-exit@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + sirv@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/sirv/-/sirv-2.0.3.tgz#ca5868b87205a74bef62a469ed0296abceccd446" @@ -12368,6 +12490,13 @@ sitemap@^7.1.1: arg "^5.0.0" sax "^1.2.4" +skin-tone@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/skin-tone/-/skin-tone-2.0.0.tgz#4e3933ab45c0d4f4f781745d64b9f4c208e41237" + integrity sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA== + dependencies: + unicode-emoji-modifier-base "^1.0.0" + slash@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" @@ -12386,6 +12515,14 @@ slice-ansi@^5.0.0: ansi-styles "^6.0.0" is-fullwidth-code-point "^4.0.0" +slice-ansi@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.0.tgz#cd6b4655e298a8d1bdeb04250a433094b347b9a9" + integrity sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg== + dependencies: + ansi-styles "^6.2.1" + is-fullwidth-code-point "^5.0.0" + slugify@^1.6.5: version "1.6.6" resolved "https://registry.yarnpkg.com/slugify/-/slugify-1.6.6.tgz#2d4ac0eacb47add6af9e04d3be79319cbcc7924b" @@ -12401,12 +12538,12 @@ sockjs@^0.3.24: websocket-driver "^0.7.4" solid-js@^1.3.0: - version "1.7.12" - resolved "https://registry.yarnpkg.com/solid-js/-/solid-js-1.7.12.tgz#e196aceb03790c15aedf109771c5bb9cc92516ea" - integrity sha512-QoyoOUKu14iLoGxjxWFIU8+/1kLT4edQ7mZESFPonsEXZ//VJtPKD8Ud1aTKzotj+MNWmSs9YzK6TdY+fO9Eww== + version "1.8.7" + resolved "https://registry.yarnpkg.com/solid-js/-/solid-js-1.8.7.tgz#e0600e4b0c03ed60dadce3ee7a538eb60ed9f760" + integrity sha512-9dzrSVieh2zj3SnJ02II6xZkonR6c+j/91b7XZUNcC6xSaldlqjjGh98F1fk5cRJ8ZTkzqF5fPIWDxEOs6QZXA== dependencies: csstype "^3.1.0" - seroval "^0.5.0" + seroval "^0.15.1" sort-css-media-queries@2.1.0: version "2.1.0" @@ -12426,16 +12563,16 @@ source-map-support@~0.5.20: buffer-from "^1.0.0" source-map "^0.6.0" -source-map@^0.5.0: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== - source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== +source-map@^0.7.0: + version "0.7.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== + source-map@^0.8.0-beta.0: version "0.8.0-beta.0" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.8.0-beta.0.tgz#d4c1bb42c3f7ee925f005927ba10709e0d1d1f11" @@ -12448,11 +12585,6 @@ sourcemap-codec@^1.4.8: resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== -space-separated-tokens@^1.0.0: - version "1.1.5" - resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899" - integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== - space-separated-tokens@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz#1ecd9d2350a3844572c3f4a312bceb018348859f" @@ -12480,9 +12612,9 @@ spdx-expression-parse@^3.0.0: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.15" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.15.tgz#142460aabaca062bc7cd4cc87b7d50725ed6a4ba" - integrity sha512-lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ== + version "3.0.16" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz#a14f64e0954f6e25cc6587bd4f392522db0d998f" + integrity sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw== spdy-transport@^3.0.0: version "3.0.0" @@ -12507,28 +12639,33 @@ spdy@^4.0.2: select-hose "^2.0.0" spdy-transport "^3.0.0" -split2@^3.0.0, split2@^3.2.2: +split2@^3.0.0: version "3.2.2" resolved "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== dependencies: readable-stream "^3.0.0" +split2@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/split2/-/split2-4.2.0.tgz#c9c5920904d148bab0b9f67145f245a86aadbfa4" + integrity sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg== + sprintf-js@~1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== +srcset@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/srcset/-/srcset-4.0.0.tgz#336816b665b14cd013ba545b6fe62357f86e65f4" + integrity sha512-wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw== + stable@^0.1.8: version "0.1.8" resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== -state-toggle@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe" - integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ== - statuses@2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" @@ -12540,9 +12677,9 @@ statuses@2.0.1: integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== std-env@^3.0.1: - version "3.4.3" - resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.4.3.tgz#326f11db518db751c83fd58574f449b7c3060910" - integrity sha512-f9aPhy8fYBuMN+sNfakZV18U39PbalgjXG3lLB9WkaYTxijru61wb57V9wxxNthXM5Sd88ETBWi29qLAsHO52Q== + version "3.6.0" + resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.6.0.tgz#94807562bddc68fa90f2e02c5fd5b6865bb4e98e" + integrity sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg== stream-browserify@^3.0.0: version "3.0.0" @@ -12567,7 +12704,7 @@ string-argv@0.3.2: resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz#2b6d0ef24b656274d957d54e0a4bbf6153dc02b6" integrity sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q== -string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2, string-width@^4.2.3: +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -12576,7 +12713,7 @@ string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2 is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" -string-width@^5.0.0, string-width@^5.0.1: +string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== @@ -12585,6 +12722,15 @@ string-width@^5.0.0, string-width@^5.0.1: emoji-regex "^9.2.2" strip-ansi "^7.0.1" +string-width@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-7.0.0.tgz#14aa1b7aaa126d5b64fa79d3c894da8a9650ba06" + integrity sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw== + dependencies: + emoji-regex "^10.3.0" + get-east-asian-width "^1.0.0" + strip-ansi "^7.1.0" + string.prototype.matchall@^4.0.6, string.prototype.matchall@^4.0.8: version "4.0.10" resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz#a1553eb532221d4180c51581d6072cd65d1ee100" @@ -12641,6 +12787,14 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" +stringify-entities@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.3.tgz#cfabd7039d22ad30f3cc435b0ca2c1574fc88ef8" + integrity sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g== + dependencies: + character-entities-html4 "^2.0.0" + character-entities-legacy "^3.0.0" + stringify-object@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" @@ -12657,7 +12811,7 @@ strip-ansi@^6.0.0, strip-ansi@^6.0.1: dependencies: ansi-regex "^5.0.1" -strip-ansi@^7.0.1: +strip-ansi@^7.0.1, strip-ansi@^7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== @@ -12711,19 +12865,19 @@ strnum@^1.0.5: resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db" integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA== -style-to-object@0.3.0, style-to-object@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.3.0.tgz#b1b790d205991cc783801967214979ee19a76e46" - integrity sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA== +style-to-object@^0.4.0: + version "0.4.4" + resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.4.4.tgz#266e3dfd56391a7eefb7770423612d043c3f33ec" + integrity sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg== dependencies: inline-style-parser "0.1.1" -style-to-object@^0.4.0: - version "0.4.2" - resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.4.2.tgz#a8247057111dea8bd3b8a1a66d2d0c9cf9218a54" - integrity sha512-1JGpfPB3lo42ZX8cuPrheZbfQ6kqPPnPHlKMyeRYtfKD+0jG+QsXgXN57O/dvJlzlB2elI6dGmrPnl5VPQFPaA== +style-to-object@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-1.0.5.tgz#5e918349bc3a39eee3a804497d97fcbbf2f0d7c0" + integrity sha512-rDRwHtoDD3UMMrmZ6BzOW0naTjMsVZLIjsGleSKS/0Oz+cgCfAPRspaqJuE8rDzpKha/nEvnM0IF4seEAZUTKQ== dependencies: - inline-style-parser "0.1.1" + inline-style-parser "0.2.2" stylehacks@^5.1.1: version "5.1.1" @@ -12733,7 +12887,7 @@ stylehacks@^5.1.1: browserslist "^4.21.4" postcss-selector-parser "^6.0.4" -stylis@^4.1.2: +stylis@^4.1.3: version "4.3.0" resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.3.0.tgz#abe305a669fc3d8777e10eefcfc73ad861c5588c" integrity sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ== @@ -12782,16 +12936,17 @@ svg-parser@^2.0.4: resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== -svgo@3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.0.2.tgz#5e99eeea42c68ee0dc46aa16da093838c262fe0a" - integrity sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ== +svgo@3.0.5: + version "3.0.5" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.0.5.tgz#0595cf3c762c4e5180713d7b92dc67deaf46c6a0" + integrity sha512-HQKHEo73pMNOlDlBcLgZRcHW2+1wo7bFYayAXkGN0l/2+h68KjlfZyMRhdhaGvoHV2eApOovl12zoFz42sT6rQ== dependencies: "@trysound/sax" "0.2.0" commander "^7.2.0" css-select "^5.1.0" css-tree "^2.2.1" - csso "^5.0.5" + css-what "^6.1.0" + csso "5.0.5" picocolors "^1.0.0" svgo@^2.7.0, svgo@^2.8.0: @@ -12825,12 +12980,12 @@ swagger2openapi@^7.0.8: yargs "^17.0.1" synckit@^0.8.5: - version "0.8.5" - resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.5.tgz#b7f4358f9bb559437f9f167eb6bc46b3c9818fa3" - integrity sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q== + version "0.8.6" + resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.6.tgz#b69b7fbce3917c2673cbdc0d87fb324db4a5b409" + integrity sha512-laHF2savN6sMeHCjLRkheIU4wo3Zg9Ln5YOjOo7sZ5dVQW8yF5pPE5SIw1dsPhq3TRp1jisKRCdPhfs/1WMqDA== dependencies: - "@pkgr/utils" "^2.3.1" - tslib "^2.5.0" + "@pkgr/utils" "^2.4.2" + tslib "^2.6.2" tapable@^1.0.0: version "1.1.3" @@ -12857,7 +13012,7 @@ tempy@^0.6.0: type-fest "^0.16.0" unique-string "^2.0.0" -terser-webpack-plugin@^5.3.3, terser-webpack-plugin@^5.3.7: +terser-webpack-plugin@^5.3.7, terser-webpack-plugin@^5.3.9: version "5.3.9" resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1" integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA== @@ -12868,20 +13023,20 @@ terser-webpack-plugin@^5.3.3, terser-webpack-plugin@^5.3.7: serialize-javascript "^6.0.1" terser "^5.16.8" -terser@^5.0.0, terser@^5.10.0, terser@^5.16.8: - version "5.20.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.20.0.tgz#ea42aea62578703e33def47d5c5b93c49772423e" - integrity sha512-e56ETryaQDyebBwJIWYB2TT6f2EZ0fL0sW/JRXNMN26zZdKi2u/E/5my5lG6jNxym6qsrVXfFRmOdV42zlAgLQ== +terser@^5.0.0, terser@^5.10.0, terser@^5.15.1, terser@^5.16.8: + version "5.26.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.26.0.tgz#ee9f05d929f4189a9c28a0feb889d96d50126fe1" + integrity sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2" commander "^2.20.0" source-map-support "~0.5.20" -text-extensions@^1.0.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" - integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== +text-extensions@^2.0.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-2.4.0.tgz#a1cfcc50cf34da41bfd047cc744f804d1680ea34" + integrity sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g== text-table@^0.2.0: version "0.2.0" @@ -12958,11 +13113,6 @@ to-fast-properties@^2.0.0: resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== -to-readable-stream@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" - integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== - to-regex-range@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" @@ -13007,16 +13157,6 @@ trim-newlines@^3.0.0: resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== -trim-trailing-lines@^1.0.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz#bd4abbec7cc880462f10b2c8b5ce1d8d1ec7c2c0" - integrity sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ== - -trim@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" - integrity sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ== - trough@^1.0.0: version "1.0.5" resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406" @@ -13047,47 +13187,11 @@ ts-md5@1.2.7: resolved "https://registry.yarnpkg.com/ts-md5/-/ts-md5-1.2.7.tgz#b76471fc2fd38f0502441f6c3b9494ed04537401" integrity sha512-emODogvKGWi1KO1l9c6YxLMBn6CEH3VrH5mVPIyOtxBG52BvV4jP3GWz6bOZCz61nLgBc3ffQYE4+EHfCD+V7w== -ts-node@^10.8.1: - version "10.9.1" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" - integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== - dependencies: - "@cspotcode/source-map-support" "^0.8.0" - "@tsconfig/node10" "^1.0.7" - "@tsconfig/node12" "^1.0.7" - "@tsconfig/node14" "^1.0.0" - "@tsconfig/node16" "^1.0.2" - acorn "^8.4.1" - acorn-walk "^8.1.1" - arg "^4.1.0" - create-require "^1.1.0" - diff "^4.0.1" - make-error "^1.1.1" - v8-compile-cache-lib "^3.0.1" - yn "3.1.1" - -tslib@2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz#b295854684dbda164e181d259a22cd779dcd7bc3" - integrity sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA== - -tslib@^1.8.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0, tslib@^2.5.0, tslib@^2.6.0: +tslib@2.6.2, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0, tslib@^2.6.0, tslib@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== -tsutils@^3.21.0: - version "3.21.0" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" - integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== - dependencies: - tslib "^1.8.1" - tty-browserify@^0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811" @@ -13130,16 +13234,21 @@ type-fest@^0.8.1: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== -type-fest@^1.0.2: +type-fest@^1.0.1: version "1.4.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1" integrity sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA== -type-fest@^2.14.0, type-fest@^2.19.0, type-fest@^2.5.0: +type-fest@^2.13.0, type-fest@^2.14.0, type-fest@^2.19.0, type-fest@^2.5.0: version "2.19.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== +type-fest@^3.0.0: + version "3.13.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.13.1.tgz#bb744c1f0678bea7543a2d1ec24e83e68e8c8706" + integrity sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g== + type-is@~1.6.18: version "1.6.18" resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" @@ -13194,15 +13303,10 @@ typedarray-to-buffer@^3.1.5: dependencies: is-typedarray "^1.0.0" -typescript@5.2.2, "typescript@^4.6.4 || ^5.0.0", "typescript@^4.7 || 5": - version "5.2.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.2.2.tgz#5ebb5e5a5b75f085f22bc3f8460fba308310fa78" - integrity sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w== - -ua-parser-js@^1.0.35: - version "1.0.36" - resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.36.tgz#a9ab6b9bd3a8efb90bb0816674b412717b7c428c" - integrity sha512-znuyCIXzl8ciS3+y3fHJI/2OhQIXbXw9MWC/o3qwyR+RGppjZHrM27CGFSKCJXi2Kctiz537iOu2KnXs1lMQhw== +typescript@5, typescript@5.3.3: + version "5.3.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37" + integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== unbox-primitive@^1.0.2: version "1.0.2" @@ -13214,25 +13318,27 @@ unbox-primitive@^1.0.2: has-symbols "^1.0.3" which-boxed-primitive "^1.0.2" -unherit@^1.0.4: - version "1.1.3" - resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22" - integrity sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ== - dependencies: - inherits "^2.0.0" - xtend "^4.0.0" +undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== +unicode-emoji-modifier-base@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz#dbbd5b54ba30f287e2a8d5a249da6c0cef369459" + integrity sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g== + unicode-emoji-utils@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/unicode-emoji-utils/-/unicode-emoji-utils-1.1.2.tgz#e15c6522d98380f4b145ea9126be59c01dabc297" - integrity sha512-b0fe4T08DjwayBPvKtG+tKyNMwx/Qdc50EZJhOJlGDwqU24DaxNrHMT8Kl75hVmLabrXC6TQ+CuMEVV163z1eQ== + version "1.2.0" + resolved "https://registry.yarnpkg.com/unicode-emoji-utils/-/unicode-emoji-utils-1.2.0.tgz#4f9452fcab0e3816ff1d93412d06ee1a1ba2cdc0" + integrity sha512-djUB91p/6oYpgps4W5K/MAvM+UspoAANHSUW495BrxeLRoned3iNPEDQgrKx9LbLq93VhNz0NWvI61vcfrwYoA== dependencies: - emoji-regex "10.2.1" + emoji-regex "10.3.0" unicode-match-property-ecmascript@^2.0.0: version "2.0.0" @@ -13252,18 +13358,6 @@ unicode-property-aliases-ecmascript@^2.0.0: resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== -unified@9.2.0: - version "9.2.0" - resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.0.tgz#67a62c627c40589edebbf60f53edfd4d822027f8" - integrity sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg== - dependencies: - bail "^1.0.0" - extend "^3.0.0" - is-buffer "^2.0.0" - is-plain-obj "^2.0.0" - trough "^1.0.0" - vfile "^4.0.0" - unified@^10.0.0: version "10.1.2" resolved "https://registry.yarnpkg.com/unified/-/unified-10.1.2.tgz#b1d64e55dafe1f0b98bb6c719881103ecf6c86df" @@ -13277,7 +13371,20 @@ unified@^10.0.0: trough "^2.0.0" vfile "^5.0.0" -unified@^9.0.0, unified@^9.1.0, unified@^9.2.2: +unified@^11.0.0, unified@^11.0.3, unified@^11.0.4: + version "11.0.4" + resolved "https://registry.yarnpkg.com/unified/-/unified-11.0.4.tgz#f4be0ac0fe4c88cb873687c07c64c49ed5969015" + integrity sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ== + dependencies: + "@types/unist" "^3.0.0" + bail "^2.0.0" + devlop "^1.0.0" + extend "^3.0.0" + is-plain-obj "^4.0.0" + trough "^2.0.0" + vfile "^6.0.0" + +unified@^9.1.0: version "9.2.2" resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.2.tgz#67649a1abfc3ab85d2969502902775eb03146975" integrity sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ== @@ -13296,22 +13403,20 @@ unique-string@^2.0.0: dependencies: crypto-random-string "^2.0.0" -unist-builder@2.0.3, unist-builder@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-2.0.3.tgz#77648711b5d86af0942f334397a33c5e91516436" - integrity sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw== - -unist-util-find-after@^3.0.0: +unique-string@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/unist-util-find-after/-/unist-util-find-after-3.0.0.tgz#5c65fcebf64d4f8f496db46fa8fd0fbf354b43e6" - integrity sha512-ojlBqfsBftYXExNu3+hHLfJQ/X1jYY/9vdm4yZWjIbf0VuWF6CRufci1ZyoD/wV2TYMKxXUoNuoqwy+CkgzAiQ== + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-3.0.0.tgz#84a1c377aff5fd7a8bc6b55d8244b2bd90d75b9a" + integrity sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ== dependencies: - unist-util-is "^4.0.0" + crypto-random-string "^4.0.0" -unist-util-generated@^1.0.0: - version "1.1.6" - resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-1.1.6.tgz#5ab51f689e2992a472beb1b35f2ce7ff2f324d4b" - integrity sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg== +unist-util-find-after@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz#3fccc1b086b56f34c8b798e1ff90b5c54468e896" + integrity sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ== + dependencies: + "@types/unist" "^3.0.0" + unist-util-is "^6.0.0" unist-util-generated@^2.0.0: version "2.0.1" @@ -13330,10 +13435,19 @@ unist-util-is@^5.0.0: dependencies: "@types/unist" "^2.0.0" -unist-util-position@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-3.1.0.tgz#1c42ee6301f8d52f47d14f62bbdb796571fa2d47" - integrity sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA== +unist-util-is@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-6.0.0.tgz#b775956486aff107a9ded971d996c173374be424" + integrity sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw== + dependencies: + "@types/unist" "^3.0.0" + +unist-util-position-from-estree@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz#d94da4df596529d1faa3de506202f0c9a23f2200" + integrity sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ== + dependencies: + "@types/unist" "^3.0.0" unist-util-position@^4.0.0: version "4.0.4" @@ -13342,19 +13456,20 @@ unist-util-position@^4.0.0: dependencies: "@types/unist" "^2.0.0" -unist-util-remove-position@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz#5d19ca79fdba712301999b2b73553ca8f3b352cc" - integrity sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA== +unist-util-position@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-5.0.0.tgz#678f20ab5ca1207a97d7ea8a388373c9cf896be4" + integrity sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA== dependencies: - unist-util-visit "^2.0.0" + "@types/unist" "^3.0.0" -unist-util-remove@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unist-util-remove/-/unist-util-remove-2.1.0.tgz#b0b4738aa7ee445c402fda9328d604a02d010588" - integrity sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q== +unist-util-remove-position@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz#fea68a25658409c9460408bc6b4991b965b52163" + integrity sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q== dependencies: - unist-util-is "^4.0.0" + "@types/unist" "^3.0.0" + unist-util-visit "^5.0.0" unist-util-stringify-position@^2.0.0: version "2.0.3" @@ -13370,6 +13485,13 @@ unist-util-stringify-position@^3.0.0: dependencies: "@types/unist" "^2.0.0" +unist-util-stringify-position@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz#449c6e21a880e0855bf5aabadeb3a740314abac2" + integrity sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ== + dependencies: + "@types/unist" "^3.0.0" + unist-util-visit-parents@^3.0.0: version "3.1.1" resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6" @@ -13386,7 +13508,15 @@ unist-util-visit-parents@^5.1.1: "@types/unist" "^2.0.0" unist-util-is "^5.0.0" -unist-util-visit@2.0.3, unist-util-visit@^2.0.0, unist-util-visit@^2.0.3: +unist-util-visit-parents@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz#4d5f85755c3b8f0dc69e21eca5d6d82d22162815" + integrity sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw== + dependencies: + "@types/unist" "^3.0.0" + unist-util-is "^6.0.0" + +unist-util-visit@2.0.3, unist-util-visit@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c" integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q== @@ -13404,15 +13534,24 @@ unist-util-visit@^4.0.0: unist-util-is "^5.0.0" unist-util-visit-parents "^5.1.1" +unist-util-visit@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-5.0.0.tgz#a7de1f31f72ffd3519ea71814cccf5fd6a9217d6" + integrity sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg== + dependencies: + "@types/unist" "^3.0.0" + unist-util-is "^6.0.0" + unist-util-visit-parents "^6.0.0" + universal-user-agent@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee" - integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w== + version "6.0.1" + resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.1.tgz#15f20f55da3c930c57bddbf1734c6654d5fd35aa" + integrity sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ== universalify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" - integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== + version "2.0.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" + integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" @@ -13437,25 +13576,25 @@ update-browserslist-db@^1.0.13: escalade "^3.1.1" picocolors "^1.0.0" -update-notifier@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-5.1.0.tgz#4ab0d7c7f36a231dd7316cf7729313f0214d9ad9" - integrity sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw== - dependencies: - boxen "^5.0.0" - chalk "^4.1.0" - configstore "^5.0.1" - has-yarn "^2.1.0" - import-lazy "^2.1.0" - is-ci "^2.0.0" +update-notifier@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-6.0.2.tgz#a6990253dfe6d5a02bd04fbb6a61543f55026b60" + integrity sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og== + dependencies: + boxen "^7.0.0" + chalk "^5.0.1" + configstore "^6.0.0" + has-yarn "^3.0.0" + import-lazy "^4.0.0" + is-ci "^3.0.1" is-installed-globally "^0.4.0" - is-npm "^5.0.0" - is-yarn-global "^0.3.0" - latest-version "^5.1.0" - pupa "^2.1.1" - semver "^7.3.4" - semver-diff "^3.1.1" - xdg-basedir "^4.0.0" + is-npm "^6.0.0" + is-yarn-global "^0.4.0" + latest-version "^7.0.0" + pupa "^3.1.0" + semver "^7.3.7" + semver-diff "^4.0.0" + xdg-basedir "^5.1.0" uri-js@^4.2.2: version "4.4.1" @@ -13473,13 +13612,6 @@ url-loader@^4.1.1: mime-types "^2.1.27" schema-utils "^3.0.0" -url-parse-lax@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" - integrity sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ== - dependencies: - prepend-http "^2.0.0" - url@^0.11.0: version "0.11.3" resolved "https://registry.yarnpkg.com/url/-/url-0.11.3.tgz#6f495f4b935de40ce4a0a52faee8954244f3d3ad" @@ -13488,33 +13620,11 @@ url@^0.11.0: punycode "^1.4.1" qs "^6.11.2" -use-composed-ref@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/use-composed-ref/-/use-composed-ref-1.3.0.tgz#3d8104db34b7b264030a9d916c5e94fbe280dbda" - integrity sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ== - use-editable@^2.3.3: version "2.3.3" resolved "https://registry.yarnpkg.com/use-editable/-/use-editable-2.3.3.tgz#a292fe9ba4c291cd28d1cc2728c75a5fc8d9a33f" integrity sha512-7wVD2JbfAFJ3DK0vITvXBdpd9JAz5BcKAAolsnLBuBn6UDDwBGuCIAGvR3yA2BNKm578vAMVHFCWaOcA+BhhiA== -use-isomorphic-layout-effect@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz#497cefb13d863d687b08477d9e5a164ad8c1a6fb" - integrity sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA== - -use-latest@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/use-latest/-/use-latest-1.2.1.tgz#d13dfb4b08c28e3e33991546a2cee53e14038cf2" - integrity sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw== - dependencies: - use-isomorphic-layout-effect "^1.1.1" - -use-sync-external-store@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a" - integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== - util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" @@ -13573,11 +13683,6 @@ uvu@^0.5.0: kleur "^4.0.3" sade "^1.7.3" -v8-compile-cache-lib@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" - integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== - validate-npm-package-license@^3.0.1: version "3.0.4" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" @@ -13626,11 +13731,6 @@ vary@~1.1.2: resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== -vfile-location@^3.0.0, vfile-location@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-3.2.0.tgz#d8e41fbcbd406063669ebf6c33d56ae8721d0f3c" - integrity sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA== - vfile-location@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-4.1.0.tgz#69df82fb9ef0a38d0d02b90dd84620e120050dd0" @@ -13639,6 +13739,14 @@ vfile-location@^4.0.0: "@types/unist" "^2.0.0" vfile "^5.0.0" +vfile-location@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-5.0.2.tgz#220d9ca1ab6f8b2504a4db398f7ebc149f9cb464" + integrity sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg== + dependencies: + "@types/unist" "^3.0.0" + vfile "^6.0.0" + vfile-message@^2.0.0: version "2.0.4" resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.4.tgz#5b43b88171d409eae58477d13f23dd41d52c371a" @@ -13655,6 +13763,14 @@ vfile-message@^3.0.0: "@types/unist" "^2.0.0" unist-util-stringify-position "^3.0.0" +vfile-message@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-4.0.2.tgz#c883c9f677c72c166362fd635f21fc165a7d1181" + integrity sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw== + dependencies: + "@types/unist" "^3.0.0" + unist-util-stringify-position "^4.0.0" + vfile@^4.0.0: version "4.2.1" resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.2.1.tgz#03f1dce28fc625c625bc6514350fbdb00fa9e624" @@ -13675,22 +13791,20 @@ vfile@^5.0.0: unist-util-stringify-position "^3.0.0" vfile-message "^3.0.0" +vfile@^6.0.0, vfile@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/vfile/-/vfile-6.0.1.tgz#1e8327f41eac91947d4fe9d237a2dd9209762536" + integrity sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw== + dependencies: + "@types/unist" "^3.0.0" + unist-util-stringify-position "^4.0.0" + vfile-message "^4.0.0" + vm-browserify@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== -wait-on@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/wait-on/-/wait-on-6.0.1.tgz#16bbc4d1e4ebdd41c5b4e63a2e16dbd1f4e5601e" - integrity sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw== - dependencies: - axios "^0.25.0" - joi "^17.6.0" - lodash "^4.17.21" - minimist "^1.2.5" - rxjs "^7.5.4" - warning@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" @@ -13720,11 +13834,6 @@ wcwidth@^1.0.1: dependencies: defaults "^1.0.3" -web-namespaces@^1.0.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.4.tgz#bc98a3de60dadd7faefc403d1076d529f5e030ec" - integrity sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw== - web-namespaces@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-2.0.1.tgz#1010ff7c650eccb2592cebeeaf9a1b253fd40692" @@ -13745,24 +13854,20 @@ webidl-conversions@^4.0.2: resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== -webpack-bundle-analyzer@^4.5.0: - version "4.9.1" - resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.9.1.tgz#d00bbf3f17500c10985084f22f1a2bf45cb2f09d" - integrity sha512-jnd6EoYrf9yMxCyYDPj8eutJvtjQNp8PHmni/e/ulydHBWhT5J3menXt3HEkScsu9YqMAcG4CfFjs3rj5pVU1w== +webpack-bundle-analyzer@^4.9.0: + version "4.10.1" + resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.1.tgz#84b7473b630a7b8c21c741f81d8fe4593208b454" + integrity sha512-s3P7pgexgT/HTUSYgxJyn28A+99mmLq4HsJepMPzu0R8ImJc52QNqaFYW1Z2z2uIb1/J3eYgaAWVpaC+v/1aAQ== dependencies: "@discoveryjs/json-ext" "0.5.7" acorn "^8.0.4" acorn-walk "^8.0.0" commander "^7.2.0" + debounce "^1.2.1" escape-string-regexp "^4.0.0" gzip-size "^6.0.0" + html-escaper "^2.0.2" is-plain-object "^5.0.0" - lodash.debounce "^4.0.8" - lodash.escape "^4.0.1" - lodash.flatten "^4.4.0" - lodash.invokemap "^4.6.0" - lodash.pullall "^4.2.0" - lodash.uniqby "^4.7.0" opener "^1.5.2" picocolors "^1.0.0" sirv "^2.0.3" @@ -13779,7 +13884,7 @@ webpack-dev-middleware@^5.3.1: range-parser "^1.2.1" schema-utils "^4.0.0" -webpack-dev-server@^4.9.3: +webpack-dev-server@^4.15.1: version "4.15.1" resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz#8944b29c12760b3a45bdaa70799b17cb91b03df7" integrity sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA== @@ -13815,12 +13920,13 @@ webpack-dev-server@^4.9.3: webpack-dev-middleware "^5.3.1" ws "^8.13.0" -webpack-merge@^5.8.0: - version "5.9.0" - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.9.0.tgz#dc160a1c4cf512ceca515cc231669e9ddb133826" - integrity sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg== +webpack-merge@^5.9.0: + version "5.10.0" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.10.0.tgz#a3ad5d773241e9c682803abf628d4cd62b8a4177" + integrity sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA== dependencies: clone-deep "^4.0.1" + flat "^5.0.2" wildcard "^2.0.0" webpack-sources@^3.2.2, webpack-sources@^3.2.3: @@ -13828,10 +13934,10 @@ webpack-sources@^3.2.2, webpack-sources@^3.2.3: resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== -webpack@^5.61.0, webpack@^5.73.0: - version "5.88.2" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.88.2.tgz#f62b4b842f1c6ff580f3fcb2ed4f0b579f4c210e" - integrity sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ== +webpack@^5.61.0, webpack@^5.73.0, webpack@^5.88.1: + version "5.89.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.89.0.tgz#56b8bf9a34356e93a6625770006490bf3a7f32dc" + integrity sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw== dependencies: "@types/eslint-scope" "^3.7.3" "@types/estree" "^1.0.0" @@ -13943,13 +14049,13 @@ which-module@^2.0.0: resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== -which-typed-array@^1.1.11, which-typed-array@^1.1.2, which-typed-array@^1.1.9: - version "1.1.11" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a" - integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew== +which-typed-array@^1.1.11, which-typed-array@^1.1.13, which-typed-array@^1.1.2, which-typed-array@^1.1.9: + version "1.1.13" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.13.tgz#870cd5be06ddb616f504e7b039c4c24898184d36" + integrity sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow== dependencies: available-typed-arrays "^1.0.5" - call-bind "^1.0.2" + call-bind "^1.0.4" for-each "^0.3.3" gopd "^1.0.1" has-tostringtag "^1.0.0" @@ -13968,13 +14074,6 @@ which@^2.0.1: dependencies: isexe "^2.0.0" -widest-line@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" - integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== - dependencies: - string-width "^4.0.0" - widest-line@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-4.0.1.tgz#a0fc673aaba1ea6f0a0d35b3c2795c9a9cc2ebf2" @@ -14007,7 +14106,7 @@ workbox-broadcast-update@6.6.1: dependencies: workbox-core "6.6.1" -workbox-build@^6.5.3: +workbox-build@^6.6.1: version "6.6.1" resolved "https://registry.yarnpkg.com/workbox-build/-/workbox-build-6.6.1.tgz#6010e9ce550910156761448f2dbea8cfcf759cb0" integrity sha512-INPgDx6aRycAugUixbKgiEQBWD0MPZqU5r0jyr24CehvNuLPSXp/wGOpdRJmts656lNiXwqV7dC2nzyrzWEDnw== @@ -14087,7 +14186,7 @@ workbox-navigation-preload@6.6.1: dependencies: workbox-core "6.6.1" -workbox-precaching@6.6.1, workbox-precaching@^6.5.3: +workbox-precaching@6.6.1, workbox-precaching@^6.6.1: version "6.6.1" resolved "https://registry.yarnpkg.com/workbox-precaching/-/workbox-precaching-6.6.1.tgz#dedeeba10a2d163d990bf99f1c2066ac0d1a19e2" integrity sha512-K4znSJ7IKxCnCYEdhNkMr7X1kNh8cz+mFgx9v5jFdz1MfI84pq8C2zG+oAoeE5kFrUf7YkT5x4uLWBNg0DVZ5A== @@ -14142,7 +14241,7 @@ workbox-sw@6.6.1: resolved "https://registry.yarnpkg.com/workbox-sw/-/workbox-sw-6.6.1.tgz#d4c4ca3125088e8b9fd7a748ed537fa0247bd72c" integrity sha512-R7whwjvU2abHH/lR6kQTTXLHDFU2izht9kJOvBRYK65FbwutT4VvnUAJIgHvfWZ/fokrOPhfoWYoPCMpSgUKHQ== -workbox-window@6.6.1, workbox-window@^6.5.3: +workbox-window@6.6.1, workbox-window@^6.6.1: version "6.6.1" resolved "https://registry.yarnpkg.com/workbox-window/-/workbox-window-6.6.1.tgz#f22a394cbac36240d0dadcbdebc35f711bb7b89e" integrity sha512-wil4nwOY58nTdCvif/KEZjQ2NP8uk3gGeRNy2jPBbzypU4BT4D9L8xiwbmDBpZlSgJd2xsT9FvSNU0gsxV51JQ== @@ -14177,12 +14276,21 @@ wrap-ansi@^8.0.1, wrap-ansi@^8.1.0: string-width "^5.0.1" strip-ansi "^7.0.1" +wrap-ansi@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.0.tgz#1a3dc8b70d85eeb8398ddfb1e4a02cd186e58b3e" + integrity sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q== + dependencies: + ansi-styles "^6.2.1" + string-width "^7.0.0" + strip-ansi "^7.1.0" + wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== -write-file-atomic@^3.0.0: +write-file-atomic@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== @@ -14202,10 +14310,10 @@ ws@^8.13.0: resolved "https://registry.yarnpkg.com/ws/-/ws-8.14.2.tgz#6c249a806eb2db7a20d26d51e7709eab7b2e6c7f" integrity sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g== -xdg-basedir@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" - integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== +xdg-basedir@^5.0.1, xdg-basedir@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-5.1.0.tgz#1efba19425e73be1bc6f2a6ceb52a3d2c884c0c9" + integrity sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ== xml-formatter@^2.6.1: version "2.6.1" @@ -14226,7 +14334,7 @@ xml-parser-xo@^3.2.0: resolved "https://registry.yarnpkg.com/xml-parser-xo/-/xml-parser-xo-3.2.0.tgz#c633ab55cf1976d6b03ab4a6a85045093ac32b73" integrity sha512-8LRU6cq+d7mVsoDaMhnkkt3CTtAs4153p49fRo+HIB3I1FD1o5CeXRjRH29sQevIfVJIcPjKSsPU/+Ujhq09Rg== -xtend@^4.0.0, xtend@^4.0.1, xtend@^4.0.2: +xtend@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== @@ -14261,10 +14369,10 @@ yaml@1.10.2, yaml@^1.10.0, yaml@^1.10.2, yaml@^1.7.2: resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== -yaml@2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b" - integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== +yaml@2.3.4: + version "2.3.4" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.4.tgz#53fc1d514be80aabf386dc6001eb29bf3b7523b2" + integrity sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA== yargs-parser@^18.1.2: version "18.1.3" @@ -14314,16 +14422,16 @@ yargs@^17.0.0, yargs@^17.0.1: y18n "^5.0.5" yargs-parser "^21.1.1" -yn@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" - integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== - yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== +yocto-queue@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" + integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== + yup@1.3.2: version "1.3.2" resolved "https://registry.yarnpkg.com/yup/-/yup-1.3.2.tgz#afffc458f1513ed386e6aaf4bcaa4e67a9e270dc"