diff --git a/devspace-schema.json b/devspace-schema.json index 3b09756001..9c067c5f76 100644 --- a/devspace-schema.json +++ b/devspace-schema.json @@ -452,7 +452,7 @@ "properties": { "command": { "type": "string", - "description": "Command to execute to build the image. You can use ${runtime.images.my-image.image} and ${runtime.image.my-image.tag}\nto reference the image and tag that should get built." + "description": "Command to execute to build the image. You can use `${runtime.images.my-image.image}` and `${runtime.images.my-image.tag}`\nto reference the image and tag that should get built." }, "onChange": { "oneOf": [ @@ -3513,7 +3513,7 @@ }, "initialSync": { "type": "string", - "description": "InitialSync defines the initial sync strategy to use when this sync starts. Defaults to mirrorLocal", + "description": "InitialSync defines the initial sync strategy to use when this sync starts. Defaults to mirrorLocal.\nYou can completely disable this using the `initialSync: disabled` option.", "group": "initial_sync", "group_name": "Initial Sync" }, diff --git a/docs/.nvmrc b/docs/.nvmrc index b492b08635..209e3ef4b6 100644 --- a/docs/.nvmrc +++ b/docs/.nvmrc @@ -1 +1 @@ -18.16 +20 diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 982654601c..8f3dba49f1 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -7,6 +7,11 @@ module.exports = { tagline: 'The tagline of my site', url: 'https://devspace.sh', baseUrl: __webpack_public_path__, + markdown: { + mdx1Compat: { + headingIds: true, + }, + }, favicon: '/img/favicon.png', organizationName: 'loft-sh', // Usually your GitHub org/user name. projectName: 'devspace', // Usually your repo name. @@ -84,39 +89,6 @@ module.exports = { path: "" } }, - remarkPlugins: [ - [ - require('mdx-mermaid'), - { - mermaid: { - securityLevel: "loose", - theme: 'neutral', - themeVariables: { - primaryColor: '#00bdff', - lineColor: '#bdd6f3', - arrowheadColor: '#bdd6f3', - mainBkg: '#6c89ad', - contrast: '#3e5371', - textColor: '#fff', - primaryTextColor: '#fff', - secondaryTextColor: '#fff', - tertiaryTextColor: '#fff', - border1: 'transparent', - border2: 'transparent', - clusterBkg: 'transparent', - clusterBorder: '#bdd6f3', - edgeLabelBackground: '#bcd6f3', - - }, - flowchart: { - curve: 'basis', - nodeSpacing: 20, - rankSpacing: 50, - } - } - } - ] - ], }, theme: { customCss: resolveGlob.sync(['./src/css/**/*.scss']), diff --git a/docs/hack/util/schema.go b/docs/hack/util/schema.go index 230618e190..6c9ac51470 100644 --- a/docs/hack/util/schema.go +++ b/docs/hack/util/schema.go @@ -75,7 +75,7 @@ func GenerateReference(schema *jsonschema.Schema, basePath string) { func createSections(basePath, prefix string, schema *jsonschema.Schema, definitions jsonschema.Definitions, depth int, parentIsNameObjectMap bool) string { partialImports := &[]string{} content := "" - headlinePrefix := strings.Repeat("#", depth+1) + " " + headlinePrefix := headingPrefix(depth) anchorPrefix := strings.TrimPrefix(strings.ReplaceAll(prefix, prefixSeparator, anchorSeparator), anchorSeparator) groups := map[string]*Group{} @@ -277,6 +277,14 @@ func createSections(basePath, prefix string, schema *jsonschema.Schema, definiti return content } +func headingPrefix(depth int) string { + headingLevel := depth + 1 + if headingLevel > 6 { + headingLevel = 6 + } + return strings.Repeat("#", headingLevel) + " " +} + func GetEumValues(fieldSchema *jsonschema.Schema, required bool, fieldDefault *string) string { enumValues := "" if fieldSchema.Enum != nil { diff --git a/docs/hack/util/schema_test.go b/docs/hack/util/schema_test.go new file mode 100644 index 0000000000..6145a196cf --- /dev/null +++ b/docs/hack/util/schema_test.go @@ -0,0 +1,23 @@ +package util + +import "testing" + +func TestHeadingPrefixCapsAtLevelSix(t *testing.T) { + testCases := []struct { + name string + depth int + expected string + }{ + {name: "top level", depth: 1, expected: "## "}, + {name: "sixth level", depth: 5, expected: "###### "}, + {name: "deeper than six", depth: 8, expected: "###### "}, + } + + for _, testCase := range testCases { + t.Run(testCase.name, func(t *testing.T) { + if actual := headingPrefix(testCase.depth); actual != testCase.expected { + t.Fatalf("headingPrefix(%d) = %q, want %q", testCase.depth, actual, testCase.expected) + } + }) + } +} diff --git a/docs/package.json b/docs/package.json index dcefe55888..abd7aae501 100644 --- a/docs/package.json +++ b/docs/package.json @@ -2,6 +2,9 @@ "name": "devspace-cloud", "version": "0.0.0", "private": true, + "engines": { + "node": ">=20.0" + }, "scripts": { "start": "docusaurus start", "build": "docusaurus build", @@ -15,11 +18,9 @@ "classnames": "^2.2.6", "docusaurus-plugin-sass": "^0.2.6", "mdx-link-checker": "^0.1.1", - "mdx-mermaid": "^v1.3.0", - "mermaid": "^11.12.3", "plugin-image-zoom": "ataft/plugin-image-zoom", - "react": "^17.0.2", - "react-dom": "^17.0.2", + "react": "^18.2.0", + "react-dom": "^18.2.0", "redocusaurus": "^2.1.1", "resolve-glob": "^1.0.0", "sass": "^1.93.2" diff --git a/docs/pages/_partials/workflow-replace-tags.mdx b/docs/pages/_partials/workflow-replace-tags.mdx index 02e306d9cd..67c4d0fb56 100644 --- a/docs/pages/_partials/workflow-replace-tags.mdx +++ b/docs/pages/_partials/workflow-replace-tags.mdx @@ -8,6 +8,5 @@ Replacing or appending tags to images that are used in your deployments makes su DevSpace will replace the following things: - **registry.url/repo/name** that corresponds to a `images.*.image`, will be rewritten to `registry.url/repo/name:generated_tag` -- **${runtime.images.image-key.image}** that corresponds to a `images.*` key, will be rewritten to `registry.url/repo/name`. You can also use dependency images here with `${runtime.dependencies.dep1.images.dep-image.image}` -- **${runtime.images.image-key.tag}** that corresponds to a `images.*` key, will be rewritten to `generated_tag`. You can also use dependency images here with `${runtime.dependencies.dep1.images.dep-image.tag}` - +- **`${runtime.images.image-key.image}`** that corresponds to a `images.*` key, will be rewritten to `registry.url/repo/name`. You can also use dependency images here with `${runtime.dependencies.dep1.images.dep-image.image}` +- **`${runtime.images.image-key.tag}`** that corresponds to a `images.*` key, will be rewritten to `generated_tag`. You can also use dependency images here with `${runtime.dependencies.dep1.images.dep-image.tag}` diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/persistPaths/initContainer/resources/limits.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/persistPaths/initContainer/resources/limits.mdx index e7c900352b..9d26e86b4b 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/persistPaths/initContainer/resources/limits.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/persistPaths/initContainer/resources/limits.mdx @@ -2,7 +2,7 @@
-####### `limits` required <limit_name>:string {#dev-containers-persistPaths-initContainer-resources-limits} +###### `limits` required <limit_name>:string {#dev-containers-persistPaths-initContainer-resources-limits} Limits are the limits part of the resources diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/persistPaths/initContainer/resources/requests.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/persistPaths/initContainer/resources/requests.mdx index dddec61408..286437208c 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/persistPaths/initContainer/resources/requests.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/persistPaths/initContainer/resources/requests.mdx @@ -2,7 +2,7 @@
-####### `requests` required <request_name>:string {#dev-containers-persistPaths-initContainer-resources-requests} +###### `requests` required <request_name>:string {#dev-containers-persistPaths-initContainer-resources-requests} Requests are the requests part of the resources diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/initialSync.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/initialSync.mdx index 50cd58db6c..32dc5780f4 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/initialSync.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/initialSync.mdx @@ -4,7 +4,7 @@ ##### `initialSync` required string {#dev-containers-sync-initialSync} -InitialSync defines the initial sync strategy to use when this sync starts. Defaults to mirrorLocal +InitialSync defines the initial sync strategy to use when this sync starts. Defaults to mirrorLocal. You can completely disable this using the `initialSync: disabled` option. diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/args.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/args.mdx index 9770f29ccd..c4726ab8d5 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/args.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/args.mdx @@ -2,7 +2,7 @@
-####### `args` required string[] {#dev-containers-sync-onUpload-exec-args} +###### `args` required string[] {#dev-containers-sync-onUpload-exec-args} Args are arguments to pass to the command diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/command.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/command.mdx index 01ad6f1502..dde7b430e5 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/command.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/command.mdx @@ -2,7 +2,7 @@
-####### `command` required string {#dev-containers-sync-onUpload-exec-command} +###### `command` required string {#dev-containers-sync-onUpload-exec-command} Command is the command to execute. If no args are specified this is executed within a shell. diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/failOnError.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/failOnError.mdx index df57827888..3b22fbe12f 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/failOnError.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/failOnError.mdx @@ -2,7 +2,7 @@
-####### `failOnError` required boolean false {#dev-containers-sync-onUpload-exec-failOnError} +###### `failOnError` required boolean false {#dev-containers-sync-onUpload-exec-failOnError} FailOnError specifies if the sync should fail if the command fails diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/local.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/local.mdx index 60df6872f8..1e75e6d88b 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/local.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/local.mdx @@ -2,7 +2,7 @@
-####### `local` required boolean false {#dev-containers-sync-onUpload-exec-local} +###### `local` required boolean false {#dev-containers-sync-onUpload-exec-local} Local specifies if the command should be executed locally instead of within the container diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/name.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/name.mdx index 593f2816d1..68d993345f 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/name.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/name.mdx @@ -2,7 +2,7 @@
-####### `name` required string {#dev-containers-sync-onUpload-exec-name} +###### `name` required string {#dev-containers-sync-onUpload-exec-name} Name is the name to show for this exec in the logs diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/onChange.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/onChange.mdx index d1f81f7ed9..e0a3b0ce4d 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/onChange.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/onChange.mdx @@ -2,7 +2,7 @@
-####### `onChange` required string[] {#dev-containers-sync-onUpload-exec-onChange} +###### `onChange` required string[] {#dev-containers-sync-onUpload-exec-onChange} OnChange is an array of file patterns that trigger this command execution diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/once.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/once.mdx index a5cf027d69..166d8aa9b8 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/once.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/exec/once.mdx @@ -2,7 +2,7 @@
-####### `once` required boolean false {#dev-containers-sync-onUpload-exec-once} +###### `once` required boolean false {#dev-containers-sync-onUpload-exec-once} Once executes this command only once in the container's life. Can be used to initialize a container before starting it, but after everything was synced. diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/args.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/args.mdx index 4d186665f1..5bf1e8246e 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/args.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/args.mdx @@ -2,7 +2,7 @@
-####### `args` required string[] {#dev-containers-sync-onUpload-execRemote-args} +###### `args` required string[] {#dev-containers-sync-onUpload-execRemote-args} Args are arguments that should get appended to the command diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/command.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/command.mdx index aee3c5f0c1..79aaca83f6 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/command.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/command.mdx @@ -2,7 +2,7 @@
-####### `command` required string {#dev-containers-sync-onUpload-execRemote-command} +###### `command` required string {#dev-containers-sync-onUpload-execRemote-command} Command is the command that should get executed diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onBatch.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onBatch.mdx index 0b56b162ad..caa3b1b449 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onBatch.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onBatch.mdx @@ -5,7 +5,7 @@ import PartialOnBatchreference from "./onBatch_reference.mdx"
-####### `onBatch` required {#dev-containers-sync-onUpload-execRemote-onBatch} +###### `onBatch` required {#dev-containers-sync-onUpload-execRemote-onBatch} OnBatch executes the given command after a batch of changes has been processed. DevSpace will wait for the command to finish and then will continue execution. This is useful for commands diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onBatch/args.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onBatch/args.mdx index 1752d1d3f7..39df9fd54b 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onBatch/args.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onBatch/args.mdx @@ -2,7 +2,7 @@
-######## `args` required string[] {#dev-containers-sync-onUpload-execRemote-onBatch-args} +###### `args` required string[] {#dev-containers-sync-onUpload-execRemote-onBatch-args} Args are arguments that should get appended to the command diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onBatch/command.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onBatch/command.mdx index 0a0282e499..f615ee9290 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onBatch/command.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onBatch/command.mdx @@ -2,7 +2,7 @@
-######## `command` required string {#dev-containers-sync-onUpload-execRemote-onBatch-command} +###### `command` required string {#dev-containers-sync-onUpload-execRemote-onBatch-command} Command is the command that should get executed diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onDirCreate.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onDirCreate.mdx index 851c157899..1da8790377 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onDirCreate.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onDirCreate.mdx @@ -5,7 +5,7 @@ import PartialOnDirCreatereference from "./onDirCreate_reference.mdx"
-####### `onDirCreate` required {#dev-containers-sync-onUpload-execRemote-onDirCreate} +###### `onDirCreate` required {#dev-containers-sync-onUpload-execRemote-onDirCreate} OnDirCreate is invoked after every directory that is created. DevSpace will wait for the command to successfully finish and then will continue to upload files & create folders diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onDirCreate/args.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onDirCreate/args.mdx index 42b0129537..c7832f9822 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onDirCreate/args.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onDirCreate/args.mdx @@ -2,7 +2,7 @@
-######## `args` required string[] {#dev-containers-sync-onUpload-execRemote-onDirCreate-args} +###### `args` required string[] {#dev-containers-sync-onUpload-execRemote-onDirCreate-args} Args are arguments that should get appended to the command diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onDirCreate/command.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onDirCreate/command.mdx index 21a776f5b4..5562297f16 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onDirCreate/command.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onDirCreate/command.mdx @@ -2,7 +2,7 @@
-######## `command` required string {#dev-containers-sync-onUpload-execRemote-onDirCreate-command} +###### `command` required string {#dev-containers-sync-onUpload-execRemote-onDirCreate-command} Command is the command that should get executed diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onFileChange.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onFileChange.mdx index 419c8a7aaf..9cc2227bb2 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onFileChange.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onFileChange.mdx @@ -5,7 +5,7 @@ import PartialOnFileChangereference from "./onFileChange_reference.mdx"
-####### `onFileChange` required {#dev-containers-sync-onUpload-execRemote-onFileChange} +###### `onFileChange` required {#dev-containers-sync-onUpload-execRemote-onFileChange} OnFileChange is invoked after every file change. DevSpace will wait for the command to successfully finish and then will continue to upload files & create folders diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onFileChange/args.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onFileChange/args.mdx index 5eecd8338b..9c406e3a47 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onFileChange/args.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onFileChange/args.mdx @@ -2,7 +2,7 @@
-######## `args` required string[] {#dev-containers-sync-onUpload-execRemote-onFileChange-args} +###### `args` required string[] {#dev-containers-sync-onUpload-execRemote-onFileChange-args} Args are arguments that should get appended to the command diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onFileChange/command.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onFileChange/command.mdx index c82b5d5787..7de1f51e2f 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onFileChange/command.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote/onFileChange/command.mdx @@ -2,7 +2,7 @@
-######## `command` required string {#dev-containers-sync-onUpload-execRemote-onFileChange-command} +###### `command` required string {#dev-containers-sync-onUpload-execRemote-onFileChange-command} Command is the command that should get executed diff --git a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote_reference.mdx b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote_reference.mdx index 87652a6808..896dfa89f4 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote_reference.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/containers/sync/onUpload/execRemote_reference.mdx @@ -15,7 +15,7 @@ import PartialOnBatchreference from "./execRemote/onBatch_reference.mdx"
-####### `onFileChange` required {#dev-containers-sync-onUpload-execRemote-onFileChange} +###### `onFileChange` required {#dev-containers-sync-onUpload-execRemote-onFileChange} OnFileChange is invoked after every file change. DevSpace will wait for the command to successfully finish and then will continue to upload files & create folders @@ -32,7 +32,7 @@ and then will continue to upload files & create folders
-####### `onDirCreate` required {#dev-containers-sync-onUpload-execRemote-onDirCreate} +###### `onDirCreate` required {#dev-containers-sync-onUpload-execRemote-onDirCreate} OnDirCreate is invoked after every directory that is created. DevSpace will wait for the command to successfully finish and then will continue to upload files & create folders @@ -49,7 +49,7 @@ and then will continue to upload files & create folders
-####### `onBatch` required {#dev-containers-sync-onUpload-execRemote-onBatch} +###### `onBatch` required {#dev-containers-sync-onUpload-execRemote-onBatch} OnBatch executes the given command after a batch of changes has been processed. DevSpace will wait for the command to finish and then will continue execution. This is useful for commands diff --git a/docs/pages/configuration/_partials/v2beta1/dev/sync/initialSync.mdx b/docs/pages/configuration/_partials/v2beta1/dev/sync/initialSync.mdx index df992dbbfe..de4b4c709b 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/sync/initialSync.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/sync/initialSync.mdx @@ -4,7 +4,8 @@ #### `initialSync` required string {#dev-sync-initialSync} -InitialSync defines the initial sync strategy to use when this sync starts. Defaults to mirrorLocal +InitialSync defines the initial sync strategy to use when this sync starts. Defaults to mirrorLocal. +You can completely disable this using the `initialSync: disabled` option. diff --git a/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onBatch/args.mdx b/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onBatch/args.mdx index 3e89b3e9c6..427cad3d70 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onBatch/args.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onBatch/args.mdx @@ -2,7 +2,7 @@
-####### `args` required string[] {#dev-sync-onUpload-execRemote-onBatch-args} +###### `args` required string[] {#dev-sync-onUpload-execRemote-onBatch-args} Args are arguments that should get appended to the command diff --git a/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onBatch/command.mdx b/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onBatch/command.mdx index 474a6c1f3f..0e97a1c570 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onBatch/command.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onBatch/command.mdx @@ -2,7 +2,7 @@
-####### `command` required string {#dev-sync-onUpload-execRemote-onBatch-command} +###### `command` required string {#dev-sync-onUpload-execRemote-onBatch-command} Command is the command that should get executed diff --git a/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onDirCreate/args.mdx b/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onDirCreate/args.mdx index 8bccfa5d9e..7e78b4e4cd 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onDirCreate/args.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onDirCreate/args.mdx @@ -2,7 +2,7 @@
-####### `args` required string[] {#dev-sync-onUpload-execRemote-onDirCreate-args} +###### `args` required string[] {#dev-sync-onUpload-execRemote-onDirCreate-args} Args are arguments that should get appended to the command diff --git a/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onDirCreate/command.mdx b/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onDirCreate/command.mdx index 3587a40120..a1f5e1d4cb 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onDirCreate/command.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onDirCreate/command.mdx @@ -2,7 +2,7 @@
-####### `command` required string {#dev-sync-onUpload-execRemote-onDirCreate-command} +###### `command` required string {#dev-sync-onUpload-execRemote-onDirCreate-command} Command is the command that should get executed diff --git a/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onFileChange/args.mdx b/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onFileChange/args.mdx index 079f19da80..5e1d170f07 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onFileChange/args.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onFileChange/args.mdx @@ -2,7 +2,7 @@
-####### `args` required string[] {#dev-sync-onUpload-execRemote-onFileChange-args} +###### `args` required string[] {#dev-sync-onUpload-execRemote-onFileChange-args} Args are arguments that should get appended to the command diff --git a/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onFileChange/command.mdx b/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onFileChange/command.mdx index b01fc7bd0e..815bbf108b 100755 --- a/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onFileChange/command.mdx +++ b/docs/pages/configuration/_partials/v2beta1/dev/sync/onUpload/execRemote/onFileChange/command.mdx @@ -2,7 +2,7 @@
-####### `command` required string {#dev-sync-onUpload-execRemote-onFileChange-command} +###### `command` required string {#dev-sync-onUpload-execRemote-onFileChange-command} Command is the command that should get executed diff --git a/docs/pages/configuration/_partials/v2beta1/images/custom/command.mdx b/docs/pages/configuration/_partials/v2beta1/images/custom/command.mdx index a336277e28..7a2918a48c 100755 --- a/docs/pages/configuration/_partials/v2beta1/images/custom/command.mdx +++ b/docs/pages/configuration/_partials/v2beta1/images/custom/command.mdx @@ -4,7 +4,7 @@ #### `command` required string {#images-custom-command} -Command to execute to build the image. You can use ${runtime.images.my-image.image} and ${runtime.image.my-image.tag} +Command to execute to build the image. You can use `${runtime.images.my-image.image}` and `${runtime.images.my-image.tag}` to reference the image and tag that should get built. diff --git a/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/configMap/items/key.mdx b/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/configMap/items/key.mdx index aac117c2b1..05c426a0d3 100755 --- a/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/configMap/items/key.mdx +++ b/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/configMap/items/key.mdx @@ -2,7 +2,7 @@
-####### `key` required string {#images-kaniko-additionalMounts-configMap-items-key} +###### `key` required string {#images-kaniko-additionalMounts-configMap-items-key} The key to project. diff --git a/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/configMap/items/mode.mdx b/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/configMap/items/mode.mdx index 518d90a835..07f24a3925 100755 --- a/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/configMap/items/mode.mdx +++ b/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/configMap/items/mode.mdx @@ -2,7 +2,7 @@
-####### `mode` required integer {#images-kaniko-additionalMounts-configMap-items-mode} +###### `mode` required integer {#images-kaniko-additionalMounts-configMap-items-mode} Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. diff --git a/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/configMap/items/path.mdx b/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/configMap/items/path.mdx index 5c1f5d0d1f..0331bcc841 100755 --- a/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/configMap/items/path.mdx +++ b/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/configMap/items/path.mdx @@ -2,7 +2,7 @@
-####### `path` required string {#images-kaniko-additionalMounts-configMap-items-path} +###### `path` required string {#images-kaniko-additionalMounts-configMap-items-path} The relative path of the file to map the key to. May not be an absolute path. diff --git a/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/secret/items/key.mdx b/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/secret/items/key.mdx index 560424596e..bac58aed56 100755 --- a/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/secret/items/key.mdx +++ b/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/secret/items/key.mdx @@ -2,7 +2,7 @@
-####### `key` required string {#images-kaniko-additionalMounts-secret-items-key} +###### `key` required string {#images-kaniko-additionalMounts-secret-items-key} The key to project. diff --git a/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/secret/items/mode.mdx b/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/secret/items/mode.mdx index 4953379615..682811a565 100755 --- a/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/secret/items/mode.mdx +++ b/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/secret/items/mode.mdx @@ -2,7 +2,7 @@
-####### `mode` required integer {#images-kaniko-additionalMounts-secret-items-mode} +###### `mode` required integer {#images-kaniko-additionalMounts-secret-items-mode} Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. diff --git a/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/secret/items/path.mdx b/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/secret/items/path.mdx index 1ffa39ba79..a1b35d22a0 100755 --- a/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/secret/items/path.mdx +++ b/docs/pages/configuration/_partials/v2beta1/images/kaniko/additionalMounts/secret/items/path.mdx @@ -2,7 +2,7 @@
-####### `path` required string {#images-kaniko-additionalMounts-secret-items-path} +###### `path` required string {#images-kaniko-additionalMounts-secret-items-path} The relative path of the file to map the key to. May not be an absolute path. diff --git a/docs/pages/configuration/deployments/kubectl/patches.mdx b/docs/pages/configuration/deployments/kubectl/patches.mdx index 5f478cfbf7..7fba2f228c 100644 --- a/docs/pages/configuration/deployments/kubectl/patches.mdx +++ b/docs/pages/configuration/deployments/kubectl/patches.mdx @@ -4,6 +4,7 @@ sidebar_label: Patches --- import ConfigPartialCommands from '../../_partials/v2beta1/deployments/kubectl/patches.mdx' +import FragmentInfoPrintConfig from '../../../_partials/tip-print-config.mdx'; Patches are a way to perform minor overrides to the configuration without having to create a separate config file. Patch functionality follows JSON Patch([RFC](https://tools.ietf.org/html/rfc6902)) semantics, as well as enhanced `path` selectors, as implemented by the [yaml-jsonpath](https://github.com/vmware-labs/yaml-jsonpath) library. diff --git a/docs/schemas/config-openapi.json b/docs/schemas/config-openapi.json index 9fcc8015c6..16eb7da56e 100755 --- a/docs/schemas/config-openapi.json +++ b/docs/schemas/config-openapi.json @@ -244,7 +244,7 @@ "properties": { "command": { "type": "string", - "description": "Command to execute to build the image. You can use ${runtime.images.my-image.image} and ${runtime.image.my-image.tag}\nto reference the image and tag that should get built." + "description": "Command to execute to build the image. You can use `${runtime.images.my-image.image}` and `${runtime.images.my-image.tag}`\nto reference the image and tag that should get built." }, "onChange": { "items": { @@ -1909,7 +1909,7 @@ }, "initialSync": { "type": "string", - "description": "InitialSync defines the initial sync strategy to use when this sync starts. Defaults to mirrorLocal", + "description": "InitialSync defines the initial sync strategy to use when this sync starts. Defaults to mirrorLocal.\nYou can completely disable this using the `initialSync: disabled` option.", "group": "initial_sync", "group_name": "Initial Sync" }, diff --git a/docs/versioned_docs/version-5.x/configuration/development/replace-pods.mdx b/docs/versioned_docs/version-5.x/configuration/development/replace-pods.mdx index ee33858993..af5a75a98c 100644 --- a/docs/versioned_docs/version-5.x/configuration/development/replace-pods.mdx +++ b/docs/versioned_docs/version-5.x/configuration/development/replace-pods.mdx @@ -179,8 +179,8 @@ It is generally **not** needed (nor recommended) to specify the `namespace` opti `replaceImage` expects a string with the new image name (inclusive tag) that should be used for the selected pod. For example: `replaceImage: my-repo/my-debug-image:1.0`. In addition, DevSpace will also replace the following things: - **registry.url/repo/name** that corresponds to a `images.*.image`, will be rewritten to `registry.url/repo/name:generated_tag` -- **${runtime.images.image-key.image}** that corresponds to a `images.*` key, will be rewritten to `registry.url/repo/name` -- **${runtime.images.image-key.tag}** that corresponds to a `images.*` key, will be rewritten to `xApsTn` +- **`${runtime.images.image-key.image}`** that corresponds to a `images.*` key, will be rewritten to `registry.url/repo/name` +- **`${runtime.images.image-key.tag}`** that corresponds to a `images.*` key, will be rewritten to `xApsTn` ### `patches` diff --git a/docs/versioned_docs/version-5.x/fragments/workflow-replace-tags.mdx b/docs/versioned_docs/version-5.x/fragments/workflow-replace-tags.mdx index 02e306d9cd..67c4d0fb56 100644 --- a/docs/versioned_docs/version-5.x/fragments/workflow-replace-tags.mdx +++ b/docs/versioned_docs/version-5.x/fragments/workflow-replace-tags.mdx @@ -8,6 +8,5 @@ Replacing or appending tags to images that are used in your deployments makes su DevSpace will replace the following things: - **registry.url/repo/name** that corresponds to a `images.*.image`, will be rewritten to `registry.url/repo/name:generated_tag` -- **${runtime.images.image-key.image}** that corresponds to a `images.*` key, will be rewritten to `registry.url/repo/name`. You can also use dependency images here with `${runtime.dependencies.dep1.images.dep-image.image}` -- **${runtime.images.image-key.tag}** that corresponds to a `images.*` key, will be rewritten to `generated_tag`. You can also use dependency images here with `${runtime.dependencies.dep1.images.dep-image.tag}` - +- **`${runtime.images.image-key.image}`** that corresponds to a `images.*` key, will be rewritten to `registry.url/repo/name`. You can also use dependency images here with `${runtime.dependencies.dep1.images.dep-image.image}` +- **`${runtime.images.image-key.tag}`** that corresponds to a `images.*` key, will be rewritten to `generated_tag`. You can also use dependency images here with `${runtime.dependencies.dep1.images.dep-image.tag}` diff --git a/docs/versioned_sidebars/version-4.x-sidebars.json b/docs/versioned_sidebars/version-4.x-sidebars.json index 9684bcd308..19e8576f12 100644 --- a/docs/versioned_sidebars/version-4.x-sidebars.json +++ b/docs/versioned_sidebars/version-4.x-sidebars.json @@ -1,8 +1,8 @@ { - "version-4.x/adminSidebar": [ + "adminSidebar": [ { "type": "doc", - "id": "version-4.x/introduction" + "id": "introduction" }, { "type": "category", @@ -10,23 +10,23 @@ "items": [ { "type": "doc", - "id": "version-4.x/getting-started/installation" + "id": "getting-started/installation" }, { "type": "doc", - "id": "version-4.x/getting-started/initialize-project" + "id": "getting-started/initialize-project" }, { "type": "doc", - "id": "version-4.x/getting-started/development" + "id": "getting-started/development" }, { "type": "doc", - "id": "version-4.x/getting-started/deployment" + "id": "getting-started/deployment" }, { "type": "doc", - "id": "version-4.x/getting-started/next-steps" + "id": "getting-started/next-steps" } ] }, @@ -36,7 +36,7 @@ "items": [ { "type": "doc", - "id": "version-4.x/configuration/reference" + "id": "configuration/reference" }, { "type": "category", @@ -44,35 +44,35 @@ "items": [ { "type": "doc", - "id": "version-4.x/configuration/images/basics" + "id": "configuration/images/basics" }, { "type": "doc", - "id": "version-4.x/configuration/images/image-tagging" + "id": "configuration/images/image-tagging" }, { "type": "doc", - "id": "version-4.x/configuration/images/dockerfile-context" + "id": "configuration/images/dockerfile-context" }, { "type": "doc", - "id": "version-4.x/configuration/images/entrypoint-cmd" + "id": "configuration/images/entrypoint-cmd" }, { "type": "doc", - "id": "version-4.x/configuration/images/append-dockerfile-instructions" + "id": "configuration/images/append-dockerfile-instructions" }, { "type": "doc", - "id": "version-4.x/configuration/images/inject-restart-helper" + "id": "configuration/images/inject-restart-helper" }, { "type": "doc", - "id": "version-4.x/configuration/images/prefer-sync-over-rebuild" + "id": "configuration/images/prefer-sync-over-rebuild" }, { "type": "doc", - "id": "version-4.x/configuration/images/pull-secrets" + "id": "configuration/images/pull-secrets" }, { "type": "category", @@ -80,19 +80,19 @@ "items": [ { "type": "doc", - "id": "version-4.x/configuration/images/docker" + "id": "configuration/images/docker" }, { "type": "doc", - "id": "version-4.x/configuration/images/kaniko" + "id": "configuration/images/kaniko" }, { "type": "doc", - "id": "version-4.x/configuration/images/custom" + "id": "configuration/images/custom" }, { "type": "doc", - "id": "version-4.x/configuration/images/disabled" + "id": "configuration/images/disabled" } ] } @@ -104,19 +104,19 @@ "items": [ { "type": "doc", - "id": "version-4.x/configuration/deployments/basics" + "id": "configuration/deployments/basics" }, { "type": "doc", - "id": "version-4.x/configuration/deployments/helm-charts" + "id": "configuration/deployments/helm-charts" }, { "type": "doc", - "id": "version-4.x/configuration/deployments/kubernetes-manifests" + "id": "configuration/deployments/kubernetes-manifests" }, { "type": "doc", - "id": "version-4.x/configuration/deployments/kustomizations" + "id": "configuration/deployments/kustomizations" } ] }, @@ -126,35 +126,35 @@ "items": [ { "type": "doc", - "id": "version-4.x/configuration/development/basics" + "id": "configuration/development/basics" }, { "type": "doc", - "id": "version-4.x/configuration/development/open-links" + "id": "configuration/development/open-links" }, { "type": "doc", - "id": "version-4.x/configuration/development/port-forwarding" + "id": "configuration/development/port-forwarding" }, { "type": "doc", - "id": "version-4.x/configuration/development/reverse-port-forwarding" + "id": "configuration/development/reverse-port-forwarding" }, { "type": "doc", - "id": "version-4.x/configuration/development/file-synchronization" + "id": "configuration/development/file-synchronization" }, { "type": "doc", - "id": "version-4.x/configuration/development/auto-reloading" + "id": "configuration/development/auto-reloading" }, { "type": "doc", - "id": "version-4.x/configuration/development/log-streaming" + "id": "configuration/development/log-streaming" }, { "type": "doc", - "id": "version-4.x/configuration/development/interactive-mode" + "id": "configuration/development/interactive-mode" } ] }, @@ -164,15 +164,15 @@ "items": [ { "type": "doc", - "id": "version-4.x/configuration/dependencies/basics" + "id": "configuration/dependencies/basics" }, { "type": "doc", - "id": "version-4.x/configuration/dependencies/git-repository" + "id": "configuration/dependencies/git-repository" }, { "type": "doc", - "id": "version-4.x/configuration/dependencies/local-folder" + "id": "configuration/dependencies/local-folder" } ] }, @@ -182,19 +182,19 @@ "items": [ { "type": "doc", - "id": "version-4.x/configuration/variables/basics" + "id": "configuration/variables/basics" }, { "type": "doc", - "id": "version-4.x/configuration/variables/source-env" + "id": "configuration/variables/source-env" }, { "type": "doc", - "id": "version-4.x/configuration/variables/source-input" + "id": "configuration/variables/source-input" }, { "type": "doc", - "id": "version-4.x/configuration/variables/source-none" + "id": "configuration/variables/source-none" } ] }, @@ -204,29 +204,29 @@ "items": [ { "type": "doc", - "id": "version-4.x/configuration/profiles/basics" + "id": "configuration/profiles/basics" }, { "type": "doc", - "id": "version-4.x/configuration/profiles/patches" + "id": "configuration/profiles/patches" }, { "type": "doc", - "id": "version-4.x/configuration/profiles/replace" + "id": "configuration/profiles/replace" } ] }, { "type": "doc", - "id": "version-4.x/configuration/commands/basics" + "id": "configuration/commands/basics" }, { "type": "doc", - "id": "version-4.x/configuration/hooks/basics" + "id": "configuration/hooks/basics" }, { "type": "doc", - "id": "version-4.x/configuration/env-file" + "id": "configuration/env-file" } ] }, @@ -236,43 +236,43 @@ "items": [ { "type": "doc", - "id": "version-4.x/guides/basics" + "id": "guides/basics" }, { "type": "doc", - "id": "version-4.x/guides/localhost-ui" + "id": "guides/localhost-ui" }, { "type": "doc", - "id": "version-4.x/guides/networking-domains" + "id": "guides/networking-domains" }, { "type": "doc", - "id": "version-4.x/guides/file-synchronization" + "id": "guides/file-synchronization" }, { "type": "doc", - "id": "version-4.x/guides/interactive-mode" + "id": "guides/interactive-mode" }, { "type": "doc", - "id": "version-4.x/guides/ci-cd-integration" + "id": "guides/ci-cd-integration" }, { "type": "doc", - "id": "version-4.x/guides/dev-staging-production" + "id": "guides/dev-staging-production" }, { "type": "doc", - "id": "version-4.x/guides/image-building" + "id": "guides/image-building" }, { "type": "doc", - "id": "version-4.x/guides/remote-debugging" + "id": "guides/remote-debugging" }, { "type": "doc", - "id": "version-4.x/guides/community-projects" + "id": "guides/community-projects" } ] }, @@ -328,65 +328,65 @@ "items": [ { "type": "doc", - "id": "version-4.x/commands/devspace_add_deployment" + "id": "commands/devspace_add_deployment" }, { "type": "doc", - "id": "version-4.x/commands/devspace_add_image" + "id": "commands/devspace_add_image" }, { "type": "doc", - "id": "version-4.x/commands/devspace_add_port" + "id": "commands/devspace_add_port" }, { "type": "doc", - "id": "version-4.x/commands/devspace_add_provider" + "id": "commands/devspace_add_provider" }, { "type": "doc", - "id": "version-4.x/commands/devspace_add_sync" + "id": "commands/devspace_add_sync" } ] }, { "type": "doc", - "id": "version-4.x/commands/devspace_analyze" + "id": "commands/devspace_analyze" }, { "type": "doc", - "id": "version-4.x/commands/devspace_attach" + "id": "commands/devspace_attach" }, { "type": "doc", - "id": "version-4.x/commands/devspace_build" + "id": "commands/devspace_build" }, { "type": "doc", - "id": "version-4.x/commands/devspace_cleanup_images" + "id": "commands/devspace_cleanup_images" }, { "type": "doc", - "id": "version-4.x/commands/devspace_connect_cluster" + "id": "commands/devspace_connect_cluster" }, { "type": "doc", - "id": "version-4.x/commands/devspace_create_space" + "id": "commands/devspace_create_space" }, { "type": "doc", - "id": "version-4.x/commands/devspace_deploy" + "id": "commands/devspace_deploy" }, { "type": "doc", - "id": "version-4.x/commands/devspace_dev" + "id": "commands/devspace_dev" }, { "type": "doc", - "id": "version-4.x/commands/devspace_enter" + "id": "commands/devspace_enter" }, { "type": "doc", - "id": "version-4.x/commands/devspace_init" + "id": "commands/devspace_init" }, { "type": "category", @@ -394,69 +394,69 @@ "items": [ { "type": "doc", - "id": "version-4.x/commands/devspace_list_clusters" + "id": "commands/devspace_list_clusters" }, { "type": "doc", - "id": "version-4.x/commands/devspace_list_commands" + "id": "commands/devspace_list_commands" }, { "type": "doc", - "id": "version-4.x/commands/devspace_list_contexts" + "id": "commands/devspace_list_contexts" }, { "type": "doc", - "id": "version-4.x/commands/devspace_list_deployments" + "id": "commands/devspace_list_deployments" }, { "type": "doc", - "id": "version-4.x/commands/devspace_list_namespaces" + "id": "commands/devspace_list_namespaces" }, { "type": "doc", - "id": "version-4.x/commands/devspace_list_ports" + "id": "commands/devspace_list_ports" }, { "type": "doc", - "id": "version-4.x/commands/devspace_list_profiles" + "id": "commands/devspace_list_profiles" }, { "type": "doc", - "id": "version-4.x/commands/devspace_list_providers" + "id": "commands/devspace_list_providers" }, { "type": "doc", - "id": "version-4.x/commands/devspace_list_spaces" + "id": "commands/devspace_list_spaces" }, { "type": "doc", - "id": "version-4.x/commands/devspace_list_sync" + "id": "commands/devspace_list_sync" }, { "type": "doc", - "id": "version-4.x/commands/devspace_list_vars" + "id": "commands/devspace_list_vars" } ] }, { "type": "doc", - "id": "version-4.x/commands/devspace_login" + "id": "commands/devspace_login" }, { "type": "doc", - "id": "version-4.x/commands/devspace_logs" + "id": "commands/devspace_logs" }, { "type": "doc", - "id": "version-4.x/commands/devspace_open" + "id": "commands/devspace_open" }, { "type": "doc", - "id": "version-4.x/commands/devspace_print" + "id": "commands/devspace_print" }, { "type": "doc", - "id": "version-4.x/commands/devspace_purge" + "id": "commands/devspace_purge" }, { "type": "category", @@ -464,41 +464,41 @@ "items": [ { "type": "doc", - "id": "version-4.x/commands/devspace_remove_cluster" + "id": "commands/devspace_remove_cluster" }, { "type": "doc", - "id": "version-4.x/commands/devspace_remove_context" + "id": "commands/devspace_remove_context" }, { "type": "doc", - "id": "version-4.x/commands/devspace_remove_deployment" + "id": "commands/devspace_remove_deployment" }, { "type": "doc", - "id": "version-4.x/commands/devspace_remove_image" + "id": "commands/devspace_remove_image" }, { "type": "doc", - "id": "version-4.x/commands/devspace_remove_port" + "id": "commands/devspace_remove_port" }, { "type": "doc", - "id": "version-4.x/commands/devspace_remove_provider" + "id": "commands/devspace_remove_provider" }, { "type": "doc", - "id": "version-4.x/commands/devspace_remove_space" + "id": "commands/devspace_remove_space" }, { "type": "doc", - "id": "version-4.x/commands/devspace_remove_sync" + "id": "commands/devspace_remove_sync" } ] }, { "type": "doc", - "id": "version-4.x/commands/devspace_render" + "id": "commands/devspace_render" }, { "type": "category", @@ -506,21 +506,21 @@ "items": [ { "type": "doc", - "id": "version-4.x/commands/devspace_reset_dependencies" + "id": "commands/devspace_reset_dependencies" }, { "type": "doc", - "id": "version-4.x/commands/devspace_reset_key" + "id": "commands/devspace_reset_key" }, { "type": "doc", - "id": "version-4.x/commands/devspace_reset_vars" + "id": "commands/devspace_reset_vars" } ] }, { "type": "doc", - "id": "version-4.x/commands/devspace_run" + "id": "commands/devspace_run" }, { "type": "category", @@ -528,29 +528,29 @@ "items": [ { "type": "doc", - "id": "version-4.x/commands/devspace_set_analytics" + "id": "commands/devspace_set_analytics" }, { "type": "doc", - "id": "version-4.x/commands/devspace_set_encryptionkey" + "id": "commands/devspace_set_encryptionkey" }, { "type": "doc", - "id": "version-4.x/commands/devspace_set_var" + "id": "commands/devspace_set_var" } ] }, { "type": "doc", - "id": "version-4.x/commands/devspace_status_sync" + "id": "commands/devspace_status_sync" }, { "type": "doc", - "id": "version-4.x/commands/devspace_sync" + "id": "commands/devspace_sync" }, { "type": "doc", - "id": "version-4.x/commands/devspace_ui" + "id": "commands/devspace_ui" }, { "type": "category", @@ -558,17 +558,17 @@ "items": [ { "type": "doc", - "id": "version-4.x/commands/devspace_update_config" + "id": "commands/devspace_update_config" }, { "type": "doc", - "id": "version-4.x/commands/devspace_update_dependencies" + "id": "commands/devspace_update_dependencies" } ] }, { "type": "doc", - "id": "version-4.x/commands/devspace_upgrade" + "id": "commands/devspace_upgrade" }, { "type": "category", @@ -576,23 +576,23 @@ "items": [ { "type": "doc", - "id": "version-4.x/commands/devspace_use_context" + "id": "commands/devspace_use_context" }, { "type": "doc", - "id": "version-4.x/commands/devspace_use_namespace" + "id": "commands/devspace_use_namespace" }, { "type": "doc", - "id": "version-4.x/commands/devspace_use_profile" + "id": "commands/devspace_use_profile" }, { "type": "doc", - "id": "version-4.x/commands/devspace_use_provider" + "id": "commands/devspace_use_provider" }, { "type": "doc", - "id": "version-4.x/commands/devspace_use_space" + "id": "commands/devspace_use_space" } ] } diff --git a/docs/versioned_sidebars/version-5.x-sidebars.json b/docs/versioned_sidebars/version-5.x-sidebars.json index 615cd88d83..1a70aec392 100644 --- a/docs/versioned_sidebars/version-5.x-sidebars.json +++ b/docs/versioned_sidebars/version-5.x-sidebars.json @@ -1,8 +1,8 @@ { - "version-5.x/adminSidebar": [ + "adminSidebar": [ { "type": "doc", - "id": "version-5.x/introduction" + "id": "introduction" }, { "collapsed": false, @@ -11,7 +11,7 @@ "items": [ { "type": "doc", - "id": "version-5.x/quickstart" + "id": "quickstart" }, { "collapsed": true, @@ -20,27 +20,27 @@ "items": [ { "type": "doc", - "id": "version-5.x/getting-started/installation" + "id": "getting-started/installation" }, { "type": "doc", - "id": "version-5.x/getting-started/initialize-project" + "id": "getting-started/initialize-project" }, { "type": "doc", - "id": "version-5.x/getting-started/development" + "id": "getting-started/development" }, { "type": "doc", - "id": "version-5.x/getting-started/deployment" + "id": "getting-started/deployment" }, { "type": "doc", - "id": "version-5.x/getting-started/cleanup" + "id": "getting-started/cleanup" }, { "type": "doc", - "id": "version-5.x/getting-started/next-steps" + "id": "getting-started/next-steps" } ] } @@ -53,7 +53,7 @@ "items": [ { "type": "doc", - "id": "version-5.x/configuration/reference" + "id": "configuration/reference" }, { "collapsed": true, @@ -62,35 +62,35 @@ "items": [ { "type": "doc", - "id": "version-5.x/configuration/images/basics" + "id": "configuration/images/basics" }, { "type": "doc", - "id": "version-5.x/configuration/images/image-tagging" + "id": "configuration/images/image-tagging" }, { "type": "doc", - "id": "version-5.x/configuration/images/dockerfile-context" + "id": "configuration/images/dockerfile-context" }, { "type": "doc", - "id": "version-5.x/configuration/images/entrypoint-cmd" + "id": "configuration/images/entrypoint-cmd" }, { "type": "doc", - "id": "version-5.x/configuration/images/append-dockerfile-instructions" + "id": "configuration/images/append-dockerfile-instructions" }, { "type": "doc", - "id": "version-5.x/configuration/images/inject-restart-helper" + "id": "configuration/images/inject-restart-helper" }, { "type": "doc", - "id": "version-5.x/configuration/images/rebuild-strategy" + "id": "configuration/images/rebuild-strategy" }, { "type": "doc", - "id": "version-5.x/configuration/images/pull-secrets" + "id": "configuration/images/pull-secrets" }, { "collapsed": true, @@ -99,23 +99,23 @@ "items": [ { "type": "doc", - "id": "version-5.x/configuration/images/docker" + "id": "configuration/images/docker" }, { "type": "doc", - "id": "version-5.x/configuration/images/buildkit" + "id": "configuration/images/buildkit" }, { "type": "doc", - "id": "version-5.x/configuration/images/kaniko" + "id": "configuration/images/kaniko" }, { "type": "doc", - "id": "version-5.x/configuration/images/custom" + "id": "configuration/images/custom" }, { "type": "doc", - "id": "version-5.x/configuration/images/disabled" + "id": "configuration/images/disabled" } ] } @@ -128,19 +128,19 @@ "items": [ { "type": "doc", - "id": "version-5.x/configuration/deployments/basics" + "id": "configuration/deployments/basics" }, { "type": "doc", - "id": "version-5.x/configuration/deployments/helm-charts" + "id": "configuration/deployments/helm-charts" }, { "type": "doc", - "id": "version-5.x/configuration/deployments/kubernetes-manifests" + "id": "configuration/deployments/kubernetes-manifests" }, { "type": "doc", - "id": "version-5.x/configuration/deployments/kustomizations" + "id": "configuration/deployments/kustomizations" }, { "type": "link", @@ -156,39 +156,39 @@ "items": [ { "type": "doc", - "id": "version-5.x/configuration/development/basics" + "id": "configuration/development/basics" }, { "type": "doc", - "id": "version-5.x/configuration/development/port-forwarding" + "id": "configuration/development/port-forwarding" }, { "type": "doc", - "id": "version-5.x/configuration/development/reverse-port-forwarding" + "id": "configuration/development/reverse-port-forwarding" }, { "type": "doc", - "id": "version-5.x/configuration/development/open-links" + "id": "configuration/development/open-links" }, { "type": "doc", - "id": "version-5.x/configuration/development/file-synchronization" + "id": "configuration/development/file-synchronization" }, { "type": "doc", - "id": "version-5.x/configuration/development/terminal" + "id": "configuration/development/terminal" }, { "type": "doc", - "id": "version-5.x/configuration/development/log-streaming" + "id": "configuration/development/log-streaming" }, { "type": "doc", - "id": "version-5.x/configuration/development/replace-pods" + "id": "configuration/development/replace-pods" }, { "type": "doc", - "id": "version-5.x/configuration/development/auto-reloading" + "id": "configuration/development/auto-reloading" } ] }, @@ -199,15 +199,15 @@ "items": [ { "type": "doc", - "id": "version-5.x/configuration/dependencies/basics" + "id": "configuration/dependencies/basics" }, { "type": "doc", - "id": "version-5.x/configuration/dependencies/git-repository" + "id": "configuration/dependencies/git-repository" }, { "type": "doc", - "id": "version-5.x/configuration/dependencies/local-folder" + "id": "configuration/dependencies/local-folder" } ] }, @@ -218,31 +218,31 @@ "items": [ { "type": "doc", - "id": "version-5.x/configuration/variables/basics" + "id": "configuration/variables/basics" }, { "type": "doc", - "id": "version-5.x/configuration/variables/source-env" + "id": "configuration/variables/source-env" }, { "type": "doc", - "id": "version-5.x/configuration/variables/source-input" + "id": "configuration/variables/source-input" }, { "type": "doc", - "id": "version-5.x/configuration/variables/source-command" + "id": "configuration/variables/source-command" }, { "type": "doc", - "id": "version-5.x/configuration/variables/source-none" + "id": "configuration/variables/source-none" }, { "type": "doc", - "id": "version-5.x/configuration/variables/predefined-variables" + "id": "configuration/variables/predefined-variables" }, { "type": "doc", - "id": "version-5.x/configuration/variables/runtime-variables" + "id": "configuration/variables/runtime-variables" } ] }, @@ -253,53 +253,53 @@ "items": [ { "type": "doc", - "id": "version-5.x/configuration/profiles/basics" + "id": "configuration/profiles/basics" }, { "type": "doc", - "id": "version-5.x/configuration/profiles/replace" + "id": "configuration/profiles/replace" }, { "type": "doc", - "id": "version-5.x/configuration/profiles/merge" + "id": "configuration/profiles/merge" }, { "type": "doc", - "id": "version-5.x/configuration/profiles/patches" + "id": "configuration/profiles/patches" }, { "type": "doc", - "id": "version-5.x/configuration/profiles/parents" + "id": "configuration/profiles/parents" }, { "type": "doc", - "id": "version-5.x/configuration/profiles/activation" + "id": "configuration/profiles/activation" } ] }, { "type": "doc", - "id": "version-5.x/configuration/pullSecrets/basics" + "id": "configuration/pullSecrets/basics" }, { "type": "doc", - "id": "version-5.x/configuration/commands/basics" + "id": "configuration/commands/basics" }, { "type": "doc", - "id": "version-5.x/configuration/hooks/basics" + "id": "configuration/hooks/basics" }, { "type": "doc", - "id": "version-5.x/configuration/require/basics" + "id": "configuration/require/basics" }, { "type": "doc", - "id": "version-5.x/configuration/expressions" + "id": "configuration/expressions" }, { "type": "doc", - "id": "version-5.x/configuration/env-file" + "id": "configuration/env-file" } ] }, @@ -310,43 +310,43 @@ "items": [ { "type": "doc", - "id": "version-5.x/guides/basics" + "id": "guides/basics" }, { "type": "doc", - "id": "version-5.x/guides/localhost-ui" + "id": "guides/localhost-ui" }, { "type": "doc", - "id": "version-5.x/guides/networking-domains" + "id": "guides/networking-domains" }, { "type": "doc", - "id": "version-5.x/guides/file-synchronization" + "id": "guides/file-synchronization" }, { "type": "doc", - "id": "version-5.x/guides/ci-cd-integration" + "id": "guides/ci-cd-integration" }, { "type": "doc", - "id": "version-5.x/guides/dev-staging-production" + "id": "guides/dev-staging-production" }, { "type": "doc", - "id": "version-5.x/guides/image-building" + "id": "guides/image-building" }, { "type": "doc", - "id": "version-5.x/guides/plugins" + "id": "guides/plugins" }, { "type": "doc", - "id": "version-5.x/guides/remote-debugging" + "id": "guides/remote-debugging" }, { "type": "doc", - "id": "version-5.x/guides/community-projects" + "id": "guides/community-projects" } ] }, @@ -406,41 +406,41 @@ "items": [ { "type": "doc", - "id": "version-5.x/commands/devspace_add_plugin" + "id": "commands/devspace_add_plugin" } ] }, { "type": "doc", - "id": "version-5.x/commands/devspace_analyze" + "id": "commands/devspace_analyze" }, { "type": "doc", - "id": "version-5.x/commands/devspace_attach" + "id": "commands/devspace_attach" }, { "type": "doc", - "id": "version-5.x/commands/devspace_build" + "id": "commands/devspace_build" }, { "type": "doc", - "id": "version-5.x/commands/devspace_cleanup_images" + "id": "commands/devspace_cleanup_images" }, { "type": "doc", - "id": "version-5.x/commands/devspace_deploy" + "id": "commands/devspace_deploy" }, { "type": "doc", - "id": "version-5.x/commands/devspace_dev" + "id": "commands/devspace_dev" }, { "type": "doc", - "id": "version-5.x/commands/devspace_enter" + "id": "commands/devspace_enter" }, { "type": "doc", - "id": "version-5.x/commands/devspace_init" + "id": "commands/devspace_init" }, { "collapsed": true, @@ -449,57 +449,57 @@ "items": [ { "type": "doc", - "id": "version-5.x/commands/devspace_list_commands" + "id": "commands/devspace_list_commands" }, { "type": "doc", - "id": "version-5.x/commands/devspace_list_contexts" + "id": "commands/devspace_list_contexts" }, { "type": "doc", - "id": "version-5.x/commands/devspace_list_deployments" + "id": "commands/devspace_list_deployments" }, { "type": "doc", - "id": "version-5.x/commands/devspace_list_namespaces" + "id": "commands/devspace_list_namespaces" }, { "type": "doc", - "id": "version-5.x/commands/devspace_list_plugins" + "id": "commands/devspace_list_plugins" }, { "type": "doc", - "id": "version-5.x/commands/devspace_list_ports" + "id": "commands/devspace_list_ports" }, { "type": "doc", - "id": "version-5.x/commands/devspace_list_profiles" + "id": "commands/devspace_list_profiles" }, { "type": "doc", - "id": "version-5.x/commands/devspace_list_sync" + "id": "commands/devspace_list_sync" }, { "type": "doc", - "id": "version-5.x/commands/devspace_list_vars" + "id": "commands/devspace_list_vars" } ] }, { "type": "doc", - "id": "version-5.x/commands/devspace_logs" + "id": "commands/devspace_logs" }, { "type": "doc", - "id": "version-5.x/commands/devspace_open" + "id": "commands/devspace_open" }, { "type": "doc", - "id": "version-5.x/commands/devspace_print" + "id": "commands/devspace_print" }, { "type": "doc", - "id": "version-5.x/commands/devspace_purge" + "id": "commands/devspace_purge" }, { "collapsed": true, @@ -508,17 +508,17 @@ "items": [ { "type": "doc", - "id": "version-5.x/commands/devspace_remove_context" + "id": "commands/devspace_remove_context" }, { "type": "doc", - "id": "version-5.x/commands/devspace_remove_plugin" + "id": "commands/devspace_remove_plugin" } ] }, { "type": "doc", - "id": "version-5.x/commands/devspace_render" + "id": "commands/devspace_render" }, { "collapsed": true, @@ -527,17 +527,17 @@ "items": [ { "type": "doc", - "id": "version-5.x/commands/devspace_reset_dependencies" + "id": "commands/devspace_reset_dependencies" }, { "type": "doc", - "id": "version-5.x/commands/devspace_reset_vars" + "id": "commands/devspace_reset_vars" } ] }, { "type": "doc", - "id": "version-5.x/commands/devspace_run" + "id": "commands/devspace_run" }, { "collapsed": true, @@ -546,17 +546,17 @@ "items": [ { "type": "doc", - "id": "version-5.x/commands/devspace_set_var" + "id": "commands/devspace_set_var" } ] }, { "type": "doc", - "id": "version-5.x/commands/devspace_sync" + "id": "commands/devspace_sync" }, { "type": "doc", - "id": "version-5.x/commands/devspace_ui" + "id": "commands/devspace_ui" }, { "collapsed": true, @@ -565,17 +565,17 @@ "items": [ { "type": "doc", - "id": "version-5.x/commands/devspace_update_plugin" + "id": "commands/devspace_update_plugin" }, { "type": "doc", - "id": "version-5.x/commands/devspace_update_dependencies" + "id": "commands/devspace_update_dependencies" } ] }, { "type": "doc", - "id": "version-5.x/commands/devspace_upgrade" + "id": "commands/devspace_upgrade" }, { "collapsed": true, @@ -584,15 +584,15 @@ "items": [ { "type": "doc", - "id": "version-5.x/commands/devspace_use_context" + "id": "commands/devspace_use_context" }, { "type": "doc", - "id": "version-5.x/commands/devspace_use_namespace" + "id": "commands/devspace_use_namespace" }, { "type": "doc", - "id": "version-5.x/commands/devspace_use_profile" + "id": "commands/devspace_use_profile" } ] } diff --git a/docs/yarn.lock b/docs/yarn.lock index 65ea872cb7..f9f2a23b63 100644 --- a/docs/yarn.lock +++ b/docs/yarn.lock @@ -238,7 +238,7 @@ "@jridgewell/trace-mapping" "^0.3.28" jsesc "^3.0.2" -"@babel/helper-annotate-as-pure@^7.18.6", "@babel/helper-annotate-as-pure@^7.22.5": +"@babel/helper-annotate-as-pure@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== @@ -338,7 +338,7 @@ "@babel/traverse" "^7.28.5" "@babel/types" "^7.28.5" -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.21.4", "@babel/helper-module-imports@^7.22.5": +"@babel/helper-module-imports@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c" integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== @@ -1294,7 +1294,7 @@ "@babel/parser" "^7.28.6" "@babel/types" "^7.28.6" -"@babel/traverse@^7.12.9", "@babel/traverse@^7.22.5", "@babel/traverse@^7.4.5": +"@babel/traverse@^7.12.9", "@babel/traverse@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.5.tgz#44bd276690db6f4940fdb84e1cb4abd2f729ccd1" integrity sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ== @@ -1340,11 +1340,6 @@ "@babel/helper-string-parser" "^7.27.1" "@babel/helper-validator-identifier" "^7.28.5" -"@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== - "@colors/colors@1.5.0": version "1.5.0" resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" @@ -2238,27 +2233,17 @@ utility-types "^3.10.0" webpack "^5.88.1" -"@emotion/is-prop-valid@^1.1.0": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz#23116cf1ed18bfeac910ec6436561ecb1a3885cc" - integrity sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw== +"@emotion/is-prop-valid@1.4.0": + version "1.4.0" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.4.0.tgz#e9ad47adff0b5c94c72db3669ce46de33edf28c0" + integrity sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw== dependencies: - "@emotion/memoize" "^0.8.1" + "@emotion/memoize" "^0.9.0" -"@emotion/memoize@^0.8.1": - version "0.8.1" - resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17" - integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== - -"@emotion/stylis@^0.8.4": - version "0.8.5" - resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04" - integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ== - -"@emotion/unitless@^0.7.4": - version "0.7.5" - resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" - integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== +"@emotion/memoize@^0.9.0": + version "0.9.0" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.9.0.tgz#745969d649977776b43fc7648c556aaa462b4102" + integrity sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ== "@exodus/schemasafe@^1.0.0-rc.2": version "1.0.1" @@ -2613,6 +2598,11 @@ resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.4.0.tgz#45814aa329f30e4fe0ba49426f49dfccdd066426" integrity sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg== +"@nodable/entities@^2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@nodable/entities/-/entities-2.1.0.tgz#f543e5c6446720d4cf9e498a83019dd159973bc2" + integrity sha512-nyT7T3nbMyBI/lvr6L5TyWbFJAI9FTgVRakNoBqCD+PmID8DzFrrNdLLtHMwMszOtqZa8PAOV24ZqDnQrhQINA== + "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" @@ -2634,6 +2624,95 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" +"@parcel/watcher-android-arm64@2.5.6": + version "2.5.6" + resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz#5f32e0dba356f4ac9a11068d2a5c134ca3ba6564" + integrity sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A== + +"@parcel/watcher-darwin-arm64@2.5.6": + version "2.5.6" + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz#88d3e720b59b1eceffce98dac46d7c40e8be5e8e" + integrity sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA== + +"@parcel/watcher-darwin-x64@2.5.6": + version "2.5.6" + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz#bf05d76a78bc15974f15ec3671848698b0838063" + integrity sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg== + +"@parcel/watcher-freebsd-x64@2.5.6": + version "2.5.6" + resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz#8bc26e9848e7303ac82922a5ae1b1ef1bdb48a53" + integrity sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng== + +"@parcel/watcher-linux-arm-glibc@2.5.6": + version "2.5.6" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz#1328fee1deb0c2d7865079ef53a2ba4cc2f8b40a" + integrity sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ== + +"@parcel/watcher-linux-arm-musl@2.5.6": + version "2.5.6" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz#bad0f45cb3e2157746db8b9d22db6a125711f152" + integrity sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg== + +"@parcel/watcher-linux-arm64-glibc@2.5.6": + version "2.5.6" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz#b75913fbd501d9523c5f35d420957bf7d0204809" + integrity sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA== + +"@parcel/watcher-linux-arm64-musl@2.5.6": + version "2.5.6" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz#da5621a6a576070c8c0de60dea8b46dc9c3827d4" + integrity sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA== + +"@parcel/watcher-linux-x64-glibc@2.5.6": + version "2.5.6" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz#ce437accdc4b30f93a090b4a221fd95cd9b89639" + integrity sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ== + +"@parcel/watcher-linux-x64-musl@2.5.6": + version "2.5.6" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz#02400c54b4a67efcc7e2327b249711920ac969e2" + integrity sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg== + +"@parcel/watcher-win32-arm64@2.5.6": + version "2.5.6" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz#caae3d3c7583ca0a7171e6bd142c34d20ea1691e" + integrity sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q== + +"@parcel/watcher-win32-ia32@2.5.6": + version "2.5.6" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz#9ac922550896dfe47bfc5ae3be4f1bcaf8155d6d" + integrity sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g== + +"@parcel/watcher-win32-x64@2.5.6": + version "2.5.6" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz#73fdafba2e21c448f0e456bbe13178d8fe11739d" + integrity sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw== + +"@parcel/watcher@^2.4.1": + version "2.5.6" + resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.5.6.tgz#3f932828c894f06d0ad9cfefade1756ecc6ef1f1" + integrity sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ== + dependencies: + detect-libc "^2.0.3" + is-glob "^4.0.3" + node-addon-api "^7.0.0" + picomatch "^4.0.3" + optionalDependencies: + "@parcel/watcher-android-arm64" "2.5.6" + "@parcel/watcher-darwin-arm64" "2.5.6" + "@parcel/watcher-darwin-x64" "2.5.6" + "@parcel/watcher-freebsd-x64" "2.5.6" + "@parcel/watcher-linux-arm-glibc" "2.5.6" + "@parcel/watcher-linux-arm-musl" "2.5.6" + "@parcel/watcher-linux-arm64-glibc" "2.5.6" + "@parcel/watcher-linux-arm64-musl" "2.5.6" + "@parcel/watcher-linux-x64-glibc" "2.5.6" + "@parcel/watcher-linux-x64-musl" "2.5.6" + "@parcel/watcher-win32-arm64" "2.5.6" + "@parcel/watcher-win32-ia32" "2.5.6" + "@parcel/watcher-win32-x64" "2.5.6" + "@peculiar/asn1-cms@^2.6.0", "@peculiar/asn1-cms@^2.6.1": version "2.6.1" resolved "https://registry.yarnpkg.com/@peculiar/asn1-cms/-/asn1-cms-2.6.1.tgz#cb5445c1bad9197d176073bf142a5c035b460640" @@ -2783,6 +2862,16 @@ resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.29.tgz#5a40109a1ab5f84d6fd8fc928b19f367cbe7e7b1" integrity sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww== +"@redocly/ajv@8.11.2": + version "8.11.2" + resolved "https://registry.yarnpkg.com/@redocly/ajv/-/ajv-8.11.2.tgz#46e1bf321ec0ac1e0fd31dea41a3d1fcbdcda0b5" + integrity sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js-replace "^1.0.1" + "@redocly/ajv@^8.11.0": version "8.11.0" resolved "https://registry.yarnpkg.com/@redocly/ajv/-/ajv-8.11.0.tgz#2fad322888dc0113af026e08fceb3e71aae495ae" @@ -2793,14 +2882,25 @@ require-from-string "^2.0.2" uri-js "^4.2.2" -"@redocly/openapi-core@1.0.0-beta.123": - version "1.0.0-beta.123" - resolved "https://registry.yarnpkg.com/@redocly/openapi-core/-/openapi-core-1.0.0-beta.123.tgz#0c29ae9fabe5f143f571caf608a7d025f41125db" - integrity sha512-W6MbUWpb/VaV+Kf0c3jmMIJw3WwwF7iK5nAfcOS+ZwrlbxtIl37+1hEydFlJ209vCR9HL12PaMwdh2Vpihj6Jw== +"@redocly/config@0.22.0": + version "0.22.0" + resolved "https://registry.yarnpkg.com/@redocly/config/-/config-0.22.0.tgz#b2454f472f9d2b217d56f82e4f28d346901f3242" + integrity sha512-gAy93Ddo01Z3bHuVdPWfCwzgfaYgMdaZPcfL7JZ7hWJoK9V0lXDbigTWkhiPFAaLWzbOJ+kbUQG1+XwIm0KRGQ== + +"@redocly/config@^0.6.0": + version "0.6.3" + resolved "https://registry.yarnpkg.com/@redocly/config/-/config-0.6.3.tgz#0dab6278721abd5aae6b375deee97665005b0472" + integrity sha512-hGWJgCsXRw0Ow4rplqRlUQifZvoSwZipkYnt11e3SeH1Eb23VUIDBcRuaQOUqy1wn0eevXkU2GzzQ8fbKdQ7Mg== + +"@redocly/openapi-core@1.16.0": + version "1.16.0" + resolved "https://registry.yarnpkg.com/@redocly/openapi-core/-/openapi-core-1.16.0.tgz#95afcf822890af3fe8f1bde97018370b5cadb8ca" + integrity sha512-z06h+svyqbUcdAaePq8LPSwTPlm6Ig7j2VlL8skPBYnJvyaQ2IN7x/JkOvRL4ta+wcOCBdAex5JWnZbKaNktJg== dependencies: "@redocly/ajv" "^8.11.0" - "@types/node" "^14.11.8" + "@redocly/config" "^0.6.0" colorette "^1.2.0" + https-proxy-agent "^7.0.4" js-levenshtein "^1.1.6" js-yaml "^4.1.0" lodash.isequal "^4.5.0" @@ -2809,20 +2909,19 @@ pluralize "^8.0.0" yaml-ast-parser "0.0.43" -"@redocly/openapi-core@^1.0.0-beta.104": - version "1.0.0-beta.128" - resolved "https://registry.yarnpkg.com/@redocly/openapi-core/-/openapi-core-1.0.0-beta.128.tgz#097092d3cf0841c83bd7e12ff2091d7955b3b7d7" - integrity sha512-3tubjnSOuC/1QQ8NnOFMTudA4pwbWnVJXB64JYNgiE99cTQS+90wehvQiV71XHQMC9/+rPvt4Ft7GXw75hFoNQ== - dependencies: - "@redocly/ajv" "^8.11.0" - "@types/node" "^14.11.8" - colorette "^1.2.0" - js-levenshtein "^1.1.6" - js-yaml "^4.1.0" - lodash.isequal "^4.5.0" - minimatch "^5.0.1" - node-fetch "^2.6.1" - pluralize "^8.0.0" +"@redocly/openapi-core@^1.4.0": + version "1.34.12" + resolved "https://registry.yarnpkg.com/@redocly/openapi-core/-/openapi-core-1.34.12.tgz#b4ba43fb67fdc00fcfaf2d61a69a3b32dc467b51" + integrity sha512-b32XWsz6enN6K4bx8xWsqUaXTJR/DnYT3lL1CzDYzIYKw243NNlz6fexmr71q/U4HrEcMoJGBvwAfcxOb8ymQw== + dependencies: + "@redocly/ajv" "8.11.2" + "@redocly/config" "0.22.0" + colorette "1.4.0" + https-proxy-agent "7.0.6" + js-levenshtein "1.1.6" + js-yaml "4.1.1" + minimatch "5.1.9" + pluralize "8.0.0" yaml-ast-parser "0.0.43" "@saucelabs/theme-github-codeblock@^0.2.3": @@ -3019,23 +3118,6 @@ 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.8" resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.8.tgz#cef723a5d0a90990313faec2d1e22aee5eecb317" @@ -3230,11 +3312,6 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe" integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg== -"@types/node@^14.11.8": - version "14.18.51" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.51.tgz#cb90935b89c641201c3d07a595c3e22d1cfaa417" - integrity sha512-P9bsdGFPpVtofEKlhWMVS2qqx1A/rt9QBfihWlklfHHpUpjtYse5AzFz6j4DWrARLYh6gRnw9+5+DJcrq3KvBA== - "@types/node@^17.0.5": version "17.0.45" resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" @@ -3373,6 +3450,11 @@ dependencies: "@types/node" "*" +"@types/trusted-types@^2.0.7": + 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@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3": version "2.0.6" resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" @@ -3576,6 +3658,11 @@ address@^1.0.1: resolved "https://registry.yarnpkg.com/address/-/address-1.2.2.tgz#2b5248dac5485a6390532c6a517fda2e3faac89e" integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA== +agent-base@^7.1.2: + version "7.1.4" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz#e3cd76d4c548ee895d3c3fd8dc1f6c5b9032e7a8" + integrity sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ== + aggregate-error@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" @@ -3835,22 +3922,6 @@ babel-plugin-polyfill-regenerator@^0.6.5, babel-plugin-polyfill-regenerator@^0.6 dependencies: "@babel/helper-define-polyfill-provider" "^0.6.6" -"babel-plugin-styled-components@>= 1.12.0": - version "2.1.3" - resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-2.1.3.tgz#f5616bee99efca6685e500fe45db87f26cb42ba7" - integrity sha512-jBioLwBVHpOMU4NsueH/ADcHrjS0Y/WTpt2eGVmmuSFNEv2DF3XhcMncuZlbbjxQ4vzxg+yEr6E6TNjrIQbsJQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-module-imports" "^7.21.4" - babel-plugin-syntax-jsx "^6.18.0" - lodash "^4.17.21" - picomatch "^2.3.1" - -babel-plugin-syntax-jsx@^6.18.0: - version "6.18.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" - integrity sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw== - bail@^1.0.0: version "1.0.5" resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776" @@ -4219,7 +4290,7 @@ cheerio@1.0.0-rc.12: parse5 "^7.0.0" parse5-htmlparser2-tree-adapter "^7.0.0" -"chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.3: +chokidar@^3.5.3: version "3.5.3" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== @@ -4249,6 +4320,13 @@ chokidar@^3.6.0: optionalDependencies: fsevents "~2.3.2" +chokidar@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.3.tgz#7be37a4c03c9aee1ecfe862a4a23b2c70c205d30" + integrity sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA== + dependencies: + readdirp "^4.0.1" + chrome-trace-event@^1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" @@ -4259,11 +4337,16 @@ ci-info@^3.2.0: resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== -classnames@^2.2.6, classnames@^2.3.1: +classnames@^2.2.6: version "2.3.2" resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.2.tgz#351d813bf0137fcc6a76a16b88208d2560a0d924" integrity sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw== +classnames@^2.3.2: + version "2.5.1" + resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.5.1.tgz#ba774c614be0f016da105c858e7159eae8e7687b" + integrity sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow== + clean-css@^5.2.2: version "5.3.2" resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.2.tgz#70ecc7d4d4114921f5d298349ff86a31a9975224" @@ -4297,15 +4380,6 @@ cli-table3@^0.6.3: optionalDependencies: "@colors/colors" "1.5.0" -cliui@^7.0.2: - version "7.0.4" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^7.0.0" - cliui@^8.0.1: version "8.0.1" resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" @@ -4324,7 +4398,7 @@ clone-deep@^4.0.1: kind-of "^6.0.2" shallow-clone "^3.0.0" -clsx@^1.1.0, clsx@^1.2.1: +clsx@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== @@ -4373,7 +4447,7 @@ colord@^2.9.3: resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== -colorette@^1.2.0: +colorette@1.4.0, colorette@^1.2.0: version "1.4.0" resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g== @@ -4398,11 +4472,6 @@ comma-separated-tokens@^2.0.0: resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee" integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg== -commander@7, commander@^7.2.0: - version "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" @@ -4418,6 +4487,11 @@ commander@^5.1.0: resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== +commander@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== + commander@^8.3.0: version "8.3.0" resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" @@ -4531,19 +4605,6 @@ copy-webpack-plugin@^11.0.0: schema-utils "^4.0.0" serialize-javascript "^6.0.0" -copyfiles@^2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/copyfiles/-/copyfiles-2.4.1.tgz#d2dcff60aaad1015f09d0b66e7f0f1c5cd3c5da5" - integrity sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg== - dependencies: - glob "^7.0.5" - minimatch "^3.0.3" - mkdirp "^1.0.4" - noms "0.0.0" - through2 "^2.0.1" - untildify "^4.0.0" - yargs "^16.1.0" - core-js-compat@^3.43.0, core-js-compat@^3.48.0: version "3.48.0" resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.48.0.tgz#7efbe1fc1cbad44008190462217cc5558adaeaa6" @@ -4566,13 +4627,6 @@ core-util-is@~1.0.0: resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== -cose-base@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/cose-base/-/cose-base-1.0.3.tgz#650334b41b869578a543358b80cda7e0abe0a60a" - integrity sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg== - dependencies: - layout-base "^1.0.0" - cosmiconfig@^8.1.3, cosmiconfig@^8.3.5: version "8.3.6" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3" @@ -4678,7 +4732,7 @@ css-select@^5.1.0: domutils "^3.0.1" nth-check "^2.0.1" -css-to-react-native@^3.0.0: +css-to-react-native@3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.2.0.tgz#cdd8099f71024e149e4f6fe17a7d46ecd55f1e32" integrity sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ== @@ -4787,307 +4841,16 @@ csso@^5.0.5: dependencies: css-tree "~2.2.0" +csstype@3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.2.3.tgz#ec48c0f3e993e50648c86da559e2610995cf989a" + integrity sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ== + csstype@^3.0.2: version "3.1.2" resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== -cytoscape-cose-bilkent@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz#762fa121df9930ffeb51a495d87917c570ac209b" - integrity sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ== - dependencies: - cose-base "^1.0.0" - -cytoscape@^3.28.1: - version "3.30.2" - resolved "https://registry.yarnpkg.com/cytoscape/-/cytoscape-3.30.2.tgz#94149707fb6547a55e3b44f03ffe232706212161" - integrity sha512-oICxQsjW8uSaRmn4UK/jkczKOqTrVqt5/1WL0POiJUT2EKNc9STM4hYFHv917yu55aTBMFNRzymlJhVAiWPCxw== - -"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" - integrity sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg== - dependencies: - internmap "1 - 2" - -d3-axis@3: - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-axis/-/d3-axis-3.0.0.tgz#c42a4a13e8131d637b745fc2973824cfeaf93322" - integrity sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw== - -d3-brush@3: - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-brush/-/d3-brush-3.0.0.tgz#6f767c4ed8dcb79de7ede3e1c0f89e63ef64d31c" - integrity sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ== - dependencies: - d3-dispatch "1 - 3" - d3-drag "2 - 3" - d3-interpolate "1 - 3" - d3-selection "3" - d3-transition "3" - -d3-chord@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-chord/-/d3-chord-3.0.1.tgz#d156d61f485fce8327e6abf339cb41d8cbba6966" - integrity sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g== - dependencies: - d3-path "1 - 3" - -"d3-color@1 - 3", d3-color@3: - version "3.1.0" - resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2" - integrity sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA== - -d3-contour@4: - version "4.0.2" - resolved "https://registry.yarnpkg.com/d3-contour/-/d3-contour-4.0.2.tgz#bb92063bc8c5663acb2422f99c73cbb6c6ae3bcc" - integrity sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA== - dependencies: - d3-array "^3.2.0" - -d3-delaunay@6: - version "6.0.4" - resolved "https://registry.yarnpkg.com/d3-delaunay/-/d3-delaunay-6.0.4.tgz#98169038733a0a5babbeda55054f795bb9e4a58b" - integrity sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A== - dependencies: - delaunator "5" - -"d3-dispatch@1 - 3", d3-dispatch@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-3.0.1.tgz#5fc75284e9c2375c36c839411a0cf550cbfc4d5e" - integrity sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg== - -"d3-drag@2 - 3", d3-drag@3: - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-drag/-/d3-drag-3.0.0.tgz#994aae9cd23c719f53b5e10e3a0a6108c69607ba" - integrity sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg== - dependencies: - d3-dispatch "1 - 3" - d3-selection "3" - -"d3-dsv@1 - 3", d3-dsv@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-3.0.1.tgz#c63af978f4d6a0d084a52a673922be2160789b73" - integrity sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q== - dependencies: - commander "7" - iconv-lite "0.6" - rw "1" - -"d3-ease@1 - 3", d3-ease@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-3.0.1.tgz#9658ac38a2140d59d346160f1f6c30fda0bd12f4" - integrity sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w== - -d3-fetch@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-fetch/-/d3-fetch-3.0.1.tgz#83141bff9856a0edb5e38de89cdcfe63d0a60a22" - integrity sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw== - dependencies: - d3-dsv "1 - 3" - -d3-force@3: - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-force/-/d3-force-3.0.0.tgz#3e2ba1a61e70888fe3d9194e30d6d14eece155c4" - integrity sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg== - dependencies: - d3-dispatch "1 - 3" - d3-quadtree "1 - 3" - d3-timer "1 - 3" - -"d3-format@1 - 3", d3-format@3: - version "3.1.0" - resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.0.tgz#9260e23a28ea5cb109e93b21a06e24e2ebd55641" - integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA== - -d3-geo@3: - version "3.1.0" - resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-3.1.0.tgz#74fd54e1f4cebd5185ac2039217a98d39b0a4c0e" - integrity sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA== - dependencies: - d3-array "2.5.0 - 3" - -d3-hierarchy@3: - version "3.1.2" - resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz#b01cd42c1eed3d46db77a5966cf726f8c09160c6" - integrity sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA== - -"d3-interpolate@1 - 3", "d3-interpolate@1.2.0 - 3", d3-interpolate@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz#3c47aa5b32c5b3dfb56ef3fd4342078a632b400d" - integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g== - 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" - integrity sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ== - -d3-polygon@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-polygon/-/d3-polygon-3.0.1.tgz#0b45d3dd1c48a29c8e057e6135693ec80bf16398" - integrity sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg== - -"d3-quadtree@1 - 3", d3-quadtree@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-3.0.1.tgz#6dca3e8be2b393c9a9d514dabbd80a92deef1a4f" - integrity sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw== - -d3-random@3: - version "3.0.1" - 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" - integrity sha512-Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g== - dependencies: - d3-color "1 - 3" - d3-interpolate "1 - 3" - -d3-scale@4: - version "4.0.2" - resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-4.0.2.tgz#82b38e8e8ff7080764f8dcec77bd4be393689396" - integrity sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ== - dependencies: - d3-array "2.10.0 - 3" - d3-format "1 - 3" - d3-interpolate "1.2.0 - 3" - d3-time "2.1.1 - 3" - d3-time-format "2 - 4" - -"d3-selection@2 - 3", d3-selection@3: - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-3.0.0.tgz#c25338207efa72cc5b9bd1458a1a41901f1e1b31" - integrity sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ== - -d3-shape@3: - version "3.2.0" - resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-3.2.0.tgz#a1a839cbd9ba45f28674c69d7f855bcf91dfc6a5" - integrity sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA== - 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" - integrity sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg== - dependencies: - d3-time "1 - 3" - -"d3-time@1 - 3", "d3-time@2.1.1 - 3", d3-time@3: - version "3.1.0" - resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-3.1.0.tgz#9310db56e992e3c0175e1ef385e545e48a9bb5c7" - integrity sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q== - dependencies: - d3-array "2 - 3" - -"d3-timer@1 - 3", d3-timer@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-3.0.1.tgz#6284d2a2708285b1abb7e201eda4380af35e63b0" - integrity sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA== - -"d3-transition@2 - 3", d3-transition@3: - version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-transition/-/d3-transition-3.0.1.tgz#6869fdde1448868077fdd5989200cb61b2a1645f" - integrity sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w== - dependencies: - d3-color "1 - 3" - d3-dispatch "1 - 3" - d3-ease "1 - 3" - d3-interpolate "1 - 3" - d3-timer "1 - 3" - -d3-zoom@3: - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-zoom/-/d3-zoom-3.0.0.tgz#d13f4165c73217ffeaa54295cd6969b3e7aee8f3" - integrity sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw== - dependencies: - d3-dispatch "1 - 3" - d3-drag "2 - 3" - d3-interpolate "1 - 3" - d3-selection "2 - 3" - d3-transition "2 - 3" - -d3@^7.4.0, d3@^7.8.2: - version "7.8.5" - resolved "https://registry.yarnpkg.com/d3/-/d3-7.8.5.tgz#fde4b760d4486cdb6f0cc8e2cbff318af844635c" - integrity sha512-JgoahDG51ncUfJu6wX/1vWQEqOflgXyl4MaHqlcSruTez7yhaRKR9i8VjjcQGeS2en/jnFivXuaIMnseMMt0XA== - dependencies: - d3-array "3" - d3-axis "3" - d3-brush "3" - d3-chord "3" - d3-color "3" - d3-contour "4" - d3-delaunay "6" - d3-dispatch "3" - d3-drag "3" - d3-dsv "3" - d3-ease "3" - d3-fetch "3" - d3-force "3" - d3-format "3" - d3-geo "3" - d3-hierarchy "3" - d3-interpolate "3" - d3-path "3" - d3-polygon "3" - d3-quadtree "3" - d3-random "3" - d3-scale "4" - d3-scale-chromatic "3" - d3-selection "3" - d3-shape "3" - d3-time "3" - d3-time-format "4" - d3-timer "3" - d3-transition "3" - d3-zoom "3" - -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" - -dayjs@^1.11.7: - version "1.11.8" - resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.8.tgz#4282f139c8c19dd6d0c7bd571e30c2d0ba7698ea" - integrity sha512-LcgxzFoWMEPO7ggRv1Y2N31hUf2R0Vj7fuy/m+Bg1K8rr+KAs1AEy4y9jd5DXe8pbHgX+srkHNS7TH6Q6ZhYeQ== - debounce@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5" @@ -5179,13 +4942,6 @@ define-properties@^1.1.4: has-property-descriptors "^1.0.0" object-keys "^1.1.1" -delaunator@5: - version "5.0.0" - resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-5.0.0.tgz#60f052b28bd91c9b4566850ebf7756efe821d81b" - integrity sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw== - dependencies: - robust-predicates "^3.0.0" - depd@2.0.0, depd@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" @@ -5213,6 +4969,11 @@ detab@2.0.4: dependencies: repeat-string "^1.5.4" +detect-libc@^2.0.3: + version "2.1.2" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz#689c5dcdc1900ef5583a4cb9f6d7b473742074ad" + integrity sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ== + detect-node@^2.0.4: version "2.1.0" resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" @@ -5233,11 +4994,6 @@ devlop@^1.0.0, devlop@^1.1.0: dependencies: dequal "^2.0.0" -diff@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-5.1.0.tgz#bc52d298c5ea8df9194800224445ed43ffc87e40" - integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw== - dir-glob@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" @@ -5252,13 +5008,13 @@ dns-packet@^5.2.2: dependencies: "@leichtgewicht/ip-codec" "^2.0.1" -docusaurus-plugin-redoc@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/docusaurus-plugin-redoc/-/docusaurus-plugin-redoc-1.6.0.tgz#a3d07bb10a99e9195aab3e2ae4296f49a1530e4a" - integrity sha512-bvOmVcJ9Lo6ymyaHCoXTjN6Ck7/Dog1KRsJgZilB6ukHQ7d6nJrAwAEoDF1rXto8tOvIUqVb6Zzy7qDPvBQA1Q== +docusaurus-plugin-redoc@2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/docusaurus-plugin-redoc/-/docusaurus-plugin-redoc-2.5.0.tgz#d64756b2a8a794b2e9c635abc21b0a51a84a1bcc" + integrity sha512-44sDhuXvItHnUuPdKswF3cRhiN5UW3YZxmMBsQLSfCYKcYr9tgWF2qvDfQoZO9i1DwpaYbIZ/RKMrSgny/iWYA== dependencies: - "@redocly/openapi-core" "1.0.0-beta.123" - redoc "2.0.0" + "@redocly/openapi-core" "1.16.0" + redoc "2.4.0" docusaurus-plugin-sass@^0.2.6: version "0.2.6" @@ -5267,18 +5023,19 @@ docusaurus-plugin-sass@^0.2.6: dependencies: sass-loader "^16.0.2" -docusaurus-theme-redoc@1.6.3: - version "1.6.3" - resolved "https://registry.yarnpkg.com/docusaurus-theme-redoc/-/docusaurus-theme-redoc-1.6.3.tgz#981e89b441f1be1aa90f1f23c485f2ed8f8ad160" - integrity sha512-vOdU1WcxFOfp+7HqwEoybmU3t3hC1GN5GnYbT9rjffv5yx4m4x5fQOtTQqCmtk3L9OCFX+pDfwiBXw1EUIaOLA== +docusaurus-theme-redoc@2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/docusaurus-theme-redoc/-/docusaurus-theme-redoc-2.5.0.tgz#b8d6f033a7d88485c0d86b3b28c0a98a5d7a8900" + integrity sha512-ykLmnnvE20Im3eABlIpUnXnT2gSHVAjgyy2fU2G8yecu7zqIE+G/SiBpBg/hrWMUycL31a8VSG7Ehkf3pg1u+A== dependencies: - "@redocly/openapi-core" "1.0.0-beta.123" + "@redocly/openapi-core" "1.16.0" clsx "^1.2.1" - copyfiles "^2.4.1" lodash "^4.17.21" - mobx "^6.8.0" - redoc "2.0.0" - styled-components "^5.3.6" + mobx "^6.12.4" + postcss "^8.4.45" + postcss-prefix-selector "^1.16.1" + redoc "2.4.0" + styled-components "^6.1.11" dom-converter@^0.2.0: version "0.2.0" @@ -5324,15 +5081,12 @@ domhandler@^5.0.2, domhandler@^5.0.3: dependencies: domelementtype "^2.3.0" -dompurify@^2.2.8: - version "2.4.5" - resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.4.5.tgz#0e89a27601f0bad978f9a924e7a05d5d2cccdd87" - integrity sha512-jggCCd+8Iqp4Tsz0nIvpcb22InKEBrGz5dw3EQJMs8HPJDsKbFIO3STYtAvCfDx26Muevn1MHVI0XxjgFfmiSA== - -"dompurify@^3.0.5 <3.1.7": - version "3.1.6" - resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.1.6.tgz#43c714a94c6a7b8801850f82e756685300a027e2" - integrity sha512-cTOAhc36AalkjtBpfG6O8JimdTMWNXjiePT2xQH/ppBGi/4uIpmj8eKyIkMJErXWARyINV/sB38yf8JCLF5pbQ== +dompurify@^3.0.6: + version "3.4.1" + resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.4.1.tgz#521d04483ac12631b2aedf434a5f5390933b8789" + integrity sha512-JahakDAIg1gyOm7dlgWSDjV4n7Ip2PKR55NIT6jrMfIgLFgWo81vdr1/QGqWtFNRqXP9UV71oVePtjqS2ebnPw== + optionalDependencies: + "@types/trusted-types" "^2.0.7" domutils@^2.5.2, domutils@^2.8.0: version "2.8.0" @@ -5401,11 +5155,6 @@ electron-to-chromium@^1.5.263: resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.286.tgz#142be1ab5e1cd5044954db0e5898f60a4960384e" integrity sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A== -elkjs@^0.9.0: - version "0.9.3" - resolved "https://registry.yarnpkg.com/elkjs/-/elkjs-0.9.3.tgz#16711f8ceb09f1b12b99e971b138a8384a529161" - integrity sha512-f/ZeWvW/BCXbhGEf1Ujp29EASo/lk1FDnETgNKwJrsVvGZhUWCZyg3xLJjAsxfOmt8KjswHmI5EwCQcPMpOYhQ== - emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" @@ -5657,11 +5406,16 @@ eval@^0.1.8: "@types/node" "*" require-like ">= 0.1.1" -eventemitter3@^4.0.0, eventemitter3@^4.0.4, eventemitter3@^4.0.7: +eventemitter3@^4.0.0, eventemitter3@^4.0.4: version "4.0.7" resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== +eventemitter3@^5.0.1: + version "5.0.4" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.4.tgz#a86d66170433712dde814707ac52b5271ceb1feb" + integrity sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw== + events@^3.2.0: version "3.3.0" resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" @@ -5764,6 +5518,23 @@ fast-safe-stringify@^2.0.7: resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== +fast-xml-builder@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/fast-xml-builder/-/fast-xml-builder-1.1.5.tgz#50188e1452a5fa095f415d3e63dcac0a1dbcbf11" + integrity sha512-4TJn/8FKLeslLAH3dnohXqE3QSoxkhvaMzepOIZytwJXZO69Bfz0HBdDHzOTOon6G59Zrk6VQ2bEiv1t61rfkA== + dependencies: + path-expression-matcher "^1.1.3" + +fast-xml-parser@^5.5.1: + version "5.7.1" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-5.7.1.tgz#17697550bdd2a0a0d47cdc4b456c009c4cbe8a06" + integrity sha512-8Cc3f8GUGUULg34pBch/KGyPLglS+OFs05deyOlY7fL2MTagYPKrVQNmR1fLF/yJ9PH5ZSTd3YDF6pnmeZU+zA== + dependencies: + "@nodable/entities" "^2.1.0" + fast-xml-builder "^1.1.5" + path-expression-matcher "^1.5.0" + strnum "^2.2.3" + fastq@^1.6.0: version "1.15.0" resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" @@ -6009,7 +5780,7 @@ glob-to-regexp@^0.4.1: resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== -glob@^7.0.5, glob@^7.1.2: +glob@^7.1.2: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -6387,7 +6158,7 @@ history@^4.9.0: tiny-warning "^1.0.0" value-equal "^1.0.1" -hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.1.0: +hoist-non-react-statics@^3.1.0: version "3.3.2" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== @@ -6557,6 +6328,14 @@ http2-wrapper@^2.1.10: quick-lru "^5.1.1" resolve-alpn "^1.2.0" +https-proxy-agent@7.0.6, https-proxy-agent@^7.0.4: + version "7.0.6" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz#da8dfeac7da130b05c2ba4b59c9b6cd66611a6b9" + integrity sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw== + dependencies: + agent-base "^7.1.2" + debug "4" + human-signals@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" @@ -6567,13 +6346,6 @@ hyperdyperid@^1.2.0: resolved "https://registry.yarnpkg.com/hyperdyperid/-/hyperdyperid-1.2.0.tgz#59668d323ada92228d2a869d3e474d5a33b69e6b" integrity sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A== -iconv-lite@0.6: - version "0.6.3" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" - integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== - dependencies: - safer-buffer ">= 2.1.2 < 3.0.0" - iconv-lite@~0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" @@ -6596,10 +6368,10 @@ image-size@^2.0.2: resolved "https://registry.yarnpkg.com/image-size/-/image-size-2.0.2.tgz#84a7b43704db5736f364bf0d1b029821299b4bdc" integrity sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w== -immutable@^4.0.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.0.tgz#eb1738f14ffb39fd068b1dbe1296117484dd34be" - integrity sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg== +immutable@^5.1.5: + version "5.1.5" + resolved "https://registry.yarnpkg.com/immutable/-/immutable-5.1.5.tgz#93ee4db5c2a9ab42a4a783069f3c5d8847d40165" + integrity sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A== import-fresh@^3.3.0: version "3.3.0" @@ -6637,7 +6409,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4: +inherits@2, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, 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== @@ -6667,16 +6439,6 @@ inline-style-parser@0.2.7: resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.2.7.tgz#b1fc68bfc0313b8685745e4464e37f9376b9c909" integrity sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA== -"internmap@1 - 2": - version "2.0.3" - 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== - invariant@^2.2.4: version "2.2.4" resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" @@ -7012,7 +6774,7 @@ joi@^17.9.2: "@sideway/formula" "^3.0.1" "@sideway/pinpoint" "^2.0.0" -js-levenshtein@^1.1.6: +js-levenshtein@1.1.6, js-levenshtein@^1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== @@ -7022,6 +6784,13 @@ js-levenshtein@^1.1.6: resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== +js-yaml@4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz#854c292467705b699476e1a2decc0c8a3458806b" + integrity sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA== + dependencies: + argparse "^2.0.1" + js-yaml@^3.13.1: version "3.14.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" @@ -7093,13 +6862,6 @@ jsonfile@^6.0.1: optionalDependencies: graceful-fs "^4.1.6" -katex@^0.16.9: - version "0.16.21" - resolved "https://registry.yarnpkg.com/katex/-/katex-0.16.21.tgz#8f63c659e931b210139691f2cc7bb35166b792a3" - integrity sha512-XvqR7FgOHtWupfMiigNzmh+MgUVmDGU2kXZm899ZkPfcuoPuFxyHmXsgATDpFZDAXCI8tvinaVcDo8PIIJSo4A== - dependencies: - commander "^8.3.0" - keyv@^4.5.3: version "4.5.4" resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" @@ -7107,11 +6869,6 @@ keyv@^4.5.3: 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== - kind-of@^6.0.0, kind-of@^6.0.2: version "6.0.3" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" @@ -7122,11 +6879,6 @@ kleur@^3.0.3: resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== -kleur@^4.0.3: - version "4.1.5" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" - integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== - latest-version@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-7.0.0.tgz#843201591ea81a4d404932eeb61240fe04e9e5da" @@ -7142,11 +6894,6 @@ launch-editor@^2.6.1: picocolors "^1.1.1" shell-quote "^1.8.3" -layout-base@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/layout-base/-/layout-base-1.0.2.tgz#1291e296883c322a9dd4c5dd82063721b53e26e2" - integrity sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg== - leven@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" @@ -7183,11 +6930,6 @@ locate-path@^7.1.0: 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" - integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== - lodash.debounce@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" @@ -7283,7 +7025,7 @@ markdown-table@^3.0.0: resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-3.0.4.tgz#fe44d6d410ff9d6f2ea1797a3f60aa4d2b631c2a" integrity sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw== -marked@^4.0.15: +marked@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/marked/-/marked-4.3.0.tgz#796362821b019f734054582038b116481b456cf3" integrity sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A== @@ -7344,24 +7086,6 @@ mdast-util-find-and-replace@^3.0.0, mdast-util-find-and-replace@^3.0.1: unist-util-is "^6.0.0" unist-util-visit-parents "^6.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== - dependencies: - "@types/mdast" "^3.0.0" - "@types/unist" "^2.0.0" - decode-named-character-reference "^1.0.0" - mdast-util-to-string "^3.1.0" - micromark "^3.0.0" - micromark-util-decode-numeric-character-reference "^1.0.0" - micromark-util-decode-string "^1.0.0" - micromark-util-normalize-identifier "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - unist-util-stringify-position "^3.0.0" - uvu "^0.5.0" - mdast-util-from-markdown@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz#4850390ca7cf17413a9b9a0fbefcd1bc0eb4160a" @@ -7567,13 +7291,6 @@ mdast-util-to-string@^1.0.0: resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz#27055500103f51637bd07d01da01eb1967a43527" integrity sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A== -mdast-util-to-string@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz#66f7bb6324756741c5f47a53557f0cbf16b6f789" - integrity sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg== - 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" @@ -7605,11 +7322,6 @@ mdx-link-checker@^0.1.1: fs-walk "^0.0.2" remark-slug "^5.1.2" -mdx-mermaid@^v1.3.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/mdx-mermaid/-/mdx-mermaid-1.3.2.tgz#9a9d335368de88f0c771daf12dde855bc6b67d57" - integrity sha512-8kw0tg3isKKBFzFwoe2DhIaEgKYtVeJXQtxZCCrdTPO0CTpXHnTHT0atDqsp7YkXi5iUCp/zAZPZu1cmr68T3w== - media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" @@ -7655,59 +7367,11 @@ merge2@^1.3.0, merge2@^1.4.1: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== -mermaid@^10.9.3: - version "10.9.3" - resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-10.9.3.tgz#90bc6f15c33dbe5d9507fed31592cc0d88fee9f7" - integrity sha512-V80X1isSEvAewIL3xhmz/rVmc27CVljcsbWxkxlWJWY/1kQa4XOABqpDl2qQLGKzpKm6WbTfUEKImBlUfFYArw== - dependencies: - "@braintree/sanitize-url" "^6.0.1" - "@types/d3-scale" "^4.0.3" - "@types/d3-scale-chromatic" "^3.0.0" - cytoscape "^3.28.1" - cytoscape-cose-bilkent "^4.1.0" - d3 "^7.4.0" - d3-sankey "^0.12.3" - dagre-d3-es "7.0.10" - dayjs "^1.11.7" - dompurify "^3.0.5 <3.1.7" - elkjs "^0.9.0" - katex "^0.16.9" - 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.3" - ts-dedent "^2.2.0" - uuid "^9.0.0" - web-worker "^1.2.0" - methods@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== -micromark-core-commonmark@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz#1386628df59946b2d39fb2edfd10f3e8e0a75bb8" - integrity sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw== - dependencies: - decode-named-character-reference "^1.0.0" - micromark-factory-destination "^1.0.0" - micromark-factory-label "^1.0.0" - micromark-factory-space "^1.0.0" - micromark-factory-title "^1.0.0" - micromark-factory-whitespace "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-chunked "^1.0.0" - micromark-util-classify-character "^1.0.0" - micromark-util-html-tag-name "^1.0.0" - micromark-util-normalize-identifier "^1.0.0" - micromark-util-resolve-all "^1.0.0" - micromark-util-subtokenize "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.1" - uvu "^0.5.0" - micromark-core-commonmark@^2.0.0: version "2.0.3" resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz#c691630e485021a68cf28dbc2b2ca27ebf678cd4" @@ -7898,15 +7562,6 @@ micromark-extension-mdxjs@^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" - integrity sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg== - dependencies: - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - micromark-factory-destination@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz#8fef8e0f7081f0474fbdd92deb50c990a0264639" @@ -7916,16 +7571,6 @@ micromark-factory-destination@^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" - integrity sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w== - dependencies: - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - uvu "^0.5.0" - micromark-factory-label@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz#5267efa97f1e5254efc7f20b459a38cb21058ba1" @@ -7967,16 +7612,6 @@ micromark-factory-space@^2.0.0: 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" - integrity sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ== - dependencies: - micromark-factory-space "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - micromark-factory-title@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz#237e4aa5d58a95863f01032d9ee9b090f1de6e94" @@ -7987,16 +7622,6 @@ micromark-factory-title@^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" - integrity sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ== - dependencies: - micromark-factory-space "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - micromark-factory-whitespace@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz#06b26b2983c4d27bfcc657b33e25134d4868b0b1" @@ -8023,13 +7648,6 @@ micromark-util-character@^2.0.0: 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" - integrity sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ== - dependencies: - micromark-util-symbol "^1.0.0" - micromark-util-chunked@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz#47fbcd93471a3fccab86cff03847fc3552db1051" @@ -8037,15 +7655,6 @@ micromark-util-chunked@^2.0.0: 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" - integrity sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw== - dependencies: - micromark-util-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.1" resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz#d399faf9c45ca14c8b4be98b1ea481bced87b629" @@ -8055,14 +7664,6 @@ micromark-util-classify-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" - integrity sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA== - dependencies: - micromark-util-chunked "^1.0.0" - micromark-util-types "^1.0.0" - micromark-util-combine-extensions@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz#2a0f490ab08bff5cc2fd5eec6dd0ca04f89b30a9" @@ -8071,13 +7672,6 @@ micromark-util-combine-extensions@^2.0.0: 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" - integrity sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw== - dependencies: - micromark-util-symbol "^1.0.0" - micromark-util-decode-numeric-character-reference@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz#fcf15b660979388e6f118cdb6bf7d79d73d26fe5" @@ -8085,16 +7679,6 @@ micromark-util-decode-numeric-character-reference@^2.0.0: 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" - integrity sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ== - dependencies: - decode-named-character-reference "^1.0.0" - micromark-util-character "^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.1" resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz#6cb99582e5d271e84efca8e61a807994d7161eb2" @@ -8105,11 +7689,6 @@ micromark-util-decode-string@^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.1" resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz#0d51d1c095551cfaac368326963cf55f15f540b8" @@ -8128,23 +7707,11 @@ micromark-util-events-to-acorn@^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.1" resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz#e40403096481986b41c106627f98f72d4d10b825" integrity sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA== -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" - integrity sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q== - dependencies: - micromark-util-symbol "^1.0.0" - micromark-util-normalize-identifier@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz#c30d77b2e832acf6526f8bf1aa47bc9c9438c16d" @@ -8152,13 +7719,6 @@ micromark-util-normalize-identifier@^2.0.0: 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" - integrity sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA== - dependencies: - micromark-util-types "^1.0.0" - micromark-util-resolve-all@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz#e1a2d62cdd237230a2ae11839027b19381e31e8b" @@ -8166,15 +7726,6 @@ micromark-util-resolve-all@^2.0.0: dependencies: micromark-util-types "^2.0.0" -micromark-util-sanitize-uri@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz#613f738e4400c6eedbc53590c67b197e30d7f90d" - integrity sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A== - dependencies: - micromark-util-character "^1.0.0" - micromark-util-encode "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-sanitize-uri@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz#ab89789b818a58752b73d6b55238621b7faa8fd7" @@ -8184,16 +7735,6 @@ micromark-util-sanitize-uri@^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" - integrity sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A== - dependencies: - micromark-util-chunked "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.0" - uvu "^0.5.0" - micromark-util-subtokenize@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz#d8ade5ba0f3197a1cf6a2999fbbfe6357a1a19ee" @@ -8214,7 +7755,7 @@ micromark-util-symbol@^2.0.0: resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz#e5da494e8eb2b071a0d08fb34f6cefec6c0a19b8" integrity sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q== -micromark-util-types@^1.0.0, micromark-util-types@^1.0.1: +micromark-util-types@^1.0.0: 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== @@ -8224,29 +7765,6 @@ micromark-util-types@^2.0.0: resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-2.0.2.tgz#f00225f5f5a0ebc3254f96c36b6605c4b393908e" integrity sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA== -micromark@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/micromark/-/micromark-3.2.0.tgz#1af9fef3f995ea1ea4ac9c7e2f19c48fd5c006e9" - integrity sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA== - dependencies: - "@types/debug" "^4.0.0" - debug "^4.0.0" - decode-named-character-reference "^1.0.0" - micromark-core-commonmark "^1.0.1" - micromark-factory-space "^1.0.0" - micromark-util-character "^1.0.0" - micromark-util-chunked "^1.0.0" - micromark-util-combine-extensions "^1.0.0" - micromark-util-decode-numeric-character-reference "^1.0.0" - micromark-util-encode "^1.0.0" - micromark-util-normalize-identifier "^1.0.0" - micromark-util-resolve-all "^1.0.0" - micromark-util-sanitize-uri "^1.0.0" - micromark-util-subtokenize "^1.0.0" - micromark-util-symbol "^1.0.0" - micromark-util-types "^1.0.1" - uvu "^0.5.0" - micromark@^4.0.0: version "4.0.2" resolved "https://registry.yarnpkg.com/micromark/-/micromark-4.0.2.tgz#91395a3e1884a198e62116e33c9c568e39936fdb" @@ -8347,13 +7865,20 @@ minimalistic-assert@^1.0.0: resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== -minimatch@3.1.2, minimatch@^3.0.3, minimatch@^3.1.1: +minimatch@3.1.2, minimatch@^3.1.1: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" +minimatch@5.1.9: + version "5.1.9" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.9.tgz#1293ef15db0098b394540e8f9f744f9fda8dee4b" + integrity sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw== + dependencies: + brace-expansion "^2.0.1" + minimatch@^5.0.1: version "5.1.6" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" @@ -8366,32 +7891,24 @@ minimist@^1.2.0: resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== -mkdirp@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - -mobx-react-lite@^3.4.0: - version "3.4.3" - resolved "https://registry.yarnpkg.com/mobx-react-lite/-/mobx-react-lite-3.4.3.tgz#3a4c22c30bfaa8b1b2aa48d12b2ba811c0947ab7" - integrity sha512-NkJREyFTSUXR772Qaai51BnE1voWx56LOL80xG7qkZr6vo8vEaLF3sz1JNUVh+rxmUzxYaqOhfuxTfqUh0FXUg== - -mobx-react@^7.2.0: - version "7.6.0" - resolved "https://registry.yarnpkg.com/mobx-react/-/mobx-react-7.6.0.tgz#ebf0456728a9bd2e5c24fdcf9b36e285a222a7d6" - integrity sha512-+HQUNuh7AoQ9ZnU6c4rvbiVVl+wEkb9WqYsVDzGLng+Dqj1XntHu79PvEWKtSMoMj67vFp/ZPXcElosuJO8ckA== +mobx-react-lite@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/mobx-react-lite/-/mobx-react-lite-4.1.1.tgz#725d74b025235f73dc2ab815766ffe010be2cf8a" + integrity sha512-iUxiMpsvNraCKXU+yPotsOncNNmyeS2B5DKL+TL6Tar/xm+wwNJAubJmtRSeAoYawdZqwv8Z/+5nPRHeQxTiXg== dependencies: - mobx-react-lite "^3.4.0" + use-sync-external-store "^1.4.0" -mobx@^6.8.0: - version "6.9.0" - resolved "https://registry.yarnpkg.com/mobx/-/mobx-6.9.0.tgz#8a894c26417c05bed2cf7499322e589ee9787397" - integrity sha512-HdKewQEREEJgsWnErClfbFoVebze6rGazxFLU/XUyrII8dORfVszN1V0BMRnQSzcgsNNtkX8DHj3nC6cdWE9YQ== +mobx-react@^9.1.1: + version "9.2.1" + resolved "https://registry.yarnpkg.com/mobx-react/-/mobx-react-9.2.1.tgz#19b1036442d2515eeb6f5fbb2c9c770d81c32f80" + integrity sha512-WJNNm0FB2n0Z0u+jS1QHmmWyV8l2WiAj8V8I/96kbUEN2YbYCoKW+hbbqKKRUBqElu0llxM7nWKehvRIkhBVJw== + dependencies: + mobx-react-lite "^4.1.1" -mri@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b" - integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== +mobx@^6.12.4: + version "6.15.0" + resolved "https://registry.yarnpkg.com/mobx/-/mobx-6.15.0.tgz#78b9b82d383724eebb4b6e50c2eb4ae2da861cb5" + integrity sha512-UczzB+0nnwGotYSgllfARAqWCJ5e/skuV2K/l+Zyck/H6pJIhLXuBnz+6vn2i211o7DtbE78HQtsYEKICHGI+g== mrmime@^2.0.0: version "2.0.1" @@ -8454,6 +7971,11 @@ no-case@^3.0.4: lower-case "^2.0.2" tslib "^2.0.3" +node-addon-api@^7.0.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.1.1.tgz#1aba6693b0f255258a049d621329329322aad558" + integrity sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ== + node-emoji@^2.1.0: version "2.2.0" resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-2.2.0.tgz#1d000e3c76e462577895be1b436f4aa2d6760eb0" @@ -8495,19 +8017,6 @@ node-releases@^2.0.27: resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.27.tgz#eedca519205cf20f650f61d56b070db111231e4e" integrity sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA== -noms@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/noms/-/noms-0.0.0.tgz#da8ebd9f3af9d6760919b27d9cdc8092a7332859" - integrity sha512-lNDU9VJaOPxUmXcLb+HQFeUgQQPtMI24Gt6hgfuMHRJgMRHMF/qZ4HJD3GDru4sSw9IQl2jPjAYnQrdIeLbwow== - dependencies: - inherits "^2.0.1" - readable-stream "~1.0.31" - -non-layered-tidy-tree-layout@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/non-layered-tidy-tree-layout/-/non-layered-tidy-tree-layout-2.0.2.tgz#57d35d13c356643fc296a55fb11ac15e74da7804" - integrity sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw== - normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" @@ -8666,12 +8175,13 @@ open@^8.4.0: is-docker "^2.1.1" is-wsl "^2.2.0" -openapi-sampler@^1.3.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/openapi-sampler/-/openapi-sampler-1.3.1.tgz#eebb2a1048f830cc277398bc8022b415f887e859" - integrity sha512-Ert9mvc2tLPmmInwSyGZS+v4Ogu9/YoZuq9oP3EdUklg2cad6+IGndP9yqJJwbgdXwZibiq5fpv6vYujchdJFg== +openapi-sampler@^1.5.0: + version "1.7.2" + resolved "https://registry.yarnpkg.com/openapi-sampler/-/openapi-sampler-1.7.2.tgz#2bb1087af0b77007829d788536fa2218171d0aad" + integrity sha512-OKytvqB5XIaTgA9xtw8W8UTar+uymW2xPVpFN0NihMtuHPdPTGxBEhGnfFnJW5g/gOSIvkP+H0Xh3XhVI9/n7g== dependencies: "@types/json-schema" "^7.0.7" + fast-xml-parser "^5.5.1" json-pointer "0.6.2" opener@^1.5.2: @@ -8847,6 +8357,11 @@ path-exists@^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-expression-matcher@^1.1.3, path-expression-matcher@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/path-expression-matcher/-/path-expression-matcher-1.5.0.tgz#3b98545dc88ffebb593e2d8458d0929da9275f4a" + integrity sha512-cbrerZV+6rvdQrrD+iGMcZFEiiSrbv9Tfdkvnusy6y0x0GKBXREFg/Y65GhIfm0tnLntThhzCnfKwp1WRjeCyQ== + 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" @@ -8909,6 +8424,11 @@ picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== +picomatch@^4.0.3: + version "4.0.4" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.4.tgz#fd6f5e00a143086e074dffe4c924b8fb293b0589" + integrity sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A== + pkg-dir@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-7.0.0.tgz#8f0c08d6df4476756c5ff29b3282d0bab7517d11" @@ -8934,15 +8454,15 @@ plugin-image-zoom@ataft/plugin-image-zoom: dependencies: medium-zoom "^1.0.4" -pluralize@^8.0.0: +pluralize@8.0.0, pluralize@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== -polished@^4.1.3: - version "4.2.2" - resolved "https://registry.yarnpkg.com/polished/-/polished-4.2.2.tgz#2529bb7c3198945373c52e34618c8fe7b1aa84d1" - integrity sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ== +polished@^4.2.2: + version "4.3.1" + resolved "https://registry.yarnpkg.com/polished/-/polished-4.3.1.tgz#5a00ae32715609f83d89f6f31d0f0261c6170548" + integrity sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA== dependencies: "@babel/runtime" "^7.17.8" @@ -9335,6 +8855,11 @@ postcss-place@^10.0.0: dependencies: postcss-value-parser "^4.2.0" +postcss-prefix-selector@^1.16.1: + version "1.16.1" + resolved "https://registry.yarnpkg.com/postcss-prefix-selector/-/postcss-prefix-selector-1.16.1.tgz#87a77523838b79c0e8aec29f173234b2987cdc04" + integrity sha512-Umxu+FvKMwlY6TyDzGFoSUnzW+NOfMBLyC1tAkIjgX+Z/qGspJeRjVC903D7mx7TuBpJlwti2ibXtWuA7fKMeQ== + postcss-preset-env@^10.2.1: version "10.6.1" resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-10.6.1.tgz#df30cfc54e90af2dcff5f94104e6f272359c9f65" @@ -9519,6 +9044,15 @@ postcss@^8.4.24, postcss@^8.4.33, postcss@^8.5.4: picocolors "^1.1.1" source-map-js "^1.2.1" +postcss@^8.4.45: + version "8.5.10" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.10.tgz#8992d8c30acf3f12169e7c09514a12fed7e48356" + integrity sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ== + dependencies: + nanoid "^3.3.11" + picocolors "^1.1.1" + source-map-js "^1.2.1" + pretty-error@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6" @@ -9540,11 +9074,6 @@ prism-react-renderer@^2.3.0: "@types/prismjs" "^1.26.0" clsx "^2.0.0" -prismjs@^1.27.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== - prismjs@^1.29.0: version "1.30.0" resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.30.0.tgz#d9709969d9d4e16403f6f348c63553b19f0975a9" @@ -9563,7 +9092,7 @@ prompts@^2.4.2: kleur "^3.0.3" sisteransi "^1.0.5" -prop-types@^15.5.0, prop-types@^15.6.2, prop-types@^15.7.2: +prop-types@^15.5.0, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: version "15.8.1" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== @@ -9675,14 +9204,13 @@ rc@1.2.8: minimist "^1.2.0" strip-json-comments "~2.0.1" -react-dom@^17.0.2: - version "17.0.2" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" - integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== +react-dom@^18.2.0: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.3.1.tgz#c2265d79511b57d479b3dd3fdfa51536494c5cb4" + integrity sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw== dependencies: loose-envify "^1.1.0" - object-assign "^4.1.1" - scheduler "^0.20.2" + scheduler "^0.23.2" react-fast-compare@^3.2.0: version "3.2.2" @@ -9759,23 +9287,22 @@ react-router@5.3.4, react-router@^5.3.4: tiny-invariant "^1.0.2" tiny-warning "^1.0.0" -react-tabs@^3.2.2: - version "3.2.3" - resolved "https://registry.yarnpkg.com/react-tabs/-/react-tabs-3.2.3.tgz#ccbb3e1241ad3f601047305c75db661239977f2f" - integrity sha512-jx325RhRVnS9DdFbeF511z0T0WEqEoMl1uCE3LoZ6VaZZm7ytatxbum0B8bCTmaiV0KsU+4TtLGTGevCic7SWg== +react-tabs@^6.0.2: + version "6.1.1" + resolved "https://registry.yarnpkg.com/react-tabs/-/react-tabs-6.1.1.tgz#c56ff0f4e3efb09caa98e0ff456aee6cf87bf2b0" + integrity sha512-CPiuKoMFf89B7QlbFfdBD9XmUWiE3qudQputMVZB8GQvPJZRX/gqjDaDWOPDwGinEfpJKEuBCkGt83Tt4efeyA== dependencies: - clsx "^1.1.0" + clsx "^2.0.0" prop-types "^15.5.0" -react@^17.0.2: - version "17.0.2" - resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" - integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== +react@^18.2.0: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react/-/react-18.3.1.tgz#49ab892009c53933625bd16b2533fc754cab2891" + integrity sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ== dependencies: loose-envify "^1.1.0" - object-assign "^4.1.1" -readable-stream@^2.0.1, readable-stream@~2.3.6: +readable-stream@^2.0.1: version "2.3.8" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== @@ -9797,15 +9324,10 @@ readable-stream@^3.0.6: string_decoder "^1.1.1" util-deprecate "^1.0.1" -readable-stream@~1.0.31: - version "1.0.34" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" - integrity sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "0.0.1" - string_decoder "~0.10.x" +readdirp@^4.0.1: + version "4.1.2" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.1.2.tgz#eb85801435fbf2a7ee58f19e0921b068fc69948d" + integrity sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg== readdirp@~3.6.0: version "3.6.0" @@ -9854,41 +9376,40 @@ recma-stringify@^1.0.0: unified "^11.0.0" vfile "^6.0.0" -redoc@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/redoc/-/redoc-2.0.0.tgz#8b3047ca75b84d31558c6c92da7f84affef35c3e" - integrity sha512-rU8iLdAkT89ywOkYk66Mr+IofqaMASlRvTew0dJvopCORMIPUcPMxjlJbJNC6wsn2vvMnpUFLQ/0ISDWn9BWag== +redoc@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/redoc/-/redoc-2.4.0.tgz#4a978c91bfec426038001b8b6c26d1ebb7c60bb4" + integrity sha512-rFlfzFVWS9XJ6aYAs/bHnLhHP5FQEhwAHDBVgwb9L2FqDQ8Hu8rQ1G84iwaWXxZfPP9UWn7JdWkxI6MXr2ZDjw== dependencies: - "@redocly/openapi-core" "^1.0.0-beta.104" - classnames "^2.3.1" + "@redocly/openapi-core" "^1.4.0" + classnames "^2.3.2" decko "^1.2.0" - dompurify "^2.2.8" - eventemitter3 "^4.0.7" + dompurify "^3.0.6" + eventemitter3 "^5.0.1" json-pointer "^0.6.2" lunr "^2.3.9" mark.js "^8.11.1" - marked "^4.0.15" - mobx-react "^7.2.0" - openapi-sampler "^1.3.0" + marked "^4.3.0" + mobx-react "^9.1.1" + openapi-sampler "^1.5.0" path-browserify "^1.0.1" perfect-scrollbar "^1.5.5" - polished "^4.1.3" - prismjs "^1.27.0" - prop-types "^15.7.2" - react-tabs "^3.2.2" + polished "^4.2.2" + prismjs "^1.29.0" + prop-types "^15.8.1" + react-tabs "^6.0.2" slugify "~1.4.7" stickyfill "^1.1.1" - style-loader "^3.3.1" - swagger2openapi "^7.0.6" + swagger2openapi "^7.0.8" url-template "^2.0.8" -redocusaurus@^1.0.0: - version "1.6.3" - resolved "https://registry.yarnpkg.com/redocusaurus/-/redocusaurus-1.6.3.tgz#cb7e09f055af041d71ab75ca3491b31e0c2f62a4" - integrity sha512-RTo0HyTJwPM1t1ZB5j+yK31ta4Dy2IaGS1j/DKN2Kn2ZsahFO7m3fom/LzRYxzv2H0bd9VxYaxUrlLsMmFzmGA== +redocusaurus@^2.1.1: + version "2.5.0" + resolved "https://registry.yarnpkg.com/redocusaurus/-/redocusaurus-2.5.0.tgz#295b3c9a306a441668e78a0c55120ed05457c950" + integrity sha512-QWJX2hgnEfSDb7fZzS4iZe6aqdAvm/XLCsNv6RkgDw6Pl/lsTZKipP2n1r5QS1CC5hY8eAwsjVXeF7B03vkz2g== dependencies: - docusaurus-plugin-redoc "1.6.0" - docusaurus-theme-redoc "1.6.3" + docusaurus-plugin-redoc "2.5.0" + docusaurus-theme-redoc "2.5.0" reflect-metadata@^0.2.2: version "0.2.2" @@ -10254,11 +9775,6 @@ reusify@^1.0.4: resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== -robust-predicates@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/robust-predicates/-/robust-predicates-3.0.2.tgz#d5b28528c4824d20fc48df1928d41d9efa1ad771" - integrity sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg== - rtlcss@^4.1.0: version "4.3.0" resolved "https://registry.yarnpkg.com/rtlcss/-/rtlcss-4.3.0.tgz#f8efd4d5b64f640ec4af8fa25b65bacd9e07cc97" @@ -10281,18 +9797,6 @@ run-parallel@^1.1.9: dependencies: queue-microtask "^1.2.2" -rw@1: - version "1.3.3" - resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" - integrity sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ== - -sade@^1.7.3: - version "1.8.1" - resolved "https://registry.yarnpkg.com/sade/-/sade-1.8.1.tgz#0a78e81d658d394887be57d2a409bf703a3b2701" - integrity sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A== - dependencies: - mri "^1.1.0" - safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.1.0, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" @@ -10303,7 +9807,7 @@ 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== -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": +"safer-buffer@>= 2.1.2 < 3": version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -10315,27 +9819,28 @@ sass-loader@^16.0.2: dependencies: neo-async "^2.6.2" -sass@^1.63.4: - version "1.63.4" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.63.4.tgz#caf60643321044c61f6a0fe638a07abbd31cfb5d" - integrity sha512-Sx/+weUmK+oiIlI+9sdD0wZHsqpbgQg8wSwSnGBjwb5GwqFhYNwwnI+UWZtLjKvKyFlKkatRK235qQ3mokyPoQ== +sass@^1.93.2: + version "1.99.0" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.99.0.tgz#ff9d1594da4886249dfaafabbeea2dea2dc74b26" + integrity sha512-kgW13M54DUB7IsIRM5LvJkNlpH+WhMpooUcaWGFARkF1Tc82v9mIWkCbCYf+MBvpIUBSeSOTilpZjEPr2VYE6Q== dependencies: - chokidar ">=3.0.0 <4.0.0" - immutable "^4.0.0" + chokidar "^4.0.0" + immutable "^5.1.5" source-map-js ">=0.6.2 <2.0.0" + optionalDependencies: + "@parcel/watcher" "^2.4.1" sax@^1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== -scheduler@^0.20.2: - version "0.20.2" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" - integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== +scheduler@^0.23.2: + version "0.23.2" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.2.tgz#414ba64a3b282892e944cf2108ecc078d115cdc3" + integrity sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ== dependencies: loose-envify "^1.1.0" - object-assign "^4.1.1" schema-dts@^1.1.2: version "1.1.5" @@ -10810,11 +10315,6 @@ string_decoder@^1.1.1: dependencies: safe-buffer "~5.2.0" -string_decoder@~0.10.x: - version "0.10.31" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" - integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== - string_decoder@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" @@ -10873,10 +10373,10 @@ strip-json-comments@~2.0.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== -style-loader@^3.3.1: - version "3.3.3" - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.3.tgz#bba8daac19930169c0c9c96706749a597ae3acff" - integrity sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw== +strnum@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/strnum/-/strnum-2.2.3.tgz#0119fce02749a11bb126a4d686ac5dbdf6e57586" + integrity sha512-oKx6RUCuHfT3oyVjtnrmn19H1SiCqgJSg+54XqURKp5aCMbrXrhLjRN9TjuwMjiYstZ0MzDrHqkGZ5dFTKd+zg== style-to-js@^1.0.0: version "1.1.21" @@ -10899,21 +10399,15 @@ style-to-object@1.0.14: dependencies: inline-style-parser "0.2.7" -styled-components@^5.3.6: - version "5.3.11" - resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.11.tgz#9fda7bf1108e39bf3f3e612fcc18170dedcd57a8" - integrity sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/traverse" "^7.4.5" - "@emotion/is-prop-valid" "^1.1.0" - "@emotion/stylis" "^0.8.4" - "@emotion/unitless" "^0.7.4" - babel-plugin-styled-components ">= 1.12.0" - css-to-react-native "^3.0.0" - hoist-non-react-statics "^3.0.0" - shallowequal "^1.1.0" - supports-color "^5.5.0" +styled-components@^6.1.11: + version "6.4.1" + resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-6.4.1.tgz#5b44c0d9140a28458eba931f53253613a99ebe30" + integrity sha512-ADu2dF53esUzzM4I0ewxhxFtsDd6v4V6dNkg3vG0iFKhnt06sJneTZnRvujAosZwW0XD58IKgGMQoqri4wHRqg== + dependencies: + "@emotion/is-prop-valid" "1.4.0" + css-to-react-native "3.2.0" + csstype "3.2.3" + stylis "4.3.6" stylehacks@^6.1.1: version "6.1.1" @@ -10923,12 +10417,12 @@ stylehacks@^6.1.1: browserslist "^4.23.0" postcss-selector-parser "^6.0.16" -stylis@^4.1.3: - version "4.2.0" - resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51" - integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw== +stylis@4.3.6: + version "4.3.6" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.3.6.tgz#7c7b97191cb4f195f03ecab7d52f7902ed378320" + integrity sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ== -supports-color@^5.3.0, supports-color@^5.5.0: +supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== @@ -10972,7 +10466,7 @@ svgo@^3.0.2, svgo@^3.2.0: csso "^5.0.5" picocolors "^1.0.0" -swagger2openapi@^7.0.6: +swagger2openapi@^7.0.8: version "7.0.8" resolved "https://registry.yarnpkg.com/swagger2openapi/-/swagger2openapi-7.0.8.tgz#12c88d5de776cb1cbba758994930f40ad0afac59" integrity sha512-upi/0ZGkYgEcLeGieoz8gT74oWHA0E7JivX7aN9mAf+Tc7BQoRBvnIGHoPDw+f9TXTW4s6kGYCZJtauP6OYp7g== @@ -11035,14 +10529,6 @@ thingies@^2.5.0: resolved "https://registry.yarnpkg.com/thingies/-/thingies-2.5.0.tgz#5f7b882c933b85989f8466b528a6247a6881e04f" integrity sha512-s+2Bwztg6PhWUD7XMfeYm5qliDdSiZm7M7n8KjTkIsm3l/2lgVRc2/Gx/v+ZX8lT4FMA+i8aQvhcWylldc+ZNw== -through2@^2.0.1: - version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" - thunky@^1.0.2: version "1.1.0" resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" @@ -11120,11 +10606,6 @@ trough@^2.0.0: resolved "https://registry.yarnpkg.com/trough/-/trough-2.2.0.tgz#94a60bd6bd375c152c1df911a4b11d5b0256f50f" integrity sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw== -ts-dedent@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.2.0.tgz#39e4bd297cd036292ae2394eb3412be63f563bb5" - integrity sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ== - tslib@^1.9.3: version "1.14.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" @@ -11317,13 +10798,6 @@ unist-util-stringify-position@^2.0.0: dependencies: "@types/unist" "^2.0.2" -unist-util-stringify-position@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz#03ad3348210c2d930772d64b489580c13a7db39d" - integrity sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg== - 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" @@ -11389,11 +10863,6 @@ unpipe@~1.0.0: resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== -untildify@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" - integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== - update-browserslist-db@^1.0.11: version "1.0.11" resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" @@ -11430,6 +10899,11 @@ update-notifier@^6.0.2: semver-diff "^4.0.0" xdg-basedir "^5.1.0" +uri-js-replace@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/uri-js-replace/-/uri-js-replace-1.0.1.tgz#c285bb352b701c9dfdaeffc4da5be77f936c9048" + integrity sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g== + uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -11451,6 +10925,11 @@ url-template@^2.0.8: resolved "https://registry.yarnpkg.com/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21" integrity sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw== +use-sync-external-store@^1.4.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz#b174bfa65cb2b526732d9f2ac0a408027876f32d" + integrity sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w== + 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" @@ -11476,21 +10955,6 @@ uuid@^8.3.2: resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== -uuid@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" - integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg== - -uvu@^0.5.0: - version "0.5.6" - resolved "https://registry.yarnpkg.com/uvu/-/uvu-0.5.6.tgz#2754ca20bcb0bb59b64e9985e84d2e81058502df" - integrity sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA== - dependencies: - dequal "^2.0.0" - diff "^5.0.0" - kleur "^4.0.3" - sade "^1.7.3" - value-equal@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c" @@ -11573,11 +11037,6 @@ web-namespaces@^2.0.0: resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-2.0.1.tgz#1010ff7c650eccb2592cebeeaf9a1b253fd40692" integrity sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ== -web-worker@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/web-worker/-/web-worker-1.2.0.tgz#5d85a04a7fbc1e7db58f66595d7a3ac7c9c180da" - integrity sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA== - webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" @@ -11825,7 +11284,7 @@ xml-js@^1.6.11: dependencies: sax "^1.2.4" -xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: +xtend@^4.0.0, xtend@^4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== @@ -11855,29 +11314,11 @@ yaml@^1.10.0: resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== -yargs-parser@^20.2.2: - version "20.2.9" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" - integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== - yargs-parser@^21.1.1: version "21.1.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== -yargs@^16.1.0: - version "16.2.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" - integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.0" - y18n "^5.0.5" - yargs-parser "^20.2.2" - yargs@^17.0.1: version "17.7.2" resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" diff --git a/pkg/devspace/config/versions/latest/schema.go b/pkg/devspace/config/versions/latest/schema.go index 7856c6be79..1f63aeefec 100644 --- a/pkg/devspace/config/versions/latest/schema.go +++ b/pkg/devspace/config/versions/latest/schema.go @@ -566,7 +566,7 @@ type KanikoAdditionalMountKeyToPath struct { // CustomConfig tells the DevSpace CLI to build with a custom build script type CustomConfig struct { - // Command to execute to build the image. You can use ${runtime.images.my-image.image} and ${runtime.image.my-image.tag} + // Command to execute to build the image. You can use `${runtime.images.my-image.image}` and `${runtime.images.my-image.tag}` // to reference the image and tag that should get built. Command string `yaml:"command,omitempty" json:"command,omitempty"` // OnChange will determine when the command should be rerun @@ -1138,7 +1138,8 @@ type SyncConfig struct { // well as restart the container after a file changed has happened. OnUpload *SyncOnUpload `yaml:"onUpload,omitempty" json:"onUpload,omitempty" jsonschema_extras:"group=actions"` - // InitialSync defines the initial sync strategy to use when this sync starts. Defaults to mirrorLocal + // InitialSync defines the initial sync strategy to use when this sync starts. Defaults to mirrorLocal. + // You can completely disable this using the `initialSync: disabled` option. InitialSync InitialSyncStrategy `yaml:"initialSync,omitempty" json:"initialSync,omitempty" jsonschema_extras:"group=initial_sync,group_name=Initial Sync"` // WaitInitialSync can be used to tell DevSpace to not wait until the initial sync is done