diff --git a/api/administration-sm/generation-strategy.js b/api/administration-sm/generation-strategy.js index 3d0908043a2..bcb96fc2b6c 100644 --- a/api/administration-sm/generation-strategy.js +++ b/api/administration-sm/generation-strategy.js @@ -1,21 +1,17 @@ const { makeServerDynamic } = require("../make-server-dynamic"); const removeDuplicateVersionBadge = require("../remove-duplicate-version-badge"); -const outputDir = "docs/apis-tools/administration-sm-api/specifications"; -const specFile = "api/administration-sm/administration-sm-openapi.yaml"; - -function preGenerateDocs() { - makeServerDynamic(specFile); +function preGenerateDocs(config) { + makeServerDynamic(config.specPath); } -function postGenerateDocs() { +function postGenerateDocs(config) { removeDuplicateVersionBadge( - `${outputDir}/administration-api-self-managed.info.mdx` + `${config.outputDir}/administration-api-self-managed.info.mdx` ); } module.exports = { - outputDir, preGenerateDocs, postGenerateDocs, }; diff --git a/api/administration-sm/version-8.6/administration-sm-openapi.yaml b/api/administration-sm/version-8.6/administration-sm-openapi.yaml new file mode 100644 index 00000000000..4e5c73fef9f --- /dev/null +++ b/api/administration-sm/version-8.6/administration-sm-openapi.yaml @@ -0,0 +1,249 @@ +openapi: 3.0.0 +components: + examples: {} + headers: {} + parameters: {} + requestBodies: {} + responses: {} + schemas: + ConsoleSMAdminApi.UsageMetricsInstances: + properties: + total: + type: number + format: double + description: The number of usage metrics for a specific type. + required: + - total + type: object + additionalProperties: false + ConsoleSMAdminApi.UsageMetricsTaskUsers: + properties: + total: + type: number + format: double + description: The number of usage metrics for a specific type. + assignees: + items: + type: string + type: array + description: The users that tasks have been assigned to. + required: + - total + - assignees + type: object + additionalProperties: false + ConsoleSMAdminApi.UsageMetricsForCluster: + properties: + id: + type: string + description: The identifier of the cluster. + processInstances: + $ref: "#/components/schemas/ConsoleSMAdminApi.UsageMetricsInstances" + description: The usage metrics for started process instances. + decisionInstances: + $ref: "#/components/schemas/ConsoleSMAdminApi.UsageMetricsInstances" + description: The usage metrics for executed decision instances. + taskUsers: + $ref: "#/components/schemas/ConsoleSMAdminApi.UsageMetricsTaskUsers" + description: The usage metrics for assigned task users. + required: + - id + - processInstances + - decisionInstances + - taskUsers + type: object + additionalProperties: false + ConsoleSMAdminApi.Status: + type: string + enum: + - healthy + - unhealthy + - unknown + ConsoleSMAdminApi.ClusterType: + type: string + enum: + - automation + - management + ConsoleSMAdminApi.AppType: + type: string + enum: + - zeebe-broker + - zeebe-gateway + - operate + - tasklist + - optimize + - modeler + - console + - identity + - unknown + ConsoleSMAdminApi.App: + properties: + type: + $ref: "#/components/schemas/ConsoleSMAdminApi.AppType" + description: + What application is running in the cluster, like Zeebe, Operate, + Tasklist, ... + id: + type: string + description: Unique identifier of the application + status: + $ref: "#/components/schemas/ConsoleSMAdminApi.Status" + description: Indicates if an application is healthy or not + url: + type: string + description: The public URL of the application + generation: + type: string + description: This is the current version of the running application + readiness: + type: string + description: The readiness URL of the application + metrics: + type: string + description: The metrics URL of the application + required: + - type + - id + - status + - url + - generation + type: object + additionalProperties: false + ConsoleSMAdminApi.Cluster: + properties: + uuid: + type: string + description: Unique identifier of the cluster + name: + type: string + description: Name of the cluster + namespace: + type: string + description: Namespace the cluster is running in. + status: + $ref: "#/components/schemas/ConsoleSMAdminApi.Status" + description: Indicates if a cluster is healthy or not + generation: + type: string + description: This is the current version of the running cluster + type: + $ref: "#/components/schemas/ConsoleSMAdminApi.ClusterType" + description: + We're distinguishing between automation and management clusters. + Management clusters include applications that act globally in an + installed context, like Console or Modeler. Automation clusters are + the Zeebe clusters including applications like Operate, Tasklist and + Optimize. + apps: + items: + $ref: "#/components/schemas/ConsoleSMAdminApi.App" + type: array + description: The list of applications running in the cluster + required: + - uuid + - name + - namespace + - status + - generation + - type + - apps + type: object + additionalProperties: false + securitySchemes: + bearer: + type: http + scheme: bearer + bearerFormat: JWT +info: + title: Administration API (Self-Managed) + description: Access the administration API of Console Self-Managed. + version: 1.0.0 + contact: + url: https://www.camunda.com + license: + name: License + url: https://docs.camunda.io/docs/reference/licenses/ +paths: + /admin-api/usage-metrics: + get: + operationId: getUsageMetrics + responses: + "200": + description: Ok + content: + application/json: + schema: + $ref: "#/components/schemas/ConsoleSMAdminApi.UsageMetricsForCluster" + "403": + description: Forbidden + "500": + description: Server-side error + description: Returns usage metrics for a specific cluster for a given time + range. The usage metrics are aggregated over the time range and include + number of started process instances, executed decision instances, and + assigned task users. + summary: Get usage metrics for clusters + tags: + - Usage Metrics + security: + - bearer: [] + parameters: + - description: The unique identifier of the cluster + in: query + name: id + required: true + schema: + type: string + - description: + The start timestamp of the time range as UNIX timestamp in + milliseconds + in: query + name: start + required: true + schema: + format: double + type: number + - description: The end timestamp of the time range as UNIX timestamp in milliseconds + in: query + name: end + required: true + schema: + format: double + type: number + /admin-api/clusters: + get: + operationId: getClusters + responses: + "200": + description: Ok + content: + application/json: + schema: + items: + $ref: "#/components/schemas/ConsoleSMAdminApi.Cluster" + type: array + "403": + description: Forbidden + "500": + description: Server-side error + description: + Returns a list of all automation and management clusters. Each + cluster entry contains the running apps and their status. + summary: Get current clusters + tags: + - Clusters + security: + - bearer: [] + parameters: [] +servers: + - url: "{schema}://{host}:{port}" + variables: + host: + default: localhost + description: The hostname of the API server. + port: + default: "8080" + description: The port of the API server. + schema: + default: http + description: The schema of the API server. diff --git a/api/camunda/generation-strategy.js b/api/camunda/generation-strategy.js index 305cb90d63c..c63445b0bdd 100644 --- a/api/camunda/generation-strategy.js +++ b/api/camunda/generation-strategy.js @@ -1,11 +1,9 @@ const removeDuplicateVersionBadge = require("../remove-duplicate-version-badge"); const replace = require("replace-in-file"); -const outputDir = "docs/apis-tools/camunda-api-rest/specifications"; -const specFile = "api/camunda/camunda-openapi.yaml"; const fs = require("fs"); -function preGenerateDocs() { - const originalSpec = fs.readFileSync(specFile, "utf8"); +function preGenerateDocs(config) { + const originalSpec = fs.readFileSync(config.specPath, "utf8"); console.log("adjusting C8 spec file..."); @@ -18,14 +16,16 @@ function preGenerateDocs() { ]; replace.sync({ - files: specFile, + files: config.specPath, from: specUpdates.map((x) => x.from), to: specUpdates.map((x) => x.to), }); } -function postGenerateDocs() { - removeDuplicateVersionBadge(`${outputDir}/camunda-8-rest-api.info.mdx`); +function postGenerateDocs(config) { + removeDuplicateVersionBadge( + `${config.outputDir}/camunda-8-rest-api.info.mdx` + ); } function addDisclaimer(originalSpec) { @@ -256,7 +256,6 @@ function addFrequentlyLinkedDocs() { } module.exports = { - outputDir, preGenerateDocs, postGenerateDocs, }; diff --git a/api/camunda/version-8.6/camunda-openapi.yaml b/api/camunda/version-8.6/camunda-openapi.yaml new file mode 100644 index 00000000000..ac27f0ce578 --- /dev/null +++ b/api/camunda/version-8.6/camunda-openapi.yaml @@ -0,0 +1,3853 @@ +# Disclaimer: This is a modified version of the Camunda REST API specification, optimized for the documentation. + +openapi: "3.0.3" +info: + title: Camunda 8 REST API + version: "0.1" + description: API for communicating with a Camunda 8 cluster. + license: + name: Camunda License Version 1.0 + url: https://github.com/camunda/camunda/blob/main/licenses/CAMUNDA-LICENSE-1.0.txt +externalDocs: + description: Find out more + url: https://docs.camunda.io/docs/apis-tools/camunda-api-rest/overview/ + +servers: + - url: "{schema}://{host}:{port}/v2" + variables: + host: + default: localhost + description: The hostname of the Camunda 8 REST Gateway. + port: + default: "8080" + description: The port of the Camunda 8 REST API server. + schema: + default: http + description: The schema of the Camunda 8 REST API server. + +paths: + /topology: + get: + tags: + - Cluster + summary: Get cluster topology + description: Obtains the current topology of the cluster the gateway is part of. + responses: + "200": + description: Obtains the current topology of the cluster the gateway is part of. + content: + application/json: + schema: + $ref: "#/components/schemas/TopologyResponse" + /license: + get: + tags: + - License + summary: Get status of Camunda license + description: Obtains the status of the current Camunda license + responses: + "200": + description: Obtains the current status of the Camunda license + content: + application/json: + schema: + $ref: "#/components/schemas/LicenseResponse" + /jobs/activation: + post: + tags: + - Job + summary: Activate jobs + description: | + Iterate through all known partitions and activate jobs up to the requested maximum. + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/JobActivationRequest" + responses: + "200": + description: The list of activated jobs. + content: + application/json: + schema: + $ref: "#/components/schemas/JobActivationResponse" + "400": + description: > + The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /jobs/{jobKey}/failure: + post: + tags: + - Job + summary: Fail job + description: | + Mark the job as failed + parameters: + - name: jobKey + in: path + required: true + description: The key of the job to fail. + schema: + type: integer + format: int64 + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/JobFailRequest" + responses: + "204": + description: The job is failed. + "400": + description: > + The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: > + The job with the given jobKey is not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "409": + description: > + The job with the given key is in the wrong state currently. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /jobs/{jobKey}/error: + post: + tags: + - Job + summary: Report error for job + description: | + Reports a business error (i.e. non-technical) that occurs while processing a job. + parameters: + - name: jobKey + in: path + required: true + description: The key of the job. + schema: + type: integer + format: int64 + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/JobErrorRequest" + responses: + "204": + description: An error is thrown for the job. + "400": + description: > + The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: > + The job with the given jobKey is not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "409": + description: > + The job with the given key is in the wrong state currently. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /jobs/{jobKey}/completion: + post: + tags: + - Job + summary: Complete job + description: | + Complete a job with the given payload, which allows completing the associated service task. + parameters: + - name: jobKey + in: path + required: true + description: The key of the job to complete. + schema: + type: integer + format: int64 + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/JobCompletionRequest" + responses: + "204": + description: The job was completed successfully. + "400": + description: > + The job with the given key cannot be completed. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: The job with the given key was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "409": + description: > + The job with the given key is in the wrong state currently. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /jobs/{jobKey}: + patch: + tags: + - Job + summary: Update a job + description: Update a job with the given key. + parameters: + - name: jobKey + in: path + required: true + description: The key of the job to update. + schema: + type: integer + format: int64 + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/JobUpdateRequest" + responses: + "204": + description: The job was updated successfully. + "400": + description: > + The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: The job with the jobKey is not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "409": + description: > + The job with the given key is in the wrong state currently. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + + /incidents/{incidentKey}/resolution: + post: + tags: + - Incident + summary: Resolve incident + description: > + Marks the incident as resolved; most likely a call to Update job will be necessary + to reset the job’s retries, followed by this call. + parameters: + - name: incidentKey + in: path + required: true + description: Key of the incident to resolve. + schema: + type: integer + format: int64 + responses: + "204": + description: The incident is marked as resolved. + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: The incident with the incidentKey is not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + + /user-tasks/{userTaskKey}/completion: + post: + tags: + - User task + summary: Complete user task + description: Completes a user task with the given key. + parameters: + - name: userTaskKey + in: path + required: true + description: The key of the user task to complete. + schema: + type: integer + format: int64 + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/UserTaskCompletionRequest" + + responses: + "204": + description: The user task was completed successfully. + "400": + description: > + The user task with the given key cannot be completed. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: The user task with the given key was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "409": + description: > + The user task with the given key is in the wrong state currently. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /user-tasks/{userTaskKey}/assignment: + post: + tags: + - User task + summary: Assign user task + description: Assigns a user task with the given key to the given assignee. + parameters: + - name: userTaskKey + in: path + required: true + description: The key of the user task to assign. + schema: + type: integer + format: int64 + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/UserTaskAssignmentRequest" + responses: + "204": + description: The user task's assignment was adjusted. + "400": + description: > + The assignment of the user task with the given key cannot be completed. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: The user task with the given key was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "409": + description: > + The user task with the given key is in the wrong state currently. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /user-tasks/{userTaskKey}: + patch: + tags: + - User task + summary: Update user task + description: Update a user task with the given key. + parameters: + - name: userTaskKey + in: path + required: true + description: The key of the user task to update. + schema: + type: integer + format: int64 + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/UserTaskUpdateRequest" + responses: + "204": + description: The user task was updated successfully. + "400": + description: > + The user task with the given key cannot be updated. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: The user task with the given key was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "409": + description: > + The user task with the given key is in the wrong state currently. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /user-tasks/{userTaskKey}/assignee: + delete: + tags: + - User task + summary: Unassign user task + description: Removes the assignee of a task with the given key. + parameters: + - name: userTaskKey + in: path + required: true + description: The key of the user task. + schema: + type: integer + format: int64 + responses: + "204": + description: The user task was unassigned successfully. + "400": + description: > + The user task with the given key cannot be unassigned. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: The user task with the given key was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "409": + description: > + The user task with the given key is in the wrong state currently. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /user-tasks/search: + post: + tags: + - User task + summary: Query user tasks (alpha) + description: | + Search for user tasks based on given criteria. + + :::note + This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. + See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) + for further details. + ::: + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/UserTaskSearchQueryRequest" + responses: + "200": + description: > + The user task search successful response. + content: + application/json: + schema: + $ref: "#/components/schemas/UserTaskSearchQueryResponse" + "400": + description: > + The user task search query failed. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + + /clock: + put: + tags: + - Clock + summary: Pin internal clock (alpha) + description: | + Set a precise, static time for the Zeebe engine’s internal clock. + When the clock is pinned, it remains at the specified time and does not advance. + To change the time, the clock must be pinned again with a new timestamp. + + :::note + This endpoint is an [alpha feature](/reference/alpha-features.md) and may be subject to change + in future releases. + ::: + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/ClockPinRequest" + responses: + "204": + description: > + The clock was successfully pinned to the specified time in epoch milliseconds. + "400": + description: The required timestamp parameter is missing or it is negative. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /clock/reset: + post: + tags: + - Clock + summary: Reset internal clock (alpha) + description: | + Resets the Zeebe engine’s internal clock to the current system time, enabling it to tick in real-time. + This operation is useful for returning the clock to + normal behavior after it has been pinned to a specific time. + + :::note + This endpoint is an [alpha feature](/reference/alpha-features.md) and may be subject to change + in future releases. + responses: + "204": + description: The clock was successfully reset to the system time. + "500": + description: An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + + /process-instances: + post: + tags: + - Process instance + summary: Create process instance + description: | + Creates and starts an instance of the specified process. + The process definition to use to create the instance can be specified either using its unique key + (as returned by Deploy resources), or using the BPMN process ID and a version. + + Waits for the completion of the process instance before returning a result + when awaitCompletion is enabled. + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/CreateProcessInstanceRequest" + examples: + "By process definition key": + summary: "Create a process instance by processDefinitionKey." + value: + processDefinitionKey: 12345 + variables: {} + "By process definition ID": + summary: "Create a process instance by processDefinitionId and version." + value: + processDefinitionId: "1234-5678" + version: 1 + variables: {} + responses: + "200": + description: The process instance was created. + content: + application/json: + schema: + $ref: "#/components/schemas/CreateProcessInstanceResponse" + "400": + description: The provided data is not valid. + "500": + description: An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /process-instances/search: + post: + tags: + - Process instance + summary: Query process instances (alpha) + description: | + Search for process instances based on given criteria. + + :::note + This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. + See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) + for further details. + ::: + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/ProcessInstanceSearchQueryRequest" + responses: + "200": + description: > + The Process Instance Search successful response. + content: + application/json: + schema: + $ref: "#/components/schemas/ProcessInstanceSearchQueryResponse" + "400": + description: > + The Process Instance Search Query failed. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /process-instances/{processInstanceKey}/cancellation: + post: + tags: + - Process instance + summary: Cancel process instance + description: Cancels a running process instance. + parameters: + - name: processInstanceKey + in: path + required: true + description: The key of the process instance to cancel. + schema: + type: integer + format: int64 + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/CancelProcessInstanceRequest" + responses: + "204": + description: The process instance is canceled. + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: The process instance is not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /process-instances/{processInstanceKey}/migration: + post: + tags: + - Process instance + summary: Migrate process instance + description: | + Migrates a process instance to a new process definition. + This request can contain multiple mapping instructions to define mapping between the active + process instance's elements and target process definition elements. + + Use this to upgrade a process instance to a new version of a process or to + a different process definition, e.g. to keep your running instances up-to-date with the + latest process improvements. + parameters: + - name: processInstanceKey + in: path + required: true + description: The key of the process instance that should be migrated. + schema: + type: integer + format: int64 + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/MigrateProcessInstanceRequest" + responses: + "204": + description: The process instance is migrated. + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: The process instance is not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /process-instances/{processInstanceKey}/modification: + post: + tags: + - Process instance + summary: Modify process instance + description: | + Modifies a running process instance. + This request can contain multiple instructions to activate an element of the process or + to terminate an active instance of an element. + + Use this to repair a process instance that is stuck on an element or took an unintended path. + For example, because an external system is not available or doesn't respond as expected. + parameters: + - name: processInstanceKey + in: path + required: true + description: The key of the process instance that should be modified. + schema: + type: integer + format: int64 + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/ModifyProcessInstanceRequest" + responses: + "204": + description: The process instance is modified. + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: The process instance is not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + + /flownode-instances/search: + post: + tags: + - Flow node Instance + summary: Query flow node instances (alpha) + description: | + Search for flow node instances based on given criteria. + + :::note + This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. + See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) + for further details. + ::: + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/FlowNodeInstanceSearchQueryRequest" + responses: + "200": + description: > + The Flow node instance search successful response. + content: + application/json: + schema: + $ref: "#/components/schemas/FlowNodeInstanceSearchQueryResponse" + "400": + description: > + The Flow node instance Search Query failed. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /decision-definitions/search: + post: + tags: + - Decision definition + summary: Query decision definitions (alpha) + description: | + Search for decision definitions based on given criteria. + + :::note + This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. + See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) + for further details. + ::: + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/DecisionDefinitionSearchQueryRequest" + responses: + "200": + description: > + The Decision Definition Search successful response. + content: + application/json: + schema: + $ref: "#/components/schemas/DecisionDefinitionSearchQueryResponse" + "400": + description: > + The Decision Definition Search Query failed. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /decision-definitions/{decisionDefinitionKey}/xml: + get: + tags: + - Decision definition + summary: Get decision definition XML (alpha) + description: | + Returns decision definition as XML. + + :::note + This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. + See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) + for further details. + ::: + parameters: + - name: decisionDefinitionKey + in: path + required: true + description: The assigned key of the decision definition, which acts as a unique identifier for this decision. + schema: + type: integer + format: int64 + responses: + "200": + description: > + The XML of the decision definition is successfully returned. + content: + text/xml: + schema: + type: string + "400": + description: > + The Decision Definition Get XML failed. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: > + The decision with the given key was not found. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /decision-requirements/search: + post: + tags: + - Decision requirements + summary: Query decision requirements (alpha) + description: | + Search for decision requirements based on given criteria. + + :::note + This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. + See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) + for further details. + ::: + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/DecisionRequirementsSearchQueryRequest" + responses: + "200": + description: > + The decision requirements search successful response. + content: + application/json: + schema: + $ref: "#/components/schemas/DecisionRequirementsSearchQueryResponse" + "400": + description: > + The decision requirements search query failed. + More details are provided in the response body. + + /decision-instances/search: + post: + tags: + - Decision instance + summary: Query decision instances (alpha) + description: | + Search for decision instances based on given criteria. + + :::note + This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. + See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) + for further details. + ::: + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/DecisionInstanceSearchQueryRequest" + responses: + "200": + description: > + The decision instance search successful response. + content: + application/json: + schema: + $ref: "#/components/schemas/DecisionInstanceSearchQueryResponse" + "400": + description: > + The decision instance search query failed. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + + /decision-definitions/evaluation: + post: + tags: + - Decision definition + summary: Evaluate decision + description: | + Evaluates a decision. + You specify the decision to evaluate either by using its unique key (as returned by + DeployResource), or using the decision ID. When using the decision ID, the latest deployed + version of the decision is used. + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/EvaluateDecisionRequest" + examples: + "By decision definition key": + summary: "Evaluate the decision by decisionDefinitionKey." + value: + decisionDefinitionKey: 12345 + variables: {} + "By decision definition ID": + summary: "Evaluate the decision by decisionDefinitionId." + value: + decisionDefinitionId: "1234-5678" + variables: {} + responses: + "200": + description: The decision was evaluated. + content: + application/json: + schema: + $ref: "#/components/schemas/EvaluateDecisionResponse" + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: The decision is not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + + /messages/publication: + post: + tags: + - Message + summary: Publish a message + description: | + Publishes a single message. + Messages are published to specific partitions computed from their correlation keys. + The endpoint does not wait for a correlation result. + Use the message correlation endpoint for such use cases. + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/MessagePublicationRequest" + responses: + "200": + description: The message was published. + content: + application/json: + schema: + $ref: "#/components/schemas/MessagePublicationResponse" + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: Internal server error. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /messages/correlation: + post: + tags: + - Message + summary: Correlate a message + description: | + Publishes a message and correlates it to a subscription. + If correlation is successful it will return the first process instance key the message correlated with. + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/MessageCorrelationRequest" + responses: + "200": + description: The message is correlated to one or more process instances + content: + application/json: + schema: + $ref: "#/components/schemas/MessageCorrelationResponse" + "400": + description: The provided data is not valid + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "403": + description: Unauthorized + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: Not found + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: Internal server error + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + + /documents: + post: + tags: + - Documents + summary: Upload document (alpha) + description: | + Upload a document to the Camunda 8 cluster. + + :::note + This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md). It currently only supports an in-memory document store, + which is not meant for production use. + ::: + parameters: + - name: storeId + in: query + required: false + description: The ID of the document store to upload the document to. + schema: + type: string + - name: documentId + in: query + required: false + description: > + The ID of the document to upload. If not provided, a new ID will be generated. + Specifying an existing ID will result in an error if the document already exists. + schema: + type: string + requestBody: + required: true + content: + multipart/form-data: + schema: + type: object + properties: + file: + type: string + format: binary + metadata: + $ref: "#/components/schemas/DocumentMetadata" + required: + - file + encoding: + metadata: + contentType: application/json + responses: + "201": + description: The document was uploaded successfully. + content: + application/json: + schema: + $ref: "#/components/schemas/DocumentReference" + "400": + description: > + The document upload failed. More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /documents/{documentId}: + get: + tags: + - Documents + summary: Download document (alpha) + description: | + Download a document from the Camunda 8 cluster. + + :::note + This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md). It currently only supports an in-memory document store, + which is not meant for production use. + ::: + parameters: + - name: documentId + in: path + required: true + description: The ID of the document to download. + schema: + type: string + - name: storeId + in: query + required: false + description: The ID of the document store to download the document from. + schema: + type: string + responses: + "200": + description: The document was downloaded successfully. + content: + application/octet-stream: + schema: + type: string + format: binary + "404": + description: > + The document with the given ID was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + delete: + tags: + - Documents + summary: Delete document (alpha) + description: | + Delete a document from the Camunda 8 cluster. + + :::note + This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md). It currently only supports an in-memory document store, + which is not meant for production use. + ::: + parameters: + - name: documentId + in: path + required: true + description: The ID of the document to delete. + schema: + type: string + - name: storeId + in: query + required: false + description: The ID of the document store to delete the document from. + schema: + type: string + responses: + "200": + description: The document was deleted successfully. + "404": + description: > + The document with the given ID was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /document/{documentId}/links: + post: + tags: + - Documents + summary: Create document link (alpha) + description: | + Create a link to a document in the Camunda 8 cluster. + + :::note + This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md). It currently only supports an in-memory document store, + which is not meant for production use. + ::: + parameters: + - name: documentId + in: path + required: true + description: The ID of the document to link. + schema: + type: string + - name: storeId + in: query + required: false + description: The ID of the document store to link the document from. + schema: + type: string + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/DocumentLinkRequest" + responses: + "201": + description: The document link was created successfully. + content: + application/json: + schema: + $ref: "#/components/schemas/DocumentLink" + "400": + description: > + The document link creation failed. More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + + /users/search: + post: + tags: + - User + summary: "Query users (alpha)" + description: | + Search for users based on given criteria. + + :::note + This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. + See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) + for further details. + ::: + operationId: "findAllUsers" + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/UserSearchQueryRequest" + required: true + responses: + "200": + description: "OK" + content: + application/json: + schema: + $ref: "#/components/schemas/UserSearchResponse" + "400": + description: "Bad request" + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "401": + description: "Unauthorized" + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "403": + description: "Forbidden" + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: "Not found" + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: "Internal server error" + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + + /incidents/search: + post: + tags: + - Incident + summary: Query incidents (alpha) + description: | + Search for incidents based on given criteria. + + :::note + This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. + See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) + for further details. + ::: + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/IncidentSearchQueryRequest" + responses: + "200": + description: > + The incident search successful response. + content: + application/json: + schema: + $ref: "#/components/schemas/IncidentSearchQueryResponse" + "400": + description: > + The incident search query failed. + More details are provided in the response body. + "401": + description: "Unauthorized" + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "403": + description: "Forbidden" + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: "Not found" + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: "Internal server error" + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /incidents/{incidentKey}: + get: + tags: + - Incident + summary: Get incident by key (alpha) + description: | + Returns incident as JSON. + :::note + This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. + See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) + for further details. + ::: + parameters: + - name: incidentKey + in: path + required: true + description: The assigned key of the incident, which acts as a unique identifier for this incident. + schema: + type: integer + format: int64 + responses: + "200": + description: > + The incident is successfully returned. + content: + application/json: + schema: + $ref: "#/components/schemas/IncidentItem" + "400": + description: > + The incident Get failed. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: > + The incident with the given key was not found. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: > + An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /deployments: + post: + tags: + - Resource + summary: Deploy resources + description: | + Deploys one or more resources (e.g. processes, decision models, or forms). + This is an atomic call, i.e. either all resources are deployed or none of them are. + requestBody: + required: true + content: + multipart/form-data: + schema: + type: object + properties: + resources: + type: array + description: | + The binary data to create the deployment resources. It is possible to have more than one form part with different form part names for the binary data to create a deployment. + items: + type: string + format: binary + tenantId: + type: string + description: The tenant to deploy the resources to. + required: + - resource + responses: + "200": + description: The resources are deployed. + content: + application/json: + schema: + $ref: "#/components/schemas/DeploymentResponse" + "400": + description: > + The document upload failed. More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /resources/{resourceKey}/deletion: + post: + tags: + - Resource + summary: Delete resource + description: | + Deletes a deployed resource. + This can be a process definition, decision requirements definition, or form definition + deployed using the deploy resources endpoint. Specify the resource you want to delete in the `resourceKey` parameter. + parameters: + - name: resourceKey + in: path + required: true + description: | + The key of the resource to delete. + This can be the key of a process definition, the key of a decision requirements + definition or the key of a form definition + schema: + type: integer + format: int64 + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/DeleteResourceRequest" + responses: + "200": + description: The resource is deleted. + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: The resource is not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + + /element-instances/{elementInstanceKey}/variables: + post: + tags: + - Element instance + summary: Update element instance variables + description: | + Updates all the variables of a particular scope (for example, process instance, flow element instance) with the given variable data. + Specify the element instance in the `elementInstanceKey` parameter. + parameters: + - name: elementInstanceKey + in: path + required: true + description: | + The key of the element instance to update the variables for. + This can be the process instance key (as obtained during instance creation), or a given + element, such as a service task (see the `elementInstanceKey` on the job message). + schema: + type: integer + format: int64 + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/SetVariableRequest" + responses: + "204": + description: The variables were updated. + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + + /signals/broadcast: + post: + tags: + - Signal + summary: Broadcast signal + description: Broadcasts a signal. + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/SignalBroadcastRequest" + responses: + "200": + description: The signal was broadcast. + content: + application/json: + schema: + $ref: "#/components/schemas/SignalBroadcastResponse" + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: The signal is not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + description: An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + +components: + schemas: + UserTaskSearchQueryRequest: + allOf: + - $ref: "#/components/schemas/SearchQueryRequest" + description: User task search query request. + type: object + properties: + filter: + $ref: "#/components/schemas/UserTaskFilterRequest" + UserTaskSearchQueryResponse: + allOf: + - $ref: "#/components/schemas/SearchQueryResponse" + description: User task search query response. + type: object + properties: + items: + type: array + items: + $ref: "#/components/schemas/UserTaskItem" + UserTaskFilterRequest: + description: User task filter request. + type: object + properties: + key: + type: integer + format: int64 + state: + type: string + assignee: + type: string + elementId: + type: string + candidateGroup: + type: string + candidateUser: + type: string + processDefinitionKey: + type: integer + format: int64 + processInstanceKey: + type: integer + format: int64 + tenantIds: + type: string + processDefinitionId: + type: string + variables: + type: array + items: + $ref: "#/components/schemas/UserTaskVariableFilterRequest" + UserTaskVariableFilterRequest: + type: object + properties: + name: + type: string + value: + type: string + UserTaskItem: + type: object + properties: + key: + type: integer + format: int64 + state: + type: string + assignee: + type: string + elementId: + type: string + elementInstanceKey: + type: integer + format: int64 + candidateGroup: + type: array + items: + type: string + candidateUser: + type: array + items: + type: string + processDefinitionId: + type: string + processDefinitionKey: + type: integer + format: int64 + processInstanceKey: + type: integer + format: int64 + formKey: + type: integer + format: int64 + creationDate: + type: string + format: date-time + completionDate: + type: string + format: date-time + followUpDate: + type: string + format: date-time + dueDate: + type: string + format: date-time + tenantIds: + type: string + externalFormReference: + type: string + processDefinitionVersion: + type: integer + format: int32 + customHeaders: + type: object + additionalProperties: + type: string + priority: + type: integer + description: The priority of a user task. The higher the value the higher the priority. + minimum: 0 + maximum: 100 + default: 50 + ProcessInstanceSearchQueryRequest: + allOf: + - $ref: "#/components/schemas/SearchQueryRequest" + type: object + properties: + filter: + allOf: + - $ref: "#/components/schemas/ProcessInstanceFilterRequest" + ProcessInstanceFilterRequest: + type: object + properties: + running: + type: boolean + active: + type: boolean + incidents: + type: boolean + finished: + type: boolean + completed: + type: boolean + canceled: + type: boolean + retriesLeft: + type: boolean + errorMessage: + type: string + activityId: + type: string + startDate: + type: string + format: date-time + endDate: + type: string + format: date-time + bpmnProcessId: + type: string + description: The bpmn process ID. + processDefinitionVersion: + type: integer + format: int32 + variable: + allOf: + - $ref: "#/components/schemas/ProcessInstanceVariableFilterRequest" + batchOperationId: + type: string + parentProcessInstanceKey: + type: integer + format: int64 + tenantId: + type: string + ProcessInstanceVariableFilterRequest: + type: object + properties: + name: + type: string + values: + type: array + items: + type: string + ProcessInstanceSearchQueryResponse: + allOf: + - $ref: "#/components/schemas/SearchQueryResponse" + type: object + properties: + items: + type: array + items: + $ref: "#/components/schemas/ProcessInstanceItem" + ProcessInstanceItem: + type: object + properties: + key: + type: integer + format: int64 + processDefinitionName: + type: string + description: The process name. + processDefinitionVersion: + type: integer + format: int32 + bpmnProcessId: + type: string + parentKey: + type: integer + format: int64 + parentFlowNodeInstanceKey: + type: integer + format: int64 + startDate: + type: string + format: date-time + endDate: + type: string + format: date-time + state: + type: string + enum: + - ACTIVE + - INCIDENT + - COMPLETED + - CANCELED + - UNKNOWN + - UNSPECIFIED + incident: + type: boolean + hasActiveOperation: + type: boolean + processDefinitionKey: + type: integer + format: int64 + tenantId: + type: string + rootInstanceId: + type: string + operations: + type: array + items: + $ref: "#/components/schemas/OperationItem" + callHierarchy: + type: array + items: + $ref: "#/components/schemas/ProcessInstanceReferenceItem" + CancelProcessInstanceRequest: + type: object + nullable: true + properties: + operationReference: + description: | + A reference key chosen by the user that will be part of all records resulting from this operation. + Must be > 0 if provided. + type: integer + format: int64 + minimum: 1 + + FlowNodeInstanceSearchQueryRequest: + description: Flow node instance search request + allOf: + - $ref: "#/components/schemas/SearchQueryRequest" + type: object + properties: + filter: + allOf: + - $ref: "#/components/schemas/FlowNodeInstanceFilterRequest" + FlowNodeInstanceFilterRequest: + type: object + properties: + flowNodeInstanceKey: + type: integer + description: The key of this flow node instance. + format: int64 + processInstanceKey: + type: integer + description: The process instance key. + format: int64 + processDefinitionKey: + type: integer + description: The process definition key. + format: int64 + state: + type: string + description: The state, one of ACTIVE, COMPLETED, TERMINATED. + type: + type: string + description: The flow node type + flowNodeId: + type: string + description: The flow node id + flowNodeName: + type: string + description: The flow node name + treePath: + type: string + description: The path of keys from process instance to this flow node instance separated by '/' + incident: + type: boolean + description: Shows whether this flow node instance has an incident related to + incidentKey: + type: integer + description: The key of incident if field incident is true + format: int64 + tenantId: + description: The tenant id + type: string + FlowNodeInstanceSearchQueryResponse: + allOf: + - $ref: "#/components/schemas/SearchQueryResponse" + type: object + properties: + items: + type: array + items: + $ref: "#/components/schemas/FlowNodeInstanceItem" + FlowNodeInstanceItem: + type: object + properties: + flowNodeInstanceKey: + type: integer + format: int64 + processInstanceKey: + type: integer + format: int64 + processDefinitionKey: + type: integer + format: int64 + startDate: + type: string + endDate: + type: string + flowNodeId: + type: string + flowNodeName: + type: string + treePath: + type: string + type: + type: string + state: + type: string + incident: + type: boolean + incidentKey: + type: integer + format: int64 + tenantId: + type: string + DecisionDefinitionSearchQueryRequest: + allOf: + - $ref: "#/components/schemas/SearchQueryRequest" + type: object + properties: + filter: + allOf: + - $ref: "#/components/schemas/DecisionDefinitionFilterRequest" + DecisionDefinitionFilterRequest: + type: object + properties: + decisionDefinitionKey: + type: integer + format: int64 + description: The assigned key, which acts as a unique identifier for this decision definition. + decisionDefinitionId: + type: string + description: The DMN id of the decision definition. + decisionDefinitionName: + type: string + description: The DMN name of the decision definition. + version: + type: integer + format: int32 + description: The assigned version of the decision definition. + decisionRequirementsId: + type: string + description: the DMN id of the decision requirements graph that the decision definition is part of. + decisionRequirementsKey: + type: integer + format: int64 + description: The assigned key of the decision requirements graph that the decision definition is part of. + tenantId: + type: string + description: The tenant id of the decision definition. + IncidentSearchQueryRequest: + allOf: + - $ref: "#/components/schemas/SearchQueryRequest" + type: object + properties: + filter: + allOf: + - $ref: "#/components/schemas/IncidentFilterRequest" + IncidentFilterRequest: + type: object + properties: + key: + type: integer + format: int64 + description: The assigned key, which acts as a unique identifier for this incident. + processDefinitionKey: + type: integer + format: int64 + description: The process definition key associated to this incident. + processDefinitionId: + type: string + description: The bpmn process id associated to this incident. + processInstanceKey: + type: integer + format: int64 + description: The process instance key associated to this incident. + errorType: + type: string + description: Incident error type with a defined set of values. + enum: + - UNSPECIFIED + - UNKNOWN + - IO_MAPPING_ERROR + - JOB_NO_RETRIES + - CONDITION_ERROR + - EXTRACT_VALUE_ERROR + - CALLED_ELEMENT_ERROR + - UNHANDLED_ERROR_EVENT + - MESSAGE_SIZE_EXCEEDED + - CALLED_DECISION_ERROR + - DECISION_EVALUATION_ERROR + - FORM_NOT_FOUND + errorMessage: + type: string + description: Error message which describes the error in more detail. + flowNodeId: + type: string + description: The flow node id associated to this incident. + flowNodeInstanceKey: + type: integer + format: int64 + description: The flow node instance key associated to this incident. + creationTime: + type: string + description: Date of incident creation. + format: date-time + state: + type: string + description: State of this incident with a defined set of values. + enum: + - ACTIVE + - MIGRATED + - RESOLVED + - PENDING + jobKey: + type: integer + format: int64 + description: The job key, if exists, associated with this incident. + treePath: + type: string + description: The path from process instance via flow node ids and flow node instance keys leading to this incident. + tenantId: + description: The tenant id of the incident. + type: string + IncidentSearchQueryResponse: + allOf: + - $ref: "#/components/schemas/SearchQueryResponse" + type: object + properties: + items: + type: array + items: + $ref: "#/components/schemas/IncidentItem" + IncidentItem: + type: object + properties: + key: + type: integer + format: int64 + description: The assigned key, which acts as a unique identifier for this incident. + processDefinitionKey: + type: integer + format: int64 + description: The process definition key associated to this incident. + processDefinitionId: + type: string + description: The bpmn process id associated to this incident. + processInstanceKey: + type: integer + format: int64 + description: The process instance key associated to this incident. + errorType: + type: string + description: Incident error type with a defined set of values. + enum: + - UNSPECIFIED + - UNKNOWN + - IO_MAPPING_ERROR + - JOB_NO_RETRIES + - CONDITION_ERROR + - EXTRACT_VALUE_ERROR + - CALLED_ELEMENT_ERROR + - UNHANDLED_ERROR_EVENT + - MESSAGE_SIZE_EXCEEDED + - CALLED_DECISION_ERROR + - DECISION_EVALUATION_ERROR + - FORM_NOT_FOUND + errorMessage: + type: string + description: Error message which describes the error in more detail. + flowNodeId: + type: string + description: The flow node id associated to this incident. + flowNodeInstanceKey: + type: integer + format: int64 + description: The flow node instance key associated to this incident. + creationTime: + type: string + description: Date of incident creation. + format: date-time + state: + type: string + description: State of this incident with a defined set of values. + enum: + - ACTIVE + - MIGRATED + - RESOLVED + - PENDING + jobKey: + type: integer + description: The job key, if exists, associated with this incident. + format: int64 + treePath: + type: string + description: The path from process instance via flow node ids and flow node instance keys leading to this incident. + tenantId: + description: The tenant id of the incident. + type: string + OperationItem: + description: " Operation" + type: object + properties: + id: + type: string + batchOperationId: + type: string + type: + type: string + enum: + - RESOLVE_INCIDENT + - CANCEL_PROCESS_INSTANCE + - DELETE_PROCESS_INSTANCE + - ADD_VARIABLE + - UPDATE_VARIABLE + - MODIFY_PROCESS_INSTANCE + - DELETE_DECISION_DEFINITION + - DELETE_PROCESS_DEFINITION + - MIGRATE_PROCESS_INSTANCE + state: + type: string + enum: + - SCHEDULED + - LOCKED + - SENT + - FAILED + - COMPLETED + errorMessage: + type: string + completedDate: + type: string + format: date-time + ProcessInstanceReferenceItem: + description: "Process instance reference description" + type: object + properties: + instanceId: + type: string + processDefinitionId: + type: string + processDefinitionName: + type: string + DecisionDefinitionSearchQueryResponse: + allOf: + - $ref: "#/components/schemas/SearchQueryResponse" + type: object + properties: + items: + type: array + items: + $ref: "#/components/schemas/DecisionDefinitionItem" + DecisionDefinitionItem: + type: object + properties: + decisionDefinitionKey: + type: integer + format: int64 + description: The assigned key, which acts as a unique identifier for this decision definition. + decisionDefinitionId: + type: string + description: The DMN id of the decision definition. + decisionDefinitionName: + type: string + description: The DMN name of the decision definition. + version: + type: integer + format: int32 + description: The assigned version of the decision definition. + decisionRequirementsId: + type: string + description: the DMN id of the decision requirements graph that the decision definition is part of. + decisionRequirementsKey: + type: integer + format: int64 + description: The assigned key of the decision requirements graph that the decision definition is part of. + tenantId: + type: string + description: The tenant id of the decision definition. + AuthorizationPatchRequest: + type: object + properties: + action: + description: Indicates if permissions should be added or removed. + type: string + enum: + - ADD + - REMOVE + resourceType: + description: The type of resource to add/remove perissions to/from. + enum: + - AUTHORIZATION + - MESSAGE + - JOB + - APPLICATION + - TENANT + - DEPLOYMENT + - PROCESS_DEFINITION + - USER_TASK + - DECISION_REQUIREMENTS_DEFINITION + - DECISION_DEFINITION + - USER_GROUP + - USER + - ROLE + permissions: + type: array + description: The permissions to add/remove. + items: + properties: + permissionType: + description: Specifies the type of permissions. + enum: + - CREATE + - READ + - UPDATE + - DELETE + resourceIds: + type: array + description: A list of resource IDs the permission relates to. + items: + type: string + UserRequest: + type: "object" + properties: + password: + type: "string" + username: + type: "string" + name: + type: "string" + email: + type: "string" + UserCreateResponse: + type: "object" + properties: + userKey: + description: The key of the created user + type: "integer" + format: "int64" + UserSearchQueryRequest: + allOf: + - $ref: "#/components/schemas/SearchQueryRequest" + type: object + properties: + filter: + allOf: + - $ref: "#/components/schemas/UserFilterRequest" + UserFilterRequest: + type: object + properties: + username: + type: "string" + name: + type: "string" + email: + type: "string" + UserResponse: + type: "object" + properties: + id: + type: "integer" + format: "int64" + key: + type: "integer" + format: "int64" + username: + type: "string" + name: + type: "string" + email: + type: "string" + UserSearchResponse: + type: object + allOf: + - $ref: "#/components/schemas/SearchQueryResponse" + properties: + items: + type: array + items: + $ref: "#/components/schemas/UserResponse" + TopologyResponse: + description: The response of a topology request. + type: object + properties: + brokers: + description: A list of brokers that are part of this cluster. + type: array + nullable: true + items: + $ref: "#/components/schemas/BrokerInfo" + clusterSize: + description: The number of brokers in the cluster. + type: integer + format: int32 + nullable: true + partitionsCount: + description: The number of partitions are spread across the cluster. + type: integer + format: int32 + nullable: true + replicationFactor: + description: The configured replication factor for this cluster. + type: integer + format: int32 + nullable: true + gatewayVersion: + description: The version of the Zeebe Gateway. + type: string + nullable: true + LicenseResponse: + description: The response of a license request. + type: object + properties: + validLicense: + description: True if the Camunda license is valid, false if otherwise + type: boolean + nullable: false + licenseType: + description: Will return the license type property of the Camunda license + type: string + BrokerInfo: + description: Provides information on a broker node. + type: object + properties: + nodeId: + description: The unique (within a cluster) node ID for the broker. + type: integer + format: int32 + host: + description: The hostname for reaching the broker. + type: string + port: + description: The port for reaching the broker. + type: integer + format: int32 + partitions: + description: A list of partitions managed or replicated on this broker. + type: array + items: + $ref: "#/components/schemas/Partition" + version: + description: The broker version. + type: string + Partition: + description: Provides information on a partition within a broker node. + type: object + properties: + partitionId: + description: The unique ID of this partition. + type: integer + format: int32 + role: + description: Describes the Raft role of the broker for a given partition. + type: string + enum: + - leader + - follower + - inactive + health: + description: Describes the current health of the partition. + type: string + enum: + - healthy + - unhealthy + - dead + UserTaskCompletionRequest: + type: object + properties: + variables: + additionalProperties: true + description: The variables to complete the user task with. + type: object + nullable: true + action: + description: > + A custom action value that will be accessible from user task events resulting + from this endpoint invocation. If not provided, it will default to "complete". + type: string + nullable: true + UserTaskAssignmentRequest: + type: object + properties: + assignee: + description: The assignee for the user task. The assignee must not be empty or `null`. + type: string + nullable: false + allowOverride: + description: > + By default, the task is reassigned if it was already assigned. Set this to `false` + to return an error in such cases. The task must then first be unassigned to + be assigned again. Use this when you have users picking from group task + queues to prevent race conditions. + type: boolean + nullable: true + action: + description: > + A custom action value that will be accessible from user task events resulting + from this endpoint invocation. If not provided, it will default to "assign". + type: string + nullable: true + UserTaskUpdateRequest: + type: object + properties: + changeset: + $ref: "#/components/schemas/Changeset" + action: + description: > + A custom action value that will be accessible from user task events resulting + from this endpoint invocation. If not provided, it will default to "update". + type: string + nullable: true + Changeset: + description: | + JSON object with changed task attribute values. + + The following attributes can be adjusted with this endpoint, additional attributes + will be ignored: + + * `candidateGroups` - reset by providing an empty list + * `candidateUsers` - reset by providing an empty list + * `dueDate` - reset by providing an empty String + * `followUpDate` - reset by providing an empty String + * `priority` - minimum 0, maximum 100, default 50 + + Providing any of those attributes with a `null` value or omitting it preserves + the persisted attribute's value. + + The assignee cannot be adjusted with this endpoint, use the Assign task endpoint. + This ensures correct event emission for assignee changes. + type: object + nullable: true + additionalProperties: true + properties: + dueDate: + type: string + format: date-time + description: The due date of the task. Reset by providing an empty String. + nullable: true + followUpDate: + type: string + format: date-time + description: The follow-up date of the task. Reset by providing an empty String. + nullable: true + candidateUsers: + type: array + description: The list of candidate users of the task. Reset by providing an empty list. + items: + type: string + nullable: true + candidateGroups: + type: array + description: The list of candidate groups of the task. Reset by providing an empty list. + items: + type: string + nullable: true + priority: + type: integer + format: int32 + description: The priority of the task. + minimum: 0 + default: 50 + maximum: 100 + nullable: true + ClockPinRequest: + type: object + properties: + timestamp: + description: The exact time in epoch milliseconds to which the clock should be pinned. + type: integer + format: int64 + required: + - timestamp + JobActivationRequest: + type: object + properties: + type: + description: > + the job type, as defined in the BPMN process (e.g. ) + type: string + worker: + description: the name of the worker activating the jobs, mostly used for logging purposes + type: string + nullable: true + timeout: + description: > + a job returned after this call will not be activated by another call until the + timeout (in ms) has been reached + type: integer + format: int64 + maxJobsToActivate: + description: the maximum jobs to activate by this request + type: integer + format: int32 + fetchVariable: + description: > + a list of variables to fetch as the job variables; if empty, all visible variables at + the time of activation for the scope of the job will be returned + type: array + nullable: true + items: + type: string + requestTimeout: + description: > + The request will be completed when at least one job is activated or after the + requestTimeout (in ms). If the requestTimeout = 0, a default timeout is used. + If the requestTimeout < 0, long polling is disabled and the request is completed + immediately, even when no job is activated. + type: integer + format: int64 + default: 0 + nullable: true + tenantIds: + description: a list of IDs of tenants for which to activate jobs + type: array + items: + type: string + nullable: true + required: + - type + - timeout + - maxJobsToActivate + JobActivationResponse: + description: The list of activated jobs + type: object + properties: + jobs: + type: array + items: + $ref: "#/components/schemas/ActivatedJob" + ActivatedJob: + type: object + properties: + key: + description: the key, a unique identifier for the job + type: integer + format: int64 + type: + description: the type of the job (should match what was requested) + type: string + processInstanceKey: + description: the job's process instance key + type: integer + format: int64 + processDefinitionId: + description: the bpmn process ID of the job's process definition + type: string + processDefinitionVersion: + description: the version of the job's process definition + type: integer + format: int32 + processDefinitionKey: + description: the key of the job's process definition + type: integer + format: int64 + elementId: + description: the associated task element ID + type: string + elementInstanceKey: + description: > + the unique key identifying the associated task, unique within the scope of the + process instance + type: integer + format: int64 + customHeaders: + description: a set of custom headers defined during modelling; returned as a serialized JSON document + type: object + additionalProperties: true + worker: + description: the name of the worker which activated this job + type: string + retries: + description: the amount of retries left to this job (should always be positive) + type: integer + format: int32 + deadline: + description: when the job can be activated again, sent as a UNIX epoch timestamp + type: integer + format: int64 + variables: + description: All variables visible to the task scope, computed at activation time + type: object + additionalProperties: true + tenantId: + description: The ID of the tenant that owns the job + type: string + JobFailRequest: + type: object + properties: + retries: + description: > + The amount of retries the job should have left + type: integer + format: int32 + default: 0 + errorMessage: + description: > + An optional message describing why the job failed. This is particularly useful if a job + runs out of retries and an incident is raised, as this message can help explain why an + incident was raised. + type: string + nullable: true + retryBackOff: + description: > + The backoff timeout (in ms) for the next retry. + type: integer + format: int64 + default: 0 + variables: + additionalProperties: true + description: > + JSON object that will instantiate the variables at the local scope of the job's + associated task. + type: object + nullable: true + JobErrorRequest: + type: object + properties: + errorCode: + description: > + The error code that will be matched with an error catch event. + type: string + errorMessage: + description: > + An error message that provides additional context. + type: string + nullable: true + variables: + additionalProperties: true + description: > + JSON object that will instantiate the variables at the local scope of the error catch event that catches the thrown error. + type: object + nullable: true + required: + - errorCode + JobCompletionRequest: + type: object + properties: + variables: + additionalProperties: true + description: The variables to complete the job with. + type: object + nullable: true + JobUpdateRequest: + type: object + properties: + changeset: + $ref: "#/components/schemas/JobChangeset" + required: + - changeset + JobChangeset: + description: | + JSON object with changed job attribute values. + + The following attributes can be adjusted with this endpoint, additional attributes + will be ignored: + + * `retries` - The new amount of retries for the job; must be a positive number. + * `timeout` - The duration of the new timeout in ms, starting from the current moment. + + Providing any of those attributes with a null value or omitting it preserves the persisted attribute’s value. + + The job cannot be completed or failed with this endpoint, use the complete job or fail job endpoints instead. + type: object + properties: + retries: + type: integer + format: int32 + description: The new amount of retries for the job; must be a positive number. + nullable: true + timeout: + type: integer + format: int64 + description: The duration of the new timeout in ms, starting from the current moment. + nullable: true + + ProblemDetail: + description: > + A Problem detail object as described in [RFC 9457](https://www.rfc-editor.org/rfc/rfc9457). + There may be additional properties specific to the problem type. + type: object + properties: + type: + type: string + format: uri + description: A URI identifying the problem type. + default: about:blank + title: + type: string + description: A summary of the problem type. + status: + type: integer + format: int32 + description: The HTTP status code for this problem. + minimum: 400 + maximum: 600 + detail: + type: string + description: An explanation of the problem in more detail. + instance: + type: string + format: uri + description: A URI identifying the origin of the problem. + SearchQueryRequest: + type: object + properties: + sort: + type: array + items: + allOf: + - $ref: "#/components/schemas/SearchQuerySortRequest" + page: + allOf: + - $ref: "#/components/schemas/SearchQueryPageRequest" + type: object + SearchQueryPageRequest: + type: object + properties: + from: + type: integer + format: int32 + limit: + type: integer + format: int32 + searchAfter: + type: array + items: + type: object + searchBefore: + type: array + items: + type: object + SearchQuerySortRequest: + type: object + properties: + field: + type: string + order: + type: string + default: asc + required: + - field + SearchQueryResponse: + type: object + properties: + page: + allOf: + - $ref: "#/components/schemas/SearchQueryPageResponse" + type: object + SearchQueryPageResponse: + type: object + properties: + totalItems: + type: integer + format: int64 + firstSortValues: + type: array + items: + type: object + lastSortValues: + type: array + items: + type: object + VariableValueFilterRequest: + type: object + properties: + name: + type: string + eq: + type: object + neq: + type: object + gt: + type: object + gte: + type: object + lt: + type: object + lte: + type: object + DecisionRequirementsSearchQueryRequest: + allOf: + - $ref: "#/components/schemas/SearchQueryRequest" + type: object + properties: + filter: + allOf: + - $ref: "#/components/schemas/DecisionRequirementsFilterRequest" + DecisionRequirementsFilterRequest: + type: object + properties: + decisionRequirementsKey: + type: integer + format: int64 + description: The assigned key, which acts as a unique identifier for this decision requirements. + decisionRequirementsName: + type: string + description: The DMN name of the decision requirements. + version: + type: integer + format: int32 + description: The assigned version of the decision requirements. + decisionRequirementsId: + type: string + description: the DMN id of the decision requirements. + tenantId: + type: string + description: The tenant ID of the decision requirements. + DecisionRequirementsSearchQueryResponse: + allOf: + - $ref: "#/components/schemas/SearchQueryResponse" + type: object + properties: + items: + type: array + items: + $ref: "#/components/schemas/DecisionRequirementsItem" + DecisionRequirementsItem: + type: object + properties: + decisionRequirementsKey: + type: integer + format: int64 + description: The assigned key, which acts as a unique identifier for this decision requirements. + decisionRequirementsName: + type: string + description: The DMN name of the decision requirements. + version: + type: integer + format: int32 + description: The assigned version of the decision requirements. + decisionRequirementsId: + type: string + description: the DMN id of the decision requirements. + resourceName: + type: string + description: The name of the resource from which this decision requirements was parsed. + tenantId: + type: string + description: The tenant ID of the decision requirements. + EvaluateDecisionRequest: + type: object + oneOf: + - $ref: "#/components/schemas/EvaluateDecisionRequestByKey" + - $ref: "#/components/schemas/EvaluateDecisionRequestById" + EvaluateDecisionRequestByKey: + type: object + allOf: + - $ref: "#/components/schemas/EvaluateDecisionRequestBase" + properties: + decisionDefinitionKey: + description: | + The unique key identifying the decision to be evaluated. + Cannot be used together with decisionDefinitionId. + type: integer + format: int64 + EvaluateDecisionRequestById: + type: object + allOf: + - $ref: "#/components/schemas/EvaluateDecisionRequestBase" + properties: + decisionDefinitionId: + description: | + The ID of the decision to be evaluated. + Cannot be used together with decisionDefinitionKey. When using the decision ID, the latest + deployed version of the decision is used. + type: string + EvaluateDecisionRequestBase: + type: object + properties: + variables: + description: The message variables as JSON document. + additionalProperties: true + type: object + tenantId: + description: The tenant ID of the decision. + type: string + EvaluateDecisionResponse: + type: object + properties: + decisionDefinitionKey: + description: The unique key identifying the decision which was evaluated. + type: integer + format: int64 + decisionDefinitionId: + description: The ID of the decision which was evaluated. + type: string + decisionDefinitionName: + description: The name of the decision which was evaluated. + type: string + decisionDefinitionVersion: + description: The version of the decision which was evaluated. + type: integer + format: int32 + decisionRequirementsId: + description: The ID of the decision requirements graph that the decision which was evaluated is part of. + type: string + decisionRequirementsKey: + description: The unique key identifying the decision requirements graph that the decision which was evaluated is part of. + type: integer + format: int64 + output: + description: | + JSON document that will instantiate the result of the decision which was evaluated. + type: string + failedDecisionDefinitionId: + description: The ID of the decision which failed during evaluation. + type: string + failureMessage: + description: Message describing why the decision which was evaluated failed. + type: string + tenantId: + description: The tenant ID of the evaluated decision. + type: string + decisionInstanceKey: + description: The unique key identifying this decision evaluation. + type: integer + format: int64 + evaluatedDecisions: + type: array + items: + $ref: "#/components/schemas/EvaluatedDecisionItem" + EvaluatedDecisionItem: + type: object + description: List of decisions that were evaluated within the requested decision evaluation. + properties: + decisionDefinitionKey: + description: The unique key identifying the decision which was evaluate. + type: integer + format: int64 + decisionDefinitionId: + description: The ID of the decision which was evaluated. + type: string + decisionDefinitionName: + description: The name of the decision which was evaluated. + type: string + decisionDefinitionVersion: + description: The version of the decision which was evaluated. + type: integer + format: int32 + decisionDefinitionType: + description: The type of the decision which was evaluated. + type: string + output: + description: | + JSON document that will instantiate the result of the decision which was evaluated. + type: string + tenantId: + description: The tenant ID of the evaluated decision. + type: string + matchedRules: + type: array + items: + $ref: "#/components/schemas/MatchedDecisionRuleItem" + evaluatedInputs: + type: array + items: + $ref: "#/components/schemas/EvaluatedDecisionInputItem" + MatchedDecisionRuleItem: + type: object + description: The decision rules that matched within this decision evaluation. + properties: + ruleId: + description: The ID of the matched rule. + type: string + ruleIndex: + description: The index of the matched rule. + type: integer + format: int32 + evaluatedOutputs: + type: array + items: + $ref: "#/components/schemas/EvaluatedDecisionOutputItem" + EvaluatedDecisionInputItem: + type: object + description: The decision inputs that were evaluated within this decision evaluation. + properties: + inputId: + description: The ID of the evaluated decision input. + type: string + inputName: + description: The name of the evaluated decision input. + type: string + inputValue: + description: The value of the evaluated decision input. + type: string + EvaluatedDecisionOutputItem: + type: object + description: The evaluated decision outputs. + properties: + outputId: + description: The ID of the evaluated decision output. + type: string + outputName: + description: The name of the evaluated decision output. + type: string + outputValue: + description: The value of the evaluated decision output. + type: string + DecisionInstanceSearchQueryRequest: + allOf: + - $ref: "#/components/schemas/SearchQueryRequest" + type: object + properties: + filter: + allOf: + - $ref: "#/components/schemas/DecisionInstanceFilterRequest" + DecisionInstanceFilterRequest: + type: object + properties: + key: + type: integer + format: int64 + description: The key of the decision instance. + state: + $ref: "#/components/schemas/DecisionInstanceStateEnum" + description: The state of the decision instance. + evaluationFailure: + type: string + description: The evaluation failure of the decision instance. + processDefinitionKey: + type: integer + format: int64 + description: The key of the process definition. + processInstanceKey: + type: integer + format: int64 + description: The key of the process instance. + decisionDefinitionKey: + type: integer + format: int64 + description: The key of the decision. + decisionDefinitionId: + type: string + description: The ID of the DMN decision. + decisionDefinitionName: + type: string + description: The name of the DMN decision. + decisionDefinitionVersion: + type: integer + format: int32 + description: The version of the decision. + decisionDefinitionType: + $ref: "#/components/schemas/DecisionInstanceTypeEnum" + description: The type of the decision. + tenantId: + type: string + description: The tenant ID of the decision instance. + DecisionInstanceSearchQueryResponse: + allOf: + - $ref: "#/components/schemas/SearchQueryResponse" + type: object + properties: + items: + type: array + items: + $ref: "#/components/schemas/DecisionInstanceItem" + + DecisionInstanceItem: + type: object + properties: + key: + type: integer + format: int64 + description: The key of the decision instance. + state: + $ref: "#/components/schemas/DecisionInstanceStateEnum" + description: The state of the decision instance. + evaluationDate: + type: string + format: date-time + description: The evaluation date of the decision instance. + evaluationFailure: + type: string + description: The evaluation failure of the decision instance. + processDefinitionKey: + type: integer + format: int64 + description: The key of the process definition. + processInstanceKey: + type: integer + format: int64 + description: The key of the process instance. + decisionDefinitionKey: + type: integer + format: int64 + description: The key of the decision. + decisionDefinitionId: + type: string + description: The ID of the DMN decision. + decisionDefinitionName: + type: string + description: The name of the DMN decision. + decisionDefinitionVersion: + type: integer + format: int32 + description: The version of the decision. + decisionDefinitionType: + $ref: "#/components/schemas/DecisionInstanceTypeEnum" + description: The type of the decision. + result: + type: string + description: The result of the decision instance. + tenantId: + type: string + description: The tenant ID of the decision instance. + + DecisionInstanceTypeEnum: + enum: + - DECISION + - DECISION_TABLE + - LITERAL_EXPRESSION + - RELATION + - UNSPECIFIED + - UNKNOWN + DecisionInstanceStateEnum: + enum: + - EVALUATED + - FAILED + - UNKNOWN + - UNSPECIFIED + + MessageCorrelationRequest: + type: object + properties: + name: + description: > + The message name as defined in the BPMN process + type: string + correlationKey: + description: The correlation key of the message + type: string + default: "" + variables: + description: The message variables as JSON document + additionalProperties: true + type: object + nullable: true + tenantId: + description: the tenant for which the message is published + type: string + nullable: true + MessageCorrelationResponse: + description: | + The message key of the correlated message, as well as the first process instance key it + correlated with. + type: object + properties: + messageKey: + description: The key of the correlated message + type: integer + format: int64 + tenantId: + description: The tenant ID of the correlated message + type: string + processInstanceKey: + description: The key of the first process instance the message correlated with + type: integer + format: int64 + MessagePublicationRequest: + type: object + properties: + name: + description: The name of the message. + type: string + correlationKey: + description: The correlation key of the message. + type: string + default: "" + timeToLive: + description: Timespan (in ms) to buffer the message on the broker. + type: integer + format: int64 + default: 0 + messageId: + description: | + The unique ID of the message. Only useful to ensure only one message with the given ID + will ever be published (during its lifetime). + type: string + nullable: true + variables: + description: The message variables as JSON document. + additionalProperties: true + type: object + nullable: true + tenantId: + description: The tenant of the message sender. + type: string + nullable: true + required: + - name + - correlationKey + MessagePublicationResponse: + description: The message key of the published message. + type: object + properties: + messageKey: + description: The key of the message + type: integer + format: int64 + tenantId: + description: The tenant ID of the message. + type: string + + DocumentReference: + type: object + properties: + documentType: + type: string + description: Document discriminator. Always set to "camunda". + enum: + - camunda + storeId: + type: string + description: The ID of the document store. + documentId: + type: string + description: The ID of the document. + metadata: + $ref: "#/components/schemas/DocumentMetadata" + DocumentMetadata: + type: object + additionalProperties: true + properties: + contentType: + type: string + description: The content type of the document. + fileName: + type: string + description: The name of the file. + expiresAt: + type: string + format: date-time + description: The date and time when the document expires. + size: + type: integer + format: int64 + description: The size of the document in bytes. + DocumentLinkRequest: + type: object + properties: + expiresAt: + type: string + format: date-time + description: The date and time when the link expires. + nullable: true + DocumentLink: + type: object + properties: + url: + type: string + description: The link to the document. + expiresAt: + type: string + format: date-time + description: The date and time when the link expires. + + DeploymentResponse: + type: object + properties: + deploymentKey: + type: integer + format: int64 + description: The unique key identifying the deployment. + deployments: + type: array + items: + $ref: "#/components/schemas/DeploymentMetadata" + tenantId: + type: string + DeploymentMetadata: + type: object + properties: + processDefinition: + $ref: "#/components/schemas/DeploymentProcess" + decisionDefinition: + $ref: "#/components/schemas/DeploymentDecision" + decisionRequirements: + $ref: "#/components/schemas/DeploymentDecisionRequirements" + form: + $ref: "#/components/schemas/DeploymentForm" + DeploymentProcess: + type: object + properties: + processDefinitionId: + type: string + description: | + The bpmn process ID, as parsed during deployment, together with the version forms a + unique identifier for a specific process definition. + processDefinitionVersion: + type: integer + format: int32 + description: The assigned process version. + processDefinitionKey: + type: integer + format: int64 + description: The assigned key, which acts as a unique identifier for this process. + resourceName: + type: string + description: The resource name from which this process was parsed. + tenantId: + type: string + description: The tenant ID of the deployed process. + DeploymentDecision: + type: object + properties: + decisionDefinitionId: + type: string + description: | + The dmn decision ID, as parsed during deployment, together with the version forms a + unique identifier for a specific decision. + version: + type: integer + format: int32 + description: The assigned decision version. + decisionDefinitionKey: + type: integer + format: int64 + description: | + The assigned decision key, which acts as a unique identifier for this decision. + name: + type: string + description: The DMN name of the decision, as parsed during deployment. + tenantId: + type: string + description: The tenant ID of the deployed decision. + decisionRequirementsId: + type: string + description: | + The dmn ID of the decision requirements graph that this decision is part of, as parsed during deployment. + decisionRequirementsKey: + type: integer + format: int64 + description: | + The assigned key of the decision requirements graph that this decision is part of. + DeploymentDecisionRequirements: + type: object + properties: + decisionRequirementsId: + type: string + description: | + The dmn decision requirements ID, as parsed during deployment; together with the versions forms a unique identifier for a specific decision. + version: + type: integer + format: int32 + description: The assigned decision requirements version. + decisionRequirementsName: + type: string + description: The DMN name of the decision requirements, as parsed during deployment. + tenantId: + type: string + description: The tenant ID of the deployed decision requirements. + decisionRequirementsKey: + type: integer + format: int64 + description: | + The assigned decision requirements key, which acts as a unique identifier for this decision requirements. + resourceName: + type: string + description: The resource name from which this decision requirements was parsed. + DeploymentForm: + type: object + properties: + formId: + type: string + description: | + The form ID, as parsed during deployment, together with the version forms a + unique identifier for a specific form. + version: + type: integer + format: int32 + description: The assigned form version. + formKey: + type: integer + format: int64 + description: The assigned key, which acts as a unique identifier for this form. + resourceName: + type: string + description: The resource name from which this form was parsed. + tenantId: + type: string + description: The tenant ID of the deployed form. + + CreateProcessInstanceRequest: + type: object + oneOf: + - $ref: "#/components/schemas/CreateProcessInstanceRequestByKey" + - $ref: "#/components/schemas/CreateProcessInstanceRequestById" + CreateProcessInstanceRequestByKey: + type: object + allOf: + - $ref: "#/components/schemas/CreateProcessInstanceRequestBase" + properties: + processDefinitionKey: + description: | + The unique key identifying the process definition, e.g. returned for a process in the + deploy resources endpoint. Cannot be used together with processDefinitionId. + type: integer + format: int64 + CreateProcessInstanceRequestById: + type: object + allOf: + - $ref: "#/components/schemas/CreateProcessInstanceRequestBase" + properties: + processDefinitionId: + description: | + The BPMN process ID of the process definition to start an instance of. + Cannot be used together with processDefinitionKey. + type: string + processDefinitionVersion: + description: | + The version of the process. Only considered when a processDefinitionId is provided. + By default, the latest version of the process is used. + type: integer + format: int32 + default: -1 + CreateProcessInstanceRequestBase: + type: object + properties: + variables: + description: | + JSON object that will instantiate the variables for the root variable scope + of the process instance. + type: object + additionalProperties: true + tenantId: + description: The tenant ID of the process definition. + type: string + operationReference: + description: | + A reference key chosen by the user that will be part of all records resulting from this operation. + Must be >0 if provided. + type: integer + format: int64 + minimum: 1 + startInstructions: + description: | + List of start instructions. By default, the process instance will start at + the start event. If provided, the process instance will apply start instructions + after it has been created. + type: array + items: + $ref: "#/components/schemas/ProcessInstanceCreationStartInstruction" + awaitCompletion: + description: | + Wait for the process instance to complete. If the process instance completion does + not occur within the requestTimeout, the request will be closed. Disabled by default. + type: boolean + default: false + fetchVariables: + description: | + List of variables names to be included in the response. + If empty, all visible variables in the root scope will be returned. + type: array + items: + type: string + requestTimeout: + description: | + Timeout (in ms) the request waits for the process to complete. By default or + when set to 0, the generic request timeout configured in the cluster is applied. + type: integer + format: int64 + ProcessInstanceCreationStartInstruction: + type: object + properties: + elementId: + description: | + Future extensions might include: + - different types of start instructions + - ability to set local variables for different flow scopes + + For now, however, the start instruction is implicitly a "startBeforeElement" instruction + type: string + CreateProcessInstanceResponse: + type: object + properties: + processDefinitionKey: + description: | + The key of the process definition which was used to create the process instance. + type: integer + format: int64 + processDefinitionId: + description: | + The BPMN process ID of the process definition which was used to create the process. + instance + type: string + processDefinitionVersion: + description: | + The version of the process definition which was used to create the process instance. + type: integer + format: int32 + processInstanceKey: + description: | + The unique identifier of the created process instance; to be used wherever a request + needs a process instance key (e.g. CancelProcessInstanceRequest). + type: integer + format: int64 + tenantId: + description: The tenant ID of the created process instance. + type: string + variables: + additionalProperties: true + description: All the variables visible in the root scope. + type: object + MigrateProcessInstanceRequest: + type: object + properties: + targetProcessDefinitionKey: + description: The key of process definition to migrate the process instance to. + type: integer + format: int64 + mappingInstructions: + type: array + items: + $ref: "#/components/schemas/MigrateProcessInstanceMappingInstruction" + operationReference: + description: > + A reference key chosen by the user that will be part of all records resulting from this operation. + Must be > 0 if provided. + type: integer + format: int64 + minimum: 1 + required: + - targetProcessDefinitionKey + - mappingInstructions + MigrateProcessInstanceMappingInstruction: + type: object + description: | + The mapping instructions describe how to map elements from the source process definition to the target process definition. + properties: + sourceElementId: + description: The element ID to migrate from. + type: string + targetElementId: + description: The element ID to migrate into. + type: string + required: + - sourceElementId + - targetElementId + ModifyProcessInstanceRequest: + type: object + properties: + activateInstructions: + type: array + items: + $ref: "#/components/schemas/ModifyProcessInstanceActivateInstruction" + terminateInstructions: + type: array + items: + $ref: "#/components/schemas/ModifyProcessInstanceTerminateInstruction" + operationReference: + description: > + A reference key chosen by the user that will be part of all records resulting from this operation. + Must be > 0 if provided. + type: integer + format: int64 + minimum: 1 + ModifyProcessInstanceActivateInstruction: + type: object + description: | + Instructions describing which elements should be activated in which scopes and which variables should be created. + properties: + elementId: + description: The ID of the element that should be activated. + type: string + ancestorElementInstanceKey: + description: | + The key of the ancestor scope the element instance should be created in. + Set to -1 to create the new element instance within an existing element instance of the + flow scope. + type: integer + format: int64 + default: -1 + variableInstructions: + type: array + items: + $ref: "#/components/schemas/ModifyProcessInstanceVariableInstruction" + required: + - elementId + ModifyProcessInstanceVariableInstruction: + type: object + description: Instructions describing which variables should be created. + properties: + variables: + description: | + JSON document that will instantiate the variables for the root variable scope of the process instance. + It must be a JSON object, as variables will be mapped in a key-value fashion. + additionalProperties: true + type: object + scopeId: + description: | + The ID of the element in which scope the variables should be created. + Leave empty to create the variables in the global scope of the process instance + type: string + default: "" + required: + - variables + ModifyProcessInstanceTerminateInstruction: + type: object + description: Instructions describing which elements should be terminated. + properties: + elementInstanceKey: + description: The ID of the element that should be terminated. + type: integer + format: int64 + required: + - elementInstanceKey + + SetVariableRequest: + type: object + properties: + variables: + description: JSON object representing the variables to set in the element’s scope. + additionalProperties: true + type: object + local: + description: | + If set to true, the variables are merged strictly into the local scope (as specified by the `elementInstanceKey`). + Otherwise, the variables are propagated to upper scopes and set at the outermost one. + + Let’s consider the following example: + + There are two scopes '1' and '2'. + Scope '1' is the parent scope of '2'. The effective variables of the scopes are: + 1 => { "foo" : 2 } + 2 => { "bar" : 1 } + + An update request with elementInstanceKey as '2', variables { "foo" : 5 }, and local set + to true leaves scope '1' unchanged and adjusts scope '2' to { "bar" : 1, "foo" 5 }. + + By default, with local set to false, scope '1' will be { "foo": 5 } + and scope '2' will be { "bar" : 1 }. + type: boolean + default: false + operationReference: + description: > + A reference key chosen by the user that will be part of all records resulting from this operation. + Must be > 0 if provided. + type: integer + format: int64 + minimum: 1 + required: + - variables + + DeleteResourceRequest: + type: object + nullable: true + properties: + operationReference: + description: | + A reference key chosen by the user that will be part of all records resulting from this operation. + Must be > 0 if provided. + type: integer + format: int64 + minimum: 1 + + SignalBroadcastRequest: + type: object + properties: + signalName: + description: The name of the signal to broadcast. + type: string + variables: + additionalProperties: true + description: The signal variables as a JSON object. + type: object + tenantId: + description: The ID of the tenant that owns the signal. + type: string + required: + - signalName + SignalBroadcastResponse: + type: object + properties: + signalKey: + description: The unique ID of the signal that was broadcast. + type: integer + format: int64 + tenantId: + description: The tenant ID of the signal that was broadcast. + type: string + + securitySchemes: + bearerAuth: + type: http + scheme: bearer + bearerFormat: JWT diff --git a/api/generate-api-docs.js b/api/generate-api-docs.js index e8dd7335ebd..e6591537d92 100644 --- a/api/generate-api-docs.js +++ b/api/generate-api-docs.js @@ -1,60 +1,161 @@ const { execSync } = require("child_process"); -// More strategies to come, for other APIs. +// Each API has a custom strategy, for modifying the schema or generated docs. const operate = require("./operate/generation-strategy"); const tasklist = require("./tasklist/generation-strategy"); const adminsm = require("./administration-sm/generation-strategy"); const camunda = require("./camunda/generation-strategy"); +const zeebe = require("./zeebe/generation-strategy"); const apiStrategies = { operate, tasklist, adminsm, camunda, + zeebe, }; -// Execute a command as if we were in the terminal -function runCommand(command) { - const result = execSync(command, { stdio: "inherit" }); - return result; -} - // API name must be passed in as an arg. -const api = process.argv[2]; -if (api === undefined) { +const requestedAPI = process.argv[2]; +if (requestedAPI === undefined) { const validAPIs = Object.keys(apiStrategies).join(", "); console.log(`Please specify an API name. Valid names: ${validAPIs}`); process.exit(); } // The API name must be recognized. -const strategy = apiStrategies[api]; +const strategy = apiStrategies[requestedAPI]; if (strategy === undefined) { const validAPIs = Object.keys(apiStrategies).join(", "); - console.error(`Invalid API name ${api}. Valid names: ${validAPIs}`); + console.error(`Invalid API name ${requestedAPI}. Valid names: ${validAPIs}`); + process.exit(); +} + +// Version is an optional argument. If not provided, we assume "vNext". +const requestedVersion = process.argv[3]; + +// Hack: zeebe API is removed at version 8.7, don't allow regeneration in vNext. +if (requestedAPI === "zeebe" && requestedVersion === undefined) { + console.error("Zeebe API docs are no longer in active development."); process.exit(); } +// Find the corresponding configuration in docusaurus.config.js. +const configs = loadAPIConfigs(); +const apiConfig = buildAPIConfig(configs, requestedAPI, requestedVersion); + // All APIs will execute these same steps, with custom-per-API steps // implemented by each API's generation-strategy.js. const steps = [ // Remove old docs - () => runCommand(`docusaurus clean-api-docs ${api} -p api-${api}-openapi`), + () => runCommand(buildCleanCommand(apiConfig)), // Run any custom steps before generation - strategy.preGenerateDocs, + () => strategy.preGenerateDocs(apiConfig), // Generate the docs - () => runCommand(`docusaurus gen-api-docs ${api} -p api-${api}-openapi`), + () => runCommand(buildGenerateCommand(apiConfig)), // Run any custom steps after generation - strategy.postGenerateDocs, + () => strategy.postGenerateDocs(apiConfig), // Run prettier against the generated docs. Twice. Yes, twice. // I don't know why, but the first run always leaves an extra blank line, // which the second execution removes. - () => runCommand(`prettier --write ${strategy.outputDir}`), - () => runCommand(`prettier --write ${strategy.outputDir}`), + () => runCommand(`prettier --write ${apiConfig.outputDir}`), + () => runCommand(`prettier --write ${apiConfig.outputDir}`), ]; // Run the steps! steps.forEach((step) => step()); + +// ---------- vvvvvvv helper functions vvvvvvv ---------- + +// Execute a command as if we were in the terminal +function runCommand(command) { + const result = execSync(command, { stdio: "inherit" }); + return result; +} + +// Load the API configs from the docusaurus.config.js file. +function loadAPIConfigs() { + const config = require("../docusaurus.config"); + const apiConfigs = config.plugins + .filter( + (plugin) => + Array.isArray(plugin) && plugin[0] === "docusaurus-plugin-openapi-docs" + ) + .reduce((acc, plugin) => { + const [_, options] = plugin; + configObject = options.config; + const apiName = Object.keys(configObject)[0]; + acc[apiName] = configObject[apiName]; + return acc; + }, {}); + + // Reduce should give a shape like this: + // { + // "operate": { + // "specPath": "api/operate/operate-openapi.yaml", + // "outputDir": "docs/apis-tools/operate-api/specifications", + // ... + // "versions": { + // "8.6": { + // "specPath": "api/operate/version-8.6/operate-openapi.yaml", + // "outputDir": "versioned_docs/version-8.6/apis-tools/operate-api/specifications", + // ... + // } + // } + // }, + // "tasklist": { + // .... + + return apiConfigs; +} + +// Find the API config for the given API and version. +function buildAPIConfig(apiConfigs, requestedAPI, requestedVersion) { + const apiConfig = apiConfigs[requestedAPI]; + if (apiConfig === undefined) { + console.error( + `No configuration found for API ${requestedAPI}. Check docusaurus.config.js.` + ); + process.exit(); + } + + let matchingConfig = apiConfig; + + if (requestedVersion !== undefined) { + matchingConfig = apiConfig.versions[requestedVersion]; + if (matchingConfig === undefined) { + console.error( + `No config found for API ${requestedAPI} version ${requestedVersion}. Check docusaurus.config.js.` + ); + process.exit(); + } + } + + return { + apiName: requestedAPI, + specPath: matchingConfig.specPath, + outputDir: matchingConfig.outputDir, + version: requestedVersion || "next", + }; +} + +// Build the command to clean the API docs. +function buildCleanCommand(apiConfig) { + const { apiName, version } = apiConfig; + if (version === "next") { + return `docusaurus clean-api-docs ${apiName} -p api-${apiName}-openapi`; + } + return `docusaurus clean-api-docs:version ${apiName}:${version} -p api-${apiName}-openapi`; +} + +// Build the command to generate the API docs. +function buildGenerateCommand(apiConfig) { + const { apiName, version } = apiConfig; + if (version === "next") { + return `docusaurus gen-api-docs ${apiName} -p api-${apiName}-openapi`; + } + return `docusaurus gen-api-docs:version ${apiName}:${version} -p api-${apiName}-openapi`; +} diff --git a/api/operate/generation-strategy.js b/api/operate/generation-strategy.js index 47d5f7dc2d6..892500ee571 100644 --- a/api/operate/generation-strategy.js +++ b/api/operate/generation-strategy.js @@ -1,19 +1,17 @@ const { makeServerDynamic } = require("../make-server-dynamic"); const removeDuplicateVersionBadge = require("../remove-duplicate-version-badge"); -const outputDir = "docs/apis-tools/operate-api/specifications"; -const specFile = "api/operate/operate-openapi.yaml"; - -function preGenerateDocs() { - makeServerDynamic(specFile); +function preGenerateDocs(config) { + makeServerDynamic(config.specPath); } -function postGenerateDocs() { - removeDuplicateVersionBadge(`${outputDir}/operate-public-api.info.mdx`); +function postGenerateDocs(config) { + removeDuplicateVersionBadge( + `${config.outputDir}/operate-public-api.info.mdx` + ); } module.exports = { - outputDir, preGenerateDocs, postGenerateDocs, }; diff --git a/api/operate/version-8.6/operate-openapi.yaml b/api/operate/version-8.6/operate-openapi.yaml new file mode 100644 index 00000000000..823e7248016 --- /dev/null +++ b/api/operate/version-8.6/operate-openapi.yaml @@ -0,0 +1,1999 @@ +--- +openapi: 3.0.1 +info: + title: Operate Public API + description: + To access active and completed process instances in Operate for monitoring + and troubleshooting + contact: + url: https://www.camunda.com + license: + name: License + url: https://docs.camunda.io/docs/reference/licenses/ + version: 1.0.0 +servers: + - url: "{schema}://{host}:{port}" + variables: + host: + default: localhost + description: The hostname of the API server. + port: + default: "8080" + description: The port of the API server. + schema: + default: http + description: The schema of the API server. +tags: + - name: ProcessDefinition + description: Process Definition API + - name: DecisionDefinition + description: Decision Definition API + - name: DecisionInstance + description: Decision Instance API + - name: FlownodeInstance + description: Flownode Instance API + - name: Variable + description: Variable API + - name: ProcessInstance + description: Process Instance API + - name: DecisionRequirements + description: Decision Requirements API + - name: Incident + description: Incident API +paths: + "/v1/variables/search": + post: + tags: + - Variable + summary: Search variables for process instances + operationId: search + requestBody: + description: Search variables + content: + application/json: + schema: + "$ref": "#/components/schemas/QueryVariable" + examples: + All: + description: Returns all variables (default return list size is 10) + value: {} + Size: + description: "Returns 20 variables " + value: + size: 20 + Filter and sort: + description: + Returns all variables with 'processInstanceKey' '9007199254741196' + sorted ascending by name + value: + filter: + processInstanceKey: "9007199254741196" + sort: + - field: name + order: ASC + Paging: + description: + "Returns next variables for 'processInstanceKey' ascending + by 'name'. (Copy value of 'sortValues' field of previous results) " + value: + filter: + processInstanceKey: "9007199254741196" + sort: + - field: name + order: ASC + searchAfter: + - small + - 9007199254741200 + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/ResultsVariable" + "400": + description: Data invalid + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Not Found + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/process-instances/search": + post: + tags: + - ProcessInstance + summary: Search process instances + operationId: search_1 + requestBody: + description: Search process instances + content: + application/json: + schema: + "$ref": "#/components/schemas/QueryProcessInstance" + examples: + All: + description: + Returns all process instances (default return list size + is 10) + value: {} + Sorted by field: + description: Returns process instances sorted ascending by bpmnProcessId + value: + sort: + - field: bpmnProcessId + order: ASC + Sorted and paged with size: + description: + "Returns max 3 process instances after 'bigVarProcess' + and key 6755399441055870 sorted ascending by bpmnProcessId \nTo + get the next page copy the value of 'sortValues' into 'searchAfter' + value.\nSort specification should match the searchAfter specification" + value: + size: 3 + sort: + - field: bpmnProcessId + order: ASC + searchAfter: + - bigVarProcess + - 6755399441055870 + Filtered and sorted: + description: + Returns max 50 process instances, filtered by processVersion + of 2 sorted ascending by bpmnProcessId + value: + filter: + processVersion: 2 + size: 50 + sort: + - field: bpmnProcessId + order: ASC + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/ResultsProcessInstance" + "400": + description: Data invalid + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Not Found + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/process-definitions/search": + post: + tags: + - ProcessDefinition + summary: Search process definitions + operationId: search_2 + requestBody: + description: Search examples + content: + application/json: + schema: + "$ref": "#/components/schemas/QueryProcessDefinition" + examples: + All: + description: All process instances (default size is 10) + value: {} + Size of returned list: + description: Search process instances and return list of size 5 + value: + size: 5 + Sort: + description: Search process instances and sort by name + value: + sort: + - field: name + order: ASC + Sort and size: + description: + Search process instances, sort descending by name list + size of 5 + value: + size: 5 + sort: + - field: name + order: DESC + Sort and page: + description: + "Search process instances,sort by name and page results + of size 5. \n To get the next page copy the value of 'sortValues' + into 'searchAfter' value.\nSort specification should match the searchAfter + specification" + value: + size: 5 + sort: + - field: name + order: ASC + searchAfter: + - Called Process + - "2251799813687281" + "Filter and sort ": + description: Filter by version and sort by bpmnProcessId + value: + filter: + version: 1 + size: 50 + sort: + - field: bpmnProcessId + order: ASC + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/ResultsProcessDefinition" + "400": + description: Data invalid + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Not Found + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/incidents/search": + post: + tags: + - Incident + summary: Search incidents + operationId: search_3 + requestBody: + description: Search incidents + content: + application/json: + schema: + "$ref": "#/components/schemas/QueryIncident" + examples: + All: + description: Returns all incidents (default return list size is 10). + value: {} + Return 20 items: + description: Returns max 20 incidents. + value: + size: 20 + Sort by field: + description: Returns incidents sorted descending by 'creationTime' + value: + sort: + - field: creationTime + order: DESC + Filter by field: + description: + Returns incidents filtered by 'type'. Field 'message' + can't be used for filter and sort + value: + filter: + type: UNHANDLED_ERROR_EVENT + Filter and sort: + description: + Filter by 'type' and 'processDefinitionKey', sorted descending + by 'creationTime'. + value: + filter: + type: CALLED_ELEMENT_ERROR + processDefinitionKey: "2251799813686167" + sort: + - field: creationTime + order: DESC + Page by key: + description: + Returns paged by using previous returned 'sortValues' + value (array). + value: + searchAfter: + - 2251799813687785 + Filter, sort and page: + description: + Returns incidents filtered by 'type' and 'processDefinitionKey', + sorted descending by 'creationTime' and paged from previous 'sortValues' + value. + value: + filter: + type: CALLED_ELEMENT_ERROR + processDefinitionKey: "2251799813686167" + sort: + - field: creationTime + order: DESC + searchAfter: + - 1646904085499 + - 9007199254743288 + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/ResultsIncident" + "400": + description: Data invalid + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Not Found + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/flownode-instances/search": + post: + tags: + - FlownodeInstance + summary: Search flownode-instances + operationId: search_4 + requestBody: + description: Search flownode-instances + content: + application/json: + schema: + "$ref": "#/components/schemas/QueryFlowNodeInstance" + examples: + All: + description: + Returns all flownode instances (default return list size + is 10). + value: {} + Return 20 items: + description: Returns max 20 incidents. + value: + size: 20 + Sort by field: + description: Returns flownode instances sorted descending by 'endDate' + value: + sort: + - field: endDate + order: DESC + Filter by field: + description: Returns flownode instances filtered by 'incident'. + value: + filter: + incident: true + Filter and sort: + description: Filter by 'incident' , sorted descending by 'startDate'. + value: + filter: + incident: true + sort: + - field: startDate + order: DESC + Page by key: + description: + Returns paged by using previous returned 'sortValues' + value (array). Choose an existing key from previous searches to + try this. + value: + searchAfter: + - 2251799813687785 + Filter, sort and page: + description: + Returns flownode instances filtered by 'incident' , sorted + ascending by 'startDate' and paged from previous 'sortValues' value. + value: + filter: + incident: true + sort: + - field: startDate + order: ASC + searchAfter: + - 1646904085499 + - 9007199254743288 + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/ResultsFlowNodeInstance" + "400": + description: Data invalid + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Not Found + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/drd/search": + post: + tags: + - DecisionRequirements + summary: Search decision requirements + operationId: search_5 + requestBody: + description: Search examples + content: + application/json: + schema: + "$ref": "#/components/schemas/QueryDecisionRequirements" + examples: + All: + description: All decision requirements (default size is 10) + value: {} + Size of returned list: + description: + Search decision requirements and return list of size + 5 + value: + size: 5 + Sort: + description: Search decision requirements and sort ascending by name + value: + sort: + - field: name + order: ASC + Sort and size: + description: + Search decision requirements, sort descending by name, + and return list of size 5 + value: + size: 5 + sort: + - field: name + order: DESC + Sort and page: + description: |- + Search decision requirements, sort ascending by name, and return page of size 5. + To get the next page, copy the value of 'sortValues' into 'searchAfter' value. + Sort specification should match the searchAfter specification. + value: + size: 5 + sort: + - field: name + order: ASC + searchAfter: + - Invoice Business Decisions + - "2251799813686550" + "Filter and sort ": + description: Filter by version and sort by decisionRequirementsId + value: + filter: + version: 1 + size: 50 + sort: + - field: decisionRequirementsId + order: ASC + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/ResultsDecisionRequirements" + "400": + description: Data invalid + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Not Found + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/decision-instances/search": + post: + tags: + - DecisionInstance + summary: Search decision instances + operationId: search_6 + requestBody: + description: Search examples + content: + application/json: + schema: + "$ref": "#/components/schemas/QueryDecisionInstance" + examples: + All: + description: All decision instances (default size is 10) + value: {} + Size of returned list: + description: Search decision instances and return list of size 5 + value: + size: 5 + Sort: + description: Search decision instances and sort ascending by decisionName + value: + sort: + - field: decisionName + order: ASC + Sort and size: + description: + Search decision instances, sort descending by decisionName, + and return list of size 5 + value: + size: 5 + sort: + - field: decisionName + order: DESC + Sort and page: + description: |- + Search decision instances, sort ascending by decisionName, and return page of size 5. + To get the next page, copy the value of 'sortValues' into 'searchAfter' value. + Sort specification should match the searchAfter specification. + value: + size: 5 + sort: + - field: decisionName + order: ASC + searchAfter: + - Invoice Classification + - "2251799813686550" + "Filter and sort ": + description: Filter by decisionVersion and sort by decisionId + value: + filter: + decisionVersion: 1 + size: 50 + sort: + - field: decisionId + order: ASC + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/ResultsDecisionInstance" + "400": + description: Data invalid + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Not Found + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/decision-definitions/search": + post: + tags: + - DecisionDefinition + summary: Search decision definitions + operationId: search_7 + requestBody: + description: Search examples + content: + application/json: + schema: + "$ref": "#/components/schemas/QueryDecisionDefinition" + examples: + All: + description: All decision definitions (default size is 10) + value: {} + Size of returned list: + description: Search decision definitions and return list of size 5 + value: + size: 5 + Sort: + description: Search decision definitions and sort ascending by name + value: + sort: + - field: name + order: ASC + Sort and size: + description: + Search decision definitions, sort descending by name, + and return list of size 5 + value: + size: 5 + sort: + - field: name + order: DESC + Sort and page: + description: |- + Search decision definitions, sort ascending by name, and return page of size 5. + To get the next page, copy the value of 'sortValues' into 'searchAfter' value. + Sort specification should match the searchAfter specification. + value: + size: 5 + sort: + - field: name + order: ASC + searchAfter: + - Decide the Dish + - "2251799813686550" + "Filter and sort ": + description: Filter by version and sort by decisionId + value: + filter: + version: 1 + size: 50 + sort: + - field: decisionId + order: ASC + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/ResultsDecisionDefinition" + "400": + description: Data invalid + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Not Found + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/variables/{key}": + get: + tags: + - Variable + summary: Get variable by key + operationId: byKey + parameters: + - name: key + in: path + description: Key of variable + required: true + schema: + type: integer + format: int64 + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/Variable" + "400": + description: Invalid request + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Requested resource not found + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/process-instances/{key}": + get: + tags: + - ProcessInstance + summary: Get process instance by key + operationId: byKey_1 + parameters: + - name: key + in: path + description: Key of process instance + required: true + schema: + type: integer + format: int64 + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/ProcessInstance" + "400": + description: Invalid request + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Requested resource not found + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + delete: + tags: + - ProcessInstance + summary: Delete process instance and all dependant data by key + operationId: delete + parameters: + - name: key + in: path + description: Key of process instance + required: true + schema: + type: integer + format: int64 + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/ChangeStatus" + "400": + description: Invalid request + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Requested resource not found + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/process-instances/{key}/statistics": + get: + tags: + - ProcessInstance + summary: Get flow node statistic by process instance id + operationId: getStatistics + parameters: + - name: key + in: path + description: Key of process instance + required: true + schema: + type: integer + format: int64 + responses: + "200": + description: + Success. Returns statistics for the given process instance, + grouped by flow nodes + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/FlowNodeStatistics" + "400": + description: Invalid request + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Requested resource not found + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/process-instances/{key}/sequence-flows": + get: + tags: + - ProcessInstance + summary: Get sequence flows of process instance by key + operationId: sequenceFlowsByKey + parameters: + - name: key + in: path + description: Key of process instance + required: true + schema: + type: integer + format: int64 + responses: + "200": + description: Success + content: + "*/*": + schema: + type: array + items: + type: string + "400": + description: Invalid request + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Requested resource not found + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/process-definitions/{key}": + get: + tags: + - ProcessDefinition + summary: Get process definition by key + operationId: byKey_2 + parameters: + - name: key + in: path + description: Key of process definition + required: true + schema: + type: integer + format: int64 + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/ProcessDefinition" + "400": + description: Invalid request + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Requested resource not found + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/process-definitions/{key}/xml": + get: + tags: + - ProcessDefinition + summary: Get process definition as XML by key + operationId: xmlByKey + parameters: + - name: key + in: path + description: Key of process definition + required: true + schema: + type: integer + format: int64 + responses: + "200": + description: Success + content: + text/xml: + schema: + type: string + "400": + description: Invalid request + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Requested resource not found + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/incidents/{key}": + get: + tags: + - Incident + summary: Get incident by key + operationId: byKey_3 + parameters: + - name: key + in: path + description: Key of incident + required: true + schema: + type: integer + format: int64 + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/Incident" + "400": + description: Invalid request + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Requested resource not found + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/flownode-instances/{key}": + get: + tags: + - FlownodeInstance + summary: Get flow node instance by key + operationId: byKey_4 + parameters: + - name: key + in: path + description: Key of flownode instance + required: true + schema: + type: integer + format: int64 + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/FlowNodeInstance" + "400": + description: Invalid request + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Requested resource not found + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/drd/{key}": + get: + tags: + - DecisionRequirements + summary: Get decision requirements by key + operationId: byKey_5 + parameters: + - name: key + in: path + description: Key of decision requirements + required: true + schema: + type: integer + format: int64 + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/DecisionRequirements" + "400": + description: Invalid request + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Requested resource not found + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/drd/{key}/xml": + get: + tags: + - DecisionRequirements + summary: Get decision requirements as XML by key + operationId: xmlByKey_1 + parameters: + - name: key + in: path + description: Key of decision requirements + required: true + schema: + type: integer + format: int64 + responses: + "200": + description: Success + content: + text/xml: + schema: + type: string + "400": + description: Invalid request + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Requested resource not found + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/decision-instances/{id}": + get: + tags: + - DecisionInstance + summary: Get decision instance by id + operationId: byId + parameters: + - name: id + in: path + description: Id of decision instance + required: true + schema: + type: string + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/DecisionInstance" + "400": + description: Invalid request + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Requested resource not found + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] + "/v1/decision-definitions/{key}": + get: + tags: + - DecisionDefinition + summary: Get decision definition by key + operationId: byKey_6 + parameters: + - name: key + in: path + description: Key of decision definition + required: true + schema: + type: integer + format: int64 + responses: + "200": + description: Success + content: + application/json: + schema: + "$ref": "#/components/schemas/DecisionDefinition" + "400": + description: Invalid request + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: Forbidden + content: + "*/*": + schema: + "$ref": "#/components/schemas/Error" + "404": + description: Requested resource not found + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "500": + description: API application error + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + security: + - bearer-key: [] + - cookie: [] +components: + schemas: + Error: + type: object + properties: + status: + type: integer + format: int32 + message: + type: string + instance: + type: string + type: + type: string + QueryVariable: + type: object + properties: + filter: + "$ref": "#/components/schemas/Variable" + size: + type: integer + format: int32 + searchAfter: + type: array + items: + type: object + sort: + type: array + items: + "$ref": "#/components/schemas/Sort" + Sort: + type: object + properties: + field: + type: string + order: + type: string + enum: + - ASC + - DESC + Variable: + type: object + properties: + key: + type: integer + format: int64 + processInstanceKey: + type: integer + format: int64 + scopeKey: + type: integer + format: int64 + name: + type: string + value: + type: string + truncated: + type: boolean + tenantId: + type: string + ResultsVariable: + type: object + properties: + items: + type: array + items: + "$ref": "#/components/schemas/Variable" + sortValues: + type: array + items: + type: object + total: + type: integer + format: int64 + ProcessInstance: + type: object + properties: + key: + type: integer + format: int64 + processVersion: + type: integer + format: int32 + processVersionTag: + type: string + bpmnProcessId: + type: string + parentKey: + type: integer + format: int64 + parentFlowNodeInstanceKey: + type: integer + format: int64 + startDate: + type: string + endDate: + type: string + state: + type: string + enum: + - ACTIVE + - COMPLETED + - CANCELED + incident: + type: boolean + processDefinitionKey: + type: integer + format: int64 + tenantId: + type: string + parentProcessInstanceKey: + "$ref": "#/components/schemas/ProcessInstance" + QueryProcessInstance: + type: object + properties: + filter: + "$ref": "#/components/schemas/ProcessInstance" + size: + type: integer + format: int32 + searchAfter: + type: array + items: + type: object + sort: + type: array + items: + "$ref": "#/components/schemas/Sort" + ResultsProcessInstance: + type: object + properties: + items: + type: array + items: + "$ref": "#/components/schemas/ProcessInstance" + sortValues: + type: array + items: + type: object + total: + type: integer + format: int64 + ProcessDefinition: + type: object + properties: + key: + type: integer + format: int64 + name: + type: string + version: + type: integer + format: int32 + versionTag: + type: string + bpmnProcessId: + type: string + tenantId: + type: string + QueryProcessDefinition: + type: object + properties: + filter: + "$ref": "#/components/schemas/ProcessDefinition" + size: + type: integer + format: int32 + searchAfter: + type: array + items: + type: object + sort: + type: array + items: + "$ref": "#/components/schemas/Sort" + ResultsProcessDefinition: + type: object + properties: + items: + type: array + items: + "$ref": "#/components/schemas/ProcessDefinition" + sortValues: + type: array + items: + type: object + total: + type: integer + format: int64 + Incident: + type: object + properties: + key: + type: integer + format: int64 + processDefinitionKey: + type: integer + format: int64 + processInstanceKey: + type: integer + format: int64 + type: + type: string + enum: + - UNSPECIFIED + - UNKNOWN + - IO_MAPPING_ERROR + - JOB_NO_RETRIES + - EXECUTION_LISTENER_NO_RETRIES + - CONDITION_ERROR + - EXTRACT_VALUE_ERROR + - CALLED_ELEMENT_ERROR + - UNHANDLED_ERROR_EVENT + - MESSAGE_SIZE_EXCEEDED + - CALLED_DECISION_ERROR + - DECISION_EVALUATION_ERROR + - FORM_NOT_FOUND + message: + type: string + creationTime: + type: string + state: + type: string + enum: + - ACTIVE + - MIGRATED + - RESOLVED + - PENDING + jobKey: + type: integer + format: int64 + tenantId: + type: string + QueryIncident: + type: object + properties: + filter: + "$ref": "#/components/schemas/Incident" + size: + type: integer + format: int32 + searchAfter: + type: array + items: + type: object + sort: + type: array + items: + "$ref": "#/components/schemas/Sort" + ResultsIncident: + type: object + properties: + items: + type: array + items: + "$ref": "#/components/schemas/Incident" + sortValues: + type: array + items: + type: object + total: + type: integer + format: int64 + FlowNodeInstance: + type: object + properties: + key: + type: integer + format: int64 + processInstanceKey: + type: integer + format: int64 + processDefinitionKey: + type: integer + format: int64 + startDate: + type: string + endDate: + type: string + flowNodeId: + type: string + flowNodeName: + type: string + incidentKey: + type: integer + format: int64 + type: + type: string + enum: + - UNSPECIFIED + - PROCESS + - SUB_PROCESS + - EVENT_SUB_PROCESS + - START_EVENT + - INTERMEDIATE_CATCH_EVENT + - INTERMEDIATE_THROW_EVENT + - BOUNDARY_EVENT + - END_EVENT + - SERVICE_TASK + - RECEIVE_TASK + - USER_TASK + - MANUAL_TASK + - TASK + - EXCLUSIVE_GATEWAY + - INCLUSIVE_GATEWAY + - PARALLEL_GATEWAY + - EVENT_BASED_GATEWAY + - SEQUENCE_FLOW + - MULTI_INSTANCE_BODY + - CALL_ACTIVITY + - BUSINESS_RULE_TASK + - SCRIPT_TASK + - SEND_TASK + - UNKNOWN + state: + type: string + enum: + - ACTIVE + - COMPLETED + - TERMINATED + incident: + type: boolean + tenantId: + type: string + QueryFlowNodeInstance: + type: object + properties: + filter: + "$ref": "#/components/schemas/FlowNodeInstance" + size: + type: integer + format: int32 + searchAfter: + type: array + items: + type: object + sort: + type: array + items: + "$ref": "#/components/schemas/Sort" + ResultsFlowNodeInstance: + type: object + properties: + items: + type: array + items: + "$ref": "#/components/schemas/FlowNodeInstance" + sortValues: + type: array + items: + type: object + total: + type: integer + format: int64 + DecisionRequirements: + type: object + properties: + id: + type: string + key: + type: integer + format: int64 + decisionRequirementsId: + type: string + name: + type: string + version: + type: integer + format: int32 + resourceName: + type: string + tenantId: + type: string + QueryDecisionRequirements: + type: object + properties: + filter: + "$ref": "#/components/schemas/DecisionRequirements" + size: + type: integer + format: int32 + searchAfter: + type: array + items: + type: object + sort: + type: array + items: + "$ref": "#/components/schemas/Sort" + ResultsDecisionRequirements: + type: object + properties: + items: + type: array + items: + "$ref": "#/components/schemas/DecisionRequirements" + sortValues: + type: array + items: + type: object + total: + type: integer + format: int64 + DecisionInstance: + type: object + properties: + id: + type: string + key: + type: integer + format: int64 + state: + type: string + enum: + - FAILED + - EVALUATED + - UNKNOWN + - UNSPECIFIED + evaluationDate: + type: string + evaluationFailure: + type: string + processDefinitionKey: + type: integer + format: int64 + processInstanceKey: + type: integer + format: int64 + decisionId: + type: string + decisionDefinitionId: + type: string + decisionName: + type: string + decisionVersion: + type: integer + format: int32 + decisionType: + type: string + enum: + - DECISION_TABLE + - LITERAL_EXPRESSION + - UNSPECIFIED + - UNKNOWN + result: + type: string + evaluatedInputs: + type: array + items: + "$ref": "#/components/schemas/DecisionInstanceInput" + evaluatedOutputs: + type: array + items: + "$ref": "#/components/schemas/DecisionInstanceOutput" + tenantId: + type: string + DecisionInstanceInput: + type: object + properties: + id: + type: string + name: + type: string + value: + type: string + DecisionInstanceOutput: + type: object + properties: + id: + type: string + name: + type: string + value: + type: string + ruleId: + type: string + ruleIndex: + type: integer + format: int32 + QueryDecisionInstance: + type: object + properties: + filter: + "$ref": "#/components/schemas/DecisionInstance" + size: + type: integer + format: int32 + searchAfter: + type: array + items: + type: object + sort: + type: array + items: + "$ref": "#/components/schemas/Sort" + ResultsDecisionInstance: + type: object + properties: + items: + type: array + items: + "$ref": "#/components/schemas/DecisionInstance" + sortValues: + type: array + items: + type: object + total: + type: integer + format: int64 + DecisionDefinition: + type: object + properties: + id: + type: string + key: + type: integer + format: int64 + decisionId: + type: string + name: + type: string + version: + type: integer + format: int32 + decisionRequirementsId: + type: string + decisionRequirementsKey: + type: integer + format: int64 + decisionRequirementsName: + type: string + decisionRequirementsVersion: + type: integer + format: int32 + tenantId: + type: string + QueryDecisionDefinition: + type: object + properties: + filter: + "$ref": "#/components/schemas/DecisionDefinition" + size: + type: integer + format: int32 + searchAfter: + type: array + items: + type: object + sort: + type: array + items: + "$ref": "#/components/schemas/Sort" + ResultsDecisionDefinition: + type: object + properties: + items: + type: array + items: + "$ref": "#/components/schemas/DecisionDefinition" + sortValues: + type: array + items: + type: object + total: + type: integer + format: int64 + FlowNodeStatistics: + type: object + properties: + activityId: + type: string + description: The id of the flow node for which the results are aggregated + active: + type: integer + description: The total number of active instances of the flow node + format: int64 + canceled: + type: integer + description: The total number of canceled instances of the flow node + format: int64 + incidents: + type: integer + description: The total number of incidents for the flow node + format: int64 + completed: + type: integer + description: The total number of completed instances of the flow node + format: int64 + ChangeStatus: + type: object + properties: + message: + type: string + deleted: + type: integer + format: int64 + securitySchemes: + cookie: + type: apiKey + name: OPERATE-SESSION + in: cookie + bearer-key: + type: http + scheme: bearer + bearerFormat: JWT diff --git a/api/remove-duplicate-version-badge.js b/api/remove-duplicate-version-badge.js index 5f30a2deb49..60efc46963b 100644 --- a/api/remove-duplicate-version-badge.js +++ b/api/remove-duplicate-version-badge.js @@ -6,7 +6,7 @@ function removeDuplicateVersionBadge(generatedInfoFilePath) { console.log("removing duplicate version badge..."); replace.sync({ files: generatedInfoFilePath, - from: /^.*Version: .*$/m, + from: /]*\s*children=\{"Version: [^"]*"\}\s*>\n<\/span>\n/m, to: "", }); } diff --git a/api/tasklist/generation-strategy.js b/api/tasklist/generation-strategy.js index 3aa55a0c793..384db0851dd 100644 --- a/api/tasklist/generation-strategy.js +++ b/api/tasklist/generation-strategy.js @@ -2,30 +2,26 @@ const replace = require("replace-in-file"); const removeDuplicateVersionBadge = require("../remove-duplicate-version-badge"); const { makeServerDynamic } = require("../make-server-dynamic"); -const outputDir = "docs/apis-tools/tasklist-api-rest/specifications"; -const specFile = "api/tasklist/tasklist-openapi.yaml"; - -function preGenerateDocs() { - fixImproperlyFormattedBreaks(); - makeServerDynamic(specFile); +function preGenerateDocs(config) { + fixImproperlyFormattedBreaks(config.specPath); + makeServerDynamic(config.specPath); } -function postGenerateDocs() { - removeDuplicateVersionBadge(`${outputDir}/tasklist-rest-api.info.mdx`); +function postGenerateDocs(config) { + removeDuplicateVersionBadge(`${config.outputDir}/tasklist-rest-api.info.mdx`); } module.exports = { - outputDir, preGenerateDocs, postGenerateDocs, }; -function fixImproperlyFormattedBreaks() { +function fixImproperlyFormattedBreaks(specPath) { // The source spec has many `
` tags in it, which is valid HTML, // but docusaurus does not like it. Make them `
` instead. console.log("fixing break tags..."); replace.sync({ - files: specFile, + files: specPath, from: /
/g, to: "
", }); diff --git a/api/tasklist/version-8.6/tasklist-openapi.yaml b/api/tasklist/version-8.6/tasklist-openapi.yaml new file mode 100644 index 00000000000..32ee7c05dfd --- /dev/null +++ b/api/tasklist/version-8.6/tasklist-openapi.yaml @@ -0,0 +1,1055 @@ +--- +openapi: 3.0.1 +info: + title: Tasklist REST API + description: + Tasklist is a ready-to-use API application to rapidly implement business + processes alongside user tasks in Zeebe. + contact: + url: https://www.camunda.com + license: + name: License + url: https://docs.camunda.io/docs/reference/licenses/ + version: v1 +servers: + - url: "{schema}://{host}:{port}" + variables: + host: + default: localhost + description: The hostname of the API server. + port: + default: "8080" + description: The port of the API server. + schema: + default: http + description: The schema of the API server. +security: + - cookie: [] + bearer-key: [] +tags: + - name: Form + description: API to query forms. + - name: Task + description: API to query and manage tasks. + - name: Variables + description: API to query variables. +paths: + "/v1/tasks/{taskId}/variables": + post: + tags: + - Task + summary: Save draft variables + description: + "This operation performs several actions:
  1. Validates + the task and draft variables.
  2. Deletes existing draft variables for + the task.
  3. Checks for new draft variables. If a new variable's `name` + matches an existing one but the `value` differs, it is saved. In case of duplicate + draft variable names, the last variable's value is kept.
NOTE:" + operationId: saveDraftTaskVariables + parameters: + - name: taskId + in: path + description: The ID of the task. + required: true + schema: + type: string + requestBody: + content: + application/json: + schema: + "$ref": "#/components/schemas/SaveVariablesRequest" + required: true + responses: + "204": + description: On success returned. + content: + "*/*": {} + "400": + description: + An error is returned when the task is not active (not in the + `CREATED` state).
An error is returned if the task was not claimed + (assigned) before, except the case when JWT authentication token used.
An + error is returned if the task is not assigned to the current user, except + the case when JWT authentication token used. + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "404": + description: + An error is returned when the task with the `taskId` is not + found. + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "500": + description: + An error is returned if an unexpected error occurs while persisting + draft task variables. + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "/v1/tasks/{taskId}/variables/search": + post: + tags: + - Task + summary: Search task variables + description: + This method returns a list of task variables for the specified + `taskId` and `variableName`.
If the request body is not provided or if + the `variableNames` parameter in the request is empty, all variables associated + with the task will be returned. + operationId: searchTaskVariables + parameters: + - name: taskId + in: path + description: The ID of the task. + required: true + schema: + type: string + requestBody: + content: + application/json: + schema: + "$ref": "#/components/schemas/VariablesSearchRequest" + responses: + "200": + description: On success returned. + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/VariableSearchResponse" + "404": + description: + An error is returned when the task with the `taskId` is not + found. + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "/v1/tasks/search": + post: + tags: + - Task + summary: Search tasks + description: + Returns the list of tasks that satisfy search request params.
+ operationId: searchTasks + requestBody: + content: + application/json: + schema: + "$ref": "#/components/schemas/TaskSearchRequest" + responses: + "200": + description: On success returned. + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/TaskSearchResponse" + "400": + description: + An error is returned when more than one search parameters among + `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` + are present in request + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "/v1/tasks/{taskId}/unassign": + patch: + tags: + - Task + summary: Unassign a task + description: Unassign a task with `taskId`. Returns the task. + operationId: unassignTask + parameters: + - name: taskId + in: path + description: The ID of the task. + required: true + schema: + type: string + responses: + "200": + description: On success returned. + content: + application/json: + schema: + "$ref": "#/components/schemas/TaskResponse" + "400": + description: + An error is returned when the task is not active (not in the + CREATED state).
An error is returned if the task was not claimed (assigned) + before. + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "404": + description: + An error is returned when the task with the `taskId` is not + found. + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "/v1/tasks/{taskId}/complete": + patch: + tags: + - Task + summary: Complete a task + description: + Complete a task with `taskId` and optional `variables`. Returns + the task. + operationId: completeTask + parameters: + - name: taskId + in: path + description: The ID of the task. + required: true + schema: + type: string + requestBody: + content: + application/json: + schema: + "$ref": "#/components/schemas/TaskCompleteRequest" + responses: + "200": + description: On success returned. + content: + application/json: + schema: + "$ref": "#/components/schemas/TaskResponse" + "400": + description: + An error is returned when the task is not active (not in the + CREATED state).
An error is returned if the task was not claimed (assigned) + before.
An error is returned if the task is not assigned to the current + user. + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: User has no permission to access the task (Self-managed only). + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "404": + description: + An error is returned when the task with the `taskId` is not + found. + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "/v1/tasks/{taskId}/assign": + patch: + tags: + - Task + summary: Assign a task + description: + Assign a task with `taskId` to `assignee` or the active user. Returns + the task. + operationId: assignTask + parameters: + - name: taskId + in: path + description: The ID of the task. + required: true + schema: + type: string + requestBody: + description: + When using REST API with JWT authentication token following request + body parameters may be used. + content: + application/json: + schema: + "$ref": "#/components/schemas/TaskAssignRequest" + responses: + "200": + description: On success returned. + content: + application/json: + schema: + "$ref": "#/components/schemas/TaskResponse" + "400": + description: + An error is returned when the task is not active (not in the + CREATED state).
An error is returned when task was already assigned, + except the case when JWT authentication token used and `allowOverrideAssignment + = true`. + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "403": + description: + An error is returned when user doesn't have the permission + to assign another user to this task. + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "404": + description: + An error is returned when the task with the `taskId` is not + found. + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "/v1/variables/{variableId}": + get: + tags: + - Variables + summary: Get a variable + description: Get the variable details by variable id. + operationId: getVariableById + parameters: + - name: variableId + in: path + description: The ID of the variable. + required: true + schema: + type: string + responses: + "200": + description: On success returned. + content: + application/json: + schema: + "$ref": "#/components/schemas/VariableResponse" + "404": + description: + An error is returned when the variable with the `variableId` + is not found. + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "/v1/tasks/{taskId}": + get: + tags: + - Task + summary: Get a task + description: Get one task by id. Returns task or error when task does not exist. + operationId: getTaskById + parameters: + - name: taskId + in: path + description: The ID of the task. + required: true + schema: + type: string + responses: + "200": + description: On success returned. + content: + application/json: + schema: + "$ref": "#/components/schemas/TaskResponse" + "403": + description: User has no permission to access the task (Self-managed only). + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "404": + description: + An error is returned when the task with the `taskId` is not + found. + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" + "/v1/forms/{formId}": + get: + tags: + - Form + summary: Get a form + description: + Get the form details by `formId` and `processDefinitionKey` required + query param. The `version` query param is optional and is used only for deployed + forms (if empty, it retrieves the highest version). + operationId: getForm + parameters: + - name: formId + in: path + description: The ID of the form. + required: true + schema: + type: string + - name: processDefinitionKey + in: query + description: Reference to the process definition. + required: true + schema: + type: string + - name: version + in: query + description: The version of the form. Valid only for deployed forms. + required: false + schema: + type: integer + format: int64 + responses: + "200": + description: On success returned. + content: + application/json: + schema: + "$ref": "#/components/schemas/FormResponse" + "404": + description: + An error is returned when the form with the `formId` and `processDefinitionKey` + is not found. + content: + application/problem+json: + schema: + "$ref": "#/components/schemas/Error" +components: + schemas: + Error: + type: object + properties: + status: + type: integer + description: + An integer that represents the HTTP status code of the error + response. For example, 400 indicates a 'Bad Request' error, 404 indicates + a 'Not Found' error, and so on. + format: int32 + message: + type: string + description: + A string that provides a brief description of the error that + occurred. + instance: + type: string + description: Error instance UUID for lookup (e.g., in log messages). + SaveVariablesRequest: + type: object + properties: + variables: + type: array + description: Variables to update or add to the task. + items: + "$ref": "#/components/schemas/VariableInputDTO" + VariableInputDTO: + type: object + properties: + name: + type: string + description: The name of the variable. + value: + type: string + description: + The value of the variable. When specifying the variable value, + it's crucial to maintain consistency with JSON values (serialization for + the complex objects such as list) and ensure that strings remain appropriately + formatted. + IncludeVariable: + type: object + properties: + name: + type: string + description: The name of the variable. + alwaysReturnFullValue: + type: boolean + description: Always return the full value of the variable? + default: false + VariablesSearchRequest: + type: object + properties: + variableNames: + type: array + description: Names of variables to find. + items: + type: string + includeVariables: + type: array + description: An array of variable names that should be included in the response. + items: + "$ref": "#/components/schemas/IncludeVariable" + description: Request object to search tasks variables by provided variable names. + DraftSearchVariableValue: + type: object + properties: + value: + type: string + description: The value of the variable. + isValueTruncated: + type: boolean + description: + Does the `previewValue` contain the truncated value or full + value? + previewValue: + type: string + description: A preview of the variable's value. Limited in size. + description: The draft value of the variable. + VariableSearchResponse: + type: object + properties: + id: + type: string + description: The unique identifier of the variable. + name: + type: string + description: The name of the variable. + value: + type: string + description: The value of the variable. + isValueTruncated: + type: boolean + description: + Does the `previewValue` contain the truncated value or full + value? + previewValue: + type: string + description: A preview of the variable's value. Limited in size. + draft: + "$ref": "#/components/schemas/DraftSearchVariableValue" + DateFilter: + type: object + properties: + from: + type: string + description: + Start date range to search from in date-time format outlined + in section 5.6 of the RFC 3339 profile of the ISO 8601 standard. + format: date-time + to: + type: string + description: + End date range to search to in date-time format outlined in + section 5.6 of the RFC 3339 profile of the ISO 8601 standard. + format: date-time + description: A range of due dates for the tasks to search for. + TaskByVariables: + type: object + properties: + name: + type: string + description: The name of the variable. + value: + type: string + description: + The value of the variable. When specifying the variable value, + it's crucial to maintain consistency with JSON values (serialization for + the complex objects such as list) and ensure that strings remain appropriately + formatted. + operator: + type: string + description: + "The comparison operator to use for the variable.
* `eq`: + Equals" + enum: + - eq + TaskOrderBy: + type: object + properties: + field: + type: string + enum: + - completionTime + - creationTime + - followUpDate + - dueDate + - priority + order: + type: string + description: "* `ASC`: Ascending
* `DESC`: Descending" + enum: + - ASC + - DESC + description: Sort results by a specific field. + TaskSearchRequest: + type: object + properties: + state: + type: string + description: The state of the tasks. + enum: + - CREATED + - COMPLETED + - CANCELED + - FAILED + assigned: + type: boolean + description: Are the tasks assigned? + assignee: + type: string + description: Who is assigned to the tasks? + assignees: + type: array + description: The assignee is one of the given assignees. + items: + type: string + description: The assignee is one of the given assignees. + taskDefinitionId: + type: string + description: What's the BPMN flow node? + candidateGroup: + type: string + description: Given group is in candidate groups list. + candidateGroups: + type: array + description: At least one of the given groups is in candidate groups list. + items: + type: string + description: At least one of the given groups is in candidate groups list. + candidateUser: + type: string + description: Given user is in candidate user list. + candidateUsers: + type: array + description: At least one of the given users is in candidate user list. + items: + type: string + description: At least one of the given users is in candidate user list. + processDefinitionKey: + type: string + description: + Reference to process definition (renamed equivalent of TaskQuery.processDefinitionId + field). + processInstanceKey: + type: string + description: + Reference to process instance (renamed equivalent of TaskQuery.processInstanceId + field) + pageSize: + type: integer + description: Size of tasks page (default = 50). + format: int32 + followUpDate: + "$ref": "#/components/schemas/DateFilter" + dueDate: + "$ref": "#/components/schemas/DateFilter" + taskVariables: + type: array + description: + An array of filter clauses specifying the variables to filter + for.
If defined, the query returns only tasks to which all clauses + apply.
However, it's important to note that this filtering mechanism + is
designed to work exclusively with truncated variables. This means
variables + of a larger size are not compatible with this filter, and
attempts + to use them may result in inaccurate or incomplete query results. + items: + "$ref": "#/components/schemas/TaskByVariables" + tenantIds: + type: array + description: + An array of Tenant IDs to filter tasks. When multi-tenancy + is
enabled, tasks associated with the specified tenant IDs are returned;
if + disabled, this parameter is ignored. + items: + type: string + sort: + type: array + description: + An array of objects specifying the fields to sort the results + by. + items: + "$ref": "#/components/schemas/TaskOrderBy" + searchAfter: + type: array + description: + Used to return a paginated result. Array of values that should + be copied from sortValues of one of the tasks from the current search + results page.
It enables the API to return a page of tasks that directly + follow the task identified by the provided values, with respect to the + sorting order. + items: + type: string + searchAfterOrEqual: + type: array + description: + Used to return a paginated result. Array of values that should + be copied from sortValues of one of the tasks from the current search + results page.
It enables the API to return a page of tasks that directly + follow or are equal to the task identified by the provided values, with + respect to the sorting order. + items: + type: string + searchBefore: + type: array + description: + Used to return a paginated result. Array of values that should + be copied from sortValues of one of the tasks from the current search + results page.
It enables the API to return a page of tasks that directly + precede the task identified by the provided values, with respect to the + sorting order. + items: + type: string + searchBeforeOrEqual: + type: array + description: + Used to return a paginated result. Array of values that should + be copied from sortValues of one of the tasks from the current search + results page.
It enables the API to return a page of tasks that directly + precede or are equal to the task identified by the provided values, with + respect to the sorting order. + items: + type: string + includeVariables: + type: array + description: + An array used to specify a list of variable names that should + be included in the response when querying tasks.
This field allows + users to selectively retrieve specific variables associated with the tasks + returned in the search results. + items: + "$ref": "#/components/schemas/IncludeVariable" + implementation: + type: string + enum: + - JOB_WORKER + - ZEEBE_USER_TASK + priority: + description: Rules to filter out tasks by their priority. Applicable only for Zeebe user tasks. + type: object + properties: + eq: + type: integer + minimum: 0 + maximum: 100 + gte: + type: integer + minimum: 0 + maximum: 100 + gt: + type: integer + minimum: 0 + maximum: 100 + lt: + type: integer + minimum: 0 + maximum: 100 + lte: + type: integer + minimum: 0 + maximum: 100 + description: Request object to search tasks by provided params. + TaskSearchResponse: + type: object + properties: + id: + type: string + description: The unique identifier of the task. + name: + type: string + description: The name of the task. + taskDefinitionId: + type: string + description: User task ID from the BPMN definition. + processName: + type: string + description: The name of the process. + creationDate: + type: string + description: + When was the task created (renamed equivalent of `Task.creationTime` + field). + completionDate: + type: string + description: + When was the task completed (renamed equivalent of `Task.completionTime` + field). + assignee: + type: string + description: The username/id of who is assigned to the task. + taskState: + type: string + description: The state of the task. + enum: + - CREATED + - COMPLETED + - CANCELED + - FAILED + sortValues: + type: array + description: + Array of values to be copied into `TaskSearchRequest` to request + for next or previous page of tasks. + items: + type: string + isFirst: + type: boolean + description: A flag to show that the task is first in the current filter. + formKey: + type: string + description: Reference to the task form. + formId: + type: string + description: + Reference to the ID of a deployed form. If the form is not + deployed, this property is null. + formVersion: + type: integer + description: + Reference to the version of a deployed form. If the form is + not deployed, this property is null. + format: int64 + isFormEmbedded: + type: boolean + description: + Is the form embedded for this task? If there is no form, this + property is null. + processDefinitionKey: + type: string + description: + Reference to process definition (renamed equivalent of `Task.processDefinitionId` + field). + processInstanceKey: + type: string + description: + Reference to process instance id (renamed equivalent of `Task.processInstanceId` + field). + tenantId: + type: string + description: The tenant ID associated with the task. + dueDate: + type: string + description: The due date for the task. + format: date-time + followUpDate: + type: string + description: The follow-up date for the task. + format: date-time + candidateGroups: + type: array + description: The candidate groups for the task. + items: + type: string + candidateUsers: + type: array + description: The candidate users for the task. + items: + type: string + variables: + type: array + description: + An array of the task's variables. Only variables specified + in `TaskSearchRequest.includeVariables` are returned. Note that a variable's + draft value is not returned in `TaskSearchResponse`. + items: + "$ref": "#/components/schemas/VariableSearchResponse" + implementation: + type: string + enum: + - JOB_WORKER + - ZEEBE_USER_TASK + priority: + description: The priority of a user task. The higher the value the higher the priority. Applicable only for Zeebe user tasks. + type: integer + minimum: 0 + maximum: 100 + default: 50 + TaskResponse: + type: object + properties: + id: + type: string + description: The unique identifier of the task. + name: + type: string + description: The name of the task. + taskDefinitionId: + type: string + description: User task ID from the BPMN definition. + processName: + type: string + description: The name of the process. + creationDate: + type: string + description: + When was the task created (renamed equivalent of `Task.creationTime` + field). + completionDate: + type: string + description: + When was the task completed (renamed equivalent of `Task.completionTime` + field). + assignee: + type: string + description: The username/id of who is assigned to the task. + taskState: + type: string + description: The state of the task. + readOnly: true + enum: + - CREATED + - COMPLETED + - CANCELED + - FAILED + formKey: + type: string + description: Reference to the task form. + formId: + type: string + description: + Reference to the ID of a deployed form. If the form is not + deployed, this property is null. + formVersion: + type: integer + description: + Reference to the version of a deployed form. If the form is + not deployed, this property is null. + format: int64 + isFormEmbedded: + type: boolean + description: + Is the form embedded for this task? If there is no form, this + property is null. + processDefinitionKey: + type: string + description: + Reference to process definition (renamed equivalent of `Task.processDefinitionId` + field). + processInstanceKey: + type: string + description: + Reference to process instance id (renamed equivalent of `Task.processInstanceId` + field). + tenantId: + type: string + description: The tenant ID associated with the task. + dueDate: + type: string + description: The due date for the task. + format: date-time + followUpDate: + type: string + description: The follow-up date for the task. + format: date-time + candidateGroups: + type: array + description: The candidate groups for the task. + items: + type: string + candidateUsers: + type: array + description: The candidate users for the task. + items: + type: string + implementation: + type: string + enum: + - JOB_WORKER + - ZEEBE_USER_TASK + priority: + description: The priority of a user task. The higher the value the higher the priority. Applicable only for Zeebe user tasks. + type: integer + minimum: 0 + maximum: 100 + default: 50 + TaskCompleteRequest: + type: object + properties: + variables: + type: array + description: Variables to update or add to task during the task completion + items: + "$ref": "#/components/schemas/VariableInputDTO" + description: + Request object with variables to update or add to task during the + task completion. + TaskAssignRequest: + type: object + properties: + assignee: + type: string + description: |- + When using a JWT token, the assignee parameter is NOT optional when called directly from the API. + The system will not be able to detect the assignee from the JWT token, therefore the assignee parameter needs to be + explicitly passed in this instance. + allowOverrideAssignment: + type: boolean + description: |- + When `true` the task that is already assigned may be assigned again. Otherwise the task + must be first unassigned and only then assigned again. + default: true + description: Request params used to assign the task to assignee or current user. + DraftVariableValue: + type: object + properties: + value: + type: string + description: The draft value of the variable + VariableResponse: + type: object + properties: + id: + type: string + description: The ID of the variable + name: + type: string + description: The name of the variable + value: + type: string + description: The full value of the variable + draft: + "$ref": "#/components/schemas/DraftVariableValue" + tenantId: + type: string + description: The tenant ID associated with the variable + FormResponse: + type: object + properties: + id: + type: string + description: The unique identifier of the embedded form within one process. + processDefinitionKey: + type: string + description: + Reference to process definition (renamed equivalent of `Form.processDefinitionId` + field). + title: + type: string + description: The title of the form. + schema: + type: string + description: The form content. + version: + type: integer + description: + The version field is null in the case of an embedded form, + while it represents the deployed form's version in other scenarios. + format: int64 + tenantId: + type: string + description: The tenant ID associated with the form. + isDeleted: + type: boolean + description: + Indicates whether the deployed form is deleted or not on Zeebe. + This field is false by default, in the case of an embedded form. + securitySchemes: + cookie: + type: apiKey + description: Cookie-based authentication is only available on Self-Managed clusters. + name: TASKLIST-SESSION + in: cookie + bearer-key: + type: http + scheme: bearer + bearerFormat: JWT diff --git a/api/zeebe/generation-strategy.js b/api/zeebe/generation-strategy.js new file mode 100644 index 00000000000..38b93256112 --- /dev/null +++ b/api/zeebe/generation-strategy.js @@ -0,0 +1,45 @@ +const replace = require("replace-in-file"); +const removeDuplicateVersionBadge = require("../remove-duplicate-version-badge"); + +function preGenerateDocs(config) { + hackChangesetDescription(config.specPath); +} + +function postGenerateDocs(config) { + removeDuplicateVersionBadge(`${config.outputDir}/zeebe-rest-api.info.mdx`); +} + +module.exports = { + preGenerateDocs, + postGenerateDocs, +}; + +function hackChangesetDescription(specPath) { + // This is a temporary hack, until https://github.com/camunda/camunda-docs/issues/3568 is resolved. + // The OpenAPI generator plugin we're using does not use the correct `description` property + // for the `UserTaskUpdateRequest` object. Instead of picking up the actual property description, + // it picks up the description of the first merged schema in the `allOf` property (i.e. from the `Changeset` schema). + // This adjustment replaces the description of the `Changeset` schema with the current description of + // the `UserTaskUpdateRequest.changeset` property. + console.log("hacking changeset description..."); + replace.sync({ + files: `${specPath}`, + from: /^ description: A map of changes.$/m, + to: ` description: | + JSON object with changed task attribute values. + + The following attributes can be adjusted with this endpoint, additional attributes + will be ignored: + + * \`candidateGroups\` - reset by providing an empty list + * \`candidateUsers\` - reset by providing an empty list + * \`dueDate\` - reset by providing an empty String + * \`followUpDate\` - reset by providing an empty String + + Providing any of those attributes with a \`null\` value or omitting it preserves + the persisted attribute's value. + + The assignee cannot be adjusted with this endpoint, use the Assign task endpoint. + This ensures correct event emission for assignee changes.`, + }); +} diff --git a/api/zeebe/version-8.6/zeebe-openapi.yaml b/api/zeebe/version-8.6/zeebe-openapi.yaml new file mode 100644 index 00000000000..7bc6a5925e1 --- /dev/null +++ b/api/zeebe/version-8.6/zeebe-openapi.yaml @@ -0,0 +1,428 @@ +openapi: "3.0.3" +info: + title: Zeebe REST API + version: "0.1" + description: API for communicating with the Zeebe cluster. + license: + name: Zeebe Community License Version 1.1 + url: https://github.com/camunda/camunda/blob/main/licenses/ZEEBE-COMMUNITY-LICENSE-1.1.txt +externalDocs: + description: Find out more + url: https://docs.camunda.io/docs/apis-tools/zeebe-api-rest/overview/ + +servers: + - url: "{schema}://{host}:{port}/v1" + variables: + host: + default: localhost + description: The hostname of a Zeebe Gateway. + port: + default: "8080" + description: The port of the Zeebe REST API server. + schema: + default: http + description: The schema of the Zeebe REST API server. + +paths: + /topology: + get: + tags: + - Cluster + summary: Get cluster topology + description: Obtains the current topology of the cluster the gateway is part of. + responses: + "200": + $ref: "#/components/responses/TopologyResponse" + /user-tasks/{userTaskKey}/completion: + post: + tags: + - User task + summary: Complete a user task + description: Completes a user task with the given key. + parameters: + - name: userTaskKey + in: path + required: true + description: The key of the user task to complete. + schema: + type: integer + format: int64 + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/UserTaskCompletionRequest" + + responses: + "204": + description: The user task was completed successfully. + "404": + description: The user task with the given key was not found. + "409": + description: > + The user task with the given key is in the wrong state currently. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "400": + description: > + The user task with the given key cannot be completed. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /user-tasks/{userTaskKey}/assignment: + post: + tags: + - User task + summary: Assign a user task + description: Assigns a user task with the given key to the given assignee. + parameters: + - name: userTaskKey + in: path + required: true + description: The key of the user task to assign. + schema: + type: integer + format: int64 + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/UserTaskAssignmentRequest" + responses: + "204": + description: The user task's assignment was adjusted. + "404": + description: The user task with the given key was not found. + "409": + description: > + The user task with the given key is in the wrong state currently. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "400": + description: > + The assignment of the user task with the given key cannot be completed. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /user-tasks/{userTaskKey}: + patch: + tags: + - User task + summary: Update a user task + description: Update a user task with the given key. + parameters: + - name: userTaskKey + in: path + required: true + description: The key of the user task to update. + schema: + type: integer + format: int64 + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/UserTaskUpdateRequest" + responses: + "204": + description: The user task was updated successfully. + "404": + description: The user task with the given key was not found. + "409": + description: > + The user task with the given key is in the wrong state currently. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "400": + description: > + The user task with the given key cannot be updated. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + /user-tasks/{userTaskKey}/assignee: + delete: + tags: + - User task + summary: Unassign a user task + description: Removes the assignee of a task with the given key. + parameters: + - name: userTaskKey + in: path + required: true + description: The key of the user task. + schema: + type: integer + format: int64 + responses: + "204": + description: The user task was unassigned successfully. + "404": + description: The user task with the given key was not found. + "409": + description: > + The user task with the given key is in the wrong state currently. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "400": + description: > + The user task with the given key cannot be unassigned. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + +components: + responses: + TopologyResponse: + description: Obtains the current topology of the cluster the gateway is part of. + content: + application/json: + schema: + $ref: "#/components/schemas/TopologyResponse" + ProblemResponse: + description: Response for exceptional uses cases, providing more details. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + + schemas: + TopologyResponse: + description: The response of a topology request. + type: object + properties: + brokers: + description: A list of brokers that are part of this cluster. + type: array + nullable: true + items: + $ref: "#/components/schemas/BrokerInfo" + clusterSize: + description: The number of brokers in the cluster. + type: integer + format: int32 + nullable: true + partitionsCount: + description: The number of partitions are spread across the cluster. + type: integer + format: int32 + nullable: true + replicationFactor: + description: The configured replication factor for this cluster. + type: integer + format: int32 + nullable: true + gatewayVersion: + description: The version of the Zeebe Gateway. + type: string + nullable: true + BrokerInfo: + description: Provides information on a broker node. + type: object + properties: + nodeId: + description: The unique (within a cluster) node ID for the broker. + type: integer + format: int32 + host: + description: The hostname for reaching the broker. + type: string + port: + description: The port for reaching the broker. + type: integer + format: int32 + partitions: + description: A list of partitions managed or replicated on this broker. + type: array + items: + $ref: "#/components/schemas/Partition" + version: + description: The broker version. + type: string + Partition: + description: Provides information on a partition within a broker node. + type: object + properties: + partitionId: + description: The unique ID of this partition. + type: integer + format: int32 + role: + description: Describes the Raft role of the broker for a given partition. + type: string + enum: + - leader + - follower + - inactive + health: + description: Describes the current health of the partition. + type: string + enum: + - healthy + - unhealthy + - dead + UserTaskCompletionRequest: + type: object + properties: + variables: + additionalProperties: true + description: The variables to complete the user task with. + type: object + nullable: true + action: + description: > + A custom action value that will be accessible from user task events resulting + from this endpoint invocation. If not provided, it will default to "complete". + type: string + nullable: true + UserTaskAssignmentRequest: + type: object + properties: + assignee: + description: The assignee for the user task. The assignee must not be empty or `null`. + type: string + nullable: false + allowOverride: + description: > + By default, the task is reassigned if it was already assigned. Set this to `false` + to return an error in such cases. The task must then first be unassigned to + be assigned again. Use this when you have users picking from group task + queues to prevent race conditions. + type: boolean + nullable: true + action: + description: > + A custom action value that will be accessible from user task events resulting + from this endpoint invocation. If not provided, it will default to "assign". + type: string + nullable: true + UserTaskUpdateRequest: + type: object + properties: + changeset: + allOf: + - $ref: "#/components/schemas/Changeset" + description: | + JSON object with changed task attribute values. + + The following attributes can be adjusted with this endpoint, additional attributes + will be ignored: + + * `candidateGroups` - reset by providing an empty list + * `candidateUsers` - reset by providing an empty list + * `dueDate` - reset by providing an empty String + * `followUpDate` - reset by providing an empty String + + Providing any of those attributes with a `null` value or omitting it preserves + the persisted attribute's value. + + The assignee cannot be adjusted with this endpoint, use the Assign task endpoint. + This ensures correct event emission for assignee changes. + type: object + nullable: true + action: + description: > + A custom action value that will be accessible from user task events resulting + from this endpoint invocation. If not provided, it will default to "update". + type: string + nullable: true + Variables: + description: A map of variables. + type: object + additionalProperties: true + Changeset: + description: | + JSON object with changed task attribute values. + + The following attributes can be adjusted with this endpoint, additional attributes + will be ignored: + + * `candidateGroups` - reset by providing an empty list + * `candidateUsers` - reset by providing an empty list + * `dueDate` - reset by providing an empty String + * `followUpDate` - reset by providing an empty String + + Providing any of those attributes with a `null` value or omitting it preserves + the persisted attribute's value. + + The assignee cannot be adjusted with this endpoint, use the Assign task endpoint. + This ensures correct event emission for assignee changes. + type: object + additionalProperties: true + properties: + dueDate: + type: string + format: date-time + description: The due date of the task. Reset by providing an empty String. + nullable: true + followUpDate: + type: string + format: date-time + description: The follow-up date of the task. Reset by providing an empty String. + nullable: true + candidateUsers: + type: array + description: The list of candidate users of the task. Reset by providing an empty list. + items: + type: string + nullable: true + candidateGroups: + type: array + description: The list of candidate groups of the task. Reset by providing an empty list. + items: + type: string + nullable: true + ProblemDetail: + description: > + A Problem detail object as described in [RFC 9457](https://www.rfc-editor.org/rfc/rfc9457). + There may be additional properties specific to the problem type. + type: object + properties: + type: + type: string + format: uri + description: A URI identifying the problem type. + default: about:blank + title: + type: string + description: A summary of the problem type. + status: + type: integer + format: int32 + description: The HTTP status code for this problem. + minimum: 400 + maximum: 600 + detail: + type: string + description: An explanation of the problem in more detail. + instance: + type: string + format: uri + description: A URI identifying the origin of the problem. + securitySchemes: + bearerAuth: + type: http + scheme: bearer + bearerFormat: JWT diff --git a/docs/apis-tools/administration-sm-api/sidebar-schema.js b/docs/apis-tools/administration-sm-api/sidebar-schema.js index 5b070d4aee4..29c55283819 100644 --- a/docs/apis-tools/administration-sm-api/sidebar-schema.js +++ b/docs/apis-tools/administration-sm-api/sidebar-schema.js @@ -5,7 +5,7 @@ module.exports = { "apis-tools/administration-sm-api/administration-sm-api-overview", "apis-tools/administration-sm-api/administration-sm-api-authentication", { - Specifications: require("./specifications/sidebar.js"), + Specifications: require("./specifications/sidebar"), }, ], }; diff --git a/docs/apis-tools/administration-sm-api/specifications/administration-api-self-managed.info.mdx b/docs/apis-tools/administration-sm-api/specifications/administration-api-self-managed.info.mdx index 357adbd146d..68db1be250d 100644 --- a/docs/apis-tools/administration-sm-api/specifications/administration-api-self-managed.info.mdx +++ b/docs/apis-tools/administration-sm-api/specifications/administration-api-self-managed.info.mdx @@ -9,18 +9,26 @@ custom_edit_url: null --- import ApiLogo from "@theme/ApiLogo"; +import Heading from "@theme/Heading"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; import Export from "@theme/ApiExplorer/Export"; -

Administration API (Self-Managed)

+ Access the administration API of Console Self-Managed.
-

- Authentication -

+
@@ -53,9 +61,7 @@ Access the administration API of Console Self-Managed. >

Contact

- - URL: https://www.camunda.com - + URL: [https://www.camunda.com](https://www.camunda.com)

License

diff --git a/docs/apis-tools/administration-sm-api/specifications/get-clusters.api.mdx b/docs/apis-tools/administration-sm-api/specifications/get-clusters.api.mdx index cca9bf58fdd..16d9033b7eb 100644 --- a/docs/apis-tools/administration-sm-api/specifications/get-clusters.api.mdx +++ b/docs/apis-tools/administration-sm-api/specifications/get-clusters.api.mdx @@ -5,48 +5,162 @@ description: "Returns a list of all automation and management clusters. Each clu sidebar_label: "Get current clusters" hide_title: true hide_table_of_contents: true -api: eJzFV9uO2zYQ/RViXtoCXNu9AYFQFHAXSbBFtgmyXgSo4QeaGluMKVJLUus4hv69GFKW5cvuGujtyRI1PJw5M3M43oKt0ImgrLnJIYMlhmtd+4DOAweHvrLGo4dsCz+MRvSTo5dOVbQDMni/Ag7SmoAm0FdRVVrJiDf87MlkC14WWAp6UgHLiFU5OjaohFzXKqffsKkQMvDBKbMEfnTUvVEPNTKVowlqodAxu2ChQCaTw9BwMKLEl5H+ECU+sdlXQl6IEE37GEx55mpjlFkyZQYE6YMItT+l7cbkxBJ6phZM9AEKFDoUG2YdMzYAP3EETV1CNoXWEDjUpv+8MnZtYMYhqKBp57U13mq8ux3npTLjSg3uklcNhyWaNvsvxzwplCcPY8S1c2gCe0TnlTU7MnfR90hNmMfxf8JvHLJc+aDMsla+oF1zDGtEw0QdbBmdYsLkrBRGLLGk41pcP2C3p4tMGanrHFmvBslbEZiQgS21nQutN0wRLFPGB6E15ixW75fAmVYrZC1bxP+tzVGjG7Dx3qHuMOFS7v9EnOOxDxTNgRcR+n3sNORsIvxKKx9ieO+roEr1FQfP5HrPCHDY8/F8lts+nhBmw6kz/TM9+ESeInv7SA5LvF/8LX2RDn4aKmeDwXMRfqV9V3NnV+iAt69LEXAtqKyTSCEBtIBxMTFHnKRUJS0iHoBDEopwcVeMq2rH1d+Sox5dl0uAOWb5v9WB2ulLBABZVc+1kuz+47snwv2XFOXoFIciVwa9v8zrzvwZx0sMTskLAVvjJ+Giiw+1cphTjiJgLKuuHhLnB3zNuiTb+WeUlHSR54q+Cf2h160LoT2+UMp77QXhXGyi0zCiCNnFoVad7++TmOKl3d64/buzF2EvNr7jIMrQPxfp9fFN00bbNOTvT6MfTxvvjXVzlecYs/7zuaHmDt0juiuvcmTonE3BH9p8xFA745nYk6j1RVfXayGL7sZHE9wmXkFCGX9c8j6ihAKVY4nVqKFi6SkD3aA24+BR1o7ELptuYY7CoYNsOmtmHCrhRInRMJvOYqEXtp31gD6HAjIYCqL0SlRqKPcDoI9M+IgaNQK2aZprsuFwW1gfmmxbWRca4PAonBJzne4T+paYXYhaB8hAWyl0XD5XivTB9Oay8Ycblk6PgxSdcQj3avRqdF6irAtPoOwn0T1OEUJ1FicZn0Vqmh7ld2SXgt4R30lICx6h6L014O3DG+tKQU78/mkSa0yZhY3b24KPda58SF0Unfj2DvXiKs0/+Xcnno+lJJ2LinS62S66AacPQ1XVCi9k8P1gNBi1Y72QkfaUe4rGZ8Pher0eSFHWJhcDaUtiViuJxscJIs3g8K5d4Uebcyt9t1vZ+D50uECHRuKwBfLDyEdlfSiF6cG+xdDdFb1CPSBhu/9H8r/2aaoBGi6HlRbK9G7a1HVT6LqO+O71c2qfKWy3c+Hx3ummoeWHGt0mtfGu22KbcxoD8tjzW1jhpi2EKsS21HUUxuO/Zk1fDN6+npAK1+RWV75H5RrRdzJrNj3sX36LBmxiV2h+Bd76EOgVmlnTNH8B6kAKmA== +api: eJzFV9tu2zgQ/RViXnYXYGzvDSj0ZgRtkUWzKRoHBdbwA02NLdYUqZBUs66gf18MKcvyJYmBvT1ZooaHM2dmDscN2AqdCMqamxwyWGO41rUP6DxwcOgrazx6yBr4aTKhnxy9dKqiHZDB3QY4SGsCmkBfRVVpJSPe+Isnkwa8LLAU9KQClhGrcnRsUAm5rlVOv2FbIWTgg1NmDfzoqAejHmtkKkcT1EqhY3bFQoFMJoeh5WBEia8j/S5KfGazr4S8ECGaDjGY8szVxiizZsqMCNIHEWp/StuNyYkl9EytmBgCFCh0KLbMOmZsAH7iCJq6hGwOnSFwqM3weWPsk4EFh6CCpp3X1nir8f52mpfKTCs1uk9etRzWaLrsvx7zrFCePIwR186hCewrOq+s2ZG5i35AasI8jv8zfueQ5coHZda18gXtWmJ4QjRM1MGW0SkmTM5KYcQaSzquw/Ujdnu6yJSRus6RDWqQvBWBCRnYWtul0HrLFMEyZXwQWmPOYvX+GTjTaoOsY4v4v7U5anQjNt071B8mXMr9H4hLPPaBojnwIkLfxU5DzmbCb7TyIYZ3VwVVqm84eiHXe0aAw56Pl7Pc9fGMMFtOnelf6MFn8hTZ20dyWOLD4u/oi3Tw01A5G41eivAb7btaOrtBB7x7XYuAT4LKOokUEkAHGBcTc8RJSlXSIuIBOCShCBd3xbSqdlz9LTka0HW5BJhjlv9bHaidvkQAkFX1UivJHj59eCbcf0lRjk5xKHJl0PvLvO7NX3C8xOCUvBCwM34WLrr4WCuHOeUoAsay6ushcX7A16JPsl1+QUlJF3mu6JvQHwfduhLa4yulvNdeEM7FJjoNI4qQXR1q1fn+PokpXtrdjTu8OwcRDmLjOw6iDP1zkV4f3zRdtG1L/v4y+fm08d5Zt1R5jjHrv54bau7RfUV35VWODJ2zKfhDm08Yamc8E3sStb7o6norZNHf+GiC28YrSCjjj0veR5RQoHIssRo1VKw9ZaAf1BYcPMrakdhl8waWKBw6yOaLdsGhEk6UGA2z+SIWemG7WQ/ocyggg7EgSq9EpcZyPwD6yISPqFEjoEnTXJuNx01hfWizprIutMDhq3BKLHW6T+hbYnYlah0gA22l0HH5XCnSBzOYy6Yfb1g6PQ5SdMYh3JvJm8l5ibIuPIOyn0T3OEUI1VmcZHwWqW0HlN+TXQp6R3wvIR14hKL3zoB3D++sKwU58dvnWawxZVY2bu8KPta58iF1UXTi+3vUq6s0/+Q/nHg+lZJ0LirS6Wa76gecIQxVVSe8kMGPo8lo0o31QkbaU+4pGp+Nx09PTyMpytrkYiRtScxqJdH4OEGkGRw+dCv8aHNupe93Kxvfxw5X6NBIHHdAfhz5qKwPpTAD2PcY+rtiUKgHJDT7fyT/a5+mGqDhclxpoczgpk1dN4e+64jvQT+n9plD0yyFxwen25aWH2t029TGu26Lbc5pDMhjzzewwW1XCFWIbanrKIzHf83aoRi8fzsjFa7Jrb58j8o1ou9k1mwH2E2TLGZ2g6YlMUhOBHqHdtG27V8VCQwO sidebar_class_name: "get api-method" info_path: docs/apis-tools/administration-sm-api/specifications/administration-api-self-managed custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get current clusters

+ - + Returns a list of all automation and management clusters. Each cluster entry contains the running apps and their status. -## Request + -
+ -Ok + -
Schema
  • Array [
  • apps object[]required
    - -The list of applications running in the cluster - -
  • Array [
  • ]
  • ]
- -Forbidden - -
- -Server-side error - -
+ diff --git a/docs/apis-tools/administration-sm-api/specifications/get-usage-metrics.api.mdx b/docs/apis-tools/administration-sm-api/specifications/get-usage-metrics.api.mdx index 6b108eaf1ed..6b79ef3be7d 100644 --- a/docs/apis-tools/administration-sm-api/specifications/get-usage-metrics.api.mdx +++ b/docs/apis-tools/administration-sm-api/specifications/get-usage-metrics.api.mdx @@ -5,59 +5,152 @@ description: "Returns usage metrics for a specific cluster for a given time rang sidebar_label: "Get usage metrics for clusters" hide_title: true hide_table_of_contents: true -api: eJzlV99v2zYQ/leIe2oBxvZ+AYUwDMiKpciwbEWTYAMMP5zJs81GIhWSShsI+t+HoyRbsWWvGxLsoS+JJR8/fvzu7ju6BleSx2icvdSQwZribcA1XVH0RgWQ4CmUzgYKkNXw7WzG/zQF5U3JqyCDP+5AgnI2ko38LZZlblTCnH4MHFJDUBsqkD+VnneMpgU0mv/Gx5IggxC9sWuQe/g3GxJGk41mZcgLtxJxQ0LlVYjkJ9BIxlQUwqUNEa1qkQ8xKj6YKNqTiZXzIkT0kbTo1gvTA0xA7hGNLmI+4GqrYkkeJKycLzBCBtpVy5xG2bfBzPyQA4pQkjIrowRDT6BpWPT7ynjSkM27nRey39ktP5KKIAG1NrwJ5u8HVFeYB5IQTcw5+q2zweV0fXWuC2PPSzMZ5nenWMO8lQlcCP9WRvpMqmIde4SvXMiI4e42kP9iATEEs7akBa8UFS/9X4WT0DHqmjRSEQ77tNkqid7j4+i+6SwibjCmswWxwQcSSyI7OLQ7lqshj5fJ2802VfsMjIYRYxnrkmHCX4blhfNvW7uDpmGi38++O6ytC+eXRmuynJkfxpz6mvwD+bNgNAny3vl06qcxHyhW3obTddKZb/d6bR7IimgKEh7tmibisMzRk8D12tMa2SncA/lk47tVAq0Wxqq80sN6PerR8pTvyIR2pK8irgOnOEks+lG3kBBIVd7ER8jmNSwJPXnI5otmIaFEjwXF1NTz0a625r46MahAguHY+4o894rFghOfymxXd9FXJAfTcq/jGjm2dZIoKRkiFmW/8VDaIG5/v/xrEGOsKEyem0DKWR2OsEvIJwkems9TezpCmax+EcJkT+v5z3QXEgqKG9fdhtgEMG4ggylya55haaaptM+K7R0ppL5qK6PyOWRQt1s22XRab1yITVaXzscGJDygN7jMW2vl79o+XWGVM7HcKczT6zE/5S/4qL1k5+8vRbt7exFyfg/uzezNbBSJQ4+g7OTa4WxiLEdx2uBRpCRm31PXHNceuu+sbXl34AmKn7sA2X246JP26583ybGMXbm0vHPPZJomxPYim0i8uqZ8dXaFFtekXx8wP1fJTJgyHi52K9EZshjCsHdwnluIbyazyay7+aJKsre559OEbDr99OnTRGFRWY0T5QpWNjeKbCCO7Qr2t+6N3FusnQrb1cal56mnFXmyiqYdUJgmPUoXYoF2APuO4oiDd1YU9uWod9f3r8L/26qL9DlOyxxNGphJ/rpr9jlsm50z86TdF7Lr2jnU9RID3fq8afh160VpPJjALa63c/6o3K8+dF71WnzhFBllf0eP/TB5wLziAEjO+1+JPM9MOcG1Hy3PQ/c55skJsu1Y2VFd7Gw8XRAkbAh1ui3U3RJ2mHJ4wIOfxU9GzbtfbviuWHH1bX1xzwcTen/lto8D7B9/TgHixt2R/Ql62pEfoVk0TfM3+WOSPA== +api: eJzlV01v2zgQ/SvEnFqAsb1fQKFbUGyKLDa7RZNgFzB8GJNjm41EKiSVNBD034uhJFuxZW93kWAPvSSWPHx8fDPzhq7BleQxGmcvNWSwpngbcE1XFL1RASR4CqWzgQJkNfw4m/E/TUF5U/IqyODPO5CgnI1kI3+LZZkblTCnnwOH1BDUhgrkT6XnHaNpAY3mv/GpJMggRG/sGuQe/s2GhNFko1kZ8sKtRNyQUHkVIvkJNJIxFYVwaUNEq1rkQ4yKDyaK9mRi5bwIEX0kLbr1wvQAE5B7RKOLmA+42qpYkgcJK+cLjJCBdtUyp1H2bTAzP+SAIpSkzMoowdATaBoW/b4ynjRk827nhex3dsvPpCJIQK0Nb4L5xwHVFeaBJEQTc45+72xwOV1fnevC2PPSTIb53SnWMG9lAhfCv5WRvpCqWMce4TsXMmK4uw3kv1lADMGsLWnBK0XFS/9X4SR0jLomjVSEwz5ttkqi9/g0um86i4gbjOlsQWzwgcSSyA4O7Y7lasjjdfJ2s03VPgOjYcRYxrpkmPDXYXnh/PvW7qBpmOjPs58Oa+vC+aXRmixn5pcxp74m/0D+LBhNgrx3Pp36ecwnipW34XSddObbvV6bB7IimoKER7umiTgsc/QkcL32tEZ2CvdAPtn4bpVAq4WxKq/0sF6PerQ85TsyoR3pq4jrwClOEot+1C0kBFKVN/EJsnkNS0JPHrL5ollIKNFjQTE19Xy0q625r04MKpBgOPa+Is+9YrHgxKcy29Vd9BXJwbTc67hGjm2dJEpKhohF2W88lDaI2z8u/x7EGCsKk+cmkHJWhyPsEvJJgofm89yejlAmq1+FMNnTev4z3YWEguLGdbchNgGMG8hgityaZ1iaaSrts2J7Rwqpr9rKqHwOGdTtlk02ndYbF2KT1aXzsQEJD+gNLvPWWvm7tk9XWOVMLHcK8/R6zE/5Cz5qL9n5x0vR7t5ehJzfg3s3ezcbReLQIyg7uXY4mxjLUZw2eBQpidn31DXHtYfuO2tb3h14guLnLkB2Hy76pP32101yLGNXLi3v3DOZpgmxvcgmEm+uKV+dXaHFNem3B8zPVTITpoyHi91KdIYshjDsHZznFuKHyWwy626+qJLsbe75NCGbTh8fHycKi8pqnChXsLK5UWQDcWxXsL93b+TeYu1U2K42Lj1PPa3Ik1U07YDCNOlRuhALtAPYDxRHHLyzorAvR727vn8X/t9WXaQvcVrmaNLATPLXXbPPYdvsnJln7b6QXdfOoa6XGOjW503Dr1svSuPBBG5xvZ3zR+V+86nzqrfiG6fIKPs7euqHyQPmFQdAct7/SuRlZsoJrv1oeRm6LzFPTpBtx8qO6mJn4+mCIGFDqNNtoe6WsMOUwwMe/Cx+Nmo+/HrDd8WKq2/ri3s+mND7K7d9GmDXdRtx4+7INjxlWhKRn6FZNE3zFavQk7I= sidebar_class_name: "get api-method" info_path: docs/apis-tools/administration-sm-api/specifications/administration-api-self-managed custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get usage metrics for clusters

+ Returns usage metrics for a specific cluster for a given time range. The usage metrics are aggregated over the time range and include number of started process instances, executed decision instances, and assigned task users. -## Request - -

Query Parameters

- -Ok - -
Schema
    processInstances objectrequired
    - -The usage metrics for started process instances. - -
    decisionInstances objectrequired
    - -The usage metrics for executed decision instances. - -
    taskUsers objectrequired
    - -The usage metrics for assigned task users. - -
- -Forbidden - -
- -Server-side error - -
+ + + + + + + diff --git a/docs/apis-tools/administration-sm-api/specifications/sidebar.js b/docs/apis-tools/administration-sm-api/specifications/sidebar.js deleted file mode 100644 index 3d3722141b7..00000000000 --- a/docs/apis-tools/administration-sm-api/specifications/sidebar.js +++ /dev/null @@ -1,30 +0,0 @@ -module.exports = [ - { - type: "doc", - id: "apis-tools/administration-sm-api/specifications/administration-api-self-managed", - }, - { - type: "category", - label: "Usage Metrics", - items: [ - { - type: "doc", - id: "apis-tools/administration-sm-api/specifications/get-usage-metrics", - label: "Get usage metrics for clusters", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Clusters", - items: [ - { - type: "doc", - id: "apis-tools/administration-sm-api/specifications/get-clusters", - label: "Get current clusters", - className: "api-method get", - }, - ], - }, -]; diff --git a/docs/apis-tools/administration-sm-api/specifications/sidebar.ts b/docs/apis-tools/administration-sm-api/specifications/sidebar.ts new file mode 100644 index 00000000000..bcbae3755f9 --- /dev/null +++ b/docs/apis-tools/administration-sm-api/specifications/sidebar.ts @@ -0,0 +1,36 @@ +import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; + +const sidebar: SidebarsConfig = { + apisidebar: [ + { + type: "doc", + id: "apis-tools/administration-sm-api/specifications/administration-api-self-managed", + }, + { + type: "category", + label: "Usage Metrics", + items: [ + { + type: "doc", + id: "apis-tools/administration-sm-api/specifications/get-usage-metrics", + label: "Get usage metrics for clusters", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Clusters", + items: [ + { + type: "doc", + id: "apis-tools/administration-sm-api/specifications/get-clusters", + label: "Get current clusters", + className: "api-method get", + }, + ], + }, + ], +}; + +export default sidebar.apisidebar; diff --git a/docs/apis-tools/administration-sm-api/specifications/versions.json b/docs/apis-tools/administration-sm-api/specifications/versions.json new file mode 100644 index 00000000000..71ac271e29b --- /dev/null +++ b/docs/apis-tools/administration-sm-api/specifications/versions.json @@ -0,0 +1,12 @@ +[ + { + "version": "1", + "label": "Unused but required field", + "baseUrl": "Unused but required field" + }, + { + "version": "8.6", + "label": "Unused but required field", + "baseUrl": "Unused but required field" + } +] diff --git a/docs/apis-tools/camunda-api-rest/sidebar-schema.js b/docs/apis-tools/camunda-api-rest/sidebar-schema.js index 465f7ac2831..10a6be03827 100644 --- a/docs/apis-tools/camunda-api-rest/sidebar-schema.js +++ b/docs/apis-tools/camunda-api-rest/sidebar-schema.js @@ -5,7 +5,7 @@ module.exports = { "apis-tools/camunda-api-rest/camunda-api-rest-overview", "apis-tools/camunda-api-rest/camunda-api-rest-authentication", { - Specifications: require("./specifications/sidebar.js"), + Specifications: require("./specifications/sidebar"), }, ], }; diff --git a/docs/apis-tools/camunda-api-rest/specifications/activate-jobs.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/activate-jobs.api.mdx index 59492ca42e9..e6bb1ccc8d7 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/activate-jobs.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/activate-jobs.api.mdx @@ -5,56 +5,491 @@ description: "Iterate through all known partitions and activate jobs up to the r sidebar_label: "Activate jobs" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Activate jobs

+ - + Iterate through all known partitions and activate jobs up to the requested maximum. -## Request + -

Body

required
    )\n","type":"string"}}>
+ -The list of activated jobs. +)\n', + type: "string", + }, + worker: { + description: + "the name of the worker activating the jobs, mostly used for logging purposes", + type: "string", + nullable: true, + }, + timeout: { + description: + "a job returned after this call will not be activated by another call until the timeout (in ms) has been reached\n", + type: "integer", + format: "int64", + }, + maxJobsToActivate: { + description: "the maximum jobs to activate by this request", + type: "integer", + format: "int32", + }, + fetchVariable: { + description: + "a list of variables to fetch as the job variables; if empty, all visible variables at the time of activation for the scope of the job will be returned\n", + type: "array", + nullable: true, + items: { type: "string" }, + }, + requestTimeout: { + description: + "The request will be completed when at least one job is activated or after the requestTimeout (in ms). If the requestTimeout = 0, a default timeout is used. If the requestTimeout < 0, long polling is disabled and the request is completed immediately, even when no job is activated.\n", + type: "integer", + format: "int64", + default: 0, + nullable: true, + }, + tenantIds: { + description: + "a list of IDs of tenants for which to activate jobs", + type: "array", + items: { type: "string" }, + nullable: true, + }, + }, + required: ["type", "timeout", "maxJobsToActivate"], + title: "JobActivationRequest", + }, + }, + }, + }} +> -
Schema
    jobs object[]
    - -The activated jobs. - -
  • Array [
  • ]
Schema
    jobs object[]
    - -The activated jobs. - -
  • Array [
  • ]
Schema
    jobs object[]
    - -The activated jobs. - -
  • Array [
  • ]
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/add-user-to-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/add-user-to-group.api.mdx index cd65f5d47d7..a618bac3bd1 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/add-user-to-group.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/add-user-to-group.api.mdx @@ -12,53 +12,267 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Assign a user to a group

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

Path Parameters

+ -The user was assigned successfully to the group. + -
- -The user could not be assigned. -More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The group or user with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user with the given key is already assigned to the group. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx index 0fd9e5aadda..67c23faf065 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx @@ -12,48 +12,226 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Assign a group to a tenant

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

Path Parameters

- -The group was successfully assigned to the tenant. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found. The tenant or group was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant.api.mdx index 880eab7995f..16df610cafa 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant.api.mdx @@ -12,48 +12,226 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Assign a mapping rule to a tenant

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

Path Parameters

- -The mapping rule was successfully assigned to the tenant. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found. The tenant or mapping rule was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx index 77758fd209c..f15c8198d3c 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx @@ -5,55 +5,259 @@ description: "Assigns a user task with the given key to the given assignee." sidebar_label: "Assign user task" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Assign user task

+ Assigns a user task with the given key to the given assignee. -## Request + -

Path Parameters

Body

required
+ -The user task's assignment was adjusted. + -
- -The assignment of the user task with the given key cannot be completed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/assign-user-to-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/assign-user-to-tenant.api.mdx index 84d3a2644cb..51680068212 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/assign-user-to-tenant.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/assign-user-to-tenant.api.mdx @@ -12,48 +12,224 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Assign a user to a tenant

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

Path Parameters

- -The user was successfully assigned to the tenant. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found. The tenant or user was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx index a328fa04332..29be1919d5e 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx @@ -5,52 +5,286 @@ description: "Broadcasts a signal." sidebar_label: "Broadcast signal" hide_title: true hide_table_of_contents: true -api: eJztWN9v2zYQ/lcIPm2YIrld2nV6c9N0S9ulQeJuD6kfTtLZYiuRKknFMQT978ORki1bThYMK7AHBzBiWaf78X33keI13MLS8PiW34ilhILPA64q1GCFkhcZj3miFWQpGNsZBDxDk2pRkQWP+ev+vmHAjLMJecA1fqvR2NcqW/O4cZdCY8Zjq2sMeKqkRWnpFlRVIVIXMPpiyGfDTZpjCfTNrivkMVfJF0wtD3ilKT0r0Dg7F+8SSqSr3cRmOTIJJTK1YDbHLjdmFduURIl2AYzVQi55G/A70AKSwgeALBPkD4qrQWBfwzhcF2LjgQGB8u7m4yXzBQwCdhW1AbcoQVoC+1AJF2/6ArwdszlYplbSDKo6UEgbDEC/HSI1D7gVtiBjz+mGwmtPGm9b/7iplDQeiOeTyeH8uppXYHZx/dcMQ1F8XPD4dj/YazDItvSzhdJslL/PeAzzfuM8jnmH9Bb6vncI+lGlY+AfhNenR5Xwdn64md/j+nBStRTfavxuSTmbIVN3MgtTKGuZQQiVCL/i2oSyLhPUP41ZzLDSmILdSvzI63fkVUiLS9Q84AulS7D+p5enT0nz0nH4HtfmaZx7AA5wfmT4/6Jcsjp9aIWutLoTGWYsAwtMGCaVZXdQiOyRdbrSKimwPKj0YYApu/KWLEMLoug2Otr5vGGCGROS3V6/PWO/nr74Zf5Dbm1l4iharVahXqQnmAmrdKj0MtKLlD5k92PIZjlqZCWsWYJsuxMPW8lUmIqFSGlbt75WlwyBGH6W/9xN7m6zB/pAVbUWo1eeKft0fcFEhtKKxVrI5Ti0e2YBdUE+IFG1jZMC5Fe+pXMcdD+KqcsS9Lrvmt0AbcCNBVsPynhgVfj5+cg3tcXvs9kV8y5YqjJ0srS5MH0gKqIUUpR1yePTySTgJdz7q5eTSUs+ifEnVCIZ3lcFSNda++UIyUqlsesfV5iQxoJM/ytmlBZLsR833JFW18RvfEW9oE4ffeXplLRQtTwq6aiko5IeVNKLQ1vTVDJCWVMfotZKM5WmtdaYsVUuCuc+RWP62N2J0vfiUWtHrR21NtZaG/ASba5oclMp41oHbM5jHvldy0Sbl00ecIP6DrVx7+y1LnjMGy+ZNo6iJlfGtnFTKW3b6I742JmN0G0vrb5lCpVCkfuwY+roxnAgc+YPGuwVuz6/mbHfwOIK1g5KCrnr+tXk1eSgVzJ9wOP06oL5Cn3jDRaD3i2p+qBbb/wUxy2dBwymtRZ2fUOPeXgSBI16WhP6m4bo4jnvdO2NeNB9edu3ybu/Zo5pWsiut6O083soKy/D4ehr22dDgnZGS4MBl5AL5VLqumhcHDlCbTwak/DZuGOvLpzwUlWWtXSrr1yylbA5gwFYaVEbSyAFvBAp0lklbrj0OfdmH/wd9qePyJ6FRLTvxn7RXQqb10mYqjLqjqeb/0mhkqgEIaMuhInOpn98unwzPflwcXZ+eXN+8iychPbeOkBJFCXIQR6b81T3XrdfbLPdbB4adnbkWry3UVWAkASzq6Dp5NcP4AxRvRHgPOhEdMubJgGDn3TRtvTztxr1mse38y2ldNUGPEfIUDvFfqUDJz/z2Z3MKAkyL2pKZjR0a4P+iWmaYmUftZ0P1pGrjzczSrsb5ZYqo2c0rGjMCyse88/8M+c0OCYPrvnd7w0vQC5rWJK990t/fwNDZMq8 +api: eJztWF1v2zYU/SsEnzZMkdwu7Tq9uWm6pR9pkLjbQ+aHK+naYiuRKknFMQT99+GSki1bThYMK7AHBzBiWVf345x7SPE23MLS8PiW34ilhILPA64q1GCFkhcZj3miFWQpGNsZBDxDk2pRkQWP+ev+vmHAjLMJecA1fqvR2NcqW/O4cZdCY8Zjq2sMeKqkRWnpFlRVIVIXMPpiyGfDTZpjCfTNrivkMVfJF0wtD3ilKT0r0Dg7F+8SSqSr3cRmOTIJJTK1YDbHLjdmFduURIl2AYzVQi55G/A70AKSwgeALBPkD4qrQWBfwzhcF2LjgQGB8u7m0yXzBQwCdhW1AbcoQVoC+1AJF2/6ArwdszlYplbSDKo6UEgbDEC/HSI1D7gVtiBjz+mGwmtPGm9b/7iplDQeiOeTyeH8uppXYHZx/dcMQ1F8WvD4dj/YazDItvSzhdJslL/PeAzzfuM8jnmH9Bb6vncI+lGlY+AfhNenR5Xwdn64md/j+nBStRTfavxuSTmbIVN3MgtTKGuZQQiVCL/i2oSyLhPUP41ZzLDSmILdSvzI63fkVUiLS9Q84AulS7D+p5enT0nz0nH4HtfmaZx7AA5wfmT4/6Jcsjp9aIWutLoTGWYsAwtMGCaVZXdQiOyRdbrSKimwPKj0YYApu/KWLEMLoug2Otr5vGGCGROS3V6/PWO/nr74Zf5Dbm1l4iharVahXqQnmAmrdKj0MtKLlD5k92PIZjlqZCWsWYJsuxMPW8lUmIqFSGlbt75WlwyBGP4l/7mb3N1mD/SBqmotRq88U/b5+oKJDKUVi7WQy3Fo98wC6oJ8QKJqGycFyK98S+c46H4UU5cl6HXfNbsB2oAbC7YelPHAqvDz85FvaovfZ7Mr5l2wVGXoZGlzYfpAVEQppCjrksenk0nAS7j3Vy8nk5Z8EuNPqEQyvK8KkK619ssRkpVKY9c/rjAhjQWZ/lfMKC2WYj9uuCOtronf+Ip6QZ0++srTKWmhanlU0lFJRyU9qKQXh7amqWSEsqY+RK2VZipNa60xY6tcFM59isb0sbsTpe/Fo9aOWjtqbay1NuAl2lzR5KZSxrUO2JzHPPK7lok2L5s84Ab1HWrj3tlrXfCYN14ybRxFTa6MbeOmUtq20R3xsTMbodteWn3LFCqFIvdhx9TRjeFA5swfNNgrdn1+M2O/gcUVrB2UFHLX9avJq8lBr2T6gMfp1QXzFfrGGywGvVtS9UG33vgpjls6DxhMay3s+oYe8/AkCBr1tCb0Nw3RxXPe6dob8aD78rZvk3d/zhzTtJBdb0dp5/dQVl6Gw9HXts+GBO2MlgYDLiEXyqXUddG4OHKE2ng0JuGzccdeXTjhpaosa+lWX7lkK2FzBgOw0qI2lkAKeCFSpLNK3HDpc+7NPvg77A8fkT0LiWjfjf2iuxQ2r5MwVWXUHU83/5NCJVEJQkZdCBOdTT9+vnwzPflwcXZ+eXN+8iychPbeOkBJFCXIQR6b81T3XrdfbLPdbB4adnbkWry3UVWAkASzq6Dp5NcP4AxRvRHgPOhEdMubJgGDn3XRtvTztxr1mse38y2ldNUGPEfIUDvFfqUDJz/z2Z3MKAkyL2pKZjR0a4P+iWmaYmUftZ0P1pGrTzczSrsb5ZYqo2c0rGjMCysec05DY3raNb77reEFyGUNS7L1PunvbytLycA= sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Broadcast signal

+ - + Broadcasts a signal. -## Request + -

Body

required
    variables object
    + -The signal variables as a JSON object. + -
- -The signal was broadcast. - -
Schema
Schema
Schema
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The signal is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx b/docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx index c8c484fd2ab..eb8e1dac584 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx @@ -9,18 +9,26 @@ custom_edit_url: null --- import ApiLogo from "@theme/ApiLogo"; +import Heading from "@theme/Heading"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; import Export from "@theme/ApiExplorer/Export"; -

Camunda 8 REST API

+ API for communicating with a Camunda 8 cluster.
-

- Authentication -

+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx index 831d4748c8d..a40e48fd8d1 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx @@ -5,51 +5,206 @@ description: "Cancels a running process instance. As a cancelation includes more sidebar_label: "Cancel process instance" hide_title: true hide_table_of_contents: true -api: eJztWN1v2zYQ/1eIe2oxRXK6tOv0MMBL0y1b2wWOuz0keaClk8WWIlWSimMI+t+HIyV/yUFbYC8DEsCIJR7v8/c789iC40sL6Q1cGZ2htUwo67jKEO4i0DUa7oRWlzmkkNFr2ctdDmIR5GgzI2qSgxTOvZRlnJlGKaGWrD7QHLMpLQd1Xj0TKpNNjpZV2iBzJVfsU2MdcyUyg5W+55Lpwj8eamMGrW5MhpFf3tU6rLCKdC2Q1do6zGOIoOaGV+jQUOwtKF4hpFDvx/YnriECQVHV3JUQgcEvjTCYQ+pMg4ehz0tkn3H9qKdO9+6RBzYrseKQtuDWNRkXyuESDURQaFNxF169OoOuuwuW0bpfdb6mPVtHCi4tRpBp5VA5WuN1LUXmU5B8suRZO7amF58wcxCBaqTkC4lDSLWhqjuBlqQ3CJhhgQap4Gl7EPaUmWHRh5+V2qJii7XPQmPRUEUdWwkpfRW4cZQjLiUzmGmTWypVIx2hpTC6Yq4Ulm1sx7fqfV/BX9iEiYJSey9yzONbBdFXExhBJZSomgrS066LwAlH8fZQPQD0LCQauo5EDdpaKxuS8WJyNo5+fqzSwvaVJrR1EZxNJo/u9IGwnDtO25R27J5L4VH6SFFroxcSqx/GxT0szFWQZDk6LiQLRWfcsiC4wJwJxW5mb8/Zz2cvf7p7VjpX2zRJVqtVbIrsBHPhtIm1WSamyOhDcs9jNi/RIKv4mqrC81yQTS7ZFj7M1piJQmSE+54P3hkq117hNljcx15Y3SDWOiPUcre6jRGj9jNlH2eXTOSonCjWBKiRab+n4I0kHXyhG5cuJFefYQuNsdFDK7apKm52ub5joIvAOu4a+1V6//hipJtg8ft8fsWCCpbpHFmhTSBFbyjeBfXZZBJBxR/C06vJpCOdVPFviEQxfKglV6FlHoQjVOjIQZsPbPP78N9URhuxFId2Y9ilaQ/iNyGiwMuz76EicarQjXri1BOnnjj1KKdeHvuRmtLhzKEhHKIx2jCdZY0xmLNVKeSGcIPt/pwSsPjEtSeuPXFtzLUuggpdqWmqopnEDySuhBSSnk4ng5s2acdTSZeE02WYc2iYQHM/zDKNkZBCG0jVpUnSltq6Lm1rbVyX3FPF7rkRdOj3BablQL4BVFJnXJbBsXFxaYEGpiHoc141KufsNZtdXM/Zb9zhiq99ssnkvurXk9eTo1pJ9BGN06tLFiIM0NxpF4Na4v1RtUH4WxT7Mcti1hjh1te0LaRngdygmTZUnw1kenteOz0HIYj6L28HIP3xz9xjgVrdbDvCXTzwqg5EPTZhTTxOC+0NboaVQ9epjmhsiHUSn44Re3XpiZfpqmqU775qyVbClYzvpCKTjXWUggikyFBZ71c/Eg9i78IK+ztYZKcxlTFgbWi6S+HKZhFnukqysG3zfyH1Iqm4UElvwibn0/cfP7yZnry7PL/4cH1xchpPYvfgfLqIFBVXe34Q4EfHu8OY2+1vzv/kJqIHlMMHl9SSC0UQ93lt+6ZwA6OmABGkRy8r9vrCXdRz+wbadsEtfjSy6+j1lwbNGtKbu20r8L0jF5a+b68VHk3us1l/A/Gcfde1x9Fw+5dcrX1vkg09QQSfcX38Vqa76yIokedovN9B8Dx4dzIndVtFo/uQLhp2TLMMa/eI7N4xhZrDpmdf/XU9J673lzGVzmmv4Su6IuIrSOEWbikA7TPn24h/34LkatnwJckHvfT3L0h9xuY= +api: eJztWFtv2zYU/isEn1pMkZwu7TI9DPDSdMvWdoHjbg9pHmjqyGJLkSovcQxB/304pOSbHLQF9jIgAYxY4uG5ft8xD1vq2NLS/JZeG83BWiKUdUxxoHcJ1Q0Y5oRWVwXNKcfXspe7GsQSWoDlRjQoR3N6EaQsYcR4pYRakuZAc0qmuBzVBfVEKC59AZbU2gBxFVPkk7eOuAqIgVrfM0l0GR4PtREDVnvDIQnLu1qHFVKjrgWQRlsHRUoT2jDDanBgMPaWKlYDzWmzH9ufsKYJFRhVw1xFE2rgixcGCpo74+Ew9HkF5DOsH/XU6d499MDyCmpG85a6dYPGhXKwBEMTWmpTMxdfvTqjXXcXLYN1v+pijXu2jpRMWkgo18qBcrjGmkYKHlKQfbLoWTu2phefgDuaUOWlZAsJQ0iNwao7ARalNwiYQQkGsOB5exD2lJhhMYTPK21BkcU6ZMFbMFhRR1ZCylAFZhzmiElJDHBtCoul8tIhWkqja+IqYcnGdvpRvesr+AuZEFFiau9FAUX6UdHkqwlMaC2UqH1N89OuS6gTDuPtoXoA6FlMNO06FDVgG61sTMaLydk4+vmxSgvbVxrR1iX0bDJ5dGcIhBTMMdymtCP3TIqA0keK2hi9kFD/MC7uYWGuoyQpwDEhSSw6YZZEwQUURChyO3tzQX4+e/nT3bPKucbmWbZarVJT8hMohNMm1WaZmZLjB+Wep2RegQFSszVWhRWFQJtMki18iG2Ai1JwxH3Ph+AMlmuvcBss7mMvrm4Qa50RarlbXW/EqP1MyYfZFREFKCfKNQJqZDrsKZmXqIMttHf5QjL1mW6hMTZ6aMX6umZml+s7BrqEWsect1+l948vRroRFr/P59ckqiBcF0BKbSIpekPpLqjPJpOE1uwhPr2aTDrUiRX/hkgUgYdGMhVb5kE4QsWOHLWFwDa/D/9NZbQRS3FoN6W7NO1B/DpGFHl59j1URE6V2qsnTj1x6olTj3Lq5bEfqSkezhwYxCEYow3RnHtjoCCrSsgN4Qbb/TklYvGJa09ce+LamGtdQmtwlcapCmeSMJC4iuY06+l0Mrhps3Y8lXRZPF3GOQeHCTD3wyzjjaQ5bSOpujzL2kpb1+Vto43rsnus2D0zAg/9ocC4HMk3gEpqzmQVHRsXFxdwYBqCvmC1VwUj52R2eTMnvzEHK7YOyUaT+6rPJ+eTo1pR9BGN0+srEiOM0NxpF4Na5P1RtVH4WxSHMcsC90a49Q1ui+lZADNgph7rs4FMby9ox+coRJP+y5sBSH/8Mw9YwFY3245wlw+sbiJRj01Yk4DTUgeDm2Hl0HWsIxgbY52kp2PEXl8F4nFd116F7quWZCVcRdhOKrj01mEKEioFB2WDX/1IPIi9jSvk72iRnKZYxoi1oekuhav8IuW6znjctvm/kHqR1UyorDdhs4vpuw/vX09P3l5dXL6/uTw5TSepe3AhXUiKmqk9PxDwo+PdYczt9jfnf3IT0QPKwYPLGsmEQoiHvLZ9U7ilo6ZAE5ofvazY6wt3Sc/tW9q2C2bhg5Fdh6+/eDBrmt/ebVtB6B2FsPh9e63waHKfzfobiOfku649jobbv2RqHXqT9PhEE/oZ1sdvZbq7LqEVsAJM8DsKXkTvTuaobqtodB/SJcOOKefQuEdk944p2Bw2Pfv6r5s5cr2/jKl1gXsNW+EVEVtF53XIWmgh4V1LJVNLz5YoG3Xi378/vMXq sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Cancel process instance

+ Cancels a running process instance. As a cancelation includes more than just the removal of the process instance resource, the cancelation resource must be posted. -## Request + -

Path Parameters

Body

    = 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
+ -The process instance is canceled. + 0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + title: "CancelProcessInstanceRequest", + }, + }, + }, + }} +> -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The process instance is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx index d6eb78f2f32..70bf0340a8d 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx @@ -5,79 +5,308 @@ description: "Complete a job with the given payload, which allows completing the sidebar_label: "Complete job" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Complete job

+ Complete a job with the given payload, which allows completing the associated service task. -## Request + -

Path Parameters

Body

    variables objectnullable
    + -The variables to complete the job with. + -
    result objectnullable
    - -The result of the completed job as determined by the worker. - -
    corrections objectnullable
    - -JSON object with attributes that were corrected by the worker. - -The following attributes can be corrected, additional attributes will be ignored: - -- `assignee` - reset by providing an empty String -- `dueDate` - reset by providing an empty String -- `followUpDate` - reset by providing an empty String -- `candidateGroups` - reset by providing an empty list -- `candidateUsers` - reset by providing an empty list -- `priority` - minimum 0, maximum 100, default 50 - -Providing any of those attributes with a `null` value or omitting it preserves -the persisted attribute's value. - -
- -The job was completed successfully. - -
- -The job with the given key cannot be completed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx index 707f67a255b..7916bf58154 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx @@ -5,59 +5,253 @@ description: "Completes a user task with the given key." sidebar_label: "Complete user task" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/SuYPSVTmlRSJ014Ux2ndZukHltuD7YPILmSEIMAA4CSNRz+984CpL5oTdxOjvKMxiKx2Lcf74HUNuD4zEJ6CzcWDXPcPsB9BLpCw53Q6qKAFHJdVhIdksmELCIo0OZGVGQCKZx1BpZxVvd+2FK4OXNzZDOxQMUecBVDBBU3vESHhlAbULxESKHuXP+JK4hAkNOKuzlEYPBbLQwWkDpT4z7yZI7kmOmpR9qAO836sAnV5nMsOaQNuFVFgEI5nKGBCKbalNyFW29PoW3vAyha96suVrRnE8OUS4sR5Fo5VI7WeFVJkftiJV8tBdUM0XT2FXNH2RsqrRNoaXXBjeCZDBe8KAR54fJyy+hQ0uut25nu1YAaQMnvB6FqKWlv8N5GwPPgudkDGrO8tk6XLBiwBZc1gXDHlkJKliHjeY7WikwimxpdbqHjApWzzKCtpRNqFtbdXFiGqqi0UI4JtdChdjG7mDKlHauMXogCi4iJDqXAKa+lo0Tv1ly8g/hObXKzzgg1G+bWRuCEo0vo2duRVWh1FboMbUt2Bm2llQ3NeD06HZZjsltdbteFL5itfSGmtZSrGNoITkej73oYCITlXFERMty4jtlnbZAV6LiQlnGD6xoxofz+PnSW6WIV6nKAoZXRmcTypyFT9zt/GSw7XBbIw7hlwTAL6LdXH8/Y+9M3v9y/mDtX2TRJlstlbKb5CRbCaRNrM0vMNKcP2b2M2WSOBlnJV54/a9azjTaYrTAXU5FTzynBLmxG3d7p+wFhhdVmwI611msjBqfYmN1cXTBRoHJiuiLGDqD9Hs9GSIFnunZpJrl6gA3PhqD7KLYuS27WZ9YuQBuBddzV9rtn1c+vB76JXr9PJpcsuGC5LpBNtQmq64AoiVIoUdYlpKejUQQlfwxXb0ejlnxSx5+RiWL4WEmuPLX20xGKlRve+sSEso6r/Ed1RhsxE/u4MWxrviPxh5BR0PnpM6Q9FCapnZQ51bUq4qPAjgI7CuygwN7/D4EJ2z/Nlkarma8wsrw2BpWTq+NT8CjSo0h/nEjfPPV6OlaMqmyIh2iMNkznXoEFW86F9O79636H3f1MOmrtqLWj1g5prY2gRDfXNEmptPXUodFGCgk9EE/ogWiTZmsC0ib5+jcqzS7QLPpxSW0kpNAEEbVpkjRzbV2bNpU2rk0W1KGdqQItB7H1JJI653IeAhk2kxZoJtMnecbLWhWcvWNX59cT9ht3uOThFy5B7rp+N3o3etIrmR7wOL68YCHDQMWt46F3Szp/0m0wfo5jP9WxmNdGuNU1bQvlyZAbNOOa+rGmSIfnvdN1MIKo+/KxJ84f/0x87+lou9pMjM4fOXVvf8CzNWfpSegZOtUeuuPPMAnqKBobNo7iV0OuXl54yeW6LGvlz101C69YfKsouayto2JEIEWOyvoIu/lbb/YprLC/AyJ7FVNDA+v643Ym3LzO4lyXSR62rf9nUmdJyYVKOgibnI0/33z5MD75dHF2/uX6/ORVPIrdo/OFIzmUXG3H0U+y1u+K++k2mwfNf5o7dr11+OiSSnKhqPo+sabT4y1s9AgRpLszyS1J3kedrG6haTJu8cbItqXb32o0K0hv7zcq9LIthKXvmwHiwZReXHWzxpfsubPNJzPrbnK18ieCrOkKInjA1d64tb1vI5gjL9D4WIPFWYjoZEJ+Nh4G08426neM8xwrd8B25y2AtLg+Ei//up6QtLpRa6kL2mv4kma/fAkp3MEdRa59tbxq/f0GJFezms/IPvilv38BCf/mzg== +api: eJztWE1z2zYQ/SsYnJIpTSqpkzq8qY7Tuk1Sjy23B8cHEFyKiEGAAUDJGg7/e2cBUl+0Jm4nR3lGY5FY7NuP90BqW+rY3NL0jt5aMMQx+0DvI6prMMwJrS5zmlKuq1qCAzSZoUVEc7DciBpNaErPewNLGGkGP2QpXElcCWQuFqDIA6xiGtGaGVaBA4OoLVWsAprSpnf9J6xoRAU6rZkraUQNfGuEgZymzjSwjzwrAR0TXXikDbjTZAgbUS0voWI0balb1QgolIM5GBrRQpuKuXDr7SntuvsACtb9qvMV7tnEUDBpIaJcKwfK4Rqraym4L1by1WJQ7RhNZ1+BO8zeYGmdAIurC2YEy2S4YHku0AuTV1tGh5Jeb93OdK8G2ABMfj8I1UiJe4P3LqKMB8/tHtCU8MY6XZFgQBZMNgjCHFkKKUkGhHEO1opMAimMrrbQYQHKWWLANtIJNQ/rrhSWgMprLZQjQi10qF1MLguitCO10QuRQx4R0aPkULBGOkz0y5qLX2j8RW1ys84INR/n1kXUCYeXdGBvT1ah1XXoMu06tDNga61saMbryem4HLPd6jK7LnxObOMLUTRSrmLaRfR0Mvmuh5FACGcKi5DBxnVMPmkDJAfHhLSEGVjXiAjl9w+hk0znq1CXAwytjc4kVD+Nmbrf+atg2eOSQB7CLAmGWUC/u/5wTt6dvvnl/kXpXG3TJFkul7Ep+AnkwmkTazNPTMHxg3YvYzIrwQCp2MrzZ816stEGsTVwUQiOPccE+7AJdnun7weEFVbbETvWWm+MGJ1iU3J7fUlEDsqJYoWMHUH7PZ6NNKUs041LM8nUA93wbAy6j2KbqmJmfWbtAnQRtY65xn73rPr59cg30uv32eyKBBeE6xxIoU1QXQ+ESVRCiaqpaHo6mUS0Yo/h6u1k0qFP7PgzMlEEHmvJlKfWfjpCkWrDW5+YUNYxxX9UZ7QRc7GPG9Ntzfckfh8yCjo/fYa0x8JEtaMyC92oPD4K7Ciwo8AOCuzd/xCYsMPTbGm0mvsKA+GNMaCcXB2fgkeRHkX640T65qnX06kiWGWDPARjtCGaewXmZFkK6d371/0eu/+ZdNTaUWtHrR3SWhfRClypcZJSa+upg6ONlCb4QDzBB6JN2q0JSJfw9W9UnF2AWQzjksZImtI2iKhLk6QttXVd2tbauC5ZYId2pgq4HMQ2kEhqzmQZAhk3ExdwJjMkec6qRuWMnJHri5sZ+Y05WLLwCxchd12fTc4mT3pF0wMep1eXJGQYqLh1PAxuUedPug3Gz3HspzoWeGOEW93gtlCeDJgBM22wH2uK9HjeO14HIxr1Xz4MxPnjn5nvPR5t15uJ0cUjw+7tD3i25iwDCT1DC+2he/6Mk8COgrFh4yR+Nebq1aWXHNdV1Sh/7qp5eMViW0XhsrEOixFRKTgo6yPs52+D2cewQv4OiORVjA0NrBuO27lwZZPFXFcJD9vW/zOps6RiQiU9hE3Op59uP7+fnny8PL/4fHNx8iqexO7R+cKhHCqmtuMYJlnrd8X9dNvNg+Y/zR373jp4dEktmVBYfZ9Y2+vxjm70SCOa7s4ktyR5H/WyuqNtmzELt0Z2Hd7+1oBZ0fTufqNCL9tcWPy+GSAeTOnFdT9rfEmeO9t8MrP+JlMrfyLIBq9oRB9gtTdu7e67iJbAcjA+1mBxHiI6maGfjYfRtLOLhh1TzqF2B2x33gJQi+sj8eqvmxlKqx+1VjrHvYYtcfbLliFq7SvlFevvtVQyNW/YHG2DT/z7F4GP5dI= sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Complete user task

+ Completes a user task with the given key. -## Request + -

Path Parameters

Body

    variables objectnullable
    + -The variables to complete the user task with. + -
- -The user task was completed successfully. - -
- -The user task with the given key cannot be completed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/correlate-message.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/correlate-message.api.mdx index ddd8bcb7d20..b5355f72fee 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/correlate-message.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/correlate-message.api.mdx @@ -5,57 +5,353 @@ description: "Publishes a message and correlates it to a subscription." sidebar_label: "Correlate message" hide_title: true hide_table_of_contents: true -api: eJztWW1v2zYQ/isEP22YKrtt1nX65qbp5r6kRuJuH5J8oKizxYYiVb7EMQz99+FEyZYtO81egHWYAwS2zOMd7+55TkdyRR2bW5pc0Q9gLZsDvYmoLsEwJ7QaZzShXBsDkjloJSKageVGlChCEzrxqRQ2B0sYKYIMYSoj64mWCEecJoxYn65nxtdqPFsLCa2IsMR6zsHamZc4ZyGkJAacN4q4HMhMGOtIaTTKEKGsY4oDuYVlPdwaXxvOyEK4PL5WNKIGvniw7pXOljRZ1Y/CQEYTZzxElGvlQDkcYmUpBa+XNPhs0cUVtTyHguE3tyyBJlSnn4E7GtHSYLicAIujihWAn9sRmnYWhxKEWZLBTCjIiAiuvZp8OG89q9fb2LHOCDWnVUQ7kXoHy/1GutHEqOhZNzA9rZjJGfPS0YSiiTtmBEtlcOWwC2sx9OPt5cdzkmnuCwxfRFmWCZzD5KQTmRDk3dgpLyUqCuNVRB0ophzCbtc+uhFGyUwbssgFz7eSLiwpGyBmexzdMYW2hMPHFvinm9BdBKjQqkI5A7bUyoagPBsOH46NsF34OU20AqINKbSBHnIt/RPAO2yzk+mO7WY0wiQtQEr8/AqJhLtWe8mzmzgm5ccZTa52V/WK2drLJu91qvbFN0Q03qN5m06H8TDd4GH8+rD3fSJ9JfNhZegHrW52l9MoPUi/BxOxj9NNFsZNEh6j+ED6Hqh/fzEGtVgXkncqizkrvMpYzEoR38LSxsoXKZgfvhm4knewJMw5I1LvQoVSvgAjOLlj0oMNgM6gNMBx2qHadIT434G4UA7mYGhEZ9oUzIWfXpz8C6A/vJRHxem8Bvg7WNrHESIk4dshxLF+/3/rNwqeHOpYSqPvRAYZyZhj2Lco7bBGiuxwV1IanUoovoruEZkESZKBY0KSgI/Q96JgGjrfq4s3p+Tnkx9/uvkud660yWCwWCxiM+NPIBNOm1ib+cDMOP6j3PcxmeZggBRsSVIgm26zC1tbAhczwbH/csHVejEYxv2E2IFtPbrqNZHrAuKN6G2DRuTTxZiIDJQTs6VQ877prYabpdq7JJVM3dJNQvtGd61YXxTMrPG0baCKqHXM+Y4bBwrg82c93YiKX6fTCQkqCNcZ1CXA5dhdB0PoRCGUKHxBk5PhMKIFuw9PL4bDCnVixh/hiSJwX0qmwnZlxx2hQssctNWOtVz5hzKjjZiLXbvxFrkaEL8OHrV8et7H+xttUpFloGp4kmav2ZKKSakXkMVHXh15deTVQV6d9PF+rnG779XxlXSkzpE6h6jz474Wb6QIRtkgDsEYbYjm3BuDTWUu5PowqrXdvLMCFo9cO3LtyLU+16qIFuByjfcipbY1dJjLaUIHzebNDjpn8DSiFswdGFvvtb2RNKGrwJoqGQxWubauSlalNq4a3GFKto7gcTiwq0WN1JzJPFjuZw8H6vuFxqvTcDhBXpKLs8sp+YU5WLBlHU00ua365fDlcK9WFD2gcTQZk+BhwF6nHrRqkdh71QbhxyiucCdvgXsj3PISp4XwpMAMmJHHBKwx0dirteNzEKJR8+VNi5S3v0/rZGMtu9jcDZ3ds6IMTAx3ORuQ7V7AbEa6Sdu6xegcFQg10/UyG3D1HUZFYGyI0DB+2gfyZFzzkeui8KouympeHxEQ1gkgl946DFxEpeCARwEbb1qx92GE/BYskqcxJj8gtK3Fc+Fyn8ZcF4PmmGv9mUqdDgom1KAxYQenow+fzl+Pnrwfn56dX549eRoPY3fv6iAjVwqmuutozzg6xytb3q42L6H/yA1jA0AH925QSiYUpr2O6KqpElftCZTdhhNeugauX9HVKmUWPhlZVfjzFw9mSZOrmw3K8KmKaA4sA1MXltsajqchXk+muA4Ulx7X07tVqqJ2xohzKN2Dsjedijf5eDlFIjVXqIXOcI5hC7xeZQua0Gt6TSleIKOGmqP17ysqmZp7zHJCg178+wMGZ7As +api: eJztWW1v2zYQ/isEP22YIrtt1nX65qbp5r6kRuJuH9J8oKizxYYiVb7EMQz99+FEyZYtO81egHWYAwS2zOMd7+55TiRvRR2bW5pc0/dgLZsDvYmoLsEwJ7QaZzShXBsDkjloJSKageVGlChCEzrxqRQ2B0sYKYIMYSoj64mWCEecJoxYn65nxp/UeLYWEloRYYn1nIO1My9xzkJISQw4bxRxOZCZMNaR0miUIUJZxxQHcgvLerg1vjackYVwefxJ0Yga+OLBupc6W9JkVT8KAxlNnPEQUa6VA+VwiJWlFLxe0uCzRRdX1PIcCobf3LIEmlCdfgbuaERLg+FyAiyOKlYAfm5HaNpZHEoQZkkGM6EgIyK49nLy/qL1rF5vY8c6I9ScVhHtROotLPcb6UYTo6Jn3cD0tGImZ8xLRxOKJu6YESyVwZXDLqzF0I83Vx8uSKa5LzB8EWVZJnAOk5NOZEKQd2OnvJSoKIxXEXWgmHIIu1376EYYJTNtyCIXPN9KurCkbICY7XF0xxTaEg4fW+CfbUJ3GaBCqwrlDNhSKxuC8nQ4fDg2wnbh5zTRCog2pNAGesi19E8A77DNTqY7tpvRCJO0ACnx8yskEu6T2kue3cQxKT/MaHK9u6qXzNZeNnmvU7UvviGi8R7N23Q6jIfpBg/jV4e97xPpK5kPK0M/aHWzu5xG6UH6PZiIfZxusjBukvAYxQfS90D9+4sxqMW6kLxTWcxZ4VXGYlaK+BaWNla+SMH88M3AlbyFJWHOGZF6FyqU8gUYwckdkx5sAHQGpQGO0w7VpiPE/w7EhXIwB0MjOtOmYC789Pz0XwD94aU8Kk4XNcDfwtI+jhAhCd8OIY71+/9bv1Hw9NCOpTT6TmSQkYw5hvsWpR3WSJEd3pWURqcSiq+ie0QmQZJk4JiQJOAj7HtRMA073+vL12fk59Mff7r5LneutMlgsFgsYjPjJ5AJp02szXxgZhz/Ue77mExzMEAKtiQpkM1uswtbWwIXM8Fx/+WCq/ViMIz7CbED23p01dtErguIN6J3DBqRj5djIjJQTsyWQs37prc23CzV3iWpZOqWbhLaN7prxfqiYGaNp20DVUStY8533DhQAJ897elGVPw6nU5IUEG4zqAuAS7H3XUwhE4UQonCFzQ5HQ4jWrD78PR8OKxQJ2b8EZ4oAvelZCocV3bcESpsmYO22rGWK/9QZrQRc7FrN94iVwPiV8Gjlk/P+nh/rU0qsgxUDU/SnDVbUjEp9QKy+MirI6+OvDrIq9M+3i80Hve9Or6SjtQ5UucQdX7ct8UbKYJRNohDMEYbojn3xuCmMhdyfRnV2m7eWQGLR64duXbkWp9rVUQLcLnGvkipbQ0d5nKa0EFzeLODzh08jagFcwfG1mdtbyRN6CqwpkoGg1WurauSVamNqwZ3mJKtK3gcDuxqUSM1ZzIPlvvZw4G6v9B4dRYuJ8gLcnl+NSW/MAcLtqyjiSa3Vb8Yvhju1YqiBzSOJmMSPAzY69SDVi0Se6/aIPwYxRWe5C1wb4RbXuG0EJ4UmAEz8piANSYae7V2fA5CNGq+vG6R8ub3aZ1srGWXm97Q+T0rysDE0MvZgGy3AbMZ6SZtq4vRuSoQaqbrZTbg6juMisDYEKFh/KQP5Mm45iPXReFVXZTVvL4iIKwTQC69dRi4iErBAa8CNt60Yu/CCPktWCRPYkx+QGhbi+fC5T6NuS4GzTXX+jOVOh0UTKhBY8IOzkbvP168Gp28G5+dX1ydnzyJh7G7d3WQkSsFU911tHccneuVLW9Xm5fQf6TD2ADQwb0blJIJhWmvI7pqqsR1ewNlt+GETdfA9Wu6WqXMwkcjqwp//uLBLGlyfbNBGT5VEc2BZWDqwnJbw/EsxOtkiutAcelxPb2uUhW1M0acQ+kelL3pVLzJh6spEqlpoRY6wzmGLbC9yhbYRMTmMc6u+Vn/tqKSqbnHDCc06MS/PwBYjq8w sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Correlate message

+ - + Publishes a message and correlates it to a subscription. If correlation is successful it will return the first process instance key the message correlated with. -## Request + -

Body

required
    variables objectnullable
    + -The message variables as JSON document + -
- -The message is correlated to one or more process instances - -
Schema
Schema
Schema
- -The provided data is not valid - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-deployment.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-deployment.api.mdx index 5f7f999e043..0fb9cda78e7 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-deployment.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-deployment.api.mdx @@ -12,94 +12,776 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Deploy resources

+ - + Deploys one or more resources (e.g. processes, decision models, or forms). This is an atomic call, i.e. either all resources are deployed or none of them are. -## Request - -

Body

required
- -The resources are deployed. - -
Schema
    deployments object[]
    - -Items deployed by the request. - -
  • Array [
  • processDefinition object
    - -Base properties for DeploymentProcess. - -
    decisionDefinition object
    - -Base properties for DeploymentDecision. - -
    decisionRequirements object
    - -Base properties for DeploymentDecisionRequirements. - -
    form object
    - -Base properties for DeploymentForm. - -
  • ]
Schema
    deployments object[]
    - -Items deployed by the request. - -
  • Array [
  • processDefinition object
    - -Base properties for DeploymentProcess. - -
    decisionDefinition object
    - -Base properties for DeploymentDecision. - -
    decisionRequirements object
    - -Base properties for DeploymentDecisionRequirements. - -
    form object
    - -Base properties for DeploymentForm. - -
  • ]
Schema
    deployments object[]
    - -Items deployed by the request. - -
  • Array [
  • processDefinition object
    - -Base properties for DeploymentProcess. - -
    decisionDefinition object
    - -Base properties for DeploymentDecision. - -
    decisionRequirements object
    - -Base properties for DeploymentDecisionRequirements. - -
    form object
    - -Base properties for DeploymentForm. - -
  • ]
- -The document upload failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-document-link.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-document-link.api.mdx index b59905bb2f2..0817f5d0d91 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-document-link.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-document-link.api.mdx @@ -5,31 +5,31 @@ description: "Create a link to a document in the Camunda 8 cluster." sidebar_label: "Create document link (alpha)" hide_title: true hide_table_of_contents: true -api: eJztV0tz2zYQ/is7ONlTipQTN015U22ndSdJPbbSHmwfVuRKREICDABa5mj43zsLkJZkybHb5ljN6EUs9/XtfrtcCYcLK9JrcaqzpiLlxG0kdE0GndTqPBepyAyho+H8vVRfRCRyspmRNQuJVJx4EUAopfoCTgNC3suDVOAKghOsGpUjvIWsbKwjE9+oG/VROwJXoANXSAtZYwwpV7agVdmCbepaG2cBFUg1qqjSpl1rtk4bimBZyKwAaUFpBxWhcjDXBmqj8yZjB6Gx5K2laaq0oxs1ZWOk8lpL9tAbuMayLhDmhK4xdHuQZLqqtSLlbEJoynaEWUbWJl4ufI56aRtX+SGgyqHCFmYEtpl9psxxKrIC1YJulFQwb1gYDJWElmzsPbpRIhI1GqzIkWEsVkJhRSIVQ6TnuYiE5ETX6AoRCUNfG2koF6kzDT1GY1oQnJ+CnvvEP6TLaQ9PLCJhs4IqFOlKuLZmS9YZqRai66IH4z67a8tfGzLtluk5lvaltr2ywYPto7nR1bd9ug1WybpfdN6yxI4TmVaOizddCazrUma+fJPPlp1a7erWHh5OvOFid5KsP5UVTfV7eUcbslI5WpARkZhrU6ELl94c73QBx84aRk6PSnlHO1nwwUsFlY39zXNsSifS12/G/Oq6SDjpSra52W2XIXbRdSxhyNZa2eDvq/ERf+26sW1yiRZCF+dgG1/F86YsW/biO2WuMeUudPsSNDDEZmJi0UWC7mtpyE7cPj0Pmc/R0YiTvFd57llI5R4GWBYUuMfb7PXH4qk89wk+Ho9fklOfTyaXOcqS8hg+cIXn5FCWFtAQE9CdzCkfGHBADmY6b2Pf9k8kvzZ6VlL1wy4I215N4CJI9nYhgANoIQjOgvXry3cn8PPxjz/dHhTO1TZNkuVyGZt5NqJcOm1ibRaJmWf8ZrnDGKYFGRroDPNcsk0sYQ072JoyOZfZAGfvNjB4Ib5nus2ffgPsxsgdmCfw6fIcZE7KyXkr1WLX9GZvCZzpxqWzEhngB+Cfq9QJ2Kaq0LRDD28b6CJhHbrGPksTr1/tLdTfptMLCCog0zn5ieVHYG+Ig6ikklVTifR4PI5Ehffh35vxuGOdjPgLIlFc+SWqUK2PwmEyWtetD0wq61Bl3wsZbeRCPra73YR9EZ+GiLrQhhW5QvP6UWvrS4cnXyqSoQttslqPxy7hnrQ8RcjcDVPUc5JYhe7p0iRZFdq6Ll3xUtEldwzNHRqJszIUJB+HLhuqp9QZlkXwYBdFPuBpOUS33nEuz66m8Cs6WmLrs8omt1W/Hb8d79XKok9onFycQ4gw1OAGLwxqucH3qg3CL1HsJ66lrDHStVd8W0jPjNCQmTQMxENt9Pa8dv4fhETU/3g3VMzvf0096Mxpl+tpfnaPVd135MbwHUYil+Nch9NQLLuOM4pkbIh0HB/tFubFue+vTFdVozzJqgUspSsA9+ylIhKlzEhZ71W/DQ1i78MJ/BkswlHMIIZKG7h1IV3RzOJMV0kWbnv4npV6llQoVdKbsMnJ5MOnj6eT0fvzk7OPV2ejo3gcu3vnk8W1X6Ha9CNs2tuz6MAvo4ePA1+t58v/G/p/3dD7cnd075K6RKm4AfutJ3DT9cO+zkSUbi3vgZ5uo55irsVqNUNLn0zZdXw5bNdMWrm0zEdP7NebkP77VXtvLF+o3dr677BsWEowGww0+Q9dPLjsF/VDeP6hZK9X/UVU7aZLg7cbOe5uu0gUhDkZ72QQOAmujKasZq1gZ9Pl555wxyTLqHbflL3dmE4Xf1xNmez6B5NK53yPwSU/KuFSpOJG3LDD2qfH86i/vhIlqkWDC5YPevn1N6xZZOg= +api: eJztV0tz2zYQ/is7ONlTipQTN015U22ndSdJPbbSHmwfVuRKREICDABa5mj43zsLkJZkybHb5ljN6EUs9/XtfrtcCYcLK9JrcaqzpiLlxG0kdE0GndTqPBepyAyho+H8vVRfRCRyspmRNQuJVJx4EUAopfoCTgNC3suDVOAKghOsGpUjvIWsbKwjE9+oG/VROwJXoANXSAtZYwwpV7agVdmCbepaG2cBFUg1qqjSpl1rtk4bimBZyKwAaUFpBxWhcjDXBmqj8yZjB6Gx5K2laaq0oxs1ZWOk8lpL9tAbuMayLhDmhK4xdHuQZLqqtSLlbEJoynaEWUbWJl4ufI56aRtX+SGgyqHCFmYEtpl9psxxKrIC1YJulFQwb1gYDJWElmzsPbpRIhI1GqzIkWEsVkJhRSIVQ6TnuYiE5ETX6AoRCUNfG2koF6kzDT1GY1oQnJ+CnvvEP6TLaQ9PLCJhs4IqFOlKuLZmS9YZqRai66IH4z67a8tfGzLtluk5lvaltr2ywYPto7nR1bd9ug1WybpfdN6yxI4TmVaOizddCazrUma+fJPPlp1a7erWHh5OvOFid5KsP5UVTfV7eUcbslI5WpARkZhrU6ELl94c73QBx84aRk6PSnlHO1nwwUsFlY39zXNsSifS12/G/Oq6SDjpSra52W2XIXbRdSxhyNZa2eDvq/ERf+26sW1yiRZCF+dgG1/F86YsW/biO2WuMeUudPsSNDDEZmJi0UWC7mtpyE7cPj0Pmc/R0YiTvFd57llI5R4GWBYUuMfb7PXH4qk89wk+Ho9fklOfTyaXOcqS8hg+cIXn5FCWFtAQE9CdzCkfGHBADmY6b2Pf9k8kvzZ6VlL1wy4I215N4CJI9nYhgANoIQjOgvXry3cn8PPxjz/dHhTO1TZNkuVyGZt5NqJcOm1ibRaJmWf8ZrnDGKYFGRroDPNcsk0sYQ072JoyOZfZAGfvNjB4Ib5nus2ffgPsxsgdmCfw6fIcZE7KyXkr1WLX9GZvCZzpxqWzEhngB+Cfq9QJ2Kaq0LRDD28b6CJhHbrGPksTr1/tLdTfptMLCCog0zn5ieVHYG+Ig6ikklVTifR4PI5Ehffh35vxuGOdjPgLIlFc+SWqUK2PwmEyWtetD0wq61Bl3wsZbeRCPra73YR9EZ+GiLrQhhW5QvP6UWvrS4cnXyqSoQttslqPxy7hnrQ8RcjcDVPUc5JYhe7p0iRZFdq6Ll3xUtEldwzNHRqJszIUJB+HLhuqp9QZlkXwYBdFPuBpOUS33nEuz66m8Cs6WmLrs8omt1W/Hb8d79XKok9onFycQ4gw1OAGLwxqucH3qg3CL1HsJ66lrDHStVd8W0jPjNCQmTQMxENt9Pa8dv4fhETU/3g3VMzvf0096Mxpl+tpfnaPVd135MbwHUYil+Nch9NQLLuOM4pkbIh0HB/tFubFue+vTFdVozzJqgUspSsA9+ylIhKlzEhZ71W/DQ1i78MJ/BkswlHMIIZKG7h1IV3RzOJMV0kWbnv4npV6llQoVdKbsMnJ5MOnj6eT0fvzk7OPV2ejo3gcu3vnk8W1X6Ha9CNs2tuz6MAvo4ePA1+t58v/G/p/3dD7cnd075K6RKm4AfutJ3DT9cO+zkSUbi3vgZ5uo55irsVqNUNLn0zZdXw5bNdMWrm0zEdP7NebkP77VXtvLF+o3dr677BsWEowGww0+Q9dPLjsF/VDeP6hZK9X/UVU7aZLg7cbOe5uu0gUhDkZ72QQOAmujKasZq1gZ9Pl555wxyTLqHbflL3dmE4Xf1xNmez6B5NK53yPwSU/KuEyOKt9ajyH+msrUaJaNLhg2aCTX38DK65j7A== sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Create document link (alpha)

+ Create a link to a document in the Camunda 8 cluster. @@ -41,14 +41,119 @@ This endpoint is an [alpha feature](/components/early-access/alpha/alpha-feature in future releases. ::: -## Request + -

Path Parameters

Query Parameters

Body

+ -The document link was created successfully. + -
Schema
- -The document link creation failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-document.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-document.api.mdx index ab0f217f4a2..4e3e1a642c7 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-document.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-document.api.mdx @@ -12,22 +12,25 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Upload document (alpha)

+ - + Upload a document to the Camunda 8 cluster. @@ -38,30 +41,183 @@ This endpoint is an [alpha feature](/components/early-access/alpha/alpha-feature in future releases. ::: -## Request - -

Query Parameters

Body

required
    metadata object
    - -Information about the document. - -
    customProperties object
    - -Custom properties of the document. - -
- -The document was uploaded successfully. - -
Schema
    metadata object
    - -Information about the document. - -
    customProperties object
    - -Custom properties of the document. - -
- -The document upload failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-element-instance-variables.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-element-instance-variables.api.mdx index 5664d9a1006..af5a703d5c5 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-element-instance-variables.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-element-instance-variables.api.mdx @@ -5,52 +5,179 @@ description: "Updates all the variables of a particular scope (for example, proc sidebar_label: "Update element instance variables" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Update element instance variables

+ Updates all the variables of a particular scope (for example, process instance, flow element instance) with the given variable data. Specify the element instance in the `elementInstanceKey` parameter. -## Request + -

Path Parameters

Body

required
    variables objectrequired
    + -JSON object representing the variables to set in the element’s scope. + { \"foo\" : 2 }\n2 => { \"bar\" : 1 }\n\nAn update request with elementInstanceKey as '2', variables { \"foo\" : 5 }, and local set\nto true leaves scope '1' unchanged and adjusts scope '2' to { \"bar\" : 1, \"foo\" 5 }.\n\nBy default, with local set to false, scope '1' will be { \"foo\": 5 }\nand scope '2' will be { \"bar\" : 1 }.\n", + type: "boolean", + default: false, + }, + operationReference: { + description: + "A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + required: ["variables"], + title: "SetVariableRequest", + }, + }, + }, + }} +> -
    { \"foo\" : 2 }\n2 => { \"bar\" : 1 }\n\nAn update request with elementInstanceKey as '2', variables { \"foo\" : 5 }, and local set\nto true leaves scope '1' unchanged and adjusts scope '2' to { \"bar\" : 1, \"foo\" 5 }.\n\nBy default, with local set to false, scope '1' will be { \"foo\": 5 }\nand scope '2' will be { \"bar\" : 1 }.\n","type":"boolean","default":false}}>= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
- -The variables were updated. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-group.api.mdx index 8ba50e38e63..b213e181a14 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-group.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-group.api.mdx @@ -5,53 +5,275 @@ description: "Create group" sidebar_label: "Create group" hide_title: true hide_table_of_contents: true -api: eJztWN9v2zYQ/lcIPm2YIjlt2nV689K0y/orSNztIckDRZ4tNhSp8kccwdD/PhwpO05sp33ogAFzgMCyeLq77+77SOsW1LOZo+UlfWtNaOl1Rk0Llnlp9KmgJeUWmIe0mFELXwM4/7sRHS0XlBvtQXu8ZG2rJI/PFV+c0XjP8Roahle+a4GW1FRfgHua0dZiFC/B4apmDaxZOW+lntGMCnDcyhZ90pJOaiBCulaxjuATxEyJr4FomJMZ5pfTvs+ol16hl5jyccz+PGVN+x4NLLjWaJdCPxsd4sdmpOiRzJkjqQKCuMA5ODcNSnU5zX4U+BjoHXTb07iBbolzmceANXtUrp3YE9q4vp7nrRY5Z03QguWslfkNdC7XoanA/rKJQUBrgWN8WnobIPu3UUntYQaWZnRqbMN8uvXy6Fs4P0YE76Bz34c4VW8L4v9K19DiaDR6iqXcBCWINp5Uq4D5lf5gLBABnknlCLNAWmtupQBBpI65LZVAKiO6/ErvJnVrTaWg2UqM9ZzG5CxZDnFJKh9hjiTDKkW/PH9zTH47evHr9U+1960ri2I+n+d2yg9ASG9sbuyssFOO/2j3c04mNVggDesQJRNCYkymyH1jiGuBy6nkxJsIcEibYM0Tvqe7mlY3N6IVBYOVG/vSmHw+PyVSgPZy2kk92wwdn5myoNAHq0zwZaWYvqH33f/W7jcmLjQNsytiPQzQZ9R55sMajB0Sev5s6876x2RyRpILwo0AMjWW+Fq6ZSAE0Ugtm9DQ8mg0ymjD7tK3l6NRjz6x49+BRBO4axXTkVqP4UhNmnveRmBSO880/1GdMVbO5OO4D8+OgcSvE6KlBnecFMOZSBTjN47cMiUFYcHXGDXJBzUZk2DKPXFy7EW2F9n/XmTPN/n+xthKCgE60nOlN+nikceUMnMQe13tdbXX1S5dvdj2A3KsCVbZIg/BWmOJ4TxYC4LMa6mie3zjWcYehLf/objX2l5ru7TWP/adXujSmxpWBnxtcLDSGhd5xXxNS1rEdUcz6sDegsWRzIIGq2hJF0lEfVkUi9o435eL1ljfF7fYoVtmJatU4iUuJ7EtSaQMZ6pOsTabiQvrs5Tj9HpMXpHzk4sJecs8zFkXi4shH7p+NXo12uoVTXd4HJ+dkoQwUXFte1i6RZ1vdZuMv8dx319jIXmw0ncX+FgqTwXMgh0HLPmKIkO86B2/JyOaDRdvlsT58+9J7D1ubef3c7CTO9a0SZhpjrV6tUdCTk2MNNBlM2dsIFiXQI7yw01qnp1GhXHTNEHHbVbPyFz6mrC1GnAVnEfsGVWSA44O7hNamr1PK+SvFJEc5ti/RLLl7jqTvg5Vzk1TDLOS1WelTFU0TOpiCOGK4/GHzx9fjw/enx6ffLw4OTjMR7m/87FOSPCG6fU8HkrhAdBVOzzc+aJVTGqsYExuMajkkg4quc4Gpl/SxaJiDj5b1fd4+2sA29Hy8vpeGPitz2gNTICNsrrBuQ09TifYwQTjorkKGH9jltdnyyfGnEPrn7S9XlP42aeLCdJoGJY2RuAzls1xkMrmtKRX9IpSnLiih8jQeH9BFdOzwGZon/zi3z9Qwn8i +api: eJztWN9v2zYQ/lcIPm2YIjlt2nV689K0y9qmQeJuD2keKPJssaFIlT/iCIb+9+FI2XFiO+1DBwyYAwSWxePdfXffR1m3oJ7NHC2v6FtrQkuvM2pasMxLo08FLSm3wDykxYxa+BrA+d+N6Gi5oNxoD9rjJWtbJXncV3xxRuM9x2toGF75rgVaUlN9Ae5pRluLUbwEh6uaNbBm5byVekYzKsBxK1v0SUs6qYEI6VrFOoI7iJkSXwPRMCczzC+nfZ9RL71CLzHl45j9Rcqa9j0aWHCt0S6FfjY6xI/NSNEjmTNHUgUEcYFzcG4alOpymv0o8DHQO+i2p3ED3RLnMo8Ba/aoXDuxJ7RxfT3PWy1yzpqgBctZK/Mb6FyuQ1OB/WUTg4DWAsf4tPQ2QPZvo5LawwwszejU2Ib5dOvl0bdwnkUE76Bz34c4VW8L4v9K19DiaDR6iqXcBCWINp5Uq4D5Z/3BWCACPJPKEWaBtNbcSgGCSB1zWyqBVEZ0+We9m9StNZWCZisx1nMak/NkOcQlqXyEOZIMqxT96uLNMfnt6MWv1z/V3reuLIr5fJ7bKT8AIb2xubGzwk45/qPdzzmZ1GCBNKxDlEwIiTGZIveNIa4FLqeSE28iwCFtgjVP+J7ualrdPIhWFAxWbpxLY/Lp4pRIAdrLaSf1bDN03DNlQaEPVpngy0oxfUPvu/+t029MXGgaZlfEehigz6jzzIc1GDsk9PzZ1pP1j8nknCQXhBsBZGos8bV0y0AIopFaNqGh5dFolNGG3aVvL0ejHn1ix78DiSZw1yqmI7Uew5GaNPe8jcCkdp5p/qM6Y6ycycdxHz47BhK/ToiWGtzxpBieiUQxfuPILVNSEBZ8jVGTfFCTMQmm3BNPjr3I9iL734vs+Sbf3xhbSSFAR3qu9CZdfOQxpcwcxF5Xe13tdbVLVy+2/YAca4JVtshDsNZYYjgP1oIg81qq6B7feJaxB+HtfyjutbbX2i6t9Y99pxe69KaGlQFfGxystMZFXjFf05IWcd3RjDqwt2BxJLOgwSpa0kUSUV8WxaI2zvflojXW98UtduiWWckqlXiJy0lsSxIpw5mqU6zNZuLC+izlOL0ek1fk4uRyQt4yD3PWxeJiyIeuX41ejbZ6RdMdHsfnpyQhTFRcOx6WblHnW90m4+9x3PfXWEgerPTdJW5L5amAWbDjgCVfUWSIF73j92REs+HizZI4f/49ib3Ho+3ifg52cseaNgkzzbFWr/ZIyKmJkQa6bOaMDQTrEshRfrhJzfPTqDBumiboeMzqGZlLXxO2VgOugvOIPaNKcsDRwX1CS7P3aYX8lSKSwxz7l0i2PF1n0tehyrlpimFWsvqslKmKhkldDCFccTz+8Ons9fjg/enxydnlycFhPsr9nY91QoI3TK/n8VAKD4Cu2uHhzhetYlJjBWNyi0ElV3RQyXU2MP2KLhYVc/DJqr7H218D2I6WV9f3wsBvfUZrYAJslNUNzm3ocXqCHUwwLpqrgPE3Znl9ttwx5hxa/6Tt9ZrCzz9eTpBGw7C0MQL3WDbHQSqb05JSnLbi7sjOeG9BFdOzwGZom3zi3z9nIH4m sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Create group

+ - + Create group -## Request + -

Body

+ -The group was created successfully. + -
Schema
Schema
Schema
- -The group could not be created. -More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-mapping-rule.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-mapping-rule.api.mdx index 5428314b82a..d0de2f60524 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-mapping-rule.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-mapping-rule.api.mdx @@ -5,53 +5,340 @@ description: "Create a new mapping rule" sidebar_label: "Create mapping rule" hide_title: true hide_table_of_contents: true -api: eJztWV1v2zYU/SsEnzZMkZw27TK9uWm6ZW3SIHG7h8QPFHVtsaFIlaTsCIb++3BJOZZjJ/W6vRRzgMD6uLpf5xySohbUsaml6Q09Z1Ul1JSYWgIdR1RXYJgTWp3lNKXcAHPQ2VyhSURzsNyICm1oSk+8BWFEwZyUPWe3ikbUwNcarHuj84amC8q1cqAcHrKqkoL7SMkXi64W1PICSoZHrqmAplRnX4A7GtHKYF5OgPVuJBPlBSuhZ2qdEWq6kd6oAKJYCURPiCuA+EeJ05hqTNso+PrMZL2jsxmaPulNfVdSXdti2rahZcJAjuCsCl1LtIszjqgTTmKgHkIBkKvQeNq2waettLKhey8Gh/izmVIfPTJnlgT0c2JrzsHaSS1lE2Mq3wsjk/LjhKY3/2uAn8EsoPSGWaDt+HFTOifvodkO3x00D2l3wPURReDWs94pGW/VR3mm8pizslY5i1kl4jtobKzqMgPzy54BPwgDhHIwBUMjOtGmZC5cen20W3oXHu330Njd2BF6tGfHj8KOfzg+oN3RYLDDpMJ1LXOitCPZQxLPTCiV0ZmEcgtx1uMMyWWwJDk4JiQJtCHMkmCYQU6EIjdX707Ib0evfh3/VDhX2TRJ5vN5bCb8AHLhtIm1mSZmwvEf7X6OyagAg1U0mDLLc4ExmSSr3hNbARcTwZEH2N0ubYLdjP0y6Hk2h7ubnHmQZm3EBoWG5NPVGRE5KCcmDXZ4I7R/ZsJqiT5YpmuXZpKpO7rC9VtEHRJblyUzD8xZD9BG1Drm6l4ZTwwtL19sFcEfo9ElCS4I1zmQiTbEFcIuA2ERpVCirEuaHg0GES3ZfTh7PRi06BMR36ESReC+kkx5aj0uRyhSagMdf3xhQlnHFP+vkNFGTMXjuOuC70j8NlS01NXL7brqVtbIOb5cgm8s4HJQAvL4Vp2virOEGZ/ATORBFs67C3Immc6bQNq9KPei3ItyuyiP/r0o9wrbK2yvsCcU9mrbcnKoCHbZIA/BGG2I5rw2BnIyL4T07nGfYhm7U+N+Nttrba+1p7TWRrQEV2jc7a209dRhrqApTbqZ6wBnLksjasHMwFj/fl4bSVO6CHJp0yRZFNq6Nl1U2rg2mSEWM2YEy2RgIN4OslrSRWrOZBFCbsKGN/qvyCdhU4Eck6vT6xH5nTmYs8a3EUOuuz4eHA+2ekXTJzwOL89IqDCQrjcQLN2iore6Dca7OG7xvd0Cr41wzTU+FtqTATNghjV2/oEMXTzvHc+DEY26g3dLivz518ijjIPY1WrH/fSelVWQYG/DZEWx/s7H6qpas/IsnWifVMehzfIQazA29GMQH27y9fLMy47rsqyVH3vVlMyFKwjrtYvL2jpsU0Sl4IC7C+limdDS7EO4Qz6HiOQwRqgDH5dD7lS4os5irsuk24x6+M2kzpKSCZV0IWxyMjz/dPF2ePDh7OT04vr04DAexO7e+ZaiJEqm+nmEhV1/Wfe43t6Hjm98H+mAdnDvkkoyobDhvpZFJ8Mbui7DcdRJ6YYuFhmz8MnItsXLX2swDU1vxivl4Vkb0QJYDsbr9g53h+hJSO9ghOHRPHBgYzO/jZZPDDmHyj1rO+6NJJcfr0fI0+67T6lzfMawOX4TYnOa0lt6Syl+bkIPXgL++oJKpqY1m6J98It/fwPzizqS +api: eJztWV1v2zYU/SsEnzZMkZw27TK9uWm6ZW3SIHG6h9QPFHVtsaFIlaTsCIb++3BJOZZjJ/W6vRRzgMD6uLxf5xyKohbUsaml6S09Z1Ul1JSYWgIdR1RXYJgTWp3lNKXcAHPQ2VyhSURzsNyICm1oSk+8BWFEwZyUPWefFY2oga81WPdG5w1NF5Rr5UA5PGRVJQX3kZIvFl0tqOUFlAyPXFMBTanOvgB3NKKVwbycAOvdSCbKC1ZCz9Q6I9R0I71RAUSxEoieEFcA8UOJ05hqTNso+PrEZL2jsxmaPulNfVdSXdti2rahZcJAjuCsCl1LtIszjqgTTmKgHkIBkKvQeNq2waettLKhey8Gh/izmVIfPTJnlgT0c2JrzsHaSS1lE2Mq3wsjk/LjhKa3/2uAn8EsoPSGWaDt+HFTOifvodkO3x00D2l3wPURReDWs94pGW/VR3mm8pizslY5i1kl4jtobKzqMgPzy54BPwgDhHIwBUMjOtGmZC5cen20W3oXHu330Njd2BF6tGfHj8KOfzg/oN3RYLDDQ4XrWuZEaUeyhySeeaBURmcSyi3EWY8zJJfBkuTgmJAk0IYwS4JhBjkRitxevTshvx29+nX8U+FcZdMkmc/nsZnwA8iF0ybWZpqYCcd/tPs5JqMCDFbRYMoszwXGZJKsek9sBVxMBEceYHe7tAl2M/bLoOfZHO5ucuZBmrURGxQakpurMyJyUE5MGuzwRmg/ZsJqiT5YpmuXZpKpO7rC9VtEHRJblyUzD8xZD9BG1Drm6l4ZT0wtL19sFcEfo9ElCS4I1zmQiTbEFcIuA2ERpVCirEuaHg0GES3ZfTh7PRi06BMR36ESReC+kkx5aj0uRyhSagMdf3xhQlnHFP+vkNFGTMXjuOuC70j8NlS01NXL7brqVtbIOb5cgm8s4HJQAvL4szpfFWcJMz6BmciDLJx3F+RMMp03gbR7Ue5FuRfldlEe/XtR7hW2V9heYU8o7NW25eRQEeyyQR6CMdoQzXltDORkXgjp3eM+xTJ2p8b902yvtb3WntJaG9ESXKFxt7fS1lOHuYKmNOmeXAf45LI0ohbMDIz17+e1kTSliyCXNk2SRaGta9NFpY1rkxliMWNGsEwGBuLtIKslXaTmTBYh5CZseKP/inwSNhXIMbk6vR6R35mDOWt8GzHkuuvjwfFgq1c0fcLj8PKMhAoD6XoTwdItKnqr22C8i+MW39st8NoI11zjsNCeDJgBM6yx8w9k6OJ573gejGjUHbxbUuTPv0YeZZzErlY77qf3rKyCBHsbJiuK9Xc+VlfVmpVn6UT7pDoObZaHWIOxoR+D+HCTr5dnXnZcl2Wt/NyrpmQuXEFYr11c1tZhmyIqBQfcXUgXy4SWZh/CHfIpRCSHMUId+LiccqfCFXUWc10m3WbUw28mdZaUTKikC2GTk+H5zcXb4cGHs5PTi+vTg8N4ELt751uKkiiZ6ucRFnb9Zd3jensfOr7xfaQD2sG9SyrJhMKG+1oWnQxv6boMx1EnpVu6WGTMwo2RbYuXv9ZgGprejlfKw7M2ogWwHIzX7R3uDtGTkN7BCMOjeeDAxmZ+Gy1HDDmHyj1rO+7NJJcfr0fI0+67T6lzHGPYHL8JsTlNKcVPTTja099fW1DJ1LRmU7QNPvHvbxxHOZY= sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Create mapping rule

+ - + Create a new mapping rule -## Request + -

Body

+ -The mapping rule was created successfully. + -
Schema
Schema
Schema
- -The mapping rule could not be created. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request to create a mapping rule was denied. -More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request to create a mapping rule was denied. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx index dddb8e07e68..70e36289d21 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx @@ -5,29 +5,32 @@ description: "Creates and starts an instance of the specified process." sidebar_label: "Create process instance" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztWltv27gS/isEn1ocRXa6bbfHCyyQW8/x9hYk6e5DnAdKGlncUqRKUnEEw//9YEhJliW5m6LNy4ELFLEkcmY4l2+GQ66pZUtDZ7f0UqsYjCFcGstkDPQuoKoAzSxXcp7QGY01MAv1uHkzLKAJmFjzAsfRGT1zowxhMiHGMm3xZ0uVqJTYDIgpIOYph4QUnl64kDcZNE8kgZRLjiSJVaQ0gH+8AG5+Sy9mkkRdesBtBpqUhssl4daQUvKvJZAvUC3kM2aIBltqCQmJKnIOhVAV0WBUqWMwzwOimrnI5vTyw8dWpvm5WxQj96ANVzJcyIX8iyGPVGk3PlZ5IcCJXS+06KmVRJAqDbUUyIch+1LYhVxlIAlbMW7PtnS4ISBZJCAJF5IGVMPXEow9VUlFZ2v3yDUkdGZ1CQGNlbQgLX5iRSF47Ow3+dugcdbUxBnkDH/ZqgA6oyr6G2JLA6okfErp7Hb4hQmx50uh0UMsB4MU75nmKKh72HWKP64/fSR+GrEZs2TFhah1Ynlj1JZAq0+tlG1fExOrAhZyj2a9egbCJ4lzIyYuO8KirjYBtSCZtOjcfYHRF/1XNHuP49Y5wy1HYzWXS7rpRM0VpKABg2RA/4To5iN6JokzZUCiSyKj0oDu6CkCUjBtUQwmBNEQK52Y2m3QhVKtcmIzbkjLO1zID6WxOPf3KeEpCn/Pk8aLaqG5tLAETQOaKp0z61+9fkkDmnPJ8zKns+NNQF0gY8jrMkbqIyZ+z42T0A11RmnGhuS0Qp2xUthgPCjcMv1MZhfSIYR7gnuQNiTzrfzfooAeX41IsJAstaAJtyRjhkQAsgaTXXUwrVlFA8ot5GYsSHYdHgTkMO4/b0tbaiDwYEEiVhiS82WGUsWiTGC2kIQckYSnzgksQUZmXH1+KIu44LZCGDRgiVAxE72A2VJLhVr5aDGIUW+VJlKtApKpFdyD9ioccEKo4TliBreiIowsvN1PHWJd+MUuaHdKV3lNAGBccSvwVS9XuNTAlbzueZOb08O9oUoRaVtgGNgf04OfDM5dRgd14DlRqBupLFFxXGqy4jbj0oOOR9gbnoMqa4+t37XxGAtlIAnJOTcOmzFyaxff8ahIKQFMuizpvtJZyoRB8EnBxtmf+zGzCaitkSXLweBKI2gcKSGt0KZQ0iAKzlMCeWGrwKHFPTccwXNLppmB2OqcpF1VkxofFRQde+9qbARN/QfyjEuSm+e7Gt1JoI3Jdsy5hQ+idJ0mMQisIlNvniVI0DxuidqaYaxkypel3uopFqVxUGAcWvDHAmLXrc/GCqGrOi8zA3Rz14eKel3nbeZ4B9V41tmWK4QnIC1Pq6YaGeafgEC4DLclDaqRdfwepy1k0qtyCMikUByB9Yy5GIhczkmIVUtw5ROGAxkIPf/ZyqpQDZvgUHMcao5DzXGoOQ41x6HmONQcT1Zz7Es6/S7H3tTjkMAj5k5LJ1zI7ysk3kEVjsVxMBT6T99sGZe87sT0JA7JJykqNIThCaAhfGdlrKBBo3TSVD9rCOxl2T18cC6u9hHW/OVFNxyPjh9fIc0TZ9rHDEb9wQNDF3YOcFqN2fCLrzxNmedMVy3Jnbqx6VVV46ajAb1nooT9le3xi19evgp2yrMNrnlcpPn5j0g0T1xfrunKfVM418hE4Y5evf71DQ5t3Ot4IO1m43HGg5zT6IvpdNwRh7UBM226pz/QltsWwrtMMebJNt4dmO3xjRqkRwrVJ8eLVcbjzOmiRoVuD3fb+W209nSQ8L1CjVf4e2P7++v62jeG/MY0sLPL2b+76LfiT4To7XGaxDxIx0PveARCecf64R0v7kWewloDD2ok/6e9d73v5qD/yVq/1ZWRE22VgcZS13X0HSAvpARIzBiQ4aKfuc37GT6LcUR/Prqgx1rG17gduLmXSRizvJQJC1nBwy9QmVCWeQT6X0MoSqDQEOO6G/c6gNMBnA7g9ITWwqL//waufmRf46330UHTO6jM46DMO+UIlB2A6wBcB+A6VFU/qarCsS+/sRV03QSSMMuwRSDdeYLgSYhaezU27wTbKRa0ZIKA1kr7DqFvXXDRmqQ5Cao14dexZ29ZaBUJyEcLu91jgUs/kiRgGRfNmQlDh8GBke9k3V69PSP/fvnq17tnmbWFmU0mq9Uq1Gl8BAm3SodKLyc6jfE/jnsekhs0HslZhebchlgXYuubOzHavHY+JwxaZ/x4ZTci/Nd+h7CDJaXmg0tKJ+Tz1XzsfG3LutuvoSxSpZ1FgskvdOsnQ6Z9LnVLoxOIHQb+jMOW3QbnN7tHfU/7783NJfEkSKwSqDuavqOFjMLumcrL6TSgOXvwT6+n0w3SRIs/YiWSwEMhmGS9u01uOdhhxTtNnppbWHuL7OdYRmm+5H2+Yb/vjy/P/Yrq5k0ONlPY8imUca7DbEZndFKH01EjpqEBNaAxy7mqoNSCzujah8xmNpmsM2XsZrYulLabyf0L2ksf+NmHVuMy7rQk82yHpsMP2FpvlnTmSxnyhlxdXN+Q/zALK1Y5VSLLXdJvpm+mo1Rx6B6KJ5dz4lfoHa8DBg1ZjOpRsn7wYwhvMGMZiEvNbXWN07x6ImAa9EmJ2m8doubnqLtzCzeIBvWPt42b/PHXjbM0AtnV9vbbhe907s+K015Hr1tNbL1x7OR0Onr6eLtz+tbmjbuRcyR33jI8brltJt0Nzy+mLmpS5RTU5KGBqrsdSzoNj4fxczl3MBCrPC+lywVy6bvwrGO6+kgCAULwGDCtzdYUPbLD9r3/QurKkByH6HY+NpoUsOQ2K6MwVvmkLsfbv5FQ0SRnXE5qFmZydvLh88fzk6P387OLj9cXR8fhNLQPvizCEM2Z7MrhS5J+lu+veb3NgIfbp098+7QOXQsPdlIIxiWCifOIdQ2ut3QIrndBDZC3dL2OmIHPWmw2+PprCdjxv73bxio+bQKaAUtAu6hzJxb0zBv56AZFaHv8w3Y6XifxM07iGAr7zbF3nRxx+en6BtGnvlmbqwTnaLbCW7dsRWfUwUV7F8G9W1PB5LJkSxzraeK//wGQYjiv sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Create process instance

+ - + Creates and starts an instance of the specified process. The process definition to use to create the instance can be specified either using its unique key @@ -36,52 +39,395 @@ The process definition to use to create the instance can be specified either usi Waits for the completion of the process instance before returning a result when awaitCompletion is enabled. -## Request + -

Body

required
    oneOf
    variables object
    + -JSON object that will instantiate the variables for the root variable scope -of the process instance. +0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + startInstructions: { + description: + "List of start instructions. By default, the process instance will start at\nthe start event. If provided, the process instance will apply start instructions\nafter it has been created.\n", + type: "array", + items: { + type: "object", + properties: { + elementId: { + description: + 'Future extensions might include:\n - different types of start instructions\n - ability to set local variables for different flow scopes\n\nFor now, however, the start instruction is implicitly a "startBeforeElement" instruction\n', + type: "string", + }, + }, + title: "ProcessInstanceCreationStartInstruction", + }, + }, + awaitCompletion: { + description: + "Wait for the process instance to complete. If the process instance completion does\nnot occur within the requestTimeout, the request will be closed. Disabled by default.\n", + type: "boolean", + default: false, + }, + fetchVariables: { + description: + "List of variables names to be included in the response.\nIf empty, all visible variables in the root scope will be returned.\n", + type: "array", + items: { type: "string" }, + }, + requestTimeout: { + description: + "Timeout (in ms) the request waits for the process to complete. By default or\nwhen set to 0, the generic request timeout configured in the cluster is applied.\n", + type: "integer", + format: "int64", + }, + }, + title: "CreateProcessInstanceRequestBase", + }, + ], + properties: { + processDefinitionKey: { + description: + "The unique key identifying the process definition, e.g. returned for a process in the\ndeploy resources endpoint. Cannot be used together with processDefinitionId.\n", + type: "integer", + format: "int64", + }, + }, + title: "CreateProcessInstanceRequestByKey", + }, + { + type: "object", + allOf: [ + { + type: "object", + properties: { + variables: { + description: + "JSON object that will instantiate the variables for the root variable scope\nof the process instance.\n", + type: "object", + additionalProperties: true, + }, + tenantId: { + description: "The tenant ID of the process definition.", + type: "string", + }, + operationReference: { + description: + "A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be >0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + startInstructions: { + description: + "List of start instructions. By default, the process instance will start at\nthe start event. If provided, the process instance will apply start instructions\nafter it has been created.\n", + type: "array", + items: { + type: "object", + properties: { + elementId: { + description: + 'Future extensions might include:\n - different types of start instructions\n - ability to set local variables for different flow scopes\n\nFor now, however, the start instruction is implicitly a "startBeforeElement" instruction\n', + type: "string", + }, + }, + title: "ProcessInstanceCreationStartInstruction", + }, + }, + awaitCompletion: { + description: + "Wait for the process instance to complete. If the process instance completion does\nnot occur within the requestTimeout, the request will be closed. Disabled by default.\n", + type: "boolean", + default: false, + }, + fetchVariables: { + description: + "List of variables names to be included in the response.\nIf empty, all visible variables in the root scope will be returned.\n", + type: "array", + items: { type: "string" }, + }, + requestTimeout: { + description: + "Timeout (in ms) the request waits for the process to complete. By default or\nwhen set to 0, the generic request timeout configured in the cluster is applied.\n", + type: "integer", + format: "int64", + }, + }, + title: "CreateProcessInstanceRequestBase", + }, + ], + properties: { + processDefinitionId: { + description: + "The BPMN process ID of the process definition to start an instance of.\nCannot be used together with processDefinitionKey.\n", + type: "string", + }, + processDefinitionVersion: { + description: + "The version of the process. Only considered when a processDefinitionId is provided.\nBy default, the latest version of the process is used.\n", + type: "integer", + format: "int32", + default: -1, + }, + }, + title: "CreateProcessInstanceRequestById", + }, + ], + title: "CreateProcessInstanceRequest", + }, + examples: { + "By process definition key": { + summary: "Create a process instance by processDefinitionKey.", + value: { processDefinitionKey: 12345, variables: {} }, + }, + "By process definition ID": { + summary: + "Create a process instance by processDefinitionId and version.", + value: { + processDefinitionId: "1234-5678", + version: 1, + variables: {}, + }, + }, + }, + }, + }, + }} +> -
    = 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be >0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
    startInstructions object[]
    - -List of start instructions. By default, the process instance will start at -the start event. If provided, the process instance will apply start instructions -after it has been created. - -
  • Array [
  • ]
  • variables object
    - -JSON object that will instantiate the variables for the root variable scope -of the process instance. - -
    = 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be >0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
    startInstructions object[]
    - -List of start instructions. By default, the process instance will start at -the start event. If provided, the process instance will apply start instructions -after it has been created. - -
  • Array [
  • ]
- -The process instance was created. - -
Schema
    variables object
    - -All the variables visible in the root scope. - -
Schema
    variables object
    - -All the variables visible in the root scope. - -
Schema
    variables object
    - -All the variables visible in the root scope. - -
- -The provided data is not valid. - -
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-role.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-role.api.mdx index 8a4c2acaf12..09292cbab40 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-role.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-role.api.mdx @@ -5,53 +5,275 @@ description: "Create a new role." sidebar_label: "Create role" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/Ss7OLVTmpQTJ015Ux2ndZM4HltpD7YPILASEYMAA4CWORr+984S1EciyckhnelBmtGIJJa7+3bfA8VdsMBnnuU37MpqZHcJszU6HpQ155LlTDjkAfu1hEn0wqmaFlnOTvsl4GBwDs5qTG8NS5jDzw368LuVLcsXTFgT0AQ65HWtleh9Z588+VgwL0qsOB2FtkaWM1t8QhFYwmpHmQSFnlYNr3DDygenzGwrpUmJIJWvNW+B7gA7hVDiOkPWdQkLKmhyQqgiiKuYM+s6Wnfoa2t8DPxsdEw/23HIH8y5h1giCb4RAr2fNlq3sRQ/CDtFeovt7jTusV2iXCYSkSZf1Wof8oi1X95M8sHIVPCqMZKnvFbpPbY+NU1VoPtlG4DE2qGg6CwPrsHkv4WkTMAZOpawqXUVD/HSy5NvgLzo03+Lrf8+uLFyO+D+L/pFBiej0RPsFLbREowNUKyipbfmvXUIEgNX2gN3CLWzD0qiBGX6xJYCgMLKp6lcO1torHYyYjOlMVxGyyEuxNIB9xANixj95urNKfx28uLXu5/KEGqfZ9l8Pk/dVByhVMG61LpZ5qaCvmT3cwqTEh1CxVtCyaVUFJNrWDcFfI1CTZWAYHuAQ9pAFY/4nu5oXN3efVbsa5za2ozG8PHqHJREE9S0VWa2Hbq/Z8obTT54YZuQF5qbe7bu/be2vDH4pqq4W7HqywBdwnzgodmAsUc9z5/t3E7/nEwuIboAYSXC1DoIpfLLQASiUkZVTcXyk9EoYRV/jGcvR6OOfFLHvwOJAXysNTc9tb6GowxUa972wJTxgRvxozpjnZqpr+N++cQYSPw6IlpKcN8DIj5UQHNx7+GBayWBN6GkqFE+pMk+Ca59ehDZQWQHke0V2fNtvr+xrlBSounpudKb8v0jj2tt5ygPujro6qCrfbp6sev/49gAVdkRD9E568AK0TiHEual0r17etNZxh6Ed/ijeNDaQWv7tNYlrMJQWhqq1Nb31OGhZDnL6F3Ns4R5dA/oaBizYI3TLGeLKJMuz7JFaX3o8kVtXeiyB+rBA3eKFzoyj5ajnJY00VZwXcZQ2+2ihc0RyWl8+YVXcHV2PYE/eMA5b/vyUcgvXb8avRrt9EqmezyOL88hIoxk29gAlm5JyTvdRuPvcdx1d1RI0TgV2mu6LZanQO7QjRuq+IoEQ7zeO51HI5YMB2+W1Pjrn0nfXdq8rtbjrbNHXtVRenE8tXp1J8pNbR9pIMR2ztRAdD6CHKXH2+S7PO81JGxVNabfSM0M5iqUwDdqIHTjA2FPmFYCaTawTmhp9i6uwN8xIhyn1L9IsuX+OVOhbIpU2CobJiGr30LbIqu4MtkQwmen4/cfL16Pj96dn55dXJ8dHaejNDyGvk7E74qbzTzirNDtmCNujAj3jRSHdgV8DFmtuTJU4T75xSCiGxZFdJcMQrhhi0XBPX50uuvo8ucGXcvym7u1buisS1iJXKLrVXdPUxt2GvM5mlBYMtcNhd8a4XXJ8o6xEFiHJ23vNvR/+eF6QiwbRqSVlXSP43Man/I5y9ktu2WMZrHkIQ6V6PqCaW5mDZ+RffRLn38BHrSEoA== +api: eJztWE1z2zYQ/Ss7OLVTmpQTJ015Ux2ndfPlseX24PgAAisRMQgwAGiZo+F/7yxBfSSSHB/SmR7kGY9IYbG7b/c9UNwFC3zmWX7DLq1GdpswW6PjQVlzLlnOhEMesF9LmEQvnKppkeXstF8CDgbn4KzG9JNhCXP4pUEffreyZfmCCWsCmkCXvK61Er3v7LMnHwvmRYkVp6vQ1shyZovPKAJLWO0ok6DQ06rhFW5Y+eCUmW2lNCkRpPK15i3QDrBTCCWuM2Rdl7CggiYnhCqCuIw5s66jdYe+tsbHwM9Gx/SxHYf8wZx7iCWS4Bsh0Ptpo3UbS/GDsFOkt9juTuMO2yXKZSIRafJNrfYhj1j75c0k741MBa8aI3nKa5XeYetT01QFul+2AUisHQqKzvLgGkz+W0jKBJyhYwmbWlfxEL96efIdkB/69N9i658GN1ZuB9z/Rb/I4GQ0eoSdwjZagrEBilW09JN5bx2CxMCV9sAdQu3svZIoQZk+saUAoLDycSrXzhYaq52M2ExpDBfRcogLsXTAPUTDIka/uXxzCr+dvPj19qcyhNrnWTafz1M3FUcoVbAutW6Wuamgf7L7OYVJiQ6h4i2h5FIqisk1rJsCvkahpkpAsD3AIW2gikd8j3c0rm6fPiv2NU5tHUZjuL48ByXRBDVtlZlth+73THmjyQcvbBPyQnNzx9a9/96RNwbfVBV3K1Z9HaBLmA88NBsw9qjn+bOdx+mfk8kFRBcgrESYWgehVH4ZiEBUyqiqqVh+MholrOIP8e7laNSRT+r4E5AYwIdac9NT61s4ykC15m0PTBkfuBE/qjPWqZn6Nu7XT4yBxK8joqUE9z0g4kMFNBd3Hu65VhJ4E0qKGuVDmuyT4NqnB5EdRHYQ2V6RPd/m+xvrCiUlmp6eK70p3z/yuNZ2jvKgq4OuDrrap6sXu34/jg1QlR3xEJ2zDqwQjXMoYV4q3bunN51l7EF4hx+KB60dtLZPa13CKgylpaFKbX1PHR5KlrOM3tU8S5hHd4+OhjEL1jjNcraIMunyLFuU1ocuX9TWhS67px7cc6d4oSPzaDnKaUkTbQXXZQy13S5a2ByRnMaXX3gFl2dXE/iDB5zzti8fhfza9avRq9FOr2S6x+P44hwiwki2jQNg6ZaUvNNtNH6K4667pUKKxqnQXtG2WJ4CuUM3bqjiKxIM8XrvdB+NWDJcvFlS469/Jn136fC6XI+3zh54VUfpxfHU6tWdKDe1faSBENs5UwPR+QhylB5vk+/ivNeQsFXVmP4gNTOYq1AC36iB0I0PhD1hWgmk2cA6oaXZu7gCf8eIcJxS/yLJlufnTIWyKVJhq2yYhKw+C22LrOLKZEMIn52O319/eD0+end+evbh6uzoOB2l4SH0dSJ+V9xs5hFnhW7HHHFjRLhvpDi0K+BDyGrNlaEK98kvBhHdsCii22QQwg1bLAru8drprqOvvzToWpbf3K51Q3ddwkrkEl2vujua2rDTmM/RhMKSuW4o/NYIr0uWO8ZCYB0etb3d0P/Fx6sJsWwYkVZW0h7H5zQ+5XOWM0ZzWNodB0r03YJpbmYNn5Ft9El//wIfGoOk sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Create role

+ - + Create a new role. -## Request + -

Body

+ -The role was created successfully. + -
Schema
Schema
Schema
- -The role could not be created. -More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-tenant.api.mdx index 77b0e5d1a19..f204f2566d9 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-tenant.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-tenant.api.mdx @@ -5,52 +5,277 @@ description: "Creates a new tenant." sidebar_label: "Create tenant" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/Ss7OLVTmpQTJ015Ux2ndZO6HltpD44PILgSEZMAgw/LGg3/e2cBUpZDOfYh0+lBmtGIJJb78fY9iNw1c3xhWX7FZqi4cuw6YbpFw53U6rRkORMGucN+NWElWmFkS8ssZ8dh0QIHhUtwwShlCTP4xaN1v+pyxfI1E1o5VI4OedvWUgT32WdLTtbMigobTkdu1SLLmS4+o6BoraFknEQbVoN/ympjaZ2RajHKa1YheCW/eAS8c2gUr/vs4PQt6xKmeIPPc0OWoOfgKtwU2HWxRGmwJOw2iV0nzElXk8uIWAToIsLBuoc3OuMxXLCtVjbW+GJySD/jPPr0l9xCbEkJ1guB1s59Xa8I9e8K83tc7U5kA+gNrgZghozcQJOHuFLZu3GJlQeD7ZRvVZkK3nhV8pS3Mr3BlU2Vbwo0P43LKbE1KCiBiGny3xUolcMFGpawuTYNd/HS66MnSz4LxbzHlX1e8RHJHcX/D3tJJkeTye6QrdG3ssQSSu44SAtKO7jltSy/QeHW6KLGZmfvtwNM4TxaQomOyxoiLMAtRMMCS5AKri7eHcMvR69+vv6hcq61eZYtl8vUzMUBltJpk2qzyMxc0JfsfkxhVqFBaPgKCgRelpJi8hruAQfbopBzKcDpAGWfNhCC6SfFniRmWB3vShtueSNHm9QUPl6cgixROTlfSbUYhw73zLmvyQcvtHd5UXN1w+57+dRWOAXrm4abDU0eBugSZh13fquMR7Tx8sXObfb32ewcogsQukSYawOuknYIREU0UsnGNyw/mkwS1vC7ePZ6MunIJ3X8GZUowLu25ipQ6+typIJGG+z5EwqTyjquxPfqjDZyIb+Omz7QVU/it7GiQVAvx3x/p00hyxJVoCf0f7uDqnhd6yXudbXX1V5X39DV0ZjvZ9rBXHtVDrqy2huB4elLbdb2utrraq+rR3T1atcD4FQBoRweOdEYbUAL4Y3BEpaVrIN7eqUZYvd/aJGLe63ttbbX2lhrXcIadJWmaU2rbaAOdxXLWRbf4SxLmEVzi4YmPWvmTc1yto5C6fIsW1faui5ft9q4LrulLtxyI3lRR+7RchTUQJRaC15XMdi4YbSwPTc5jm+z8AYuTi5n8Bt3uOSrACCFfOj6zeTNZKdXMn3E4/T8FGKFkW5bW8DglrS80200fo7jrrsmIIU30q0u6bYIT4HcoJl6wnxDgz5e8E7n0Ygl/cG7gRx//DML/aXt6+J+bHZyx5u2F99m7HXPrTi/2ryTExHnOhj3NBnXQU1FY2Phk/RwTMnz06AsoZvGq7C9qgUspauAb+Eiam8d4ZGwWgqkV/58PSQ0mH2IK/B3jAiHKfU0Em/YVRfSVb5IhW6yftyx+S1qXWQNlyrrQ9jsePrnx7O304MPp8cnZ5cnB4fpJHV3LmBHrG+42s4jzCTuZxgPKt0aSD46wey76PDOZW3NpSKQQ/7rXl3D2M/S1C8q5Iqt1wW3+NHUXUeXv3g0K5ZfXd8Lis66hFXISzRBjjc0nWHHMaWDGQUm89pTAqNBXpcMd0yFwNZ90/Z6a2s4/+tyRvTrZ7KNLukew5c0r+VLlrNP7BNjNP8lD4HZ4fqa1VwtPF+QffRLn38Bv8qvaw== +api: eJztWE1z2zYQ/Ss7OLVTmpQTJ3V5Ux2ndZO4HltpD64PILgSEYMAA4CWNRr+984CpCyHcuJDptODPOMRRSz24+17ELlr5vnCsfyazVBz7dlNwkyDlntp9FnJciYsco/9asJKdMLKhpZZzk7CogMOGpfgg1HKEmbxc4vO/2rKFcvXTBjtUXu65E2jpAjus0+OnKyZExXWnK78qkGWM1N8QkHRGkvJeIkurAb/lNXG0nkr9WKU16xCaLX83CLgvUerueqzg7M3rEuY5jU+zw1ZgpmDr3BTYNfFEqXFkrDbJHaTMC+9IpcRsQjQZYSDdY83ettiuOEao12s8cXkkD7GefTpL7mD2JISXCsEOjdvlVoR6t8V5ne42p3IBtBbXA3ADBn5gSaPcaWyd+MSKw8G2ynf6TIVvG51yVPeyPQWVy7VbV2g/WlcTomNRUEJREyT/65AqT0u0LKEzY2tuY+3Xh99s+TzUMw7XLnnFR+R3FH8/7CXZHI0mewO2VhzJ0ssoeSeg3SgjYc7rmT5FQo31hQK65293w4whYtoCSV6LhVEWIA7iIYFliA1XF++PYFfjl79fPND5X3j8ixbLpepnYsDLKU3NjV2kdm5oH+y+zGFWYUWoeYrKBB4WUqKyRU8AA6uQSHnUoA3Aco+bSAE0380+yYxw+r4VNpwq7VydEhN4ePlGcgStZfzldSLceiwZ85bRT54YVqfF4rrW/bQy28dhVNwbV1zu6HJ4wBdwpznvt0q4wltvHyx85j9fTa7gOgChCkR5saCr6QbAlERtdSybmuWH00mCav5ffz2ejLpyCd1/BmVaMD7RnEdqPVlOVJDbSz2/AmFSe081+J7dcZYuZBfxk0f6aon8ZtY0SCol2O+vzW2kGWJOtAT+p/dQVVcKbPEva72utrr6iu6Ohrz/dx4mJtWl4OunGmtwPD0pTdre13tdbXX1RO6erXrAXCqgVAOj5xorbFghGitxRKWlVTBPb3SDLH7H7TIxb3W9lrba22stS5hNfrK0LSmMS5Qh/uK5SyL73COJcyhvUNLk541a61iOVtHoXR5lq0r43yXrxtjfZfdURfuuJW8UJF7tBwFNRBFGcFVFYONG0YL23OTk/g2C8dweXo1g9+4xyVfBQAp5GPXx5PjyU6vZPqEx+nFGcQKI922joDBLWl5p9to/BzHXXdDQIrWSr+6om0RngK5RTttCfMNDfp4wTt9j0Ys6S/eDuT44+9Z6C8dX5cPY7PTe143vfg2Y68HbsX51eadnIg4N8G4p8m4DmoqWhcLn6SHY0penAVlCVPXrQ7Hq17AUvoK+BYuQrXOEx4JU1IgvfLn6yGhwex9XIG/YkQ4TKmnkXjDqbqQvmqLVJg668cdm89CmSKrudRZH8JlJ9MPH8/fTA/en52cnl+dHhymk9Tf+4Adsb7mejuPMJN4mGE8qnRrIPnkBLPvosd7nzWKS00gh/zXvbqGsZ+jqV9UyDVbrwvu8KNVXUe3P7doVyy/vnkQFH3rElYhL9EGOd7SdIadxJQOZhSYzFVLCYwGeV0y7JgKgY3/qu3N1tFw8efVjOjXz2RrU9Iey5c0r+VLljNGs1/aHVgd7q2Z4nrR8gXZRp/09y8VBK5v sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Create tenant

+ - + Creates a new tenant. -## Request + -

Body

required
+ -The tenant was created successfully. + -
Schema
Schema
Schema
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found. The resource was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-user.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-user.api.mdx index ea02fb106fd..3ffb793ae6f 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-user.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-user.api.mdx @@ -5,57 +5,323 @@ description: "Create a new user." sidebar_label: "Create user" hide_title: true hide_table_of_contents: true -api: eJztWU1z2zYQ/SsYnNopTcmJkya8qY7Tuklcjy23B9uHJbgSEYMAA4CSNRr+984CpCVbkp1DOtODPKMxiV3u53ugtFhyD1PHs2t+5dDy24SbGi14afRpwTMuLILHIEt4gU5YWZOQZ/w4iBgwjXPWOLQpT7jFbw06/5spFjxbcmG0R+3pEupaSREsD746srDkTpRYAV35RY084yb/isLzhNeW4vASHUlrcG5ubEHXj4MYl8h6KTMT5kt8iKWz6byVesrbhJNAQ4XbzfTSF83sNvFdj2MFUm1/PoheMNAm3EuvaInachELzlsSUPWlxYJn3jYYFlxttItVfDU83J05m4NjsdsFc40Q6NykUWqR3mie/KhGkqdPuNgexh0u+tz7QJoIvOdLEIF40aUaxOsxznSRCqgaXUAKtUzvcOFS3VQ52l824y+wtijIeSxi8p9mJLXHaViYGFuBj0tvj17I8SxE/wkX7vuyjYXbku3/oVukcDQcbnq50pArZN50DlasuNFfjEVWoAepHAOLrLZmJgssmNRBr0c+y03xPIZra3KF1VYsrIczYudRs/PLYtUYOBYV8+j9+uLjMXt/9ObX259K72uXDQbz+Ty1E3GAhfTGpsZOB3Yi6EN6P6dsXKJFVsGC5cigKCT5BMVW/WCuRiEnUlA9KMEubEbVjvk938woXT7pzhrwGis39vgRu7o4ZbJA7eVkIfV003V4ZgKNIhuQm8ZnuQJ9x1d933T61ItrqgrsA6AeO2gT7jz4Zi2NHcR5/WrDNkH1j/H4nEUTTJgC2cRY5kvpekeURCW1rJqKZ0fDYcIruI93b4fDlmz6btN+IRPN8L5WoAO0nqYjNatWuA2JSe08aPGjOmOsnMqnftNHHOxA/CFm1NNvx5uhe50zBeLOsRkoWTBofEleI32ImyEIUC7dk2xPsj3JdpLs9SbePxqby6JAHeD5wDfpmDaegVJmjsWeV3te7Xm1m1fvt+E9/qiRvgzWpnKGevUTD5RFKBYM76Xzbv/1cM+wPcN2M+zNtl9nI82oypZwiNYay4wQjbVYsHkpVTBPQ4Ted/dq23Ntz7U913ZxrU14hb40NHqtjQvQAV/yjA/o3eV4wh3aGV1l10veWMUzvow0abPBYFka59tsWRvr28GMejADK2mOElpG4kinHibKCFBldLXZLhKsDzWP42SJvWMXJ5dj9jt4nMMilI9cPjb9bvhuuNUqqe6wODo/ZTHDCLa1DaA3S0zeajYqf4/htr2lQorGSr+4pMdieXIEi3bUUMUfQND5C9bpPirxpLv42EPjz3/Gobu0eV2sxuAn91DVkXqrMfYKWauZ9Grt6X03MV6bIUs9MSHEDkmbyVLn0bpYnWF6uIna89NAPmGqqtFhB9bT+IUJ1oonVON8HEQrKZBGdtmyj7BX+xwl7O/okR2m1PiIzn7jnUpfNnkqTDXo5pMP/3Nl8kEFUg86F25wPPpydfZhdPD59Pjk7PLk4DAdpv7ehwITMSrQ63HE+WCz5Zhi7Qxi+4lF12WP935QK5A6nBRYFRtGSLjmkXu3Scefa75c5uDwyqq2peVvDdoFz65vV3SjuzbhJUKBNpD1jiap/DhGczAmt6SuGnK/MVRvk/6JkRBY+2d1b9e2jfO/LscEzu4EpjIFPWNhTqczMOcZv+E3nNNBD1kIuA/rS65ATxuYkn60S3//AjDTB7w= +api: eJztWUtz2zYQ/isYnNopTcmJkya8qY7dunnUY8vtwfFhCa5ExCDAAKBkjYb/vbMAacmWZPuQzvQgzWhEYoF9fh8oLpbcw9Tx7JpfObT8JuGmRgteGn1W8IwLi+AxyBJeoBNW1iTkGT8OIgZM45w1Dm3KE27xe4PO/2aKBc+WXBjtUXu6hLpWUgTNg2+ONCy5EyVWQFd+USPPuMm/ofA84bUlP7xER9IanJsbW9D1QyfGJbJeysyE+RLvfel0Om+lnvI24STQUOF2Nb30WTW7VbxoOVYg1fb1QfSMgjbhXnpFQ1SWi5hw3pKAsi8tFjzztsEw4GqjXcziq+Hh7sjZHByL1S6Ya4RA5yaNUov0q+bJjyokWfqIi+1u3OKij713pInAezoFEYgXXahBvO7jTBepgKrRBaRQy/QWFy7VTZWj/WXT/wJri4KMxyQm/2lEUnuchoGJsRX4OPT26JkYvwTvP+LCvSzamLgt0f4fqkUTjobDTStXGnKFzJvOwIoVX/VnY5EV6EEqx8Aiq62ZyQILJnWY1yOf5aZ4GsO1NbnCaisW1t0ZsfM4s7PLYtYYOBYn5tH69cXpMXt/9ObXm59K72uXDQbz+Ty1E3GAhfTGpsZOB3Yi6Evzfk7ZuESLrIIFy5FBUUiyCYqt6sFcjUJOpKB8UICd24yyHeN7uphRunxUnTXgNVZu7PEjdnVxxmSB2svJQurppumwZgKNIh2Qm8ZnuQJ9y1d13zT62IprqgrsPaAeGmgT7jz4Zi2MHcR5/WpDN0H1j/H4nEUVTJgC2cRY5kvpekMURCW1rJqKZ0fDYcIruIt3b4fDlnT6btN+JhLN8K5WoAO0HocjNatWuA2BSe08aPGjKmOsnMrHdtMHHOxA/CFG1NNvx5Ohe5wzBeLWsRkoWTBofElWI32Im8EJUC7dk2xPsj3JdpLs9SbeT43NZVGgDvC855t0TBvPQCkzx2LPqz2v9rzazav32/AeX2qkL4O2qZyhXr3igbIIxYLhnXTe7f8e7hm2Z9huhr3Z9nY20oyybAmHaK2xzAjRWIsFm5dSBfXUROhtd4+2Pdf2XNtzbRfX2oRX6EtDrdfauAAd8CXP+ICeXY4n3KGd0VV2veSNVTzjy0iTNhsMlqVxvs2WtbG+HcyoBjOwkvoooWQkjnTqYaKMAFVGU5vlIsF6U/M4dpbYO3Zxcjlmv4PHOSxC+sjkQ9Xvhu+GW7XS1B0aR+dnLEYYwba2AfRqiclb1cbJL1HctjeUSNFY6ReXtCymJ0ewaEcNZfweBJ29oJ3u4ySedBenPTT+/Gccqkub18WqDX5yB1UdqbdqY6+QtepJr8Ye33cd47UestQTE1zskLQZLFUerYvZGaaHm6g9PwvkE6aqGh12YD2Nf5hgLXlCNc7HRrSSAqllly17D/tpn6KE/R0tssOUCh/R2W+8U+nLJk+FqQZdf/L+N1cmH1Qg9aAz4QbHo89XXz6MDj6dHZ98uTw5OEyHqb/zIcFEjAr0uh+xP9hsOaZYO4PYfmLRVdnjnR/UCqQOJwVWxYIREq555N5N0vHnmi+XOTi8sqptafh7g3bBs+ubFd3ork14iVCgDWS9pU4qP47eHIzJLE1XDZnfaKq3Sb9iJATW/sm5N2vbxvlfl2MCZ3cCU5mC1liY0+kMzHnGOR3y0OqA+TC25Ar0tIEpzY066fMvJOcGwA== sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Create user

+ - + Create a new user. -## Request + -

Body

required
+ -The user was created successfully. + -
Schema
Schema
Schema
- -Unable to create the user. -More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -A user with the given username already exists. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/delete-document.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-document.api.mdx index 6d0c334ab44..027b7168162 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/delete-document.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/delete-document.api.mdx @@ -12,24 +12,24 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Delete document (alpha)

+ Delete a document from the Camunda 8 cluster. @@ -41,18 +41,120 @@ This endpoint is an [alpha feature](/components/early-access/alpha/alpha-feature in future releases. ::: -## Request + -

Path Parameters

Query Parameters

+ -The document was deleted successfully. + -
- -The document with the given ID was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/delete-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-group.api.mdx index ba907e25239..a4c2d46bc95 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/delete-group.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/delete-group.api.mdx @@ -12,41 +12,176 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Delete group

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

Path Parameters

+ -The group was deleted successfully. + -
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The group with the groupKey was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/delete-mapping-rule.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-mapping-rule.api.mdx index 37eb4e5c5fc..a49b4fd7bdd 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/delete-mapping-rule.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/delete-mapping-rule.api.mdx @@ -12,44 +12,176 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Delete a mapping rule

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

Path Parameters

+ -The mapping rule was deleted successfully. + -
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The mapping rule with the mappingKey was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx index 41f29794c3f..3dfa2346e65 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx @@ -5,53 +5,209 @@ description: "Deletes a deployed resource." sidebar_label: "Delete resource" hide_title: true hide_table_of_contents: true -api: eJztWN9v2zYQ/leIe2oxRXK6rOv0MMBL0y1b2wWOuz0kAUpLJ4stRaokFUcw9L8PR0ryz6B92MuwBDBiicc73nffdya5BseXFtIbmKHVjckQ7iLQNRruhFaXOaSQo0SH43gEOdrMiJoMIIXXftgyznKspW4xZ6a3jW/VvBSWZVyxBTLOaqMztJblWAglyEHEcsyEFVoxg18aYbBC5XYttGGFNtXWu1s1xmqsUEvmSuzDj8EtQ5XXWigXs+saM1G03mwYZ61u2Iorx5xmIUcmlDf5ONj8ge1HVnPDK3Ro4lsFEYyPBNsaFK8QUtiaAREIAqbmroQI+rRySJ1pcB+9eYnsM7ZMF7uLG9e0h6Hb2B+Hc8fgKLYE3mBP2O7MOAAaIrBZiRWHdA2urSlZoRwu0UAEZM5dePXyDLruLiSM1v2i85bmbPIvuLQYQaaVQ+VojNe1FJmnWvLJEiDrw2h68QkzBxGoRkq+kDggWRsiqhNoyXok7QwLNKgypLe7aE+ZGQZ9ylmpLSq2CMxoLBIa3LGVkJLQrrlxHhcpmcFMm9xSiRrpiHSF0RVzVJwxdnyr3jXW0dyf2YSJgmp0L3LMA3m+BmAElVCiaipIT7suAicc5duLbNDgLCAMXUc2Bm2tlQ0ovJhMDtOebzNL2J5ZeQxdBGePTRgWznLuOM1S2rF7LkUew6NFrI1eSKy+OyzmfiGugiXL0XEhWSgy47Q4MlxgTmq8mb05Zz+d/fDj3bPSudqmSbJarWJTZCeYC6dNrM0yMUVGH7J7HrN5iQZZxVvfc/LcE5lLtqELs74fiIxk5kKufjFUnp1Cjdzb5VoYHRlqnRFquV3NxoiDRjllH2aXTOSonCjaoWvthPZzCt5I8sEXunHpQnL1GTZUOAy6H8U2VcXN2FJ2A3QRWMddY78q5+9fHPgmWvw2n1+x4IJlOkfqGEEEfaB4m8Rnk0kEFX8ITy8nk458UsW/IRPF8KGWXPHQqXbTEYpV2mDPH5+YUNbxXvf/QmW0EUuxHzeGbVn2JH4dMgpyPJucfV2BpKVCN+pJS09aetLSo1r64diP01QxQtkQD9EYbZjOssYYzNmqFBKHbdEQu9+PBC4+ae1Ja09aO9RaF0GFrtR04Ku19dSh80sKyXigStZbp5wu8btIWkgEFs39cCBqjIQU1kFBXZok61Jb16XrWhvXJfdUnntuBO3kfTVpOChtYJDUGZdlWMVhJWmATl1Dhue8alTO2Ss2u7ies1+5wxVvPbIUctf1q8mryVGvZPqIx+nVJQsZBh5u9YbBLYn8qNtg/C2O/dnJYtYY4dprmhbgWSA3aKYNFWPkRx/Pe6fnYARR/+XNwJrf/577wlNfm23OZRcPvKqDKo8dmyaelIX2AXvKHC6d6ojGhlwn8ekhPa8uvcoyXVWN8q1WLdlKuJLxLSgy2Vg6XUMEUmSorF9Xf64ezN6GEfZXiMhOYypj4NrQYZfClc0iznSVZGHa+H8h9SKpuFBJH8Im59N3H96/np68vTy/eH99cXIaT2L34DxcpICKq611hAPYuIfbz3W9+WH5312I9JR0+OCSWnKhSCS+Muu+h9yM1yMWIkh370rGNnIX9a3gBtbrBbf4wciuo9dfGjQtpDd3m87hW00uLH3fXC08WpNns/4W4jn7L9y4HIW0f8lV6zuobOgJIviM7d4FVHfXRVAiz9F4nILFeUDjZE5+Nh4O7mC6aJgxzTKs3SO2O1sm6l3j78fVn9dzakX9BVClc39Dxld0G8ZXkMIt3NLKta+U73L+/RokV8uGL8k++KW/fwA1zTCM +api: eJztWN9v2zYQ/leIe2oxRXK6rOv0MMBL0y1b2wWOuz0kAUpLJ4stRaokFUcw9L8PR0ryz6B92MuwBDBiicc73nffdya5BseXFtIbmKHVjckQ7iLQNRruhFaXOaSQo0SH43gEOdrMiJoMIIXXftgyznKspW4xZ6a3jW/VvBSWZVyxBTLOaqMztJblWAglyEHEcsyEFVoxg18aYbBC5XYttGGFNtXWu1s1xmqsUEvmSuzDj8EtQ5XXWigXs+saM1G03mwYZ61u2Iorx5xmIUcmlDf5ONj8ge1HVnPDK3Ro4lsFEYyPBNsaFK8QUtiaAREIAqbmroQI+rRySJ1pcB+9eYnsM7ZMF7uLG9e0h6Hb2B+Hc8fgKLYE3mBP2O7MOAAaIrBZiRWHdA2urSlZoRwu0UAEZM5dePXyDLruLiSM1v2i85bmbPIvuLQYQaaVQ+VojNe1FJmnWvLJEiDrw2h68QkzBxGoRkq+kDggWRsiqhNoyXok7QwLNKgypLe7aE+ZGQZ9ylmpLSq2CMxoLBIa3LGVkJLQrrlxHhcpmcFMm9xSiRrpiHSF0RVzVJwxdnyr3jXW0dyf2YSJgmp0L3LMA3m+BmAElVCiaipIT7suAicc5duLbNDgLCAMXUc2Bm2tlQ0ovJhMDtOebzNL2J5ZeQxdBGePTRgWznLuOM1S2rF7LkUew6NFrI1eSKy+OyzmfiGugiXL0XEhWSgy47Q4MlxgTmq8mb05Zz+d/fDj3bPSudqmSbJarWJTZCeYC6dNrM0yMUVGH7J7HrN5iQZZxVvfc/LcE5lLtqELs74fiIxk5kKufjFUnp1Cjdzb5VoYHRlqnRFquV3NxoiDRjllH2aXTOSonCjaoWvthPZzCt5I8sEXunHpQnL1GTZUOAy6H8U2VcXN2FJ2A3QRWMddY78q5+9fHPgmWvw2n1+x4IJlOkfqGEEEfaB4m8Rnk0kEFX8ITy8nk458UsW/IRPF8KGWXPHQqXbTEYpV2mDPH5+YUNbxXvf/QmW0EUuxHzeGbVn2JH4dMgpyPJucfV2BpKVCN+pJS09aetLSo1r64diP01QxQtkQD9EYbZjOssYYzNmqFBKHbdEQu9+PBC4+ae1Ja09aO9RaF0GFrtR04Ku19dSh80sKyXigStZbp5wu8btIWkgEFs39cCBqjIQU1kFBXZok61Jb16XrWhvXJfdUnntuBO3kfTVpOChtYJDUGZdlWMVhJWmATl1Dhue8alTO2Ss2u7ies1+5wxVvPbIUctf1q8mryVGvZPqIx+nVJQsZBh5u9YbBLYn8qNtg/C2O/dnJYtYY4dprmhbgWSA3aKYNFWPkRx/Pe6fnYARR/+XNwJrf/577wlNfm23OZRcPvKqDKo8dmyaelIX2AXvKHC6d6ojGhlwn8ekhPa8uvcoyXVWN8q1WLdlKuJLxLSgy2Vg6XUMEUmSorF9Xf64ezN6GEfZXiMhOYypj4NrQYZfClc0iznSVZGHa+H8h9SKpuFBJH8Im59N3H96/np68vTy/eH99cXIaT2L34DxcpICKq611hAPYuIfbz3W9+WH5312I9JR0+OCSWnKhSCS+Muu+h9yM1yMWIkh370rGNnIX9a3gBtbrBbf4wciuo9dfGjQtpDd3m87hW00uLH3fXC08WpNns/4W4jn7L9y4HIW0f8lV6zuobOgJIviM7d4FVHfXRVAiz9F4nILFeUDjZE5+Nh4O7mC6aJgxzTKs3SO2O1sm6l3j78fVn9dzakX9BVClc39Dxld0G8ZXYdXaV8l3OP9uDZKrZcOXZBt80t8/hpIvkA== sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Delete resource

+ Deletes a deployed resource. This can be a process definition, decision requirements definition, or form definition deployed using the deploy resources endpoint. Specify the resource you want to delete in the `resourceKey` parameter. -## Request + -

Path Parameters

Body

    = 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
+ -The resource is deleted. + 0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + title: "DeleteResourceRequest", + }, + }, + }, + }} +> -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The resource is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/delete-role.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-role.api.mdx index 0364f27370c..f282c704ae6 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/delete-role.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/delete-role.api.mdx @@ -12,41 +12,176 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Delete role

+ - + Deletes the role with the given key. -## Request + -

Path Parameters

+ -The role was deleted successfully. + -
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The role with the roleKey was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/delete-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-tenant.api.mdx index 7a30c6f4db3..5345aba6bb4 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/delete-tenant.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/delete-tenant.api.mdx @@ -12,48 +12,217 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Delete tenant

+ Deletes an existing tenant. -## Request - -

Path Parameters

- -The tenant was deleted successfully. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found. The tenant was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/delete-user.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-user.api.mdx index 18745fd4d8a..992ed8ea260 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/delete-user.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/delete-user.api.mdx @@ -12,41 +12,176 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Delete user

+ - + Deletes a user. -## Request + -

Path Parameters

+ -The user was deleted successfully. + -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx index 9848c410dfe..a0fbd17c284 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx @@ -5,31 +5,31 @@ description: "Evaluates a decision." sidebar_label: "Evaluate decision" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Evaluate decision

+ Evaluates a decision. @@ -37,78 +37,825 @@ You specify the decision to evaluate either by using its unique key (as returned DeployResource), or using the decision ID. When using the decision ID, the latest deployed version of the decision is used. -## Request - -

Body

required
    oneOf
    variables object
    - -The message variables as JSON document. - -
    variables object
    - -The message variables as JSON document. - -
- -The decision was evaluated. - -
Schema
    evaluatedDecisions object[]
    - -Decisions that were evaluated within the requested decision evaluation. - -
  • Array [
  • matchedRules object[]
    - -The decision rules that matched within this decision evaluation. - -
  • Array [
  • evaluatedOutputs object[]
    - -The evaluated decision outputs. - -
  • Array [
  • ]
  • ]
  • evaluatedInputs object[]
    - -The decision inputs that were evaluated within this decision evaluation. - -
  • Array [
  • ]
  • ]
Schema
    evaluatedDecisions object[]
    - -Decisions that were evaluated within the requested decision evaluation. - -
  • Array [
  • matchedRules object[]
    - -The decision rules that matched within this decision evaluation. - -
  • Array [
  • evaluatedOutputs object[]
    - -The evaluated decision outputs. - -
  • Array [
  • ]
  • ]
  • evaluatedInputs object[]
    - -The decision inputs that were evaluated within this decision evaluation. - -
  • Array [
  • ]
  • ]
Schema
    evaluatedDecisions object[]
    - -Decisions that were evaluated within the requested decision evaluation. - -
  • Array [
  • matchedRules object[]
    - -The decision rules that matched within this decision evaluation. - -
  • Array [
  • evaluatedOutputs object[]
    - -The evaluated decision outputs. - -
  • Array [
  • ]
  • ]
  • evaluatedInputs object[]
    - -The decision inputs that were evaluated within this decision evaluation. - -
  • Array [
  • ]
  • ]
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The decision is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx index 41a216423a2..e71eb294e3e 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx @@ -5,59 +5,265 @@ description: "Mark the job as failed" sidebar_label: "Fail job" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zgS/itduGxSy0jKrJPN8OZ4khlnJonLdnYPjg9NsinCBgEOAFpmqfjftxog9baTwx7lKpVJotHP72sSvRQe506kN+KTycRtIkxDFr00+rwQqShRKl5IREEut7LhFZGKz2jvwVcEdyYDdMByVHzXIhENWqzJk2WtS6GxJpGKO5P9SZ1IhOTtDfpKJMLS3620VIjU25Z2bVxXBPfUgSlXlrwJliYiES6vqEaRLoXvGrYgtac5WZGI0tgafXz09kT0/W00Rc6/N0XHe9aWS1SOEpEb7Ul7XsOmUTIPOZjeOXZluW/NZHeUew7Xcsa8JBf1ejtc7geDtWm153gGsVVcrjKtKqDCBwJFpQ+JfDauf/0SalJiq7xIZ30iyFpjP5NzOKd9+6caTLhGBXUUgiiRST2HRdWtnIm1nMB1JR1IBw1aL/NWoVUdtI7KVoEsAYOwbbUD025FhboA1CB1LgvSnnVYlI6KhKHiWe3oQo4aKlIN0GOjUOrgyObeBY6bJ5tJcd5KPReJ0K1SmCmKEOqTUIHuPeb3X8vycBkyzO9NWYKXNbHnL6SG2r2E0tiQA02PPsTSTX5ch7cnu3V4QCvZowACLAoZs36xgZNDaP909fULRFSBr9DDQioFUjuP2kv0FHxbKQf04YEyOSpwuWlogyj/cIDOmZz3FeDR3W+FsgLvTvb6RHjp+Za7wUeU6jLSRvR9H3LrGqNdDO2X2cnh/DIs5NgSJqJPxMlsdli0seZBFlRAgR55kzYeHlDJodpPsLKxJlNU/3OfnTugh4soCQV5lGrML7oR+1SA1HBz+fEMfj158+/bF5X3jUun08ViMbFl/ooK6Y2dGDuf2jLnH8u9ZHaQJaixg4xgXWZY9wNwDeWylDm3LR+jDc5wFQ7XY7uZxNXlHuZX+Gut3OvMp/Dt8hwCeWTZMbf3TG8iVmBmWp9mCvW9WNd/3+iuFdfWNdpVd9420CfCefSt+2F/HvrYLjD+uL6+gKgCclPQQE7uRtEQB1FLLeu2FunJbJaIGh/j3dsZ0zBW/Cci0bH36ACt3XC4NRhLA35CYJGS+f+rMsbKudy1OxGbXBxA/FuMKFLx5Dn2LaSvgrq5fCAN8d070qs0rT7S60ivI72epdevP02v+8gtqcOzhTV6HnJLkLfWkvaqm8DndZgO0G68+oZ947sVMlN0R3oe6Xmk59P0fHPog/KUjw2eLOMwHIbA5IGBBSwqqYL6nJwbbQ9HwiPXjlw7cu0prvWJqMlXhodBjXEBOjy8ScX0zmRuuowfl/2Uj3utJZ7MkH0Ypz+tVSIVy0ibPp1Ol5Vxvk+XjbG+nz5wTbYOzLwc6TXCJpxwq2h6v3y8wCOmMawzrFtdILyDyw9X1/A7elpgF9LJJrdVv5u9mx3UyqJPaDy9OIcYYQTfRkMY1TKzD6qNwj+jOMysHOWtlb674m0xPRmhJXvacgVWoBjsBe18H4VEMlx8HKHy6b/XodrczC7X87APj1g3kYqr8dVsd560Rt72gGW2Xb8+wLY0wbsBVPtxctHJupiY2eT1PoAvzgMPc1PXrQ7NmIdU/N2FG3nLVes85ysRSuakXQhimDiOYn/FFfhPtAivJ1zzCMyxB8+lr9pskpt6msdtq/+ZMtm0Rqmngwk3PTv9/O3Lb6ev/jo/+/Dl6sOr15PZxD/6kFvmSI16ww8eo/Bn426Qy/U757lx6lBjT49+GkZkjLrg/XJg4g0PV51IRLoaso5kvE0GQt2I5TJDR9+s6nt+/HdLthPpze26foGwhXR8vR6MPunzi8thhvoSnp/UHoxgeIi6Cx1AtXwnEnFP3Xpa3N/2iagIC7LBubh4Fl14dc0q1pv3xrZ9Mu44zXNq/BOyW694pt2q3118vbpmFg0z49oUvNfiglmAC5GK7+I7Ox0nq3EAzM+XQqGet5E4US///Q/qaREQ +api: eJztWEtz2zYQ/is7uDSZMpKSOmmim+MkrdM8PLbTHlwfluRShA0CDABa5mj43zsLkHrbyaFHeUZjkljs8/uWxC6Ex5kT0yvx0aTiOhGmJoteGn2ai6koUCpeSEROLrOy5hUxFZ/R3oIvCW5MCuiA5Sj/V4tE1GixIk+WtS6ExorEVNyY9C9qRSIkb6/RlyIRlr430lIupt42tG3jsiS4pRZMsbTkTbA0EolwWUkViulC+LZmC1J7mpEViSiMrdDHR6+ORNddR1Pk/FuTt7xnZblA5SgRmdGetOc1rGsls5CD8Y1jVxa71kx6Q5nncC1nzEtyUa+3/eVuMFiZRnuOpxdbxuVK06gcSrwjUFT4kMhH4/rtRahJgY3yYjrpEkHWGvuZnMMZ7do/1mDCNSqoohBEiVTqGczLdulMrOUILkvpQDqo0XqZNQqtaqFxVDQKZAEYhG2jHZhmIyrUOaAGqTOZk/asw6J0lCcMFc9qBxcy1FCSqoHua4VSB0fW985x2DxaT4rzVuqZSIRulMJUUYRQl4QKtG8xu/1aFPvLkGJ2a4oCvKyIPX8iNVTuKRTGhhxouvchlnb04zq8Otquwx1ayR4FEGCey5j1szWc7EP7x4uvXyCiCnyJHuZSKZDaedReoqfg21I5oA8PlMlQgctMTWtE+cUBOmcy3peDR3e7EcoSvFvZ6xLhpedb7gYfUKrzSBvRdV3IrauNdjG0F5Oj/fllWMihJYxEl4ijyWS/aG3Nncwphxw98iZtPNyhkn21H2BlbU2qqPp1l51boIezKAk5eZRqyC+6AfuUg9Rwdf7hBN4cvfz9+knpfe2m4/F8Ph/ZIntGufTGjoydjW2R8Y/lnjI7yBJU2EJKsCozrPoBuJoyWciM25aP0QZnuAr767HZTOLqYgfzS/w1Vu505mP4dn4KgTyyaJnbO6bXESswNY2fpgr1rVjVf9fothXXVBXaZXfeNNAlwnn0jfthf+772DYw/ry8PIOoAjKTU09O7kbREAdRSS2rphLTo8kkERXex7tXE6ZhrPhPRKJj79EBWtvhcGswlnr8hMAiJbP/qzLGypnctjsS61zsQfwuRhSpePQY++bSl0HdTN6RhvjuHehVmEYf6HWg14Fej9LrzU/T6zZyS+rwbG6NnoXcEmSNtaS9akfweRWmA7Rrr75+3/BuhdTk7YGeB3oe6PkwPV/u+6A85mODJ8s4DIchMFlgYA7zUqqgPiPnBtv9kfDAtQPXDlx7iGtdIirypeFhUG1cgA4Pb6ZifGNSN17Ej8tuzMe9xhJPZsjeDdOfxioxFYtIm246Hi9K43w3XdTG+m58xzXZODDzcqTXAJtwwi2j6d3y8QKPmIawTrBqdI7wGs7fX1zCH+hpjm1IJ5vcVP168nqyVyuLPqDx+OwUYoQRfGsNYVDLzN6rNgr/jOIws3KUNVb69oK3xfSkhJbsccMVWIKitxe0830UEkl/8WGAysd/LkO1uZmdr+Zh7++xqiMVl+OryfY8aYW8zQHLZLN+XYBtYYJ3Pah24+Sik3UxMZPR810An50GHmamqhodmjEPqfi7C9fylqnGec5XIpTMSLsQRD9xHMQ+xRX4O1qE5yOueQTm0INn0pdNOspMNc7ituX/VJl0XKHU496EG58cf/725d3xs0+nJ++/XLx/9nw0Gfl7H3LLHKlQr/nBYxT+bNwOcrF65zw2Tu1r7Onej8OIjFEXvF/0TLzi4aoTiZguh6wDGa+TnlBXYrFI0dE3q7qOH39vyLZienW9ql8gbC4dX68Gow/6/OS8n6E+hccntXsj6B+ibkMHUA3fiUTcUruaFnfXXSJKwpxscC4unkQXnl2yitXmnbFtlww7jrOMav+A7MYrnmm37HdnXy8umUX9zLgyOe+1OGcW4Dw6HKeqcfjLzxZCoZ41kTRRJ//9B7ktEBQ= sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Fail job

+ Mark the job as failed -## Request + -

Path Parameters

Body

    variables objectnullable
    + -JSON object that will instantiate the variables at the local scope of the job's associated task. + -
- -The job is failed. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the given jobKey is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-authorizations.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-authorizations.api.mdx index 61350dad91c..21cb5aac09c 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-authorizations.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-authorizations.api.mdx @@ -5,91 +5,826 @@ description: "Search for authorizations based on given criteria." sidebar_label: "Query authorizations" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query authorizations

+ Search for authorizations based on given criteria. -## Request - -

Body

required
    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Authorization search filter. - -
- -The authorization search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching authorizations. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching authorizations. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching authorizations. - -
  • Array [
  • ]
- -The authorization search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-decision-definitions.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-decision-definitions.api.mdx index f0dbba95912..ecc9f8b5cb7 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-decision-definitions.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-decision-definitions.api.mdx @@ -5,91 +5,661 @@ description: "Search for decision definitions based on given criteria." sidebar_label: "Query decision definitions" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query decision definitions

+ Search for decision definitions based on given criteria. -## Request - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Decision definition search filter. - -
- -The decision definition search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching decision definitions. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching decision definitions. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching decision definitions. - -
  • Array [
  • ]
- -The decision definition search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-decision-instances.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-decision-instances.api.mdx index acb009840c4..ae608f8a83a 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-decision-instances.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-decision-instances.api.mdx @@ -5,107 +5,912 @@ description: "Search for decision instances based on given criteria." sidebar_label: "Query decision instances" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query decision instances

+ Search for decision instances based on given criteria. -## Request - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Decision instance search filter. - -
    evaluationDate object
    - -The evaluation date of the decision instance. - -
    oneOf
    - -string - -
    decisionDefinitionKey object
    - -The key of the decision. - -
    oneOf
    - -integer - -
- -The decision instance search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching decision instances. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching decision instances. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching decision instances. - -
  • Array [
  • ]
- -The decision instance search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-decision-requirements.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-decision-requirements.api.mdx index 8f177b0102a..066484d0f5e 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-decision-requirements.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-decision-requirements.api.mdx @@ -5,91 +5,638 @@ description: "Search for decision requirements based on given criteria." sidebar_label: "Query decision requirements" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query decision requirements

+ Search for decision requirements based on given criteria. -## Request - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Decision requirements search filter. - -
- -The decision requirements search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching decision requirements. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching decision requirements. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching decision requirements. - -
  • Array [
  • ]
- -The search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-flow-node-instances.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-flow-node-instances.api.mdx index 4b02b0715cb..43cf664bc2f 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-flow-node-instances.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-flow-node-instances.api.mdx @@ -5,91 +5,879 @@ description: "Search for flow node instances based on given criteria." sidebar_label: "Query flow node instances" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query flow node instances

+ Search for flow node instances based on given criteria. -## Request - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Flow node instance filter. - -
- -The flow node instance search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching flow node instances. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching flow node instances. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching flow node instances. - -
  • Array [
  • ]
- -The Flow node instance search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-incidents.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-incidents.api.mdx index b257ec82095..239553d08f3 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-incidents.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-incidents.api.mdx @@ -5,88 +5,787 @@ description: "Search for incidents based on given criteria." sidebar_label: "Query incidents" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query incidents

+ - + Search for incidents based on given criteria. -## Request - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Incident search filter. - -
- -The incident search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching incidents. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching incidents. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching incidents. - -
  • Array [
  • ]
- -The incident search query failed. More details are provided in the response body. - -
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-mappings.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-mappings.api.mdx index a9f16c87174..2c77ea59f78 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-mappings.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-mappings.api.mdx @@ -5,88 +5,573 @@ description: "Search for mapping rules based on given criteria." sidebar_label: "Query mappings" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query mappings

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

Body

required
    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Mapping search filter. - -
- -The mapping rule search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching mapping rules. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching mapping rules. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching mapping rules. - -
  • Array [
  • ]
- -The mapping rule search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-process-definitions.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-process-definitions.api.mdx index ab8bb55d51a..61be8a653c5 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-process-definitions.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-process-definitions.api.mdx @@ -5,91 +5,644 @@ description: "Search for process definitions based on given criteria." sidebar_label: "Query process definitions" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query process definitions

+ Search for process definitions based on given criteria. -## Request - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Process definition search filter. - -
- -The process definition search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching process definitions. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching process definitions. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching process definitions. - -
  • Array [
  • ]
- -The process definition search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-process-instances.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-process-instances.api.mdx index f2ccbc6d451..c294a118eec 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-process-instances.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-process-instances.api.mdx @@ -5,187 +5,1529 @@ description: "Search for process instances based on given criteria." sidebar_label: "Query process instances" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query process instances

+ Search for process instances based on given criteria. -## Request - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Process instance search filter. - -
    processInstanceKey object
    - -The key of this process instance. - -
    oneOf
    - -integer - -
    processDefinitionId object
    - -The process definition ID. - -
    oneOf
    - -string - -
    processDefinitionName object
    - -The process definition name. - -
    oneOf
    - -string - -
    processDefinitionVersion object
    - -The process definition version. - -
    oneOf
    - -integer - -
    processDefinitionVersionTag object
    - -The process definition version tag. - -
    oneOf
    - -string - -
    processDefinitionKey object
    - -The process definition key. - -
    oneOf
    - -integer - -
    parentProcessInstanceKey object
    - -The parent process instance key. - -
    oneOf
    - -integer - -
    parentFlowNodeInstanceKey object
    - -The parent flow node instance key. - -
    oneOf
    - -integer - -
    startDate object
    - -The start date. - -
    oneOf
    - -string - -
    endDate object
    - -The end date. - -
    oneOf
    - -string - -
    state object
    - -The process instance state. - -
    oneOf
    tenantId object
    - -The tenant ID. - -
    oneOf
    - -string - -
    variables object[]
    - -The process instance variables. - -
  • Array [
  • ]
- -The process instance search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching process instances. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching process instances. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching process instances. - -
  • Array [
  • ]
- -The process instance search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-user-authorizations.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-user-authorizations.api.mdx index 0ef957f8d51..a0bbd34df02 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-user-authorizations.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-user-authorizations.api.mdx @@ -5,91 +5,836 @@ description: "Search for user authorizations based on given criteria." sidebar_label: "Query user authorizations" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztG2uP2zbyrxD81OIU22nTNvU3x9Ymvuzarh8tenuLhJbGNhuJVEhqd32G//thSMmSbHnX6eUOOFQBgtVj3i+OaM6OGrbWtHtLe6nZSMX/xQyXgt55NAQdKJ7Y2y6dAVPBhqykIqkGRVgZXJMl0xASKcia34MggeIGFGetfwrqUZmAsnDDkHbpiotwoUFVGGrq0YQpFoMBhfLsqGAx0C5Fbu9hSz3KUY6EmQ31qILPKVcQ0q5RKRwLO98A+QRbIlfEbIBkJPLbiugt6lEdbCBmtLujZpsgTy4MrEFRj66kiplxj358Rff7O8cbtHkjwy3iBFIYEAYvWZJEPLB0239oFGVXIs6iaLyyqmVs5PIPCAxqrtBEhoO2GFJZakcOkMqQFYcoLKxLvZwUU4pZGxmI9ZcwsxRPuaEFHTMjCQpEltsSO20UF2u696hUIah6fPuKcEEeNjzYHAihCxREzEDoWCBdEGlso3DWpx4d+LO+C8EVSyM0v3tuuIkgs8UYqfuItt+X4+E2U+muBG5j95cU1BYxp85/dH+HmAlbw6n8E7bmwjqyYu2LrapkXG8ULkJ4xEi0nrJGMUwZoq2MXKwJ4pZMXR+L33+Hxo94zGtCBfnE7JHHaUxEGi9BVRgqMKkS6Bgp0BXWGhdydGL2VqbO6cODSq5YMARrkb5Uzt/2Hbr/Y8S0QVf8yqIU9EeSWc+mKCOJgnsuU53TUaATKTQ8Fe9Vf+wPor6BlVQ1Dj6WdWnhaoVdcfXflnZfG6wTtoYiWL0aHWuQziOcpn5U68b5cY3MNXMIupoIVdzeebySPc4IJB8EqLkFqZMJkfMabkHxJgEVc61xCaljcE7OS+nldWkx86fUo9PxtU89+nY6XkyoR296k8lw9JZ6dDGaTfz+8GroD8qVZ5xr5ArVHRZMfIQLWn15CC/U8IklqmBf8caV9UK1+NUC1gVTtcbimmsfuEi3zvuu06lX6bRdKGVKGtnKc/Eaet6/T4fWs1WeC2dHvGZLmbp1qiLok4H/J0g9LbGRhkXDvGAcmRXfZQU9ZsatG8ikpjM4HygePaps9f6zi/a9Bchj0+JZ/riKuAUd1SIaTIssNBCz4Tp/97FciT9mbQWWTkFA6BRlP12ELijw1UXkYuER7UtltwveVxP9qWrvMuooPSsZeYA4jhh+JlhsN5AFSbVtv1zoyzPtL1HEFWiZqgCe1zOHJGbDTCbhht3D19C5oC0JC8O2glhWKRMj23k/eWixF/N34+nwH735cDwq9P8wXViz3PizWe8tXr3pzfvvqEd7k8n1sJ+Dz36fzf0b6tG5P+qN5rZbn1yPf7/x7c1kOu77s9mHgX81HA0znIHfH86G49GHqf/LYjj1EfYcSOVp7qOy50qemZbcUDinpH8pkPMAPzXnkSfOZsDRinLAqg+CWQIBX3HsI0su+5Nev4jYwcF99AD1aH/q9+b+4eJD7pvhaDbvjfqlNwfrl15N/d4g+1OHaZ+jXz7Me7P3+YM6QovJwInhLuqIZW/K5Ab+tW+x3EWOVTwYTAfFzdV4enMCW3Aoxcyk4rfTlB6Gz0dNj0Rcm0oKDgfON4VPSPEdgd5JBf+cQragu02L40jLv6rLpb8QdzAfV19VmrZ8XXjDateGr9R1HiR8RoonBHVrWQnQq7R89yJsBSxORchaLOGtT7DVLfcR+7fTdjCEREGAWwm5TZsGsWkQmwaxaRCbBrFpEJsGsWkQmwbxf9ogfvm2ZC7XyPZ472GrL24eKygXtJHOfDVtZNM0Nk1j0zQ2TWPTNDZNY9M0Nk1j0zT+3+8qIuSrL/9J+jOuhmTFeARhi9xIBSQEw3ikCVOAJz/ueQhhaZG3DMlShlt32O3MT9mJkssI4to9zGoQTBxkxpe4LCZMEwe4dNxvp1d98vOrH366+2ZjTKK77fbDw0NLrYIXEHIjVUuqdVutAvyPcN+2yHwDClftLVkClnaOPFlECqcS7UpCkB9+ycS2xcHp90x/mVWtqmdLXWKqeE3gL6ZDwkMQhq+2eddZYU3Lh8Fs+9tdRkx8okVAnDI95qLTOGbqcA6wygBPDBlm0nLqnD0JVVfw383nE+JIkECGYM9K2q4vY4RKxFzgsSzafdXpeDQ7pEW7P3Y6e6SJHr9AE0HgMYlY9mVwpA4XJC7i1irGhTZMBF/LM1LxNT/m26rkbxbEA6dRno4v69Mxa3ZJxIJPGvtqHtrsRK5BfggPrBAs0k+cF2mSrEmyv3ySfX8a71dSLXkYgrDhecg3romQhrAokg8QNnnV5FWTV+fy6oe6XrKH23IGFMYhKCUVkUGQKgUhnnmPLPkAtM5557s6TaPY5FqTa2dybe/RGMxG4qxQIrUNHRz66dI2frfp9i6b59m3q/uObfcNhwM9oO7zMaJURbRLdy6N9t12e7eR2uy7u0Qqs2/fo4/umeJsGbnIxNcu3fIwimTAoo0T5dSd+AJnlXI1++5nB/KaTP3ZnLxlBh7Y1po3OUz25KRfd1536rePcIu5nmJvMiROQxeMpQKRk8VMryXrgC8hbEedNASp4mY7QzRnniUw5Ya3SkGS8bPU8d4BUS+7uMpD5++/za33sbhNizEq/5HFiUvNYiihvOVbOTePGeBmpG4P80uHPYS7YqLHDeF0DmMynaPxldudU7E8JoLP9jYRVtLql4XpqaUwbEBpZ9pO6+VpSkyGNrMDGcepsOVdrMkDNxvCSpYPolRn0xERDwB3L7qH4bcc7Nq9Ib86juRlC6PGhXZe1dfcbNJlK5BxO/vl6/B3GcllO2ZctDMWut3v3SxGg96L62HfH838Fy9bnZZ5dD+BYNbFTJTksD8S1A3+HWtdGof7j0YGs7gy8GjaScS4wEi3+u6yanBrJwNRgG4xIngiXFYS7rwsrW/pboeMFyra7/Gx3fCh3du7ogq4nVKu8Tqk3RWL9PGEYVnNb6bZXMS35AvnDmuVzLcIxdYWpijFO+rRTxj6h2lIu7m4ARa6QM7e9p1QL2zWFNgnIxV7L8foBQEk5knYu1I9noxnuB2/zEYfYxkijmIPOJLJHpykMjH5Lrl9tqMRE+vUZiV1NPHfvwHZDwHJ sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query user authorizations

+ Search for user authorizations based on given criteria. -## Request - -

Path Parameters

Body

required
    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Authorization search filter. - -
- -The user authorization search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching authorizations. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching authorizations. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching authorizations. - -
  • Array [
  • ]
- -The user authorization search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-user-task-variables.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-user-task-variables.api.mdx index 07d9f7fae71..3b3e75ac46d 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-user-task-variables.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-user-task-variables.api.mdx @@ -5,79 +5,541 @@ description: "Search for user task variables based on given criteria." sidebar_label: "Query user task variables" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query user task variables

+ Search for user task variables based on given criteria. -## Request + -

Path Parameters

Body

    sort object[]
    + -Sort field criteria. + -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
- -The user task variables search response. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching variables. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching variables. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching variables. - -
  • Array [
  • ]
- -The user task variables search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-user-tasks.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-user-tasks.api.mdx index 15f345b3332..ee39edc7f92 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-user-tasks.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-user-tasks.api.mdx @@ -5,128 +5,1107 @@ description: "Search for user tasks based on given criteria." sidebar_label: "Query user tasks" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query user tasks

+ - + Search for user tasks based on given criteria. -## Request + -

Body

    sort object[]
    + -Sort field criteria. + -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -User task filter request. - -
    assignee object
    - -The assignee of the user task. - -
    oneOf
    - -string - -
    priority object
    - -The priority of the user task. - -
    oneOf
    - -integer - -
    candidateGroup object
    - -The candidate group for this user task. - -
    oneOf
    - -string - -
    candidateUser object
    - -The candidate user for this user task. - -
    oneOf
    - -string - -
    processInstanceVariables object[]
    - -Process Instance variables associated with the user task. - -
  • Array [
  • ]
  • localVariables object[]
    - -Local variables associated with the user task. - -
  • Array [
  • ]
- -The user task search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching user tasks. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching user tasks. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching user tasks. - -
  • Array [
  • ]
- -The user task search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-users.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-users.api.mdx index f3114e19fb9..8fc7a5fad4a 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-users.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-users.api.mdx @@ -5,88 +5,588 @@ description: "Search for users based on given criteria." sidebar_label: "Query users" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query users

+ - + Search for users based on given criteria. -## Request - -

Body

required
    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -User search filter. - -
- -The user search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching users. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching users. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching users. - -
  • Array [
  • ]
- -The user search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-variables.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-variables.api.mdx index b979d5573b5..950a9b76bfa 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-variables.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-variables.api.mdx @@ -5,128 +5,979 @@ description: "Search for process and local variables based on given criteria." sidebar_label: "Query variables" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query variables

+ - + Search for process and local variables based on given criteria. -## Request - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Variable filter request. - -
    variableKey object
    - -The key for this variable. - -
    oneOf
    - -integer - -
    name object
    - -Name of the variable. - -
    oneOf
    - -string - -
    value object
    - -The value of the variable. - -
    oneOf
    - -string - -
    scopeKey object
    - -The key of the scope of this variable. - -
    oneOf
    - -integer - -
    processInstanceKey object
    - -The key of the process instance of this variable. - -
    oneOf
    - -integer - -
- -The variable search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching variables. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching variables. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching variables. - -
  • Array [
  • ]
- -The user task search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-authentication.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-authentication.api.mdx index bc9719028d9..22f3a49997b 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-authentication.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-authentication.api.mdx @@ -12,61 +12,403 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get current user

+ - + Retrieves the current authenticated user. -## Request + -
+ -The current user is successfully returned. - -
Schema
    tenants object[]
    - -The tenants the user is a member of. - -
  • Array [
  • ]
  • c8Links object[]
    - -The links to the components in the C8 stack. - -
  • Array [
  • ]
Schema
    tenants object[]
    - -The tenants the user is a member of. - -
  • Array [
  • ]
  • c8Links object[]
    - -The links to the components in the C8 stack. - -
  • Array [
  • ]
Schema
    tenants object[]
    - -The tenants the user is a member of. - -
  • Array [
  • ]
  • c8Links object[]
    - -The links to the components in the C8 stack. - -
  • Array [
  • ]
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-decision-definition-xml.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-decision-definition-xml.api.mdx index 7c059fc358e..35edef37696 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-decision-definition-xml.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-decision-definition-xml.api.mdx @@ -12,56 +12,265 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get decision definition XML

+ Returns decision definition as XML. -## Request + -

Path Parameters

+ -The XML of the decision definition is successfully returned. + -
Schema
    - -string - -
- -The decision definition request failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The decision with the given key was not found. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-decision-definition.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-decision-definition.api.mdx index 3d368a39766..f2d29502c1e 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-decision-definition.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-decision-definition.api.mdx @@ -12,52 +12,418 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get decision definition

+ Returns a decision definition by key. -## Request + -

Path Parameters

+ -The decision definition is successfully returned. + -
Schema
Schema
Schema
- -The decision definition request failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The decision with the given key was not found. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-decision-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-decision-instance.api.mdx index 79b4c2e8fb2..ae8d7dc8790 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-decision-instance.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-decision-instance.api.mdx @@ -12,64 +12,435 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get decision instance

+ Returns a decision instance. -## Request + -

Path Parameters

+ -The decision instance is successfully returned. + -
Schema
    evaluatedInputs object[]
    - -The evaluated inputs of the decision instance. - -
  • Array [
  • ]
  • matchedRules object[]
    - -The matched rules of the decision instance. - -
  • Array [
  • evaluatedOutputs object[]
    - -The evaluated decision outputs. - -
  • Array [
  • ]
  • ]
- -The decision instance request failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The decision instance with the given ID was not found. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-decision-requirements-xml.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-decision-requirements-xml.api.mdx index 9dc3ff49753..5f4ed3bc81b 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-decision-requirements-xml.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-decision-requirements-xml.api.mdx @@ -12,56 +12,265 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get decision requirements XML

+ Returns decision requirements as XML. -## Request + -

Path Parameters

+ -The XML of the decision requirements is successfully returned. + -
Schema
    - -string - -
- -The decision requirements request failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The decision requirements with the given key was not found. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-decision-requirements.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-decision-requirements.api.mdx index 965704f18bd..ddb52c207d9 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-decision-requirements.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-decision-requirements.api.mdx @@ -12,52 +12,402 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get decision requirements

+ Returns Decision Requirements as JSON. -## Request + -

Path Parameters

+ -The decision requirements is successfully returned. + -
Schema
Schema
Schema
- -The decision requirements request failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The decision requirements with the given key was not found. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-document.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-document.api.mdx index 3b84aed358c..ff0c5d2a65c 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-document.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-document.api.mdx @@ -12,24 +12,24 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Download document (alpha)

+ Download a document from the Camunda 8 cluster. @@ -41,22 +41,128 @@ This endpoint is an [alpha feature](/components/early-access/alpha/alpha-feature in future releases. ::: -## Request - -

Path Parameters

Query Parameters

- -The document was downloaded successfully. - -
Schema
    - -string - -
- -The document with the given ID was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-flow-node-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-flow-node-instance.api.mdx index fea7a12d1c0..b4b6e4fefff 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-flow-node-instance.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-flow-node-instance.api.mdx @@ -12,52 +12,594 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get flow node instance

+ Returns flow node instance as JSON. -## Request + -

Path Parameters

+ -The flow node instance is successfully returned. + -
Schema
Schema
Schema
- -The flow node instance request failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The flow node instance with the given key was not found. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-group.api.mdx index 81389ad4e8d..b0d78498e3d 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-group.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-group.api.mdx @@ -12,45 +12,305 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get group

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

Path Parameters

+ -The group is successfully returned. + -
Schema
Schema
Schema
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The group with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-incident.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-incident.api.mdx index 2feb67dfb3c..1ae2b792129 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-incident.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-incident.api.mdx @@ -12,52 +12,547 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get incident

+ Returns incident as JSON. -## Request + -

Path Parameters

+ -The incident is successfully returned. + -
Schema
Schema
Schema
- -The incident request failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The incident with the given key was not found. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-license.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-license.api.mdx index 0d51cae0eb2..135494b7916 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-license.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-license.api.mdx @@ -12,33 +12,112 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get license status

+ - + Obtains the status of the current Camunda license -## Request + -
+ -Obtains the current status of the Camunda license - -
Schema
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-process-definition-xml.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-process-definition-xml.api.mdx index cdec028f056..1dbb952ac03 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-process-definition-xml.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-process-definition-xml.api.mdx @@ -12,64 +12,269 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get process definition XML

+ Returns process definition as XML. -## Request + -

Path Parameters

+ -The XML of the process definition is successfully returned. + -
Schema
    - -string - -
- -The process definition was found but does not have XML. - -
Schema
    - -string - -
- -The process definition request failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The decision with the given key was not found. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-process-definition.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-process-definition.api.mdx index 4bd233946ca..97837c88054 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-process-definition.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-process-definition.api.mdx @@ -12,52 +12,408 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get process definition

+ Returns process definition as JSON. -## Request + -

Path Parameters

+ -The process definition is successfully returned. + -
Schema
Schema
Schema
- -The process definition request failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The process definition with the given key was not found. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-process-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-process-instance.api.mdx index e81a393c5fa..9d114723df1 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-process-instance.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-process-instance.api.mdx @@ -12,52 +12,487 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get process instance

+ Get the process instance by the process instance key. -## Request + -

Path Parameters

+ -The process instance is successfully returned. + -
Schema
Schema
Schema
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The process instance with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-role.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-role.api.mdx index 8bf6eba91c9..d6727f24572 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-role.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-role.api.mdx @@ -12,45 +12,302 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get role

+ - + Get a role by its key. -## Request + -

Path Parameters

+ -The role is successfully returned. + -
Schema
Schema
Schema
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The role with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-start-process-form.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-start-process-form.api.mdx index 4918648851e..c1d8a0b79f2 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-start-process-form.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-start-process-form.api.mdx @@ -12,58 +12,378 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get process start form

+ Get the start form of a process. Note that this endpoint will only return linked forms. This endpoint does not support embedded forms. -## Request + -

Path Parameters

+ -The form is successfully returned. + -
Schema
Schema
Schema
- -The process was found, but no form is associated with it. - -
- -Bad request - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-tenant.api.mdx index 72378cba3fd..a8707ef986e 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-tenant.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-tenant.api.mdx @@ -12,49 +12,364 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get tenant

+ - + Retrieves a single tenant by tenant Key. -## Request + -

Path Parameters

+ -The tenant was retrieved successfully. + -
Schema
Schema
Schema
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Tenant not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-topology.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-topology.api.mdx index 7a0a1749a58..445c34c37df 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-topology.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-topology.api.mdx @@ -12,41 +12,177 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get cluster topology

+ - + Obtains the current topology of the cluster the gateway is part of. -## Request + -
+ -Obtains the current topology of the cluster the gateway is part of. - -
Schema
    brokers object[]nullable
    - -A list of brokers that are part of this cluster. - -
  • Array [
  • partitions object[]
    - -A list of partitions managed or replicated on this broker. - -
  • Array [
  • ]
  • ]
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-usage-metrics.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-usage-metrics.api.mdx index 7c2e975a0b7..3e2de91caa2 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-usage-metrics.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-usage-metrics.api.mdx @@ -12,45 +12,252 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get usage metrics

+ - + Retrieve the usage metrics by given start and end date. -## Request + -

Query Parameters

+ -The usage metrics search result. + -
Schema
- -The usage metrics request failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-user-task-form.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-user-task-form.api.mdx index 09beda4752c..4c74ef8183c 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-user-task-form.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-user-task-form.api.mdx @@ -12,58 +12,378 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get user task form

+ Get the form of a user task. Note that this endpoint will only return linked forms. This endpoint does not support embedded forms. -## Request + -

Path Parameters

+ -The form is successfully returned. + -
Schema
Schema
Schema
- -The user task was found, but no form is associated with it. - -
- -Bad request - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-user-task.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-user-task.api.mdx index 93d979f650e..106f732b70c 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-user-task.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-user-task.api.mdx @@ -12,64 +12,605 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get user task

+ Get the user task by the user task key. -## Request + -

Path Parameters

+ -The user task is successfully returned. + -
Schema
    customHeaders object
    - -Custom headers for the user task. - -
Schema
    customHeaders object
    - -Custom headers for the user task. - -
Schema
    customHeaders object
    - -Custom headers for the user task. - -
- -The provided data is not valid. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-variable.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-variable.api.mdx index aa3b84f7079..86a6f37ffad 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-variable.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-variable.api.mdx @@ -12,52 +12,420 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get variable

+ Get the variable by the variable key. -## Request + -

Path Parameters

+ -The variable is successfully returned. + -
Schema
Schema
Schema
- -Bad request - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx index 62f988d0fc9..0c2d01dfdf3 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx @@ -5,31 +5,31 @@ description: "Migrates a process instance to a new process definition." sidebar_label: "Migrate process instance" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Migrate process instance

+ Migrates a process instance to a new process definition. @@ -40,26 +40,205 @@ Use this to upgrade a process instance to a new version of a process or to a different process definition, e.g. to keep your running instances up-to-date with the latest process improvements. -## Request - -

Path Parameters

Body

required
    mappingInstructions object[]required
    - -Element mappings from the source process instance to the target process instance. - -
  • Array [
  • ]
  • = 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
- -The process instance is migrated. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The process instance is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + 0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + required: ["targetProcessDefinitionKey", "mappingInstructions"], + title: "MigrateProcessInstanceRequest", + }, + }, + }, + }} +> + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx index 0828b8177da..ecaf810544f 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx @@ -5,31 +5,31 @@ description: "Modifies a running process instance." sidebar_label: "Modify process instance" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Modify process instance

+ Modifies a running process instance. @@ -39,39 +39,248 @@ to terminate an active instance of an element. Use this to repair a process instance that is stuck on an element or took an unintended path. For example, because an external system is not available or doesn't respond as expected. -## Request + -

Path Parameters

Body

required
    activateInstructions object[]
    + -Instructions describing which elements should be activated in which scopes and which variables should be created. + 0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + title: "ModifyProcessInstanceRequest", + }, + }, + }, + }} +> -
  • Array [
  • variableInstructions object[]
    - -Instructions describing which variables should be created. - -
  • Array [
  • variables objectrequired
    - -JSON document that will instantiate the variables for the root variable scope of the process instance. -It must be a JSON object, as variables will be mapped in a key-value fashion. - -
  • ]
  • ]
  • terminateInstructions object[]
    - -Instructions describing which elements should be terminated. - -
  • Array [
  • ]
  • = 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
- -The process instance is modified. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The process instance is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/pin-clock.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/pin-clock.api.mdx index ff19081ac91..43facd320a8 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/pin-clock.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/pin-clock.api.mdx @@ -5,29 +5,32 @@ description: "Set a precise, static time for the Zeebe engine’s internal clock sidebar_label: "Pin internal clock (alpha)" hide_title: true hide_table_of_contents: true -api: eJztV19v2zYQ/yoHPrWYIrld2mV689J0y9AVQeKswOw8nKmzxVYiVZKKYxgC9jX29fZJhiOl2IkdrA8D9pIASUzyeP9+vzsfN8Lj0ol8Kk4rI7+Im0SYhix6ZfR5IXLRKB1PElGQk1Y1fCRycUUeEBpLUjlKwHn0SoJXNcHCWPAlwR9EcwLSS6Xp7z//cqC0J6uxAskq05n+VJIOomEDlINGaU1FAsqDpRqVdoA+iLiGpFooKqIR1AUUhhxo4wGLW9SS0pmeGJAl6iWFOyyZ7BioW+dhTr0VwCUqDSvlS0DQtAryzmPdpDM903mea+NppielckC6aIzSnr1EDVOsmhJhQehbSzcvMmnqxmjS3mWEtlofoZTkXBbk4t+jXtqldfEyRFDjmv1x7fwzSQ9+8H6mlYZFy8JgqSJ05NLg0UyLRFj62pLzP5liLfJNWCpLhci9bSkR0mhP2vMRNk2lZMAz++wYuY1wsqQa+ZNfNyRyYYJ1kYjGMvpekQunQzZ48RD9SUlAd8guMxhKAzVGllCrqlKOpNGF42hWpZLlDgCuNG1VbCFIRTI4weRYkhWJWBhbo49bb49F1yU7EU533LpJhFe+4tuBpBdKX8bMiK6L11xjtIvhvB4dHw4kurZCB64NmC3aqloPJPHmEP0ORpzOtOgScTwaHTY0RLHlGTRosSZPlmlVK+eUXoKxzH/lQNMSvbolTtMToDbWzCuqv9sH96H9MVxESSjIo6oggg7oIArOqeCoppfvT+HH4zc/3LwovW9cnmWr1Sq1C3lEhfLGpsYuM7uQ/MtyL1OYlGRp4DIWhWKbWMGWTkP65JDO3m1g8NPA6X/hYji9Z6zzVunlLldaq/Z61BiuL89BFaS9Wqw5s3umw50FthXrwLlpfT6vUH9hHHtu7Rt9bMW1dY12DWZxwECXCG6O7U4YT3D9+9d7upk1v0wmFxBVgDTF0F+5WUZDHESttKrbWuTHo1EiaryLq7ejUcc6GfFviEQD3TUV6kCtx+EoDbWx1PMnBKa089x4/yNkjFVL9dhuGhrAUOc9id/FiGKVvzlUb2O9/boha40FI2VrufpWpaqCeq71wXbfUiMXn2vtudaea22/1rpE1ORLEybDNjAHfSlykcl+SHRkb8nyRLkRra1ELjaxSro8yzalcb7LN42xvstuGYJbtArnVSQeH8dqGlhSGYlV2D6EFh9orGmI4hTrVhcIJ3B5djWBn9HTCtche2zyoeqT0cnooFYWfULj+OIcYoSRazv1P6jlQj6oNgp/i+Kuu+FEytYqv77iazE9c0JLdtxyxu850NsL2nkdhUTSf3g/MOPXT5MALveuy+34eHaHddNX3nbcGwW+LUzc7iesPY8ZPrIuhjhKX+0z7+I8FJA0dd3q0EX1cpi3t/pk1TrPkSeiUpK0C+4wsDtmP8QT+D1ahFcpoxcpNjTPpfJlO0+lqTMZr93/n1dmnvF7IutNuOx0/Nv1x3fjow/np2cfr86OXqWj1N/5kKXGOF+j3vHjQulH7xd4EYb6l4/D3my/Pp5fSf/nK6mvEE93PmsqVGE4D4zZ9H1rKuTw7I29Zyo2mzk6urZV1/H215bsWuTTm22r4lWXiJKwIBsa3RdaM1Mj6kcTNsviVcvm915gXTLcGEtJjX9C9sGwwR3hvvNeXE+4vvvHX20KvmpxxQ9DXIlczMRMCH7Js6LQOsL+RlSoly0uWT6q5Z9/AGWmkiU= +api: eJztV19v2zYQ/yoHPrWYIrld2mV689J0y9AVQeKswOw8nKmzxVYiVZKKYxgC9jX29fZJhiOl2IkdrA8D9pIASUzyeP9+vzsfN8Lj0ol8Kk4rI7+Im0SYhix6ZfR5IXLRKB1PElGQk1Y1fCRycUUeEBpLUjlKwHn0SoJXNcHCWPAlwR9EcwLSS6Xp7z//cqC0J6uxAskq05n+VJIOomEDlINGaU1FAsqDpRqVdoA+iLiGpFooKqIR1AUUhhxo4wGLW9SS0pmeGJAl6iWFOyyZ7BioW+dhTr0VwCUqDSvlS0DQtAryzmPdpDM903mea+NppielckC6aIzSnr1EDVOsmhJhQehbSzcvMmnqxmjS3mWEtlofoZTkXBbk4t+jXtqldfEyRFDjmv1x7fwzSQ9+8H6mlYZFy8JgqSJ05NLg0UyLRFj62pLzP5liLfJNWCpLhci9bSkR0mhP2vMRNk2lZMAz++wYuY1wsqQa+ZNfNyRyYYJ1kYjGMvpekQunQzZ48RD9SUlAd8guMxhKAzVGllCrqlKOpNGF42hWpZLlDgCuNG1VbCFIRTI4weRYkhWJWBhbo49bb49F1yU7EU533LpJhFe+4tuBpBdKX8bMiK6L11xjtIvhvB4dHw4kurZCB64NmC3aqloPJPHmEP0ORpzOtOgScTwaHTY0RLHlGTRosSZPlmlVK+eUXoKxzH/lQNMSvbolTtMToDbWzCuqv9sH96H9MVxESSjIo6oggg7oIArOqeCoppfvT+HH4zc/3LwovW9cnmWr1Sq1C3lEhfLGpsYuM7uQ/MtyL1OYlGRp4DIWhWKbWMGWTkP65JDO3m1g8NPA6X/hYji9Z6zzVunlLldaq/Z61BiuL89BFaS9Wqw5s3umw50FthXrwLlpfT6vUH9hHHtu7Rt9bMW1dY12DWZxwECXCG6O7U4YT3D9+9d7upk1v0wmFxBVgDTF0F+5WUZDHESttKrbWuTHo1EiaryLq7ejUcc6GfFviEQD3TUV6kCtx+EoDbWx1PMnBKa089x4/yNkjFVL9dhuGhrAUOc9id/FiGKVvzlUb2O9/boha40FI2VrufpWpaqCeq71wXbfUiMXn2vtudaea22/1rpE1ORLEybDNjAHfSlykcl+SHRkb8nyRLkRra1ELjaxSro8yzalcb7LN42xvstuGYJbtArnVSQeH8dqGlhSGYlV2D6EFh9orGmI4hTrVhcIJ3B5djWBn9HTCtche2zyoeqT0cnooFYWfULj+OIcYoSRazv1P6jlQj6oNgp/i+Kuu+FEytYqv77iazE9c0JLdtxyxu850NsL2nkdhUTSf3g/MOPXT5MALveuy+34eHaHddNX3nbcGwW+LUzc7iesPY8ZPrIuhjhKX+0z7+I8FJA0dd3q0EX1cpi3t/pk1TrPkSeiUpK0C+4wsDtmP8QT+D1ahFcpoxcpNjTPpfJlO0+lqTMZr93/n1dmnvF7IutNuOx0/Nv1x3fjow/np2cfr86OXqWj1N/5kKXGOF+j3vHjQulH7xd4EYb6l4/D3my/Pp5fSf/nK6mvEE93PmsqVGE4D4zZ9H1rKuTw7I29Zyo2mzk6urZV1/H215bsWuTTm22r4lWXiJKwIBsa3RdaM1Mj6kcTNsviVcvm915gXTLcGEtJjX9C9sGwwR3hvvNeXE+4vvvHX20KvmpxxQ9DXIlcCH7Fs5LQNsLeRlSoly0uWTaq5J9/AC/4kSk= sidebar_class_name: "put api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Pin internal clock (alpha)

+ - + Set a precise, static time for the Zeebe engine’s internal clock. When the clock is pinned, it remains at the specified time and does not advance. @@ -38,18 +41,129 @@ This endpoint is an [alpha feature](/components/early-access/alpha/alpha-feature in future releases. ::: -## Request + -

Body

required
+ -The clock was successfully pinned to the specified time in epoch milliseconds. + -
- -The required timestamp parameter is missing or it is negative. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/publish-message.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/publish-message.api.mdx index 7bc811b9e83..fa891af3ed6 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/publish-message.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/publish-message.api.mdx @@ -5,51 +5,266 @@ description: "Publishes a single message." sidebar_label: "Publish message" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Publish message

+ - + Publishes a single message. Messages are published to specific partitions computed from their correlation keys. The endpoint does not wait for a correlation result. Use the message correlation endpoint for such use cases. -## Request + -

Body

required
    variables objectnullable
    + -The message variables as JSON document. + -
- -The message was published. - -
Schema
Schema
Schema
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/remove-group-from-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/remove-group-from-tenant.api.mdx index 73e4cd9c8ec..4ef854763de 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/remove-group-from-tenant.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/remove-group-from-tenant.api.mdx @@ -12,48 +12,226 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Remove a group from a tenant

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

Path Parameters

- -The group was successfully removed from the tenant. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found. The tenant or group was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant.api.mdx index c800f404151..f27c04214c8 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant.api.mdx @@ -12,48 +12,226 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Remove a mapping rule from a tenant

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

Path Parameters

- -The mapping rule was successfully removed from the tenant. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found. The tenant or mapping rule was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/remove-user-from-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/remove-user-from-tenant.api.mdx index a03636c960b..17ef336842a 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/remove-user-from-tenant.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/remove-user-from-tenant.api.mdx @@ -12,48 +12,226 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Remove a user from a tenant

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

Path Parameters

- -The user was successfully removed from the tenant. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found. The tenant or user was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/report-job-error.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/report-job-error.api.mdx index 2c64b0381f5..72bf38fffd1 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/report-job-error.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/report-job-error.api.mdx @@ -5,56 +5,259 @@ description: "Reports a business error (i.e. non-technical) that occurs while pr sidebar_label: "Report error for job" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zYQ/iuYPSVTWlRS58Wb6jit3Tw8stIeHB1AcCXCJgEGACVrOPzvnQVIvZ3m0N6kGY1EYLHP71uS24DjcwvJHVzrFKYR6AoNd1KrqwwSMFhp4651emmMNhBBhlYYWZEAJDD225ZxltZWKrSWIQmyZ3KAA6a0OnMociUFL54zl3PHtBC1sWyZywJZZbRAa6WaM87udTr4piCCihteokNDfjWgeImQwL1O/8QVRCDJcsVdDhEY/F5LgxkkztS4794kR/aAK6ZnzOXoDUAEVuRYckgacKuKNEvlcI4U3Uybkruw9Poc2nYaTKB1v+lsRWf2LQqtHCpHW7yqCil88uJ7Sx40h8Z0eo/CUZSGUu0kWtr1abvQGdLFYRQhq0JnGLK4lEXBUmQldyLHjC2lyxlXvRytMlygciGjnW3rjFRzaKNg7hNay+dHLI56RWWQCDYroxcyQ8t4lkmS5AXz0T8etRKBqouCpwWGVLURLLiRtOAj3mi52crEsTJe3375zELetqKXyjqunOQOfXXXyhl3fqHQghfMCl1hj4CD9AR9fgGtF3G50csu/p2w1oXbC6vdRuHdViGnETjpSA56Ao0DlqBtwzFbaWVDOl4Oz39QCGl7x2babMDcRnA+HB6HTFeujGXccVKgtGMLXsgshPUEcCuj0wLLXw4BvOcauwmSLEPHZdEXiFsWBFPMmFTsbvzhgr07f/Vm+ix3rrJJHC+Xy4GZiTPMpNNmoM08NjNBX5J7PmCTHA1he0UQ30LbhjLMVijkTArmtE9H5zajYh0v2y7fwm5zgNl1B6iNPGh3I/Z1fMVkhsrJ2Yq61oFpf2bG64J08FTXLkkLrh6oVB0aDo3uW7F1WXKz7lu7BtoIrOOutv/awX59eaCbgPHHZHLDgorQUQKkpO0NURClVLKsS0jOh8MISv4Yrl4Phy3ppIr/RCSK4WNVcOWhtR+OVKzUBjv8+MACp8V/VRlt5Fzu2x1Au6kFdCB+HyIKvDw/RsVJ4FzotKRuLheoWLgr9fSa6Vqd6HWi14leP6TXu5+m10PgllR+bWm0mvvcIhO1MahcsRqwT5swLeNm69bXnetvtCzV2epEzxM9T/R8mp6vjj1QjhSjLBvCYXgi9e9xhl499t/kAuP8g+6Jayeunbj2FNfaCEp0uaZBS6Wthw6NNRKI73Vq4yY8XLYxdsMXi2bRT0VqU0ACTSBNm8Rxk2vr2qShiUwbL6giO+/btB3I1YPGvyDnwfBh8WiDRi99UBe8rFXG2Vs2vrydsN+5wyVf+WSSyV3Vb4dvh0e1kugTGkc3VyxEGKC31Q56tcTro2qD8M8o9jMdi6I20q1u6VhIT4rcoBnVlP81JDp7XjtdByGIuj8feqBc/z3xtaZWNt7Miy4feVkFIm7NdzZA253CbNa369Z6sM6096qD0mF8dAiNDQkZDl4cwvbmyrNP6LKslW/Bat6NjbbyJYraOspTBIUUqKx3vpvA9WIfww77K1hkLwZU6wDIvvPOpcvrdCB0GYtwbP2bFjqNSy5V3Jmw8cXo09fP70dnH68uLj/fXp69GAwH7tH5nBIzSq62/AhTx+4+REHd63Q/4GZz1/mfppQdRGj8FVcFl4pA65PQdDS+o5mlhQiS9ewyMHkadWy8g6ZJucWvpmhbWv5eo1lBcjfdgMCzPZOW/meQzHhh9ydk28E+G3fDqOfs+PjzqN/dIlcrD7+ipiuI4AFXm9FrO20jyJFnaLxTYfMimD6bkIrN4YNhaBv1J0ZCYOWekN15KiCurlvkzZfbCVGvG8SWgUyGL2kOzJeQwDf4Rk5rnxbPar/eQMHVvA4kC3rp8w8ixe97 +api: eJztWEtz2zYQ/is7OCVTWlRSJ014Ux2ntRsnHllpD64OILgSYZMAA4CSNRz+984CpN5Oc2hv0oxGIrDY5/ctyW2Y43PLknt2rVM2jZiu0HAntbrKWMIMVtq4a51eGqMNi1iGVhhZkQBL2NhvW+CQ1lYqtBaQBOGFHOAAlFZnDkWupODFS3A5d6CFqI2FZS4LhMpogdZKNQcODzod/K1YxCpueIkODfnVMMVLZAl70OkfuGIRk2S54i5nETP4rZYGM5Y4U+O+e5Mc4RFXoGfgcvQGWMSsyLHkLGmYW1WkWSqHc6ToZtqU3IWlt+esbafBBFr3q85WdGbfotDKoXK0xauqkMInL36w5EFzaEynDygcRWko1U6ipV2ftgudIV0cRhGyKnSGIYtLWRSQIpTciRwzWEqXA1e9HK0CLlC5kNHOtnVGqjlro2DuBq3l8yMWR72iMkgEm5XRC5mhBZ5lkiR5AT76p6NWIqbqouBpgSFVbcQW3Eha8BFvtNxuZeJYGa/vvnyGkLet6KWyjisnuUNf3bVy4M4vFFrwAqzQFfYIOEhP0OcX0HoRlxu97OLfCWtduL2w2m0U3m8VchoxJx3JsZ5A44Al1rbhmK20siEdr4fn3ymEtL1jM202YG4jdj4cHodMV64MMu44KVDawYIXMgthPQPcyui0wPKnQwDvuQa3QRIydFwWfYG4hSCYYgZSwf344wW8P3/zy/RF7lxlkzheLpcDMxNnmEmnzUCbeWxmgr4k93IAkxwNYXtFEN9C24YyYCsUciYFOO3T0bkNVKzjZdvlW9htDjC77gC1kQftbgRfx1cgM1ROzlbUtQ5M+zMzXhekg6e6dklacPVIperQcGh034qty5Kbdd/aNdBGzDruavuvHezn1we6CRi/Tya3EFSEjhIgJW1viIIopZJlXbLkfDiMWMmfwtXb4bAlnVTxH4hEAT5VBVceWvvhSAWlNtjhxwcWOC3+q8poI+dy3+6AtZtasA7EH0JEgZfnx6g4CZwLnZbUzeUCFYS7Uk+vma7ViV4nep3o9V16vf9hej0Gbknl15ZGq7nPLYKojUHlitUAbjZhWuBm69bXnetvtJDqbHWi54meJ3o+T883xx4oRwooy4ZwGJ5I/XucoVeP/Te5wDj/oHvi2olrJ649x7U2YiW6XNOgpdLWQ4fGGgmLH3Rq4yY8XLYxdsMXi2bRT0VqU7CENYE0bRLHTa6ta5OGJjJtvKCK7Lxv03YgVw8a/4KcB8OHxaMNGr30QV3wslYZh3cwvrybwG/c4ZKvfDLJ5K7qd8N3w6NaSfQZjaPbKwgRBuhttYNeLfH6qNog/COK/UzHoqiNdKs7OhbSkyI3aEY15X8Nic6e107XQYhF3Z+PPVCu/5r4WlMrG2/mRZdPvKwCEbfmOxug7U5hNuvbdWs9WGfae9VB6TA+OoTGhoQMB68OYXt75dkndFnWyrdgNe/GRlv5EkVtHeUpYoUUqKx3vpvA9WKfwg78GSzCqwHVOgCy77xz6fI6HQhdxiIcW/+mhU7jkksVdyZsfDG6+fr5w+js09XF5ee7y7NXg+HAPTmfU2JGydWWH2Hq2N2HKKgHne4H3GzuOv/TlLKDCI2/4qrgUhFofRKajsb3NLO0LGLJenYZmDyNOjbes6ZJucWvpmhbWv5Wo1mx5H66AYFneyYt/c9YMuOF3Z+QbQf7YtwNo17C8fHnUb+7Ra5WHn5FTVcsYo+42oxe22kbsRx5hsY7FTYvgumzCanYHD4YhrZRf2IkBFbuGdmdpwLi6rpF3n65mxD1ukFsGchk+JLmwHwZHNY+JZ7Rfq1hBVfzOhAs6KTPP3eh7n8= sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Report error for job

+ - + Reports a business error (i.e. non-technical) that occurs while processing a job. -## Request + -

Path Parameters

Body

required
    variables objectnullable
    + -JSON object that will instantiate the variables at the local scope of the error catch event that catches the thrown error. + -
- -An error is thrown for the job. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the given jobKey is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/reset-clock.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/reset-clock.api.mdx index 0da0637d761..efedb383906 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/reset-clock.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/reset-clock.api.mdx @@ -12,22 +12,25 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Reset internal clock (alpha)

+ - + Resets the Zeebe engine’s internal clock to the current system time, enabling it to tick in real-time. This operation is useful for returning the clock to @@ -38,14 +41,57 @@ This endpoint is an [alpha feature](/components/early-access/alpha/alpha-feature in future releases. ::: -## Request + -
+ -The clock was successfully reset to the system time. - -
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx index 8397707e33e..22cb247ba02 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx @@ -12,44 +12,176 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Resolve incident

+ Marks the incident as resolved; most likely a call to Update job will be necessary to reset the job’s retries, followed by this call. -## Request + -

Path Parameters

+ -The incident is marked as resolved. + -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The incident with the incidentKey is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/search-groups.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/search-groups.api.mdx index aee11356a27..0ad1d3550c3 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/search-groups.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/search-groups.api.mdx @@ -5,88 +5,566 @@ description: "Search for groups based on given criteria." sidebar_label: "Query groups" hide_title: true hide_table_of_contents: true -api: eJztWm1v2zYQ/isEP22YIjtt1nX65qZJl/Uty0v3wQ0QSjpbbChSJak4hqH/Phwp2bKtOG6QYd3mAkFt8Xh3vHueO4rmjFo2NjQa0jdalQW9CqgqQDPLlTxJaUQNMJ1kbtDQgKZgEs0LHKYRPXeDZKQ0GTsJEjMDKVGSjPktSJJobkFzFn6WNKAavpZg7CuVTmk0c1+5hpRGIyYMBDRR0oK0OMaKQvDEudH7YtDYjJokg5zhp2UvnHPEO0pqGyENKBPi44hGwxm10wJoRFX8BRJLA1poXKTlYJxepe261nOlLRlxEOliFTRoVDGt2ZQGlFvInZJtjTmN69YuMqiNWUXQIRJPW+aM1VyOaRVQpVPQ3fPdEOGSTDKeZHNFNgOiQTALqTeBekGWOWZ9cH5IA/r66PwQU5/CiJXC0qh+brkVUMfiI2o/wmlVFbRyN6yXdNUSd6n4owQ9xZlnPiW0usKZBRvDuv+nbMylS/dStLeOqlZ5d1C4TOGOqBFxmXJBsUzbGi5cjgnObYWaSwtj0DSgI6VzZv2j588w+ILnvAMqaCdndzwvcyLLPAa9ZFCDLbXExCgJbYBuYdG7ORjZrqSfzJfksc9QLCSHSvt8uzFM/7VgxmIqPjFRgrkmdfSm6CcjhYZbrkqz4JAplDSwCe/L+ajmrr6CkdIdCV71NXZync6OuP67va06wXrKxrAAa9Cxxo5J909Yp77oTCPCZ9yuYV7QLBOgq+Z5wQZS9CEHJMuhFY26qKwWdXQHJTHatnEtXFq+s37sjC+Te0mgK0iVLx4+Y86pZ/3+hpC0s1wKx5qn6RJrmJnHbNua82Ah49LzGT+zWJW+FC+tZ2OOH6Fqs8dWWSZOGk6sRBzH6pqVM+tLIxrpaH7dBevFARasFfJ2p9b1pVsn0KDMzXP2sVD6noXLIgZsSC4NEJtx04xdt4vNdd05sTpIAtKU6Pt6nd2ihi3Xya2dx2nf6rur6U/m+qaC5qG+wtAlcs4lVhHD7wGLa3g1SDxPNzm7BRFd9DazcVnLK2aALJx1e1Cn+eQeRY8thb4yo3xHDURj6ElH6Ny8tzD9Fis3MA2RRMwYPpaQvgfcTLyFaTvnTXg7kAkWkXQDU4fM3M02pNHWNNi6oK+jqdlldi6z43EnhtD9Vlm+lWmYsLyUKQtZwUN0LvSbpJ8eV7LJW5gSZq3mcYnbBmZw0wWaJzUrQxecQkOCe14aWV3CrszvyvyuzH8nZf7JGfzvbw0Lrm3sDV1U/Ieaxf3VoTMUH8q5d1s1kiX5LVqKT9MjW8ruLWDXHnbt4XtpD7u3gP/AWwCKHWw82mmS/xVnkhHjAtKQvFcaSAqWcWEI0y67tzyFtEUqj5VYpVP/u8I9J0KFVrGA/MGeMCCnXrK2SzxacFviBWNvfXh2fEh+Pfj5l6sfMmsLE/V6k8kk1KNkD1JulQ6VHvf0KME/lPsxJBcZaGTJlMRAWJpytMlEG7OmgISPeNIkpnabYDr8+h6o5250HV7zqlxqvgaUAbk8OyE8BWn5aNpU+SXTtP17gGs3USyYvKELADyE6QExZZ4zPW1K5LIBPDS2zJYPbyueP+uE+m8XF6fEqyCJSsHx31XZ2hAuIucST+ZpdNDvB7Q+p6fRi36/Qp2Y8S1WIgncFYLVnXhlOVySfIFbtzAujWUyearMKM3HfNXucimqQfzar6hh4H43A+vmQgRLbgz2MZ4SVtoMrSbN7zDgnGDCbDh23ZFsR7L/Pcmer+P9WOmYpylIB88537ghUlnChFATSHe82vFqx6v7ePVz1/ZxgK/BFjTiELRWmqgkKbWGFK89CKc+AWMa2623qB3TdkzbMW2daVVAc7CZwutehXL3CApmMxrRnn+r7/k3NYp3PPQtaOPexEstaERnni5V1OvNMmVsFc0KpW3Vu8Vc3DLNWSw8AnHY06qBi1AJE5k3uZ42HGhfRDj0Z37kJTk7Or8gb5iFCfOvysX8Clej+mX/Zb9TK4reo3FwekL8Cj3oWoWgUYuM7n7rdsLbKK7wlMBAUmpup+c4zYcnBqZBD0qM/BwMtT2nHb97IRrUH44biPz+54XLMhaxs8U1u6M7lheegovbJ/7Uo3WnzF+AG84vp82HrhbXtfwNq/78DlR/5W7ScOaX1b4DhM8qB/KRcmuqIbgeHYQKaOPD2Q/31+F+euJYm6g8L6Ur3XJMJtxmhLWinYjS4B0oin4mgEcRiwU3Yu/8CPnkLZL9EJHi4dxU7DG3WRmHicp79VHz/P9YqLiXMy57tQnTOxy8v/zwerD37uTw6MP50d5+2A/tnT9MREblTLb8cEcl9YHZ6kJniy71rbcra8RYuLO9QjAuMbVuVbOaz0M6N1oz+iqoWTmksxlqv9SiqvCxO5Wh0fBqQWL8VgU0A5b6jNMbPNiih97jvQt0AMVF6U6oVi/nVEEzY5AkUNiNsletonT68fwCIV/fG81VinM0m+CdUjahEf1MP1OKV1dRg2OTez6jgslx6SBMvV789xfqtf8r +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query groups

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

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Group filter request - -
- -The groups search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching groups. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching groups. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching groups. - -
  • Array [
  • ]
- -The group search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/search-roles.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/search-roles.api.mdx index e3bda88d497..92c4a7392f0 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/search-roles.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/search-roles.api.mdx @@ -5,84 +5,539 @@ description: "Search for roles based on given criteria." sidebar_label: "Query roles" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztWltv2zYU/isEnzZMkZ027Tq9uW66Zb1luXQPXoBQ0rHFhiJVkopjGPrvwyElW7YVx+0yrMUcIIgtkuf6fedQDOfUsomh0YieKQH0KqCqAM0sV/IkpRE1wHSS4ZihAU3BJJoXOEojeu7GyFhponECiZmBlChJJvwWJEk0t6A5C/+SNKAaPpdg7EuVzmg0d1+5hpRGYyYMBDRR0oK0OMaKQvDEGdH7ZFDXnJokg5zhp1Uj0DTirSS1ipAGlAnxYUyj0ZzaWQE0oir+BImlAS00emg5GCdWabsp9FxpS8YcRLp0ggaNKKY1m9GAcgu5E7KrMidxU9tFBrUyqwgaROJZS52xmssJrQKqdAq6e70bIlySacaTbCHIZkA0CGYh9SpQLsgyx4wPzoc0oK+Oz4eY9xTGrBSWRvVzy62AOhYfUPoxLquqoJW6Ue3SVWu6S8UfJegZrjzzKaHVFa4s2AQ27T9lEy5dtleivXNUtcq7g8JlCndEjYnLlAuKZdrWcOFyQnBtK9RcWpiApgEdK50z6x89fYLBFzznHVBBPTm743mZE1nmMegVhRpsqSUmRkloA3QHjd7Mwdh2Jf1k4ZLHPsNpIRkq7fPtxjD914IZi6n4yEQJ5prU0ZuhnYwUGm65Ks2SQ6ZQ0sA2vK/mo1qY+hLGSnckeN3W2M3rNHbM9b9tbdUJ1lM2gSVYgw4fOxbdv2A5HQtU15LKU8nb7wx90u9348tX16XLpXAQepSKuRG/hQO78u9BUnPpsY2fWaxKX5ZW3DGrhP/HorZbbJVl4qTBx1q8cazmb86sLxOopKMRdJP3+RGSdw3I3Yl1NfrWTUB8W9cItLFOPxYNX7/RLWLAhuTSALEZN83YdZt413UXQaZIAtKUaPtmzdmBz6s1Y2fjcdmX2u7q26OZvo3cHup1K+pk82LGOmL4PWBxxb8GiWPpNlsfpqGL3XYurgp5yQyQpaluL4aCT+6Rs+qVZDm0glhvNNa3eU0FIjg9XCmFjSo0oyNqNzD7AvE3MAuROcwYPpGQvgPspm9g1k50E9QOOIJF+NzAzMExd6sNaaQ1HQZVhR0IanZZXe5tPu1EDdreqsO3Mg0TlpcyZSEreIiWhX6L8NNX1WjyBmaEWat5XGLPZAZ3HKB5UtMwdIEpNCS44aOR1SXs6/q+ru/r+jdR1x+dv99vL1gybFsz6OLff9Md7q8IXSF4Xy5s26VzrEzfoYf43HxdD9nv8/f9YN8Pvo1+sN/nf6f7fJx1tO2wpsn3Z1xIxowLSEPyTmkgKVjGhSFMu4Te8hTSFos8PGKVzvyp+T1nPIVWsYD8wR4wIKd+Zq2XeITg1sNPjL320dnrIfnl6NnPVz9k1hYm6vWm02mox8kBpNwqHSo96elxgr8478eQXGSgkRYzEgNhacpRJxNtmJoCEj7mSZOU2myCufD+PVDA3egmshZluNR8AyQDcnl2QngK0vLxrCnrK6pp+7jb9ZcoFkze0GX6H4LzgJgyz5meNTVxVQGeiVpmy4c3EU+fdML8t4uLU+JFkESl4CjvymqtCJ3IucSDZxod9fsBrY+hafS8369QJmZ8B08kgbtCsLr1rrnDJcmXuHWOcWksk8ljZUZpPuHrelfrTw3iV96jhoCH9xDQdxMiWHJjsHHxlLDSZqg1af7NAM4IJsyWg9Q9yfYk+9+T7Okm3l8rHfM0BengueAbN0QqS5gQagrpnld7Xu15dR+vnnXtHgf43mtBIw5Ba6WJSpJSa0jxv/rCiU/AmEZ367Vpz7Q90/ZM22RaFdAcbKbwKlOhjIMOsxmNaM+9xvf8ixrFGwz6FrRx796lFjSic8+WKur15pkytormhdK26t1iKm6Z5iwWHoA47FnVoEWohInMa9zMGg7gW3bjzdAf8ZEX5Oz4/IL8yixMmX9LLhYXlBrRL/ov+p1Sceo9EgenJ8R76DHXqgONWCR09wu3m7yL4AqPBgwkpeZ2do7LfHhiYBr0oMTAL7BQ63PS8bufRIP6w+sGIb//eeGSjDXsbHmH7PiO5YVnoL/DNVrcr1q8418tbxz5S0L9xTWe/tr1mtHc296+xoLPKgfksXKG1zDbDAHiAbTxMeuHh5uQPj1xzExUnpfSlWc5IVNuM8JaIU1EafAaD0U7E8DThsXxzULtWz9CPnqN5DBEOHjMNlV5wm1WxmGi8l59fLz4GwsV93LGZa9WYXrDwbvL968GB29Phsfvz48PDsN+aO/8CSGyJmeyZYc7DfGnYOt+zpeN6AtvB9agsHBne4VgXCJMnU/zmrEj2qisOXsV1Lwb0fkchV9qUVX42B270Gh0taQpfqsCmgFLfbr9oRUdensPLlA/ThelO35av09TBc2KQZJAYbfOvWpVndMP5xcI6vraY65SXKPZFK9EsimNKMU7l7jaccU9m1PB5KR02KVeJv78DZajhhQ= sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query roles

+ - + Search for roles based on given criteria. -## Request - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
- -The roles search result. - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching roles. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching roles. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching roles. - -
  • Array [
  • ]
- -The role search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/search-tenants.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/search-tenants.api.mdx index f06e6eca3a7..a3eb045c250 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/search-tenants.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/search-tenants.api.mdx @@ -5,92 +5,631 @@ description: "Retrieves a filtered and sorted list of tenants." sidebar_label: "Query tenants" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query tenants

+ - + Retrieves a filtered and sorted list of tenants. -## Request - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Tenant filter request - -
- -The tenants search result - -
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching tenants. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching tenants. - -
  • Array [
  • ]
Schema
    page object
    - -Pagination information about the search results. - -
    items object[]
    - -The matching tenants. - -
  • Array [
  • ]
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/sidebar.js b/docs/apis-tools/camunda-api-rest/specifications/sidebar.js deleted file mode 100644 index 3540f685a93..00000000000 --- a/docs/apis-tools/camunda-api-rest/specifications/sidebar.js +++ /dev/null @@ -1,684 +0,0 @@ -module.exports = [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/camunda-8-rest-api", - }, - { - type: "category", - label: "Authentication", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-authentication", - label: "Get current user", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Authorization", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/update-authorization", - label: "Update authorization", - className: "api-method patch", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-authorizations", - label: "Query authorizations", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-user-authorizations", - label: "Query user authorizations", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Clock", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/pin-clock", - label: "Pin internal clock (alpha)", - className: "api-method put", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/reset-clock", - label: "Reset internal clock (alpha)", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Cluster", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-topology", - label: "Get cluster topology", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Decision definition", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-decision-definitions", - label: "Query decision definitions", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-decision-definition", - label: "Get decision definition", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-decision-definition-xml", - label: "Get decision definition XML", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/evaluate-decision", - label: "Evaluate decision", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Decision instance", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-decision-instances", - label: "Query decision instances", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-decision-instance", - label: "Get decision instance", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Decision requirements", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-decision-requirements", - label: "Query decision requirements", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-decision-requirements", - label: "Get decision requirements", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-decision-requirements-xml", - label: "Get decision requirements XML", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Document", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/create-document", - label: "Upload document (alpha)", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-document", - label: "Download document (alpha)", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/delete-document", - label: "Delete document (alpha)", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/create-document-link", - label: "Create document link (alpha)", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Element instance", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/create-element-instance-variables", - label: "Update element instance variables", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Flow node instance", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-flow-node-instances", - label: "Query flow node instances", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-flow-node-instance", - label: "Get flow node instance", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Group", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/create-group", - label: "Create group", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-group", - label: "Get group", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/update-group", - label: "Update group", - className: "api-method patch", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/delete-group", - label: "Delete group", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/add-user-to-group", - label: "Assign a user to a group", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/unassign-user-from-group", - label: "Unassign a user from a group", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/search-groups", - label: "Query groups", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Incident", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/resolve-incident", - label: "Resolve incident", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-incidents", - label: "Query incidents", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-incident", - label: "Get incident", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Job", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/activate-jobs", - label: "Activate jobs", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/fail-job", - label: "Fail job", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/report-job-error", - label: "Report error for job", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/complete-job", - label: "Complete job", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/update-job", - label: "Update job", - className: "api-method patch", - }, - ], - }, - { - type: "category", - label: "License", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-license", - label: "Get license status", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Mapping rule", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/create-mapping-rule", - label: "Create mapping rule", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/delete-mapping-rule", - label: "Delete a mapping rule", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-mappings", - label: "Query mappings", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Message", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/publish-message", - label: "Publish message", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/correlate-message", - label: "Correlate message", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Process definition", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-process-definitions", - label: "Query process definitions", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-process-definition", - label: "Get process definition", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-process-definition-xml", - label: "Get process definition XML", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-start-process-form", - label: "Get process start form", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Process instance", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/create-process-instance", - label: "Create process instance", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-process-instance", - label: "Get process instance", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-process-instances", - label: "Query process instances", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/cancel-process-instance", - label: "Cancel process instance", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/migrate-process-instance", - label: "Migrate process instance", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/modify-process-instance", - label: "Modify process instance", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Resource", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/create-deployment", - label: "Deploy resources", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/delete-resource", - label: "Delete resource", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Role", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/create-role", - label: "Create role", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-role", - label: "Get role", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/update-role", - label: "Update role", - className: "api-method patch", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/delete-role", - label: "Delete role", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/search-roles", - label: "Query roles", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Signal", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/broadcast-signal", - label: "Broadcast signal", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Tenant", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/create-tenant", - label: "Create tenant", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/update-tenant", - label: "Update tenant", - className: "api-method patch", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-tenant", - label: "Get tenant", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/delete-tenant", - label: "Delete tenant", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/assign-user-to-tenant", - label: "Assign a user to a tenant", - className: "api-method put", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/remove-user-from-tenant", - label: "Remove a user from a tenant", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant", - label: "Assign a mapping rule to a tenant", - className: "api-method put", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant", - label: "Remove a mapping rule from a tenant", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/assign-group-to-tenant", - label: "Assign a group to a tenant", - className: "api-method put", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/remove-group-from-tenant", - label: "Remove a group from a tenant", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/search-tenants", - label: "Query tenants", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "User", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/create-user", - label: "Create user", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-users", - label: "Query users", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/delete-user", - label: "Delete user", - className: "api-method delete", - }, - ], - }, - { - type: "category", - label: "Usage metrics", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-usage-metrics", - label: "Get usage metrics", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "User task", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/complete-user-task", - label: "Complete user task", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/assign-user-task", - label: "Assign user task", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-user-task", - label: "Get user task", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/update-user-task", - label: "Update user task", - className: "api-method patch", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-user-task-form", - label: "Get user task form", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/unassign-user-task", - label: "Unassign user task", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-user-tasks", - label: "Query user tasks", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-user-task-variables", - label: "Query user task variables", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Variable", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-variables", - label: "Query variables", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-variable", - label: "Get variable", - className: "api-method get", - }, - ], - }, -]; diff --git a/docs/apis-tools/camunda-api-rest/specifications/sidebar.ts b/docs/apis-tools/camunda-api-rest/specifications/sidebar.ts new file mode 100644 index 00000000000..43940084690 --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/sidebar.ts @@ -0,0 +1,690 @@ +import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; + +const sidebar: SidebarsConfig = { + apisidebar: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/camunda-8-rest-api", + }, + { + type: "category", + label: "Authentication", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-authentication", + label: "Get current user", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Authorization", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/update-authorization", + label: "Update authorization", + className: "api-method patch", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-authorizations", + label: "Query authorizations", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-user-authorizations", + label: "Query user authorizations", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Clock", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/pin-clock", + label: "Pin internal clock (alpha)", + className: "api-method put", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/reset-clock", + label: "Reset internal clock (alpha)", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Cluster", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-topology", + label: "Get cluster topology", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Decision definition", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-decision-definitions", + label: "Query decision definitions", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-decision-definition", + label: "Get decision definition", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-decision-definition-xml", + label: "Get decision definition XML", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/evaluate-decision", + label: "Evaluate decision", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Decision instance", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-decision-instances", + label: "Query decision instances", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-decision-instance", + label: "Get decision instance", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Decision requirements", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-decision-requirements", + label: "Query decision requirements", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-decision-requirements", + label: "Get decision requirements", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-decision-requirements-xml", + label: "Get decision requirements XML", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Document", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/create-document", + label: "Upload document (alpha)", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-document", + label: "Download document (alpha)", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/delete-document", + label: "Delete document (alpha)", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/create-document-link", + label: "Create document link (alpha)", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Element instance", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/create-element-instance-variables", + label: "Update element instance variables", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Flow node instance", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-flow-node-instances", + label: "Query flow node instances", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-flow-node-instance", + label: "Get flow node instance", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Group", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/create-group", + label: "Create group", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-group", + label: "Get group", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/update-group", + label: "Update group", + className: "api-method patch", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/delete-group", + label: "Delete group", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/add-user-to-group", + label: "Assign a user to a group", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/unassign-user-from-group", + label: "Unassign a user from a group", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/search-groups", + label: "Query groups", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Incident", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/resolve-incident", + label: "Resolve incident", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-incidents", + label: "Query incidents", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-incident", + label: "Get incident", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Job", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/activate-jobs", + label: "Activate jobs", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/fail-job", + label: "Fail job", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/report-job-error", + label: "Report error for job", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/complete-job", + label: "Complete job", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/update-job", + label: "Update job", + className: "api-method patch", + }, + ], + }, + { + type: "category", + label: "License", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-license", + label: "Get license status", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Mapping rule", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/create-mapping-rule", + label: "Create mapping rule", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/delete-mapping-rule", + label: "Delete a mapping rule", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-mappings", + label: "Query mappings", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Message", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/publish-message", + label: "Publish message", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/correlate-message", + label: "Correlate message", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Process definition", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-process-definitions", + label: "Query process definitions", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-process-definition", + label: "Get process definition", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-process-definition-xml", + label: "Get process definition XML", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-start-process-form", + label: "Get process start form", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Process instance", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/create-process-instance", + label: "Create process instance", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-process-instance", + label: "Get process instance", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-process-instances", + label: "Query process instances", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/cancel-process-instance", + label: "Cancel process instance", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/migrate-process-instance", + label: "Migrate process instance", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/modify-process-instance", + label: "Modify process instance", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Resource", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/create-deployment", + label: "Deploy resources", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/delete-resource", + label: "Delete resource", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Role", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/create-role", + label: "Create role", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-role", + label: "Get role", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/update-role", + label: "Update role", + className: "api-method patch", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/delete-role", + label: "Delete role", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/search-roles", + label: "Query roles", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Signal", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/broadcast-signal", + label: "Broadcast signal", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Tenant", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/create-tenant", + label: "Create tenant", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/update-tenant", + label: "Update tenant", + className: "api-method patch", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-tenant", + label: "Get tenant", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/delete-tenant", + label: "Delete tenant", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/assign-user-to-tenant", + label: "Assign a user to a tenant", + className: "api-method put", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/remove-user-from-tenant", + label: "Remove a user from a tenant", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant", + label: "Assign a mapping rule to a tenant", + className: "api-method put", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant", + label: "Remove a mapping rule from a tenant", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/assign-group-to-tenant", + label: "Assign a group to a tenant", + className: "api-method put", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/remove-group-from-tenant", + label: "Remove a group from a tenant", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/search-tenants", + label: "Query tenants", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "User", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/create-user", + label: "Create user", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-users", + label: "Query users", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/delete-user", + label: "Delete user", + className: "api-method delete", + }, + ], + }, + { + type: "category", + label: "Usage metrics", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-usage-metrics", + label: "Get usage metrics", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "User task", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/complete-user-task", + label: "Complete user task", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/assign-user-task", + label: "Assign user task", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-user-task", + label: "Get user task", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/update-user-task", + label: "Update user task", + className: "api-method patch", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-user-task-form", + label: "Get user task form", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/unassign-user-task", + label: "Unassign user task", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-user-tasks", + label: "Query user tasks", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-user-task-variables", + label: "Query user task variables", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Variable", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-variables", + label: "Query variables", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-variable", + label: "Get variable", + className: "api-method get", + }, + ], + }, + ], +}; + +export default sidebar.apisidebar; diff --git a/docs/apis-tools/camunda-api-rest/specifications/unassign-user-from-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/unassign-user-from-group.api.mdx index 3c5afc6296f..7b76a6553aa 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/unassign-user-from-group.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/unassign-user-from-group.api.mdx @@ -12,49 +12,228 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Unassign a user from a group

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

Path Parameters

- -The user was unassigned successfully from the group. - -
- -The user could not be unassigned. -More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The group or user with the given key was not found, or the user is not assigned to this group. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/unassign-user-task.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/unassign-user-task.api.mdx index 42c6740b0bf..c2c0c31cea0 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/unassign-user-task.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/unassign-user-task.api.mdx @@ -12,48 +12,219 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Unassign user task

+ Removes the assignee of a task with the given key. -## Request - -

Path Parameters

- -The user task was unassigned successfully. - -
- -The user task with the given key cannot be unassigned. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-authorization.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-authorization.api.mdx index d62e3a8b37b..73c9ee18064 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/update-authorization.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/update-authorization.api.mdx @@ -5,69 +5,364 @@ description: "Manage the permissions assigned to the authorization." sidebar_label: "Update authorization" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Update authorization

+ Manage the permissions assigned to the authorization. -## Request + -

Path Parameters

Body

required
    permissions object[]
    + -The permissions to add/remove. + -
  • Array [
  • ]
- -The authorization was patched successfully. - -
- -The authorization could not be patched. -More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The owner was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request to add or remove permissions to an authorization was in conflict. -More details are provided in the response body. - -
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-group.api.mdx index d33a746bea8..dd97ca77e05 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/update-group.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/update-group.api.mdx @@ -5,56 +5,256 @@ description: "Update a group with the given key." sidebar_label: "Update group" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zYQ/isYnJopLcqpk6a8qYqTuE1TjyO3B0eHFbgiEYMAA4CWNRz+984C1FtOfOhRntFY4mLf3weA23IPhePZHX9vTVPzacJNjRa8NPoq5xlv6hw8RmHCc3TCypqkPOO3QcaAFSRmC+lL5ktkhXxAze5xOeAJr8FChR4teWm5hgp5xoPGn7jkCZdkqgZf8oRb/NZIiznPvG1w39+kRLLKzDy6CV69YTFGcuZEiRXwrOV+WZMfqT0WaHnC58ZW4OOj1xe866bRHTr/u8mXpLPvXRjtUXsSQV0rKUJZ0q+OomkPnZnZVxSecrZURC/RkVSUoAt0GAwdZuTQU0ZxVd5nBd5bOWs8OkoLlPp7Hsq3qz56jvL3g4v9WKfgvJW6OOg0xRmrnLNculrBkpHmTisGvOsS7qVXZClAZrxOvZuScFPhu62yTPe0Iq5uYnN410VNVxvtYtAvhxfHa9kDEdw6WtcIgc7NG6WWA94l/GI4PK5bW/Mgc0oQPDDpmDaePYCS+eCL5k+iobZmprD6+RAV+726jitZjh6kYrEhDByLC2eYM6nZ3c27Mfvt4tWv059K72uXpelisRjYuTjDXHpjB8YWqZ0L+tC6FwM2KdEiq2DJZsggzyX5BMU2rWauRiHnUhBffMw2BEN9j/l9HydReoiTNa0aKw9gM2K3N1dM5qi9nC+lLg5dB505NIpswMw0Ppsp0Pd8A6UfgXPEXFNVYNcbw66DLuHOg2/cD7eFX14eBf6HyeSaRRNMmBzZ3FjmS+lWjiiJSmpZNRXPLobDhFfwGH+9Hg47skkdf0YmmuFjrUAHaO2nIzWrjMUePyExqZ0HLf6vzhgrC7nvd5fWPYjfxowiNy+G58cp1e+vTIG4d5FLDBpfktdIHyYshiBAhc3qRLITyU4kO06y759568tXf7NanWBz0+j8RK0TtU7Ueopar45dCUeaUZUt4RCtNZYZIRprMWeLUqpgnm6WK9/9WXe6K564duLaU1zrEl6hL00eX/lFGQYEvuQZT8PB5dJ2dYB19D6P9mE1OWis4hlvI2e6LE3b0jjfZW1trO/SB2rIA1gJMxVhSOLIrRVmlBGgwuNjvSPB9kvtGKpG58DesJvLzxP2HjwuIL5Ekstd02+Gb4ZHrdLSJyyOrq9YzDAib2s3WJklWh81Gxc/x3CYdDgUjZV++ZnUYnlmCBbtqKHqrxHR+wvW6XdcxJP+y7sVTv74dxJaTTvZzWaKcvkIVR15uDP16Kc+Pd66gMa5CX57rBxmQO1E62LKw8H5IS6vrwK9hKmqRoc9VhfxIgRbFRGqcZ4qkXAlBWqHWxGtln2MEvZP9MjOB9TNCLnV1lpIXzazgTBVKqLa+v9MmVlagdRp78Kl49Fft5/ejs4+Xo0vP32+PDsfDAf+0Yfka+N8BXorjn6UVhybs7Wb4+R5I7e+lx4ffVorkJrQFXJpe7bdxQGc4wnP1qO4adJT5o637Qwc3lrVdfT4W4N2ybO76YZhcRolHX3PeTYH5fbnddtx/3TTT35esB9P8Y7G3z8EvQw8Vw394gm/x+X2PLGbdgkvEXK0IcQoHsdAziZkZKN+MNXrkpXGSAis/RNrd85xotd6U7seTcYfiC79SLEyOSlbWNB0ExY841/4F4rbhCoFJobnLVegiwYKWh8N099/P6100Q== +api: eJztWEtz2zYQ/isYnJIpLcqpk6a8qYqTuE1TjyO3B1eHFbgiEYMAA4CWNRz+984C1FtOfOhRntFY4mLf3weA23IPhePZHf9gTVPzacJNjRa8NPoq5xlv6hw8RmHCc3TCypqkPOO3QcaAFSRmC+lL5ktkhXxAze5xOeAJr8FChR4teWm5hgp5xoPGH7jkCZdkqgZf8oRb/NZIiznPvG1w39+kRLLKzDy6CV69YTFGcuZEiRXwrOV+WZMfqT0WaHnC58ZW4OOjNxe866bRHTr/m8mXpLPvXRjtUXsSQV0rKUJZ0q+OomkPnZnZVxSecrZURC/RkVSUoAt0GAwdZuTQU0ZxVd5nBd5bOWs8OkoLlPprHsq3qz56jvL3g4v9WKfgvJW6OOg0xRmrnLNculrBkpHmTisGvOsS7qVXZClAZrxOvZuScFPhu62yTPe0Iq5uYnN410VNVxvtYtCvhhfHa9kDEdw6WtcIgc7NG6WWA94l/GI4PK5bW/Mgc0oQPDDpmDaePYCS+eBfzZ9EQ23NTGH10yEq9nt1HVeyHD1IxWJDGDgWF84wZ1Kzu5v3Y/brxetfpi9K72uXpelisRjYuTjDXHpjB8YWqZ0L+tC6lwM2KdEiq2DJZsggzyX5BMU2rWauRiHnUhBffMw2BEN9j/l9HydReoiTNa0aKw9gM2K3N1dM5qi9nC+lLg5dB505NIpswMw0Ppsp0Pd8A6UfgXPEXFNVYNcbw66DLuHOg2/cD7eFn18dBf7HyeSaRRNMmBzZ3FjmS+lWjiiJSmpZNRXPLobDhFfwGH+9GQ47skkdf0YmmuFjrUAHaO2nIzWrjMUePyExqZ0HLf6vzhgrC7nvd5fWPYjfxYwiNy+G58cp1e+vTIG4d5FLDBpfktdIHyYshiBAhc3qRLITyU4kO06y759568tXf7NanWBz0+j8RK0TtU7Ueopar49dCUeaUZUt4RCtNZYZIRprMWeLUqpgnm6WK9/9WXe6K564duLaU1zrEl6hL00eX/lFGQYEvuQZT8PB5dJ2dYB19D6P9mE1OWis4hlvI2e6LE3b0jjfZW1trO/SB2rIA1gJMxVhSOLIrRVmlBGgwuNjvSPB9kvtGKpG58DespvLLxP2ATwuIL5Ekstd02+Hb4dHrdLSJyyOrq9YzDAib2s3WJklWh81Gxc/x3CYdDgUjZV++YXUYnlmCBbtqKHqrxHR+wvW6XdcxJP+y/sVTn7/ZxJaTTvZzWaKcvkIVR15uDP16Kc+Pd66gMa5CX57rBxmQO1E62LKw8H5IS6vrwK9hKmqRoc9VhfxIgRbFRGqcZ4qkXAlBWqHWxGtln2KEvZ39MjOB9TNCLnV1lpIXzazgTBVKqLa+v9MmVlagdRp78Kl49Gft5/fjc4+XY0vP3+5PDsfDAf+0Yfka+N8BXorjn6UVhybs7Wb4+R5I7e+lx4ffVorkJrQFXJpe7bdxQGc4wnP1qO4adJT5o637Qwc3lrVdfT4W4N2ybO76YZhcRolHX3PeTYH5fbnddtxv7jpJz8v2Y+neEfj7x+CXgaeq4Z+8YTf43J7nthNu4SXCDnaEGIUj2MgZxMyslE/mOp1yUpjJATW/om1O+c40Wu9qV2PJuOPRJd+pFiZnJQtLGi6CYsYswkVCiwMz1quQBcNFLQ2GqW//wB/T3PV sidebar_class_name: "patch api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Update group

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

Path Parameters

Body

required
    changeset object
    + -A set of changed group attributes. + -
- -The group was updated successfully. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The group with the groupKey is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-job.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-job.api.mdx index cf3600b8052..1538d6889d6 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/update-job.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/update-job.api.mdx @@ -5,66 +5,263 @@ description: "Update a job with the given key." sidebar_label: "Update job" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Update job

+ - + Update a job with the given key. -## Request + -

Path Parameters

Body

required
    changeset objectrequired
    + -JSON object with changed job attribute values. + -The following attributes can be adjusted with this endpoint, additional attributes -will be ignored: - -- `retries` - The new amount of retries for the job; must be a positive number. -- `timeout` - The duration of the new timeout in ms, starting from the current moment. - -Providing any of those attributes with a null value or omitting it preserves the persisted attribute’s value. - -The job cannot be completed or failed with this endpoint, use the complete job or fail job endpoints instead. - -
- -The job was updated successfully. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the jobKey is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-role.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-role.api.mdx index d3c4375064d..c5c3609de5f 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/update-role.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/update-role.api.mdx @@ -5,56 +5,256 @@ description: "Update a role with the given key." sidebar_label: "Update role" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zYQ/isYnJIpLcqpk6a8qYrTuE1TjyK3B0eHJbgSEYMAA4CWNRz+984C1MuSEx96lGc0lrjY9/cB4Lbcw8Lx7JZPjEI+S7ip0YKXRl8VPONNXYDHIEt4gU5YWZOQZ/wmiBgwaxSypfQl8yWyhbxHze5wNeAJr8FChR4tuWi5hgp5xknhT1zxhEsyVIMvecItfmukxYJn3jb42Nu0RDLKzDx4CT69YTE+cuVEiRXwrOV+VZMXqT0u0PKEz42twMdHby54182iN3T+N1OsSOexc2G0R+1JBHWtpAglSb86CqY9dGbyryg8ZWypgF6iI6koQS/QYTB0mJBDTwnFVUVMCry3Mm88OsoKlPp7Hmq3rz16hu73Q4u92CTgvJV6cdBkijLWuGCFdLWCFSPN3T4MeNcl3EuvyBBhZbxJu5uRbFvd252SzPaVIp4msS+866Kiq412MeJXw4vjZYwABLeJ1DVCoHPzRqnVgHcJvxgOj6vW1tzLgpIDD0w6po1n96BkMfii+ZM4qK3JFVY/HeLhcZuu40pWoAepWGwGA8fiwhwLJjW7nbwfs18vXv8ye1F6X7ssTZfL5cDOxRkW0hs7MHaR2rmgD617OWDTEi2yClYsRwZFIcknKLZtM3M1CjmXgpjiY7YhGOp5zO/7GInSQ4xsCNVYeQCZEbuZXDFZoPZyvpJ6ceg66MyhUWQDctP4LFeg7/gWRz8C5oi5pqrAbnaEfQddwp0H37gfbgg/vzoK+g/T6TWLJpgwBbK5scyX0q0dURKV1LJqKp5dDIcJr+Ah/nozHHZkkzr+jEw0w4dagQ7QepyO1KwyFnv8hMSkdh60+L86Y6xcyMd+9zndg/hdzChS82J4/gQbI4OZAnHnIpcYNL4kr5E+TFgMQYAKG9WJZCeSnUh2nGTfPfLWd67+QrU+v+am0cWJWCdinYj1FLFeH7sQjjSjKlvCIVprLDNCNNZiwZalVME83SvXvvuT7nRTPHHtxLWnuNYlvEJfmiK+6YsyjAV8yTOe0rnl0rY/vjp6i0d7v54WNFbxjLeRMV2Wpm1pnO+ytjbWd+k9teMerIRcRRCSODJrjRhlBKjw+FjnSLD7MjuGqtEFsLdscvl5yn4Hj0uIL5Dkct/02+Hb4VGrtPQJi6PrKxYzjLjb2QvWZonUR83Gxc8xHOYbDkVjpV99JrVYnhzBoh01VPsNHnp/wTr9jot40n95v0bJH/9OQ6NpH5tsZyeXD1DVkYV7s45+0tOjrQtYnJvgt0fKYQbUTrQupjwcnB+i8voqkEuYqmp02GH1It6CYKciQjXOUyUSrqRA7XAnovWyj1HC/oke2fmAuhkht95YF9KXTT4QpkpFVNv8z5XJ0wqkTnsXLh2P/rr59G509vFqfPnp8+XZ+WA48A8+JF8b5yvQO3H00zN7ZLLWbs+SZw3Z+k56fPBprUBqwlbIpO2ZdhtGbo4nPFvP3mZJT5db3rY5OLyxquvo8bcG7Ypnt7Mtu+IASjr6XvBsDso9HtDtBv1i0s97XrIfju2OBt8/BL0KFFcN/eIJv8PVzviwm3UJLxEKtCHAKB3HMM6mZGOrfTDF65K1xkgIrP0Ta/fObyLWZjO7Hk3HH4go/QixMkUYbsKShpmw5Bn/wr9Q2CbUKHAwPG+5Ar1oYEHro2H6+w++d2q6 +api: eJztWEtz2zYQ/isYnJIpLcqpk6a8qYrTuE1SjyK3B1eHJbgSEYMAA4CWNRz+984C1MuSEx96lGc0lrjY9/cB4Lbcw8Lx7JZPjEI+S7ip0YKXRl8VPONNXYDHIEt4gU5YWZOQZ/wmiBgwaxSypfQl8yWyhbxHze5wNeAJr8FChR4tuWi5hgp5xknhT1zxhEsyVIMvecItfmukxYJn3jb42Nu0RDLKzDx4CT69YTE+cuVEiRXwrOV+VZMXqT0u0PKEz42twMdHby54182iN3T+N1OsSOexc2G0R+1JBHWtpAglSb86CqY9dGbyryg8ZWypgF6iI6koQS/QYTB0mJBDTwnFVUVMCry3Mm88OsoKlPprHmq3rz16hu73Q4u92CTgvJV6cdBkijLWuGCFdLWCFSPN3T4MeNcl3EuvyBBhZbxJu5uRbFvd252SzPaVIp4msS+866Kiq412MeJXw4vjZYwABLeJ1DVCoHPzRqnVgHcJvxgOj6vW1tzLgpIDD0w6po1n96BkMfhX8ydxUFuTK6x+OsTD4zZdx5WsQA9SsdgMBo7FhTkWTGp2O3k/Zr9evP5l9qL0vnZZmi6Xy4GdizMspDd2YOwitXNBH1r3csCmJVpkFaxYjgyKQpJPUGzbZuZqFHIuBTHFx2xDMNTzmN/3MRKlhxjZEKqx8gAyI3YzuWKyQO3lfCX14tB10JlDo8gG5KbxWa5A3/Etjn4EzBFzTVWB3ewI+w66hDsPvnE/3BB+fnUU9B+m02sWTTBhCmRzY5kvpVs7oiQqqWXVVDy7GA4TXsFD/PVmOOzIJnX8GZlohg+1Ah2g9TgdqVllLPb4CYlJ7Txo8X91xli5kI/97nO6B/G7mFGk5sXw/Ak2RgYzBeLORS4xaHxJXiN9mLAYggAVNqoTyU4kO5HsOMm+e+St71z9hWp9fs1No4sTsU7EOhHrKWK9PnYhHGlGVbaEQ7TWWGaEaKzFgi1LqYJ5uleuffcn3emmeOLaiWtPca1LeIW+NEV80xdlGAv4kmc8pXPLpW1/fHX0Fo/2fj0taKziGW8jY7osTdvSON9lbW2s79J7asc9WAm5iiAkcWTWGjHKCFDh8bHOkWD3ZXYMVaMLYG/Z5PLLlP0OHpcQXyDJ5b7pt8O3w6NWaekTFkfXVyxmGHG3sxeszRKpj5qNi59jOMw3HIrGSr/6QmqxPDmCRTtqqPYbPPT+gnX6HRfxpP/yfo2SP/6ZhkbTPjbZzk4uH6CqIwv3Zh39pKdHWxewODfBb4+UwwyonWhdTHk4OD9E5fVVIJcwVdXosMPqRbwFwU5FhGqcp0okXEmB2uFOROtlH6OE/R09svMBdTNCbr2xLqQvm3wgTJWKqLb5nyuTpxVInfYuXDoefbr5/G509vFqfPn5y+XZ+WA48A8+JF8b5yvQO3H00zN7ZLLWbs+SZw3Z+k56fPBprUBqwlbIpO2ZdhtGbo4nPFvP3mZJT5db3rY5OLyxquvo8bcG7Ypnt7Mtu+IASjr6XvBsDso9HtDtBv1i0s97XrIfju2OBt8/BL0KFFcN/eIJv8PVzviwm3UJLxEKtCHAKB3HMM6mZGOrfTDF65K1xkgIrP0Ta/fObyLWZjO7Hk3HH4go/QixMkUYbsKShpmwjCGbUJ/Av/Cs5Qr0ooEFrY1G6e8/JoRpvg== sidebar_class_name: "patch api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Update role

+ - + Update a role with the given key. -## Request + -

Path Parameters

Body

required
    changeset object
    + -A set of changed role attributes. + -
- -The role was updated successfully. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The request lacks valid authentication credentials. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The role with the roleKey is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-tenant.api.mdx index f69c378a56d..11fd3fa5f46 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/update-tenant.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/update-tenant.api.mdx @@ -5,52 +5,337 @@ description: "Updates an existing tenant." sidebar_label: "Update tenant" hide_title: true hide_table_of_contents: true -api: eJztWVtv2zYU/isEn1pMkZw27Tq9uWm6Zm2zIHW2h8QPlHhssaVIlaTiCIb++3BIKZYvuXTrywAHCCyRh+f6fRR1tKSOzS1Nr+gEFFOOTiOqKzDMCa1OOU1pXXHmoJuNKAebG1HhNE3ppZ+0hCkCt8I6oebEedGYRrRihpXgwKCBJVWsBJrSMP8RGhpRgUoq5goaUQPfa2GA09SZGjYtTQogtRLfayCCg3JiJsAQPSOugIFJmxdQMpouqWsqtCaUgzkYGtGZNiVzYej1EW3babAJ1r3VvME1uVYOlMNLVlVS5D4NyVeLLiy3levsK+SYlcpg0pwAi7Mh0Dsp64xQ863cYUQKFgSlNwNp22E+roLGaUSdcBJVhnKE7F+EGGi7vgiT6AdspZUNjr0YjfBn249glyyYJaHenNg6z8HaWS1lg5n917lhUv458wBYt/uWWSCrxJGZNmQ9ruA5Gn8438F7ROtTct6hCG4dGMVkH/vpO9pGP1K6e8q2u0QhFAyZIu52+Y+M+JEAbGMdlAdzUEhX4AShvh7R4x55gWE9bxSPc1bWirOYVSL+Bo2NVV1mYH7ZrjWHykCO1nvW7qv/M6q/2rX+W/l37HoP+3jmK/0RGvs0ZIQU7UDGHgf/r10ARY7uezxURt8IDpxw5hgRlijtyA2Tgj/wZKiMziSUO3eNoYExOQ+ShINjQpJQX8IsCYKZj4pcXbw/Jr8dvfp1+qxwrrJpkiwWi9jM8gPgwmkTazNPzCzHf5R7HpNJAQZIyRqSAWGcC7TJ5BBwtoJczEROnPZV7NwmWIH4Wj0OOz+7XbE74tVGbBVwTC4vTvuDTONPTZum/ZoZqyXqYJmuXZpJpr7RVS0fg8mY2LosmWl6hK4baCNqHXO13bnxDDeOly92QvDDZHJOggqSaw6evK4QtjeEQZRCibIuaXo0GkW0ZLfh7vVo1KJOrPgTIsHzZSWZ8tDaDEcoUmoDHX58YEJZx1T+syqjjZiLTbvrvOpA/C5E1BPq5Tbe32uTCc5BeXiS7gjas4pJqRew59WeV3tePcCro228n2lHZrpWPPBq8Eqj7mb2rNqzas+qe1j1atfxb6xWJ0owRhui87w2BjhZFEJ69dgn6G13j7OAxT3X9lzbc22ba21ES3CF5qH7mRe+WeoKmtIkPLdssrx7H2yxrwnmpu+j1kbSlC4Da9o0SZaFtq5Nl5U2rk1usCQ3zAiWyQBEnA7s6lEjdc6kH95VPZwYvtgeh7d+8oZcnHyZkN+ZgwVrfDbR5LrqN6M3o51aUfQejePzUxIiDNgb7Ae9WiT2TrVB+CmKfcfXQl4b4ZovuCykJwNmwIxrzP8dJjp7XjveByEadRfve6T88ffEFxv3sotVN/nklpVVYGLX9u5A5hE4095Sh49tn7GAYGwIchQfbmPx/NRTKtdlWSu/r6o5WQhXEDbIQS5r6zD2iEqRA77prxzqxT6FGfJXsEgOY6xfAFm/nc6FK+osznWZdC2gu99M6iwpmVBJZ8Imx+PPl2fvxgefTo9Pzr6cHBzGo9jdOp+nSltXMjXwI7QiuvPaZqSDnvwjHxu6ujm4dUklmVCYah/FsuPWVddisTSi6arbMo06glzR5TJjFi6NbFsc/l6DaWh6NV3xKXSwhMVrTtMZk3bzU8XQ5WcXXT/+OXniB4ydYXSDTDWe2rLGOxrRb9gsGjSO2mkb0QIYB+MdDfPHwZ2DCWpZrd/q4rdRv2Kc51C5B2Wngy3sfDw5/oDU6D6jlJrjIsMW+FmHLWhKr+k1Oqx9jjzr/PiSSqbmNZujfFCMf/8AhP03lQ== +api: eJztWVtv2zYU/isEn1pMkdw27TK9ubmsWbssSJ3tIfMDJR5bbClSJak4gqH/PhxSiuVLLt36MsABAkvk4bl+H0UdLaljc0vTGzoBxZSj04jqCgxzQqtzTlNaV5w56GYjysHmRlQ4TVN67SctYYrAnbBOqDlxXjSmEa2YYSU4MGhgSRUrgaY0zH+EhkZUoJKKuYJG1MC3WhjgNHWmhk1LkwJIrcS3GojgoJyYCTBEz4grYGDS5gWUjKZL6poKrQnlYA6GRnSmTclcGHp3SNt2GmyCde81b3BNrpUD5fCSVZUUuU9D8sWiC8tt5Tr7AjlmpTKYNCfA4mwI9F7KOiPUfCt3GJGCBUHpzUDadpiPm6BxGlEnnESVoRwh+1chBtquL8Ik+gFbaWWDY69HI/zZ9iPYJQtmSag3J7bOc7B2VkvZYGb/dW6YlH/MPADW7b5nFsgqcWSmDVmPK3iOxh/Pd/Ae0fqcnHcogjsHRjHZx35+Qtvoe0r3QNl2lyiEgiFTxN0u/5ER3xOAbayD8mAOCukKnCDU1yN62iMvMKznreJxzspacRazSsRfobGxqssMzE/bteZQGcjRes/affV/RPVXu9Z/K/+OXe9xHy98pT9CY5+HjJCiHcjY4+D/tQugyOFDj4fK6FvBgRPOHCPCEqUduWVS8EeeDJXRmYRy564xNDAml0GScHBMSBLqS5glQTDzUZGbq7Nj8svh25+nLwrnKpsmyWKxiM0sPwAunDaxNvPEzHL8R7mXMZkUYICUrCEZEMa5QJtMDgFnK8jFTOTEaV/Fzm2CFYj/Vk/Dzs9uV+yeeLURWwUck+ur8/4g0/hT06Zpv2bGaok6WKZrl2aSqa90VcunYDImti5LZpoeoesG2ohax1xtd248w43jzeudEPwwmVySoILkmoMnryuE7Q1hEKVQoqxLmh6ORhEt2V24ezcatagTK/6MSPB8WUmmPLQ2wxGKlNpAhx8fmFDWMZX/qMpoI+Zi0+46rzoQn4SIekK92cb7mTaZ4ByUhyfpjqA9q5iUegF7Xu15tefVI7w63Mb7hXZkpmvFA68GrzTqfmbPqj2r9qx6gFVvdx3/xmp1ogRjtCE6z2tjgJNFIaRXj32C3nb3OAtY3HNtz7U917a51ka0BFdoHrqfeeGbpa6gKU3Cc8smy/v3wRb7mmBu+z5qbSRN6TKwpk2TZFlo69p0WWnj2uQWS3LLjGCZDEDE6cCuHjVS50z64V3Vw4nhi+1xeOsnR+Tq9POE/MocLFjjs4km11UfjY5GO7Wi6AMax5fnJEQYsDfYD3q1SOydaoPwcxT7jq+FvDbCNZ9xWUhPBsyAGdeY/3tMdPa8drwPQjTqLs56pPz218QXG/eyq1U3+fSOlVVgYtf27kDmETjT3lKHj22fsYBgbAhyFL/axuLluadUrsuyVn5fVXOyEK4gbJCDXNbWYewRlSIHfNNfOdSLfQoz5M9gkbyKsX4BZP12OheuqLM412XStYDufzOps6RkQiWdCZscj3+/vjgZH3w6Pz69+Hx68Coexe7O+TxV2rqSqYEfoRXRndc2Ix305J/42NDVzcGdSyrJhMJU+yiWHbduuhaLpRFNV92WadQR5IYulxmzcG1k2+LwtxpMQ9Ob6YpPoYMlLF5zms6YtJufKoYuv7jq+vEvyTM/YOwMoxtkqvHUljXe0Yh+xWbRoHHUTtuIFsA4GO9omD8O7hxMUMtq/VYXv436FeM8h8o9KjsdbGGX48nxB6RG9xml1BwXGbbAzzpsEZzVPj+ecX5sSSVT85rNUTYoxb9/ALmeNpk= sidebar_class_name: "patch api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Update tenant

+ - + Updates an existing tenant. -## Request + -

Path Parameters

Body

required
+ -The tenant was updated successfully. + -
Schema
Schema
Schema
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden. The request is not allowed. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found. The tenant was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx index f8240c2d514..1396027bb7e 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx @@ -5,74 +5,294 @@ description: "Update a user task with the given key." sidebar_label: "Update user task" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Update user task

+ Update a user task with the given key. -## Request + -

Path Parameters

Body

    changeset objectnullable
    + -JSON object with changed task attribute values. + -The following attributes can be adjusted with this endpoint, additional attributes -will be ignored: - -- `candidateGroups` - reset by providing an empty list -- `candidateUsers` - reset by providing an empty list -- `dueDate` - reset by providing an empty String -- `followUpDate` - reset by providing an empty String -- `priority` - minimum 0, maximum 100, default 50 - -Providing any of those attributes with a `null` value or omitting it preserves -the persisted attribute's value. - -The assignee cannot be adjusted with this endpoint, use the Assign task endpoint. -This ensures correct event emission for assignee changes. - -
- -The user task was updated successfully. - -
- -The user task with the given key cannot be updated. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/docs/apis-tools/camunda-api-rest/specifications/versions.json b/docs/apis-tools/camunda-api-rest/specifications/versions.json new file mode 100644 index 00000000000..71ac271e29b --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/versions.json @@ -0,0 +1,12 @@ +[ + { + "version": "1", + "label": "Unused but required field", + "baseUrl": "Unused but required field" + }, + { + "version": "8.6", + "label": "Unused but required field", + "baseUrl": "Unused but required field" + } +] diff --git a/docs/apis-tools/operate-api/sidebar-schema.js b/docs/apis-tools/operate-api/sidebar-schema.js index 747e15b625b..c680d76315f 100644 --- a/docs/apis-tools/operate-api/sidebar-schema.js +++ b/docs/apis-tools/operate-api/sidebar-schema.js @@ -6,7 +6,7 @@ module.exports = { "apis-tools/operate-api/operate-api-authentication", "apis-tools/operate-api/operate-api-tutorial", { - Specifications: require("./specifications/sidebar.js"), + Specifications: require("./specifications/sidebar"), }, ], }; diff --git a/docs/apis-tools/operate-api/specifications/by-id.api.mdx b/docs/apis-tools/operate-api/specifications/by-id.api.mdx index 5bd23389b1c..2e8f502d730 100644 --- a/docs/apis-tools/operate-api/specifications/by-id.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-id.api.mdx @@ -5,55 +5,191 @@ description: "Get decision instance by id" sidebar_label: "Get decision instance by id" hide_title: true hide_table_of_contents: true -api: eJzlV21v2zYQ/ivCfVo7JXLadCiEYoBbK4VWwwlipx0QBAVNnWM2EqmSlFND0H8fjnqxY8tetk8b+skS74V3z734UQmW3RsIb2GEXBihZCyNZZIj3PmgctTM0mECIczXcQI+5EyzDC1qMitBsgwhBEEiISGEnNkl+JCg4VrkZA0hxImnFl7S3OGJ9hIfNH4vhMYEQqsL9MHwJWYMwhLsOifPxmoh76Gq7kjZ5EoaNCR/NRjQz9OLpgXnaAz4wJW0KC2psDxPBXeZBN8M6ZX796j5N+SWEtSUtxX1LSLpicWHB1xvnQtp8R41+LBQOmO2PvrtnDSNZRb3ffiAssgI+YthPI5G4EP0eTi+Gc7c883k0+Tyy8Q9Ta+iD/FFHI3grvIBVywtXC6jXsdPVC6YSAvdr5VrRVCNcCGkIOVPz86pMW175fmGbQfE/ai24k1Mf6M4cd13ROEzaiPqih8N7/WrbauZUz1cslH0IZ7Gl5Ovs+H7cQQ+jONZdD0cf43+vLqOpiTaqdymolRDjaZI7bHaYRLLvLBmS4dpzdY0ZRYz868bVx5CjO7tk1Q+WGFTOtrdES5Ep9FFfVnY/0bYPugixQPt40QywR/P6osjCNTp1ioombS9Fx5xAFVF4vO+XRbLFUtF4tGKRGMP77Rcq3mK2a//dLfRairMM2cjQ2PYfT/U3T7vE9reYdoGJdJa6Q6J1/tIXCg9F0mC8ikGL4OX//90z/fTva4LjlR6owrN0ZPKegtVyOTn6II3ffMwvIq9rYQ9dAY/AR7EIpAXWti141xzZBr1ieMgt3eVXwJX6kGge7vb5V4f0e4zL2++9hxny9AuFdG7e3RQEHsLIVidBa3NSWtjglIkFVAwetXyv0KnEEJZg1uFQVAulbFVWOZKW1JeMS3YPK2xJVld2AVz/4CQKs5Sd7wb92yJHglo9RN7tEv0qAXq208dD1F6x93bwdtBrydSPeBl0xgbP0tr814/tXKvJ0dR20JNSa9Oui3O5i8xF0SZ2n81uLyKroez6GTaUQfHpBu7yn9S8M5LE6ILiN5rJWi1L9pe/ePLzPWVkAvlzJv+unTsHr2rYp4KTqnsJ6w85vi0x7gVK/SYTDyusjxF2k4NDeyaip681u1CaS9TUlhFne0srVYFdcJSKVsTKhpdxl0N60aipEwYBI+Pj6ecZYVM2ClXGYGQCo7SOBwb3MbNib9jnChuOmuh3HugcYEaJcegcWQCxx9agghnp4PTQd1VxmZMbl10fISeYNaVx+IPG+QpE5J8ugDLZrxuYXUGG7a5GTDwIRQJfXrVg3ILZTlnBm90WlV0/L1A7YZ+M1duChNh6DmBcMFSg3sxdSsSfrluPrheeIc/ynpTaJtXrqGjXQDNpxDxtoqo7RJZgtoFVQuGnGNut0z2vsZobLo19DGagQ+sIJw6LHda23nvDefde6fgzdQDyt+74Cy9UnxV9RfHqxkU +api: eJzlV9tu20YQ/RVintqUNuXELQK+qREdsBFsw5KTAIYQrJYja2Nyl9ldyhEI/nsxy4tulOL2qUWeRO5cdubMRYclWPZoIHyAEXJhhJKxNJZJjjDzQeWomaXDBEKYr+MEfMiZZhla1GRWgmQZQgiCREJCCDmzS/AhQcO1yMkaQogTTy28pLnDE+0lPmj8VgiNCYRWF+iD4UvMGIQl2HVOno3VQj5CVc1I2eRKGjQkfz0Y0M/uRZOCczQGfOBKWpSWVFiep4K7TIKvhvTKw3vU/CtySwlqytuK+haR9MTiwxOut86FtPiIGnxYKJ0xWx/9cUmaxjKLhz58QFlkhPzVMB5HI/Ah+jgc3w+n7vn++sP1zadr9zS5jd7FV3E0glnlA65YWrhcRr2Od1SumEgL3a+Va0VQjXAhpCDlDy/OqTFte+Xlhm0HxP2otuJNTD9QvHbdd0LhI2oj6oqfDO/N622rqVM9XrJR9C6exDfXX6bDP8cR+DCOp9HdcPwl+nx7F01ItFe5TUWphhpNkdpTtcMklnlhzZYO05qtacosZuZfN648hhjd2yepfLDCpnS0vyNciE6ji/qmsP+NsH3QRYpH2seJZILfX9QXJxCo061VUDJpey884QCqisSXfbssliuWisSjFYnGHt9puVbzFLPf/uluo9VUmBfORobGsMd+qLt93ie0vcO0DUqktdIdEm8OkbhSei6SBOUuBq+CV///dC8P072rC45UeqMKzdGTynoLVcjk5+iC3/vmYXgbe1sJe+gMfgI8iEUgL7Swa8e55sg06jPHQR5mlV8CV+pJoHub7XOv92gPmZc3X3uOs2Vol4ro3SM6KIi9hRCsLoLW5qy1MUEpkgooGL1q+V+hUwihrMGtwiAol8rYKixzpS0pr5gWbJ7W2JKsLuyCuX9ASBVnqTvej3u6RI8EtPqJPdoletQC9e3njocovefu7eDtoNcTqR7xsmmMjZ+ltXmvn1q515OjqG2hJqRXJ90WZ/OXmAuiTO2/GtzcRnfDaXQ26aiDY9KNXeXvFLzz0oToAqL3Wgla7au2V//6NHV9JeRCOfOmv24cu0fvtpinglMqhwkrjzk+7TFuxQo9JhOPqyxPkbZTQwO7pqInr3W7UNrLlBRWUWc7S6tVQZ2wVMrWhIpGl3FXw7qRKCkTBsHz8/M5Z1khE3bOVUYgpIKjNA7HBrdxc+LvGSeKm85aKPceaFygRskxaByZwPGHliDCxfngfFB3lbEZk1sXnR6hHcy68lj8boM8ZUKSTxdg2YzXA6wuYMM2NwMGPoQioU+velAeoCznzOC9TquKjr8VqN3Qb+bKTWEiDD0nEC5YavAgpm5Fwi93zQfXr97xj7LeFNrmlWvoaBdA8ylEvK0iartElqB2QdWCIeeY2y2Tg68xGptuDb2PpuADKwinDsu91nbee8Mpy1pjqp5QVlUXnaV3CrCq/gYA8BqK sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get decision instance by id

+ Get decision instance by id -## Request - -

Path Parameters

- -Success - -
Schema
    evaluatedInputs object[]
  • Array [
  • ]
  • evaluatedOutputs object[]
  • Array [
  • ]
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx index 3975e1c8537..3065bae87d2 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx @@ -5,55 +5,156 @@ description: "Get process instance by key" sidebar_label: "Get process instance by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v2zYQ/leIe2o7JXLabiiEYUCWOIWXNAkSr3sIjIGizjYbiVTJkzND0P8+HCU5jq0E2ePQF1sS77uf3/GuBpILD8kdXDur0PuJ8SSNQphFYEt0krQ1kwwSSNfnuP77CCIopZMFEjoG1mBkgZDAPa4hAm0ggVLSEiLI0CunS9YACZzjWti5KFs7QveGInD4vdIOM0jIVRiBV0ssJCQ10Lpk1doQLtBBBHPrCkntp18+QtPMGO5Lazx6RrwfjfjvqenbSrFNiEBZQ2iIRWRZ5lqF+OJvnuXqfcs2/YaKOGbH2SDdWuFYX+NewLHpr+i8bm28CPrwfh80lYstnCenzYKl0rIwfdWyQYlSOjR0/npng/xZbh8ubYY9FV6P9yQdnUrCQW/QZM+eeRo8YVBVMD2PT6aTr2OI4OTqy/XFeDo+5efjy5PxxfgUZg0zT+msq22nJbU2R2m2UnqKc2001/z1UREaaejFFO80T9ANSjtV5dK92Tl9G5RqylnTbts1TdNE8HGIxROzkrnOBLcLenqezaWzaY7FT/+V1VyEyr+SowV6LxfD1dz09tBh+2HvYCsnY+es22Tiw34mzqxLdZaheZqDd/G7/3+4H/fDvWkLjlx6byunUBhLYm4rk/0YLPh5qB+OrydiK2CBAfAD5IPvS1SV07QOAzhF6dAdhKF0N2uiGpS19xrD22x3Dn9G2hvCIl2Ldn4XSEvL436BIRU8yROIV0dxhznoMT6u73HdADvjVv0yULkcEqjb5DZJHNdL66lJ6tI6YuGVdFqmeZtbPmsLO5dVzpnMrZJ5+Lzr93SJgg943eBFgpYomAKt9cNwGVu3o+7T6NNoUBOLPqPlkRiPepZE5aCeVnhQU1hO+kLdslwbdF+cTbFlqc9D8rtN6up6fHM8HR/cjm9vJ1eX/VbV4XjybxV8o6VzMTgUhl8Qgl76rOfqH39NA6+0mdsA7/h1FbY9FNdVmmvFoewHbIUMm5SQivQKhTSZULYoc+TbaZdV/CR6tXPrRGGNJsvMDkhytmImLK2ldtpz60oVatgSiYPySRw/PDwcKllUJpOHyhachFwrND7kscvbRfcl2gFnVvkNWtvwHjuco0OjMO4U+Zi1rvpFDY4OR4ejllWeCmm2DL3cQk9ytikP4T8Ul7nUYR0JDtZde93B6gg2K8pjg0EECaucRV2j3EFdp9Ljny5vGv78vUIXmv6xr0IXZtrzcwbJXOYe93zaXJHw5qZbvt+K5xf0wRB68pp16Oq84jeI2t04/Da8li1RZuiCV+3JsVJY0hZmbxHnvtncQ5/HU4hAVpyox8XuKbeD9kF/fv09CIipvUfz28Y74lf2r2n+BXkpdA4= +api: eJzlVt9P20gQ/leseWp7BoeWO1V+Q2CqHBxEkLYPKDqt15Nki73r7o7DRZb/99Os7RASg3KPp74ktne++fnNztRAYuEgfoCJNRKdG2tHQkuEWQimRCtIGT3OIIZ0fYXrv08ghFJYUSChZWANWhQIMTziGkJQGmIoBS0hhAydtKpkDRDDFa4DMw/K1k6gekMhWPxZKYsZxGQrDMHJJRYC4hpoXbJqpQkXaCGEubGFoPbTH6fQNDOGu9Joh44RH0cj/ntp+r6SbBNCkEYTamIRUZa5kj6+6IdjuXrfskl/oCSO2XI2SLVWONZD3PM4Nv0NrVOtjTdBnz7ug6ZisYVzZJVesFRaFrqvWjYoUQqLmq4Od9bLX+bm6cZk2FPhcLwjYelCEA56gzp79czR4AmDqoLpeXY+HX9LIITz278m18k0ueDns5vz5Dq5gFnDzJMq62rbaUmNyVHorZRe4FxpxTU/PCpCLTS9meKd5vG6QSorq1zYdzun771SRTlr2m27pmmaEE6HWDzWK5GrLOB2QUevs7m0Js2x+O2/spqLULkDOVqgc2IxXM1Nbw8dth/2DrZyklhr7CYTn/YzcWlsqrIM9cscfIg+/P/DPd0P964tOHLpnamsxEAbCuam0tmvwYLfh/rhbDIOtgIO0AN+gXzwfYmysorWfgCnKCzaIz+UHmZNWIM05lGhf5vtzuEvSHtDOEjXQTu/C6Sl4XG/QJ8KnuQxRKuTqMMc9RgX1Y+4boCdsat+GahsDjHUbXKbOIrqpXHUxHVpLLHwSlgl0rzNLZ+1hZ2LKudM5kaK3H/e9Xu6xIAPeN3gRYKWGDAFWuvH/jI2dkfd59Hn0aAmFn1FyzMxnvUsicpBPa3woCa/nPSFume5Nui+OJtii1Jd+eR3m9TtJLk7myZH98n9/fj2pt+qOhxP/q2Cb7R0LnqH/PDzQtBLX/Zc/fP71PNK6bnx8I5ft37bw2BSpbmSHMp+wCYQfpMKhCS1wkDoLJCmKHPk22mXVfwU9GrnxgaF0YoMM9sjyZqKmbA0htppz60rpK9hSyQOysVR9PT0dCxFUelMHEtTcBJyJVE7n8cub9fdl3AHnBnpNmhl/HtkcY4WtcSoU+Qi1rrqFzU4OR4dj1pWOSqE3jL0dgu9yNmmPIT/UFTmQvl1xDtYd+31AKsT2Kwozw0GIcSschZ2jfIAdZ0Kh19t3jT8+WeF1jf9c1/5LsyU4+cM4rnIHe75tLki4d1dt3y/D15f0AdD6Mmr176r84rfIGx3Y//b8Fq2RJGh9V61J2dSYklbmL1FnPtmcw99SaYQgqg4Uc+L3Utue+2D/tR1KzE1j6ibZuMe8Ts72DT/Ag1odYQ= sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get process instance by key

+ Get process instance by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx index 39f7967ede2..605f0a1a229 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx @@ -5,55 +5,146 @@ description: "Get process definition by key" sidebar_label: "Get process definition by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v4zYM/lcEPm03N0573XAwhgEdljt0HdaiybCHIhhkmY51tSWfJKcLDP/vAyXb+eXrbo/DvSSWRH4kP5KiWnB8YyF5ggejBVr7C+ZSSSe1gnUEukbDaXGbQQLp7g53f11BBDU3vEKHhlRbULxCSOAZdxCBVJBAzV0BEWRohZG1h0vgDndM56wOlli2NxWBwU+NNJhB4kyDEVhRYMUhacHtagKXyuEGDUSQa1NxF7Z+uIauW5O6rbWyaEnjaj6nv2Pjy0aQVYhAaOVQORLhdV1K4SOMP1qSa88t6/QjCkdRG+LDyWCFov0S96KenlHUOiPVhg62aKwMVl+FeXt1IL3im0mwtK5Un0TK1oSEQ8WVmzykU+lK2jovhK6j8+spVm/VlpcyY5Q+tO7z7NZGpyVW3/1Xlq3jrrFfyFCF1vLNNNdSWceVmD4MG6+xsjBGm5GJt+dMvNcmlVmG6piDN/Gb/3+41+fhPoaEI6Xe6sYIZEo7lutGZV9HFXw/1Q83D7fsIGCGXuEr4KOLwKJojHQ7PxJS5AbNhb8kn9Zd1ILQ+lmiX61PJ8MHdBNjgaU7FmZKha7QNII26Mmg6ZJAvL2Me62LvZaN22fcdUAOme0wohpTQgJtILhL4rgttHVd0tbaOBLeciN5WgZ+6SwkN+dNSWyWWvDSb5/6viqQ0QHd8jTeXIGMyiBYnxGRZOMY7t383XwSiUQ/g7Ivjj1O4Vw9iROEJ5H8wByStSS5EPSQoDHhvJZ3nv5+vt8/LB5vVouL5WK5vL3/fZj1vR6NoIOkjyi9i94hWgchGKTfD/X6658rX1tS5dqr9zV2798gyB6atJSCQjkPWDPupzvjwsktMq4yJnRVl0g31FBZQ7HTFxtgc21YpZV0mqrbazqjG6qEQmtHFR/alwufw1BIFJRN4vjl5WUmeNWojM+EroiEUgpU1vPY8/ZbvxOdKGda2FFbar+ODeZoUAmMeyAbHz0V4HI2n81DVVlXcXVg6N/a6Ii1MUEO/3ZxXXKpCNW72PYt9gTby3D5nDYZRJAQ6Drqm+UJ2jblFv8wZdfR9qcGjW/+fW/5Tsykpe8MkpyXFs+8Gq9K+OaxfxR+y157Ok6GMZSw2vneLhtaQRRebf63W3cRFMgzNN6vcHIjBNbuQOfsiUjdM95HHxYriIA3RNZI6EmFe/RJf3782QuwlX5G9dPonaMl+dd1/wB6G/xX +api: eJzlVt9v3DYM/lcEPq2dc76k2VD4LcCuRZZhCXI37CE4FLJM36mxJVeSLzMM/+8FJdv3y826x6Evd5ZEfiQ/kqJacHxjIXmCB6MFWvsb5lJJJ7WCdQS6QsNpcZtBAmlzh82nK4ig4oaX6NCQaguKlwgJPGMDEUgFCVTcbSGCDK0wsvJwCdxhw3TOqmCJZXtTERj8UkuDGSTO1BiBFVssOSQtuKYicKkcbtBABLk2JXdh69dr6Lo1qdtKK4uWNK7mc/o7Nr6sBVmFCIRWDpUjEV5VhRQ+wvizJbn23LJOP6NwFLUhPpwMVija73Ev6ukZRa0zUm3oYIfGymD1VZh3VwfSK76ZBEurUvVJpGxNSDhUXLnJQzqVrqCt80LoOjq/nmL1Vu14ITNG6UPrvs1uZXRaYPnzf2XZOu5q+50MlWgt30xzLZV1XInpw7DxGisLY7QZmXh3zsQHbVKZZaiOOXgbv/3/h3t9Hu5jSDhS6q2ujUCmtGO5rlX2Y1TBL1P9cPNwyw4CZugVfgA+uggsitpI1/iRkCI3aC78Jfm07qIWhNbPEv1qfToZPqKbGAssbViYKSW6raYRtEFPBk2XBOLdZdxrXey1bNw+Y9MBOWR2w4iqTQEJtIHgLonjdqut65K20saR8I4bydMi8EtnIbk5rwtis9CCF3771PfVFhkd0C1P481tkVEZBOszIpJsHMO9n7+fTyKR6DdQ9sWxx9k6V03iBOFJJD8wh2QtSS4EPSRoTDiv5J2nv5/v9w+Lx5vV4mK5WC5v7/8cZn2vRyPoIOkjSu+id4jWQQgG6Q9Dvf7+98rXllS59up9jd37NwiyhzotpKBQzgPWjPvpzrhwcoeMq4wJXVYF0g01VNZQ7PTFBthcG1ZqJZ2m6vaazuiaKmGrtaOKD+3Lhc9hKCQKyiZx/PLyMhO8rFXGZ0KXREIhBSrreex5+6PfiU6UMy3sqC21X8cGczSoBMY9kI2PngpwOZvP5qGqrCu5OjD0b210xNqYIIf/uLgquFSE6l1s+xZ7gt1luHxOmwwiSAh0HfXN8gRtm3KLf5mi62j7S43GN/++t3wnZtLSdwZJzguLZ16NVyX89Ng/Ct+w156Ok2EMJawa39tFTSuIwqvN/3brLoIt8gyN9yuc3AiBlTvQOXsiUveM99HHxQoi4DWRNRJ6UuEefdKftg0SK/2MqutG9xytycGu+wqWo/3N sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get process definition by key

+ Get process definition by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx index 8e4bbe0400e..68c8ba3c359 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx @@ -5,52 +5,169 @@ description: "Get incident by key" sidebar_label: "Get incident by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v2zYQ/ivCfdo6NUr6MhTCMMC1mUyNIxu2nAYLAoGWzjEbiVRJKp1h6L8PR8nKi921/Tj0iy0d7/W5O/HZguW3BsJriGQmcpQWbnxQFWpuhZJRDiEsN+e4SV+DDxXXvESLmiy2IHmJEMIdbsAHISGEits1+JCjybSoyAOEcI4bT608sQvgg8bPtdCYQ2h1jT6YbI0lh3ALdlORSyEt3qIGH1ZKl9y2ot/fQNPckLmplDRoyOLV8TH9PQ05r7MMjQEfMiUtBQ23wKuqEJmrK/hkSG+7H1ktP2FGOVaaULCijUI1fk96zo5Cj3AlpKBY5z9qGkljuczw+w1blV7VWC3kLfiAsi6pt4t4PmXD6DRiI/BhEZ/Hk48x+BBN0ovBdBrFZymbzSYz8OHD5H0aT9IZS2YRm4MP7IoNF0k0idNxNE9YzGZPz4eTeBS5850LdpXMBsMkvRyMF6yXDgfjMRulbMwuWJz04kX81yAeuROSpOySxQn4cMHm88EZS+fR3yxlV0PGRi75zs2IDaP546APAgo7eJLQ6WR2kcaTJD2dLOIR3DQ+lGgMvz0AWuNDptENSSLKwwrGcvufeA+GSXTJqIrobDZIXOIzNp+ML93jlMWjKD5ziXxSyx/oM0ouLS3lXlZ0KmxBon6Tm4bEbw4tSCTveSFyjzYRjf36olRaLQssf/vRhSGMavPNul6/gm90Q3TbcPDw8OA/BoNprXSPxOt9JE6VXoo8R/kUgxfBi/9/uW/2y521DUdqvVG1ztCTynorVcv855iCt4f2YTCNvEcFe+gMfgI86HOGWa2F3bg7fYlco37p7rvrm8bfQqbUnUD3dvP8aj9D29/r3nLjtVSgRLtWxBxu0UFApCCE4P4k2OmaYHuHmwYouL7f8YlaFxDCtgWzCYNgu1bGNuG2UtqS8j3Xgi+LFks6axu54nVByBUq44UTP88zWaNHB8RYiIvYNXrU8jb6kbt8lX7m7t3xu+ODnkj1K14eBuHBz9ra6qCfVvmgJ8dzdo2Zk15b9K4ZfXN5Jc4d6B0Zm0wZ3Tgv52xO1+GOmHV2jf+kwb2XLkWXEL23SrDTPt3N5oePiZsjIVfKmXfzNHGEEb1pvSxERqXsF6w87kiZxzMr7tHjMvcyVVYF0teo4z7ebrDpydu5XSntlUoKq2iSnaXVqqZJWCtl28uXVpVnroftIFFRJgyCL1++HGW8rGXOjzJVEgiFyFAah2OH27iT+M+Mc5WZ3loo9x5oXKFGmWHQOTIBeaVBbos9OTo+Om6nytiSy0eBDq/ME6z6tlj8xwZVwYUkXy6xbbdO13B/4prbLRT4EJKrG79bjGvYbpfc4EIXTUPizzVqt9QPe+S2LheGnnMIV7wwuJdL/wmEX2Ydb//V2+f0B1PeDancuO0tanoDv6XT7rchErRGnqN22bQngyzDyj6y2ePutB/9d+aMEWXkNQHTg/dshp33g/n88d4peIm6Q/lnn52lV8qvaf4FfTtoRQ== +api: eJzlVttu20YQ/RVintqUsZxLi4BvqrR2GcukIFFOUMMgVuTI2pjcZXaXTgWC/17MkqIvUprksciLRM7O9cwM9zRg+a2B4BpCmYkcpYUbH1SFmluhZJhDAOvdBe7SN+BDxTUv0aImiwYkLxECuMMd+CAkBFBxuwUfcjSZFhV5gAAucOepjSf2AXzQ+LkWGnMIrK7RB5NtseQQNGB3FbkU0uItavBho3TJbSf64y207Q2Zm0pJg4YsXp+e0t/TkMs6y9AY8CFT0lLQoAFeVYXIXF2jT4b0msPIav0JM8qx0oSCFV0UqvF70nN2FHqKGyEFxbr4UdNQGstlht9v2KkMqsZqIW/BB5R1Sb1dRcs5m4RnIZuCD6voIoo/ROBDGKeX4/k8jM5TtljEC/DhffxnGsXpgiWLkC3BB/aRTVZJGEfpLFwmLGKLp+eTOJqG7nzvgn1MFuNJkl6NZys2SCfj2YxNUzZjlyxKBvEq+mscTd0JSVJ2xaIEfLhky+X4nKXL8G+Wso8TxqYu+d7NlE3C5eOgDwIKO36S0Fm8uEyjOEnP4lU0hZvWhxKN4bdHQGt9yDS6IUlEeVzBWG7/E+/xJAmvGFURni/GiUt8wZbx7Mo9zlk0DaNzl8gntf6BPqPk0tJSHmRFp8IWJBo2uW1J/PbYgoTynhci92gT0divL0ql1brA8rcfXRjCqDbfrOvNa/hGN0S/DUcPjw/+YzCY1koPSLw5ROJM6bXIc5RPMXgxevH/L/ftYbmLruFIrTeq1hl6Ullvo2qZ/xxT8PuxfRjPQ+9RwR46g58AD/qcYVZrYXfuTl8j16hfuvvu+qb1G8iUuhPo3m6eX+3naId73VvvvI4KlGi3ipjDLToIiBQEMLp/NdrrmlFzh7sWKLi+3/OJWhcQQNOB2QajUbNVxrZBUyltSfmea8HXRYclnXWN3PC6IOQKlfHCiZ/nmWzRowNiLMRF7BY9ankX/cRdvko/c/fu9N3pUU+k+hUvD4Pw4GdrbXXUT6d81JPjOfvGLEmvK3rfjKG5vBIXDvSejMVzRjfOyyVb0nW4J2a9Xes/afDgpU/RJUTvnRLstc/2s/n+Q+LmSMiNcub9PMWOMKI3r9eFyKiUw4KVxx0p83hmxT16XOZepsqqQPoa9dzH2w82PXl7txulvVJJYRVNsrO0WtU0CVulbHf50qryzPWwGyQqygSj0ZcvX04yXtYy5yeZKgmEQmQojcOxx23WS/xnxrnKzGAtlHsfadygRpnhqHdkRuSVBrkr9tXJ6clpN1XGllw+CnR8ZZ5gNbTF4j92VBVcSPLlEmv6dbqG+1euuf1CgQ8Bubrx+8W4hqZZc4MrXbQtiT/XqN1SP+yR27pcGHrOIdjwwuBBLsMnEH5Z9Lz9V++Q0x9NeT+kcue2t6jpDfyOTrvflkjQFnmO2mXTnYyzDCv7yOaAu9N+DN+Zc0aUkdcEzADesxl23o/m0zSdRqLuULbtkJ6ld0qwbf8FBbFpuw== sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get incident by key

+ - + Get incident by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx index 43f441aff9b..ba88765b28f 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx @@ -5,55 +5,184 @@ description: "Get flow node instance by key" sidebar_label: "Get flow node instance by key" hide_title: true hide_table_of_contents: true -api: eJzlV1tv2zYU/isCn7ZOjdI2HQphGKDYTKvFlT1JTlYEhkFLxzEbmVRJKplh6L8Ph7rEjp1eHoe+2CLPhefyHerTlhh2q4l/Qy4K+SBkDqHQhokMyMwlsgTFDJcizIlPFptL2MzPiEtKptgaDCi03BLB1kB8cgcb4hIuiE9KZlbEJTnoTPESPRCfXMLGkUtn2R7k8O4klyj4UnEFOfGNqsAlOlvBmhF/S8ymRN9cGLgFRVyylGrNTLP1+xmp6xma61IKDRotXp+e4t/+2UmVZaA1cUkmhQFhUIWVZcEzm6D3WaPe9vBkufgMmcGkFZbD8OYUTPZ7wrN2eHRX18sfNRzCkguOQX6/qTZMmSEzsKOvjeLiFqUg8mdl2J0IYZB/VRzZlh9R4CLjOQjz/bE2Kk9dYZTVGoE5jZIJHYQXIR0Sl0zi8YAmCXFJMj2fP67oFY3S+f5ekgZxOrcS4pIwSmn8kQ7DIKXzQZAOPhwXpR/i8XUvOh9Po2EQf+o3aDTsnxMaX4UDOk+D5JK4JKYDGl71y2lC4+75YxBNg1G3av/oP4PRNEGL90FKr4NPNpTDvUkQB6MRHe1sNemeBwkd7uwm9O8pjQZ0fjEaX+Op01EazsMoSQPcPR8PUWsQjEbzYJCGV2GK6/NpEkY0SebxdNQHnwzicJL2K8y6Syu6jMbXEZk1ODuGo8fm2WMoHjr+OBnR1PYQix1GAS5mO5DZ8bOQsgAmLDxAMGGOwhGl3BS4ddHBtrtT6hrFZ8fuglDcs4LnDl46oM3zd0Kp5KKA9W8/ejdgVSr9Tfi/eY35rUFrdvvcMLXZHBMen5vdolClpOor8eawEhdSLXieg9ivwQvvxf8/3bPDdOOm4YCt17JSGThCGmcpK5H/HCh4e2wegkno7CTsgDX4CeqBFxhkleJmY3nMApgC9dK+2m9mtbslmZR3HOxq9pTOvAdjuYyzR2acxcZpiNAazEoib7oFWwykRD7x7l95HQN62Rlpb3sHm5pgPOq+o1WVKohPtk19a9/ztiupTe1vS6kMKt8zxdmiaMqLsqa3S1YVWMxCZqyw209DT1fgoACJG1IyswIHUdCcfmLJh1RP3L07fXd61BOqPuPlERuPflbGlEf9NMpHPVmW1/UqQb0m6a4/fb9ZyS9t9VtOOp7QOEjpy4QmSTiOOn7a2tXuXs97L22INiD7OrJKpNO+6OD613VqocXFUlrzFmJjy5vBmVSLgmeYymHC0mGWkjosM/weHCZyJ5PrsgC8oFru18MKn5zO7VIqZy0FNxLBbS2NkhUiYSWlad7AOL0ssz1sgIRJad/zHh4eTjK2rkTOTjK5xiIUPAOhbR3buo3aHfeJcS4z3VtzadeegiUoEBl4rSPtoVcEcpPsq5PTk9MGVdqsmdg56FtTtFe1vkEG/jVeWTBuKYINcdtO2A25f0Uaoro/Y8QlPvqcue2s3JDtdsE0TFVR17j9pQJlR/9xtOwg5lzjc078JSs0HATVX5Tkl7j9kPnV+crXztEkOgCLjZ3sosIVcZsPDftbI1laActB2bAaSZBlUJodm4OvGpyd/jJ6T5G4sgpL9Ui39vFtvR+N549zq+Ck8g7En310BpcYX13/B+pfx+g= +api: eJzlV1tv2zYU/isCn7ZOjdM2HQq9KTbTanFkT5KTFYFh0NJxzEYmVZJKZgj678OhLrFjp5fHoS+2yHPhuXyH+lQRw+408W7JRS4fhcwgENowkQKZu0QWoJjhUgQZ8chyewnbxRlxScEU24ABhZYVEWwDxCP3sCUu4YJ4pGBmTVySgU4VL9AD8cglbB25clbtQQ7vTnKJgq8lV5ARz6gSXKLTNWwY8SpitgX65sLAHSjikpVUG2aarT/PSF3P0VwXUmjQaPH29BT/9s+OyzQFrYlLUikMCIMqrChyntoEB1806lWHJ8vlF0gNJq2wHIY3p2CyPxKetcOju7pe/qzhCFZccAzyx021YcqMmIEdfW0UF3coBZG9KMPuhAiD7Jvi0Lb8iAIXKc9AmB+PtVF57gqjLDcIzFkYT+kwuAjoiLhkGk2GNI6JS+LZ+eJpRa9pmCz29+LEj5KFlRCXBGFCoys6CvyELoZ+Mvx0XJR8iiY3veh8MgtHfvS536DhqH+OaXQdDOki8eNL4pKIDmlw3S9nMY265ys/nPnjbtX+0X+G41mMFh/9hN74n20oh3tTP/LHYzre2WrSPfdjOtrZjenfMxoO6eJiPLnBU2fjJFgEYZz4uHs+GaHW0B+PF/4wCa6DBNfnszgIaRwvotm4Dz4eRsE06VeYdZdWeBlObkIyb3B2DEdPzbPHUDx0cjUd08T2EIsdhD4u5juQ2fGzlDIHJiw8QDBhjsIRpdzkuHXRwba7U+oaxWfH7oJAPLCcZw5eOqDNy3dCoeQyh80fP3s3YFVK/V34v3uL+W1Aa3b30jC12RwTHp+b3aJQpaTqK/HusBIXUi15loHYr8Grwav/f7pnh+lGTcMBW69lqVJwhDTOSpYi+zVQ8P7YPPjTwNlJ2AFr8AvUAy8wSEvFzdbymCUwBeq1fbXfzmu3IqmU9xzsav6cznwEY7mMs0dmnOXWaYjQBsxaIm+6A1sMpEQeGTy8GXQM6HVnpAfVPWxrgvGoh45WlSonHqma+tbeYFCtpTa1VxVSGVR+YIqzZd6UF2VNb1eszLGYuUxZbrefh56swUEBEjekZGYNDqKgOf3Ekg+pnrn7cPrh9KgnVH3ByxM2nvysjSmO+mmUj3qyLK/rVYx6TdJdf/p+s4Jf2uq3nHQypZGf0NcxjeNgEnb8tLWr3b2e917aEG1A9nVklUinfdHB9a+bxEKLi5W05i3EJpY3gzMtlzlPMZXDhKXDLCV1WGr4AzhMZE4qN0UOeEG13K+HFT45nduVVM5GCm4kgttaGiVLRMJaStO8gXF6WWp72AAJk9LeYPD4+HiSsk0pMnaSyg0WIecpCG3r2NZt3O64z4wzmeremku7HihYgQKRwqB1pAfoFYHcJPvm5PTktEGVNhsmdg763hTtVa1vkIF/zaDIGbcUwYZYtRN2Sx7ekIao7s8YcYmHPuduOyu3pKqWTMNM5XWN219LUHb0n0bLDmLGNT5nxFuxXMNBUP1FSX6L2g+Z351vfO0cTaIDsNjayc5LXBG3+dCwvzWSpTWwDJQNq5H4aQqF2bE5+KrB2ekvo48UiSsrsVRPdGsf39b70XiqqtFI5D2Iuu7DM7jGAOv6P9J4yV4= sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get flow node instance by key

+ Get flow node instance by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx index 1b457025295..c115fafa252 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx @@ -5,52 +5,147 @@ description: "Get decision requirements by key" sidebar_label: "Get decision requirements by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v2zYQ/leIe9o61XLadCiEYUCKuoWXoQliD3sIjIKmzjYbiVTJkzNB0P8+HPUjdqx06ePQF1sk7767++6OxxpIbj0kt/Aelfbamhv8WmqHORrysIrAFugkaWvmKSSwri6x+vwGIiikkzkSOtauwcgcIYE7rCACbSCBQtIOIkjRK6cLRoAELrESdiPSzphwh9Yi6JYpJORKjMCrHeYSkhqoKhhfG8ItOohgY10uqd369RyaZsXqvrDGo2eNV9Mp/x3bX5RKoWdTyhpCQywiiyLTKgQZf/EsV59atusvqIgDd0wJ6daKTg9kPDltttBEgYfneM38nPI+HwdtOR452KPzuvX7mxZfv2Jph96WTuGnp+AIjTQ06gSfasp4a7RgmoZFzseon5u9zHQaUo6enk5B4ew6w/yX702FJ0mlfyYJOXovt+Pxa+NJGvUEOWHjW8TMnLNuYOL1KRMfrFvrNEVzzMGL+MX/P9zz03Bv2oQjp76tPGEsiY0tTfpjVMGbsX64uJ6Lg4AFBoUfgI8mAo+qdJqqMDrWKB26l+HKvF01UQ3K2juNYbV6PEE+Io2PD7GuRDt+cqSd5Wm1xcAHD6IE4v1ZnLo0ru+waoB9cPt+epUugwTqltMmieN6Zz01SV1YRyy8l07LddZSymdtPjeyzJjAzCqZhe3H7i53KPiA726efLRDwZlvrU+YO7ZxDPd2+nY6isSiT6A81MMDzo6oGMVphUeRwiDt87NguTboPidDjmWhLwPd3ei/up7dXCxnLxezxWJ+9al/BnR6TXSU5wGlczE4xOtWCHrpD32J/vH3MpSTNhsb1LuyugrPExTX5TrTikM5DdgKGaa+kIr0HoU0qVA2LzLkS6lwNhz29c1foofdWCdyazRZLuigSc6WXAk7a4mLvO1YqUIO20LioHwSx/f39xMl89KkcqJsziRkWqHxgceOtz+7neiRcmqVH7S1DevY4QYdGoVxB+TjowcAnE2mk2lbVZ5yaQ4MPaNzjogbckT4D8VFJrVh4OBl3XXVLezPWM/xTZ4wyCrq+uMW6notPf7lsqbh7a8lutDiD+0Umi/Vnr9TSDYy83jixXAhwk/dWyP9WfzHQ3LU875wTRU6Oit5Bd1jLfw2qyaCHcoUXXCtPblQCgs60Dl5MHLPDLfOx9kSIpAl8zNw+KiuA/qoP7+9CwJiae/Q/D54R7xk/5rmX5p7AyA= +api: eJzlVlFvGzcM/isCn9bu6nPadCjuLcDcIsvQBLGHPQTGIOtoW82ddJV4zoyD/ntB6ezY8aXNHoe+2CeJ/Eh+JEV1QHLlobiD31Fpr625xa+tdlijIQ/zDGyDTpK25rKEAhbbK9z+8x4yaKSTNRI61u7AyBqhgHvcQgbaQAGNpDVkUKJXTjeMAAVc4VbYpSh7Y8IdWsugX5ZQkGsxA6/WWEsoOqBtw/jaEK7QQQZL62pJaeu3cwhhzuq+scajZ4234zH/HduftkqhZ1PKGkJDLCKbptIqBpl/8SzXnVq2iy+oiAN3TAnpZEWXBzKenDYrCFnk4SVeMz+nvF8OgyaOBw426LxOfn/X4ru3LO3Q29Yp/PwcHKGRhgad4FNNFW8NFkwILHI+RP2l2chKlzHl6On5FDTOLiqsf/2vqfAkqfUvJKFG7+VqOH5tPEmjniEnbnyPmIlz1u2ZeHfKxEfrFros0Rxz8Dp//f8P9/w03NuUcOTUp8oTxpJY2taUP0cVvB/qh4ubS3EQsMCo8BPwETLwqFqnaRtHxwKlQ/cmXpl385B1oKy91xhX86cT5BPS8PgQi61I46dGWlueViuMfPAgKiDfnOWlK/PuHrcB2Ae32U2v1lVQQJc4DUWed2vrKRRdYx2x8EY6LRdVopTPUj6Xsq2YwMoqWcXtp+7O1ij4gO9unny0RsGZT9ZHzB3bOIb7MP4wHkRi0WdQHuvhEWdN1AziJOFBpDhId/mZslwKepeTfY5lo68i3f3ov76Z3F7MJm+mk+n08vrz7hnQ64XsKM97lN7F6BCvkxDspD/uSvSPv2exnLRZ2qjel9V1fJ6guGkXlVYcymnAVsg49YVUpDcopCmFsnVTIV9KjbPxcFff/CV2sEvrRG2NJssFHTXJ2ZYrYW0tcZGnjpUq5jAVEgflizx/eHgYKVm3ppQjZWsmodIKjY889rz92e9kT5RLq/xeW9u4zh0u0aFRmPdAPj96AMDZaDwap6ryVEtzYOgFnXNE3D5HhP9S3lRSGwaOXnZ9V93B5oz1HN/kBYPMs74/7qDrFtLjX64Kgbe/tuhiiz+2U2y+Unv+LqFYysrjiRf7CxF+6d8a5Svxg4fkoOe7wjXb2NFVyyvoH2vxN8xDBmuUJbroWjq5UAobOtA5eTByz+xvnU+TGWQgW+Znz+GTuo7og/50XZKY2Xs0IezdI16zgyF8A729BJY= sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get decision requirements by key

+ - + Get decision requirements by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx index 57d1ad2a758..074e3af1866 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx @@ -5,55 +5,150 @@ description: "Get decision definition by key" sidebar_label: "Get decision definition by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v2zYQ/ivEfdo6xXLarCiEYUCGuoWXoQlib/sQGANNnW02EqmSJ6eGoP8+HCm/xUrWfBz6xRbJe334HO8aILn0kN3Be1Taa2ve40IbTdoamCVgK3SSF+McMphvrnDzz1tIoJJOlkjoWLcBI0uEDO5xAwloAxlUklaQQI5eOV0Fcxlc4UbYhcg7VyLf+0rA4ZdaO8whI1djAl6tsJSQNUCbiq1rQ7hEBwksrCslxa23F9C2M1b3lTUePWu8Hg7579j7pFYKvYcElDWEhlhEVlWhVUgx/exZrjn1bOefURGn7RgQ0tGLzg9kPDltltAmAYVviZrRiUCM+w1FVHsO1ui8jrE+6+XN60MvtxHgEg35Jzz2iV69OJ1D7U9P5dAn/NeL8iI00lBvJnyqqeCtHl63LQtc9HFkbNay0LlgMqKnp7lSOTsvsPzppZzxJKn235hhid7LZT9+2niSRvUfxo3nYBk5Z90OiTenSHywbq7zHM0xBq/SV///dC9O072NF4589d7WTqEwlsTC1ib/Pljwc189XN6MxUHCAoPCd4BHm4BHVTtNm9Dh5igdurPwtt/N2qQBZe29xrCaPW50H5H6upyYb0TskSXSynJLXWJAg7tlBun6PN2qne3VfNrc46YFDsmttz23dgVk0ESI2yxNm5X11GZNZR2x8Fo6LedFRJjP4vUuZF0wnoVVsgjbj6OfrlDwAfcf7te0QsFEiN4HDCX7ODb3bvhu2GuJRZ+wsqfH3s6KqOq1E4V7LYUBYHtdE5aLSW+vaHflstJXAf9uYLm+Gd1eTkdnk9FkMr7+tB1eOr02Obr2nZUuxBAQr6MQbKU/bBn7+9/TwC5tFjaodyy7DkMVipt6XmjFqZwmbIUM04qQivQahTS5ULasCuQ3qnI2HG7pzl9ia3ZhnSit0WSZ30GTnK2ZCStriTkfC1iqcIeRSJyUz9L04eFhoGRZm1wOlC0ZhEIrND7g2OH2R7eTPFLOrfI7bW3DOnW4QIdGYdoZ8unREAPng+FgGFnlqZTmwNF/FtIRbLsbIvxKaVVIbdhsiLHpiuwO1uewHz8OywwSyNjqLOnK5Q6aZi49/umKtuXtLzW68ADsqyvUYq49f+eQLWTh8SSs3XMJP3TzTv6jeHYa7k1ky2KzCeVd1LyCbuIMv+2sTWCFMkcXAosnl0phRQc6J1MvF9DuTfo4mkICsma4dpA+Inmw3hvPL78FATG192h+3UVHvOT42vZf5I9HyQ== +api: eJzlVt1v2zYQ/1eIe9o6xXLarCj0FqBukWVogtjbHgJjoKmzzUYiVfLkzBD0vw9HSv6Ilax5HPpii+R9/vg73jVAcuUhu4ePqLTX1nzEpTaatDUwT8BW6CQvrnLIYLG9xu3f7yGBSjpZIqFj3QaMLBEyeMAtJKANZFBJWkMCOXrldBXMZXCNW2GXIu9ciXzvKwGH32rtMIeMXI0JeLXGUkLWAG0rtq4N4QodJLC0rpQUt95fQNvOWd1X1nj0rPF2POa/Y+/TWin0HhJQ1hAaYhFZVYVWIcX0q2e55tSzXXxFRZy2Y0BIRy86P5Dx5LRZQZsEFL4nakYnAnE1bCiiOnCwQed1jPVFL+/eHnq5iwCXaMg/43FI9PrV6Rxqf3kuhyHhP1+VF6GRhgYz4VNNBW8N8LptWeBiiCNXZiMLnQsmI3p6niuVs4sCy19eyxlPkmr/nRmW6L1cDeOnjSdp1PBh3HgJlolz1u2QeHeKxCfrFjrP0Rxj8CZ98/9P9+I03bt44chX723tFApjSSxtbfIfgwW/DtXD5e2VOEhYYFD4AfBoE/CoaqdpGzrcAqVDdxbe9vt5mzSgrH3QGFbzp43uM9JQlxOLrYg9skRaW26pKwxocLfMIN2cp73a2V7Np80DblvgkNym77m1KyCDJkLcZmnarK2nNmsq64iFN9JpuSgiwnwWr3cp64LxLKySRdh+Gv1sjYIPuP9wv6Y1CiZC9D5iKNnHsbkP4w/jQUss+oyVPT32dtZE1aCdKDxoKQwA/XVNWS4m3V/R7splpa8D/t3AcnM7ubucTc6mk+n06uZLP7x0em1ydO07K12IISBeRyHopT/1jP3tr1lglzZLG9Q7lt2EoQrFbb0otOJUThO2QoZpRUhFeoNCmlwoW1YF8htVORsOe7rzl+jNLq0TpTWaLPM7aJKzNTNhbS0x52MBSxXuMBKJk/JZmj4+Po6ULGuTy5GyJYNQaIXGBxw73H7vdpInyrlVfqetbVinDpfo0ChMO0M+PRpi4Hw0Ho0jqzyV0hw4+s9COoJtd0OE/1BaFVIbNhtibLoiu4fNOezHj8MygwQytjpPunK5h6ZZSI9/uKJteftbjS48APvqCrWYa8/fOWRLWXg8CWv3XMJP3byT/yxenIYHE+lZbLahvIuaV9BNnOG3nbcJrFHm6EJg8eRSKazoQOdk6uUC2r1JnyczSEDWDNcO0ickD9YH42maKDGzD2jadhce8ZoDbNt/AUyJST8= sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get decision definition by key

+ Get decision definition by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/by-key.api.mdx b/docs/apis-tools/operate-api/specifications/by-key.api.mdx index 1e50a6414fb..8c834bc2962 100644 --- a/docs/apis-tools/operate-api/specifications/by-key.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key.api.mdx @@ -5,52 +5,147 @@ description: "Get variable by key" sidebar_label: "Get variable by key" hide_title: true hide_table_of_contents: true -api: eJzlVt1v2zYQ/1eIe9pa1XLabCiEYkAKuIWXYQlir30I/EBRZ4uNRKrkyakh6H8fjvpIHKtr+zj0xRZ5H7z73R1/bIDkzkNyCx+k0zItEDYR2AqdJG3NMoME0sMlHiCCSjpZIqFj/QaMLBESuAsybSCBSlIOEWToldMV20MCl3gQdiv2g/sIHH6utcMMEnI1RuBVjqWEpAE6VOxSG8IdOohga10pqdv6/RzadsPmvrLGo2eLl/M5/x0fuaqVQu8hAmUNoSFWkVVVaBWyij951mtOT7bpJ1TEuTrGgHR3Cuf4PeEFOz56aTxJo/Dyuw29stUPqHfgj6qenDY7FuxlUU9LyNVGSWLcR2lqbYHSBDEaaWiZTdiyVFPBW2OXtC1vn0/BvzR7WehMcJ3R09fLUDmbFlg+/9FyeJJU+28i9eol51Wi93I3DYnuyzSNV9j4LzAWzlk3IvHqFIl31qU6y9AcY/Asfvb/T/f8NN2bruDIpfe2dgqFsSS2tjbZz9EFv03Nw8X1UjxKWGAw+Anw4GsNVe00HQJjpCgduhfhNr3dtFEDyto7jWG1eUoc75FG1hDpQXREUyLllllphwECppwE4v1ZPOj6uLnDQwt8uNsPbFW7AhJoOjDbJI6b3Hpqk6ayjlh5NOfsWNYVcivrgpErrJJF2H4a5zpHwQK+kpnpKEfBJe9OnwVWsO6Ju9fz1/NJT6z6FS8PjfDgJyeqJv10ypOeAosOhVmxXpf0UIyxuLLSHfP3VH91vbi5WC9erBar1fLq74H2e7s2Oirw6KUPMQQUOCcowaD9bujNPz+uQx9ps7XBvO+nq/AYQXFdp4VWnMppwlbIQPlCKtJ7FNJkQtmyKpBvo56UxdDY/CUGt1vrRGmNJsudHCzJ2Zo7IbeWuLu7UZUq1LBrJE7KJ3F8f38/U7KsTSZnypYMQqEVGh9w7HH7q9+JnhhnVvnRWtuwjh1u0aFRGPeOfBx4HZ3vkj2bzWfzrqs8ldI8Omh6ZI6wGstC+IXiqpA6sH8IrOnH6Rb2Z0cTEUHCrjZRPxi30DSp9PiPK9qWtz/X6MJQP1iFqcu05+8Mkq0sPJ7EMl6B8MtN/yr8VZy+GCdDHprUHGB89gBE3WMt/LabNoIcZYYuRNNJLpTCih7ZnLwMeT7Ge+b9Yg0RyJqBeXg3Hfdw8D4Zz5u3QUGs7R2aP8boiJccX9v+C4wh7NA= +api: eJzlVk1z2zYQ/SuYPbUpI8qJm8nw5oOSUd2pPZbaHDw6gOBKQkwCDLCUq+Hwv3cWIGnLYtrk2MlFIrAf2H27i4cWSO48ZPfwl3Ra5iXCJgFbo5OkrVkWkEF+vMYjJFBLJyskdKzfgpEVQgYPQaYNZFBL2kMCBXrldM32kME1HoXdisPgPgGHXxrtsICMXIMJeLXHSkLWAh1rdqkN4Q4dJLC1rpIUt95dQtdt2NzX1nj0bPFmPue/0yNXjVLoPSSgrCE0xCqyrkutQlbpZ8967fnJNv+MijhXxxiQjqdwjt8SXrDjo5fGkzQKr7/Z0Ctbf4d6BH9U9eS02bHgIMtmWkKuMUoS4z5Kc2tLlCaI0UhDy2LClqWaSt4au6TrePtyCv6lOchSF4LrjJ6+Xoba2bzE6pfvLYcnSY3/T6TevuG8KvRe7qYh0X2ZpvEKG/8GxsI560Yk3p4j8cG6XBcFmlMMXqWv/v/pXp6nexcLjlx6bxunUBhLYmsbU/wYXfDr1Dxc3S7Fs4QFBoMfAA++1lA1TtMxMEaO0qF7HW7T+02XtKCsfdAYVpuXxPERaWQNkR9FJJoKaW+ZlXYYIGDKySA9XKSDrk/bBzx2wIe7w8BWjSshgzaC2WVp2u6tpy5ra+uIlUdzzo5lsZBb2ZSMXGmVLMP2yzjXexQs4CuZmY72KLjk8fRZYAXrXrh7P38/n/TEql/x8tQIT372RPWkn6g86Smw6FCYFevFpIdijMWVtY7M31P9ze3i7mq9eL1arFbLmz8G2u/tuuSkwKOXPsQQUOCcoASD9oehN3/7tA59pM3WBvO+n27CYwTFbZOXWnEq5wlbIQPlC6lIH1BIUwhlq7pEvo16UhZDY/OXGNxurROVNZosd3KwJGcb7oS9tcTdHUdVqlDD2EiclM/S9PHxcaZk1ZhCzpStGIRSKzQ+4Njj9nu/k7wwLqzyo7W2YZ063KJDozDtHfk08Do6H5O9mM1n89hVnippnh00PTInWI1lIfyb0rqUOrB/CKztx+keDhcnE5FAxq42ST8Y99C2ufT4pyu7jre/NOjCUD9ZhakrtOfvArKtLD2exTJegfDTXf8q/FmcvxgnQx6a1BxhfPYAJPGxFn67TZfAHmWBLkQTJVdKYU3PbM5ehjwf4z3zcbGGBGTDwDy9m057OHifjKdto8baPqDpujE84jUH2HX/AJki7kY= sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get variable by key

+ - + Get variable by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/delete.api.mdx b/docs/apis-tools/operate-api/specifications/delete.api.mdx index a187e6f28d3..cd579bacead 100644 --- a/docs/apis-tools/operate-api/specifications/delete.api.mdx +++ b/docs/apis-tools/operate-api/specifications/delete.api.mdx @@ -5,57 +5,142 @@ description: "Delete process instance and all dependant data by key" sidebar_label: "Delete process instance and all dependant data by key" hide_title: true hide_table_of_contents: true -api: eJzlVktv3DYQ/ivEnNpUXq0TtwiEooDbbAA3QW14t+jB2AOXml0xlkiFHK2zEPTfiyEleV/u61bkJJGc58dvZtgCyY2H7AHunFXo/Y3xJI1CWCZga3SStDU3OWSQY4mEkEAtnayQ0LFeC0ZWCBk84g4S0AYyqCUVkECOXjldswHI4APuhF2LOroRevCTgMPPjXaYQ0auwQS8KrCSkLVAu5pNa0O4QQcJrK2rJMWtH66g65as7mtrPHrWeD2d8ufQ9bxR7BMSUNYQGmIRWdelViG99JNnufbUs119QkWcs2MwSEcvFXovN7gn6Mlps4Eu6WHK/1n4CZCmkoV+KaTZ4JwkNR66jo+uzuVyY7ay1Llg0NDTyznVzq5KrL77t7n5GMLfhf/mNSf7V0CMN3zuMG6cHOwBMnPOuhGJN6dIvLdupfMczSEGr9JX//90r07TvY8Xjnz13jZOoTCWxNo2Jv86WPD9uXq4vrsRewkLDApfAR5dAh5V4zTtQhteoXToLrgNZw/LLmlBWfuoMayWx934XehSJ91YSJMLWZYixxpNLg2JXJIUq52I/b1CKuzRNKACMki3l2lv7WKw5tP2EXcdcKRuO8yLxpWQQRuR77I0bQvrqcva2jpi4a10Wq7KCDyfxVtfy6ZkmEurZBm2j5NaFCj4gCcSzxoqUDA/ovcJI8w+Ds29nb6dnrXEoi9YeWbNs52CqD5rJwqftRTm13CLc5aLSQ83NzJB1vpDwL8ftrd3s/vrxexiPpvPb25/GwZvr9clB2wYrfQhhoB4HYVgkH4/EPnXPxaBdNqsbVDvyXcb3gMo7ppVqRWncpqwFTIMWyEV6W0klLJVHYbiCd/4Twxm19aJyhpNlmkfNMnZhplQWEtcCrGupQp3GInESfksTZ+eniZKVo3J5UTZikEotULjA449bh/7neRIObfKj9rahnXqcI0OjcK0N+RTtspEjsleTqaTaWSVp0qaPUf/tb4O0BwvjvALpXUptWFvIfS2L7wH2F7GbnVYepBAxiaXSV9CD9C2K+nxd1d2HW9/btCFXvFccaE+c+35P4dsLUuPJzGNnRW+ue9fbt+Kl193Z1MYaG12od7LhleQhEdkfEp2yy6BAmWOLkQVT66Vwpr2dE5ecVxRY5N6N/s4W8wgAdkwViOeR8QPDs6G9OPPQUAs7COan8YAiZccYtf9CSey2/E= +api: eJzlVktv4zYQ/ivEnNqtYjm7abHQLeh6AXcXTRC76CHwgabGFjcSqSVHTg1B/70YUlL8Sl+3Yk8SyXl+/GaGLZDcesge4d5Zhd7PjSdpFMIqAVujk6StmeeQQY4lEkICtXSyQkLHei0YWSFk8IR7SEAbyKCWVEACOXrldM0GIINPuBd2I+roRujBTwIOvzbaYQ4ZuQYT8KrASkLWAu1rNq0N4RYdJLCxrpIUt366ga5bsbqvrfHoWePtdMqfY9eLRrFPSEBZQ2iIRWRdl1qF9NIvnuXac892/QUVcc6OwSAdvVTovdzigaAnp80WuqSHKf9n4SdAmkoW+rmQZosLktR46Do+urmUy9zsZKlzwaChp9dzqp1dl1j98G9z8zGEvwv/3VtO9q+AGG/40mHcODs4AGTmnHUjEu/Okfho3VrnOZpjDN6kb/7/6d6cp/sQLxz56r1tnEJhLImNbUz+bbDgx0v1cHs/FwcJCwwK3wAeXQIeVeM07UMbXqN06K64DWePqy5pQVn7pDGsVqfd+EPoUmfdWEiTC1mWIscaTS4NiVySFOu9iP29QirsyTSgAjJId9dpb+1qsObT9gn3HXCkbjfMi8aVkEEbke+yNG0L66nL2to6YuGddFquywg8n8Vb38imZJhLq2QZtk+TWhYo+IAnEs8aKlAwP6L3CSPMPo7NvZ++n160xKKvWHlhzYudgqi+aCcKX7QU5tdwiwuWi0kPNzcyQdb6U8C/H7Z397OH2+XsajFbLOZ3vw6Dt9frkiM2jFb6EENAvI5CMEh/HIj8y+/LQDptNjao9+S7C+8BFPfNutSKUzlP2AoZhq2QivQuEkrZqg5D8Yxv/CcGsxvrRGWNJsu0D5rkbMNMKKwlLoVY11KFO4xE4qR8lqbPz88TJavG5HKibMUglFqh8QHHHrfP/U5yopxb5UdtbcM6dbhBh0Zh2hvyKVtlIsdkryfTyTSyylMlzYGj/1pfR2iOF0f4B6V1KbVhbyH0ti+8R9hdx251XHqQQMYmV0lfQo/Qtmvp8TdXdh1vf23QhV7xUnGhPnPt+T+HbCNLj2cxjZ0VvnvoX27fi9dfdxdTGGht9qHey4ZXkIRHZHxKdqsugQJlji5EFU9ulcKaDnTOXnFcUWOT+jD7PFvOIAHZMFYjnifEDw4uhtS2UWJpn9B03Rgh8Zpj7Lo/ASPU3Wc= sidebar_class_name: "delete api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

- Delete process instance and all dependant data by key -

+ Delete process instance and all dependant data by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx b/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx index 51c027b1625..6900610f67b 100644 --- a/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx +++ b/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx @@ -5,57 +5,173 @@ description: "Get flow node statistic by process instance id" sidebar_label: "Get flow node statistic by process instance id" hide_title: true hide_table_of_contents: true -api: eJzlV0tv4zYQ/ivEnNqtYjm7abEQigIpkCzSLTZB7KKHwAeaGlvcSKSWHNk1BP33YqhH7EhBkdyKzSXmY17ffDMc1UBy6yF5gDtnFXp/YzxJoxBWEdgSnSRtzU0KCWyRFiRJe9LKQwSldLJAQsfiNRhZICTwiAeIQBtIoJSUQQQpeuV0yXoggc94EHYjytaa0L25CBx+q7TDFBJyFUbgVYaFhKQGOpSsWhvCLTqIYGNdIand+uUCmmbF4r60xqNniffzOf87Nb2oFNuciXukyhkv/BCO2FgnKEOx1Ts0I+8isXW2KjEV64PY5HYvjE2RQVDWEBpiY7Isc60CXvFXzxbrcQzSORkAIiz80b5df0VFjKpj1Em3cUhFeqfpwAkY7npy2mxHyC4zFDplcDmQwcsQ2j7TKgv7Dn2VkxfSoZDbrcOtJEyhiVpbOIn32BBZkrkwVbFGxyZb4QEwP3JjImsRKL6bY/pGo734a81qo3SKhvwb7Q7yA23+I0xblDnS2+Ps5V8XaBMBacrZ2nVu919sikcF3PBfBBdTlXJjdjLXqeCSRE8v87x0dp1j8dOLfH+B11x51TT8x1F8eM/wFei93OK4AkIqu/4xddhujA6OcLlyzjrokfgwRuLaurVOUzSnGLyL3/3/w70Yh3vfJhw59d5WTqEwlsTGVib9Pljw81Q9XN7diKOABQaB7wCPJgKPqnKaDuGRX6N06M74kU8eVk1Ug7L2UWNYrZ73sk9IR+/Q8NryI/r8hRWa+VUgZbabNcKEQRkkEO/O4+7+2dAA4/oRD03sjycSj27XjyOVyyGBuoW+SeK4zqynJqlL66iBCHbSabnOW+T5rE37RlY545xbJfOwPdWh+YAHnr4NM0Fa6zOGmG2cqvs4/zif1MRXX9DyRJsnPRlROamnvTypKYxHfRoXfK8Nuk/d03BS6s9hfOtmudu7q/vL5dXZ4mqxuLn90s91nVwTndBh0NK5GBzidXsJ+tvXPZP/+HsZWKfNxgbxjn23YepEcVetc604lHHAVsgwy/VzhzTp0Sv5nFz8S/Rq+ckurNFkmfdBkpytmAmZtdROVlzYUoUctkTioHwSx/v9fqZkUZlUzpQtGIRcKzQ+4Njh9me3Ez0TTq3yg7S2YR073KBDozDuFPmYtTKR22DPZ/PZvGWVp0KaI0OvLrATGIeMEf5DcZlLbdhM8Lnuiu8BdudtnzotP4ggaUf9owpcRV0hPUBdr6XHv1zeNLz9rUIXWsZT3YUqTbXn3ykkG5l7HDk4NFj44b77PPhRvPwJMRlPT25zCFWfV7yCKHyptN8rzaqJIEOZogtetSeXSmFJRzKjAZ/ramhZn66WEIGsGLUB2WfcD9on/fn193BBLO0jmt8G74iX7F/T/Au9Rrd6 +api: eJzlV0tv20YQ/iuLObUpLcpJWgS8+WAHborYsFz0YOiwWo7EjcldZncoVSD434NZPkyZNAr7VsQXax/z+uab2WENJHcekge4dVah99fGkzQKYR2BLdFJ0tZcp5DADmlFkrQnrTxEUEonCyR0LF6DkQVCAo94hAi0gQRKSRlEkKJXTpesBxL4gkdht6JsrQndm4vA4fdKO0whIVdhBF5lWEhIaqBjyaq1Idyhgwi21hWS2q0/PkLTrFncl9Z49Czxfrnkf6emV5Vimwtxh1Q544UfwhFb6wRlKHZ6j2biXSR2zlYlpmJzFNvcHoSxKTIIyhpCQ2xMlmWuVcAr/ubZYj2NQTonA0CEhR/t2803VMSoOkaddBuHVKT3mo6cgOGuJ6fNboLsfYZCpwwuBzJ4GUI7ZFplYd+hr3LyQjoUcrdzuJOEKTRRawtn8Z4aIksyF6YqNujYZCs8AOYnbsxkLQLFd3NM32i0F3+tWW2UTtGQf6PdQX6gzX+EaYsyR3p7nL386wJtIiBNOVu7yu3hq01xVMAN/0Xwca5Srs1e5joVXJLo6WWel85ucix+e5HvL/CaK6+ah38cxYf3DF+B3ssdTisgpLLrH3OH7cbkYITLpXPWQY/EhykSV9ZtdJqiOcXgXfzu/x/ux2m4d23CkVPvbeUUCmNJbG1l0p+DBb/P1cPF7bUYBSwwCPwEeDQReFSV03QMj/wGpUN3xo988rBuohqUtY8aw2r9vJd9Rhq9Q8Nry4/o8xdWaOZXgZTZbtYIEwZlkEC8P4+7+2dDA4zrRzw2sR9PJB7dvh9HKpdDAnULfZPEcZ1ZT01Sl9ZRAxHspdNyk7fI81mb9q2scsY5t0rmYXuuQ/MBDzx9G2aCtNYXDDHbOFX3aflpOauJr76g5Yk2T3oyonJWT3t5VlMYj/o0rvheG3SfuqfhpNRfwvjWzXI3t5d3F/eXZ6vL1er65ms/13VyTXRCh0FL52JwiNftJehvX/VM/vOf+8A6bbY2iHfsuwlTJ4rbapNrxaFMA7ZChlmunzukSUev5HNy8S/Rq+Unu7BGk2XeB0lytmImZNZSO1lxYUsVctgSiYPySRwfDoeFkkVlUrlQtmAQcq3Q+IBjh9tf3U70TDi1yg/S2oZ17HCLDo3CuFPkY9bKRG6DPV8sF8uWVZ4KaUaGXl1gJzAOGSP8l+Iyl9qwmeBz3RXfA+zP2z51Wn4QQdKO+qMKXEddIT1AXW+kx79d3jS8/b1CF1rGU92FKk21598pJFuZe5w4ODRY+OWu+zz4Vbz8CTEbT09ucwxVn1e8gih8qbTfK826iSBDmaILXrUnF0phSSOZyYDPdTW0rM+X9xCBrBi1Adln3A/aZ/2p6/bGvX1E0zSDe8RrdrBpfgCU8bjw sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

- Get flow node statistic by process instance id -

+ Get flow node statistic by process instance id -## Request - -

Path Parameters

- -Success. Returns statistics for the given process instance, grouped by flow nodes - -
Schema
  • Array [
  • ]
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/operate-public-api.info.mdx b/docs/apis-tools/operate-api/specifications/operate-public-api.info.mdx index 9ea6e3d454d..cabe55b339c 100644 --- a/docs/apis-tools/operate-api/specifications/operate-public-api.info.mdx +++ b/docs/apis-tools/operate-api/specifications/operate-public-api.info.mdx @@ -9,18 +9,26 @@ custom_edit_url: null --- import ApiLogo from "@theme/ApiLogo"; +import Heading from "@theme/Heading"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; import Export from "@theme/ApiExplorer/Export"; -

Operate Public API

+ To access active and completed process instances in Operate for monitoring and troubleshooting
-

- Authentication -

+
@@ -69,9 +77,7 @@ To access active and completed process instances in Operate for monitoring and t >

Contact

- - URL: https://www.camunda.com - + URL: [https://www.camunda.com](https://www.camunda.com)

License

diff --git a/docs/apis-tools/operate-api/specifications/search-1.api.mdx b/docs/apis-tools/operate-api/specifications/search-1.api.mdx index 57e0fc11820..ad8c58a2b39 100644 --- a/docs/apis-tools/operate-api/specifications/search-1.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-1.api.mdx @@ -5,59 +5,240 @@ description: "Search process instances" sidebar_label: "Search process instances" hide_title: true hide_table_of_contents: true -api: eJztWG1PIzcQ/ivWfOHuupDl7V6iqhIHQeJ6BUpS+gGiyvFOEh+79p7tBdIo/70ae5NssgsXpPZD2+MTsWfG42eeefFOwfGRhfYNXBot0NozZR1XAqEfgc7RcCe1OkugDRa5EeM/diECg18LtO6jTibQnkKCVhiZkyS0oevlWB7sMVkatBCB0MqhcqTD8zyVwltvfbGkOAUrxphx+s9NcoQ26MEXFA4iyA354iRa2h3K1KH5ttwdTipCUjkcoYEIhtpk3IWltwcw83rk7DUaK4Mvzyrt79WVenxU0bPOSDUiqUGeqTm2SaNEzg0q9/Pmznr501Q/nOsE5wHbXN86btwJd9joDarkyT3rGndIqciIREfHvbPrDkRwfPHL5edOr3NC/x+dH3c+d06gP4tAKiGTkgOllYHWKXJVgfQEh1JJ4sbmt3KouHLPQrxGcW8bhDSiSLl5tbb72huVLiVL68lBWMg/cUOihMw5Gq6SlhvDJxCBdJjZOplnpKiN21yjniaYNsOhTbLiSj2O3WOI4KTTPYb+rIJDlxyaVVd+LdBMGuDBR57laXDkKE3rZeIKXWGUZTxN67WCvUpwyIvUMePFWCqtYwQ5k5btxq8hgnueFhQB8ob8woQNJmxx6ebT6ifZoMqtQJVINSIjqzm7PKoMyM0CW1iXLJH1AM76Fde4SljOR5iwB+nGbM6eZi8z/sj2G3zlRCG2NZCja27KY7e86TucsLfvDg/3P3w4ONiNDw/fv4u/fTV2q3qajdAxN0am8NF5H5nQ+cQv+YszPWRbZOuaftktJpXTbKvC6q0guHOr6LbM5ijksKzuzI51kSYs406MvdGK4qroCtIeoP3opZCvZdsNrIAF0TpIPkanvqGUUQqoPR+cw7genYgN52YGE7baHAjCvZdRbdnk1pvT3qL6HMYvxmfm/6iF21wrGxJ0L44b+nghAmR/V9teL1svLGffu/n3bv4PdfOy1Yb69rIW7bTj6UaXqjhwhbZIna37QUIHTcl4wh1nUt3zVCZPZ2Ru9CDF7IeXZiYxobAbJkqG1vJRM6XmxbBxMyzUNiq4dIzRZgHDfh2GU20GMklQrWLwpvXm33/dg/p1z7Vjp7pQyX/uuodNJD+6PGMVOjP0Cv8Dtvs3giiMdBPfygfIDZpt3/Fu+rNoCkLrO4n+Vz/a/MGdoRtrGgpybT0Q3I2hDa373VYpvr0Qb4XBCcgXc4/GelcKk0IbpgHbWbvVmo61dbP2NNfGzfzAYiQflJM+7YW4+ukd2pBqwdNxOH3V7d4YGW0onvkRk0ZDYkA4fccX+vL9szT3Pn4fN1oi0SesLHmxtDN2Lm+0E4QbLc3CdBni1CW5cOl5bJZtI5fUjSKgq0EbLi47V0e9zna30+2eXZxTQ6HjSj2aKirxXlgpXfQO+cbqhWAufTqn6qffe55WlAZXyw8znfAAWx0l/QlxfUKqLfn5ZzkRrI09y43KtBM/O8vEK5NKddZI1pfKuWQ5fiynDGcKfGquiKtTQ3XM8aNyvP4wmPporg/PCyfWpmZyYqh9dMrsvfAfx5BdFoNUCmJKnU+acT9DMy6cvEf/vBCawkLvgPr7Tio2NzvUhmVaSafJIa/pjC4o0cZau+AkFUYufIqEPCXO2Har9fDwsCN4VqiE7widEQypFKis50NJy8/lSrSmnGhhF9pS+98tg0M0qAS2SkO2RVbv5wyC3Z14Jw5Ja13GVeWgZwrUCmAL6jt8dK085dKPkd67aVm7buB+FxYU2K7aKutXPyrL0A1MpwNu8TeTzma0/JW+VVANXVatUF9hjDwJrAgpAseh5Wz3yKHFq6z+/KHaHDSOhMDcPSvbrxTky4tujxKr/ISa6YR0DH+gz6v8AdpwC7dARPTg+ELj16eQcjUqfE+CYJeynxeEznIKXy0W/mbz6qQmFS9//OgFWE/fofoJovI2jn6G5+Jf7YeYrw== +api: eJztWEtz2zYQ/iuYvThJaYt+5aGba8szblPbtVT34Gg6ELiSkJAAA4C2VQ3/e2cBSqJE2pFn2kPb+GQBu4vFt98+wDk4PrHQvYNrowVae6Gs40ogDCPQORrupFYXCXTBIjdi+sc+RGDwa4HW/aiTGXTnkKAVRuYkCV3oezmWB3tMVgYtRCC0cqgc6fA8T6Xw1jufLSnOwYopZpz+c7McoQt69BmFgwhyQ744iZZ2xzJ1aL4t9wVnNSGpHE7QQARjbTLuwtLbIyi9Hjl7i8bK4MuzSocHTaUBn9T0rDNSTUhqlGdqgW3SKpFzg8r9vL2zXv481Q+XOsFFwLbXt44bd8YdtnqDKnlyz7rWHVIqMiLRyeng4rYHEZxe/XL9sTfondH/J5envY+9MxiWEUglZFJxoLIy0jpFrmqQnuFYKknc2P5WDhVX7lmINyjubYOQRhQpN682dl97o9KlZGkzOQgL+SduSZSQOSfjddJyY/gMIpAOM9skc0mK2rjtNZppgmk7HNoka64049g/hQjOev1TGJY1HPrkUFlf+bVAM2uBBx95lqfBkZM0bZaJG3SFUZbxNG3WCvYqwTEvUseMF2OptI4R5Exath+/hgjueVpQBMgb8gsTNpqx5aXbT2ueZIMqtwJVItWEjKzn7OqoKiB3S2xhU7JC1gNYDmuucZWwnE8wYQ/STdmCPe1eZvyRHbb4yolCbGckJ7fcVMfueNNfcMbevjs+Pvzw4ehoPz4+fv8u/vbV2Cc10GyCjrkpMoWPzvvIhM5nfslfnOkx2yFbt/TL7jCpnGY7NVbvBMG9T4puy2yOQo6r6s7sVBdpwjLuxNQbrSmui64h7QE6jF4K+Ua23cEaWBBtguRjdO4bShWlgNrzwTmOm9GJ2HhhZjRj682BIDx4GdVWTW6zOR0sq89x/GJ8Sv9HLdzmWtmQoAdx3NLHCxEg+7va9mbZemE5+97Nv3fzf6ibV6021LeXtWinHU+3ulTNgRu0Reps0w8SOmpLxjPuOJPqnqcyeTojc6NHKWY/vDQziQmF3TJRMrSWT9optSiGrZthobFRw6VnjDZLGA6bMJxrM5JJgmodgzedN//+6x41r3upHTvXhUr+c9c9biP5yfUFq9GZoVf4H7DdvxFEYaSb+VY+Qm7Q7PqOdzcsozkIrb9I9L+G0fYP7gzdVNNQkGvrgeBuCl3o3O93KvHdpXgnDE5Avph7NNa7UpgUujAP2JbdTmc+1daV3XmujSv9wGIkH1WTPu2FuPrpHbqQasHTaTh93e3BFBltKJ75EZNGQ2JAOH3PF/rq/bMy9z5+H7daItEnrKx4sbIzdS5vtROEWy2VYboMceqTXLj0IjartpFL6kYR0NWgC1fXvZuTQW+33+v3L64uqaHQcZUeTRW1eC+tVC56h3xj9UKwkD5fUPWn3weeVpQGN6sPM73wAFsfJf0JcXNCaiz5+Wc1EWyMPauN2rQTPzvLxGuTSn3WSDaXqrlkNX6spgxnCnxqrojrU0N9zPGjcrz5MJj7aG4Oz0snNqZmcmKsfXSq7L3yH8eQXRejVApiSpNPmnE/QzMunLxH/7wQmsJC74Dm+04qtjA71oZlWkmnySGv6YwuKNGmWrvgJBVGLnyKhDwlzthup/Pw8LAneFaohO8JnREMqRSorOdDRcuP1Uq0oZxoYZfaUvvfHYNjNKgEdipDtkNW7xcMgv29eC8OSWtdxlXtoGcK1BpgS+o7fHSdPOXSj5Heu3lVu+7gfh+WFNit26rq1zCqytAdzOcjbvE3k5YlLX+lbxVUQ1dVK9RXmCJPAitCisBpaDm7A3Jo+SprPn+oNgeNEyEwd8/KDmsF+fqqP6DEqj6hZjohHcMf6PMqf4AuEAk9ML7I+LU5pFxNCt+PINikzOcFIbOawNcLhb/VojKpWc3D+TxIDPQXVCUV83AVR7/DW/EvcbmZKQ== sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search process instances

+ Search process instances -## Request - -

Body

- -Search process instances - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/search-2.api.mdx b/docs/apis-tools/operate-api/specifications/search-2.api.mdx index 56feec86ac4..2f928d8f61c 100644 --- a/docs/apis-tools/operate-api/specifications/search-2.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-2.api.mdx @@ -5,59 +5,223 @@ description: "Search process definitions" sidebar_label: "Search process definitions" hide_title: true hide_table_of_contents: true -api: eJzlWN9v2zYQ/leIe8nWKf6RJm0qDAPcNAXaDU1We9tDEgy0dLbZUqRKUkk9wf/7cCQty7aaJsNetr5Z5N3x+N3dd0fX4PjcQnoFl0ZnaO0rnAklnNAKbhLQJRpOH29ySMEiN9nizyNIwOCnCq17qfMlpDXkaDMjSq+WwtjLMfzMi1KihQQyrRwqR6K8LKXIvNH+B0vyNdhsgQWnX25ZIqSgpx8wc5BAacgFJ9DS7kxIh+brch9x2RISyuEcDSQw06bgLiw9O4ZVAooX2BK1zgg1p41bNFYE7+418/SoJT3h805j07JQEV8CskPCoeLKdW7SrnCSlvZjtErAir/wgW6GAI5m2yByY/gSEhAOC7sPLjlgtXEP19gPG8rua2uTb7kSdxJAVRWUlaPxGSTw6nx8BjdtJMbk0Kq98muFZtkJUJOHaQ0jKffzdSQlK4MmE8o6rjK07LscZ7ySjhHATFg2HHwPCdxyWRHedPaYdvSMGXSVUZgzKaz7Yj3sH8FVHnW9Jpnyh520zonxPfHnxTA8wjxFjk2XzCd626o3ddUEB6JAjIgHfnWzPjSYion2sNOTcDQJo8qFmq+9CFe1EbquqyZf9c4nxI57JZ8/xr02MI0+M2gr6ewmEj12rdhEszk65hbIFH52QTTT5dIvefdJ44Bs/k5f9oAJ5TQ7aFXcQRDsXSvvsi0xE7PIhMwudCVzVnCXLbzRluK26D/CK0RzhwCu4IxLiTmLVQMJHB2dDJ+/eHE6fPrs9PnR6TAU3WtPu5t02kc5SkyXLDLhVu5t01/L/w2fN3Q7bBjtZNBxr11Tu+m68pxg0JZa2VDyR4NBR1pUWbzyv9SadqnwkRT5DXWs2E5CnTyuDTntuHwQTi0X3oeS7vKExI670uMVd5wJdculyL+cI6XRU4nFD4/NFeu4q+wDA1WgtZHZ9mKwZrPuAPmF+4Jzbow2DQxPO8pam6nIc1TbGDzpP/nvX/d4/7rvtGOvdaXy/911T7qSfHT5hrXSmaFX+Aay3U/CWWWEW/rmMkVu0Bx6Dr66WSU1ZFp/FOi/bpL7J4q8IRTqJgW6haZGVWrroeBuASn0b4f9qHDYUuiHfgzkjyFG9u5URkIKdcB3lfb79UJbt0rrUhu38v3TCD6NEy3thdj6aRVSkDrjchHO33Z9skBGG37m0TM/aFAWhNN7hGPZjJhrc6eD00GnJRL9gpVNbmzsLJwrO+0E4U5LqzC0hFiNSS5ceh2fTfMoxc9I3SO0R7i4PH8/mpwfjs/H4zcX76it0HFRjxpcK+aNleiid4i+gxCspV+v0/XtHxOfWlQK7zcv4fPw0NiebPwJg8ax5oXTtOvBdjPeSOz04M3GpvW2CiAMTYPdGa/2CO6OUY2pnfmJYJppj0ismgv/DwCyy2oqRUbR2Y+hZtxPU4xnTtyGaTrTBIXDvONdIhRbm51pwwqthNPkkNd0RleU3AutXXCSCIlnPi1DbVCcbNrv393d9TJeVCrnvUwXBIMUGSrrYxAR/yWuJDvKuc5soy20/+4bnKFBlWE/GrL9rdkKhr1BbxAKxbqCq9ZB9xLDFmRNwjn87Pql5MI/VL1/deSMK7gdBi7dZQ1Yx5j+oQnlfwV1PeUWfzNytaLlT/QaJv7asEXgNlggz0NmhNSEs0D3hxNyqRnO94dh4sWgMcoyLN29sjctKry8GE8oneN/RYXOScfwO/ofid9BCtdwDZSMZbhfWof1GiRX88r3Awh2qep4Rfg0GO4Uqb/ZmhXUsuXljy+9AJvoj6h+giTextFneDz8DaxJhiw= +api: eJzlWFFz2zYM/is8vGTrFMtOmzbVm5emd912TVZ720Oa29ESbLGlSJWkkno6/fcdSFmWbTVNdnvZ+maRAAh+AD6ArsHxlYXkGq6MTtHaV7gUSjihFdxEoEs0nD7eZJCARW7S/M8TiMDgpwqt+1Fna0hqyNCmRpReLYGZl2P4mRelRAsRpFo5VI5EeVlKkXqj8QdL8jXYNMeC0y+3LhES0IsPmDqIoDTkghNoaXcppEPzdbmPuO4JCeVwhQYiWGpTcBeWnj+DJgLFC+yJWmeEWtHGLRorgnf3mnl60pOe89WgsUVZqBZfAnJAwqHiyg1u0q5wkpYOY9REYMVf+EA3QwCny10QuTF8DREIh4U9BJccsNq4h2schg3l8LW1yXZcaXciQFUVlJXT2TlE8Opidg43fSRm5FDTX/m1QrMeBKjLw6SGqZSH+TqVkpVBkwllHVcpWvZdhkteSccIYCYsm4y/hwhuuawIbzp7Rjt6yQy6yijMmBTWfbEeDo/gKmt1vSaZ8oed9s5p43vqz2vD8AjzFDm2WDOf6H2r3tR1FxxoBdqIeOCbm82hwVSbaA87PQpHkzCqTKjVxotwVdtCN3TV6Kve+YTYc6/kq8e41wem02cGbSWd3UZixN4rNtdshY65HJnCzy6Iprpc+yXvPmkckc3f6cseMaGcZke9ijsKgqP3yrtsS0zFsmVCZnNdyYwV3KW5N9pT3BX9R3iFaO4RwDWccykxY23VQAQnJ6eTFy9fnk2ePj97cXI2CUX32tPuNp0OUW4lFmvWMuFO7u3SX8//LZ93dDvpGO10PHCvfVP76dp4TjBoS61sKPmT8XggLaq0vfK/1Jr2qfCRFPkNday2nYQ6eVwbctpx+SCcei68CyU95AmJPRtKj1fccSbULZci+3KOlEYvJBY/PDZXrOOusg8MVIHWtsx2EIMNmw0HyC/cF5wLY7TpYHg6UNbaLESWodrF4En85L9/3WeH132rHXutK5X97657OpTk06s3rJfODL3CN5DtfhJOKyPc2jeXBXKD5thz8PVNE9WQav1RoP+6ie6fKLKOUKibFOhyTY2q1NZDwV0OCcS3k7hVOO4pxKEfA/ljiJG9O5WRkEAd8G2SOK5zbV2T1KU2rvH90wi+aCda2gux9dMqJCB1ymUezt91fZ4jow0/8+ilHzQoC8LpI8Kx7EbMjbmz8dl40BKJfsHKNje2dnLnykE7QXjQUhOGlhCrGcmFS2/is20epfgZqXuE9giXVxfvpvOL49nFbPbm8i21FTqu1aMG14t5Z6V10TtE30EINtKvN+n60x9zn1pUCu+2L+GL8NDYnWz8CePOse6F07Xr8W4z3krs9eDtxrb19gogDE3j/Rmv9gjuj1Gdqb35iWBaao9IWzWX/h8AZFfVQoqUonMYQ824n6YYT524DdN0qgkKh9nAu0QotjG71IYVWgmnySGv6YyuKLlzrV1wkgiJpz4tQ21QnGwSx3d3d6OUF5XK+CjVBcEgRYrK+hi0iP/SrkR7yplObacttP+ODS7RoEoxbg3ZeGe2gsloPBqHQrGu4Kp30L3EsANZl3AOP7u4lFz4h6r3r2454xpuJ4FL91kDNjGmf2hC+V9DXS+4xd+MbBpa/kSvYeKvLVsEboMceRYyI6QmnAe6P56TS91wfjgMEy8GjWmaYunulb3pUeHV5WxO6dz+V1TojHQMv6P/kfgdJECJWIa7JXVYq0Fytap8L4BgkyqOV4RNh99egfpbbRhBrXse1nWQmOuPqBoi0XAVR9/h5fA3aASGpg== sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search process definitions

+ Search process definitions -## Request - -

Body

- -Search examples - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/search-3.api.mdx b/docs/apis-tools/operate-api/specifications/search-3.api.mdx index 2c30e8922de..674fc83cd5e 100644 --- a/docs/apis-tools/operate-api/specifications/search-3.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-3.api.mdx @@ -5,56 +5,282 @@ description: "Search incidents" sidebar_label: "Search incidents" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search incidents

+ - + Search incidents -## Request + -

Body

+ -Search incidents - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error + -
Schema
+ diff --git a/docs/apis-tools/operate-api/specifications/search-4.api.mdx b/docs/apis-tools/operate-api/specifications/search-4.api.mdx index cac9c73f3f8..44f591cd6d8 100644 --- a/docs/apis-tools/operate-api/specifications/search-4.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-4.api.mdx @@ -5,59 +5,305 @@ description: "Search flownode-instances" sidebar_label: "Search flownode-instances" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search flownode-instances

+ Search flownode-instances -## Request + -

Body

+ -Search flownode-instances - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error + -
Schema
+ diff --git a/docs/apis-tools/operate-api/specifications/search-5.api.mdx b/docs/apis-tools/operate-api/specifications/search-5.api.mdx index 30256e1e35f..c854450ecb9 100644 --- a/docs/apis-tools/operate-api/specifications/search-5.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-5.api.mdx @@ -5,56 +5,227 @@ description: "Search decision requirements" sidebar_label: "Search decision requirements" hide_title: true hide_table_of_contents: true -api: eJztWG1v2zYQ/ivEfcnWqZad1l0qDAPcNgWyDU0We9uHJBho6mxzlUiVpJx6hv77cKQsy7bcJsW+7OWbRN4dH97LcyetwfG5heQG3qCQVmp1jR9KaTBH5SzcRaALNNxJrS5SSMAiN2Lx+xAiMPihROte6XQFyRpStMLIgiQhgbGXY/iR50WGFiIQWjlUjkR5UWRSeKPxH5bk12DFAnNOT25VICSgp3+gcBBBYQiCk2hpdyYzh+bzcjJtyVhnpJpDFcF7XLXWpXI4RwMRzLTJuQtLL56TZNrhj4tuo4rn2LmxRGNluN8nT3x2StIGrS6NwHfHzDlUXLlOELQrXUZLnYGsIrDyT3wgkhDl0WzX09wYvoIIpMPcHkaAMFht3MM1DmOLWbeHtUl3oNQ7EaAqc8re0fg1RPDmfPwa7trOGBOgqr3yc4lmdcxHTb4maxhl2WFej7KMbTKDmZY2+yrFGS8zx8jPTFo26H8NESx5VpLbCcKYdvSMGXSlUZiyTFp3tHa6j+EqrfW9NpnzBw5bZ9WhHvoz64g88ggKJONWoEqlmrPpivkkb5/hDd80UYNaoA6Vj0h1t4EQjNYZ+HAsUQBCCrtIokc5IvosWp85e3ALPv8yuAd+20FLZrdoe7dqotkcHXMLZAo/Oi8QMaGLlV/zlyGFEzL+K73ZEyaV0+ykVagnQbB3q/wFbIFCzmqWZXahyyxlOXdi4Y22FHdFe1/kvhDsPeK4gQu11FIge1VaqdBatqk7aginp8PBty9fng2evTh7MRz2Q+G+9fy+zcHDANQS0xWr6XUrPF2xI7TdutS2gzT0PGjocdjvuOxRm/u5XnmmMWgLrWxgkdN+vyOHSiHQ/o1dcZ9gH0m8/zfL3UZQd7JQa4/rgE47nj3Iay0U12jLzNkjYEjyeVcaveGOM6mWPJPp8VwqjJ5mmH/z2JyyjrvSPjAcOVpb0+VBJKSyjitxJEx+4VMhOjdGm8YNzzoIQZupTFNUuz54Ej/551/3+eF132nH3upSpf+66w67knx0dcFa6czQK/wHst3P4aI00q18N5oiN2ieelK+uauiNQit30v0b3fRI8YUoBu4habeVmjrncHdAhKIl4M4NWkc+jgQAkO87AGUJoME1sGjVRLH64W2rkrWhTau8i3WSD6tx2faC9H0YzEkkGnBs0U4bxfsZIGMNqg30KRDEwrFPZzeI88VzRy7MXfWP+t3WiLRI1a22bC1s3Cu6LQThDstVWHYCdEZk1y49CYi245RyB+RWkZoe3B5dX49mpw/HZ+PxxeX76iX0HG1XhXtRLmxUkP0gOg9CMFG+u0mQX/4beKTiZL/evt5fh6+anaHH5m2v6P8ef3jjXwrWV+keW/adn+/KW9ltr24VQth4OrvD41r79r9EawxtTdykf9m2ruqLqBL/78C2VU5zaSgsB0GVzPuBzDGhZNL9AOk0OQjhykrjPabm0qmJ7YxO9OG5VpJpwmQ13RGl5T1C61dAEncxIXP11A0FECbxPH9/X1P8LxUKe8JnZMbMilQWR+c2rU/1SvRnnKqhW20pfbvscEZGlQC49qQjXeGKRj0+r1+qCDrcq5aB32GI3ac1uSiw48uLjIuFRn1CNc1fdzAckB6JoVNVOkPUmCCG1ivp9ziLyarKlr+QB/iRF5b4gjEBgvkaciFkJfwOnD90wlBaEb5w4mZSDFojITAwn1S9q7FgleX4wmVU/0vK9cp6Rh+T/+5+D0kcAu3QOnn3eFr3a+vIeNqXvpmAMEuFSAvyR+Nz/bq1d9sQxBq1UL53SsvwCb6ParvN3UJjl7DF8ZfAH7Cog== +api: eJztWEtz2zYQ/iuYvbhNGT0cK3V4UxJnxm0mdi21PTieDgSuJCQkwACgHJXD/95ZgKIoiUrsTC993Ehgd/FhH98uWYLjCwvxLbxGIa3U6gY/FdJghspZuItA52i4k1pdJhCDRW7E8o8RRGDwU4HWvdTJGuISErTCyJwkIYaJl2P4mWd5ihYiEFo5VI5EeZ6nUnij/Q+W5EuwYokZpye3zhFi0LMPKBxEkBuC4CRa2p3L1KH5upxMWjLWGakWUEXwEdetdakcLtBABHNtMu7C0vMzkkw6/HHZbVTxDDs3VmisDPf74onPTknaoNWFEfjumDmHiivXCYJ2pUtpqTOQVQRW/okPRBKiPJ7vepobw9cQgXSY2cMIEAarjXu4xmFsMe32sDbJDpR6JwJURUbZO568ggheX0xewV3bGRMCVLVXfinQrI/5qMnXuIRxmh7m9ThN2SYzmGlps+8SnPMidYz8zKRlw8H3EMGKpwW5nSBMaEfPmUFXGIUJS6V1R2un+xiuklrfa5M5f+CodVYd6pE/s47II4+gQDJuBapEqgWbrZlP8vYZ3vBtEzWoBepQ+YhUdxsIwWidgQ/HEgUgpLCLJHqUI6KvovWZswc354tvg3vgtx20ZHaLtvdeTTVboGNuiUzhZ+cFIiZ0vvZr/jKkcELGf6M3e8KkcpqdtAr1JAj23it/AZujkPOaZZld6iJNWMadWHqjLcVd0d43uS8Ee484buFSrbQUyF4WViq0lm3qjhrC6elo+OOLF+fDZ8/Pn49Gg1C4bzy/b3PwMAC1xGzNanrdCs/W7Ahtty617SANPQ8behwNOi571OZ+rleeaQzaXCsbWOR0MOjIoUIItH9jV9wn2EcS7//NcrcR1J0s1NrjOqDTjqcP8loLxQ3aInX2CBiSPOtKo9fccSbViqcyOZ5LudGzFLMfHptT1nFX2AeGI0Nra7o8iIRU1nEljoTJL3wpRBfGaNO44VkHIWgzk0mCatcHT/pP/vnXPTu87jvt2BtdqORfd91RV5KPry9ZK50ZeoX/QLb7OVwURrq170Yz5AbNU0/Kt3dVVILQ+qNE/3YXPWJMAbqBW2rqbbm23hncLSGG/mrYT0zSD30cCIEhXvYACpNCDGXwaBX3++VSW1fFZa6Nq3yLNZLP6vGZ9kI0/VgMMaRa8HQZztsFO10iow3qDTTp0IRCcQ+n98hzeTPHbsydD84HnZZI9IiVbTZs7SydyzvtBOFOS1UYdkJ0JiQXLr2JyLZj5PJnpJYR2h5cXV/cjKcXTycXk8nl1TvqJXRcrVdFO1FurNQQPSB6D0KwkX6zSdCffp/6ZKLkv9l+nl+Er5rd4Ucm7e8of97geCPfStYXad6btj3Yb8pbmW0vbtVCGLgG+0Nj6V27P4I1pvZGLvLfXHtX1QV05f9XILsuZqkUFLbD4GrG/QDGuHByhX6AFJp85DBhudF+c1PJ9MQ2ZufasEwr6TQB8prO6IKyfqm1CyCJm7jw+RqKhgJo437//v6+J3hWqIT3hM7IDakUqKwPTu3at/VKtKecaGEbban9e9/gHA0qgf3akO3vDFMw7A16g1BB1mVctQ76CkfsOK3JRYefXT9PuVRk1CMsa/q4hdWQ9EwCm6jSH6TABLdQljNu8VeTVhUtf6IPcSKvLXEEYoMl8iTkQshLeBW4/umUIDSj/OHETKQYNMZCYO6+KHvXYsHrq8mUyqn+l5XphHQMv6f/XPweYqDU867wde7XSki5WhS+EUCwScXHC/JF46+9WvW32pCDWrcQlmWQmOqPqKpqU5Tg6D18XvwFBsjDHA== sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search decision requirements

+ - + Search decision requirements -## Request - -

Body

- -Search examples - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/search-6.api.mdx b/docs/apis-tools/operate-api/specifications/search-6.api.mdx index eefeae0235d..ecbb9053d29 100644 --- a/docs/apis-tools/operate-api/specifications/search-6.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-6.api.mdx @@ -5,59 +5,317 @@ description: "Search decision instances" sidebar_label: "Search decision instances" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search decision instances

+ Search decision instances -## Request + -

Body

+ -Search examples + -
    filter object
    evaluatedInputs object[]
  • Array [
  • ]
  • evaluatedOutputs object[]
  • Array [
  • ]
  • sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • evaluatedInputs object[]
  • Array [
  • ]
  • evaluatedOutputs object[]
  • Array [
  • ]
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ diff --git a/docs/apis-tools/operate-api/specifications/search-7.api.mdx b/docs/apis-tools/operate-api/specifications/search-7.api.mdx index 9a22cd167ee..a2db29c2fed 100644 --- a/docs/apis-tools/operate-api/specifications/search-7.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-7.api.mdx @@ -5,59 +5,242 @@ description: "Search decision definitions" sidebar_label: "Search decision definitions" hide_title: true hide_table_of_contents: true -api: eJztWFtv2zYU/ivEecnWKb6kdZsKwwC3SYFsQ5LFXveQGAMtHVtsJVIlqaSe4P8+HFKWZVtO42Iv3fYmkefynfuRSrB8biC8hTOMhBFKnuFMSGGFkjAJQOWoOb1cxBCCQa6j5M9XEIDGTwUa+0bFCwhLiNFEWuSOLYSRo2P4mWd5igYCiJS0KC2R8jxPReSEdj8Yoi/BRAlmnJ7sIkcIQU0/YGQhgFwTBCvQ0O1MpBb1l+lE3KAxVgs5h2UAH3HROBfS4hw1BDBTOuPWH718QZRx5Y2LdkGSZ9h6cY/aCG/To1qenzS13OCnQmjMUFqzR2Mb6S8Hm9PkvtxnQxvx+4Pssii5tK2W0K2wKR21ZNwyACP+wieq8ek4nG2mBNeaLyAAYTEzu6lCCIzS9ukcu0mIaXuQlI43oFQ3AaAsMiqy4egtBHB2PnoLk6YrRgRo2Tz5rUC9aPdQXVZhCcM03S2/YZqyVRBZXPMa9l2MM16klpGTmTCs3/seArjnaUE+J/0julEzptEWWmLMUmHs3gpv1cJlXLE7ZpLm9A0aqqowD5zKKhqHaaAYMm4ilLGQczZdMFeUTRVO7m0dMKgIqii5YCwnKwReaJV8T4YSeBxEvwkkOMgNwRfBupzZQpvz+Veh3fHaBliSugbbuZNjxeZomU2QSfxsHUHAIpUv3JmzhRiOSPh7ejNHTEir2FGjQo88YedOOvwmx0jMqjnATKKKNGYZt1HihDYYN0k7X+U9H+qtjuFnXoxO4ZkwCQRwcjLov3r9+rT//OXpy8Gg58v0nRs767TbdXpFMV2wagKsiacL1pgmDfTrYVZPjX7dAAe9Fqs25Gyn8dL1D40mV9L47nDS67XkRxFFaP7BobzdNg9sp//P6m90VleD1Ff8YQPYKsvTJ/mjgeEGTZFa0wqF6F60ZfsZt5wJec9TEe9P+VyraYrZD4emvrHcFuaJns7QmKpj78RRSGO5jNov/cFj4TnXWunaDc9b+pPSUxHHKDd98Kz77Ns398WuuZfKsneqkPG/ztxBW5IPry9YI50ZOob/QLa7j4Co0MIu3KCcIteoj93suJ0sgxIipT4KdG+T4OmbEpABNlE0dXNlnC+4TSCE7n2/u+I4bnB0/W4BhEjTaHGACp1CCKX38DLsdstEGbsMy1xpu3TbgBZ8Wm3zdOej69Z0CCFVEU8TD2AT/DhBRhc03mj7oiWG8sBr75An83qxXok77Z32WiUR6R4p6+xYy0mszVvleOJWSUu/gPlojYjOG72K0Hp+5IKm5Wpyw9X1+c1wfH48Oh+NLq4uabKQuopvGWxEvZZSQXSA6N0TwYr63Sphf/5j7JKLiuFm/VPj3H9kbe5pIm5+1Dl9vc39Y31bga/f622jt3+XWFPvXSH2cF9uaXt0L+g1p36j8vzm2dtek0sXuO1dtFa1tYdSdGbKBaIq1yv3DwnZdTFNRURJsZs6inG3lTIeWXGPbnuOFEXAYsxyrdzlqm/QE1uJnSnNMiWFVQTIcVqtCqqpRCnrQVIn5JGrBl+SlB4m7HYfHh46Ec8KGfNOpDJyQyoilMaFvgrir9VJsMUcq8jU3EK5967GGWqUEXYrQaa7sW1Cv9Pr9Hx9Gptx2VD0eEfa8Fmd6BY/226ecuF+DjiAZdWsbuG+30iG401xVcOaBFXfuYWynHKDv+t0uaTjT/QPglrnuk35tgoJ8tjnhq8CeOsnzfGYMNXfOLufFdSSPccwijC3j9JOGk34+mo0puKt/jdmKiYezR/oXyR/gBDu4A4oHXNvX1j68xJSLueFG0Xg5VK584IcVDtxqzs4y1btSC4aKH984wjYWH1E+dOqC4ClV/8Z9jeJZlWE +api: eJztWEtz2zYQ/iuYvbhNaUl2osThTY2dGbcZ27XU9OBoOhC5kpCQAAOAdlQO/3tnAYoiJcqxMr2k7Y0E9vHte8kCLF8YCO/gHCNhhJLnOBdSWKEkTANQGWpOL5cxhGCQ62j55ysIQOPnHI39WcUrCAuI0URaZI4thLGjY/iFp1mCBgKIlLQoLZHyLEtE5IT2PxqiL8BES0w5PdlVhhCCmn3EyEIAmSYIVqCh27lILOqv04m4QWOsFnIBZQCfcNU4F9LiAjUEMFc65dYfvXxBlHHljctuQZKn2Hlxj9oIb9OjWp6fNrXc4udcaExRWrNHYxfprweb0+S+2mdDF/H7g+yyKLm0nZbQrbAJHXVkXBmAEX/hE9X4dBzN2ynBteYrCEBYTM1uqhACo7R9OsduEmLSHSSl4xaU6iYAlHlKRTYav4EAzi/Gb2DadMWYAJXNk99y1KtuD9VlFRYwSpLd8hslCVsHkcU1r2E/xDjneWIZOZkJw04GP0IA9zzJyeekf0w3as402lxLjFkijN1b4Z1auIwrdsdM0py+YUNVFeahU1lF4zANFEPGTYQyFnLBZivmirKpwsm9qwMGFUEVJReMcrpG4IVWyfdkKIHHQfRtIMFBbgi+CtblzBbajC++Ce2O11pgSeoGbO+DnCi2QMvsEpnEL9YRBCxS2cqdOVuI4YiEv6c3c8SEtIodNSr0yBP2PkiH32QYiXk1B5hZqjyJWcpttHRCG4xt0t43ec+Heqtj+JkXo1N4LswSAjg9HZ68ev367OT5y7OXw+HAl+lbN3Y2abfr9IpitmLVBNgQz1asMU0a6DfDrJ4aJ3UDHA46rGrJ2U7j0vUPjSZT0vjucDoYdORHHkVo/sGhvN02D2yn/8/q73RWV4PUV/xhA9gqy5Mn+aOB4RZNnljTCYXoXnRl+zm3nAl5zxMR70/5TKtZgulPh6a+sdzm5omeTtGYqmPvxFFIY7mMui/9wWPhudBa6doNzzv6k9IzEcco2z541n/2/Zv7YtfcK2XZW5XL+F9n7rAryUc3l6yRzgwdw38g291HQJRrYVduUM6Qa9THbnbcTcuggEipTwLd2zR4+qYEZIBdKpq6mTLOF9wuIYT+/Ul/zXHc4Oj73QIIkabR4gDlOoEQCu/hMuz3i6UytgyLTGlbum1ACz6rtnm689F1azqEkKiIJ0sPoA1+skRGFzTeaPuiJYbywGvvkSezerFeizsbnA06JRHpHimb7NjIWVqbdcrxxJ2SSr+A+WiNic4bvY7QZn5kgqblenLD9c3F7WhycTy+GI8vr69ospC6iq8MWlGvpVQQHSB690Swpn67Tthf/pi45KJiuN381LjwH1ntPU3EzY86p2/Q3j82txX4+r3eNgb7d4kN9d4VYg/31Za2R/eCQXPqNyrPb56D7TW5cIHb3kVrVVt7KEVnrlwgqnK9dv+QkN3ks0RElBS7qaMYd1sp45EV9+i250hRBCzGLNPKXa77Bj2xtdi50ixVUlhFgByn1SqnmloqZT1I6oQ8ctXgS5LSw4T9/sPDQy/iaS5j3otUSm5IRITSuNBXQXxXnQRbzLGKTM0tlHvva5yjRhlhvxJk+q1tE056g97A16exKZcNRY93pJbP6kS3+MX2s4QL93PAASyqZnUH9yeNZDhui6sa1jSo+s4dFMWMG/xdJ2VJx5/pHwS1zk2b8m0Vlshjnxu+CuCNnzTHE8JUf+PsflZQS/YcoyjCzD5KO2004Zvr8YSKt/rfmKqYeDR/oH+R/AFCoFTMvG1h4c8KSLhc5G4MgZdJpc5zck7twK3O4KxatyK5aiAsCk8xUZ9QluW6BYCld/8N9jfXGVX+ sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search decision definitions

+ Search decision definitions -## Request - -

Body

- -Search examples - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/search.api.mdx b/docs/apis-tools/operate-api/specifications/search.api.mdx index 24b38ff9331..eaf48900e25 100644 --- a/docs/apis-tools/operate-api/specifications/search.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search.api.mdx @@ -5,56 +5,214 @@ description: "Search variables for process instances" sidebar_label: "Search variables for process instances" hide_title: true hide_table_of_contents: true -api: eJztWFtv2zYU/ivEeXHbqZGcppcYw4A0TYB0Q5PFWfeQ5oGWjm22FKmSlBNP0H8fDinLsq02CTAM2CVPEc+F5/KdC12B4zMLo2v4yI3gE4lwE4Eu0HAntDrLYAQWuUnnEIHBryVa91ZnSxhVkKFNjSiID0Yw9lxs0aixEEGqlUPliJcXhRSp1xl/tiRQgU3nmHP6zy0LhBHoyWdMHURQGLLACbREnQrp0NzP9wWXHSahHM7QQARTbXLuwtGrA6i9XIrWninruErx5wcL2lQXj2BXPMcOq3VGqBkRFlyW/RRnSpVyh1mHOtFaIleejIord5b1yBJVOElHbS7JZPEH3mvui33P6lN4NN2MNjeGLyEC4TC3u1mge6027uESu/lF2edQBNpkG6Y0lAhQlTmB9mh8DBG8Oxkfw003AGMyqO6e/FqiWXbjgnc8L2Sw4EjKXUBfoiuNsoxLuUY1e5LhlJfSMePJTArrGMWYCcuGyVNYJ5euHzfR71e9n3Q0dySbpO0npOLUw59xlbFVnB9i6K1wczbYRfqADQ6T5PXw8HD/5cHrg+Hw8NXAK8aMcZuiyoSascmSefB2bFqXYV/5wLZSaHFx3aYYGp1NXn36ap+4Cz6jzH7TN4V3ruPcVJt+3zY8GNB1gz325FgXS+YdYXrKBmTWR/qyA+Yto9PC4ELo0jKDtpTOPmV/i/NbVXcNNudSQrShcT9Jbmr/R03YFlrZANz9JOnpxGVKFv51DXi7jh9Z3//35d2+3OAjoPBxzdZpx+WDHO3cfBlA3TGAqAd98HnHHWdCLbgU2bcxVBg9kZj/8FgsWcddae81PwykHK3ls/6EiAYk/dnyB99LxYkx2rRheLEbhlNtJiLLUG3G4Fn87J/v7sGuux+0Y6e6VNm/zt2XfSA/ujhjHTgz9AL/AbT7NS8tjXBLP5wmyA2a575HX9/UUQWp1l8E+q+b6J4l3w/ipmuzlY00eXJ0c01Dr9DWh4W7OYwgXgzjVjhuHxYWzQKN9QaVRsIIqhDhehTH1VxbV4+qQhtX+5m8emGMKiBayK7fymAEUqdczsOtm8ZfzZERgbo/TXw3R0Y4CLfv+QHULlgrdW+SN0mvJmL9hpY1OtZ65s4VvXoCc6+mOqwHIVtj4gtOrzK0nhqFoOG3GmxwfnFyeXR18nx8Mh6fnX+geULXNXJ1tJH1VktjojfIjzfPBCvu0xVg3/9+5cFFxXC5fhKehIV6c1vyNyT9kz3pzu2kNb5d8pthvD7ozGBnSuxO3U41hN052V6sKh/M7Z2s1b21klLEptoHpymhc/8mRnZRTqRIKVG76dSM+9WL8dSJBfqdPdUUFdqud+qECcVWaqmQcq2E02SQl3RGl4TzudYuGEndiaceoaFMKGV2FMe3t7d7Kc9LlfG9VOcUBilSVNanownsL81JtCWc6dS20kL779jgFA2qFONGkY39goTGBmeHe8leEmrGupyrzkUP7hIb4Wtx6PDOxYXkwm9W3taqaSDXsBhutIBVlulXi9ALrqGqJtzib0bWNR1/pZcftbO1XGh1MEeeBWwEnMJx6P7Pr8iQNQB3dmdqk0HiKE2xcN/lvel0w4vz8RUVVPMLSq4zkjH8ln5d4bcwgk/wCQiOPii+2v15BZKrWenHAwS9VIK8pKisF9LNivWerVqEWnas/PGtZ2BX+guqnyBqvHH06V9k9Z/w5iYI +api: eJztWFtv2zYU/ivEeXHbqZGcppfoLUsTINvQZHHWPQR5oKVjmy1FqiTl1BP034dDyrJsq00CDAN2yVPEc+G5fOdC1+D43EJ6Cx+5EXwqEe4i0CUa7oRWFzmkYJGbbAERGPxSoXU/6nwFaQ052syIkvgghYnnYstWjYUIMq0cKke8vCylyLzO+JMlgRpstsCC039uVSKkoKefMHMQQWnIAifQEnUmpEPzMN9nXPWYhHI4RwMRzLQpuAtHb46g8XIZWnuhrOMqw58fLWgzXT6BXfECe6zWGaHmRFhyWQ1TnKlUxh3mPepUa4lceTIqrtxFPiBLVOEkHXW5JJPFH/igua8OPatP4clsO9rcGL6CCITDwu5nge612rjHS+znF+WQQxFok2+Z0lIiQFUVBNqTySlE8P5scgp3/QBMyKCmf/JrhWbVjwt+5UUpgwUnUu4D+hpdZZRlXMoNqtmzHGe8ko4ZT2ZSWMcoxkxYNk6ewya5dP2kjf6w6sOkp7kn2SbtMCEV5x7+jKucreP8GEPvhVuw0T7SR2x0nCRvx8fHh6+P3h6Nx8dvRl4x5ozbDFUu1JxNV8yDt2fTpgyHygd2lUKHi9suxdDqbPPq09f4xF3xOWX2m74p/Op6zs20GfZty4MRXTc6YM9Odbli3hGmZ2xEZn2kLzti3jI6LQ0uha4sM2gr6exz9rc4v1N1t2ALLiVEWxoPk+Su8X/UhG2plQ3APUySgU5cZWThX9eAd+v4ifX9f1/e78stPgIKn9ZsnXZcPsrR3s3XAdQ9A4h6NASf99xxJtSSS5F/G0Ol0VOJxQ9PxZJ13FX2QfPDQCrQWj4fTohoQTKcLX/wvVScGaNNF4ZX+2E412Yq8hzVdgxexC/++e4e7bv7QTt2riuV/+vcfT0E8pOrC9aDM0Mv8B9Au1/zssoIt/LDaYrcoHnpe/TtXRPVkGn9WaD/uoseWPL9IG67NlvbSJOnQLfQNPRKbX1YuFtACvFyHHfCcfewsGiWaKw3qDISUqhDhJs0juuFtq5J61Ib1/iZvH5hpDUQLWTXb2WQgtQZl4tw67bxNwtkRKDuTxPfLZARDsLtB34AdQvWWt275F0yqIlYv6Flg46NnoVz5aCewDyoqQnrQcjWhPiC0+sMbaZGKWj4rQcbXF6dXZ/cnL2cnE0mF5cfaJ7Qda1cE21lvdPSmugN8uPNM8Ga+3wN2J9+v/HgomK43jwJz8JCvb0t+RuS4cme9Od20hnfLfntMN4c9GawMxX2p26vGsLunOwuVrUP5u5O1uneWUkpYjPtg9OW0KV/EyO7qqZSZJSo/XRqxv3qxXjmxBL9zp5pigpt13t1woRia7VUSIVWwmkyyEs6oyvC+UJrF4yk7sQzj9BQJpQym8bx/f39QcaLSuX8INMFhUGKDJX16WgD+0t7Eu0I5zqznbTQ/js2OEODKsO4VWRjvyChscHZ8UFykISasa7gqnfRo7vEVvg6HDr86uJScuE3K29r3TaQW1iOt1rAOsv0q0XoBbdQ11Nu8Tcjm4aOv9DLj9rZRi60OlggzwM2Ak7hNHT/lzdkyAaAe7sztckgcZJlWLrv8t71uuHV5eSGCqr9BaXQOckYfk+/rvB7SIGg6APiK92f1SC5mld+NEDQSeXHK4rIZhndrlbv1bo9qFXPwroOHDf6M6qGOmpwxdG3f441fwLNHCaC sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search variables for process instances

+ - + Search variables for process instances -## Request - -

Body

- -Search variables - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx b/docs/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx index e8f3d08b782..0846d4b5238 100644 --- a/docs/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx +++ b/docs/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx @@ -5,61 +5,133 @@ description: "Get sequence flows of process instance by key" sidebar_label: "Get sequence flows of process instance by key" hide_title: true hide_table_of_contents: true -api: eJzlVt1v2zYQ/1eIe9o6xnLabCiEYUAKOIXXYQmSFH0I/EBTZ5uNRCrkyZkh6H8fjpSc2Fax7XGoX2R+3O/ufvfFFkitA+QPcOOdxhDmNpCyGmEhwdXoFRln5wXkEPCpQavxqnTP4cPuE+5AQq28qpDQM0YLVlUIOTzGM2Mhh1rRBiQUGLQ3NYNBDp9wJ9xK1EmlMINOCR6fGuOxgJx8gxKC3mClIG+BdjVDG0u4Rg8SVs5XitLWLxfQdQsWD7WzAQNLvJ1O+XOo+q7RrBMkaGcJLfGVN9kb/pwoU96r6AlhFV7tB/LGrqHjn4SLMT1zu1WlKQQ7hIEO9am6Lo2O1Ga1d8sSq5++BpYbMcItv6JmgNpzQMgk7wIpasI/MvPuLXQSKgxBrXHEBQ5Tz/7YYdo4dVwCGSp5a+a98zAw8e6UiSvnl6Yo0P47zv9X7l6cunubAo4c+uAar1FYR2LlGlt8H1nw81g9XN7MxSuHBUaB74CPTkJA3XhDu9gil6g8+jNukfnDopMtaOceDcbV4rhTfkQSQ+MVK+68Y41TLHci9dwKaeO4W68xksPdN4dse571MmeDTMjaR9x12YB+FtGBrfXboZ83voQc2sR+l2dZu3GBurytnacOJGyVN2pZJvL5LEV+pZqSqS6dVmXcPnbsfoOCD3hisEu0QcE5krRPmGXWcQj3fvp+OorEV7+B8pI5LzgbonoUJ10eRYrzZYjkHd9LTg/RexkatUmzsR+G1zez28v72dnd7O5ufv3nMBh7uU4eZMQepTcxGsTrdAmG21dDMv/+5T4mnrErF8X7BLyOsxvFTbMsjWZXTh12QsVhKJQms0WhbCG0q+oSuX0dJxn/EwPsynlROWvIcepHSfKu4UzYOEdcDqm2lY4xTInEToU8y56fnydaVY0t1ES7ikkojUYbIo89b3/0O/JIuHA67KWNi+vM4wo9p3HWA4WMUTmRk7Pnk+lkmrIqUKXsK0X/tcYOWNwHjPAvyupSGctaosltX38PsD1PneqwAkFCniCPinAh+1p6gLZdqoCffdl1vP3UoI+N46X0YqEWJvD/AvKVKgOeGLlvs/DDbf/E+lF8+xk26tOQ33YXC79seAUyvvbSm69bdBI2qAr00ap0cqk11vRKhkc/V9O+WX2c3YME1TBZe0KPMj4Cjprw64d4Qdy7R7S/7Q0iXrJJXfc3GfC7mA== +api: eJzlVktv2zgQ/ivEnHa7jOW06aLQLQWcwtvFJohd7CHwgaZGNhuJVEjKWUPgfy+GlJzYVrG7x6K+yHzMNzPfvNiBFxsH+QPcWSPRubl2XmiJsOJgGrTCK6PnBeTg8KlFLfGmMs/u4/4z7oFDI6yo0aMljA60qBFyeIxnSkMOjfBb4FCgk1Y1BAY5fMY9MyVrkkqmBp0cLD61ymIBubctcnByi7WAvAO/bwhaaY8btMChNLYWPm39fgUhrEjcNUY7dCTxdjqlz7HqRStJJ3CQRnvUnq68yd7Q50yZsFZETzzW7tW+81bpDQT6cbga0zPXO1GpgpFD6PyxPtE0lZKR2qyxZl1h/dtXR3IjRpj1V5QE0FgKiFfJO+eFb92/MvPuLQQONTonNjjiAoWpZ3/sMG2cO87BK1/R1sxaY2Fg4t05EzfGrlVRoP5vnP9Q7l6du3ufAo4UemdaK5Fp41lpWl38HFnwfqweru/m7JXDDKPAT8BH4OBQtlb5fWyRaxQW7QW1yPxhFXgH0phHhXG1Ou2Un9CzofGykjrvWONk6z1LPbdGvzXUrTcYyaHum0O2u8x6mYtBxmXdI+5DNqBfRHQga+1u6OetrSCHLrEf8izrtsb5kHeNsT4Ah52wSqyrRD6dpciXoq2I6spIUcXtU8eWW2R0QBODXPJbZJQjSfuEWCYdx3Afph+mo0h09TsoL5nzgrP1vhnFSZdHkeJ8GSK5oHvJ6SF6L0OjUWk29sPw9m52f72cXSxmi8X89q9hMPZygR9lxAGlNzEaROt0CYbbN0My//H3Miae0qWJ4n0C3sbZjeyuXVdKkivnDhsm4jBkQnq1QyZ0waSpmwqpfZ0mGf1jA2xpLKuNVt5Q6kdJb01LmbA1xlM5pNoWMsYwJRI55fIse35+nkhRt7oQE2lqIqFSErWLPPa8/dnv8BPhwkh3kFYmrjOLJVpK46wHchmhUiInZy8n08k0ZZXztdCvFP3fGjti8RAwj//4rKmE0qQlmtz19fcAu8vUqY4rEDjkCfKkCFe8r6UH6Lq1cPjFViHQ9lOLNjaOl9KLhVooR/8LyEtROTwz8tBm4Zf7/on1K/v+M2zUpyG/9T4WftXSCnh87aU3X1gFDlsUBdpoVTq5lhIb/0qGRj9V06FZfZotgYNoiawDoScZHwFHTei6dGNpHlGHcLDI05psCuEb9aq9Dg== sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

- Get sequence flows of process instance by key -

+ Get sequence flows of process instance by key -## Request - -

Path Parameters

- -Success - -
Schema
  • Array [
  • - -string - -
  • ]
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/sidebar.js b/docs/apis-tools/operate-api/specifications/sidebar.js deleted file mode 100644 index 8c5076925df..00000000000 --- a/docs/apis-tools/operate-api/specifications/sidebar.js +++ /dev/null @@ -1,180 +0,0 @@ -module.exports = [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/operate-public-api", - }, - { - type: "category", - label: "ProcessDefinition", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search-2", - label: "Search process definitions", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-key-2", - label: "Get process definition by key", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/xml-by-key", - label: "Get process definition as XML by key", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "DecisionDefinition", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search-7", - label: "Search decision definitions", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-key-6", - label: "Get decision definition by key", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "DecisionInstance", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search-6", - label: "Search decision instances", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-id", - label: "Get decision instance by id", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "FlownodeInstance", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search-4", - label: "Search flownode-instances", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-key-4", - label: "Get flow node instance by key", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Variable", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search", - label: "Search variables for process instances", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-key", - label: "Get variable by key", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "ProcessInstance", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search-1", - label: "Search process instances", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-key-1", - label: "Get process instance by key", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/delete", - label: "Delete process instance and all dependant data by key", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/get-statistics", - label: "Get flow node statistic by process instance id", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/sequence-flows-by-key", - label: "Get sequence flows of process instance by key", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "DecisionRequirements", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search-5", - label: "Search decision requirements", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-key-5", - label: "Get decision requirements by key", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/xml-by-key-1", - label: "Get decision requirements as XML by key", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Incident", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search-3", - label: "Search incidents", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-key-3", - label: "Get incident by key", - className: "api-method get", - }, - ], - }, -]; diff --git a/docs/apis-tools/operate-api/specifications/sidebar.ts b/docs/apis-tools/operate-api/specifications/sidebar.ts new file mode 100644 index 00000000000..587d4bf4f2b --- /dev/null +++ b/docs/apis-tools/operate-api/specifications/sidebar.ts @@ -0,0 +1,186 @@ +import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; + +const sidebar: SidebarsConfig = { + apisidebar: [ + { + type: "doc", + id: "apis-tools/operate-api/specifications/operate-public-api", + }, + { + type: "category", + label: "ProcessDefinition", + items: [ + { + type: "doc", + id: "apis-tools/operate-api/specifications/search-2", + label: "Search process definitions", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/operate-api/specifications/by-key-2", + label: "Get process definition by key", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/operate-api/specifications/xml-by-key", + label: "Get process definition as XML by key", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "DecisionDefinition", + items: [ + { + type: "doc", + id: "apis-tools/operate-api/specifications/search-7", + label: "Search decision definitions", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/operate-api/specifications/by-key-6", + label: "Get decision definition by key", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "DecisionInstance", + items: [ + { + type: "doc", + id: "apis-tools/operate-api/specifications/search-6", + label: "Search decision instances", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/operate-api/specifications/by-id", + label: "Get decision instance by id", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "FlownodeInstance", + items: [ + { + type: "doc", + id: "apis-tools/operate-api/specifications/search-4", + label: "Search flownode-instances", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/operate-api/specifications/by-key-4", + label: "Get flow node instance by key", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Variable", + items: [ + { + type: "doc", + id: "apis-tools/operate-api/specifications/search", + label: "Search variables for process instances", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/operate-api/specifications/by-key", + label: "Get variable by key", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "ProcessInstance", + items: [ + { + type: "doc", + id: "apis-tools/operate-api/specifications/search-1", + label: "Search process instances", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/operate-api/specifications/by-key-1", + label: "Get process instance by key", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/operate-api/specifications/delete", + label: "Delete process instance and all dependant data by key", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/operate-api/specifications/get-statistics", + label: "Get flow node statistic by process instance id", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/operate-api/specifications/sequence-flows-by-key", + label: "Get sequence flows of process instance by key", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "DecisionRequirements", + items: [ + { + type: "doc", + id: "apis-tools/operate-api/specifications/search-5", + label: "Search decision requirements", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/operate-api/specifications/by-key-5", + label: "Get decision requirements by key", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/operate-api/specifications/xml-by-key-1", + label: "Get decision requirements as XML by key", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Incident", + items: [ + { + type: "doc", + id: "apis-tools/operate-api/specifications/search-3", + label: "Search incidents", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/operate-api/specifications/by-key-3", + label: "Get incident by key", + className: "api-method get", + }, + ], + }, + ], +}; + +export default sidebar.apisidebar; diff --git a/docs/apis-tools/operate-api/specifications/versions.json b/docs/apis-tools/operate-api/specifications/versions.json new file mode 100644 index 00000000000..71ac271e29b --- /dev/null +++ b/docs/apis-tools/operate-api/specifications/versions.json @@ -0,0 +1,12 @@ +[ + { + "version": "1", + "label": "Unused but required field", + "baseUrl": "Unused but required field" + }, + { + "version": "8.6", + "label": "Unused but required field", + "baseUrl": "Unused but required field" + } +] diff --git a/docs/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx b/docs/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx index 6769dce1f10..52ab47f809c 100644 --- a/docs/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx +++ b/docs/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx @@ -5,56 +5,131 @@ description: "Get decision requirements as XML by key" sidebar_label: "Get decision requirements as XML by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v2zYQ/ivEfVo71nLarCiEYUCKuUWWdgliFy0QGANNnW02EqmSlBND4H8vjpSUONbQfR36SeLLPXf33AuvBS82DvIb+BOlcsroa/zWKIsVau9gycHUaIVXRp8XkMN9Vb7dX+D+nxPgUAsrKvRoCaAFLSqEHG5xDxyUhhxq4bfAoUAnraoJBHK4wD0za1Z0+ph9rJBDtywg97ZBDk5usRKQt+D3NeEr7XGDFjisja2ET1uvTyGEJYm72miHjiReTqf0OdQ/b6RER6qk0R61j9h477P7qqT/I43OW6U3EEIIHE7HMM/1TpSqiL6g84fYoq5LJSOHWW3NqsTq16+O5EZ0mdVXlARQW2Leq+SJ88I37ocsvHoJgUOFzokNjnhAcXFeaDl+mDaO/ebglS9pa2atsQMTr46ZeGfsShUF6kMOnmfP///unh67e50CjhR6ZxorkWnj2do0uvg5suC3sXo4uzpnjxxmGAV+Aj4CB4eyscrvY09cobBoX1BPzG+WgbcgjblVGFfLp63xPfrxvsiEY18+fmCrPUvttUK/NdSQNxhpoUabQ7Y7yQpbZO0t7kNsZ2SO3fUdurEl5NAmekOeZe3WOB/ytjbWB+CwE1aJVZnYpbMU2rVoSuKyNFKUcfup5YstMjqgN4C6u98ioyRI2idEI+k4hHszfTMdRaKr/4LykBoPOFvv61GcdHkUKT4WfajmdC853YdnCLeo1UWkvHveLq9m12eL2Yv5bD4/v/y7f+o6ucAPQj6gdCZGg2idLkF/+12frX99XsTMUnptoniXYZfxFUZ21axKJcmVY4cNE/FlY0J6tUMmdMGkqeoSqT/V1sTDPtXpj/Wwa2NZZbTyhnI7SnprGsqErTGe8j0Vr5AxhimRyCmXZ9nd3d1EiqrRhZhIUxEJpZKoXeSx4+1Dt8OfCBdGukFambjOLK7RopaYdUAuI1RK5OTsyWQ6maascr4S+pGi/15EB/wNoYqjQF0KpQk/Gtt2BXYDO5p7Cku9PU8gVGVL3hXLDbTtSjj8ZMsQaPtbgzaW/kNtxUoslKP/AvK1KB0e2TI0SvilG8iKZ+wHk9Oo/X0W630s77KhFfA4paVZLSwDhy2KAm00LZ2cSYm1fyQzTEhUOEP7eT9bAAfREDsDg0+SO6KO2vH723iBLcwt6j8Gqzwtya4QvgP4oaIs +api: eJzlVm1v2zYQ/ivEfdo61nLabCj0LcPcIku3BLGHFgiMgabOFhuJVEnKiSHwvw9HSkoca+i+Dv0k8eWeu3vuhdeBFzsH+R38hlI5ZfQtfm2VxRq1d7DmYBq0wiujLwvI4bGufj1c4eHvM+DQCCtq9GgJoAMtaoQc7vEAHJSGHBrhS+BQoJNWNQQCOVzhgZktK3p9zD5XyKFfFpB72yIHJ0usBeQd+END+Ep73KEFDltja+HT1i/nEMKaxF1jtENHEm/mc/oc61+2UqIjVdJoj9pHbHz02WNd0f+JRuet0jsIIQQO51OYl3ovKlVEX9D5Y2zRNJWSkcOssWZTYf3TF0dyE7rM5gtKAmgsMe9V8sR54Vv3TRbevoHAoUbnxA4nPKC4OC+0nD5MG6d+c/DKV7S1sNbYkYm3p0y8N3ajigL1MQevslf/f3fPT929TQFHCr0zrZXItPFsa1pdfB9Z8PNUPVzcXLJnDjOMAt8BH4GDQ9la5Q+xJ25QWLSvqSfmd+vAO5DG3CuMq/XL1vgB/XRfZMKxz398ZJsDS+21Rl8aasg7jLRQo80h259lhS2y7h4PIbYzMsfuhw7d2gpy6BK9Ic+yrjTOh7xrjPUBOOyFVWJTJXbpLIV2K9qKuKyMFFXcfmn5qkRGB/QGUHf3JTJKgqR9RjSSjmO4d/N380kkuvovKE+p8YRTet9M4qTLk0jxsRhCtaR7yekhPGO4RaOuIuX983Z9s7i9WC1eLxfL5eX1n8NT18sFfhTyEaU3MRpE63QJhtvvh2z9/dMqZpbSWxPF+wy7jq8wspt2UylJrpw6bJiILxsT0qs9MqELJk3dVEj9qbEmHg6pTn9sgN0ay2qjlTeU21HSW9NSJpTGeMr3VLxCxhimRCKnXJ5lDw8PMynqVhdiJk1NJFRKonaRx563j/0OfyFcGOlGaWXiOrO4RYtaYtYDuYxQKZGTs2ez+Wyessr5Wuhniv57ER3xN4YqjgJNJZQm/Ghs1xfYHexp7iks9fY8gVCVrXlfLHfQdRvh8C9bhUDbX1u0sfSfaitWYqEc/ReQb0Xl8MSWsVHCD/1AVvzIvjE5Tdo/ZLE+xPKuWloBj1NamtXCOnAoURRoo2np5EJKbPwzmXFCosIZ28+HxQo4iJbYGRl8kdwRddKOrks3VuYedQijWZ7WZFgI/wC6/qOi sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get decision requirements as XML by key

+ - + Get decision requirements as XML by key -## Request - -

Path Parameters

- -Success - -
Schema
    - -string - -
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx b/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx index c2c500718a5..a79a2c680b5 100644 --- a/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx +++ b/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx @@ -5,59 +5,131 @@ description: "Get process definition as XML by key" sidebar_label: "Get process definition as XML by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v2zYQ/ivEfdo6xnLabCiEYUCKuUXWbgliDxsQ+ANNnW02EqmSlBND4H8fjpTk2NZevg79JPHlnrt77o0teLFxkD/AnTUSnfsZ10orr4yGJQdToxW0uCkgh+eqfLf/iHvgUAsrKvRoSbYFLSqEHB7jmdKQQy38FjgU6KRVdcTL4SPumVmzOqlixUEXB4tfGmWxgNzbBjk4ucVKQN6C39cErrTHDVrgsDa2Ej5t/XAFISxJ3NVGO3Qk8Xo6pc+x8nkjSStwkEZ71D5i47PPnquS/s80Om+V3kAIIXC4GsO80TtRqoKR8ej8Mbao61LJSF9WW7MqsfrusyO5EV1m9RklAdSWSPcqeeK88I37VxbevIbAoULnxAZHPKCgOC+0HD9MG+d+c/DKl7Q1s9bYgYk350y8N3aligL1MQevslf/f3evzt29TwFHCr0zjZXItPFsbRpdfB1Z8P1YPVzf3bAXDjOMAl8BH4GDQ9lY5fexIa5QWLQX1BDzh2XgLUhjHhXG1fK0L35AP9IUmXDsz18/sdWepcZaod8aasQbjJxQi80h211mnfDFQdhl7SPuQ+xtZJvd9b26sSXk0CauQ55l7dY4H/K2NtYH4LATVolVmaimsxTntWhKIrY0UpRx+9SNxRYZHdA0oD7vt8goI5L2CXFKOo7h3k7fTkeR6OrfoBzy5ICz9b4exUmXR5Hi5OjjNqd7yek+VkPsRa3S3OsG3e3d7P56MbuYz+bzm9vf+qHXyQV+FP8BpTMxGkTrdAn62+/71P3lj0VMM6XXJop36XYbpzGyu2ZVKkmunDtsmIhjjgnp1Q6Z0AWTpqpLpGbVJ1mf9/THeti1sawyWnlDiR4lvTUNZcLWGE/JnypZyBjDlEjklMuz7OnpaSJF1ehCTKSpiIRSSdQu8tjx9qnb4SfChZFukFYmrjOLa7SoJWYdkMsIlRI5OXs5mU6mKaucr4R+oeg/VtQReUOc4qOgLoXSBB4tbbtqe4DdZWpHp/UGHPIESiW35F3lPEDbroTD320ZAm1/adDGpnAotFiWhXL0X0C+FqXDM9uGFgrf3HdPpW/ZPz2oRp3p81nvY6GXDa2Ax5dber+FZeCwRVGgjXalk2spsfYvZIaHE5XQ0Jg+zBbAQTRE1UDnSZpH1FE7fnwXL7CFeUT902CVpyXZFcJfhPioRg== +api: eJzlVt1v2zYQ/1eIe1o7xnLadCj0lmFukbVbgtjDCgR+oKmzzUYiVZJyYgj834cjJTm2tY/XoU8SP+53d7/7YgtebBzkD3BnjUTnfsG10soro2HJwdRoBS1uCsjhuSp/3n/CPXCohRUVerQk24IWFUIOj/FMacihFn4LHAp00qo64uXwCffMrFmdVLHioIuDxW+NslhA7m2DHJzcYiUgb8HvawJX2uMGLXBYG1sJn7Z+uoIQliTuaqMdOpJ4M53S51j5vJGkFThIoz1qH7Hx2WfPVUn/Zxqdt0pvIIQQOFyNYd7onShVwch4dP4YW9R1qWSkL6utWZVY/fjVkdyILrP6ipIAakuke5U8cV74xv0rC2/fQOBQoXNigyMeUFCcF1qOH6aNc785eOVL2ppZa+zAxNtzJj4Yu1JFgfqYg9fZ6/+/u1fn7t6ngCOF3pnGSmTaeLY2jS6+jyx4N1YP13c37IXDDKPAd8BH4OBQNlb5fWyIKxQW7QU1xPxhGXgL0phHhXG1PO2LH9GPNEUmHPvy22e22rPUWCv0W0ONeIORE2qxOWS7y6wTvjgIu6x9xH2IvY1ss7u+Vze2hBzaxHXIs6zdGudD3tbG+gAcdsIqsSoT1XSW4rwWTUnElkaKMm6furHYIqMDmgbU5/0WGWVE0j4hTknHMdz76fvpKBJd/RuUQ54ccLbe16M46fIoUpwcfdzmdC853cdqiL2oVZp73aC7vZvdXy9mF/PZfH5z+3s/9Dq5wI/iP6B0JkaDaJ0uQX/7Q5+6v/65iGmm9NpE8S7dbuM0RnbXrEolyZVzhw0TccwxIb3aIRO6YNJUdYnUrPok6/Oe/lgPuzaWVUYrbyjRo6S3pqFM2BrjKflTJQsZY5gSiZxyeZY9PT1NpKgaXYiJNBWRUCqJ2kUeO94+dzv8RLgw0g3SysR1ZnGNFrXErANyGaFSIidnLyfTyTRllfOV0C8U/ceKOiJviFN8FNSlUJrAo6VtV20PsLtM7ei03oBDnkCp5Ja8q5wHaNuVcPiHLUOg7W8N2tgUDoUWy7JQjv4LyNeidHhm29BC4Yf77qn0iv3Tg2rUmT6f9T4WetnQCnh8uaX3W1gGDlsUBdpoVzq5lhJr/0JmeDhRCQ2N6eNsARxEQ1QNdJ6keUQdtaNt042FeUQdwmCWpzUZFsJfTW+pvA== sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get process definition as XML by key

+ Get process definition as XML by key -## Request - -

Path Parameters

- -Success - -
Schema
    - -string - -
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/docs/apis-tools/tasklist-api-rest/sidebar-schema.js b/docs/apis-tools/tasklist-api-rest/sidebar-schema.js index ebb41a15e74..ebfb2e5196e 100644 --- a/docs/apis-tools/tasklist-api-rest/sidebar-schema.js +++ b/docs/apis-tools/tasklist-api-rest/sidebar-schema.js @@ -5,7 +5,7 @@ module.exports = { "apis-tools/tasklist-api-rest/tasklist-api-rest-overview", "apis-tools/tasklist-api-rest/tasklist-api-rest-authentication", { - Specifications: require("./specifications/sidebar.js"), + Specifications: require("./specifications/sidebar"), }, ], }; diff --git a/docs/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx index e15045dcb79..67c81fd2078 100644 --- a/docs/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx +++ b/docs/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx @@ -5,55 +5,290 @@ description: "Assign a task with `taskId` to `assignee` or the active user. Retu sidebar_label: "Assign a task" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Assign a task

+ Assign a task with `taskId` to `assignee` or the active user. Returns the task. -## Request + -

Path Parameters

Body

+ -When using REST API with JWT authentication token following request body parameters may be used. + -
- -On success returned. - -
Schema
- -An error is returned when the task is not active (not in the CREATED state).
An error is returned when task was already assigned, except the case when JWT authentication token used and `allowOverrideAssignment = true`. - -
Schema
- -An error is returned when user doesn't have the permission to assign another user to this task. - -
Schema
- -An error is returned when the task with the `taskId` is not found. - -
Schema
+An error is returned when task was already assigned, except the case when JWT authentication token used and `allowOverrideAssignment = true`.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + "403": { + description: + "An error is returned when user doesn't have the permission to assign another user to this task.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + "404": { + description: + "An error is returned when the task with the `taskId` is not found.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + }} +> diff --git a/docs/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx index a2205914bde..a07699bbf0f 100644 --- a/docs/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx +++ b/docs/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx @@ -5,55 +5,297 @@ description: "Complete a task with `taskId` and optional `variables`. Returns th sidebar_label: "Complete a task" hide_title: true hide_table_of_contents: true -api: eJztWetPIzkS/1dK/jKga5LM7uxpFa3uFCDcZh6AkrAjLUKD064kXrrtHtudTC7K/74q2915cRC4+Th8odMu18u/erh6yRyfWNa+ZUNuH9hdwgTa1MjCSa1Ym53pvMjQIXBw3D7AXLop3NNjT9wDVwK0J+UZ3M+4kXyUob1vQB9daZQFN0W/scESpgs0nIh7grVZGjl7uQkruOE5OjSkzJIpniNrsyCIJUySMgV3U7ar4XCK0DsHPd6SZfBrKQ0K1namxITZdIo5Z+0lc4uCOFtnpJqw1eouEKN1p1osiCLVyqFy9MiLIpOpV7r5lyV5y31WevQXpo5sMGSik2hptXbHBik3hi/2TPijogSnoSwEdwjaABeCXni/i5LUrU2E6D3anzDpMLfPKxR8uuuBx/xJlJVHKzMabJWwGc/KA3l40j0m8HmKCmyBqRwvKouq1bAnAeneWEhNmUqekQdyLpXjUkGqlZXWoUoXAYnvB1eXYZeFI4tG8kz+1x8XjLXxzIOnvkFwigVbplPgFjJp3bFHMCpbGgQ35Q6CQRYMklDgBbnQSO4wWxDLnDuHosFWq4Q56TLcOL6eKkp3PrxiK1rd9kg/QCxqEZSf/T/HTiCvFKAQqgI1CiIdVoRsW2hlw/n/1GrRv23FrhR5JEVLNlPMknXJ94oBKQ4DS6nk1xJBClROjiWa7XheJa8Eb72dHs5xLJWsEtBzrG4sGiDPUnYZG517hqfXny5B1Iw878Jo8t/lqzSMmz2j1KB38zl3B3DykTTndgMdtB8FHBkkEQIoCc54hsqRuHuyplEJGcoc72EsMRPHQXqNrVfLjxh8ToNa0J4O3Fo5UXigH0uLhsQ0pSDu86kGaSHyCEG0i4GBO8g24m6dD8jdusLFlcoWVV1BVeZUPc/63c6we84Sdnb16fpjNz53Ls+6H/3jRadHD3erhFEa+YCL57Xo4xgNqhQ3TfFZyNtDD4cgeY9NKJccBBaZXqAILKEXTKUf5EelXU2RgJtKCzG4F365zLJajT/QWBlSQ9RFKocTNM8rMwtbv5tGQSHugg7/fEcqSnuhTd7NRygEbnpspHWGXO1p2bNrwRi3xYoirT+Gf0flDAbNPO1TboqBvk5CL4dAZLGRf54OtD2R1LNtRFtc7ynruErx9QrJyAHkM6G/I3FHH4eKK3cIpCk+AzWBmVurU+lTny+sW1EvSjwsnxFPUSL4Olx1D1Xc15ii1RMncwzQzzI9vykOFxB2nJTFS8SkXAlJb/5jdFk830+SoHoPTPymPVG7TWPdEG/Ioxr4UnGUlF8kTVI1yFE57rZTSO3GKsm+vzr98vmq/6HbZwn7s9s97X65GXT7X4adwQefWQsjtZFusd/mDH2pDash1dT1vQG0OJWTKZrYjlLn6rZfVpsb0An9EPWrWoWuEP5EHOGapfXd2W4izKWSOVnSSljOv4Xnt60W+XPMy8yx9i+tzcaSWPVjBxcbuneP9XAdBWiMNpRvqiYO5lSe66IRsydPnZwhHNGzDMuxcoVyd9z4bWSa/3qUoVxXQl/2iUeacUmxflQV3WMY4VgbPJBPpdZOyU5LYyhvEJae6EYLo0cZ5v94aVdKppb2gGLVURCXwu3AYGHQonKhPPw+HF5DYAapFnWzEGyueu8GXGgD+I0TzhN412qBVIJsQAsc3pxyAbFrfxO2EtG7baJL7eBCl0rUJHRzsRrCTWCz5P38E+WMHK3lkwOyUifeeYKFhdEzKbzMkZE4hg3ibfM8uU79UQmfaasq8LzMbgBFVTVubqjF1gYyrR/KAo6wMWkkBNBMTyBaYo+3b12eRx0VP+9HhY/GqQcqFGhyaX2f4TTwcN+pUXg0wGx8knPFJyh8UB//QN0P1D2PunevysV1j1LP0WIaHJOrfyDvB/KeRp631k21CCPRdOrHp27K2qw5e9skUNnmMmBr1awu5SxhFs2sGrCWJmNttgwQWrWbzeVUW7dqLwtt3Iol2+NLWgtYj40Ky3TKM//6sXaQFjanHJ3rHgTp4eKhzQ67X1u/th7lRKT/g8sa/ms+U+eKx2/znvhRTn4GbDEtQ+t4SxNg/SCRtW/vEjZCbtCcPNDl6PZuk3RALIN/qg3rTrmQdJ3aH6cT3cmIWxTASzeleVeIbkoCvp/kMy6z2F6Cr0yfYmVKs9LShJwiIA7IqfX92BsMTwbdwaB3dVmNyqNCq239a/Wim7xT/D3YE7GK+qIKr/efhx6ElHH66yl5NwT3zpR7PbavwyDOi+t2/86HzVh7VTa6XBrGQr87GNLJ7J9fRUHTHaARzOLE6ZPShoPcSJFU3Q0vpMgWUN8rYFRaqajix+snhXum1cRKEe4rPi/TNTY08lUK5qlHaQgVcpltN5vz+byR8rxUgtMki1ycyRSpRa9n7OxjfJPsbBY6tfVuqf3vpqmu1M3IyDb9rL2aqbDZ2xA01uVcbUjZ+Tiz67eNLxnf9TtOxJDDb65ZZFwq0s7buYx56JZUDgM3yxLWrj/j1MnoLok55ZYtlxQONyZbrej11xLNIoRepYiHlpCWngVrj3lm8Qlbj/rx488xPP5x6FEDqsBViw3csoT5wKk+RHkAT5ELNF6psHgWRJ8MicV6897gfJVUOzppioV7kvZuI8tfd4Znv1N0xi9UuRa0yfA5jST5PGgaTtDnI/9uyTKuJqWviiwwpb+/AePCssI= +api: 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 sidebar_class_name: "patch api-method" info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Complete a task

+ Complete a task with `taskId` and optional `variables`. Returns the task. -## Request + -

Path Parameters

Body

    variables object[]
    + -Variables to update or add to task during the task completion + -
  • Array [
  • ]
- -On success returned. - -
Schema
- -An error is returned when the task is not active (not in the CREATED state).
An error is returned if the task was not claimed (assigned) before.
An error is returned if the task is not assigned to the current user. - -
Schema
- -User has no permission to access the task (Self-managed only). - -
Schema
- -An error is returned when the task with the `taskId` is not found. - -
Schema
+An error is returned if the task was not claimed (assigned) before.
An error is returned if the task is not assigned to the current user.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + "403": { + description: + "User has no permission to access the task (Self-managed only).", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + "404": { + description: + "An error is returned when the task with the `taskId` is not found.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + }} +>
diff --git a/docs/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx index 53e956d2823..5b6e974ad7e 100644 --- a/docs/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx +++ b/docs/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx @@ -12,33 +12,136 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get a form

+ - + Get the form details by `formId` and `processDefinitionKey` required query param. The `version` query param is optional and is used only for deployed forms (if empty, it retrieves the highest version). -## Request + -

Path Parameters

Query Parameters

+ -On success returned. + -
Schema
- -An error is returned when the form with the `formId` and `processDefinitionKey` is not found. - -
Schema
+ diff --git a/docs/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx index ca8de33aad9..b259b270f30 100644 --- a/docs/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx +++ b/docs/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx @@ -5,44 +5,231 @@ description: "Get one task by id. Returns task or error when task does not exist sidebar_label: "Get a task" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get a task

+ - + Get one task by id. Returns task or error when task does not exist. -## Request + -

Path Parameters

+ -On success returned. + -
Schema
- -User has no permission to access the task (Self-managed only). - -
Schema
- -An error is returned when the task with the `taskId` is not found. - -
Schema
+ diff --git a/docs/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx index 72f7da281e4..2b79f248cbd 100644 --- a/docs/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx +++ b/docs/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx @@ -12,40 +12,111 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get a variable

+ Get the variable details by variable id. -## Request + -

Path Parameters

+ -On success returned. + -
Schema
    draft object
    - -The draft value of the variable - -
- -An error is returned when the variable with the `variableId` is not found. - -
Schema
+ diff --git a/docs/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx index 27e5668f33d..93d64bbcecb 100644 --- a/docs/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx +++ b/docs/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx @@ -12,48 +12,177 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Save draft variables

+ This operation performs several actions:
  1. Validates the task and draft variables.
  2. Deletes existing draft variables for the task.
  3. Checks for new draft variables. If a new variable's `name` matches an existing one but the `value` differs, it is saved. In case of duplicate draft variable names, the last variable's value is kept.
NOTE:
  • Invoking this method successively will overwrite all existing draft variables. Only draft variables submitted in the most recent request body will be persisted. Therefore, ensure you include all necessary variables in each request to maintain the intended variable set.
  • The UI does not currently display the values for draft variables that are created via this endpoint.
-## Request - -

Path Parameters

Body

required
    variables object[]
    - -Variables to update or add to the task. - -
  • Array [
  • ]
- -On success returned. - -
Schema
    any
- -An error is returned when the task is not active (not in the `CREATED` state).
An error is returned if the task was not claimed (assigned) before, except the case when JWT authentication token used.
An error is returned if the task is not assigned to the current user, except the case when JWT authentication token used. - -
Schema
- -An error is returned when the task with the `taskId` is not found. - -
Schema
- -An error is returned if an unexpected error occurs while persisting draft task variables. - -
Schema
+ + + + + + +An error is returned if the task was not claimed (assigned) before, except the case when JWT authentication token used.
An error is returned if the task is not assigned to the current user, except the case when JWT authentication token used.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + "404": { + description: + "An error is returned when the task with the `taskId` is not found.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + "500": { + description: + "An error is returned if an unexpected error occurs while persisting draft task variables.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + }} +>
diff --git a/docs/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx index 2192123cf65..6ada10bf7e5 100644 --- a/docs/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx +++ b/docs/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx @@ -12,44 +12,183 @@ custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search task variables

+ This method returns a list of task variables for the specified `taskId` and `variableName`.
If the request body is not provided or if the `variableNames` parameter in the request is empty, all variables associated with the task will be returned. -## Request + -

Path Parameters

Body

    includeVariables object[]
    + -An array of variable names that should be included in the response. + -
  • Array [
  • ]
- -On success returned. - -
Schema
  • Array [
  • draft object
    - -The draft value of the variable. - -
  • ]
- -An error is returned when the task with the `taskId` is not found. - -
Schema
+ diff --git a/docs/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx index e8e2b223ace..3c3e45e486a 100644 --- a/docs/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx +++ b/docs/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx @@ -5,72 +5,500 @@ description: "Returns the list of tasks that satisfy search request params.
sidebar_label: "Search tasks" hide_title: true hide_table_of_contents: true -api: eJztW21zGzcO/iuc/ZLkTpaU18vpcsnIsdyqTeOcpSQz9XhqaheS2HDJNcm1onr0328Acl/0ZslOLr2ZVJ+kXRIAQQB8AFDXkeMTG3XOoiG3n6LzRpSAjY3InNAq6kSn4HKjLHNTYFJYx/SYOW4/4RPumOVO2PGcWeAmnjIDlzlYxzJueGqbL0am9fJFLl++kOJlf8y4YpBmbs5GOpkzYVlm9JVIIGkwLmWgyw0wQ1whab5oSUGzT5ScM60A+V+ceXbdsQPTYLUfJ6Z3mXNZPDuEsTaw/CsMOb8oZNa0VMvS3Do2ApYZsKAcE6pYTpCilcuXUSPSGRiOU/pJ1Ik8EdSdjRpRmHCok3nUuY5irRwoh195lkkR07zW7xZVex3ZeAopx29unkHUifTod4hd1Igyg1ycAEvjHHdQG2adEWoSrW7VcAqMhtIeTcHrsxk1IlB5ilv8+rTXHfaOokb0+uSXd2964Xv37eveG/p63O3jl/NFI+LWiomCpMZ3pLUErtYYdw1U/Fgx8VVUUdlD+o9TjRZRzGZOVzSXSNkaLW4Mn29URDEaaQazQXITcQWqfEnKEQ5Su5929yW6WDQiFPwIxkKJwlZ2a4C7e97TDt/98paNpZ4xpROg5cdcJSLhDn4wOs92U/uBhJrgYBRXKFZS8E8t+XNznfZuBXcdk8AxGKwqIVC+keHeKv8yNov6wt5bMPvqLLdg1kjTw3WFId0v0ReSXV9HjdlXUNZOHqipzOgYrK0s9meY72Z6CmMwoGJAdw0kWFLSYPcNKJ5CwuAyF1dcYlzVY4bh8j85mHlzjW0/YWMBMnlAeg6v+8o6rmK4u0wiUNhbooJlKQ+JwycwEH/Uo5lQDiZg1qTAYdVZiRPZ/QTGPJeO/Zs9bT/ArR1rk3LnqTx+hBzGWko9e58dLUf8LQfD2Oh0t0IGjhvHaNMNVxPSSzj7kACaBb48cCIF5kViOndSYBgWilmIaTOfNp8VhnV6/Jo9fvz4n6jfsZClwfUHJ+z5s/ZDPIdUwk2ytMqSC67U6d2S91SyWW6n/xSpF2tOFyTTY5bkQAJZFKZ2HNaUrQ0SdsJJXDNu8bGQDgyqI8nhrz3/zvYcB3/gRvCR3APVdBWjF8h4TDRYLHluwTKbQSzGc6EmJMRVQRMFCUNREILj/bEP0Ai6cfAlRr0AuBHVyHm1iNlUxFOC5gUnhLFzT+hHPYMrxN8CUYtIM20cVw7nKe3A5wduKmwQAaVLIZ5yJWzKhCUiCVRwb6bNJwafY5lbcQVyzmbCTZkzuYq5g6RaVpMNkWwKXHkq1YL1mHEmuZmAYRZDMGYTSjsW6zTjTowkBLKVYA3GVUJ0uHOYn9Dac0ugNmUpR/VYDNxCMaF4HOeGULZhQiFdCa7SIw7ciCu3+DOeRvuhTxxZmG+xYjolr7jM96RBQ9eIsI9TUNusyM8J2xybPBZcooJSLpTjiCm0ssI6UHHYsp8GJ2/9LMvuWzCCS/EHpT6ln3i1fWZeKZbZHA3NQ7cHuB8MlM1NsCK/IMsMIFM0QqMzI7hDK/FO6yAhXfjsTO8B9oZBDG6E1YoVE4u9LyQtlUQW8jd2AZcXHUY5pK2lVnAZnRPsD56OgOJwXnk3vQPFlesnt/P1Ic1i/aO6O/vUzu9bmksnDoh4PC8cCxTyRR8vkjIdC3KjYP4Q9lug81Us6tn3v4iSGLNE2IIaug1l9+ACSp4obSC5Aani0q027larLg1j2SgJi/kAq42jR8Hl2Gh+C68jOptspNjP4NdCqyEeA40oNsBrP5eAWnV8Ix+hjXBzSqK1SfbJO/7GLrqD1xcd1rUxqESoSWFsRz16fgTFi5qI3cHrqBHhCG96KwgA9VPphvFiv2OvxPqxhMZ6gqIezv1uVRWVnZv23vro7Y2GccS6QpGlee5N1i02NcQE79NTncsECy6xztAICZfgrn7wo9AI1HItw4+h+JEbg9C9rDv5dSLODsecY94FfELdfddfFRJWSlmJMBA7Cii4tSVXJhJQzjvKaE6Pi7JVWFDD+5QB1LArKhe4FDRbsoFd7rFWwvp+9a4NBSFALdSrQN9uH3yh8DvcgcxADAn8aSr/fm2/0PyfafxCxTJP4A4ZSR72IxzWCMFDq6AEkQhe13YhcKTcLRzlmVYW2AxxDSFqOvgJ7JCKhx62g0wwLdEzG6pblHFJTP8oczDgjIArqM68KkXYBIX8lhS4pxBneaO/Labncsbn1ndfjnMpP6xg/K21eJpXGB1BplzKzbj/Fc2mmlTUGXNpoY5g+8vm4E0EQVEKynHPbjt++unk8LePJ6c/906jRvRrr3fY++39oHf627A7+JmgUYmTOterBbx8OXXVuaP6nA2WLwwrJjdZ1/dV0MQod0XY/ivACBiWZv08gjo3bhhcbizppUKJFNfTbkQp/+y/P2y3F41o4jZXAW+cctsZ8g4zbinWYh05noYmntdVvQJTbEIZekKfbwVKDmh4IBN5FoVrk7oftdvr236iMAukam3Z/kPcfcseWhGq9nRVsUdjBh01V+IyhyoMm/ohQR57N6cvp9++X1QaOOsfVacUtY6qEny9jP72ThKGyb7vEZKgo70akpSdzritTjGaD8m2KvwFrqZZz7Qu6t2AKie7M/9QrdklwVLytyTD/g1NshoLBtm0RILUZ9t7nKUNDL6g2XvXXm+FgHaf+au4StfglFBOexUuhYALD4N8VMEAreCzQ6iTGbgSOrfL0GgXTLHHwli3z1nIxpJPKIBNKaHjrgaoEEcY64rDvkB3/tBp+maMSW/fcio54PSSzj4OvUamf+QLmglkUs8RryJJ1vc7jj9wGVjeLEYUFRof4+iOhcqlLMX4AMYun9zbGlhrwlz5qV9NouX217Mnkd9bbdJeOoIk2evqQd9WjCFMC6U7YWkbXgXhDHjJaOxNavqmnVAfbzZ0QS/+t21QsSMCrnVBl+QpCpn7hamyurgVejc3d8BuoFl0XpYaL9sbT1vaqjcw8DMO8uw2bG57j4JK0Ku3F1ZZ3RAKb3kNYZmdT5xuwe3qTq2qgvg9W2/g0HWuKierStFCbThAmqup6cXyLTH2tmw48ZLqPcsSw8cu5D4hLNVzvCVGHp5e3CLL+2LouJTw/T/0gXwIJiQwLNpuewThIx0qHhd0oMOMKFxgY4gaRGQCtTYesTa1xPSVD3LV3D2uu7AwfnURZGcyhyZ7I1LhQmNY/OFXRxaxe2v/0uQOTa4ljRSUa+62ppBaExyHebcrHNqLWq8+FG+W3fPbFSGGlPn4tx7ylOkWtp+BTcVkCkWLEFfslh/euUSxO2mvVW2etlebjmsKo/T7yaaMu6sYGKOpjVfGRSq9pdq3XhWVQ0P6X7b9LOOpVpOvdQ8XQ/n6pdvtqX9m9EhC+ve7XKPN7R7Qt4ttfnrlzxQDQTzvmz8Oh++YJ8ZinZS27nVZFDqa7FgbBp85WmuDPWm3mVAJrgFrkOzeIU9YON7u+ak46MnyoLfasWOdq6Qcgq1xqxkm9pvuj6VgLZ/s5fX+hV9hKOggz5ERgFdEysHLy6PhOqZsyXfcC0y5x9Ueb2wFBn3/HusW2jCp9ac8Y/ehOWk20ASkxqsitBL7oLkUF4hGYdUpuKnGW9iZJoPJuJtGnah19bBFmWTLG1yEXQZzRRDp7DrKjYw60bU3m0Wn1bqeausWnWu8wbKIVoAOvvOuE1wukjrmcuo5rgcNfFE/obEL4Ll7KB8a4RW55+3n7Y2UcOgWKpXJV3SmzmWbywQ0eCOlxeIcdRPnPgie4ZV1/UlA1Dk7b0Qj4AbMwSdMN87O60MHSNLrp5hQQcJMYIKyKslrGncw4tgr4LmbIhryHu2vU8s541dcyBAo2QDk+OAXrvgEEoaXgjDyoNV7pBRhEH/THwwPBr3BoH/yFoEbMgoCLZblL8ULaiKl0FFMg6Ji9HHhUj99HJLhYZQ5ra7197xD167l1yot1Z15Z3KoF4sql6hdYz8rnp5vKv9VU1avfm97s0Jy5fLzhlkhbahP2pz9VnM3paK1t+UF2fZ60uVvLkaP2o+eHLSfHzx8Nnz4uPP0Saf9sPn4H09/jfz9wO3vl3PEr0Bt5f7dWdG4qdYTcGD1oLpehD0DdInapZ66Hv2Fl7Pypsn6hZJwN4SucXjfql26WCK14XLA+vuiab3tzcap6y2/DUrY0oryDaPzdTy2DLvqEAvbLO3QO2n7hkjbdznaoXXR9o3Isb8oWoM11FA87Q2GGMDWw1wxAqurzABP5gdOH+A9Lox3NfRApUieiUTOWSk4G+VWKCyQBPPGk1BqNbEiCTflfe9DKI/cisYEjymY+xMFI4vttFqz2awZ8zRXCcdKMlqaFDEgGit7g9Gb8KSxMjnRsS1nC02/W6ao5bQCIduifK8o5kVXD/3ZYl3KVY3LoNa4WVVa7e9Jf/3La+1fXuG0cPDZtTLJhUIF01ZdB5hxhlr3QcRGha+hU3nEcBZdX+Nh997IxQIfUzvbH6wFwKBjtRFNgVMoOLuO6KyKXvuNORiiEFUUWut/LRrFjG4cQ+ZuHHtew0vvTgZDPPLC/9RSneAcw2f4HzY+izoRxTpSGQ6gZ9eR5GqSE7yMPE38/BdLt5sy +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search tasks

+ - + Returns the list of tasks that satisfy search request params.
  • If an empty body is provided, all tasks are returned.
  • Only one of `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` search options must be present in request.
-## Request + -

Body

    followUpDate object
    + -A range of due dates for the tasks to search for. +If defined, the query returns only tasks to which all clauses apply.
    However, it's important to note that this filtering mechanism is
    designed to work exclusively with truncated variables. This means
    variables of a larger size are not compatible with this filter, and
    attempts to use them may result in inaccurate or incomplete query results.", + items: { + type: "object", + properties: { + name: { + type: "string", + description: "The name of the variable.", + }, + value: { + type: "string", + description: + "The value of the variable. When specifying the variable value, it's crucial to maintain consistency with JSON values (serialization for the complex objects such as list) and ensure that strings remain appropriately formatted.", + }, + operator: { + type: "string", + description: + "The comparison operator to use for the variable.
    * `eq`: Equals", + enum: ["eq"], + }, + }, + title: "TaskByVariables", + }, + }, + tenantIds: { + type: "array", + description: + "An array of Tenant IDs to filter tasks. When multi-tenancy is
    enabled, tasks associated with the specified tenant IDs are returned;
    if disabled, this parameter is ignored.", + items: { type: "string" }, + }, + sort: { + type: "array", + description: + "An array of objects specifying the fields to sort the results by.", + items: { + type: "object", + properties: { + field: { + type: "string", + enum: [ + "completionTime", + "creationTime", + "followUpDate", + "dueDate", + "priority", + ], + }, + order: { + type: "string", + description: "* `ASC`: Ascending
    * `DESC`: Descending", + enum: ["ASC", "DESC"], + }, + }, + description: "Sort results by a specific field.", + title: "TaskOrderBy", + }, + }, + searchAfter: { + type: "array", + description: + "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page.
    It enables the API to return a page of tasks that directly follow the task identified by the provided values, with respect to the sorting order.", + items: { type: "string" }, + }, + searchAfterOrEqual: { + type: "array", + description: + "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page.
    It enables the API to return a page of tasks that directly follow or are equal to the task identified by the provided values, with respect to the sorting order.", + items: { type: "string" }, + }, + searchBefore: { + type: "array", + description: + "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page.
    It enables the API to return a page of tasks that directly precede the task identified by the provided values, with respect to the sorting order.", + items: { type: "string" }, + }, + searchBeforeOrEqual: { + type: "array", + description: + "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page.
    It enables the API to return a page of tasks that directly precede or are equal to the task identified by the provided values, with respect to the sorting order.", + items: { type: "string" }, + }, + includeVariables: { + type: "array", + description: + "An array used to specify a list of variable names that should be included in the response when querying tasks.
    This field allows users to selectively retrieve specific variables associated with the tasks returned in the search results.", + items: { + type: "object", + properties: { + name: { + type: "string", + description: "The name of the variable.", + }, + alwaysReturnFullValue: { + type: "boolean", + description: + "Always return the full value of the variable?", + default: false, + }, + }, + title: "IncludeVariable", + }, + }, + implementation: { + type: "string", + enum: ["JOB_WORKER", "ZEEBE_USER_TASK"], + }, + priority: { + description: + "Rules to filter out tasks by their priority. Applicable only for Zeebe user tasks.", + type: "object", + properties: { + eq: { type: "integer", minimum: 0, maximum: 100 }, + gte: { type: "integer", minimum: 0, maximum: 100 }, + gt: { type: "integer", minimum: 0, maximum: 100 }, + lt: { type: "integer", minimum: 0, maximum: 100 }, + lte: { type: "integer", minimum: 0, maximum: 100 }, + }, + }, + }, + description: "Request object to search tasks by provided params.", + title: "TaskSearchRequest", + }, + }, + }, + }} +>
    -
    dueDate object
    - -A range of due dates for the tasks to search for. - -
    taskVariables object[]
    - -An array of filter clauses specifying the variables to filter for.
    If defined, the query returns only tasks to which all clauses apply.
    However, it's important to note that this filtering mechanism is
    designed to work exclusively with truncated variables. This means
    variables of a larger size are not compatible with this filter, and
    attempts to use them may result in inaccurate or incomplete query results. - -
  • Array [
  • * `eq`: Equals","enum":["eq"]}}>
  • ]
  • enabled, tasks associated with the specified tenant IDs are returned;
    if disabled, this parameter is ignored.","items":{"type":"string"}}}>
    sort object[]
    - -An array of objects specifying the fields to sort the results by. - -
  • Array [
  • * `DESC`: Descending","enum":["ASC","DESC"]}}>
  • ]
  • It enables the API to return a page of tasks that directly follow the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly follow or are equal to the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly precede the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly precede or are equal to the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>
    includeVariables object[]
    - -An array used to specify a list of variable names that should be included in the response when querying tasks.
    This field allows users to selectively retrieve specific variables associated with the tasks returned in the search results. - -
  • Array [
  • ]
  • priority object
    - -Rules to filter out tasks by their priority. Applicable only for Zeebe user tasks. - -
- -On success returned. - -
Schema
  • Array [
  • variables object[]
    - -An array of the task's variables. Only variables specified in `TaskSearchRequest.includeVariables` are returned. Note that a variable's draft value is not returned in `TaskSearchResponse`. - -
  • Array [
  • draft object
    - -The draft value of the variable. - -
  • ]
  • ]
- -An error is returned when more than one search parameters among `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` are present in request - -
Schema
+ diff --git a/docs/apis-tools/tasklist-api-rest/specifications/sidebar.js b/docs/apis-tools/tasklist-api-rest/specifications/sidebar.js deleted file mode 100644 index 8c3ec36257d..00000000000 --- a/docs/apis-tools/tasklist-api-rest/specifications/sidebar.js +++ /dev/null @@ -1,78 +0,0 @@ -module.exports = [ - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/tasklist-rest-api", - }, - { - type: "category", - label: "Form", - items: [ - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/get-form", - label: "Get a form", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Task", - items: [ - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/save-draft-task-variables", - label: "Save draft variables", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/search-task-variables", - label: "Search task variables", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/search-tasks", - label: "Search tasks", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/unassign-task", - label: "Unassign a task", - className: "api-method patch", - }, - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/complete-task", - label: "Complete a task", - className: "api-method patch", - }, - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/assign-task", - label: "Assign a task", - className: "api-method patch", - }, - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/get-task-by-id", - label: "Get a task", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Variables", - items: [ - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/get-variable-by-id", - label: "Get a variable", - className: "api-method get", - }, - ], - }, -]; diff --git a/docs/apis-tools/tasklist-api-rest/specifications/sidebar.ts b/docs/apis-tools/tasklist-api-rest/specifications/sidebar.ts new file mode 100644 index 00000000000..94424ac0984 --- /dev/null +++ b/docs/apis-tools/tasklist-api-rest/specifications/sidebar.ts @@ -0,0 +1,84 @@ +import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; + +const sidebar: SidebarsConfig = { + apisidebar: [ + { + type: "doc", + id: "apis-tools/tasklist-api-rest/specifications/tasklist-rest-api", + }, + { + type: "category", + label: "Form", + items: [ + { + type: "doc", + id: "apis-tools/tasklist-api-rest/specifications/get-form", + label: "Get a form", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Task", + items: [ + { + type: "doc", + id: "apis-tools/tasklist-api-rest/specifications/save-draft-task-variables", + label: "Save draft variables", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/tasklist-api-rest/specifications/search-task-variables", + label: "Search task variables", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/tasklist-api-rest/specifications/search-tasks", + label: "Search tasks", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/tasklist-api-rest/specifications/unassign-task", + label: "Unassign a task", + className: "api-method patch", + }, + { + type: "doc", + id: "apis-tools/tasklist-api-rest/specifications/complete-task", + label: "Complete a task", + className: "api-method patch", + }, + { + type: "doc", + id: "apis-tools/tasklist-api-rest/specifications/assign-task", + label: "Assign a task", + className: "api-method patch", + }, + { + type: "doc", + id: "apis-tools/tasklist-api-rest/specifications/get-task-by-id", + label: "Get a task", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Variables", + items: [ + { + type: "doc", + id: "apis-tools/tasklist-api-rest/specifications/get-variable-by-id", + label: "Get a variable", + className: "api-method get", + }, + ], + }, + ], +}; + +export default sidebar.apisidebar; diff --git a/docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api.info.mdx b/docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api.info.mdx index a8d732b0d7d..50bd714d180 100644 --- a/docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api.info.mdx +++ b/docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api.info.mdx @@ -9,16 +9,78 @@ custom_edit_url: null --- import ApiLogo from "@theme/ApiLogo"; +import Heading from "@theme/Heading"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; import Export from "@theme/ApiExplorer/Export"; -

Tasklist REST API

+ Tasklist is a ready-to-use API application to rapidly implement business processes alongside user tasks in Zeebe. -

Authentication

- -Cookie-based authentication is only available on Self-Managed clusters. - -
Security Scheme Type:apiKey
Header parameter name:TASKLIST-SESSION
Security Scheme Type:http
HTTP Authorization Scheme:bearer
Bearer format:JWT

License

License
+
+ + + + Cookie-based authentication is only available on Self-Managed clusters. +
+ + + + + + + + + + + +
Security Scheme Type:apiKey
Header parameter name:TASKLIST-SESSION
+
+
+ +
+ + + + + + + + + + + + + + + +
Security Scheme Type:http
HTTP Authorization Scheme:bearer
Bearer format:JWT
+
+
+
+
+
+

Contact

+ + URL: [https://www.camunda.com](https://www.camunda.com) +
+
+

License

+ License +
diff --git a/docs/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx index 2e474e4b709..5b36891f33d 100644 --- a/docs/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx +++ b/docs/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx @@ -5,47 +5,231 @@ description: "Unassign a task with `taskId`. Returns the task." sidebar_label: "Unassign a task" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Unassign a task

+ Unassign a task with `taskId`. Returns the task. -## Request + -

Path Parameters

+ -On success returned. + -
Schema
- -An error is returned when the task is not active (not in the CREATED state).
An error is returned if the task was not claimed (assigned) before. - -
Schema
- -An error is returned when the task with the `taskId` is not found. - -
Schema
+An error is returned if the task was not claimed (assigned) before.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + "404": { + description: + "An error is returned when the task with the `taskId` is not found.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + }} +> diff --git a/docs/apis-tools/tasklist-api-rest/specifications/versions.json b/docs/apis-tools/tasklist-api-rest/specifications/versions.json new file mode 100644 index 00000000000..71ac271e29b --- /dev/null +++ b/docs/apis-tools/tasklist-api-rest/specifications/versions.json @@ -0,0 +1,12 @@ +[ + { + "version": "1", + "label": "Unused but required field", + "baseUrl": "Unused but required field" + }, + { + "version": "8.6", + "label": "Unused but required field", + "baseUrl": "Unused but required field" + } +] diff --git a/docusaurus.config.js b/docusaurus.config.js index 1280a40afbf..505d238ec5e 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -49,18 +49,18 @@ module.exports = { "3.14.0": { label: "8.6 / 3.14.0", }, - "3.13.0": { - label: "8.5 / 3.13.0", - banner: "none", - }, - "3.12.0": { - label: "8.4 / 3.12.0", - banner: "none", - }, - "3.11.0": { - label: "8.3 / 3.11.0", - banner: "none", - }, + // "3.13.0": { + // label: "8.5 / 3.13.0", + // banner: "none", + // }, + // "3.12.0": { + // label: "8.4 / 3.12.0", + // banner: "none", + // }, + // "3.11.0": { + // label: "8.3 / 3.11.0", + // banner: "none", + // }, }, }, ], @@ -78,6 +78,18 @@ module.exports = { groupPathsBy: "tag", }, hideSendButton: true, + version: "1", + label: "Unused but required field", + baseUrl: "Unused but required field", + versions: { + 8.6: { + specPath: "api/operate/version-8.6/operate-openapi.yaml", + outputDir: + "versioned_docs/version-8.6/apis-tools/operate-api/specifications", + label: "Unused but required field", + baseUrl: "Unused but required field", + }, + }, }, }, }, @@ -96,6 +108,18 @@ module.exports = { groupPathsBy: "tag", }, hideSendButton: true, + version: "1", + label: "Unused but required field", + baseUrl: "Unused but required field", + versions: { + 8.6: { + specPath: "api/tasklist/version-8.6/tasklist-openapi.yaml", + outputDir: + "versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications", + label: "Unused but required field", + baseUrl: "Unused but required field", + }, + }, }, }, }, @@ -114,6 +138,19 @@ module.exports = { groupPathsBy: "tag", }, hideSendButton: true, + version: "1", + label: "Unused but required field", + baseUrl: "Unused but required field", + versions: { + 8.6: { + specPath: + "api/administration-sm/version-8.6/administration-sm-openapi.yaml", + outputDir: + "versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications", + label: "Unused but required field", + baseUrl: "Unused but required field", + }, + }, }, }, }, @@ -132,6 +169,48 @@ module.exports = { groupPathsBy: "tag", }, hideSendButton: true, + version: "1", + label: "Unused but required field", + baseUrl: "Unused but required field", + versions: { + 8.6: { + specPath: "api/camunda/version-8.6/camunda-openapi.yaml", + outputDir: + "versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications", + label: "Unused but required field", + baseUrl: "Unused but required field", + }, + }, + }, + }, + }, + ], + [ + // Zeebe REST API docs generation (removed at v8.7) + "docusaurus-plugin-openapi-docs", + { + id: "api-zeebe-openapi", + docsPluginId: "default", + config: { + zeebe: { + specPath: "inactive", + outputDir: "inactive", + sidebarOptions: { + groupPathsBy: "tag", + }, + hideSendButton: true, + version: "1", + label: "Unused but required field", + baseUrl: "Unused but required field", + versions: { + 8.6: { + specPath: "api/zeebe/version-8.6/zeebe-openapi.yaml", + outputDir: + "versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications", + label: "Unused but required field", + baseUrl: "Unused but required field", + }, + }, }, }, }, @@ -398,17 +477,17 @@ module.exports = { beforeDefaultRemarkPlugins: [versionedLinks], // 👋 When cutting a new version, remove the banner for maintained versions by adding an entry. Remove the entry to versions >18 months old. versions: { - 8.5: { - banner: "none", - }, - 8.4: { - banner: "none", - }, - 8.3: { - banner: "none", - }, + // 8.5: { + // banner: "none", + // }, + // 8.4: { + // banner: "none", + // }, + // 8.3: { + // banner: "none", + // }, }, - docLayoutComponent: "@theme/DocPage", + // docLayoutComponent: "@theme/DocPage", docItemComponent: "@theme/ApiItem", }, blog: false, diff --git a/optimize_versions.json b/optimize_versions.json index ac645f524f1..a2b628f3d62 100644 --- a/optimize_versions.json +++ b/optimize_versions.json @@ -1 +1 @@ -["3.14.0", "3.13.0", "3.12.0", "3.11.0"] +["3.14.0"] diff --git a/package-lock.json b/package-lock.json index 74a3fb1512f..fada906a16f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,19 +10,19 @@ "dependencies": { "@auth0/auth0-react": "^2.2.4", "@bpmn-io/form-js": "^1.12.0", - "@docusaurus/core": "^2.4.1", - "@docusaurus/preset-classic": "^2.4.1", - "@docusaurus/theme-mermaid": "^2.4.1", - "@mdx-js/react": "^1.6.22", + "@docusaurus/core": "^3.0.1", + "@docusaurus/preset-classic": "^3.0.1", + "@docusaurus/theme-mermaid": "^3.0.1", + "@mdx-js/react": "^3.1.0", "@saucelabs/theme-github-codeblock": "^0.2.3", "clsx": "^2.1.1", "docusaurus": "^1.14.7", - "docusaurus-plugin-openapi-docs": "^2.0.4", - "docusaurus-theme-openapi-docs": "^2.0.4", + "docusaurus-plugin-openapi-docs": "^4.3.1", + "docusaurus-theme-openapi-docs": "^4.3.1", "mixpanel-browser": "^2.56.0", "pushfeedback-react": "^0.1.30", - "react": "^17.0.2", - "react-dom": "^17.0.2", + "react": "^18.3.1", + "react-dom": "^18.3.1", "react-player": "^2.16.0", "unist-util-visit": "^5.0.0" }, @@ -40,28 +40,34 @@ } }, "node_modules/@algolia/autocomplete-core": { - "version": "1.9.3", + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.17.7.tgz", + "integrity": "sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q==", "license": "MIT", "dependencies": { - "@algolia/autocomplete-plugin-algolia-insights": "1.9.3", - "@algolia/autocomplete-shared": "1.9.3" + "@algolia/autocomplete-plugin-algolia-insights": "1.17.7", + "@algolia/autocomplete-shared": "1.17.7" } }, "node_modules/@algolia/autocomplete-plugin-algolia-insights": { - "version": "1.9.3", + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.7.tgz", + "integrity": "sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A==", "license": "MIT", "dependencies": { - "@algolia/autocomplete-shared": "1.9.3" + "@algolia/autocomplete-shared": "1.17.7" }, "peerDependencies": { "search-insights": ">= 1 < 3" } }, "node_modules/@algolia/autocomplete-preset-algolia": { - "version": "1.9.3", + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.7.tgz", + "integrity": "sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA==", "license": "MIT", "dependencies": { - "@algolia/autocomplete-shared": "1.9.3" + "@algolia/autocomplete-shared": "1.17.7" }, "peerDependencies": { "@algolia/client-search": ">= 4.9.1 < 6", @@ -69,7 +75,9 @@ } }, "node_modules/@algolia/autocomplete-shared": { - "version": "1.9.3", + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.7.tgz", + "integrity": "sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg==", "license": "MIT", "peerDependencies": { "@algolia/client-search": ">= 4.9.1 < 6", @@ -77,114 +85,351 @@ } }, "node_modules/@algolia/cache-browser-local-storage": { - "version": "4.19.1", + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.24.0.tgz", + "integrity": "sha512-t63W9BnoXVrGy9iYHBgObNXqYXM3tYXCjDSHeNwnsc324r4o5UiVKUiAB4THQ5z9U5hTj6qUvwg/Ez43ZD85ww==", "license": "MIT", "dependencies": { - "@algolia/cache-common": "4.19.1" + "@algolia/cache-common": "4.24.0" } }, "node_modules/@algolia/cache-common": { - "version": "4.19.1", + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.24.0.tgz", + "integrity": "sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==", "license": "MIT" }, "node_modules/@algolia/cache-in-memory": { - "version": "4.19.1", + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.24.0.tgz", + "integrity": "sha512-gDrt2so19jW26jY3/MkFg5mEypFIPbPoXsQGQWAi6TrCPsNOSEYepBMPlucqWigsmEy/prp5ug2jy/N3PVG/8w==", + "license": "MIT", + "dependencies": { + "@algolia/cache-common": "4.24.0" + } + }, + "node_modules/@algolia/client-abtesting": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.18.0.tgz", + "integrity": "sha512-DLIrAukjsSrdMNNDx1ZTks72o4RH/1kOn8Wx5zZm8nnqFexG+JzY4SANnCNEjnFQPJTTvC+KpgiNW/CP2lumng==", "license": "MIT", "dependencies": { - "@algolia/cache-common": "4.19.1" + "@algolia/client-common": "5.18.0", + "@algolia/requester-browser-xhr": "5.18.0", + "@algolia/requester-fetch": "5.18.0", + "@algolia/requester-node-http": "5.18.0" + }, + "engines": { + "node": ">= 14.0.0" } }, "node_modules/@algolia/client-account": { - "version": "4.19.1", + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.24.0.tgz", + "integrity": "sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "4.24.0", + "@algolia/client-search": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/client-account/node_modules/@algolia/client-common": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", + "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", + "license": "MIT", + "dependencies": { + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/client-account/node_modules/@algolia/client-search": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.24.0.tgz", + "integrity": "sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==", "license": "MIT", "dependencies": { - "@algolia/client-common": "4.19.1", - "@algolia/client-search": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" } }, "node_modules/@algolia/client-analytics": { - "version": "4.19.1", + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.24.0.tgz", + "integrity": "sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "4.24.0", + "@algolia/client-search": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/client-analytics/node_modules/@algolia/client-common": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", + "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", + "license": "MIT", + "dependencies": { + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/client-analytics/node_modules/@algolia/client-search": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.24.0.tgz", + "integrity": "sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==", "license": "MIT", "dependencies": { - "@algolia/client-common": "4.19.1", - "@algolia/client-search": "4.19.1", - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" } }, "node_modules/@algolia/client-common": { - "version": "4.19.1", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.18.0.tgz", + "integrity": "sha512-X1WMSC+1ve2qlMsemyTF5bIjwipOT+m99Ng1Tyl36ZjQKTa54oajBKE0BrmM8LD8jGdtukAgkUhFoYOaRbMcmQ==", + "license": "MIT", + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-insights": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.18.0.tgz", + "integrity": "sha512-FAJRNANUOSs/FgYOJ/Njqp+YTe4TMz2GkeZtfsw1TMiA5mVNRS/nnMpxas9771aJz7KTEWvK9GwqPs0K6RMYWg==", "license": "MIT", "dependencies": { - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "5.18.0", + "@algolia/requester-browser-xhr": "5.18.0", + "@algolia/requester-fetch": "5.18.0", + "@algolia/requester-node-http": "5.18.0" + }, + "engines": { + "node": ">= 14.0.0" } }, "node_modules/@algolia/client-personalization": { - "version": "4.19.1", + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.24.0.tgz", + "integrity": "sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==", "license": "MIT", "dependencies": { - "@algolia/client-common": "4.19.1", - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/client-personalization/node_modules/@algolia/client-common": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", + "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", + "license": "MIT", + "dependencies": { + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/client-query-suggestions": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.18.0.tgz", + "integrity": "sha512-x6XKIQgKFTgK/bMasXhghoEjHhmgoP61pFPb9+TaUJ32aKOGc65b12usiGJ9A84yS73UDkXS452NjyP50Knh/g==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.18.0", + "@algolia/requester-browser-xhr": "5.18.0", + "@algolia/requester-fetch": "5.18.0", + "@algolia/requester-node-http": "5.18.0" + }, + "engines": { + "node": ">= 14.0.0" } }, "node_modules/@algolia/client-search": { - "version": "4.19.1", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.18.0.tgz", + "integrity": "sha512-qI3LcFsVgtvpsBGR7aNSJYxhsR+Zl46+958ODzg8aCxIcdxiK7QEVLMJMZAR57jGqW0Lg/vrjtuLFDMfSE53qA==", "license": "MIT", "dependencies": { - "@algolia/client-common": "4.19.1", - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "5.18.0", + "@algolia/requester-browser-xhr": "5.18.0", + "@algolia/requester-fetch": "5.18.0", + "@algolia/requester-node-http": "5.18.0" + }, + "engines": { + "node": ">= 14.0.0" } }, "node_modules/@algolia/events": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@algolia/events/-/events-4.0.1.tgz", + "integrity": "sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==", "license": "MIT" }, + "node_modules/@algolia/ingestion": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.18.0.tgz", + "integrity": "sha512-bGvJg7HnGGm+XWYMDruZXWgMDPVt4yCbBqq8DM6EoaMBK71SYC4WMfIdJaw+ABqttjBhe6aKNRkWf/bbvYOGyw==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.18.0", + "@algolia/requester-browser-xhr": "5.18.0", + "@algolia/requester-fetch": "5.18.0", + "@algolia/requester-node-http": "5.18.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, "node_modules/@algolia/logger-common": { - "version": "4.19.1", + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.24.0.tgz", + "integrity": "sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==", "license": "MIT" }, "node_modules/@algolia/logger-console": { - "version": "4.19.1", + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.24.0.tgz", + "integrity": "sha512-X4C8IoHgHfiUROfoRCV+lzSy+LHMgkoEEU1BbKcsfnV0i0S20zyy0NLww9dwVHUWNfPPxdMU+/wKmLGYf96yTg==", + "license": "MIT", + "dependencies": { + "@algolia/logger-common": "4.24.0" + } + }, + "node_modules/@algolia/monitoring": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.18.0.tgz", + "integrity": "sha512-lBssglINIeGIR+8KyzH05NAgAmn1BCrm5D2T6pMtr/8kbTHvvrm1Zvcltc5dKUQEFyyx3J5+MhNc7kfi8LdjVw==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.18.0", + "@algolia/requester-browser-xhr": "5.18.0", + "@algolia/requester-fetch": "5.18.0", + "@algolia/requester-node-http": "5.18.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/recommend": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-4.24.0.tgz", + "integrity": "sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==", + "license": "MIT", + "dependencies": { + "@algolia/cache-browser-local-storage": "4.24.0", + "@algolia/cache-common": "4.24.0", + "@algolia/cache-in-memory": "4.24.0", + "@algolia/client-common": "4.24.0", + "@algolia/client-search": "4.24.0", + "@algolia/logger-common": "4.24.0", + "@algolia/logger-console": "4.24.0", + "@algolia/requester-browser-xhr": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/requester-node-http": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/recommend/node_modules/@algolia/client-common": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", + "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", "license": "MIT", "dependencies": { - "@algolia/logger-common": "4.19.1" + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/recommend/node_modules/@algolia/client-search": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.24.0.tgz", + "integrity": "sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/@algolia/recommend/node_modules/@algolia/requester-browser-xhr": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.24.0.tgz", + "integrity": "sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==", + "license": "MIT", + "dependencies": { + "@algolia/requester-common": "4.24.0" + } + }, + "node_modules/@algolia/recommend/node_modules/@algolia/requester-node-http": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.24.0.tgz", + "integrity": "sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==", + "license": "MIT", + "dependencies": { + "@algolia/requester-common": "4.24.0" } }, "node_modules/@algolia/requester-browser-xhr": { - "version": "4.19.1", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.18.0.tgz", + "integrity": "sha512-1XFjW0C3pV0dS/9zXbV44cKI+QM4ZIz9cpatXpsjRlq6SUCpLID3DZHsXyE6sTb8IhyPaUjk78GEJT8/3hviqg==", "license": "MIT", "dependencies": { - "@algolia/requester-common": "4.19.1" + "@algolia/client-common": "5.18.0" + }, + "engines": { + "node": ">= 14.0.0" } }, "node_modules/@algolia/requester-common": { - "version": "4.19.1", + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.24.0.tgz", + "integrity": "sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==", "license": "MIT" }, + "node_modules/@algolia/requester-fetch": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.18.0.tgz", + "integrity": "sha512-0uodeNdAHz1YbzJh6C5xeQ4T6x5WGiUxUq3GOaT/R4njh5t78dq+Rb187elr7KtnjUmETVVuCvmEYaThfTHzNg==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.18.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, "node_modules/@algolia/requester-node-http": { - "version": "4.19.1", + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.18.0.tgz", + "integrity": "sha512-tZCqDrqJ2YE2I5ukCQrYN8oiF6u3JIdCxrtKq+eniuLkjkO78TKRnXrVcKZTmfFJyyDK8q47SfDcHzAA3nHi6w==", "license": "MIT", "dependencies": { - "@algolia/requester-common": "4.19.1" + "@algolia/client-common": "5.18.0" + }, + "engines": { + "node": ">= 14.0.0" } }, "node_modules/@algolia/transporter": { - "version": "4.19.1", + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.24.0.tgz", + "integrity": "sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==", "license": "MIT", "dependencies": { - "@algolia/cache-common": "4.19.1", - "@algolia/logger-common": "4.19.1", - "@algolia/requester-common": "4.19.1" + "@algolia/cache-common": "4.24.0", + "@algolia/logger-common": "4.24.0", + "@algolia/requester-common": "4.24.0" } }, "node_modules/@ampproject/remapping": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "license": "Apache-2.0", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" @@ -193,15 +438,37 @@ "node": ">=6.0.0" } }, + "node_modules/@antfu/install-pkg": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@antfu/install-pkg/-/install-pkg-0.4.1.tgz", + "integrity": "sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==", + "license": "MIT", + "dependencies": { + "package-manager-detector": "^0.2.0", + "tinyexec": "^0.3.0" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@antfu/utils": { + "version": "0.7.10", + "resolved": "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.10.tgz", + "integrity": "sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, "node_modules/@apidevtools/json-schema-ref-parser": { - "version": "10.1.0", + "version": "11.7.3", + "resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-11.7.3.tgz", + "integrity": "sha512-WApSdLdXEBb/1FUPca2lteASewEfpjEYJ8oXZP+0gExK5qSfsEKBKcA+WjY6Q4wvXwyv0+W6Kvc372pSceib9w==", "license": "MIT", "dependencies": { "@jsdevtools/ono": "^7.1.3", - "@types/json-schema": "^7.0.11", - "@types/lodash.clonedeep": "^4.5.7", - "js-yaml": "^4.1.0", - "lodash.clonedeep": "^4.5.0" + "@types/json-schema": "^7.0.15", + "js-yaml": "^4.1.0" }, "engines": { "node": ">= 16" @@ -214,6 +481,7 @@ "version": "2.2.4", "resolved": "https://registry.npmjs.org/@auth0/auth0-react/-/auth0-react-2.2.4.tgz", "integrity": "sha512-l29PQC0WdgkCoOc6WeMAY26gsy/yXJICW0jHfj0nz8rZZphYKrLNqTRWFFCMJY+sagza9tSgB1kG/UvQYgGh9A==", + "license": "MIT", "dependencies": { "@auth0/auth0-spa-js": "^2.1.3" }, @@ -225,12 +493,14 @@ "node_modules/@auth0/auth0-spa-js": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/@auth0/auth0-spa-js/-/auth0-spa-js-2.1.3.tgz", - "integrity": "sha512-NMTBNuuG4g3rame1aCnNS5qFYIzsTUV5qTFPRfTyYFS1feS6jsCBR+eTq9YkxCp1yuoM2UIcjunPaoPl77U9xQ==" + "integrity": "sha512-NMTBNuuG4g3rame1aCnNS5qFYIzsTUV5qTFPRfTyYFS1feS6jsCBR+eTq9YkxCp1yuoM2UIcjunPaoPl77U9xQ==", + "license": "MIT" }, "node_modules/@babel/code-frame": { "version": "7.26.2", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", @@ -241,9 +511,10 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.2.tgz", - "integrity": "sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz", + "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==", + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -252,6 +523,7 @@ "version": "7.26.0", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz", "integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==", + "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.26.0", @@ -277,26 +549,23 @@ "url": "https://opencollective.com/babel" } }, - "node_modules/@babel/core/node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - }, "node_modules/@babel/core/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/generator": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz", - "integrity": "sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz", + "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==", + "license": "MIT", "dependencies": { - "@babel/parser": "^7.26.2", - "@babel/types": "^7.26.0", + "@babel/parser": "^7.26.3", + "@babel/types": "^7.26.3", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" @@ -306,21 +575,12 @@ } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.9", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", "license": "MIT", "dependencies": { - "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.9" + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -330,6 +590,7 @@ "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", + "license": "MIT", "dependencies": { "@babel/compat-data": "^7.25.9", "@babel/helper-validator-option": "^7.25.9", @@ -341,38 +602,28 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dependencies": { - "yallist": "^3.0.2" - } - }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, - "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.20.2", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz", + "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==", "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-member-expression-to-functions": "^7.18.9", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.19.1", - "@babel/helper-split-export-declaration": "^7.18.6" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/traverse": "^7.25.9", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -381,12 +632,24 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.19.0", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz", + "integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==", "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "regexpu-core": "^5.1.0" + "@babel/helper-annotate-as-pure": "^7.25.9", + "regexpu-core": "^6.2.0", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -395,71 +658,39 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.3.3", - "license": "MIT", - "dependencies": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0-0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { - "version": "6.3.0", + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.18.9", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-explode-assignable-expression": { - "version": "7.18.6", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.19.0", - "license": "MIT", - "dependencies": { - "@babel/template": "^7.18.10", - "@babel/types": "^7.19.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.18.6", + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz", + "integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==", "license": "MIT", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" }, - "engines": { - "node": ">=6.9.0" + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.18.9", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", + "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", "license": "MIT", "dependencies": { - "@babel/types": "^7.18.9" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -469,6 +700,7 @@ "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", + "license": "MIT", "dependencies": { "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" @@ -481,6 +713,7 @@ "version": "7.26.0", "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", + "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9", @@ -494,10 +727,12 @@ } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.18.6", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", + "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", "license": "MIT", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -507,18 +742,20 @@ "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz", "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.18.9", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz", + "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-wrap-function": "^7.18.9", - "@babel/types": "^7.18.9" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-wrap-function": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -528,44 +765,30 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.19.1", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz", + "integrity": "sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==", "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.18.9", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.19.1", - "@babel/types": "^7.19.0" + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.20.2", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.20.2" }, - "engines": { - "node": ">=6.9.0" + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.20.0", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.20.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.18.6", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", + "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", "license": "MIT", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -575,6 +798,7 @@ "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -583,6 +807,7 @@ "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -591,18 +816,20 @@ "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.19.0", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz", + "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", "license": "MIT", "dependencies": { - "@babel/helper-function-name": "^7.19.0", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.0", - "@babel/types": "^7.19.0" + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -612,6 +839,7 @@ "version": "7.26.0", "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz", "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", + "license": "MIT", "dependencies": { "@babel/template": "^7.25.9", "@babel/types": "^7.26.0" @@ -621,236 +849,190 @@ } }, "node_modules/@babel/highlight": { - "version": "7.18.6", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.9.tgz", + "integrity": "sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==", "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" + "@babel/helper-validator-identifier": "^7.25.9", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/parser": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz", - "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==", + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", "dependencies": { - "@babel/types": "^7.26.0" - }, - "bin": { - "parser": "bin/babel-parser.js" + "color-convert": "^1.9.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=4" } }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.18.6", + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.18.9", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", - "@babel/plugin-proposal-optional-chaining": "^7.18.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" + "node": ">=4" } }, - "node_modules/@babel/plugin-proposal-async-generator-functions": { - "version": "7.20.1", + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-remap-async-to-generator": "^7.18.9", - "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "color-name": "1.1.3" } }, - "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" }, - "node_modules/@babel/plugin-proposal-class-static-block": { - "version": "7.18.6", + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" + "node": ">=0.8.0" } }, - "node_modules/@babel/plugin-proposal-dynamic-import": { - "version": "7.18.6", + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=4" } }, - "node_modules/@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.9", + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=4" } }, - "node_modules/@babel/plugin-proposal-json-strings": { - "version": "7.18.6", + "node_modules/@babel/parser": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz", + "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" + "@babel/types": "^7.26.3" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.18.9", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + "bin": { + "parser": "bin/babel-parser.js" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=6.0.0" } }, - "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", + "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-proposal-numeric-separator": { - "version": "7.18.6", + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", + "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.20.2", + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz", + "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.20.1", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.20.1" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.13.0" } }, - "node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.18.9", + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", + "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-proposal-private-methods": { + "node_modules/@babel/plugin-proposal-class-properties": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", @@ -863,14 +1045,18 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.18.6", + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.", "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" }, "engines": { "node": ">=6.9.0" @@ -879,15 +1065,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, "engines": { - "node": ">=4" + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" @@ -895,6 +1079,9 @@ }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -905,6 +1092,8 @@ }, "node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, "license": "MIT", "dependencies": { @@ -916,6 +1105,9 @@ }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" @@ -926,6 +1118,9 @@ }, "node_modules/@babel/plugin-syntax-class-static-block": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" @@ -939,6 +1134,8 @@ }, "node_modules/@babel/plugin-syntax-dynamic-import": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -947,21 +1144,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.20.0", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", + "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -974,7 +1163,7 @@ "version": "7.26.0", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", - "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, @@ -987,6 +1176,8 @@ }, "node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, "license": "MIT", "dependencies": { @@ -998,6 +1189,9 @@ }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -1007,10 +1201,12 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.18.6", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", + "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1021,6 +1217,9 @@ }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" @@ -1031,6 +1230,9 @@ }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -1041,6 +1243,9 @@ }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" @@ -1051,6 +1256,8 @@ }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -1061,6 +1268,9 @@ }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -1071,6 +1281,9 @@ }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -1081,6 +1294,9 @@ }, "node_modules/@babel/plugin-syntax-private-property-in-object": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" @@ -1094,6 +1310,9 @@ }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" @@ -1106,10 +1325,12 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.20.0", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", + "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1118,26 +1339,29 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-arrow-functions": { + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "license": "MIT", "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz", + "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-remap-async-to-generator": "^7.18.6" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1146,11 +1370,15 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz", + "integrity": "sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-remap-async-to-generator": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1159,11 +1387,15 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.20.2", + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz", + "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-remap-async-to-generator": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1172,19 +1404,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.20.2", + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz", + "integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==", "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-replace-supers": "^7.19.1", - "@babel/helper-split-export-declaration": "^7.18.6", - "globals": "^11.1.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1193,11 +1419,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.18.9", + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz", + "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1206,11 +1434,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.20.2", + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", + "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1219,25 +1450,34 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", + "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.12.0" } }, - "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.18.9", + "node_modules/@babel/plugin-transform-classes": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz", + "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/traverse": "^7.25.9", + "globals": "^11.1.0" }, "engines": { "node": ">=6.9.0" @@ -1246,12 +1486,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz", + "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", "license": "MIT", "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/template": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1260,11 +1502,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.18.8", + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz", + "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1273,13 +1517,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.18.9", + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", + "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-function-name": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1288,11 +1533,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-literals": { - "version": "7.18.9", + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", + "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1301,25 +1548,29 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.19.6", + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", + "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.19.6", - "@babel/helper-plugin-utils": "^7.19.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1328,13 +1579,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.19.6", + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", + "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.19.6", - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-simple-access": "^7.19.4" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1343,14 +1594,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.19.6", + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz", + "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", "license": "MIT", "dependencies": { - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.19.6", - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-validator-identifier": "^7.19.1" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1359,12 +1609,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz", + "integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==", "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1373,25 +1625,30 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.19.1", + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz", + "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.19.0", - "@babel/helper-plugin-utils": "^7.19.0" + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-new-target": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", + "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1400,12 +1657,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz", + "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1414,11 +1672,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.20.3", + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz", + "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1427,11 +1687,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", + "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1440,11 +1702,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-constant-elements": { - "version": "7.20.2", + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", + "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1453,11 +1718,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", + "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1466,15 +1734,16 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.19.0", + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", + "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/plugin-syntax-jsx": "^7.18.6", - "@babel/types": "^7.19.0" + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1483,11 +1752,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-jsx-development": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", + "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", "license": "MIT", "dependencies": { - "@babel/plugin-transform-react-jsx": "^7.18.6" + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1496,26 +1768,29 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-pure-annotations": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", + "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "regenerator-transform": "^0.15.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1524,11 +1799,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz", + "integrity": "sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1537,16 +1814,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-runtime": { - "version": "7.18.9", + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz", + "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.9", - "babel-plugin-polyfill-corejs2": "^0.3.1", - "babel-plugin-polyfill-corejs3": "^0.5.2", - "babel-plugin-polyfill-regenerator": "^0.3.1", - "semver": "^6.3.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1555,18 +1829,15 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { - "version": "6.3.0", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz", + "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1575,12 +1846,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-spread": { - "version": "7.19.0", + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", + "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1589,11 +1862,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz", + "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1602,11 +1877,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.18.9", + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1615,11 +1893,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.18.9", + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz", + "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1628,13 +1908,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-typescript": { - "version": "7.20.2", + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz", + "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.20.2", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-typescript": "^7.20.0" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1643,11 +1924,15 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.18.10", + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz", + "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1656,12 +1941,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", + "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1670,98 +1956,28 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/polyfill": { - "version": "7.12.1", + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.25.9.tgz", + "integrity": "sha512-Ncw2JFsJVuvfRsa2lSHiC55kETQVLSnsYGQ1JDDwkUeWGTL/8Tom8aLTnlqgoeuopWrbbGndrc9AlLYrIosrow==", "license": "MIT", "dependencies": { - "core-js": "^2.6.5", - "regenerator-runtime": "^0.13.4" + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/polyfill/node_modules/core-js": { - "version": "2.6.12", - "hasInstallScript": true, - "license": "MIT" - }, - "node_modules/@babel/preset-env": { - "version": "7.20.2", + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz", + "integrity": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==", "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.20.1", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-async-generator-functions": "^7.20.1", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-class-static-block": "^7.18.6", - "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.9", - "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.20.2", - "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.18.6", - "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.20.0", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.18.6", - "@babel/plugin-transform-async-to-generator": "^7.18.6", - "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.20.2", - "@babel/plugin-transform-classes": "^7.20.2", - "@babel/plugin-transform-computed-properties": "^7.18.9", - "@babel/plugin-transform-destructuring": "^7.20.2", - "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.9", - "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.8", - "@babel/plugin-transform-function-name": "^7.18.9", - "@babel/plugin-transform-literals": "^7.18.9", - "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.19.6", - "@babel/plugin-transform-modules-commonjs": "^7.19.6", - "@babel/plugin-transform-modules-systemjs": "^7.19.6", - "@babel/plugin-transform-modules-umd": "^7.18.6", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", - "@babel/plugin-transform-new-target": "^7.18.6", - "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.20.1", - "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.18.6", - "@babel/plugin-transform-reserved-words": "^7.18.6", - "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.19.0", - "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.9", - "@babel/plugin-transform-typeof-symbol": "^7.18.9", - "@babel/plugin-transform-unicode-escapes": "^7.18.10", - "@babel/plugin-transform-unicode-regex": "^7.18.6", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.20.2", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "core-js-compat": "^3.25.1", - "semver": "^6.3.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1770,58 +1986,64 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.6.0", + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz", + "integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==", "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-syntax-jsx": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.4.1", + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz", + "integrity": "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==", "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3" + "@babel/plugin-transform-react-jsx": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.0", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/preset-modules": { - "version": "0.1.5", + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz", + "integrity": "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-react": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz", + "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-react-display-name": "^7.18.6", - "@babel/plugin-transform-react-jsx": "^7.18.6", - "@babel/plugin-transform-react-jsx-development": "^7.18.6", - "@babel/plugin-transform-react-pure-annotations": "^7.18.6" + "@babel/helper-plugin-utils": "^7.25.9", + "regenerator-transform": "^0.15.2" }, "engines": { "node": ">=6.9.0" @@ -1830,30 +2052,29 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-typescript": { - "version": "7.18.6", + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz", + "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-typescript": "^7.18.6" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/register": { - "version": "7.21.0", + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", + "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", "license": "MIT", "dependencies": { - "clone-deep": "^4.0.1", - "find-cache-dir": "^2.0.0", - "make-dir": "^2.1.0", - "pirates": "^4.0.5", - "source-map-support": "^0.5.16" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1862,86 +2083,473 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/register/node_modules/find-cache-dir": { - "version": "2.1.0", + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.9.tgz", + "integrity": "sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==", "license": "MIT", "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "semver": "^6.3.1" }, "engines": { - "node": ">=6" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/register/node_modules/find-up": { - "version": "3.0.0", + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", + "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", "license": "MIT", "dependencies": { - "locate-path": "^3.0.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=6" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/register/node_modules/locate-path": { - "version": "3.0.0", + "node_modules/@babel/plugin-transform-spread": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz", + "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", "license": "MIT", "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "engines": { - "node": ">=6" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/register/node_modules/make-dir": { - "version": "2.1.0", + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz", + "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", "license": "MIT", "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=6" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/register/node_modules/p-locate": { - "version": "3.0.0", + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz", + "integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==", "license": "MIT", "dependencies": { - "p-limit": "^2.0.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=6" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/register/node_modules/path-exists": { - "version": "3.0.0", + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz", + "integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==", "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=4" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/register/node_modules/pkg-dir": { - "version": "3.0.0", + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.3.tgz", + "integrity": "sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==", "license": "MIT", "dependencies": { - "find-up": "^3.0.0" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-syntax-typescript": "^7.25.9" }, "engines": { - "node": ">=6" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/register/node_modules/semver": { - "version": "5.7.1", + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", + "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", + "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz", + "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", + "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/polyfill": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.12.1.tgz", + "integrity": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==", + "deprecated": "🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information.", + "license": "MIT", + "dependencies": { + "core-js": "^2.6.5", + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/@babel/polyfill/node_modules/core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", + "hasInstallScript": true, + "license": "MIT" + }, + "node_modules/@babel/polyfill/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "license": "MIT" + }, + "node_modules/@babel/preset-env": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.0.tgz", + "integrity": "sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.26.0", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.26.0", + "@babel/plugin-syntax-import-attributes": "^7.26.0", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.25.9", + "@babel/plugin-transform-async-generator-functions": "^7.25.9", + "@babel/plugin-transform-async-to-generator": "^7.25.9", + "@babel/plugin-transform-block-scoped-functions": "^7.25.9", + "@babel/plugin-transform-block-scoping": "^7.25.9", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-classes": "^7.25.9", + "@babel/plugin-transform-computed-properties": "^7.25.9", + "@babel/plugin-transform-destructuring": "^7.25.9", + "@babel/plugin-transform-dotall-regex": "^7.25.9", + "@babel/plugin-transform-duplicate-keys": "^7.25.9", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-dynamic-import": "^7.25.9", + "@babel/plugin-transform-exponentiation-operator": "^7.25.9", + "@babel/plugin-transform-export-namespace-from": "^7.25.9", + "@babel/plugin-transform-for-of": "^7.25.9", + "@babel/plugin-transform-function-name": "^7.25.9", + "@babel/plugin-transform-json-strings": "^7.25.9", + "@babel/plugin-transform-literals": "^7.25.9", + "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", + "@babel/plugin-transform-member-expression-literals": "^7.25.9", + "@babel/plugin-transform-modules-amd": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.25.9", + "@babel/plugin-transform-modules-systemjs": "^7.25.9", + "@babel/plugin-transform-modules-umd": "^7.25.9", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-new-target": "^7.25.9", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9", + "@babel/plugin-transform-numeric-separator": "^7.25.9", + "@babel/plugin-transform-object-rest-spread": "^7.25.9", + "@babel/plugin-transform-object-super": "^7.25.9", + "@babel/plugin-transform-optional-catch-binding": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9", + "@babel/plugin-transform-private-methods": "^7.25.9", + "@babel/plugin-transform-private-property-in-object": "^7.25.9", + "@babel/plugin-transform-property-literals": "^7.25.9", + "@babel/plugin-transform-regenerator": "^7.25.9", + "@babel/plugin-transform-regexp-modifiers": "^7.26.0", + "@babel/plugin-transform-reserved-words": "^7.25.9", + "@babel/plugin-transform-shorthand-properties": "^7.25.9", + "@babel/plugin-transform-spread": "^7.25.9", + "@babel/plugin-transform-sticky-regex": "^7.25.9", + "@babel/plugin-transform-template-literals": "^7.25.9", + "@babel/plugin-transform-typeof-symbol": "^7.25.9", + "@babel/plugin-transform-unicode-escapes": "^7.25.9", + "@babel/plugin-transform-unicode-property-regex": "^7.25.9", + "@babel/plugin-transform-unicode-regex": "^7.25.9", + "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.38.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { - "semver": "bin/semver" + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.26.3.tgz", + "integrity": "sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-transform-react-display-name": "^7.25.9", + "@babel/plugin-transform-react-jsx": "^7.25.9", + "@babel/plugin-transform-react-jsx-development": "^7.25.9", + "@babel/plugin-transform-react-pure-annotations": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz", + "integrity": "sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-syntax-jsx": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.25.9", + "@babel/plugin-transform-typescript": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/register": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.25.9.tgz", + "integrity": "sha512-8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA==", + "license": "MIT", + "dependencies": { + "clone-deep": "^4.0.1", + "find-cache-dir": "^2.0.0", + "make-dir": "^2.1.0", + "pirates": "^4.0.6", + "source-map-support": "^0.5.16" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/register/node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/register/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/register/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, "node_modules/@babel/runtime": { - "version": "7.22.11", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz", + "integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==", "license": "MIT", "dependencies": { "regenerator-runtime": "^0.14.0" @@ -1951,24 +2559,23 @@ } }, "node_modules/@babel/runtime-corejs3": { - "version": "7.18.9", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.26.0.tgz", + "integrity": "sha512-YXHu5lN8kJCb1LOb9PgV6pvak43X2h4HvRApcN5SdWeaItQOzfn1hgP6jasD6KWQyJDBxrVmA9o9OivlnNJK/w==", "license": "MIT", "dependencies": { - "core-js-pure": "^3.20.2", - "regenerator-runtime": "^0.13.4" + "core-js-pure": "^3.30.2", + "regenerator-runtime": "^0.14.0" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/runtime/node_modules/regenerator-runtime": { - "version": "0.14.0", - "license": "MIT" - }, "node_modules/@babel/template": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", @@ -1979,15 +2586,16 @@ } }, "node_modules/@babel/traverse": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz", - "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==", + "version": "7.26.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz", + "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==", + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.25.9", - "@babel/generator": "^7.25.9", - "@babel/parser": "^7.25.9", + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.3", + "@babel/parser": "^7.26.3", "@babel/template": "^7.25.9", - "@babel/types": "^7.25.9", + "@babel/types": "^7.26.3", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -1996,9 +2604,10 @@ } }, "node_modules/@babel/types": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz", - "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz", + "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==", + "license": "MIT", "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" @@ -2009,11 +2618,15 @@ }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true, "license": "MIT" }, "node_modules/@bpmn-io/cm-theme": { "version": "0.1.0-alpha.2", + "resolved": "https://registry.npmjs.org/@bpmn-io/cm-theme/-/cm-theme-0.1.0-alpha.2.tgz", + "integrity": "sha512-ZILgiYzxk3KMvxplUXmdRFQo45/JehDPg5k9tWfehmzUOSE13ssyLPil8uCloMQnb3yyzyOWTjb/wzKXTHlFQw==", "license": "MIT", "dependencies": { "@codemirror/language": "^6.3.1", @@ -2030,6 +2643,7 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/@bpmn-io/draggle/-/draggle-4.1.1.tgz", "integrity": "sha512-2frw1gBl5I3XGrIDg4CBy6bpJiOuslKUOg9T91Fke6bIttFkF0zxlTKh4E4zU8g7gAo4ze0HnKMZDgHxea+Itw==", + "license": "MIT", "dependencies": { "contra": "^1.9.4" } @@ -2038,6 +2652,7 @@ "version": "1.9.1", "resolved": "https://registry.npmjs.org/@bpmn-io/feel-editor/-/feel-editor-1.9.1.tgz", "integrity": "sha512-UxSORdh5cwKM4fib4f9ov6J1/BHGpQVNtA+wPyEdKQyCyz3wqwE2/xe5wneVR1j5QFC5m2Na8nTy4a1TDFvZTw==", + "license": "MIT", "dependencies": { "@bpmn-io/feel-lint": "^1.3.0", "@codemirror/autocomplete": "^6.16.2", @@ -2058,6 +2673,7 @@ "version": "1.3.1", "resolved": "https://registry.npmjs.org/@bpmn-io/feel-lint/-/feel-lint-1.3.1.tgz", "integrity": "sha512-wcFkJKhOm/iqCt5bzkKvxL5Dr9wKwUD+t164bQYbJsTYouAqmkkxiGsoqck42hXwdIhMSguZ+vqQ3hj5QdiYCA==", + "license": "MIT", "dependencies": { "@codemirror/language": "^6.10.0", "lezer-feel": "^1.2.3" @@ -2067,28 +2683,31 @@ } }, "node_modules/@bpmn-io/form-js": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js/-/form-js-1.12.0.tgz", - "integrity": "sha512-X+/fln7Pa6S/MUkDNbepKxAChdT5gcJl6m8dm63M7s51h0neP8os31/22bT1FPsHplQhNETkNoSkS9IYA2afGw==", + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@bpmn-io/form-js/-/form-js-1.13.1.tgz", + "integrity": "sha512-S2QB3vnz+MQBJXi2IAV/wbIfnXIgmiwQz8cNyNAd2iT9YiKco3X8nWDjFajInFi16zDANj3W4jrrA+QL2PBd2w==", + "license": "SEE LICENSE IN LICENSE", "dependencies": { - "@bpmn-io/form-js-carbon-styles": "^1.12.0", - "@bpmn-io/form-js-editor": "^1.12.0", - "@bpmn-io/form-js-playground": "^1.12.0", - "@bpmn-io/form-js-viewer": "^1.12.0" + "@bpmn-io/form-js-carbon-styles": "^1.13.1", + "@bpmn-io/form-js-editor": "^1.13.1", + "@bpmn-io/form-js-playground": "^1.13.1", + "@bpmn-io/form-js-viewer": "^1.13.1" } }, "node_modules/@bpmn-io/form-js-carbon-styles": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-carbon-styles/-/form-js-carbon-styles-1.12.0.tgz", - "integrity": "sha512-yY2C02wvYj0j74gBV2aVX5irR3XeJbw9D6dqdTfMsMkydNH1jN9YX8jezxWHZRHxe0iEF3VBrc6WwEfWwBXHjw==" + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-carbon-styles/-/form-js-carbon-styles-1.13.1.tgz", + "integrity": "sha512-K7+aXag8P8pOtM8zSJY5bwGsyw20VKUgI6MMDpmsZ1TVW9ZwXv220IpyaNVvXPghCgHhBJBnoFjkISfY34H+yQ==", + "license": "SEE LICENSE IN LICENSE" }, "node_modules/@bpmn-io/form-js-editor": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-editor/-/form-js-editor-1.12.0.tgz", - "integrity": "sha512-qcNQ74w/Nolg6HA0OP6lXabloYTh6q2TDriWLtQRxBsFCkYFhRepNa1zHr5iP//FQfc7Wh6YMBUdKsj38ZTXoQ==", + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-editor/-/form-js-editor-1.13.1.tgz", + "integrity": "sha512-mbAnJkxkXwBvUQLMuxM3a7F8NcfzmVqKtIR/tllLmkRc1ZlBoGWq251JK3S7ni05gTSzRPrWG436wTEzbnep4w==", + "license": "SEE LICENSE IN LICENSE", "dependencies": { "@bpmn-io/draggle": "^4.1.1", - "@bpmn-io/form-js-viewer": "^1.12.0", + "@bpmn-io/form-js-viewer": "^1.13.1", "@bpmn-io/properties-panel": "^3.25.0", "array-move": "^4.0.0", "big.js": "^6.2.2", @@ -2098,25 +2717,14 @@ "preact": "^10.5.14" } }, - "node_modules/@bpmn-io/form-js-editor/node_modules/big.js": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-6.2.2.tgz", - "integrity": "sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ==", - "engines": { - "node": "*" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/bigjs" - } - }, "node_modules/@bpmn-io/form-js-playground": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-playground/-/form-js-playground-1.12.0.tgz", - "integrity": "sha512-JAw0fK+DxK8uZvEQ/zDfpZxvDVeyyZHCxn9hdVGBga464NQvaWHuOMMMfQAu5LYlR+Gb57OK/t8sst3RhabIvw==", + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-playground/-/form-js-playground-1.13.1.tgz", + "integrity": "sha512-RfNNwwMPzfU1O9dykSN+j80zi5cYFJ/WEcDnwnByU8p5n2ARFXuVm5fsJSmB6rNefcBh1ea/2bV2Z4C1CXOVKg==", + "license": "SEE LICENSE IN LICENSE", "dependencies": { - "@bpmn-io/form-js-editor": "^1.12.0", - "@bpmn-io/form-js-viewer": "^1.12.0", + "@bpmn-io/form-js-editor": "^1.13.1", + "@bpmn-io/form-js-viewer": "^1.13.1", "@codemirror/autocomplete": "^6.18.3", "@codemirror/commands": "^6.7.1", "@codemirror/lang-json": "^6.0.1", @@ -2133,9 +2741,10 @@ } }, "node_modules/@bpmn-io/form-js-viewer": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-viewer/-/form-js-viewer-1.12.0.tgz", - "integrity": "sha512-31jwd3gjcfFlzA3yEKE+Mfo9EtYkCPST1kAHe8Ifv6aRXb08oMxgZQmDfWYdtcIayAD1n6IAaEKTr0RnDf4BOQ==", + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-viewer/-/form-js-viewer-1.13.1.tgz", + "integrity": "sha512-EBj6dQBeEnKMgA2zImZXCZyMi4OGyA5OYB7YX7W6TTGo/PKRlYAGPkbktascVTg0erSZmHjO37KJalGleBQcfw==", + "license": "SEE LICENSE IN LICENSE", "dependencies": { "@carbon/grid": "^11.29.0", "big.js": "^6.2.2", @@ -2153,22 +2762,11 @@ "preact": "^10.5.14" } }, - "node_modules/@bpmn-io/form-js-viewer/node_modules/big.js": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-6.2.2.tgz", - "integrity": "sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ==", - "engines": { - "node": "*" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/bigjs" - } - }, "node_modules/@bpmn-io/properties-panel": { - "version": "3.25.0", - "resolved": "https://registry.npmjs.org/@bpmn-io/properties-panel/-/properties-panel-3.25.0.tgz", - "integrity": "sha512-SRGgj8uJc1Yyjcht2g36Q+xKR7sTx5VZXvcwDrdmQKlx5Y3nRmvmMjDGzeGDJDb7pNU1DSlaBJic84uISDBMWg==", + "version": "3.25.1", + "resolved": "https://registry.npmjs.org/@bpmn-io/properties-panel/-/properties-panel-3.25.1.tgz", + "integrity": "sha512-DH7BynzyvpJVPQv9OpZCEqLGwNJsUkwwBb1UaLKF23uffozME1+IeO7NWvmvYVDE46vKq7h3lVYZ7uuNEO29Xg==", + "license": "MIT", "dependencies": { "@bpmn-io/feel-editor": "^1.9.0", "@codemirror/view": "^6.28.1", @@ -2183,7 +2781,9 @@ } }, "node_modules/@braintree/sanitize-url": { - "version": "6.0.4", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-7.1.0.tgz", + "integrity": "sha512-o+UlMLt49RvtCASlOMW0AkHnabN9wR9rwCCherxO0yG4Npy34GkvrAqdXQvrhNs+jh+gkK8gB8Lf05qL/O7KWg==", "license": "MIT" }, "node_modules/@carbon/grid": { @@ -2191,6 +2791,7 @@ "resolved": "https://registry.npmjs.org/@carbon/grid/-/grid-11.29.0.tgz", "integrity": "sha512-SAJhTexN6TjbItcUczOqhzgHBGXLhvUhlTdyqj+wzUH0tqEN8g6gLp+1sn9+rL+kV4obSb/7bdSESZtwQr/tQg==", "hasInstallScript": true, + "license": "Apache-2.0", "dependencies": { "@carbon/layout": "^11.28.0", "@ibm/telemetry-js": "^1.5.0" @@ -2201,31 +2802,67 @@ "resolved": "https://registry.npmjs.org/@carbon/layout/-/layout-11.28.0.tgz", "integrity": "sha512-Yl0Dsxs00EgAaCKpZCXgebuf9BwiBK66a1Oiao6D12p3ViciZ4L18mlRgOPBcDlolP2tUtncz48TlfkWC097hQ==", "hasInstallScript": true, + "license": "Apache-2.0", "dependencies": { "@ibm/telemetry-js": "^1.5.0" } }, + "node_modules/@chevrotain/cst-dts-gen": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.0.3.tgz", + "integrity": "sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==", + "license": "Apache-2.0", + "dependencies": { + "@chevrotain/gast": "11.0.3", + "@chevrotain/types": "11.0.3", + "lodash-es": "4.17.21" + } + }, + "node_modules/@chevrotain/gast": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@chevrotain/gast/-/gast-11.0.3.tgz", + "integrity": "sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==", + "license": "Apache-2.0", + "dependencies": { + "@chevrotain/types": "11.0.3", + "lodash-es": "4.17.21" + } + }, + "node_modules/@chevrotain/regexp-to-ast": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.0.3.tgz", + "integrity": "sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==", + "license": "Apache-2.0" + }, + "node_modules/@chevrotain/types": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@chevrotain/types/-/types-11.0.3.tgz", + "integrity": "sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==", + "license": "Apache-2.0" + }, + "node_modules/@chevrotain/utils": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@chevrotain/utils/-/utils-11.0.3.tgz", + "integrity": "sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==", + "license": "Apache-2.0" + }, "node_modules/@codemirror/autocomplete": { - "version": "6.18.3", - "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.18.3.tgz", - "integrity": "sha512-1dNIOmiM0z4BIBwxmxEfA1yoxh1MF/6KPBbh20a5vphGV0ictKlgQsbJs6D6SkR6iJpGbpwRsa6PFMNlg9T9pQ==", + "version": "6.18.4", + "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.18.4.tgz", + "integrity": "sha512-sFAphGQIqyQZfP2ZBsSHV7xQvo9Py0rV0dW7W3IMRdS+zDuNb2l3no78CvUaWKGfzFjI4FTrLdUSj86IGb2hRA==", + "license": "MIT", "dependencies": { "@codemirror/language": "^6.0.0", "@codemirror/state": "^6.0.0", "@codemirror/view": "^6.17.0", "@lezer/common": "^1.0.0" - }, - "peerDependencies": { - "@codemirror/language": "^6.0.0", - "@codemirror/state": "^6.0.0", - "@codemirror/view": "^6.0.0", - "@lezer/common": "^1.0.0" } }, "node_modules/@codemirror/commands": { "version": "6.7.1", "resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.7.1.tgz", "integrity": "sha512-llTrboQYw5H4THfhN4U3qCnSZ1SOJ60ohhz+SzU0ADGtwlc533DtklQP0vSFaQuCPDn3BPpOd1GbbnUtwNjsrw==", + "license": "MIT", "dependencies": { "@codemirror/language": "^6.0.0", "@codemirror/state": "^6.4.0", @@ -2235,6 +2872,8 @@ }, "node_modules/@codemirror/lang-json": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@codemirror/lang-json/-/lang-json-6.0.1.tgz", + "integrity": "sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==", "license": "MIT", "dependencies": { "@codemirror/language": "^6.0.0", @@ -2242,9 +2881,10 @@ } }, "node_modules/@codemirror/language": { - "version": "6.10.6", - "resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.10.6.tgz", - "integrity": "sha512-KrsbdCnxEztLVbB5PycWXFxas4EOyk/fPAfruSOnDDppevQgid2XZ+KbJ9u+fDikP/e7MW7HPBTvTb8JlZK9vA==", + "version": "6.10.7", + "resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.10.7.tgz", + "integrity": "sha512-aOswhVOLYhMNeqykt4P7+ukQSpGL0ynZYaEyFDVHE7fl2xgluU3yuE9MdgYNfw6EmaNidoFMIQ2iTh1ADrnT6A==", + "license": "MIT", "dependencies": { "@codemirror/state": "^6.0.0", "@codemirror/view": "^6.23.0", @@ -2258,6 +2898,7 @@ "version": "6.8.4", "resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.8.4.tgz", "integrity": "sha512-u4q7PnZlJUojeRe8FJa/njJcMctISGgPQ4PnWsd9268R4ZTtU+tfFYmwkBvgcrK2+QQ8tYFVALVb5fVJykKc5A==", + "license": "MIT", "dependencies": { "@codemirror/state": "^6.0.0", "@codemirror/view": "^6.35.0", @@ -2268,6 +2909,7 @@ "version": "6.5.8", "resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.8.tgz", "integrity": "sha512-PoWtZvo7c1XFeZWmmyaOp2G0XVbOnm+fJzvghqGAktBW3cufwJUWvSCcNG0ppXiBEM05mZu6RhMtXPv2hpllig==", + "license": "MIT", "dependencies": { "@codemirror/state": "^6.0.0", "@codemirror/view": "^6.0.0", @@ -2275,1339 +2917,2187 @@ } }, "node_modules/@codemirror/state": { - "version": "6.4.1", - "license": "MIT" + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.5.0.tgz", + "integrity": "sha512-MwBHVK60IiIHDcoMet78lxt6iw5gJOGSbNbOIVBHWVXIH4/Nq1+GQgLLGgI1KlnN86WDXsPudVaqYHKBIx7Eyw==", + "license": "MIT", + "dependencies": { + "@marijn/find-cluster-break": "^1.0.0" + } }, "node_modules/@codemirror/view": { - "version": "6.35.0", - "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.35.0.tgz", - "integrity": "sha512-I0tYy63q5XkaWsJ8QRv5h6ves7kvtrBWjBcnf/bzohFJQc5c14a1AQRdE8QpPF9eMp5Mq2FMm59TCj1gDfE7kw==", + "version": "6.36.1", + "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.36.1.tgz", + "integrity": "sha512-miD1nyT4m4uopZaDdO2uXU/LLHliKNYL9kB1C1wJHrunHLm/rpkb5QVSokqgw9hFqEZakrdlb/VGWX8aYZTslQ==", + "license": "MIT", "dependencies": { - "@codemirror/state": "^6.4.0", + "@codemirror/state": "^6.5.0", "style-mod": "^4.1.0", "w3c-keyname": "^2.2.4" } }, "node_modules/@colors/colors": { "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", "license": "MIT", "optional": true, "engines": { "node": ">=0.1.90" } }, - "node_modules/@docsearch/css": { - "version": "3.5.2", - "license": "MIT" - }, - "node_modules/@docsearch/react": { - "version": "3.5.2", + "node_modules/@csstools/cascade-layer-name-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-2.0.4.tgz", + "integrity": "sha512-7DFHlPuIxviKYZrOiwVU/PiHLm3lLUR23OMuEEtfEOQTOp9hzQ2JjdY6X5H18RVuUPJqSCI+qNnD5iOLMVE0bA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "dependencies": { - "@algolia/autocomplete-core": "1.9.3", - "@algolia/autocomplete-preset-algolia": "1.9.3", - "@docsearch/css": "3.5.2", - "algoliasearch": "^4.19.1" + "engines": { + "node": ">=18" }, "peerDependencies": { - "@types/react": ">= 16.8.0 < 19.0.0", - "react": ">= 16.8.0 < 19.0.0", - "react-dom": ">= 16.8.0 < 19.0.0", - "search-insights": ">= 1 < 3" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "react": { - "optional": true + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3" + } + }, + "node_modules/@csstools/color-helpers": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.1.tgz", + "integrity": "sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" }, - "react-dom": { - "optional": true + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=18" + } + }, + "node_modules/@csstools/css-calc": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.0.tgz", + "integrity": "sha512-X69PmFOrjTZfN5ijxtI8hZ9kRADFSLrmmQ6hgDJ272Il049WGKpDY64KhrFm/7rbWve0z81QepawzjkKlqkNGw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" }, - "search-insights": { - "optional": true + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" } + ], + "license": "MIT", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3" } }, - "node_modules/@docusaurus/core": { - "version": "2.4.1", + "node_modules/@csstools/css-color-parser": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.6.tgz", + "integrity": "sha512-S/IjXqTHdpI4EtzGoNCHfqraXF37x12ZZHA1Lk7zoT5pm2lMjFuqhX/89L7dqX4CcMacKK+6ZCs5TmEGb/+wKw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "dependencies": { - "@babel/core": "^7.18.6", - "@babel/generator": "^7.18.7", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.18.6", - "@babel/preset-env": "^7.18.6", - "@babel/preset-react": "^7.18.6", - "@babel/preset-typescript": "^7.18.6", - "@babel/runtime": "^7.18.6", - "@babel/runtime-corejs3": "^7.18.6", - "@babel/traverse": "^7.18.8", - "@docusaurus/cssnano-preset": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/react-loadable": "5.5.2", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", - "@slorber/static-site-generator-webpack-plugin": "^4.0.7", - "@svgr/webpack": "^6.2.1", - "autoprefixer": "^10.4.7", - "babel-loader": "^8.2.5", - "babel-plugin-dynamic-import-node": "^2.3.3", - "boxen": "^6.2.1", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "clean-css": "^5.3.0", - "cli-table3": "^0.6.2", - "combine-promises": "^1.1.0", - "commander": "^5.1.0", - "copy-webpack-plugin": "^11.0.0", - "core-js": "^3.23.3", - "css-loader": "^6.7.1", - "css-minimizer-webpack-plugin": "^4.0.0", - "cssnano": "^5.1.12", - "del": "^6.1.1", - "detect-port": "^1.3.0", - "escape-html": "^1.0.3", - "eta": "^2.0.0", - "file-loader": "^6.2.0", - "fs-extra": "^10.1.0", - "html-minifier-terser": "^6.1.0", - "html-tags": "^3.2.0", - "html-webpack-plugin": "^5.5.0", - "import-fresh": "^3.3.0", - "leven": "^3.1.0", - "lodash": "^4.17.21", - "mini-css-extract-plugin": "^2.6.1", - "postcss": "^8.4.14", - "postcss-loader": "^7.0.0", - "prompts": "^2.4.2", - "react-dev-utils": "^12.0.1", - "react-helmet-async": "^1.3.0", - "react-loadable": "npm:@docusaurus/react-loadable@5.5.2", - "react-loadable-ssr-addon-v5-slorber": "^1.0.1", - "react-router": "^5.3.3", - "react-router-config": "^5.1.1", - "react-router-dom": "^5.3.3", - "rtl-detect": "^1.0.4", - "semver": "^7.3.7", - "serve-handler": "^6.1.3", - "shelljs": "^0.8.5", - "terser-webpack-plugin": "^5.3.3", - "tslib": "^2.4.0", - "update-notifier": "^5.1.0", - "url-loader": "^4.1.1", - "wait-on": "^6.0.1", - "webpack": "^5.73.0", - "webpack-bundle-analyzer": "^4.5.0", - "webpack-dev-server": "^4.9.3", - "webpack-merge": "^5.8.0", - "webpackbar": "^5.0.2" - }, - "bin": { - "docusaurus": "bin/docusaurus.mjs" + "@csstools/color-helpers": "^5.0.1", + "@csstools/css-calc": "^2.1.0" }, "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3" } }, - "node_modules/@docusaurus/core/node_modules/ansi-regex": { - "version": "6.0.1", + "node_modules/@csstools/css-parser-algorithms": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.4.tgz", + "integrity": "sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "engines": { - "node": ">=12" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "peerDependencies": { + "@csstools/css-tokenizer": "^3.0.3" } }, - "node_modules/@docusaurus/core/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/@csstools/css-tokenizer": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.3.tgz", + "integrity": "sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=18" } }, - "node_modules/@docusaurus/core/node_modules/boxen": { - "version": "6.2.1", + "node_modules/@csstools/media-query-list-parser": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.2.tgz", + "integrity": "sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "dependencies": { - "ansi-align": "^3.0.1", - "camelcase": "^6.2.0", - "chalk": "^4.1.2", - "cli-boxes": "^3.0.0", - "string-width": "^5.0.1", - "type-fest": "^2.5.0", - "widest-line": "^4.0.1", - "wrap-ansi": "^8.0.1" - }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=18" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3" } }, - "node_modules/@docusaurus/core/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", + "node_modules/@csstools/postcss-cascade-layers": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-5.0.1.tgz", + "integrity": "sha512-XOfhI7GShVcKiKwmPAnWSqd2tBR0uxt+runAxttbSp/LY2U16yAVPmAf7e9q4JJ0d+xMNmpwNDLBXnmRCl3HMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@csstools/selector-specificity": "^5.0.0", + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": ">=10" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/core/node_modules/cli-boxes": { - "version": "3.0.0", - "license": "MIT", + "node_modules/@csstools/postcss-cascade-layers/node_modules/@csstools/selector-specificity": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", + "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "engines": { - "node": ">=10" + "node": ">=18" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss-selector-parser": "^7.0.0" } }, - "node_modules/@docusaurus/core/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/@csstools/postcss-cascade-layers/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@docusaurus/core/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/@docusaurus/core/node_modules/emoji-regex": { - "version": "9.2.2", - "license": "MIT" - }, - "node_modules/@docusaurus/core/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/@docusaurus/core/node_modules/string-width": { - "version": "5.1.2", - "license": "MIT", + "node_modules/@csstools/postcss-color-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-4.0.6.tgz", + "integrity": "sha512-EcvXfC60cTIumzpsxWuvVjb7rsJEHPvqn3jeMEBUaE3JSc4FRuP7mEQ+1eicxWmIrs3FtzMH9gR3sgA5TH+ebQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "@csstools/css-color-parser": "^3.0.6", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/utilities": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">=18" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/core/node_modules/strip-ansi": { - "version": "7.0.1", - "license": "MIT", + "node_modules/@csstools/postcss-color-mix-function": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-3.0.6.tgz", + "integrity": "sha512-jVKdJn4+JkASYGhyPO+Wa5WXSx1+oUgaXb3JsjJn/BlrtFh5zjocCY7pwWi0nuP24V1fY7glQsxEYcYNy0dMFg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "ansi-regex": "^6.0.1" + "@csstools/css-color-parser": "^3.0.6", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/utilities": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/core/node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", + "node_modules/@csstools/postcss-content-alt-text": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-content-alt-text/-/postcss-content-alt-text-2.0.4.tgz", + "integrity": "sha512-YItlZUOuZJCBlRaCf8Aucc1lgN41qYGALMly0qQllrxYJhiyzlI6RxOTMUvtWk+KhS8GphMDsDhKQ7KTPfEMSw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "has-flag": "^4.0.0" + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/utilities": "^2.0.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/@docusaurus/core/node_modules/type-fest": { - "version": "2.15.1", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=12.20" + "node": ">=18" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/core/node_modules/widest-line": { - "version": "4.0.1", - "license": "MIT", + "node_modules/@csstools/postcss-exponential-functions": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-2.0.5.tgz", + "integrity": "sha512-mi8R6dVfA2nDoKM3wcEi64I8vOYEgQVtVKCfmLHXupeLpACfGAided5ddMt5f+CnEodNu4DifuVwb0I6fQDGGQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "string-width": "^5.0.1" + "@csstools/css-calc": "^2.1.0", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3" }, "engines": { - "node": ">=12" + "node": ">=18" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/core/node_modules/wrap-ansi": { - "version": "8.0.1", - "license": "MIT", + "node_modules/@csstools/postcss-font-format-keywords": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-4.0.0.tgz", + "integrity": "sha512-usBzw9aCRDvchpok6C+4TXC57btc4bJtmKQWOHQxOVKen1ZfVqBUuCZ/wuqdX5GHsD0NRSr9XTP+5ID1ZZQBXw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" + "@csstools/utilities": "^2.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=12" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/core/node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "6.1.0", - "license": "MIT", + "node_modules/@csstools/postcss-gamut-mapping": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-2.0.6.tgz", + "integrity": "sha512-0ke7fmXfc8H+kysZz246yjirAH6JFhyX9GTlyRnM0exHO80XcA9zeJpy5pOp5zo/AZiC/q5Pf+Hw7Pd6/uAoYA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^3.0.6", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3" + }, "engines": { - "node": ">=12" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/cssnano-preset": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-gradients-interpolation-method": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-5.0.6.tgz", + "integrity": "sha512-Itrbx6SLUzsZ6Mz3VuOlxhbfuyLTogG5DwEF1V8dAi24iMuvQPIHd7Ti+pNDp7j6WixndJGZaoNR0f9VSzwuTg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "cssnano-preset-advanced": "^5.3.8", - "postcss": "^8.4.14", - "postcss-sort-media-queries": "^4.2.1", - "tslib": "^2.4.0" + "@csstools/css-color-parser": "^3.0.6", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/utilities": "^2.0.0" }, "engines": { - "node": ">=16.14" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/logger": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-hwb-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-4.0.6.tgz", + "integrity": "sha512-927Pqy3a1uBP7U8sTfaNdZVB0mNXzIrJO/GZ8us9219q9n06gOqCdfZ0E6d1P66Fm0fYHvxfDbfcUuwAn5UwhQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "chalk": "^4.1.2", - "tslib": "^2.4.0" + "@csstools/css-color-parser": "^3.0.6", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/utilities": "^2.0.0" }, "engines": { - "node": ">=16.14" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/logger/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", + "node_modules/@csstools/postcss-ic-unit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-4.0.0.tgz", + "integrity": "sha512-9QT5TDGgx7wD3EEMN3BSUG6ckb6Eh5gSPT5kZoVtUuAonfPmLDJyPhqR4ntPpMYhUKAMVKAg3I/AgzqHMSeLhA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "color-convert": "^2.0.1" + "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/utilities": "^2.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=8" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/logger/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "node_modules/@csstools/postcss-initial": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-initial/-/postcss-initial-2.0.0.tgz", + "integrity": "sha512-dv2lNUKR+JV+OOhZm9paWzYBXOCi+rJPqJ2cJuhh9xd8USVrd0cBEPczla81HNOyThMQWeCcdln3gZkQV2kYxA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "engines": { - "node": ">=10" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/logger/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", + "node_modules/@csstools/postcss-is-pseudo-class": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-5.0.1.tgz", + "integrity": "sha512-JLp3POui4S1auhDR0n8wHd/zTOWmMsmK3nQd3hhL6FhWPaox5W7j1se6zXOG/aP07wV2ww0lxbKYGwbBszOtfQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "color-name": "~1.1.4" + "@csstools/selector-specificity": "^5.0.0", + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/logger/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/@docusaurus/logger/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", + "node_modules/@csstools/postcss-is-pseudo-class/node_modules/@csstools/selector-specificity": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", + "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "engines": { - "node": ">=8" + "node": ">=18" + }, + "peerDependencies": { + "postcss-selector-parser": "^7.0.0" } }, - "node_modules/@docusaurus/logger/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/@csstools/postcss-is-pseudo-class/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/@docusaurus/mdx-loader": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-light-dark-function": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-2.0.7.tgz", + "integrity": "sha512-ZZ0rwlanYKOHekyIPaU+sVm3BEHCe+Ha0/px+bmHe62n0Uc1lL34vbwrLYn6ote8PHlsqzKeTQdIejQCJ05tfw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@babel/parser": "^7.18.8", - "@babel/traverse": "^7.18.8", - "@docusaurus/logger": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@mdx-js/mdx": "^1.6.22", - "escape-html": "^1.0.3", - "file-loader": "^6.2.0", - "fs-extra": "^10.1.0", - "image-size": "^1.0.1", - "mdast-util-to-string": "^2.0.0", - "remark-emoji": "^2.2.0", - "stringify-object": "^3.3.0", - "tslib": "^2.4.0", - "unified": "^9.2.2", - "unist-util-visit": "^2.0.3", - "url-loader": "^4.1.1", - "webpack": "^5.73.0" + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/utilities": "^2.0.0" }, "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" - } - }, - "node_modules/@docusaurus/mdx-loader/node_modules/unist-util-visit": { - "version": "2.0.3", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0", - "unist-util-visit-parents": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/mdx-loader/node_modules/unist-util-visit-parents": { - "version": "3.1.1", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0" + "node_modules/@csstools/postcss-logical-float-and-clear": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-3.0.0.tgz", + "integrity": "sha512-SEmaHMszwakI2rqKRJgE+8rpotFfne1ZS6bZqBoQIicFyV+xT1UF42eORPxJkVJVrH9C0ctUgwMSn3BLOIZldQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=18" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/module-type-aliases": { - "version": "2.4.1", - "license": "MIT", - "dependencies": { - "@docusaurus/react-loadable": "5.5.2", - "@docusaurus/types": "2.4.1", - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router-config": "*", - "@types/react-router-dom": "*", - "react-helmet-async": "*", - "react-loadable": "npm:@docusaurus/react-loadable@5.5.2" + "node_modules/@csstools/postcss-logical-overflow": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-2.0.0.tgz", + "integrity": "sha512-spzR1MInxPuXKEX2csMamshR4LRaSZ3UXVaRGjeQxl70ySxOhMpP2252RAFsg8QyyBXBzuVOOdx1+bVO5bPIzA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=18" }, "peerDependencies": { - "react": "*", - "react-dom": "*" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/plugin-content-blog": { - "version": "2.4.1", - "license": "MIT", - "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", - "cheerio": "^1.0.0-rc.12", - "feed": "^4.2.2", - "fs-extra": "^10.1.0", - "lodash": "^4.17.21", - "reading-time": "^1.5.0", - "tslib": "^2.4.0", - "unist-util-visit": "^2.0.3", - "utility-types": "^3.10.0", - "webpack": "^5.73.0" - }, + "node_modules/@csstools/postcss-logical-overscroll-behavior": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-2.0.0.tgz", + "integrity": "sha512-e/webMjoGOSYfqLunyzByZj5KKe5oyVg/YSbie99VEaSDE2kimFm0q1f6t/6Jo+VVCQ/jbe2Xy+uX+C4xzWs4w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/plugin-content-blog/node_modules/unist-util-visit": { - "version": "2.0.3", - "license": "MIT", + "node_modules/@csstools/postcss-logical-resize": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-resize/-/postcss-logical-resize-3.0.0.tgz", + "integrity": "sha512-DFbHQOFW/+I+MY4Ycd/QN6Dg4Hcbb50elIJCfnwkRTCX05G11SwViI5BbBlg9iHRl4ytB7pmY5ieAFk3ws7yyg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0", - "unist-util-visit-parents": "^3.0.0" + "postcss-value-parser": "^4.2.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@docusaurus/plugin-content-blog/node_modules/unist-util-visit-parents": { - "version": "3.1.1", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0" + "engines": { + "node": ">=18" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/plugin-content-docs": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-logical-viewport-units": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-3.0.3.tgz", + "integrity": "sha512-OC1IlG/yoGJdi0Y+7duz/kU/beCwO+Gua01sD6GtOtLi7ByQUpcIqs7UE/xuRPay4cHgOMatWdnDdsIDjnWpPw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/module-type-aliases": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", - "@types/react-router-config": "^5.0.6", - "combine-promises": "^1.1.0", - "fs-extra": "^10.1.0", - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "tslib": "^2.4.0", - "utility-types": "^3.10.0", - "webpack": "^5.73.0" + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/utilities": "^2.0.0" }, "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/plugin-content-pages": { - "version": "2.4.1", + "node_modules/@csstools/postcss-media-minmax": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-2.0.5.tgz", + "integrity": "sha512-sdh5i5GToZOIAiwhdntRWv77QDtsxP2r2gXW/WbLSCoLr00KTq/yiF1qlQ5XX2+lmiFa8rATKMcbwl3oXDMNew==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", - "fs-extra": "^10.1.0", - "tslib": "^2.4.0", - "webpack": "^5.73.0" + "@csstools/css-calc": "^2.1.0", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/media-query-list-parser": "^4.0.2" }, "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/plugin-debug": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-3.0.4.tgz", + "integrity": "sha512-AnGjVslHMm5xw9keusQYvjVWvuS7KWK+OJagaG0+m9QnIjZsrysD2kJP/tr/UJIyYtMCtu8OkUd+Rajb4DqtIQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "fs-extra": "^10.1.0", - "react-json-view": "^1.21.3", - "tslib": "^2.4.0" + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/media-query-list-parser": "^4.0.2" }, "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/plugin-google-analytics": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-nested-calc": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-4.0.0.tgz", + "integrity": "sha512-jMYDdqrQQxE7k9+KjstC3NbsmC063n1FTPLCgCRS2/qHUbHM0mNy9pIn4QIiQGs9I/Bg98vMqw7mJXBxa0N88A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", - "tslib": "^2.4.0" + "@csstools/utilities": "^2.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/plugin-google-gtag": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-normalize-display-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.0.tgz", + "integrity": "sha512-HlEoG0IDRoHXzXnkV4in47dzsxdsjdz6+j7MLjaACABX2NfvjFS6XVAnpaDyGesz9gK2SC7MbNwdCHusObKJ9Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", - "tslib": "^2.4.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/plugin-google-tag-manager": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-oklab-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-4.0.6.tgz", + "integrity": "sha512-Hptoa0uX+XsNacFBCIQKTUBrFKDiplHan42X73EklG6XmQLG7/aIvxoNhvZ7PvOWMt67Pw3bIlUY2nD6p5vL8A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", - "tslib": "^2.4.0" + "@csstools/css-color-parser": "^3.0.6", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/utilities": "^2.0.0" }, "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/plugin-sitemap": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-4.0.0.tgz", + "integrity": "sha512-XQPtROaQjomnvLUSy/bALTR5VCtTVUFwYs1SblvYgLSeTo2a/bMNwUwo2piXw5rTv/FEYiy5yPSXBqg9OKUx7Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", - "fs-extra": "^10.1.0", - "sitemap": "^7.1.1", - "tslib": "^2.4.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/preset-classic": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-random-function": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-random-function/-/postcss-random-function-1.0.1.tgz", + "integrity": "sha512-Ab/tF8/RXktQlFwVhiC70UNfpFQRhtE5fQQoP2pO+KCPGLsLdWFiOuHgSRtBOqEshCVAzR4H6o38nhvRZq8deA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/plugin-content-blog": "2.4.1", - "@docusaurus/plugin-content-docs": "2.4.1", - "@docusaurus/plugin-content-pages": "2.4.1", - "@docusaurus/plugin-debug": "2.4.1", - "@docusaurus/plugin-google-analytics": "2.4.1", - "@docusaurus/plugin-google-gtag": "2.4.1", - "@docusaurus/plugin-google-tag-manager": "2.4.1", - "@docusaurus/plugin-sitemap": "2.4.1", - "@docusaurus/theme-classic": "2.4.1", - "@docusaurus/theme-common": "2.4.1", - "@docusaurus/theme-search-algolia": "2.4.1", - "@docusaurus/types": "2.4.1" + "@csstools/css-calc": "^2.1.0", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3" }, "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/react-loadable": { - "version": "5.5.2", - "license": "MIT", + "node_modules/@csstools/postcss-relative-color-syntax": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-3.0.6.tgz", + "integrity": "sha512-yxP618Xb+ji1I624jILaYM62uEmZcmbdmFoZHoaThw896sq0vU39kqTTF+ZNic9XyPtPMvq0vyvbgmHaszq8xg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@types/react": "*", - "prop-types": "^15.6.2" + "@csstools/css-color-parser": "^3.0.6", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/utilities": "^2.0.0" + }, + "engines": { + "node": ">=18" }, "peerDependencies": { - "react": "*" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/theme-classic": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-scope-pseudo-class": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-4.0.1.tgz", + "integrity": "sha512-IMi9FwtH6LMNuLea1bjVMQAsUhFxJnyLSgOp/cpv5hrzWmrUYU5fm0EguNDIIOHUqzXode8F/1qkC/tEo/qN8Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/module-type-aliases": "2.4.1", - "@docusaurus/plugin-content-blog": "2.4.1", - "@docusaurus/plugin-content-docs": "2.4.1", - "@docusaurus/plugin-content-pages": "2.4.1", - "@docusaurus/theme-common": "2.4.1", - "@docusaurus/theme-translations": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", - "@mdx-js/react": "^1.6.22", - "clsx": "^1.2.1", - "copy-text-to-clipboard": "^3.0.1", - "infima": "0.2.0-alpha.43", - "lodash": "^4.17.21", - "nprogress": "^0.2.0", - "postcss": "^8.4.14", - "prism-react-renderer": "^1.3.5", - "prismjs": "^1.28.0", - "react-router-dom": "^5.3.3", - "rtlcss": "^3.5.0", - "tslib": "^2.4.0", - "utility-types": "^3.10.0" + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/theme-classic/node_modules/clsx": { - "version": "1.2.1", + "node_modules/@csstools/postcss-scope-pseudo-class/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/@docusaurus/theme-common": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-sign-functions": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-sign-functions/-/postcss-sign-functions-1.1.0.tgz", + "integrity": "sha512-SLcc20Nujx/kqbSwDmj6oaXgpy3UjFhBy1sfcqPgDkHfOIfUtUVH7OXO+j7BU4v/At5s61N5ZX6shvgPwluhsA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/module-type-aliases": "2.4.1", - "@docusaurus/plugin-content-blog": "2.4.1", - "@docusaurus/plugin-content-docs": "2.4.1", - "@docusaurus/plugin-content-pages": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router-config": "*", - "clsx": "^1.2.1", - "parse-numeric-range": "^1.3.0", - "prism-react-renderer": "^1.3.5", - "tslib": "^2.4.0", - "use-sync-external-store": "^1.2.0", - "utility-types": "^3.10.0" + "@csstools/css-calc": "^2.1.0", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3" }, "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" - } - }, - "node_modules/@docusaurus/theme-common/node_modules/clsx": { - "version": "1.2.1", - "license": "MIT", - "engines": { - "node": ">=6" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/theme-mermaid": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-stepped-value-functions": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-4.0.5.tgz", + "integrity": "sha512-G6SJ6hZJkhxo6UZojVlLo14MohH4J5J7z8CRBrxxUYy9JuZiIqUo5TBYyDGcE0PLdzpg63a7mHSJz3VD+gMwqw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/module-type-aliases": "2.4.1", - "@docusaurus/theme-common": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", - "@mdx-js/react": "^1.6.22", - "mermaid": "^9.2.2", - "tslib": "^2.4.0" + "@csstools/css-calc": "^2.1.0", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3" }, "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/theme-search-algolia": { - "version": "2.4.1", - "license": "MIT", - "dependencies": { - "@docsearch/react": "^3.1.1", - "@docusaurus/core": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/plugin-content-docs": "2.4.1", - "@docusaurus/theme-common": "2.4.1", - "@docusaurus/theme-translations": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", - "algoliasearch": "^4.13.1", - "algoliasearch-helper": "^3.10.0", - "clsx": "^1.2.1", - "eta": "^2.0.0", - "fs-extra": "^10.1.0", - "lodash": "^4.17.21", - "tslib": "^2.4.0", - "utility-types": "^3.10.0" + "node_modules/@csstools/postcss-text-decoration-shorthand": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-4.0.1.tgz", + "integrity": "sha512-xPZIikbx6jyzWvhms27uugIc0I4ykH4keRvoa3rxX5K7lEhkbd54rjj/dv60qOCTisoS+3bmwJTeyV1VNBrXaw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/color-helpers": "^5.0.1", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" - } - }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/clsx": { - "version": "1.2.1", - "license": "MIT", - "engines": { - "node": ">=6" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/theme-translations": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-trigonometric-functions": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-4.0.5.tgz", + "integrity": "sha512-/YQThYkt5MLvAmVu7zxjhceCYlKrYddK6LEmK5I4ojlS6BmO9u2yO4+xjXzu2+NPYmHSTtP4NFSamBCMmJ1NJA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "fs-extra": "^10.1.0", - "tslib": "^2.4.0" + "@csstools/css-calc": "^2.1.0", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3" }, "engines": { - "node": ">=16.14" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/types": { - "version": "2.4.1", - "license": "MIT", - "dependencies": { - "@types/history": "^4.7.11", - "@types/react": "*", - "commander": "^5.1.0", - "joi": "^17.6.0", - "react-helmet-async": "^1.3.0", - "utility-types": "^3.10.0", - "webpack": "^5.73.0", - "webpack-merge": "^5.8.0" + "node_modules/@csstools/postcss-unset-value": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-4.0.0.tgz", + "integrity": "sha512-cBz3tOCI5Fw6NIFEwU3RiwK6mn3nKegjpJuzCndoGq3BZPkUjnsq7uQmIeMNeMbMk7YD2MfKcgCpZwX5jyXqCA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=18" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/utils": { - "version": "2.4.1", - "license": "MIT", - "dependencies": { - "@docusaurus/logger": "2.4.1", - "@svgr/webpack": "^6.2.1", - "escape-string-regexp": "^4.0.0", - "file-loader": "^6.2.0", - "fs-extra": "^10.1.0", - "github-slugger": "^1.4.0", - "globby": "^11.1.0", - "gray-matter": "^4.0.3", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "micromatch": "^4.0.5", - "resolve-pathname": "^3.0.0", - "shelljs": "^0.8.5", - "tslib": "^2.4.0", - "url-loader": "^4.1.1", - "webpack": "^5.73.0" - }, + "node_modules/@csstools/utilities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@csstools/utilities/-/utilities-2.0.0.tgz", + "integrity": "sha512-5VdOr0Z71u+Yp3ozOx8T11N703wIFGVRgOWbOZMKgglPJsWA54MRIoMNVMa7shUToIhx5J8vX4sOZgD2XiihiQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "engines": { - "node": ">=16.14" + "node": ">=18" }, "peerDependencies": { - "@docusaurus/types": "*" - }, - "peerDependenciesMeta": { - "@docusaurus/types": { - "optional": true - } + "postcss": "^8.4" } }, - "node_modules/@docusaurus/utils-common": { - "version": "2.4.1", + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", "license": "MIT", - "dependencies": { - "tslib": "^2.4.0" - }, "engines": { - "node": ">=16.14" + "node": ">=10.0.0" + } + }, + "node_modules/@docsearch/css": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.8.2.tgz", + "integrity": "sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==", + "license": "MIT" + }, + "node_modules/@docsearch/react": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.8.2.tgz", + "integrity": "sha512-xCRrJQlTt8N9GU0DG4ptwHRkfnSnD/YpdeaXe02iKfqs97TkZJv60yE+1eq/tjPcVnTW8dP5qLP7itifFVV5eg==", + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-core": "1.17.7", + "@algolia/autocomplete-preset-algolia": "1.17.7", + "@docsearch/css": "3.8.2", + "algoliasearch": "^5.14.2" }, "peerDependencies": { - "@docusaurus/types": "*" + "@types/react": ">= 16.8.0 < 19.0.0", + "react": ">= 16.8.0 < 19.0.0", + "react-dom": ">= 16.8.0 < 19.0.0", + "search-insights": ">= 1 < 3" }, "peerDependenciesMeta": { - "@docusaurus/types": { + "@types/react": { + "optional": true + }, + "react": { + "optional": true + }, + "react-dom": { + "optional": true + }, + "search-insights": { "optional": true } } }, - "node_modules/@docusaurus/utils-validation": { - "version": "2.4.1", + "node_modules/@docsearch/react/node_modules/@algolia/client-analytics": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.18.0.tgz", + "integrity": "sha512-0VpGG2uQW+h2aejxbG8VbnMCQ9ary9/ot7OASXi6OjE0SRkYQ/+pkW+q09+IScif3pmsVVYggmlMPtAsmYWHng==", "license": "MIT", "dependencies": { - "@docusaurus/logger": "2.4.1", - "@docusaurus/utils": "2.4.1", - "joi": "^17.6.0", - "js-yaml": "^4.1.0", - "tslib": "^2.4.0" + "@algolia/client-common": "5.18.0", + "@algolia/requester-browser-xhr": "5.18.0", + "@algolia/requester-fetch": "5.18.0", + "@algolia/requester-node-http": "5.18.0" }, "engines": { - "node": ">=16.14" + "node": ">= 14.0.0" } }, - "node_modules/@docusaurus/utils/node_modules/escape-string-regexp": { - "version": "4.0.0", + "node_modules/@docsearch/react/node_modules/@algolia/client-personalization": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.18.0.tgz", + "integrity": "sha512-I2dc94Oiwic3SEbrRp8kvTZtYpJjGtg5y5XnqubgnA15AgX59YIY8frKsFG8SOH1n2rIhUClcuDkxYQNXJLg+w==", "license": "MIT", - "engines": { - "node": ">=10" + "dependencies": { + "@algolia/client-common": "5.18.0", + "@algolia/requester-browser-xhr": "5.18.0", + "@algolia/requester-fetch": "5.18.0", + "@algolia/requester-node-http": "5.18.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/@exodus/schemasafe": { - "version": "1.3.0", - "license": "MIT" - }, - "node_modules/@hapi/hoek": { - "version": "9.2.1", - "license": "BSD-3-Clause" - }, - "node_modules/@hapi/topo": { - "version": "5.1.0", - "license": "BSD-3-Clause", + "node_modules/@docsearch/react/node_modules/@algolia/recommend": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.18.0.tgz", + "integrity": "sha512-uSnkm0cdAuFwdMp4pGT5vHVQ84T6AYpTZ3I0b3k/M3wg4zXDhl3aCiY8NzokEyRLezz/kHLEEcgb/tTTobOYVw==", + "license": "MIT", "dependencies": { - "@hapi/hoek": "^9.0.0" + "@algolia/client-common": "5.18.0", + "@algolia/requester-browser-xhr": "5.18.0", + "@algolia/requester-fetch": "5.18.0", + "@algolia/requester-node-http": "5.18.0" + }, + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/@hookform/error-message": { - "version": "2.0.1", + "node_modules/@docsearch/react/node_modules/algoliasearch": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.18.0.tgz", + "integrity": "sha512-/tfpK2A4FpS0o+S78o3YSdlqXr0MavJIDlFK3XZrlXLy7vaRXJvW5jYg3v5e/wCaF8y0IpMjkYLhoV6QqfpOgw==", "license": "MIT", - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0", - "react-hook-form": "^7.0.0" - } - }, - "node_modules/@ibm/telemetry-js": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/@ibm/telemetry-js/-/telemetry-js-1.8.0.tgz", - "integrity": "sha512-1u/8f5TtDHXWNQe+YfIESesZGX2PmhEfyU0znlyFvATch+xc5fPYjXj2gWKMTmdKsDawqAm/BkJBQjx2CDlZww==", - "bin": { - "ibmtelemetry": "dist/collect.js" + "dependencies": { + "@algolia/client-abtesting": "5.18.0", + "@algolia/client-analytics": "5.18.0", + "@algolia/client-common": "5.18.0", + "@algolia/client-insights": "5.18.0", + "@algolia/client-personalization": "5.18.0", + "@algolia/client-query-suggestions": "5.18.0", + "@algolia/client-search": "5.18.0", + "@algolia/ingestion": "1.18.0", + "@algolia/monitoring": "1.18.0", + "@algolia/recommend": "5.18.0", + "@algolia/requester-browser-xhr": "5.18.0", + "@algolia/requester-fetch": "5.18.0", + "@algolia/requester-node-http": "5.18.0" + }, + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "license": "ISC", + "node_modules/@docusaurus/babel": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/babel/-/babel-3.6.3.tgz", + "integrity": "sha512-7dW9Hat9EHYCVicFXYA4hjxBY38+hPuCURL8oRF9fySRm7vzNWuEOghA1TXcykuXZp0HLG2td4RhDxCvGG7tNw==", + "license": "MIT", "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + "@babel/core": "^7.25.9", + "@babel/generator": "^7.25.9", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.25.9", + "@babel/preset-env": "^7.25.9", + "@babel/preset-react": "^7.25.9", + "@babel/preset-typescript": "^7.25.9", + "@babel/runtime": "^7.25.9", + "@babel/runtime-corejs3": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@docusaurus/logger": "3.6.3", + "@docusaurus/utils": "3.6.3", + "babel-plugin-dynamic-import-node": "^2.3.3", + "fs-extra": "^11.1.1", + "tslib": "^2.6.0" }, "engines": { - "node": ">=12" + "node": ">=18.0" } }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", + "node_modules/@docusaurus/bundler": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/bundler/-/bundler-3.6.3.tgz", + "integrity": "sha512-47JLuc8D4wA+6VOvmMd5fUC9rFppBQpQOnxDYiVXffm/DeV/wmm3sbpNd5Y+O+G2+nevLTRnvCm/qyancv0Y3A==", "license": "MIT", + "dependencies": { + "@babel/core": "^7.25.9", + "@docusaurus/babel": "3.6.3", + "@docusaurus/cssnano-preset": "3.6.3", + "@docusaurus/logger": "3.6.3", + "@docusaurus/types": "3.6.3", + "@docusaurus/utils": "3.6.3", + "babel-loader": "^9.2.1", + "clean-css": "^5.3.2", + "copy-webpack-plugin": "^11.0.0", + "css-loader": "^6.8.1", + "css-minimizer-webpack-plugin": "^5.0.1", + "cssnano": "^6.1.2", + "file-loader": "^6.2.0", + "html-minifier-terser": "^7.2.0", + "mini-css-extract-plugin": "^2.9.1", + "null-loader": "^4.0.1", + "postcss": "^8.4.26", + "postcss-loader": "^7.3.3", + "postcss-preset-env": "^10.1.0", + "react-dev-utils": "^12.0.1", + "terser-webpack-plugin": "^5.3.9", + "tslib": "^2.6.0", + "url-loader": "^4.1.1", + "webpack": "^5.95.0", + "webpackbar": "^6.0.1" + }, "engines": { - "node": ">=12" + "node": ">=18.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "peerDependencies": { + "@docusaurus/faster": "*" + }, + "peerDependenciesMeta": { + "@docusaurus/faster": { + "optional": true + } } }, - "node_modules/@isaacs/cliui/node_modules/ansi-styles": { - "version": "6.2.1", - "license": "MIT", + "node_modules/@docusaurus/core": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-3.6.3.tgz", + "integrity": "sha512-xL7FRY9Jr5DWqB6pEnqgKqcMPJOX5V0pgWXi5lCiih11sUBmcFKM7c3+GyxcVeeWFxyYSDP3grLTWqJoP4P9Vw==", + "license": "MIT", + "dependencies": { + "@docusaurus/babel": "3.6.3", + "@docusaurus/bundler": "3.6.3", + "@docusaurus/logger": "3.6.3", + "@docusaurus/mdx-loader": "3.6.3", + "@docusaurus/utils": "3.6.3", + "@docusaurus/utils-common": "3.6.3", + "@docusaurus/utils-validation": "3.6.3", + "boxen": "^6.2.1", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cli-table3": "^0.6.3", + "combine-promises": "^1.1.0", + "commander": "^5.1.0", + "core-js": "^3.31.1", + "del": "^6.1.1", + "detect-port": "^1.5.1", + "escape-html": "^1.0.3", + "eta": "^2.2.0", + "eval": "^0.1.8", + "fs-extra": "^11.1.1", + "html-tags": "^3.3.1", + "html-webpack-plugin": "^5.6.0", + "leven": "^3.1.0", + "lodash": "^4.17.21", + "p-map": "^4.0.0", + "prompts": "^2.4.2", + "react-dev-utils": "^12.0.1", + "react-helmet-async": "^1.3.0", + "react-loadable": "npm:@docusaurus/react-loadable@6.0.0", + "react-loadable-ssr-addon-v5-slorber": "^1.0.1", + "react-router": "^5.3.4", + "react-router-config": "^5.1.1", + "react-router-dom": "^5.3.4", + "rtl-detect": "^1.0.4", + "semver": "^7.5.4", + "serve-handler": "^6.1.6", + "shelljs": "^0.8.5", + "tslib": "^2.6.0", + "update-notifier": "^6.0.2", + "webpack": "^5.95.0", + "webpack-bundle-analyzer": "^4.10.2", + "webpack-dev-server": "^4.15.2", + "webpack-merge": "^6.0.1" + }, + "bin": { + "docusaurus": "bin/docusaurus.mjs" + }, "engines": { - "node": ">=12" + "node": ">=18.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "@mdx-js/react": "^3.0.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", - "license": "MIT" - }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", + "node_modules/@docusaurus/cssnano-preset": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-3.6.3.tgz", + "integrity": "sha512-qP7SXrwZ+23GFJdPN4aIHQrZW+oH/7tzwEuc/RNL0+BdZdmIjYQqUxdXsjE4lFxLNZjj0eUrSNYIS6xwfij+5Q==", "license": "MIT", "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "cssnano-preset-advanced": "^6.1.2", + "postcss": "^8.4.38", + "postcss-sort-media-queries": "^5.2.0", + "tslib": "^2.6.0" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=18.0" } }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", + "node_modules/@docusaurus/logger": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.6.3.tgz", + "integrity": "sha512-xSubJixcNyMV9wMV4q0s47CBz3Rlc5jbcCCuij8pfQP8qn/DIpt0ks8W6hQWzHAedg/J/EwxxUOUrnEoKzJo8g==", "license": "MIT", "dependencies": { - "ansi-regex": "^6.0.1" + "chalk": "^4.1.2", + "tslib": "^2.6.0" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "node": ">=18.0" } }, - "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { - "version": "8.1.0", + "node_modules/@docusaurus/mdx-loader": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-3.6.3.tgz", + "integrity": "sha512-3iJdiDz9540ppBseeI93tWTDtUGVkxzh59nMq4ignylxMuXBLK8dFqVeaEor23v1vx6TrGKZ2FuLaTB+U7C0QQ==", "license": "MIT", "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" + "@docusaurus/logger": "3.6.3", + "@docusaurus/utils": "3.6.3", + "@docusaurus/utils-validation": "3.6.3", + "@mdx-js/mdx": "^3.0.0", + "@slorber/remark-comment": "^1.0.0", + "escape-html": "^1.0.3", + "estree-util-value-to-estree": "^3.0.1", + "file-loader": "^6.2.0", + "fs-extra": "^11.1.1", + "image-size": "^1.0.2", + "mdast-util-mdx": "^3.0.0", + "mdast-util-to-string": "^4.0.0", + "rehype-raw": "^7.0.0", + "remark-directive": "^3.0.0", + "remark-emoji": "^4.0.0", + "remark-frontmatter": "^5.0.0", + "remark-gfm": "^4.0.0", + "stringify-object": "^3.3.0", + "tslib": "^2.6.0", + "unified": "^11.0.3", + "unist-util-visit": "^5.0.0", + "url-loader": "^4.1.1", + "vfile": "^6.0.1", + "webpack": "^5.88.1" }, "engines": { - "node": ">=12" + "node": ">=18.0" }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "dev": true, - "license": "ISC", + "node_modules/@docusaurus/module-type-aliases": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.6.3.tgz", + "integrity": "sha512-MjaXX9PN/k5ugNvfRZdWyKWq4FsrhN4LEXaj0pEmMebJuBNlFeGyKQUa9DRhJHpadNaiMLrbo9m3U7Ig5YlsZg==", + "license": "MIT", "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" + "@docusaurus/types": "3.6.3", + "@types/history": "^4.7.11", + "@types/react": "*", + "@types/react-router-config": "*", + "@types/react-router-dom": "*", + "react-helmet-async": "*", + "react-loadable": "npm:@docusaurus/react-loadable@6.0.0" }, - "engines": { - "node": ">=8" + "peerDependencies": { + "react": "*", + "react-dom": "*" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { - "version": "1.0.10", - "dev": true, - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" + "node_modules/@docusaurus/plugin-content-blog": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.6.3.tgz", + "integrity": "sha512-k0ogWwwJU3pFRFfvW1kRVHxzf2DutLGaaLjAnHVEU6ju+aRP0Z5ap/13DHyPOfHeE4WKpn/M0TqjdwZAcY3kAw==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.6.3", + "@docusaurus/logger": "3.6.3", + "@docusaurus/mdx-loader": "3.6.3", + "@docusaurus/theme-common": "3.6.3", + "@docusaurus/types": "3.6.3", + "@docusaurus/utils": "3.6.3", + "@docusaurus/utils-common": "3.6.3", + "@docusaurus/utils-validation": "3.6.3", + "cheerio": "1.0.0-rc.12", + "feed": "^4.2.2", + "fs-extra": "^11.1.1", + "lodash": "^4.17.21", + "reading-time": "^1.5.0", + "srcset": "^4.0.0", + "tslib": "^2.6.0", + "unist-util-visit": "^5.0.0", + "utility-types": "^3.10.0", + "webpack": "^5.88.1" + }, + "engines": { + "node": ">=18.0" + }, + "peerDependencies": { + "@docusaurus/plugin-content-docs": "*", + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { - "version": "5.3.1", - "dev": true, - "license": "MIT", + "node_modules/@docusaurus/plugin-content-docs": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.6.3.tgz", + "integrity": "sha512-r2wS8y/fsaDcxkm20W5bbYJFPzdWdEaTWVYjNxlHlcmX086eqQR1Fomlg9BHTJ0dLXPzAlbC8EN4XqMr3QzNCQ==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.6.3", + "@docusaurus/logger": "3.6.3", + "@docusaurus/mdx-loader": "3.6.3", + "@docusaurus/module-type-aliases": "3.6.3", + "@docusaurus/theme-common": "3.6.3", + "@docusaurus/types": "3.6.3", + "@docusaurus/utils": "3.6.3", + "@docusaurus/utils-common": "3.6.3", + "@docusaurus/utils-validation": "3.6.3", + "@types/react-router-config": "^5.0.7", + "combine-promises": "^1.1.0", + "fs-extra": "^11.1.1", + "js-yaml": "^4.1.0", + "lodash": "^4.17.21", + "tslib": "^2.6.0", + "utility-types": "^3.10.0", + "webpack": "^5.88.1" + }, "engines": { - "node": ">=6" + "node": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { - "version": "3.14.1", - "dev": true, + "node_modules/@docusaurus/plugin-content-pages": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.6.3.tgz", + "integrity": "sha512-eHrmTgjgLZsuqfsYr5X2xEwyIcck0wseSofWrjTwT9FLOWp+KDmMAuVK+wRo7sFImWXZk3oV/xX/g9aZrhD7OA==", "license": "MIT", "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "@docusaurus/core": "3.6.3", + "@docusaurus/mdx-loader": "3.6.3", + "@docusaurus/types": "3.6.3", + "@docusaurus/utils": "3.6.3", + "@docusaurus/utils-validation": "3.6.3", + "fs-extra": "^11.1.1", + "tslib": "^2.6.0", + "webpack": "^5.88.1" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { - "version": "5.0.0", - "dev": true, + "node_modules/@docusaurus/plugin-debug": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-3.6.3.tgz", + "integrity": "sha512-zB9GXfIZNPRfzKnNjU6xGVrqn9bPXuGhpjgsuc/YtcTDjnjhasg38NdYd5LEqXex5G/zIorQgWB3n6x/Ut62vQ==", "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.6.3", + "@docusaurus/types": "3.6.3", + "@docusaurus/utils": "3.6.3", + "fs-extra": "^11.1.1", + "react-json-view-lite": "^1.2.0", + "tslib": "^2.6.0" + }, "engines": { - "node": ">=8" + "node": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "dev": true, + "node_modules/@docusaurus/plugin-google-analytics": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.6.3.tgz", + "integrity": "sha512-rCDNy1QW8Dag7nZq67pcum0bpFLrwvxJhYuVprhFh8BMBDxV0bY+bAkGHbSf68P3Bk9C3hNOAXX1srGLIDvcTA==", "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.6.3", + "@docusaurus/types": "3.6.3", + "@docusaurus/utils-validation": "3.6.3", + "tslib": "^2.6.0" + }, "engines": { - "node": ">=8" + "node": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@jest/console": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", - "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", - "dev": true, + "node_modules/@docusaurus/plugin-google-gtag": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.6.3.tgz", + "integrity": "sha512-+OyDvhM6rqVkQOmLVkQWVJAizEEfkPzVWtIHXlWPOCFGK9X4/AWeBSrU0WG4iMg9Z4zD4YDRrU+lvI4s6DSC+w==", "license": "MIT", "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0", - "slash": "^3.0.0" + "@docusaurus/core": "3.6.3", + "@docusaurus/types": "3.6.3", + "@docusaurus/utils-validation": "3.6.3", + "@types/gtag.js": "^0.0.12", + "tslib": "^2.6.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@jest/console/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/@docusaurus/plugin-google-tag-manager": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.6.3.tgz", + "integrity": "sha512-1M6UPB13gWUtN2UHX083/beTn85PlRI9ABItTl/JL1FJ5dJTWWFXXsHf9WW/6hrVwthwTeV/AGbGKvLKV+IlCA==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "@docusaurus/core": "3.6.3", + "@docusaurus/types": "3.6.3", + "@docusaurus/utils-validation": "3.6.3", + "tslib": "^2.6.0" }, "engines": { - "node": ">=8" + "node": ">=18.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@jest/console/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "node_modules/@docusaurus/plugin-sitemap": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.6.3.tgz", + "integrity": "sha512-94qOO4M9Fwv9KfVQJsgbe91k+fPJ4byf1L3Ez8TUa6TAFPo/BrLwQ80zclHkENlL1824TuxkcMKv33u6eydQCg==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.6.3", + "@docusaurus/logger": "3.6.3", + "@docusaurus/types": "3.6.3", + "@docusaurus/utils": "3.6.3", + "@docusaurus/utils-common": "3.6.3", + "@docusaurus/utils-validation": "3.6.3", + "fs-extra": "^11.1.1", + "sitemap": "^7.1.1", + "tslib": "^2.6.0" }, "engines": { - "node": ">=10" + "node": ">=18.0" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@jest/console/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/@docusaurus/preset-classic": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-3.6.3.tgz", + "integrity": "sha512-VHSYWROT3flvNNI1SrnMOtW1EsjeHNK9dhU6s9eY5hryZe79lUqnZJyze/ymDe2LXAqzyj6y5oYvyBoZZk6ErA==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "@docusaurus/core": "3.6.3", + "@docusaurus/plugin-content-blog": "3.6.3", + "@docusaurus/plugin-content-docs": "3.6.3", + "@docusaurus/plugin-content-pages": "3.6.3", + "@docusaurus/plugin-debug": "3.6.3", + "@docusaurus/plugin-google-analytics": "3.6.3", + "@docusaurus/plugin-google-gtag": "3.6.3", + "@docusaurus/plugin-google-tag-manager": "3.6.3", + "@docusaurus/plugin-sitemap": "3.6.3", + "@docusaurus/theme-classic": "3.6.3", + "@docusaurus/theme-common": "3.6.3", + "@docusaurus/theme-search-algolia": "3.6.3", + "@docusaurus/types": "3.6.3" }, "engines": { - "node": ">=7.0.0" + "node": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@jest/console/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/console/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", + "node_modules/@docusaurus/theme-classic": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-3.6.3.tgz", + "integrity": "sha512-1RRLK1tSArI2c00qugWYO3jRocjOZwGF1mBzPPylDVRwWCS/rnWWR91ChdbbaxIupRJ+hX8ZBYrwr5bbU0oztQ==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.6.3", + "@docusaurus/logger": "3.6.3", + "@docusaurus/mdx-loader": "3.6.3", + "@docusaurus/module-type-aliases": "3.6.3", + "@docusaurus/plugin-content-blog": "3.6.3", + "@docusaurus/plugin-content-docs": "3.6.3", + "@docusaurus/plugin-content-pages": "3.6.3", + "@docusaurus/theme-common": "3.6.3", + "@docusaurus/theme-translations": "3.6.3", + "@docusaurus/types": "3.6.3", + "@docusaurus/utils": "3.6.3", + "@docusaurus/utils-common": "3.6.3", + "@docusaurus/utils-validation": "3.6.3", + "@mdx-js/react": "^3.0.0", + "clsx": "^2.0.0", + "copy-text-to-clipboard": "^3.2.0", + "infima": "0.2.0-alpha.45", + "lodash": "^4.17.21", + "nprogress": "^0.2.0", + "postcss": "^8.4.26", + "prism-react-renderer": "^2.3.0", + "prismjs": "^1.29.0", + "react-router-dom": "^5.3.4", + "rtlcss": "^4.1.0", + "tslib": "^2.6.0", + "utility-types": "^3.10.0" + }, "engines": { - "node": ">=8" + "node": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@jest/console/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/@docusaurus/theme-common": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-3.6.3.tgz", + "integrity": "sha512-b8ZkhczXHDxWWyvz+YJy4t/PlPbEogTTbgnHoflYnH7rmRtyoodTsu8WVM12la5LmlMJBclBXFl29OH8kPE7gg==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "@docusaurus/mdx-loader": "3.6.3", + "@docusaurus/module-type-aliases": "3.6.3", + "@docusaurus/utils": "3.6.3", + "@docusaurus/utils-common": "3.6.3", + "@types/history": "^4.7.11", + "@types/react": "*", + "@types/react-router-config": "*", + "clsx": "^2.0.0", + "parse-numeric-range": "^1.3.0", + "prism-react-renderer": "^2.3.0", + "tslib": "^2.6.0", + "utility-types": "^3.10.0" }, "engines": { - "node": ">=8" + "node": ">=18.0" + }, + "peerDependencies": { + "@docusaurus/plugin-content-docs": "*", + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@jest/core": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", - "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", - "dev": true, + "node_modules/@docusaurus/theme-mermaid": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-mermaid/-/theme-mermaid-3.6.3.tgz", + "integrity": "sha512-kIqpjNCP/9R2GGf8UmiDxD3CkOAEJuJIEFlaKMgQtjVxa/vH+9PLI1+DFbArGoG4+0ENTYUq8phHPW7SeL36uQ==", "license": "MIT", "dependencies": { - "@jest/console": "^29.7.0", - "@jest/reporters": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.7.0", - "jest-config": "^29.7.0", - "jest-haste-map": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.7.0", - "jest-resolve-dependencies": "^29.7.0", - "jest-runner": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-snapshot": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "jest-watcher": "^29.7.0", - "micromatch": "^4.0.4", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" + "@docusaurus/core": "3.6.3", + "@docusaurus/module-type-aliases": "3.6.3", + "@docusaurus/theme-common": "3.6.3", + "@docusaurus/types": "3.6.3", + "@docusaurus/utils-validation": "3.6.3", + "mermaid": ">=10.4", + "tslib": "^2.6.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=18.0" }, "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@jest/core/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" + "node_modules/@docusaurus/theme-search-algolia": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.6.3.tgz", + "integrity": "sha512-rt+MGCCpYgPyWCGXtbxlwFbTSobu15jWBTPI2LHsHNa5B0zSmOISX6FWYAPt5X1rNDOqMGM0FATnh7TBHRohVA==", + "license": "MIT", + "dependencies": { + "@docsearch/react": "^3.5.2", + "@docusaurus/core": "3.6.3", + "@docusaurus/logger": "3.6.3", + "@docusaurus/plugin-content-docs": "3.6.3", + "@docusaurus/theme-common": "3.6.3", + "@docusaurus/theme-translations": "3.6.3", + "@docusaurus/utils": "3.6.3", + "@docusaurus/utils-validation": "3.6.3", + "algoliasearch": "^4.18.0", + "algoliasearch-helper": "^3.13.3", + "clsx": "^2.0.0", + "eta": "^2.2.0", + "fs-extra": "^11.1.1", + "lodash": "^4.17.21", + "tslib": "^2.6.0", + "utility-types": "^3.10.0" }, "engines": { - "node": ">=8" + "node": ">=18.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@jest/core/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "node_modules/@docusaurus/theme-translations": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-3.6.3.tgz", + "integrity": "sha512-Gb0regclToVlngSIIwUCtBMQBq48qVUaN1XQNKW4XwlsgUyk0vP01LULdqbem7czSwIeBAFXFoORJ0RPX7ht/w==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "fs-extra": "^11.1.1", + "tslib": "^2.6.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=18.0" } }, - "node_modules/@jest/core/node_modules/ci-info": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", - "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], + "node_modules/@docusaurus/types": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.6.3.tgz", + "integrity": "sha512-xD9oTGDrouWzefkhe9ogB2fDV96/82cRpNGx2HIvI5L87JHNhQVIWimQ/3JIiiX/TEd5S9s+VO6FFguwKNRVow==", "license": "MIT", - "engines": { - "node": ">=8" + "dependencies": { + "@mdx-js/mdx": "^3.0.0", + "@types/history": "^4.7.11", + "@types/react": "*", + "commander": "^5.1.0", + "joi": "^17.9.2", + "react-helmet-async": "^1.3.0", + "utility-types": "^3.10.0", + "webpack": "^5.95.0", + "webpack-merge": "^5.9.0" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@jest/core/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/@docusaurus/types/node_modules/webpack-merge": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", + "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=10.0.0" } }, - "node_modules/@jest/core/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/core/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "node_modules/@docusaurus/utils": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.6.3.tgz", + "integrity": "sha512-0R/FR3bKVl4yl8QwbL4TYFfR+OXBRpVUaTJdENapBGR3YMwfM6/JnhGilWQO8AOwPJGtGoDK7ib8+8UF9f3OZQ==", "license": "MIT", + "dependencies": { + "@docusaurus/logger": "3.6.3", + "@docusaurus/types": "3.6.3", + "@docusaurus/utils-common": "3.6.3", + "@svgr/webpack": "^8.1.0", + "escape-string-regexp": "^4.0.0", + "file-loader": "^6.2.0", + "fs-extra": "^11.1.1", + "github-slugger": "^1.5.0", + "globby": "^11.1.0", + "gray-matter": "^4.0.3", + "jiti": "^1.20.0", + "js-yaml": "^4.1.0", + "lodash": "^4.17.21", + "micromatch": "^4.0.5", + "prompts": "^2.4.2", + "resolve-pathname": "^3.0.0", + "shelljs": "^0.8.5", + "tslib": "^2.6.0", + "url-loader": "^4.1.1", + "utility-types": "^3.10.0", + "webpack": "^5.88.1" + }, "engines": { - "node": ">=8" + "node": ">=18.0" } }, - "node_modules/@jest/core/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/@docusaurus/utils-common": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.6.3.tgz", + "integrity": "sha512-v4nKDaANLgT3pMBewHYEMAl/ufY0LkXao1QkFWzI5huWFOmNQ2UFzv2BiKeHX5Ownis0/w6cAyoxPhVdDonlSQ==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "@docusaurus/types": "3.6.3", + "tslib": "^2.6.0" }, + "engines": { + "node": ">=18.0" + } + }, + "node_modules/@docusaurus/utils-validation": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-3.6.3.tgz", + "integrity": "sha512-bhEGGiN5BE38h21vjqD70Gxg++j+PfYVddDUE5UFvLDup68QOcpD33CLr+2knPorlxRbEaNfz6HQDUMQ3HuqKw==", + "license": "MIT", + "dependencies": { + "@docusaurus/logger": "3.6.3", + "@docusaurus/utils": "3.6.3", + "@docusaurus/utils-common": "3.6.3", + "fs-extra": "^11.2.0", + "joi": "^17.9.2", + "js-yaml": "^4.1.0", + "lodash": "^4.17.21", + "tslib": "^2.6.0" + }, + "engines": { + "node": ">=18.0" + } + }, + "node_modules/@exodus/schemasafe": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.3.0.tgz", + "integrity": "sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==", + "license": "MIT" + }, + "node_modules/@faker-js/faker": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-5.5.3.tgz", + "integrity": "sha512-R11tGE6yIFwqpaIqcfkcg7AICXzFg14+5h5v0TfF/9+RMDL6jhzCy/pxHVOfbALGdtVYdt6JdR21tuxEgl34dw==", + "deprecated": "Please update to a newer version.", + "license": "MIT" + }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@hookform/error-message": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@hookform/error-message/-/error-message-2.0.1.tgz", + "integrity": "sha512-U410sAr92xgxT1idlu9WWOVjndxLdgPUHEB8Schr27C9eh7/xUnITWpCMF93s+lGiG++D4JnbSnrb5A21AdSNg==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0", + "react-hook-form": "^7.0.0" + } + }, + "node_modules/@ibm/telemetry-js": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@ibm/telemetry-js/-/telemetry-js-1.8.0.tgz", + "integrity": "sha512-1u/8f5TtDHXWNQe+YfIESesZGX2PmhEfyU0znlyFvATch+xc5fPYjXj2gWKMTmdKsDawqAm/BkJBQjx2CDlZww==", + "license": "Apache-2.0", + "bin": { + "ibmtelemetry": "dist/collect.js" + } + }, + "node_modules/@iconify/types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz", + "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", + "license": "MIT" + }, + "node_modules/@iconify/utils": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@iconify/utils/-/utils-2.2.1.tgz", + "integrity": "sha512-0/7J7hk4PqXmxo5PDBDxmnecw5PxklZJfNjIVG9FM0mEfVrvfudS22rYWsqVk6gR3UJ/mSYS90X4R3znXnqfNA==", + "license": "MIT", + "dependencies": { + "@antfu/install-pkg": "^0.4.1", + "@antfu/utils": "^0.7.10", + "@iconify/types": "^2.0.0", + "debug": "^4.4.0", + "globals": "^15.13.0", + "kolorist": "^1.8.0", + "local-pkg": "^0.5.1", + "mlly": "^1.7.3" + } + }, + "node_modules/@iconify/utils/node_modules/globals": { + "version": "15.14.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.14.0.tgz", + "integrity": "sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, + "node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, "node_modules/@jest/environment": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", @@ -3729,135 +5219,44 @@ } } }, - "node_modules/@jest/reporters/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "@sinclair/typebox": "^0.27.8" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/reporters/node_modules/chalk": { - "version": "4.1.2", + "node_modules/@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/reporters/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "license": "MIT", "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/reporters/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/reporters/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/reporters/node_modules/jest-worker": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", - "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "jest-util": "^29.7.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/reporters/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/schemas": { - "version": "29.6.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@sinclair/typebox": "^0.27.8" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/source-map": { - "version": "29.6.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.18", - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/test-result": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", - "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/console": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3906,90 +5305,10 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/transform/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/transform/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/transform/node_modules/convert-source-map": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/transform/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/transform/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/transform/node_modules/write-file-atomic": { - "version": "4.0.2", - "dev": true, - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, "node_modules/@jest/types": { "version": "29.6.3", - "dev": true, + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", @@ -4003,74 +5322,11 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/types/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/types/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@jest/types/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/types/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "license": "MIT", "dependencies": { "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", @@ -4081,7 +5337,9 @@ } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "license": "MIT", "engines": { "node": ">=6.0.0" @@ -4091,18 +5349,32 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "license": "MIT", "engines": { "node": ">=6.0.0" } }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.25", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" @@ -4110,27 +5382,35 @@ }, "node_modules/@jsdevtools/ono": { "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz", + "integrity": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==", "license": "MIT" }, "node_modules/@leichtgewicht/ip-codec": { - "version": "2.0.4", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", + "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", "license": "MIT" }, "node_modules/@lezer/common": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.2.3.tgz", - "integrity": "sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==" + "integrity": "sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==", + "license": "MIT" }, "node_modules/@lezer/highlight": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@lezer/highlight/-/highlight-1.2.1.tgz", "integrity": "sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==", + "license": "MIT", "dependencies": { "@lezer/common": "^1.0.0" } }, "node_modules/@lezer/json": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@lezer/json/-/json-1.0.2.tgz", + "integrity": "sha512-xHT2P4S5eeCYECyKNPhr4cbEL9tc8w83SPwRC373o9uEdrvGKTZoJVAGxpOsZckMlEh9W23Pc72ew918RWQOBQ==", "license": "MIT", "dependencies": { "@lezer/common": "^1.2.0", @@ -4142,6 +5422,7 @@ "version": "1.4.2", "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.2.tgz", "integrity": "sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==", + "license": "MIT", "dependencies": { "@lezer/common": "^1.0.0" } @@ -4150,148 +5431,84 @@ "version": "1.3.2", "resolved": "https://registry.npmjs.org/@lezer/markdown/-/markdown-1.3.2.tgz", "integrity": "sha512-Wu7B6VnrKTbBEohqa63h5vxXjiC4pO5ZQJ/TDbhJxPQaaIoRD/6UVDhSDtVsCwVZV12vvN9KxuLL3ATMnlG0oQ==", + "license": "MIT", "dependencies": { "@lezer/common": "^1.0.0", "@lezer/highlight": "^1.0.0" } }, + "node_modules/@marijn/find-cluster-break": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@marijn/find-cluster-break/-/find-cluster-break-1.0.2.tgz", + "integrity": "sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==", + "license": "MIT" + }, "node_modules/@mdx-js/mdx": { - "version": "1.6.22", - "license": "MIT", - "dependencies": { - "@babel/core": "7.12.9", - "@babel/plugin-syntax-jsx": "7.12.1", - "@babel/plugin-syntax-object-rest-spread": "7.8.3", - "@mdx-js/util": "1.6.22", - "babel-plugin-apply-mdx-type-prop": "1.6.22", - "babel-plugin-extract-import-names": "1.6.22", - "camelcase-css": "2.0.1", - "detab": "2.0.4", - "hast-util-raw": "6.0.1", - "lodash.uniq": "4.5.0", - "mdast-util-to-hast": "10.0.1", - "remark-footnotes": "2.0.0", - "remark-mdx": "1.6.22", - "remark-parse": "8.0.3", - "remark-squeeze-paragraphs": "4.0.0", - "style-to-object": "0.3.0", - "unified": "9.2.0", - "unist-builder": "2.0.3", - "unist-util-visit": "2.0.3" + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.0.tgz", + "integrity": "sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdx": "^2.0.0", + "collapse-white-space": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "estree-util-scope": "^1.0.0", + "estree-walker": "^3.0.0", + "hast-util-to-jsx-runtime": "^2.0.0", + "markdown-extensions": "^2.0.0", + "recma-build-jsx": "^1.0.0", + "recma-jsx": "^1.0.0", + "recma-stringify": "^1.0.0", + "rehype-recma": "^1.0.0", + "remark-mdx": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-rehype": "^11.0.0", + "source-map": "^0.7.0", + "unified": "^11.0.0", + "unist-util-position-from-estree": "^2.0.0", + "unist-util-stringify-position": "^4.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/@mdx-js/mdx/node_modules/@babel/core": { - "version": "7.12.9", + "node_modules/@mdx-js/react": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-3.1.0.tgz", + "integrity": "sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==", "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.5", - "@babel/helper-module-transforms": "^7.12.1", - "@babel/helpers": "^7.12.5", - "@babel/parser": "^7.12.7", - "@babel/template": "^7.12.7", - "@babel/traverse": "^7.12.9", - "@babel/types": "^7.12.7", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.19", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" - }, - "engines": { - "node": ">=6.9.0" + "@types/mdx": "^2.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/babel" + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@types/react": ">=16", + "react": ">=16" } }, - "node_modules/@mdx-js/mdx/node_modules/@babel/plugin-syntax-jsx": { - "version": "7.12.1", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@mdx-js/mdx/node_modules/semver": { - "version": "5.7.1", - "license": "ISC", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/@mdx-js/mdx/node_modules/unified": { - "version": "9.2.0", - "license": "MIT", - "dependencies": { - "bail": "^1.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^2.0.0", - "trough": "^1.0.0", - "vfile": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@mdx-js/mdx/node_modules/unist-util-visit": { - "version": "2.0.3", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0", - "unist-util-visit-parents": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@mdx-js/mdx/node_modules/unist-util-visit-parents": { - "version": "3.1.1", + "node_modules/@mermaid-js/parser": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@mermaid-js/parser/-/parser-0.3.0.tgz", + "integrity": "sha512-HsvL6zgE5sUPGgkIDlmAWR1HTNHz2Iy11BAWPTa4Jjabkpguy4Ze2gzfLrg6pdRuBvFwgUYyxiaNqZwrEEXepA==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@mdx-js/react": { - "version": "1.6.22", - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - }, - "peerDependencies": { - "react": "^16.13.1 || ^17.0.0" - } - }, - "node_modules/@mdx-js/util": { - "version": "1.6.22", - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "langium": "3.0.0" } }, "node_modules/@mrmlnc/readdir-enhanced": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", "license": "MIT", "dependencies": { "call-me-maybe": "^1.0.1", @@ -4303,10 +5520,14 @@ }, "node_modules/@mrmlnc/readdir-enhanced/node_modules/glob-to-regexp": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", + "integrity": "sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==", "license": "BSD" }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", @@ -4318,6 +5539,8 @@ }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "license": "MIT", "engines": { "node": ">= 8" @@ -4325,6 +5548,8 @@ }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", @@ -4334,193 +5559,409 @@ "node": ">= 8" } }, - "node_modules/@paloaltonetworks/openapi-to-postmanv2": { - "version": "3.1.0-hotfix.1", - "license": "Apache-2.0", + "node_modules/@parcel/watcher": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.0.tgz", + "integrity": "sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, "dependencies": { - "@paloaltonetworks/postman-collection": "^4.1.0", - "ajv": "8.1.0", - "ajv-formats": "2.1.1", - "async": "3.2.1", - "commander": "2.20.3", - "js-yaml": "3.14.1", - "json-schema-merge-allof": "0.8.1", - "lodash": "4.17.21", - "oas-resolver-browser": "2.5.2", - "path-browserify": "1.0.1", - "yaml": "1.10.2" + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" }, - "bin": { - "openapi2postmanv2": "bin/openapi2postmanv2.js" + "engines": { + "node": ">= 10.0.0" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.5.0", + "@parcel/watcher-darwin-arm64": "2.5.0", + "@parcel/watcher-darwin-x64": "2.5.0", + "@parcel/watcher-freebsd-x64": "2.5.0", + "@parcel/watcher-linux-arm-glibc": "2.5.0", + "@parcel/watcher-linux-arm-musl": "2.5.0", + "@parcel/watcher-linux-arm64-glibc": "2.5.0", + "@parcel/watcher-linux-arm64-musl": "2.5.0", + "@parcel/watcher-linux-x64-glibc": "2.5.0", + "@parcel/watcher-linux-x64-musl": "2.5.0", + "@parcel/watcher-win32-arm64": "2.5.0", + "@parcel/watcher-win32-ia32": "2.5.0", + "@parcel/watcher-win32-x64": "2.5.0" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.0.tgz", + "integrity": "sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=8" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@paloaltonetworks/openapi-to-postmanv2/node_modules/ajv": { - "version": "8.1.0", + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.0.tgz", + "integrity": "sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==", + "cpu": [ + "arm64" + ], "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@paloaltonetworks/openapi-to-postmanv2/node_modules/argparse": { - "version": "1.0.10", + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.0.tgz", + "integrity": "sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==", + "cpu": [ + "x64" + ], "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@paloaltonetworks/openapi-to-postmanv2/node_modules/async": { - "version": "3.2.1", - "license": "MIT" - }, - "node_modules/@paloaltonetworks/openapi-to-postmanv2/node_modules/commander": { - "version": "2.20.3", - "license": "MIT" - }, - "node_modules/@paloaltonetworks/openapi-to-postmanv2/node_modules/js-yaml": { - "version": "3.14.1", + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.0.tgz", + "integrity": "sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==", + "cpu": [ + "x64" + ], "license": "MIT", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@paloaltonetworks/openapi-to-postmanv2/node_modules/json-schema-traverse": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/@paloaltonetworks/postman-code-generators": { - "version": "1.1.15-patch.2", - "hasInstallScript": true, - "license": "Apache-2.0", - "dependencies": { - "@paloaltonetworks/postman-collection": "^4.1.0", - "async": "^3.2.4", - "path": "^0.12.7", - "shelljs": "^0.8.5" - }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.0.tgz", + "integrity": "sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6" - } - }, - "node_modules/@paloaltonetworks/postman-code-generators/node_modules/async": { - "version": "3.2.5", - "license": "MIT" - }, - "node_modules/@paloaltonetworks/postman-collection": { - "version": "4.1.1", - "license": "Apache-2.0", - "dependencies": { - "file-type": "3.9.0", - "http-reasons": "0.1.0", - "iconv-lite": "0.6.3", - "liquid-json": "0.3.1", - "lodash": "4.17.21", - "mime-format": "2.0.1", - "mime-types": "2.1.34", - "postman-url-encoder": "3.0.5", - "semver": "7.3.5", - "uuid": "8.3.2" + "node": ">= 10.0.0" }, - "engines": { - "node": ">=10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@paloaltonetworks/postman-collection/node_modules/file-type": { - "version": "3.9.0", + "node_modules/@parcel/watcher-linux-arm-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.0.tgz", + "integrity": "sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==", + "cpu": [ + "arm" + ], "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@paloaltonetworks/postman-collection/node_modules/iconv-lite": { - "version": "0.6.3", + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.0.tgz", + "integrity": "sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==", + "cpu": [ + "arm64" + ], "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@paloaltonetworks/postman-collection/node_modules/semver": { - "version": "7.3.5", - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "node": ">= 10.0.0" }, - "engines": { - "node": ">=10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.0.tgz", + "integrity": "sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==", + "cpu": [ + "arm64" + ], "license": "MIT", "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=14" - } - }, - "node_modules/@playwright/test": { - "version": "1.49.0", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "playwright": "1.49.0" - }, - "bin": { - "playwright": "cli.js" + "node": ">= 10.0.0" }, - "engines": { - "node": ">=18" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@polka/url": { - "version": "1.0.0-next.21", - "license": "MIT" - }, - "node_modules/@redocly/ajv": { - "version": "8.11.0", + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.0.tgz", + "integrity": "sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.0.tgz", + "integrity": "sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.0.tgz", + "integrity": "sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.0.tgz", + "integrity": "sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.0.tgz", + "integrity": "sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@playwright/test": { + "version": "1.49.1", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.49.1.tgz", + "integrity": "sha512-Ky+BVzPz8pL6PQxHqNRW1k3mIyv933LML7HktS8uik0bUXNCdPhoS/kLihiO1tMf/egaJb4IutXd7UywvXEW+g==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "playwright": "1.49.1" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@pnpm/config.env-replace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", + "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", + "license": "MIT", + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/network.ca-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", + "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", + "license": "MIT", + "dependencies": { + "graceful-fs": "4.2.10" + }, + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "license": "ISC" + }, + "node_modules/@pnpm/npm-conf": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz", + "integrity": "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==", + "license": "MIT", + "dependencies": { + "@pnpm/config.env-replace": "^1.1.0", + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@polka/url": { + "version": "1.0.0-next.28", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.28.tgz", + "integrity": "sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==", + "license": "MIT" + }, + "node_modules/@redocly/ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "uri-js-replace": "^1.0.1" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@redocly/ajv/node_modules/json-schema-traverse": { - "version": "1.0.0", + "node_modules/@redocly/config": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/@redocly/config/-/config-0.17.1.tgz", + "integrity": "sha512-CEmvaJuG7pm2ylQg53emPmtgm4nW2nxBgwXzbVEHpGas/lGnMyN8Zlkgiz6rPw0unASg6VW3wlz27SOL5XFHYQ==", "license": "MIT" }, "node_modules/@redocly/openapi-core": { - "version": "1.7.0", + "version": "1.26.1", + "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.26.1.tgz", + "integrity": "sha512-xRuVZqMVRFzqjbUCpOTra4tbnmQMWsya996omZMV3WgD084Z6OWB3FXflhAp93E/yAmbWlWZpddw758AyoaLSw==", "license": "MIT", "dependencies": { - "@redocly/ajv": "^8.11.0", + "@redocly/ajv": "^8.11.2", + "@redocly/config": "^0.17.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", "minimatch": "^5.0.1", "node-fetch": "^2.6.1", "pluralize": "^8.0.0", @@ -4531,29 +5972,10 @@ "npm": ">=7.0.0" } }, - "node_modules/@redocly/openapi-core/node_modules/brace-expansion": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@redocly/openapi-core/node_modules/colorette": { - "version": "1.4.0", - "license": "MIT" - }, - "node_modules/@redocly/openapi-core/node_modules/minimatch": { - "version": "5.1.6", - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@reduxjs/toolkit": { "version": "1.9.7", + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.7.tgz", + "integrity": "sha512-t7v8ZPxhhKgOKtU+uyJT13lu4vL7az5aFi4IdoDs/eS548edn2M8Ik9h8fxgvMjGoAUVFSt6ZC1P5cWmQ014QQ==", "license": "MIT", "dependencies": { "immer": "^9.0.21", @@ -4575,42 +5997,54 @@ } }, "node_modules/@rrweb/types": { - "version": "2.0.0-alpha.17", - "resolved": "https://registry.npmjs.org/@rrweb/types/-/types-2.0.0-alpha.17.tgz", - "integrity": "sha512-AfDTVUuCyCaIG0lTSqYtrZqJX39ZEYzs4fYKnexhQ+id+kbZIpIJtaut5cto6dWZbB3SEe4fW0o90Po3LvTmfg==", - "dependencies": { - "rrweb-snapshot": "^2.0.0-alpha.17" - } + "version": "2.0.0-alpha.18", + "resolved": "https://registry.npmjs.org/@rrweb/types/-/types-2.0.0-alpha.18.tgz", + "integrity": "sha512-iMH3amHthJZ9x3gGmBPmdfim7wLGygC2GciIkw2A6SO8giSn8PHYtRT8OKNH4V+k3SZ6RSnYHcTQxBA7pSWZ3Q==", + "license": "MIT" }, "node_modules/@saucelabs/theme-github-codeblock": { "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@saucelabs/theme-github-codeblock/-/theme-github-codeblock-0.2.3.tgz", + "integrity": "sha512-GSl3Lr/jOWm4OP3BPX2vXxc8FMSOXj1mJnls6cUqMwlGOfKQ1Ia9pq1O9/ES+5TrZHIzAws/n5FFSn1OkGJw/Q==", "license": "MIT" }, "node_modules/@sideway/address": { - "version": "4.1.4", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", + "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", "license": "BSD-3-Clause", "dependencies": { "@hapi/hoek": "^9.0.0" } }, "node_modules/@sideway/formula": { - "version": "3.0.0", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", "license": "BSD-3-Clause" }, "node_modules/@sideway/pinpoint": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", "license": "BSD-3-Clause" }, "node_modules/@sinclair/typebox": { "version": "0.27.8", - "dev": true, + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "license": "MIT" }, "node_modules/@sindresorhus/is": { - "version": "0.14.0", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", "license": "MIT", "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" } }, "node_modules/@sinonjs/commons": { @@ -4625,26 +6059,29 @@ }, "node_modules/@sinonjs/fake-timers": { "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", "dev": true, "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^3.0.0" } }, - "node_modules/@slorber/static-site-generator-webpack-plugin": { - "version": "4.0.7", + "node_modules/@slorber/remark-comment": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@slorber/remark-comment/-/remark-comment-1.0.0.tgz", + "integrity": "sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA==", "license": "MIT", "dependencies": { - "eval": "^0.1.8", - "p-map": "^4.0.0", - "webpack-sources": "^3.2.2" - }, - "engines": { - "node": ">=14" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.1.0", + "micromark-util-symbol": "^1.0.1" } }, "node_modules/@stencil/core": { "version": "2.22.3", + "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.3.tgz", + "integrity": "sha512-kmVA0M/HojwsfkeHsifvHVIYe4l5tin7J5+DLgtl8h6WWfiMClND5K3ifCXXI2ETDNKiEk21p6jql3Fx9o2rng==", "license": "MIT", "bin": { "stencil": "bin/stencil" @@ -4655,10 +6092,12 @@ } }, "node_modules/@svgr/babel-plugin-add-jsx-attribute": { - "version": "6.5.1", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz", + "integrity": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==", "license": "MIT", "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { "type": "github", @@ -4669,10 +6108,12 @@ } }, "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { - "version": "6.5.0", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz", + "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==", "license": "MIT", "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { "type": "github", @@ -4683,10 +6124,12 @@ } }, "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "6.5.0", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz", + "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==", "license": "MIT", "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { "type": "github", @@ -4697,10 +6140,12 @@ } }, "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { - "version": "6.5.1", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz", + "integrity": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==", "license": "MIT", "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { "type": "github", @@ -4711,10 +6156,12 @@ } }, "node_modules/@svgr/babel-plugin-svg-dynamic-title": { - "version": "6.5.1", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz", + "integrity": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==", "license": "MIT", "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { "type": "github", @@ -4725,10 +6172,12 @@ } }, "node_modules/@svgr/babel-plugin-svg-em-dimensions": { - "version": "6.5.1", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz", + "integrity": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==", "license": "MIT", "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { "type": "github", @@ -4739,10 +6188,12 @@ } }, "node_modules/@svgr/babel-plugin-transform-react-native-svg": { - "version": "6.5.1", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz", + "integrity": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==", "license": "MIT", "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { "type": "github", @@ -4753,7 +6204,9 @@ } }, "node_modules/@svgr/babel-plugin-transform-svg-component": { - "version": "6.5.1", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz", + "integrity": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==", "license": "MIT", "engines": { "node": ">=12" @@ -4767,20 +6220,22 @@ } }, "node_modules/@svgr/babel-preset": { - "version": "6.5.1", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-8.1.0.tgz", + "integrity": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==", "license": "MIT", "dependencies": { - "@svgr/babel-plugin-add-jsx-attribute": "^6.5.1", - "@svgr/babel-plugin-remove-jsx-attribute": "*", - "@svgr/babel-plugin-remove-jsx-empty-expression": "*", - "@svgr/babel-plugin-replace-jsx-attribute-value": "^6.5.1", - "@svgr/babel-plugin-svg-dynamic-title": "^6.5.1", - "@svgr/babel-plugin-svg-em-dimensions": "^6.5.1", - "@svgr/babel-plugin-transform-react-native-svg": "^6.5.1", - "@svgr/babel-plugin-transform-svg-component": "^6.5.1" + "@svgr/babel-plugin-add-jsx-attribute": "8.0.0", + "@svgr/babel-plugin-remove-jsx-attribute": "8.0.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "8.0.0", + "@svgr/babel-plugin-replace-jsx-attribute-value": "8.0.0", + "@svgr/babel-plugin-svg-dynamic-title": "8.0.0", + "@svgr/babel-plugin-svg-em-dimensions": "8.0.0", + "@svgr/babel-plugin-transform-react-native-svg": "8.1.0", + "@svgr/babel-plugin-transform-svg-component": "8.0.0" }, "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { "type": "github", @@ -4791,17 +6246,19 @@ } }, "node_modules/@svgr/core": { - "version": "6.5.1", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-8.1.0.tgz", + "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", "license": "MIT", "dependencies": { - "@babel/core": "^7.19.6", - "@svgr/babel-preset": "^6.5.1", - "@svgr/plugin-jsx": "^6.5.1", + "@babel/core": "^7.21.3", + "@svgr/babel-preset": "8.1.0", "camelcase": "^6.2.0", - "cosmiconfig": "^7.0.1" + "cosmiconfig": "^8.1.3", + "snake-case": "^3.0.4" }, "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { "type": "github", @@ -4809,60 +6266,56 @@ } }, "node_modules/@svgr/hast-util-to-babel-ast": { - "version": "6.5.1", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz", + "integrity": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==", "license": "MIT", "dependencies": { - "@babel/types": "^7.20.0", + "@babel/types": "^7.21.3", "entities": "^4.4.0" }, "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/hast-util-to-babel-ast/node_modules/entities": { - "version": "4.4.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, "node_modules/@svgr/plugin-jsx": { - "version": "6.5.1", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz", + "integrity": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==", "license": "MIT", "dependencies": { - "@babel/core": "^7.19.6", - "@svgr/babel-preset": "^6.5.1", - "@svgr/hast-util-to-babel-ast": "^6.5.1", + "@babel/core": "^7.21.3", + "@svgr/babel-preset": "8.1.0", + "@svgr/hast-util-to-babel-ast": "8.0.0", "svg-parser": "^2.0.4" }, "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { "type": "github", "url": "https://github.com/sponsors/gregberge" }, "peerDependencies": { - "@svgr/core": "^6.0.0" + "@svgr/core": "*" } }, "node_modules/@svgr/plugin-svgo": { - "version": "6.5.1", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz", + "integrity": "sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==", "license": "MIT", "dependencies": { - "cosmiconfig": "^7.0.1", - "deepmerge": "^4.2.2", - "svgo": "^2.8.0" + "cosmiconfig": "^8.1.3", + "deepmerge": "^4.3.1", + "svgo": "^3.0.2" }, "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { "type": "github", @@ -4873,20 +6326,22 @@ } }, "node_modules/@svgr/webpack": { - "version": "6.5.1", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-8.1.0.tgz", + "integrity": "sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==", "license": "MIT", "dependencies": { - "@babel/core": "^7.19.6", - "@babel/plugin-transform-react-constant-elements": "^7.18.12", - "@babel/preset-env": "^7.19.4", + "@babel/core": "^7.21.3", + "@babel/plugin-transform-react-constant-elements": "^7.21.3", + "@babel/preset-env": "^7.20.2", "@babel/preset-react": "^7.18.6", - "@babel/preset-typescript": "^7.18.6", - "@svgr/core": "^6.5.1", - "@svgr/plugin-jsx": "^6.5.1", - "@svgr/plugin-svgo": "^6.5.1" + "@babel/preset-typescript": "^7.21.0", + "@svgr/core": "8.1.0", + "@svgr/plugin-jsx": "8.1.0", + "@svgr/plugin-svgo": "8.1.0" }, "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { "type": "github", @@ -4894,11 +6349,12 @@ } }, "node_modules/@swc/core": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.9.3.tgz", - "integrity": "sha512-oRj0AFePUhtatX+BscVhnzaAmWjpfAeySpM1TCbxA1rtBDeH/JDhi5yYzAKneDYtVtBvA7ApfeuzhMC9ye4xSg==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.10.1.tgz", + "integrity": "sha512-rQ4dS6GAdmtzKiCRt3LFVxl37FaY1cgL9kSUTnhQ2xc3fmHOd7jdJK/V4pSZMG1ruGTd0bsi34O2R0Olg9Zo/w==", "dev": true, "hasInstallScript": true, + "license": "Apache-2.0", "dependencies": { "@swc/counter": "^0.1.3", "@swc/types": "^0.1.17" @@ -4911,16 +6367,16 @@ "url": "https://opencollective.com/swc" }, "optionalDependencies": { - "@swc/core-darwin-arm64": "1.9.3", - "@swc/core-darwin-x64": "1.9.3", - "@swc/core-linux-arm-gnueabihf": "1.9.3", - "@swc/core-linux-arm64-gnu": "1.9.3", - "@swc/core-linux-arm64-musl": "1.9.3", - "@swc/core-linux-x64-gnu": "1.9.3", - "@swc/core-linux-x64-musl": "1.9.3", - "@swc/core-win32-arm64-msvc": "1.9.3", - "@swc/core-win32-ia32-msvc": "1.9.3", - "@swc/core-win32-x64-msvc": "1.9.3" + "@swc/core-darwin-arm64": "1.10.1", + "@swc/core-darwin-x64": "1.10.1", + "@swc/core-linux-arm-gnueabihf": "1.10.1", + "@swc/core-linux-arm64-gnu": "1.10.1", + "@swc/core-linux-arm64-musl": "1.10.1", + "@swc/core-linux-x64-gnu": "1.10.1", + "@swc/core-linux-x64-musl": "1.10.1", + "@swc/core-win32-arm64-msvc": "1.10.1", + "@swc/core-win32-ia32-msvc": "1.10.1", + "@swc/core-win32-x64-msvc": "1.10.1" }, "peerDependencies": { "@swc/helpers": "*" @@ -4932,13 +6388,14 @@ } }, "node_modules/@swc/core-darwin-arm64": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.9.3.tgz", - "integrity": "sha512-hGfl/KTic/QY4tB9DkTbNuxy5cV4IeejpPD4zo+Lzt4iLlDWIeANL4Fkg67FiVceNJboqg48CUX+APhDHO5G1w==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.10.1.tgz", + "integrity": "sha512-NyELPp8EsVZtxH/mEqvzSyWpfPJ1lugpTQcSlMduZLj1EASLO4sC8wt8hmL1aizRlsbjCX+r0PyL+l0xQ64/6Q==", "cpu": [ "arm64" ], "dev": true, + "license": "Apache-2.0 AND MIT", "optional": true, "os": [ "darwin" @@ -4948,13 +6405,14 @@ } }, "node_modules/@swc/core-darwin-x64": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.9.3.tgz", - "integrity": "sha512-IaRq05ZLdtgF5h9CzlcgaNHyg4VXuiStnOFpfNEMuI5fm5afP2S0FHq8WdakUz5WppsbddTdplL+vpeApt/WCQ==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.10.1.tgz", + "integrity": "sha512-L4BNt1fdQ5ZZhAk5qoDfUnXRabDOXKnXBxMDJ+PWLSxOGBbWE6aJTnu4zbGjJvtot0KM46m2LPAPY8ttknqaZA==", "cpu": [ "x64" ], "dev": true, + "license": "Apache-2.0 AND MIT", "optional": true, "os": [ "darwin" @@ -4964,13 +6422,14 @@ } }, "node_modules/@swc/core-linux-arm-gnueabihf": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.9.3.tgz", - "integrity": "sha512-Pbwe7xYprj/nEnZrNBvZfjnTxlBIcfApAGdz2EROhjpPj+FBqBa3wOogqbsuGGBdCphf8S+KPprL1z+oDWkmSQ==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.10.1.tgz", + "integrity": "sha512-Y1u9OqCHgvVp2tYQAJ7hcU9qO5brDMIrA5R31rwWQIAKDkJKtv3IlTHF0hrbWk1wPR0ZdngkQSJZple7G+Grvw==", "cpu": [ "arm" ], "dev": true, + "license": "Apache-2.0", "optional": true, "os": [ "linux" @@ -4980,13 +6439,14 @@ } }, "node_modules/@swc/core-linux-arm64-gnu": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.9.3.tgz", - "integrity": "sha512-AQ5JZiwNGVV/2K2TVulg0mw/3LYfqpjZO6jDPtR2evNbk9Yt57YsVzS+3vHSlUBQDRV9/jqMuZYVU3P13xrk+g==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.10.1.tgz", + "integrity": "sha512-tNQHO/UKdtnqjc7o04iRXng1wTUXPgVd8Y6LI4qIbHVoVPwksZydISjMcilKNLKIwOoUQAkxyJ16SlOAeADzhQ==", "cpu": [ "arm64" ], "dev": true, + "license": "Apache-2.0 AND MIT", "optional": true, "os": [ "linux" @@ -4996,13 +6456,14 @@ } }, "node_modules/@swc/core-linux-arm64-musl": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.9.3.tgz", - "integrity": "sha512-tzVH480RY6RbMl/QRgh5HK3zn1ZTFsThuxDGo6Iuk1MdwIbdFYUY034heWUTI4u3Db97ArKh0hNL0xhO3+PZdg==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.10.1.tgz", + "integrity": "sha512-x0L2Pd9weQ6n8dI1z1Isq00VHFvpBClwQJvrt3NHzmR+1wCT/gcYl1tp9P5xHh3ldM8Cn4UjWCw+7PaUgg8FcQ==", "cpu": [ "arm64" ], "dev": true, + "license": "Apache-2.0 AND MIT", "optional": true, "os": [ "linux" @@ -5012,9 +6473,9 @@ } }, "node_modules/@swc/core-linux-x64-gnu": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.9.3.tgz", - "integrity": "sha512-ivXXBRDXDc9k4cdv10R21ccBmGebVOwKXT/UdH1PhxUn9m/h8erAWjz5pcELwjiMf27WokqPgaWVfaclDbgE+w==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.10.1.tgz", + "integrity": "sha512-yyYEwQcObV3AUsC79rSzN9z6kiWxKAVJ6Ntwq2N9YoZqSPYph+4/Am5fM1xEQYf/kb99csj0FgOelomJSobxQA==", "cpu": [ "x64" ], @@ -5029,9 +6490,9 @@ } }, "node_modules/@swc/core-linux-x64-musl": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.9.3.tgz", - "integrity": "sha512-ILsGMgfnOz1HwdDz+ZgEuomIwkP1PHT6maigZxaCIuC6OPEhKE8uYna22uU63XvYcLQvZYDzpR3ms47WQPuNEg==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.10.1.tgz", + "integrity": "sha512-tcaS43Ydd7Fk7sW5ROpaf2Kq1zR+sI5K0RM+0qYLYYurvsJruj3GhBCaiN3gkzd8m/8wkqNqtVklWaQYSDsyqA==", "cpu": [ "x64" ], @@ -5046,13 +6507,14 @@ } }, "node_modules/@swc/core-win32-arm64-msvc": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.9.3.tgz", - "integrity": "sha512-e+XmltDVIHieUnNJHtspn6B+PCcFOMYXNJB1GqoCcyinkEIQNwC8KtWgMqUucUbEWJkPc35NHy9k8aCXRmw9Kg==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.10.1.tgz", + "integrity": "sha512-D3Qo1voA7AkbOzQ2UGuKNHfYGKL6eejN8VWOoQYtGHHQi1p5KK/Q7V1ku55oxXBsj79Ny5FRMqiRJpVGad7bjQ==", "cpu": [ "arm64" ], "dev": true, + "license": "Apache-2.0 AND MIT", "optional": true, "os": [ "win32" @@ -5062,13 +6524,14 @@ } }, "node_modules/@swc/core-win32-ia32-msvc": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.9.3.tgz", - "integrity": "sha512-rqpzNfpAooSL4UfQnHhkW8aL+oyjqJniDP0qwZfGnjDoJSbtPysHg2LpcOBEdSnEH+uIZq6J96qf0ZFD8AGfXA==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.10.1.tgz", + "integrity": "sha512-WalYdFoU3454Og+sDKHM1MrjvxUGwA2oralknXkXL8S0I/8RkWZOB++p3pLaGbTvOO++T+6znFbQdR8KRaa7DA==", "cpu": [ "ia32" ], "dev": true, + "license": "Apache-2.0 AND MIT", "optional": true, "os": [ "win32" @@ -5078,13 +6541,14 @@ } }, "node_modules/@swc/core-win32-x64-msvc": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.9.3.tgz", - "integrity": "sha512-3YJJLQ5suIEHEKc1GHtqVq475guiyqisKSoUnoaRtxkDaW5g1yvPt9IoSLOe2mRs7+FFhGGU693RsBUSwOXSdQ==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.10.1.tgz", + "integrity": "sha512-JWobfQDbTnoqaIwPKQ3DVSywihVXlQMbDuwik/dDWlj33A8oEHcjPOGs4OqcA3RHv24i+lfCQpM3Mn4FAMfacA==", "cpu": [ "x64" ], "dev": true, + "license": "Apache-2.0 AND MIT", "optional": true, "os": [ "win32" @@ -5097,34 +6561,49 @@ "version": "0.1.3", "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", - "dev": true + "dev": true, + "license": "Apache-2.0" }, "node_modules/@swc/types": { "version": "0.1.17", "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.17.tgz", "integrity": "sha512-V5gRru+aD8YVyCOMAjMpWR1Ui577DD5KSJsHP8RAxopAH22jFz6GZd/qxqjO6MJHQhcsjvjOFXyDhyLQUnMveQ==", "dev": true, + "license": "Apache-2.0", "dependencies": { "@swc/counter": "^0.1.3" } }, "node_modules/@szmarczak/http-timer": { - "version": "1.1.2", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", + "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", "license": "MIT", "dependencies": { - "defer-to-connect": "^1.0.1" + "defer-to-connect": "^2.0.1" }, "engines": { - "node": ">=6" + "node": ">=14.16" } }, "node_modules/@trysound/sax": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", "license": "ISC", "engines": { "node": ">=10.13.0" } }, + "node_modules/@types/acorn": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", + "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", + "license": "MIT", + "dependencies": { + "@types/estree": "*" + } + }, "node_modules/@types/babel__core": { "version": "7.20.5", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", @@ -5171,7 +6650,9 @@ } }, "node_modules/@types/body-parser": { - "version": "1.19.2", + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", "license": "MIT", "dependencies": { "@types/connect": "*", @@ -5179,28 +6660,27 @@ } }, "node_modules/@types/bonjour": { - "version": "3.5.10", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/cheerio": { - "version": "0.22.31", + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect": { - "version": "3.4.35", + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect-history-api-fallback": { - "version": "1.3.5", + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", + "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", "license": "MIT", "dependencies": { "@types/express-serve-static-core": "*", @@ -5210,17 +6690,275 @@ "node_modules/@types/css-font-loading-module": { "version": "0.0.7", "resolved": "https://registry.npmjs.org/@types/css-font-loading-module/-/css-font-loading-module-0.0.7.tgz", - "integrity": "sha512-nl09VhutdjINdWyXxHWN/w9zlNCfr60JUqJbd24YXUuCwgeL0TpFSdElCwb6cxfB6ybE19Gjj4g0jsgkXxKv1Q==" + "integrity": "sha512-nl09VhutdjINdWyXxHWN/w9zlNCfr60JUqJbd24YXUuCwgeL0TpFSdElCwb6cxfB6ybE19Gjj4g0jsgkXxKv1Q==", + "license": "MIT" + }, + "node_modules/@types/d3": { + "version": "7.4.3", + "resolved": "https://registry.npmjs.org/@types/d3/-/d3-7.4.3.tgz", + "integrity": "sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==", + "license": "MIT", + "dependencies": { + "@types/d3-array": "*", + "@types/d3-axis": "*", + "@types/d3-brush": "*", + "@types/d3-chord": "*", + "@types/d3-color": "*", + "@types/d3-contour": "*", + "@types/d3-delaunay": "*", + "@types/d3-dispatch": "*", + "@types/d3-drag": "*", + "@types/d3-dsv": "*", + "@types/d3-ease": "*", + "@types/d3-fetch": "*", + "@types/d3-force": "*", + "@types/d3-format": "*", + "@types/d3-geo": "*", + "@types/d3-hierarchy": "*", + "@types/d3-interpolate": "*", + "@types/d3-path": "*", + "@types/d3-polygon": "*", + "@types/d3-quadtree": "*", + "@types/d3-random": "*", + "@types/d3-scale": "*", + "@types/d3-scale-chromatic": "*", + "@types/d3-selection": "*", + "@types/d3-shape": "*", + "@types/d3-time": "*", + "@types/d3-time-format": "*", + "@types/d3-timer": "*", + "@types/d3-transition": "*", + "@types/d3-zoom": "*" + } + }, + "node_modules/@types/d3-array": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", + "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==", + "license": "MIT" + }, + "node_modules/@types/d3-axis": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-axis/-/d3-axis-3.0.6.tgz", + "integrity": "sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==", + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-brush": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-brush/-/d3-brush-3.0.6.tgz", + "integrity": "sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==", + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-chord": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-chord/-/d3-chord-3.0.6.tgz", + "integrity": "sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==", + "license": "MIT" + }, + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==", + "license": "MIT" + }, + "node_modules/@types/d3-contour": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-contour/-/d3-contour-3.0.6.tgz", + "integrity": "sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==", + "license": "MIT", + "dependencies": { + "@types/d3-array": "*", + "@types/geojson": "*" + } + }, + "node_modules/@types/d3-delaunay": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-delaunay/-/d3-delaunay-6.0.4.tgz", + "integrity": "sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==", + "license": "MIT" + }, + "node_modules/@types/d3-dispatch": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.6.tgz", + "integrity": "sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==", + "license": "MIT" + }, + "node_modules/@types/d3-drag": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz", + "integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==", + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-dsv": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-3.0.7.tgz", + "integrity": "sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==", + "license": "MIT" + }, + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==", + "license": "MIT" + }, + "node_modules/@types/d3-fetch": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-fetch/-/d3-fetch-3.0.7.tgz", + "integrity": "sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==", + "license": "MIT", + "dependencies": { + "@types/d3-dsv": "*" + } + }, + "node_modules/@types/d3-force": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.10.tgz", + "integrity": "sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==", + "license": "MIT" + }, + "node_modules/@types/d3-format": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-3.0.4.tgz", + "integrity": "sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==", + "license": "MIT" + }, + "node_modules/@types/d3-geo": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-3.1.0.tgz", + "integrity": "sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/d3-hierarchy": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-3.1.7.tgz", + "integrity": "sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==", + "license": "MIT" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "license": "MIT", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==", + "license": "MIT" + }, + "node_modules/@types/d3-polygon": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-polygon/-/d3-polygon-3.0.2.tgz", + "integrity": "sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==", + "license": "MIT" + }, + "node_modules/@types/d3-quadtree": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz", + "integrity": "sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==", + "license": "MIT" + }, + "node_modules/@types/d3-random": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.3.tgz", + "integrity": "sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==", + "license": "MIT" + }, + "node_modules/@types/d3-scale": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", + "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", + "license": "MIT", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-scale-chromatic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", + "integrity": "sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==", + "license": "MIT" + }, + "node_modules/@types/d3-selection": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz", + "integrity": "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==", + "license": "MIT" + }, + "node_modules/@types/d3-shape": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz", + "integrity": "sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==", + "license": "MIT", + "dependencies": { + "@types/d3-path": "*" + } + }, + "node_modules/@types/d3-time": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz", + "integrity": "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==", + "license": "MIT" + }, + "node_modules/@types/d3-time-format": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-4.0.3.tgz", + "integrity": "sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==", + "license": "MIT" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==", + "license": "MIT" + }, + "node_modules/@types/d3-transition": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.9.tgz", + "integrity": "sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==", + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-zoom": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz", + "integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==", + "license": "MIT", + "dependencies": { + "@types/d3-interpolate": "*", + "@types/d3-selection": "*" + } }, "node_modules/@types/debug": { "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", "license": "MIT", "dependencies": { "@types/ms": "*" } }, "node_modules/@types/eslint": { - "version": "8.4.1", + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", + "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", "license": "MIT", "dependencies": { "@types/estree": "*", @@ -5228,7 +6966,9 @@ } }, "node_modules/@types/eslint-scope": { - "version": "3.7.3", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "license": "MIT", "dependencies": { "@types/eslint": "*", @@ -5236,28 +6976,62 @@ } }, "node_modules/@types/estree": { - "version": "0.0.51", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", "license": "MIT" }, + "node_modules/@types/estree-jsx": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", + "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", + "license": "MIT", + "dependencies": { + "@types/estree": "*" + } + }, "node_modules/@types/express": { - "version": "4.17.13", + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", "license": "MIT", "dependencies": { "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.18", + "@types/express-serve-static-core": "^4.17.33", "@types/qs": "*", "@types/serve-static": "*" } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.30", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.2.tgz", + "integrity": "sha512-vluaspfvWEtE4vcSDlKRNer52DvOGrB2xv6diXy6UKyKW0lqZiWHGNApSyxOv+8DE5Z27IzVvE7hNkxg7EXIcg==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/express/node_modules/@types/express-serve-static-core": { + "version": "4.19.6", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", + "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", "license": "MIT", "dependencies": { "@types/node": "*", "@types/qs": "*", - "@types/range-parser": "*" + "@types/range-parser": "*", + "@types/send": "*" } }, + "node_modules/@types/geojson": { + "version": "7946.0.15", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.15.tgz", + "integrity": "sha512-9oSxFzDCT2Rj6DfcHF8G++jxBKS7mBqXl5xrRW+Kbvjry6Uduya2iiwqHPhVXpasAVMBYKkEPGgKhd3+/HZ6xA==", + "license": "MIT" + }, "node_modules/@types/graceful-fs": { "version": "4.1.9", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", @@ -5268,8 +7042,16 @@ "@types/node": "*" } }, + "node_modules/@types/gtag.js": { + "version": "0.0.12", + "resolved": "https://registry.npmjs.org/@types/gtag.js/-/gtag.js-0.0.12.tgz", + "integrity": "sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg==", + "license": "MIT" + }, "node_modules/@types/hast": { - "version": "2.3.4", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", "license": "MIT", "dependencies": { "@types/unist": "*" @@ -5277,10 +7059,14 @@ }, "node_modules/@types/history": { "version": "4.7.11", + "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz", + "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==", "license": "MIT" }, "node_modules/@types/hoist-non-react-statics": { - "version": "3.3.5", + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.6.tgz", + "integrity": "sha512-lPByRJUer/iN/xa4qpyL0qmL11DqNW81iU/IG1S3uvRUq4oKagz8VCxZjiWkumgt66YT3vOdDgZ0o32sGKtCEw==", "license": "MIT", "dependencies": { "@types/react": "*", @@ -5289,31 +7075,50 @@ }, "node_modules/@types/html-minifier-terser": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "license": "MIT" + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", + "license": "MIT" + }, + "node_modules/@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", "license": "MIT" }, "node_modules/@types/http-proxy": { - "version": "1.17.9", + "version": "1.17.15", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", + "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.4", - "dev": true, + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", "license": "MIT" }, "node_modules/@types/istanbul-lib-report": { - "version": "3.0.0", - "dev": true, + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "*" } }, "node_modules/@types/istanbul-reports": { - "version": "3.0.1", - "dev": true, + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "license": "MIT", "dependencies": { "@types/istanbul-lib-report": "*" @@ -5332,73 +7137,111 @@ }, "node_modules/@types/json-schema": { "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "license": "MIT" }, - "node_modules/@types/lodash": { - "version": "4.14.202", - "license": "MIT" - }, - "node_modules/@types/lodash.clonedeep": { - "version": "4.5.9", - "license": "MIT", - "dependencies": { - "@types/lodash": "*" - } - }, "node_modules/@types/mdast": { - "version": "3.0.10", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", "license": "MIT", "dependencies": { "@types/unist": "*" } }, + "node_modules/@types/mdx": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz", + "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==", + "license": "MIT" + }, "node_modules/@types/mime": { - "version": "1.3.2", + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", "license": "MIT" }, "node_modules/@types/ms": { "version": "0.7.34", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", + "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==", "license": "MIT" }, "node_modules/@types/node": { - "version": "17.0.13", - "license": "MIT" + "version": "22.10.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz", + "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~6.20.0" + } + }, + "node_modules/@types/node-forge": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", + "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } }, "node_modules/@types/parse-json": { - "version": "4.0.0", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", "license": "MIT" }, "node_modules/@types/parse5": { - "version": "5.0.3", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.3.tgz", + "integrity": "sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==", + "license": "MIT" + }, + "node_modules/@types/prismjs": { + "version": "1.26.5", + "resolved": "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.26.5.tgz", + "integrity": "sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ==", "license": "MIT" }, "node_modules/@types/prop-types": { - "version": "15.7.4", + "version": "15.7.14", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz", + "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==", "license": "MIT" }, "node_modules/@types/q": { - "version": "1.5.5", + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", + "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==", "license": "MIT" }, "node_modules/@types/qs": { - "version": "6.9.7", + "version": "6.9.17", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.17.tgz", + "integrity": "sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==", "license": "MIT" }, "node_modules/@types/range-parser": { - "version": "1.2.4", + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", "license": "MIT" }, "node_modules/@types/react": { - "version": "17.0.38", + "version": "18.3.17", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.17.tgz", + "integrity": "sha512-opAQ5no6LqJNo9TqnxBKsgnkIYHozW9KSTlFVoSUJYh1Fl/sswkEoqIugRSm7tbh6pABtYjGAjW+GOS23j8qbw==", "license": "MIT", "dependencies": { "@types/prop-types": "*", - "@types/scheduler": "*", "csstype": "^3.0.2" } }, "node_modules/@types/react-redux": { - "version": "7.1.33", + "version": "7.1.34", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.34.tgz", + "integrity": "sha512-GdFaVjEbYv4Fthm2ZLvj1VSCedV7TqE5y1kNwnjSdBOTXuRSgowux6J8TAct15T3CKBr63UMk+2CO7ilRhyrAQ==", "license": "MIT", "dependencies": { "@types/hoist-non-react-statics": "^3.3.0", @@ -5409,6 +7252,8 @@ }, "node_modules/@types/react-router": { "version": "5.1.20", + "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz", + "integrity": "sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==", "license": "MIT", "dependencies": { "@types/history": "^4.7.11", @@ -5416,7 +7261,9 @@ } }, "node_modules/@types/react-router-config": { - "version": "5.0.7", + "version": "5.0.11", + "resolved": "https://registry.npmjs.org/@types/react-router-config/-/react-router-config-5.0.11.tgz", + "integrity": "sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==", "license": "MIT", "dependencies": { "@types/history": "^4.7.11", @@ -5426,6 +7273,8 @@ }, "node_modules/@types/react-router-dom": { "version": "5.3.3", + "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz", + "integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==", "license": "MIT", "dependencies": { "@types/history": "^4.7.11", @@ -5435,208 +7284,276 @@ }, "node_modules/@types/retry": { "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", "license": "MIT" }, "node_modules/@types/sax": { - "version": "1.2.4", + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz", + "integrity": "sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==", "license": "MIT", "dependencies": { "@types/node": "*" } }, - "node_modules/@types/scheduler": { - "version": "0.16.2", - "license": "MIT" + "node_modules/@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "license": "MIT", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } }, "node_modules/@types/serve-index": { - "version": "1.9.1", + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", "license": "MIT", "dependencies": { "@types/express": "*" } }, "node_modules/@types/serve-static": { - "version": "1.13.10", + "version": "1.15.7", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", + "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", "license": "MIT", "dependencies": { - "@types/mime": "^1", - "@types/node": "*" + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "*" } }, "node_modules/@types/sockjs": { - "version": "0.3.33", + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", - "dev": true + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "dev": true, + "license": "MIT" }, "node_modules/@types/trusted-types": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==", + "license": "MIT", "optional": true }, "node_modules/@types/unist": { - "version": "2.0.6", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", "license": "MIT" }, "node_modules/@types/ws": { - "version": "8.5.3", + "version": "8.5.13", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.13.tgz", + "integrity": "sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==", "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/yargs": { - "version": "17.0.24", - "dev": true, + "version": "17.0.33", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", + "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", "license": "MIT", "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "dev": true, + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", "license": "MIT" }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.1.tgz", + "integrity": "sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==", + "license": "ISC" + }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "license": "MIT", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "license": "MIT", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, "node_modules/@xstate/fsm": { "version": "1.6.5", "resolved": "https://registry.npmjs.org/@xstate/fsm/-/fsm-1.6.5.tgz", - "integrity": "sha512-b5o1I6aLNeYlU/3CPlj/Z91ybk1gUsKT+5NAJI+2W4UjvS5KLG28K9v5UvNoFVjHV8PajVZ00RH3vnjyQO7ZAw==" + "integrity": "sha512-b5o1I6aLNeYlU/3CPlj/Z91ybk1gUsKT+5NAJI+2W4UjvS5KLG28K9v5UvNoFVjHV8PajVZ00RH3vnjyQO7ZAw==", + "license": "MIT" }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "license": "Apache-2.0" }, "node_modules/abort-controller": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "license": "MIT", "dependencies": { "event-target-shim": "^5.0.0" @@ -5647,6 +7564,8 @@ }, "node_modules/accepts": { "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "license": "MIT", "dependencies": { "mime-types": "~2.1.34", @@ -5657,7 +7576,9 @@ } }, "node_modules/acorn": { - "version": "8.8.0", + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -5666,29 +7587,49 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-import-assertions": { - "version": "1.8.0", + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "license": "MIT", "peerDependencies": { - "acorn": "^8" + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/acorn-walk": { - "version": "8.2.0", + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, "engines": { "node": ">=0.4.0" } }, "node_modules/address": { - "version": "1.1.2", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", "license": "MIT", "engines": { - "node": ">= 0.12.0" + "node": ">= 10.0.0" + } + }, + "node_modules/agent-base": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", + "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", + "license": "MIT", + "engines": { + "node": ">= 14" } }, "node_modules/aggregate-error": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "license": "MIT", "dependencies": { "clean-stack": "^2.0.0", @@ -5699,12 +7640,14 @@ } }, "node_modules/ajv": { - "version": "6.12.6", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", "uri-js": "^4.2.2" }, "funding": { @@ -5712,8 +7655,24 @@ "url": "https://github.com/sponsors/epoberezkin" } }, + "node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "license": "MIT", + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, "node_modules/ajv-formats": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "license": "MIT", "dependencies": { "ajv": "^8.0.0" @@ -5727,75 +7686,149 @@ } } }, - "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.9.0", + "node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "license": "MIT", "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "fast-deep-equal": "^3.1.3" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "peerDependencies": { + "ajv": "^8.8.2" } }, - "node_modules/ajv-formats/node_modules/json-schema-traverse": { - "version": "1.0.0", - "license": "MIT" + "node_modules/algoliasearch": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.24.0.tgz", + "integrity": "sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==", + "license": "MIT", + "dependencies": { + "@algolia/cache-browser-local-storage": "4.24.0", + "@algolia/cache-common": "4.24.0", + "@algolia/cache-in-memory": "4.24.0", + "@algolia/client-account": "4.24.0", + "@algolia/client-analytics": "4.24.0", + "@algolia/client-common": "4.24.0", + "@algolia/client-personalization": "4.24.0", + "@algolia/client-search": "4.24.0", + "@algolia/logger-common": "4.24.0", + "@algolia/logger-console": "4.24.0", + "@algolia/recommend": "4.24.0", + "@algolia/requester-browser-xhr": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/requester-node-http": "4.24.0", + "@algolia/transporter": "4.24.0" + } }, - "node_modules/ajv-keywords": { - "version": "3.5.2", + "node_modules/algoliasearch-helper": { + "version": "3.22.6", + "resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.22.6.tgz", + "integrity": "sha512-F2gSb43QHyvZmvH/2hxIjbk/uFdO2MguQYTFP7J+RowMW1csjIODMobEnpLI8nbLQuzZnGZdIxl5Bpy1k9+CFQ==", "license": "MIT", + "dependencies": { + "@algolia/events": "^4.0.1" + }, "peerDependencies": { - "ajv": "^6.9.1" + "algoliasearch": ">= 3.1 < 6" } }, - "node_modules/algoliasearch": { - "version": "4.19.1", + "node_modules/algoliasearch/node_modules/@algolia/client-common": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", + "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", "license": "MIT", "dependencies": { - "@algolia/cache-browser-local-storage": "4.19.1", - "@algolia/cache-common": "4.19.1", - "@algolia/cache-in-memory": "4.19.1", - "@algolia/client-account": "4.19.1", - "@algolia/client-analytics": "4.19.1", - "@algolia/client-common": "4.19.1", - "@algolia/client-personalization": "4.19.1", - "@algolia/client-search": "4.19.1", - "@algolia/logger-common": "4.19.1", - "@algolia/logger-console": "4.19.1", - "@algolia/requester-browser-xhr": "4.19.1", - "@algolia/requester-common": "4.19.1", - "@algolia/requester-node-http": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" } }, - "node_modules/algoliasearch-helper": { - "version": "3.14.0", + "node_modules/algoliasearch/node_modules/@algolia/client-search": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.24.0.tgz", + "integrity": "sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==", "license": "MIT", "dependencies": { - "@algolia/events": "^4.0.1" - }, - "peerDependencies": { - "algoliasearch": ">= 3.1 < 6" + "@algolia/client-common": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" + } + }, + "node_modules/algoliasearch/node_modules/@algolia/requester-browser-xhr": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.24.0.tgz", + "integrity": "sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==", + "license": "MIT", + "dependencies": { + "@algolia/requester-common": "4.24.0" + } + }, + "node_modules/algoliasearch/node_modules/@algolia/requester-node-http": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.24.0.tgz", + "integrity": "sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==", + "license": "MIT", + "dependencies": { + "@algolia/requester-common": "4.24.0" + } + }, + "node_modules/allof-merge": { + "version": "0.6.6", + "resolved": "https://registry.npmjs.org/allof-merge/-/allof-merge-0.6.6.tgz", + "integrity": "sha512-116eZBf2he0/J4Tl7EYMz96I5Anaeio+VL0j/H2yxW9CoYQAMMv8gYcwkVRoO7XfIOv/qzSTfVzDVGAYxKFi3g==", + "license": "MIT", + "dependencies": { + "json-crawl": "^0.5.3" } }, "node_modules/alphanum-sort": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==", "license": "MIT" }, "node_modules/ansi-align": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", "license": "ISC", "dependencies": { "string-width": "^4.1.0" } }, + "node_modules/ansi-align/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/ansi-align/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-align/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/ansi-escapes": { "version": "4.3.2", - "dev": true, + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "license": "MIT", "dependencies": { "type-fest": "^0.21.3" @@ -5809,7 +7842,8 @@ }, "node_modules/ansi-escapes/node_modules/type-fest": { "version": "0.21.3", - "dev": true, + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" @@ -5820,6 +7854,8 @@ }, "node_modules/ansi-html-community": { "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", "engines": [ "node >= 0.8.0" ], @@ -5830,6 +7866,8 @@ }, "node_modules/ansi-red": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", + "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", "license": "MIT", "dependencies": { "ansi-wrap": "0.1.0" @@ -5840,23 +7878,32 @@ }, "node_modules/ansi-regex": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/ansi-styles": { - "version": "3.2.1", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "license": "MIT", "dependencies": { - "color-convert": "^1.9.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/ansi-wrap": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -5864,10 +7911,14 @@ }, "node_modules/any-promise": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", "license": "MIT" }, "node_modules/anymatch": { - "version": "3.1.2", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", @@ -5879,6 +7930,8 @@ }, "node_modules/arch": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", "funding": [ { "type": "github", @@ -5897,6 +7950,8 @@ }, "node_modules/archive-type": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", + "integrity": "sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==", "license": "MIT", "dependencies": { "file-type": "^4.2.0" @@ -5907,6 +7962,8 @@ }, "node_modules/archive-type/node_modules/file-type": { "version": "4.4.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", + "integrity": "sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==", "license": "MIT", "engines": { "node": ">=4" @@ -5914,14 +7971,20 @@ }, "node_modules/arg": { "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", "license": "MIT" }, "node_modules/argparse": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "license": "Python-2.0" }, "node_modules/arr-diff": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -5929,6 +7992,8 @@ }, "node_modules/arr-flatten": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -5936,17 +8001,24 @@ }, "node_modules/arr-union": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/array-buffer-byte-length": { - "version": "1.0.0", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -5954,19 +8026,24 @@ }, "node_modules/array-find-index": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/array-flatten": { - "version": "2.1.2", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "license": "MIT" }, "node_modules/array-move": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/array-move/-/array-move-4.0.0.tgz", "integrity": "sha512-+RY54S8OuVvg94THpneQvFRmqWdAHeqtMzgMW6JNurHxe8rsS07cHQdfGkXnTUXiBcyZ0j3SiDIxxj0RPiqCkQ==", + "license": "MIT", "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, @@ -5976,6 +8053,8 @@ }, "node_modules/array-union": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "license": "MIT", "engines": { "node": ">=8" @@ -5983,6 +8062,8 @@ }, "node_modules/array-uniq": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -5990,19 +8071,24 @@ }, "node_modules/array-unique": { "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/array.prototype.filter": { - "version": "1.0.2", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.4.tgz", + "integrity": "sha512-r+mCJ7zXgXElgR4IRC+fkvNCeoaavWBs6EdCso5Tbcf+iEMKzBU/His60lt34WEZ9vlb8wDkZvQGcVI5GwkfoQ==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", "es-array-method-boxes-properly": "^1.0.0", + "es-object-atoms": "^1.0.0", "is-string": "^1.0.7" }, "engines": { @@ -6013,26 +8099,34 @@ } }, "node_modules/array.prototype.find": { - "version": "2.2.1", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.2.3.tgz", + "integrity": "sha512-fO/ORdOELvjbbeIfZfzrXFMhYHGofRGqd+am9zm3tZ4GlJINj/pA2eITyfd65Vg6+ZbHd/Cys7stpoRSWtQFdA==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array.prototype.flat": { - "version": "1.3.1", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -6042,13 +8136,17 @@ } }, "node_modules/array.prototype.reduce": { - "version": "1.0.5", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.7.tgz", + "integrity": "sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", "es-array-method-boxes-properly": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", "is-string": "^1.0.7" }, "engines": { @@ -6058,40 +8156,66 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/arrify": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/asap": { - "version": "2.0.6", - "license": "MIT" - }, "node_modules/asn1": { "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", "license": "MIT", "dependencies": { "safer-buffer": "~2.1.0" } }, "node_modules/asn1.js": { - "version": "5.4.1", + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", + "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", "license": "MIT", "dependencies": { "bn.js": "^4.0.0", "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" + "minimalistic-assert": "^1.0.0" } }, "node_modules/asn1.js/node_modules/bn.js": { - "version": "4.12.0", + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz", + "integrity": "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==", "license": "MIT" }, "node_modules/assert": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz", + "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==", "license": "MIT", "dependencies": { "call-bind": "^1.0.2", @@ -6103,6 +8227,8 @@ }, "node_modules/assert-plus": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", "license": "MIT", "engines": { "node": ">=0.8" @@ -6110,24 +8236,38 @@ }, "node_modules/assign-symbols": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/async": { - "version": "2.6.4", + "node_modules/astring": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz", + "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==", "license": "MIT", - "dependencies": { - "lodash": "^4.17.14" + "bin": { + "astring": "bin/astring" } }, + "node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "license": "MIT" + }, "node_modules/asynckit": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", "license": "MIT" }, "node_modules/at-least-node": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", "license": "ISC", "engines": { "node": ">= 4.0.0" @@ -6135,10 +8275,14 @@ }, "node_modules/atoa": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/atoa/-/atoa-1.0.0.tgz", + "integrity": "sha512-VVE1H6cc4ai+ZXo/CRWoJiHXrA1qfA31DPnx6D20+kSI547hQN5Greh51LQ1baMRMfxO5K5M4ImMtZbZt2DODQ==", "license": "MIT" }, "node_modules/atob": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", "license": "(MIT OR Apache-2.0)", "bin": { "atob": "bin/atob.js" @@ -6149,13 +8293,17 @@ }, "node_modules/autolinker": { "version": "3.16.2", + "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-3.16.2.tgz", + "integrity": "sha512-JiYl7j2Z19F9NdTmirENSUUIIL/9MytEWtmzhfmsKPCp9E+G35Y0UNCMoM9tFigxT59qSc8Ml2dlZXOCVTYwuA==", "license": "MIT", "dependencies": { "tslib": "^2.3.0" } }, "node_modules/autoprefixer": { - "version": "10.4.15", + "version": "10.4.20", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", + "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", "funding": [ { "type": "opencollective", @@ -6172,11 +8320,11 @@ ], "license": "MIT", "dependencies": { - "browserslist": "^4.21.10", - "caniuse-lite": "^1.0.30001520", - "fraction.js": "^4.2.0", + "browserslist": "^4.23.3", + "caniuse-lite": "^1.0.30001646", + "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", + "picocolors": "^1.0.1", "postcss-value-parser": "^4.2.0" }, "bin": { @@ -6190,8 +8338,13 @@ } }, "node_modules/available-typed-arrays": { - "version": "1.0.5", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, "engines": { "node": ">= 0.4" }, @@ -6201,22 +8354,19 @@ }, "node_modules/aws-sign2": { "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", "license": "Apache-2.0", "engines": { "node": "*" } }, "node_modules/aws4": { - "version": "1.12.0", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.2.tgz", + "integrity": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==", "license": "MIT" }, - "node_modules/axios": { - "version": "0.25.0", - "license": "MIT", - "dependencies": { - "follow-redirects": "^1.14.7" - } - }, "node_modules/babel-jest": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", @@ -6239,146 +8389,36 @@ "@babel/core": "^7.8.0" } }, - "node_modules/babel-jest/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/babel-jest/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/babel-jest/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/babel-jest/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/babel-jest/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-jest/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/babel-loader": { - "version": "8.2.5", - "license": "MIT", - "dependencies": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^2.0.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - }, - "engines": { - "node": ">= 8.9" - }, - "peerDependencies": { - "@babel/core": "^7.0.0", - "webpack": ">=2" - } - }, - "node_modules/babel-loader/node_modules/schema-utils": { - "version": "2.7.1", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz", + "integrity": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==", "license": "MIT", "dependencies": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" + "find-cache-dir": "^4.0.0", + "schema-utils": "^4.0.0" }, "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/babel-plugin-apply-mdx-type-prop": { - "version": "1.6.22", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "7.10.4", - "@mdx-js/util": "1.6.22" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "node": ">= 14.15.0" }, "peerDependencies": { - "@babel/core": "^7.11.6" + "@babel/core": "^7.12.0", + "webpack": ">=5" } }, - "node_modules/babel-plugin-apply-mdx-type-prop/node_modules/@babel/helper-plugin-utils": { - "version": "7.10.4", - "license": "MIT" - }, "node_modules/babel-plugin-dynamic-import-node": { "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", "license": "MIT", "dependencies": { "object.assign": "^4.1.0" } }, - "node_modules/babel-plugin-extract-import-names": { - "version": "1.6.22", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "7.10.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/babel-plugin-extract-import-names/node_modules/@babel/helper-plugin-utils": { - "version": "7.10.4", - "license": "MIT" - }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -6394,6 +8434,8 @@ }, "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -6409,6 +8451,8 @@ }, "node_modules/babel-plugin-istanbul/node_modules/semver": { "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "license": "ISC", "bin": { @@ -6417,6 +8461,8 @@ }, "node_modules/babel-plugin-jest-hoist": { "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", "dev": true, "license": "MIT", "dependencies": { @@ -6430,43 +8476,51 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.3.3", + "version": "0.4.12", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz", + "integrity": "sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==", "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.3", + "semver": "^6.3.1" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.0", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.5.2", + "version": "0.10.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", + "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.1", - "core-js-compat": "^3.21.0" + "@babel/helper-define-polyfill-provider": "^0.6.2", + "core-js-compat": "^3.38.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.3.1", + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz", + "integrity": "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==", "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.1" + "@babel/helper-define-polyfill-provider": "^0.6.3" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-preset-current-node-syntax": { @@ -6498,6 +8552,8 @@ }, "node_modules/babel-preset-jest": { "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", "dev": true, "license": "MIT", "dependencies": { @@ -6513,13 +8569,17 @@ }, "node_modules/babylon": { "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", "license": "MIT", "bin": { "babylon": "bin/babylon.js" } }, "node_modules/bail": { - "version": "1.0.5", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", "license": "MIT", "funding": { "type": "github", @@ -6528,10 +8588,14 @@ }, "node_modules/balanced-match": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "license": "MIT" }, "node_modules/base": { "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", "license": "MIT", "dependencies": { "cache-base": "^1.0.1", @@ -6548,6 +8612,8 @@ }, "node_modules/base/node_modules/define-property": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "license": "MIT", "dependencies": { "is-descriptor": "^1.0.0" @@ -6556,12 +8622,10 @@ "node": ">=0.10.0" } }, - "node_modules/base16": { - "version": "1.0.0", - "license": "MIT" - }, "node_modules/base64-arraybuffer": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==", "license": "MIT", "engines": { "node": ">= 0.6.0" @@ -6569,6 +8633,8 @@ }, "node_modules/base64-js": { "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "funding": [ { "type": "github", @@ -6587,31 +8653,45 @@ }, "node_modules/batch": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", "license": "MIT" }, "node_modules/bcrypt-pbkdf": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", "license": "BSD-3-Clause", "dependencies": { "tweetnacl": "^0.14.3" } }, "node_modules/big-integer": { - "version": "1.6.51", + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", "license": "Unlicense", "engines": { "node": ">=0.6" } }, "node_modules/big.js": { - "version": "5.2.2", + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-6.2.2.tgz", + "integrity": "sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ==", "license": "MIT", "engines": { "node": "*" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/bigjs" } }, "node_modules/bin-build": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz", + "integrity": "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==", "license": "MIT", "dependencies": { "decompress": "^4.0.0", @@ -6624,103 +8704,10 @@ "node": ">=4" } }, - "node_modules/bin-build/node_modules/cross-spawn": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "node_modules/bin-build/node_modules/execa": { - "version": "0.7.0", - "license": "MIT", - "dependencies": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-build/node_modules/get-stream": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-build/node_modules/is-stream": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bin-build/node_modules/lru-cache": { - "version": "4.1.5", - "license": "ISC", - "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "node_modules/bin-build/node_modules/npm-run-path": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-build/node_modules/path-key": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-build/node_modules/shebang-command": { - "version": "1.2.0", - "license": "MIT", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bin-build/node_modules/shebang-regex": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bin-build/node_modules/which": { - "version": "1.3.1", - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/bin-build/node_modules/yallist": { - "version": "2.1.2", - "license": "ISC" - }, "node_modules/bin-check": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", "license": "MIT", "dependencies": { "execa": "^0.7.0", @@ -6730,103 +8717,10 @@ "node": ">=4" } }, - "node_modules/bin-check/node_modules/cross-spawn": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "node_modules/bin-check/node_modules/execa": { - "version": "0.7.0", - "license": "MIT", - "dependencies": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-check/node_modules/get-stream": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-check/node_modules/is-stream": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bin-check/node_modules/lru-cache": { - "version": "4.1.5", - "license": "ISC", - "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "node_modules/bin-check/node_modules/npm-run-path": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-check/node_modules/path-key": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-check/node_modules/shebang-command": { - "version": "1.2.0", - "license": "MIT", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bin-check/node_modules/shebang-regex": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bin-check/node_modules/which": { - "version": "1.3.1", - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/bin-check/node_modules/yallist": { - "version": "2.1.2", - "license": "ISC" - }, "node_modules/bin-version": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", + "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", "license": "MIT", "dependencies": { "execa": "^1.0.0", @@ -6838,6 +8732,8 @@ }, "node_modules/bin-version-check": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", + "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", "license": "MIT", "dependencies": { "bin-version": "^3.0.0", @@ -6849,14 +8745,18 @@ } }, "node_modules/bin-version-check/node_modules/semver": { - "version": "5.7.1", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/bin-version/node_modules/cross-spawn": { - "version": "6.0.5", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "license": "MIT", "dependencies": { "nice-try": "^1.0.4", @@ -6871,6 +8771,8 @@ }, "node_modules/bin-version/node_modules/execa": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", "license": "MIT", "dependencies": { "cross-spawn": "^6.0.0", @@ -6885,66 +8787,31 @@ "node": ">=6" } }, - "node_modules/bin-version/node_modules/is-stream": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bin-version/node_modules/npm-run-path": { - "version": "2.0.2", + "node_modules/bin-version/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "license": "MIT", "dependencies": { - "path-key": "^2.0.0" + "pump": "^3.0.0" }, "engines": { - "node": ">=4" - } - }, - "node_modules/bin-version/node_modules/path-key": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=4" + "node": ">=6" } }, "node_modules/bin-version/node_modules/semver": { - "version": "5.7.1", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "license": "ISC", "bin": { "semver": "bin/semver" } }, - "node_modules/bin-version/node_modules/shebang-command": { - "version": "1.2.0", - "license": "MIT", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bin-version/node_modules/shebang-regex": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bin-version/node_modules/which": { - "version": "1.3.1", - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, "node_modules/bin-wrapper": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", + "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", "license": "MIT", "dependencies": { "bin-check": "^4.1.0", @@ -6960,26 +8827,17 @@ }, "node_modules/bin-wrapper/node_modules/@sindresorhus/is": { "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", "license": "MIT", "engines": { "node": ">=4" } }, - "node_modules/bin-wrapper/node_modules/cacheable-request": { - "version": "2.1.4", - "license": "MIT", - "dependencies": { - "clone-response": "1.0.2", - "get-stream": "3.0.0", - "http-cache-semantics": "3.8.1", - "keyv": "3.0.0", - "lowercase-keys": "1.0.0", - "normalize-url": "2.0.1", - "responselike": "1.0.2" - } - }, "node_modules/bin-wrapper/node_modules/download": { "version": "7.1.0", + "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", + "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", "license": "MIT", "dependencies": { "archive-type": "^4.0.0", @@ -7001,6 +8859,8 @@ }, "node_modules/bin-wrapper/node_modules/download/node_modules/pify": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "license": "MIT", "engines": { "node": ">=4" @@ -7008,20 +8868,17 @@ }, "node_modules/bin-wrapper/node_modules/file-type": { "version": "8.1.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", + "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==", "license": "MIT", "engines": { "node": ">=6" } }, - "node_modules/bin-wrapper/node_modules/get-stream": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, "node_modules/bin-wrapper/node_modules/got": { "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", "license": "MIT", "dependencies": { "@sindresorhus/is": "^0.7.0", @@ -7048,45 +8905,17 @@ }, "node_modules/bin-wrapper/node_modules/got/node_modules/pify": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "license": "MIT", "engines": { "node": ">=4" } }, - "node_modules/bin-wrapper/node_modules/http-cache-semantics": { - "version": "3.8.1", - "license": "BSD-2-Clause" - }, - "node_modules/bin-wrapper/node_modules/import-lazy": { - "version": "3.1.0", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/bin-wrapper/node_modules/is-plain-obj": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bin-wrapper/node_modules/keyv": { - "version": "3.0.0", - "license": "MIT", - "dependencies": { - "json-buffer": "3.0.0" - } - }, - "node_modules/bin-wrapper/node_modules/lowercase-keys": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/bin-wrapper/node_modules/make-dir": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", "license": "MIT", "dependencies": { "pify": "^3.0.0" @@ -7097,25 +8926,17 @@ }, "node_modules/bin-wrapper/node_modules/make-dir/node_modules/pify": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "license": "MIT", "engines": { "node": ">=4" } }, - "node_modules/bin-wrapper/node_modules/normalize-url": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "prepend-http": "^2.0.0", - "query-string": "^5.0.1", - "sort-keys": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/bin-wrapper/node_modules/p-cancelable": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", "license": "MIT", "engines": { "node": ">=4" @@ -7123,6 +8944,8 @@ }, "node_modules/bin-wrapper/node_modules/p-event": { "version": "2.3.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", "license": "MIT", "dependencies": { "p-timeout": "^2.0.1" @@ -7133,6 +8956,8 @@ }, "node_modules/bin-wrapper/node_modules/p-timeout": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", "license": "MIT", "dependencies": { "p-finally": "^1.0.0" @@ -7141,11 +8966,22 @@ "node": ">=4" } }, - "node_modules/bin-wrapper/node_modules/sort-keys": { + "node_modules/bin-wrapper/node_modules/prepend-http": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", "license": "MIT", "dependencies": { - "is-plain-obj": "^1.0.0" + "prepend-http": "^2.0.0" }, "engines": { "node": ">=4" @@ -7153,61 +8989,55 @@ }, "node_modules/binary": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz", + "integrity": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==", "license": "MIT", "dependencies": { "buffers": "~0.1.1", "chainsaw": "~0.1.0" + }, + "engines": { + "node": "*" } }, "node_modules/binary-extensions": { - "version": "2.2.0", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", "license": "MIT", "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/bl": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", "license": "MIT", "dependencies": { "readable-stream": "^2.3.5", "safe-buffer": "^5.1.1" } }, - "node_modules/bl/node_modules/isarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/bl/node_modules/readable-stream": { - "version": "2.3.8", - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/bl/node_modules/string_decoder": { - "version": "1.1.1", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/bluebird": { "version": "3.4.7", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz", + "integrity": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==", "license": "MIT" }, "node_modules/bn.js": { "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", "license": "MIT" }, "node_modules/body": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/body/-/body-5.1.0.tgz", + "integrity": "sha512-chUsBxGRtuElD6fmw1gHLpvnKdVLK302peeFa9ZqAEk8TyzZ3fygLyUEDDPTJvL9+Bor0dIwn6ePOsRM2y0zQQ==", "dependencies": { "continuable-cache": "^0.3.1", "error": "^7.0.0", @@ -7216,19 +9046,21 @@ } }, "node_modules/body-parser": { - "version": "1.20.0", + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", "license": "MIT", "dependencies": { "bytes": "3.1.2", - "content-type": "~1.0.4", + "content-type": "~1.0.5", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", - "qs": "6.10.3", - "raw-body": "2.5.1", + "qs": "6.13.0", + "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" }, @@ -7237,15 +9069,10 @@ "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/body-parser/node_modules/bytes": { - "version": "3.1.2", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, "node_modules/body-parser/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -7253,13 +9080,19 @@ }, "node_modules/body-parser/node_modules/ms": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, "node_modules/body/node_modules/bytes": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz", + "integrity": "sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ==" }, "node_modules/body/node_modules/raw-body": { "version": "1.1.7", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz", + "integrity": "sha512-WmJJU2e9Y6M5UzTOkHaM7xJGAPQD8PNzx3bAd2+uhZAim6wDk6dAZxPVYLF67XhbR4hmKGh33Lpmh4XWrCH5Mg==", "license": "MIT", "dependencies": { "bytes": "1", @@ -7271,113 +9104,64 @@ }, "node_modules/body/node_modules/string_decoder": { "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", "license": "MIT" }, "node_modules/bonjour-service": { - "version": "1.0.13", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz", + "integrity": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==", "license": "MIT", "dependencies": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", "fast-deep-equal": "^3.1.3", "multicast-dns": "^7.2.5" } }, "node_modules/boolbase": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "license": "ISC" }, "node_modules/boxen": { - "version": "5.1.2", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-6.2.1.tgz", + "integrity": "sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==", "license": "MIT", "dependencies": { - "ansi-align": "^3.0.0", + "ansi-align": "^3.0.1", "camelcase": "^6.2.0", - "chalk": "^4.1.0", - "cli-boxes": "^2.2.1", - "string-width": "^4.2.2", - "type-fest": "^0.20.2", - "widest-line": "^3.1.0", - "wrap-ansi": "^7.0.0" + "chalk": "^4.1.2", + "cli-boxes": "^3.0.0", + "string-width": "^5.0.1", + "type-fest": "^2.5.0", + "widest-line": "^4.0.1", + "wrap-ansi": "^8.0.1" }, "engines": { - "node": ">=10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/boxen/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/boxen/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/boxen/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/boxen/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/boxen/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/boxen/node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/brace-expansion": { - "version": "1.1.11", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "balanced-match": "^1.0.0" } }, "node_modules/braces": { - "version": "3.0.2", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "license": "MIT", "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" @@ -7385,10 +9169,14 @@ }, "node_modules/brorand": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", "license": "MIT" }, "node_modules/browserify-aes": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", "license": "MIT", "dependencies": { "buffer-xor": "^1.0.3", @@ -7401,6 +9189,8 @@ }, "node_modules/browserify-cipher": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", "license": "MIT", "dependencies": { "browserify-aes": "^1.0.4", @@ -7410,6 +9200,8 @@ }, "node_modules/browserify-des": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", "license": "MIT", "dependencies": { "cipher-base": "^1.0.1", @@ -7419,60 +9211,53 @@ } }, "node_modules/browserify-rsa": { - "version": "4.1.0", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.1.tgz", + "integrity": "sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==", "license": "MIT", "dependencies": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" + "bn.js": "^5.2.1", + "randombytes": "^2.1.0", + "safe-buffer": "^5.2.1" + }, + "engines": { + "node": ">= 0.10" } }, "node_modules/browserify-sign": { - "version": "4.2.2", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.3.tgz", + "integrity": "sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==", "license": "ISC", "dependencies": { "bn.js": "^5.2.1", "browserify-rsa": "^4.1.0", "create-hash": "^1.2.0", "create-hmac": "^1.1.7", - "elliptic": "^6.5.4", + "elliptic": "^6.5.5", + "hash-base": "~3.0", "inherits": "^2.0.4", - "parse-asn1": "^5.1.6", - "readable-stream": "^3.6.2", + "parse-asn1": "^5.1.7", + "readable-stream": "^2.3.8", "safe-buffer": "^5.2.1" }, "engines": { - "node": ">= 4" + "node": ">= 0.12" } }, - "node_modules/browserify-sign/node_modules/safe-buffer": { - "version": "5.2.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, "node_modules/browserify-zlib": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", "license": "MIT", "dependencies": { "pako": "~1.0.5" } }, "node_modules/browserslist": { - "version": "4.24.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", - "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", + "version": "4.24.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.3.tgz", + "integrity": "sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==", "funding": [ { "type": "opencollective", @@ -7489,9 +9274,9 @@ ], "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001669", - "electron-to-chromium": "^1.5.41", - "node-releases": "^2.0.18", + "caniuse-lite": "^1.0.30001688", + "electron-to-chromium": "^1.5.73", + "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.1" }, "bin": { @@ -7503,6 +9288,8 @@ }, "node_modules/bser": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -7510,7 +9297,9 @@ } }, "node_modules/buffer": { - "version": "5.7.1", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "funding": [ { "type": "github", @@ -7528,11 +9317,13 @@ "license": "MIT", "dependencies": { "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "ieee754": "^1.2.1" } }, "node_modules/buffer-alloc": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", "license": "MIT", "dependencies": { "buffer-alloc-unsafe": "^1.1.0", @@ -7541,10 +9332,14 @@ }, "node_modules/buffer-alloc-unsafe": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", "license": "MIT" }, "node_modules/buffer-crc32": { "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", "license": "MIT", "engines": { "node": "*" @@ -7552,14 +9347,20 @@ }, "node_modules/buffer-fill": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", "license": "MIT" }, "node_modules/buffer-from": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "license": "MIT" }, "node_modules/buffer-indexof-polyfill": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz", + "integrity": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==", "license": "MIT", "engines": { "node": ">=0.10" @@ -7567,20 +9368,28 @@ }, "node_modules/buffer-xor": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", "license": "MIT" }, "node_modules/buffers": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz", + "integrity": "sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==", "engines": { "node": ">=0.2.0" } }, "node_modules/builtin-status-codes": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", "license": "MIT" }, "node_modules/bytes": { - "version": "3.0.0", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "license": "MIT", "engines": { "node": ">= 0.8" @@ -7588,6 +9397,8 @@ }, "node_modules/cache-base": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", "license": "MIT", "dependencies": { "collection-visit": "^1.0.0", @@ -7604,55 +9415,81 @@ "node": ">=0.10.0" } }, + "node_modules/cacheable-lookup": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", + "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", + "license": "MIT", + "engines": { + "node": ">=14.16" + } + }, "node_modules/cacheable-request": { - "version": "6.1.0", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==", "license": "MIT", "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" - }, + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + } + }, + "node_modules/cacheable-request/node_modules/lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/cacheable-request/node_modules/get-stream": { - "version": "5.2.0", + "node_modules/call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", "license": "MIT", "dependencies": { - "pump": "^3.0.0" + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cacheable-request/node_modules/lowercase-keys": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">=8" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cacheable-request/node_modules/normalize-url": { - "version": "4.5.1", + "node_modules/call-bind-apply-helpers": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz", + "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==", "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/call-bind": { - "version": "1.0.2", + "node_modules/call-bound": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz", + "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", "license": "MIT", "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "call-bind-apply-helpers": "^1.0.1", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -7660,10 +9497,14 @@ }, "node_modules/call-me-maybe": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", + "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==", "license": "MIT" }, "node_modules/caller-callsite": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", "license": "MIT", "dependencies": { "callsites": "^2.0.0" @@ -7674,6 +9515,8 @@ }, "node_modules/caller-callsite/node_modules/callsites": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", "license": "MIT", "engines": { "node": ">=4" @@ -7681,6 +9524,8 @@ }, "node_modules/caller-path": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", "license": "MIT", "dependencies": { "caller-callsite": "^2.0.0" @@ -7691,6 +9536,8 @@ }, "node_modules/callsites": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "license": "MIT", "engines": { "node": ">=6" @@ -7698,6 +9545,8 @@ }, "node_modules/camel-case": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "license": "MIT", "dependencies": { "pascal-case": "^3.1.2", @@ -7706,6 +9555,8 @@ }, "node_modules/camelcase": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "license": "MIT", "engines": { "node": ">=10" @@ -7714,15 +9565,10 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, "node_modules/camelcase-keys": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==", "license": "MIT", "dependencies": { "camelcase": "^2.0.0", @@ -7734,6 +9580,8 @@ }, "node_modules/camelcase-keys/node_modules/camelcase": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -7741,6 +9589,8 @@ }, "node_modules/caniuse-api": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", "license": "MIT", "dependencies": { "browserslist": "^4.0.0", @@ -7750,9 +9600,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001686", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001686.tgz", - "integrity": "sha512-Y7deg0Aergpa24M3qLC5xjNklnKnhsmSyR/V89dLZ1n0ucJIFNs7PgR2Yfa/Zf6W79SbBicgtGxZr2juHkEUIA==", + "version": "1.0.30001690", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001690.tgz", + "integrity": "sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==", "funding": [ { "type": "opencollective", @@ -7771,10 +9621,14 @@ }, "node_modules/caseless": { "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", "license": "Apache-2.0" }, "node_modules/caw": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", + "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", "license": "MIT", "dependencies": { "get-proxy": "^2.0.0", @@ -7787,7 +9641,9 @@ } }, "node_modules/ccount": { - "version": "1.1.0", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", "license": "MIT", "funding": { "type": "github", @@ -7796,33 +9652,55 @@ }, "node_modules/chainsaw": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz", + "integrity": "sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==", "license": "MIT/X11", "dependencies": { "traverse": ">=0.3.0 <0.4" + }, + "engines": { + "node": "*" } }, "node_modules/chalk": { - "version": "2.4.2", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/char-regex": { "version": "1.0.2", - "dev": true, + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/character-entities": { - "version": "1.2.4", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", "license": "MIT", "funding": { "type": "github", @@ -7830,7 +9708,9 @@ } }, "node_modules/character-entities-legacy": { - "version": "1.1.4", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", "license": "MIT", "funding": { "type": "github", @@ -7838,7 +9718,9 @@ } }, "node_modules/character-reference-invalid": { - "version": "1.1.4", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", "license": "MIT", "funding": { "type": "github", @@ -7847,6 +9729,8 @@ }, "node_modules/charset": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/charset/-/charset-1.0.1.tgz", + "integrity": "sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg==", "license": "MIT", "engines": { "node": ">=4.0.0" @@ -7854,6 +9738,8 @@ }, "node_modules/cheerio": { "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", + "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", "license": "MIT", "dependencies": { "cheerio-select": "^2.1.0", @@ -7873,6 +9759,8 @@ }, "node_modules/cheerio-select": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", + "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", @@ -7886,139 +9774,36 @@ "url": "https://github.com/sponsors/fb55" } }, - "node_modules/cheerio-select/node_modules/css-select": { - "version": "5.1.0", - "license": "BSD-2-Clause", + "node_modules/chevrotain": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/chevrotain/-/chevrotain-11.0.3.tgz", + "integrity": "sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==", + "license": "Apache-2.0", "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/cheerio-select/node_modules/dom-serializer": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/cheerio-select/node_modules/domhandler": { - "version": "5.0.3", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/cheerio-select/node_modules/domutils": { - "version": "3.0.1", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.1" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/cheerio-select/node_modules/entities": { - "version": "4.4.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "@chevrotain/cst-dts-gen": "11.0.3", + "@chevrotain/gast": "11.0.3", + "@chevrotain/regexp-to-ast": "11.0.3", + "@chevrotain/types": "11.0.3", + "@chevrotain/utils": "11.0.3", + "lodash-es": "4.17.21" } }, - "node_modules/cheerio/node_modules/dom-serializer": { - "version": "2.0.0", + "node_modules/chevrotain-allstar": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/chevrotain-allstar/-/chevrotain-allstar-0.3.1.tgz", + "integrity": "sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==", "license": "MIT", "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/cheerio/node_modules/domhandler": { - "version": "5.0.3", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/cheerio/node_modules/domutils": { - "version": "3.0.1", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.1" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/cheerio/node_modules/entities": { - "version": "4.4.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" + "lodash-es": "^4.17.21" }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/cheerio/node_modules/htmlparser2": { - "version": "8.0.1", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "entities": "^4.3.0" + "peerDependencies": { + "chevrotain": "^11.0.0" } }, "node_modules/chokidar": { - "version": "3.5.3", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "license": "MIT", "dependencies": { "anymatch": "~3.1.2", @@ -8032,37 +9817,61 @@ "engines": { "node": ">= 8.10.0" }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "node_modules/chrome-trace-event": { - "version": "1.0.3", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", "license": "MIT", "engines": { "node": ">=6.0" } }, "node_modules/ci-info": { - "version": "2.0.0", - "license": "MIT" + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } }, "node_modules/cipher-base": { - "version": "1.0.4", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.6.tgz", + "integrity": "sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw==", "license": "MIT", "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "inherits": "^2.0.4", + "safe-buffer": "^5.2.1" + }, + "engines": { + "node": ">= 0.10" } }, "node_modules/cjs-module-lexer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz", "integrity": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/class-utils": { "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", "license": "MIT", "dependencies": { "arr-union": "^3.1.0", @@ -8076,6 +9885,8 @@ }, "node_modules/class-utils/node_modules/define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" @@ -8084,76 +9895,29 @@ "node": ">=0.10.0" } }, - "node_modules/class-utils/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-buffer": { - "version": "1.1.6", - "license": "MIT" - }, - "node_modules/class-utils/node_modules/is-data-descriptor": { - "version": "0.1.4", - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/class-utils/node_modules/is-descriptor": { - "version": "0.1.6", + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "license": "MIT", "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/kind-of": { - "version": "5.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, "node_modules/classnames": { "version": "2.5.1", "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", - "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==" + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==", + "license": "MIT" }, "node_modules/clean-css": { - "version": "5.3.1", + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", "license": "MIT", "dependencies": { "source-map": "~0.6.0" @@ -8164,6 +9928,8 @@ }, "node_modules/clean-css/node_modules/source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -8171,16 +9937,20 @@ }, "node_modules/clean-stack": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/cli-boxes": { - "version": "2.2.1", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", + "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", "license": "MIT", "engines": { - "node": ">=6" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -8188,6 +9958,8 @@ }, "node_modules/cli-cursor": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", + "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", "dev": true, "license": "MIT", "dependencies": { @@ -8201,7 +9973,9 @@ } }, "node_modules/cli-table3": { - "version": "0.6.2", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", + "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", "license": "MIT", "dependencies": { "string-width": "^4.2.0" @@ -8213,69 +9987,56 @@ "@colors/colors": "1.5.0" } }, - "node_modules/cli-truncate": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "slice-ansi": "^5.0.0", - "string-width": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/cli-table3/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" }, - "node_modules/cli-truncate/node_modules/ansi-regex": { - "version": "6.0.1", - "dev": true, + "node_modules/cli-table3/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "license": "MIT", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "node": ">=8" } }, - "node_modules/cli-truncate/node_modules/emoji-regex": { - "version": "9.2.2", - "dev": true, - "license": "MIT" - }, - "node_modules/cli-truncate/node_modules/string-width": { - "version": "5.1.2", - "dev": true, + "node_modules/cli-table3/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "license": "MIT", "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/cli-truncate/node_modules/strip-ansi": { - "version": "7.1.0", + "node_modules/cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", "dev": true, "license": "MIT", "dependencies": { - "ansi-regex": "^6.0.1" + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" }, "engines": { - "node": ">=12" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/cliui": { "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "license": "ISC", "dependencies": { "string-width": "^4.2.0", @@ -8286,12 +10047,60 @@ "node": ">=12" } }, - "node_modules/clone-deep": { - "version": "4.0.1", + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/cliui/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", "shallow-clone": "^3.0.0" }, "engines": { @@ -8300,6 +10109,8 @@ }, "node_modules/clone-response": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", "license": "MIT", "dependencies": { "mimic-response": "^1.0.0" @@ -8307,6 +10118,8 @@ }, "node_modules/clsx": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", "license": "MIT", "engines": { "node": ">=6" @@ -8314,6 +10127,8 @@ }, "node_modules/co": { "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true, "license": "MIT", "engines": { @@ -8323,6 +10138,8 @@ }, "node_modules/coa": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", "license": "MIT", "dependencies": { "@types/q": "^1.5.1", @@ -8333,8 +10150,81 @@ "node": ">= 4.0" } }, + "node_modules/coa/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/coa/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/coa/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/coa/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/codemirror": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-6.0.1.tgz", + "integrity": "sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==", "license": "MIT", "dependencies": { "@codemirror/autocomplete": "^6.0.0", @@ -8348,6 +10238,9 @@ }, "node_modules/coffee-script": { "version": "1.12.7", + "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz", + "integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==", + "deprecated": "CoffeeScript on NPM has moved to \"coffeescript\" (no hyphen)", "license": "MIT", "bin": { "cake": "bin/cake", @@ -8358,7 +10251,9 @@ } }, "node_modules/collapse-white-space": { - "version": "1.0.6", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz", + "integrity": "sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==", "license": "MIT", "funding": { "type": "github", @@ -8367,11 +10262,15 @@ }, "node_modules/collect-v8-coverage": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", "dev": true, "license": "MIT" }, "node_modules/collection-visit": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", "license": "MIT", "dependencies": { "map-visit": "^1.0.0", @@ -8383,6 +10282,8 @@ }, "node_modules/color": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", "license": "MIT", "dependencies": { "color-convert": "^1.9.3", @@ -8390,34 +10291,64 @@ } }, "node_modules/color-convert": { - "version": "1.9.3", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "license": "MIT", "dependencies": { - "color-name": "1.1.3" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, "node_modules/color-name": { - "version": "1.1.3", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "license": "MIT" }, "node_modules/color-string": { "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", "license": "MIT", "dependencies": { "color-name": "^1.0.0", "simple-swizzle": "^0.2.2" } }, + "node_modules/color/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, "node_modules/colord": { - "version": "2.9.2", + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", "license": "MIT" }, "node_modules/colorette": { - "version": "2.0.20", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", "license": "MIT" }, "node_modules/combine-promises": { - "version": "1.1.0", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/combine-promises/-/combine-promises-1.2.0.tgz", + "integrity": "sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ==", "license": "MIT", "engines": { "node": ">=10" @@ -8425,6 +10356,8 @@ }, "node_modules/combined-stream": { "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "license": "MIT", "dependencies": { "delayed-stream": "~1.0.0" @@ -8434,7 +10367,9 @@ } }, "node_modules/comma-separated-tokens": { - "version": "1.0.8", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", "license": "MIT", "funding": { "type": "github", @@ -8443,25 +10378,44 @@ }, "node_modules/commander": { "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", "license": "MIT", "engines": { "node": ">= 6" } }, + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "license": "ISC" + }, "node_modules/commondir": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "license": "MIT" }, "node_modules/component-emitter": { - "version": "1.3.0", - "license": "MIT" + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", + "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/component-event": { "version": "0.2.1", + "resolved": "https://registry.npmjs.org/component-event/-/component-event-0.2.1.tgz", + "integrity": "sha512-wGA++isMqiDq1jPYeyv2as/Bt/u+3iLW0rEa+8NQ82jAv3TgqMiCM+B2SaBdn2DfLilLjjq736YcezihRYhfxw==", "license": "MIT" }, "node_modules/compressible": { "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "license": "MIT", "dependencies": { "mime-db": ">= 1.43.0 < 2" @@ -8471,15 +10425,17 @@ } }, "node_modules/compression": { - "version": "1.7.4", + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.5.tgz", + "integrity": "sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==", "license": "MIT", "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", + "bytes": "3.1.2", + "compressible": "~2.0.18", "debug": "2.6.9", + "negotiator": "~0.6.4", "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", + "safe-buffer": "5.2.1", "vary": "~1.1.2" }, "engines": { @@ -8488,6 +10444,8 @@ }, "node_modules/compression/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -8495,10 +10453,23 @@ }, "node_modules/compression/node_modules/ms": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, + "node_modules/compression/node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, "node_modules/compute-gcd": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/compute-gcd/-/compute-gcd-1.2.1.tgz", + "integrity": "sha512-TwMbxBNz0l71+8Sc4czv13h4kEqnchV9igQZBi6QUaz09dnz13juGnnaWWJTRsP3brxOoxeB4SA2WELLw1hCtg==", "dependencies": { "validate.io-array": "^1.0.3", "validate.io-function": "^1.0.2", @@ -8507,6 +10478,8 @@ }, "node_modules/compute-lcm": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/compute-lcm/-/compute-lcm-1.1.2.tgz", + "integrity": "sha512-OFNPdQAXnQhDSKioX8/XYT6sdUlXwpeMjfd6ApxMJfyZ4GxmLR1xvMERctlYhlHwIiz6CSpBc2+qYKjHGZw4TQ==", "dependencies": { "compute-gcd": "^1.2.1", "validate.io-array": "^1.0.3", @@ -8516,10 +10489,14 @@ }, "node_modules/concat-map": { "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "license": "MIT" }, "node_modules/concat-stream": { "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "engines": [ "node >= 0.8" ], @@ -8531,32 +10508,10 @@ "typedarray": "^0.0.6" } }, - "node_modules/concat-stream/node_modules/isarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/concat-stream/node_modules/readable-stream": { - "version": "2.3.8", - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/concat-stream/node_modules/string_decoder": { - "version": "1.1.1", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/concat-with-sourcemaps": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", + "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", "license": "ISC", "dependencies": { "source-map": "^0.6.1" @@ -8564,13 +10519,23 @@ }, "node_modules/concat-with-sourcemaps/node_modules/source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, + "node_modules/confbox": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz", + "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==", + "license": "MIT" + }, "node_modules/config-chain": { "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", "license": "MIT", "dependencies": { "ini": "^1.3.4", @@ -8578,60 +10543,100 @@ } }, "node_modules/configstore": { - "version": "5.0.1", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz", + "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==", "license": "BSD-2-Clause", "dependencies": { - "dot-prop": "^5.2.0", - "graceful-fs": "^4.1.2", - "make-dir": "^3.0.0", - "unique-string": "^2.0.0", - "write-file-atomic": "^3.0.0", - "xdg-basedir": "^4.0.0" + "dot-prop": "^6.0.1", + "graceful-fs": "^4.2.6", + "unique-string": "^3.0.0", + "write-file-atomic": "^3.0.3", + "xdg-basedir": "^5.0.1" }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/yeoman/configstore?sponsor=1" + } + }, + "node_modules/configstore/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" } }, "node_modules/connect-history-api-fallback": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", "license": "MIT", "engines": { "node": ">=0.8" } }, "node_modules/consola": { - "version": "2.15.3", - "license": "MIT" + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "license": "MIT", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } }, "node_modules/console-browserify": { - "version": "1.2.0" + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" }, "node_modules/console-stream": { - "version": "0.1.1" + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/console-stream/-/console-stream-0.1.1.tgz", + "integrity": "sha512-QC/8l9e6ofi6nqZ5PawlDgzmMw3OxIXtvolBzap/F4UDBJlDaZRSNbL/lb41C29FcbSJncBFlJFj2WJoNyZRfQ==" }, "node_modules/constants-browserify": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", "license": "MIT" }, "node_modules/content-disposition": { - "version": "0.5.2", + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, "engines": { "node": ">= 0.6" } }, "node_modules/content-type": { - "version": "1.0.4", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/continuable-cache": { - "version": "0.3.1" + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz", + "integrity": "sha512-TF30kpKhTH8AGCG3dut0rdd/19B7Z+qCnrMoBLpyQu/2drZdNrrpcjPEoJeSVsQM+8KmWG5O56oPDjSSUsuTyA==" }, "node_modules/contra": { "version": "1.9.4", + "resolved": "https://registry.npmjs.org/contra/-/contra-1.9.4.tgz", + "integrity": "sha512-N9ArHAqwR/lhPq4OdIAwH4e1btn6EIZMAz4TazjnzCiVECcWUPTma+dRAM38ERImEJBh8NiCCpjoQruSZ+agYg==", "license": "MIT", "dependencies": { "atoa": "1.0.0", @@ -8639,14 +10644,15 @@ } }, "node_modules/convert-source-map": { - "version": "1.8.0", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.1" - } + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" }, "node_modules/cookie": { - "version": "0.5.0", + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", "license": "MIT", "engines": { "node": ">= 0.6" @@ -8654,10 +10660,14 @@ }, "node_modules/cookie-signature": { "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "license": "MIT" }, "node_modules/copy-descriptor": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -8665,6 +10675,8 @@ }, "node_modules/copy-text-to-clipboard": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz", + "integrity": "sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==", "license": "MIT", "engines": { "node": ">=12" @@ -8675,6 +10687,8 @@ }, "node_modules/copy-webpack-plugin": { "version": "11.0.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", + "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", "license": "MIT", "dependencies": { "fast-glob": "^3.2.11", @@ -8695,32 +10709,10 @@ "webpack": "^5.1.0" } }, - "node_modules/copy-webpack-plugin/node_modules/ajv": { - "version": "8.11.0", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/copy-webpack-plugin/node_modules/ajv-keywords": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, "node_modules/copy-webpack-plugin/node_modules/glob-parent": { "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "license": "ISC", "dependencies": { "is-glob": "^4.0.3" @@ -8730,12 +10722,14 @@ } }, "node_modules/copy-webpack-plugin/node_modules/globby": { - "version": "13.1.2", + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", "license": "MIT", "dependencies": { "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", "merge2": "^1.4.1", "slash": "^4.0.0" }, @@ -8746,29 +10740,10 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/copy-webpack-plugin/node_modules/json-schema-traverse": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/copy-webpack-plugin/node_modules/schema-utils": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, "node_modules/copy-webpack-plugin/node_modules/slash": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", "license": "MIT", "engines": { "node": ">=12" @@ -8778,7 +10753,9 @@ } }, "node_modules/core-js": { - "version": "3.25.1", + "version": "3.39.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.39.0.tgz", + "integrity": "sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==", "hasInstallScript": true, "license": "MIT", "funding": { @@ -8787,10 +10764,12 @@ } }, "node_modules/core-js-compat": { - "version": "3.26.1", + "version": "3.39.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz", + "integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==", "license": "MIT", "dependencies": { - "browserslist": "^4.21.4" + "browserslist": "^4.24.2" }, "funding": { "type": "opencollective", @@ -8798,7 +10777,9 @@ } }, "node_modules/core-js-pure": { - "version": "3.24.0", + "version": "3.39.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.39.0.tgz", + "integrity": "sha512-7fEcWwKI4rJinnK+wLTezeg2smbFFdSBP6E2kQZNbnzM2s1rpKQ6aaRteZSSg7FLU3P0HGGVo/gbpfanU36urg==", "hasInstallScript": true, "license": "MIT", "funding": { @@ -8808,31 +10789,49 @@ }, "node_modules/core-util-is": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", "license": "MIT" }, "node_modules/cose-base": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/cose-base/-/cose-base-1.0.3.tgz", + "integrity": "sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==", "license": "MIT", "dependencies": { "layout-base": "^1.0.0" } }, "node_modules/cosmiconfig": { - "version": "7.0.1", + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", "license": "MIT", "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" }, "engines": { - "node": ">=10" - } - }, + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, "node_modules/create-ecdh": { "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", "license": "MIT", "dependencies": { "bn.js": "^4.1.0", @@ -8840,11 +10839,15 @@ } }, "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.0", + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz", + "integrity": "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==", "license": "MIT" }, "node_modules/create-hash": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", "license": "MIT", "dependencies": { "cipher-base": "^1.0.1", @@ -8856,6 +10859,8 @@ }, "node_modules/create-hmac": { "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", "license": "MIT", "dependencies": { "cipher-base": "^1.0.3", @@ -8871,6 +10876,7 @@ "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", "dev": true, + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "chalk": "^4.0.0", @@ -8887,101 +10893,43 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/create-jest/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/create-jest/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/create-jest/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/create-jest/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/create-jest/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/create-jest/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/crelt": { "version": "1.0.6", + "resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz", + "integrity": "sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==", "license": "MIT" }, - "node_modules/cross-fetch": { - "version": "3.1.8", + "node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", "license": "MIT", "dependencies": { - "node-fetch": "^2.6.12" + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "license": "MIT", + "node_modules/cross-spawn/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "license": "ISC", "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" } }, + "node_modules/cross-spawn/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "license": "ISC" + }, "node_modules/crowdin-cli": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/crowdin-cli/-/crowdin-cli-0.3.0.tgz", + "integrity": "sha512-s1vSRqWalCqd+vW7nF4oZo1a2pMpEgwIiwVlPRD0HmGY3HjJwQKXqZ26NpX5qCDVN8UdEsScy+2jle0PPQBmAg==", "license": "MIT", "dependencies": { "request": "^2.53.0", @@ -8992,80 +10940,209 @@ "crowdin-cli": "bin/crowdin-cli" } }, - "node_modules/crowdin-cli/node_modules/yargs": { - "version": "2.3.0", - "license": "MIT/X11", - "dependencies": { - "wordwrap": "0.0.2" - } - }, "node_modules/crypto-browserify": { - "version": "3.12.0", + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.1.tgz", + "integrity": "sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==", "license": "MIT", "dependencies": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" + "browserify-cipher": "^1.0.1", + "browserify-sign": "^4.2.3", + "create-ecdh": "^4.0.4", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "diffie-hellman": "^5.0.3", + "hash-base": "~3.0.4", + "inherits": "^2.0.4", + "pbkdf2": "^3.1.2", + "public-encrypt": "^4.0.3", + "randombytes": "^2.1.0", + "randomfill": "^1.0.4" }, "engines": { - "node": "*" + "node": ">= 0.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/crypto-js": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", + "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==", "license": "MIT" }, "node_modules/crypto-random-string": { - "version": "2.0.0", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", "license": "MIT", + "dependencies": { + "type-fest": "^1.0.1" + }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/css-blank-pseudo": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-7.0.1.tgz", + "integrity": "sha512-jf+twWGDf6LDoXDUode+nc7ZlrqfaNphrBIBrcmeP3D8yw1uPaix1gCC8LUQUGQ6CycuK2opkbFFWFuq/a94ag==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "postcss-selector-parser": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-blank-pseudo/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" } }, "node_modules/css-color-names": { "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==", "license": "MIT", "engines": { "node": "*" } }, "node_modules/css-declaration-sorter": { - "version": "6.3.1", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz", + "integrity": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==", "license": "ISC", "engines": { - "node": "^10 || ^12 || >=14" + "node": "^14 || ^16 || >=18" }, "peerDependencies": { "postcss": "^8.0.9" } }, + "node_modules/css-has-pseudo": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-7.0.2.tgz", + "integrity": "sha512-nzol/h+E0bId46Kn2dQH5VElaknX2Sr0hFuB/1EomdC7j+OISt2ZzK7EHX9DZDY53WbIVAR7FYKSO2XnSf07MQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/selector-specificity": "^5.0.0", + "postcss-selector-parser": "^7.0.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-has-pseudo/node_modules/@csstools/selector-specificity": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", + "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss-selector-parser": "^7.0.0" + } + }, + "node_modules/css-has-pseudo/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/css-line-break": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz", + "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", "license": "MIT", "dependencies": { "utrie": "^1.0.2" } }, "node_modules/css-loader": { - "version": "6.7.1", + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", + "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", "license": "MIT", "dependencies": { "icss-utils": "^5.1.0", - "postcss": "^8.4.7", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", "postcss-modules-values": "^4.0.0", "postcss-value-parser": "^4.2.0", - "semver": "^7.3.5" + "semver": "^7.5.4" }, "engines": { "node": ">= 12.13.0" @@ -9075,19 +11152,30 @@ "url": "https://opencollective.com/webpack" }, "peerDependencies": { + "@rspack/core": "0.x || 1.x", "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, "node_modules/css-minimizer-webpack-plugin": { - "version": "4.0.0", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz", + "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==", "license": "MIT", "dependencies": { - "cssnano": "^5.1.8", - "jest-worker": "^27.5.1", - "postcss": "^8.4.13", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1" + "@jridgewell/trace-mapping": "^0.3.18", + "cssnano": "^6.0.1", + "jest-worker": "^29.4.3", + "postcss": "^8.4.24", + "schema-utils": "^4.0.1", + "serialize-javascript": "^6.0.1" }, "engines": { "node": ">= 14.15.0" @@ -9103,6 +11191,9 @@ "@parcel/css": { "optional": true }, + "@swc/css": { + "optional": true + }, "clean-css": { "optional": true }, @@ -9111,99 +11202,73 @@ }, "esbuild": { "optional": true + }, + "lightningcss": { + "optional": true } } }, - "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { - "version": "8.11.0", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "node_modules/css-prefers-color-scheme": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-10.0.0.tgz", + "integrity": "sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=18" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { + "node_modules/css-select": { "version": "5.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "license": "BSD-2-Clause", "dependencies": { - "fast-deep-equal": "^3.1.3" + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { - "version": "0.6.1", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/css-select": { - "version": "4.3.0", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "funding": { + "url": "https://github.com/sponsors/fb55" } }, "node_modules/css-select-base-adapter": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", "license": "MIT" }, "node_modules/css-tree": { - "version": "1.1.3", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", "license": "MIT", "dependencies": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" }, "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/css-tree/node_modules/source-map": { - "version": "0.6.1", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, "node_modules/css-what": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "license": "BSD-2-Clause", "engines": { "node": ">= 6" @@ -9212,8 +11277,26 @@ "url": "https://github.com/sponsors/fb55" } }, + "node_modules/cssdb": { + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-8.2.3.tgz", + "integrity": "sha512-9BDG5XmJrJQQnJ51VFxXCAtpZ5ebDlAREmO8sxMOVU0aSxN/gocbctjIG5LMh3WBUq+xTlb/jw2LoljBEqraTA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + } + ], + "license": "MIT-0" + }, "node_modules/cssesc": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "license": "MIT", "bin": { "cssesc": "bin/cssesc" @@ -9223,85 +11306,94 @@ } }, "node_modules/cssnano": { - "version": "5.1.12", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.1.2.tgz", + "integrity": "sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==", "license": "MIT", "dependencies": { - "cssnano-preset-default": "^5.2.12", - "lilconfig": "^2.0.3", - "yaml": "^1.10.2" + "cssnano-preset-default": "^6.1.2", + "lilconfig": "^3.1.1" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/cssnano" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/cssnano-preset-advanced": { - "version": "5.3.10", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-6.1.2.tgz", + "integrity": "sha512-Nhao7eD8ph2DoHolEzQs5CfRpiEP0xa1HBdnFZ82kvqdmbwVBUr2r1QuQ4t1pi+D1ZpqpcO4T+wy/7RxzJ/WPQ==", "license": "MIT", "dependencies": { - "autoprefixer": "^10.4.12", - "cssnano-preset-default": "^5.2.14", - "postcss-discard-unused": "^5.1.0", - "postcss-merge-idents": "^5.1.1", - "postcss-reduce-idents": "^5.2.0", - "postcss-zindex": "^5.1.0" + "autoprefixer": "^10.4.19", + "browserslist": "^4.23.0", + "cssnano-preset-default": "^6.1.2", + "postcss-discard-unused": "^6.0.5", + "postcss-merge-idents": "^6.0.3", + "postcss-reduce-idents": "^6.0.3", + "postcss-zindex": "^6.0.2" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/cssnano-preset-default": { - "version": "5.2.14", - "license": "MIT", - "dependencies": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^3.1.0", - "postcss-calc": "^8.2.3", - "postcss-colormin": "^5.3.1", - "postcss-convert-values": "^5.1.3", - "postcss-discard-comments": "^5.1.2", - "postcss-discard-duplicates": "^5.1.0", - "postcss-discard-empty": "^5.1.1", - "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.7", - "postcss-merge-rules": "^5.1.4", - "postcss-minify-font-values": "^5.1.0", - "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.4", - "postcss-minify-selectors": "^5.2.1", - "postcss-normalize-charset": "^5.1.0", - "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.1", - "postcss-normalize-repeat-style": "^5.1.1", - "postcss-normalize-string": "^5.1.0", - "postcss-normalize-timing-functions": "^5.1.0", - "postcss-normalize-unicode": "^5.1.1", - "postcss-normalize-url": "^5.1.0", - "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.3", - "postcss-reduce-initial": "^5.1.2", - "postcss-reduce-transforms": "^5.1.0", - "postcss-svgo": "^5.1.0", - "postcss-unique-selectors": "^5.1.1" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz", + "integrity": "sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.23.0", + "css-declaration-sorter": "^7.2.0", + "cssnano-utils": "^4.0.2", + "postcss-calc": "^9.0.1", + "postcss-colormin": "^6.1.0", + "postcss-convert-values": "^6.1.0", + "postcss-discard-comments": "^6.0.2", + "postcss-discard-duplicates": "^6.0.3", + "postcss-discard-empty": "^6.0.3", + "postcss-discard-overridden": "^6.0.2", + "postcss-merge-longhand": "^6.0.5", + "postcss-merge-rules": "^6.1.1", + "postcss-minify-font-values": "^6.1.0", + "postcss-minify-gradients": "^6.0.3", + "postcss-minify-params": "^6.1.0", + "postcss-minify-selectors": "^6.0.4", + "postcss-normalize-charset": "^6.0.2", + "postcss-normalize-display-values": "^6.0.2", + "postcss-normalize-positions": "^6.0.2", + "postcss-normalize-repeat-style": "^6.0.2", + "postcss-normalize-string": "^6.0.2", + "postcss-normalize-timing-functions": "^6.0.2", + "postcss-normalize-unicode": "^6.1.0", + "postcss-normalize-url": "^6.0.2", + "postcss-normalize-whitespace": "^6.0.2", + "postcss-ordered-values": "^6.0.2", + "postcss-reduce-initial": "^6.1.0", + "postcss-reduce-transforms": "^6.0.2", + "postcss-svgo": "^6.0.3", + "postcss-unique-selectors": "^6.0.4" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, "node_modules/cssnano-util-get-arguments": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -9309,6 +11401,8 @@ }, "node_modules/cssnano-util-get-match": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -9316,6 +11410,8 @@ }, "node_modules/cssnano-util-raw-cache": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", "license": "MIT", "dependencies": { "postcss": "^7.0.0" @@ -9326,10 +11422,14 @@ }, "node_modules/cssnano-util-raw-cache/node_modules/picocolors": { "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", "license": "ISC" }, "node_modules/cssnano-util-raw-cache/node_modules/postcss": { "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "license": "MIT", "dependencies": { "picocolors": "^0.2.1", @@ -9345,6 +11445,8 @@ }, "node_modules/cssnano-util-raw-cache/node_modules/source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -9352,37 +11454,68 @@ }, "node_modules/cssnano-util-same-parent": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/cssnano-utils": { - "version": "3.1.0", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.2.tgz", + "integrity": "sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==", "license": "MIT", "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/csso": { - "version": "4.2.0", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", "license": "MIT", "dependencies": { - "css-tree": "^1.1.2" + "css-tree": "~2.2.0" }, "engines": { - "node": ">=8.0.0" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "license": "CC0-1.0" + }, "node_modules/csstype": { - "version": "3.0.10", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", "license": "MIT" }, "node_modules/currently-unhandled": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==", "license": "MIT", "dependencies": { "array-find-index": "^1.0.1" @@ -9392,18 +11525,18 @@ } }, "node_modules/cytoscape": { - "version": "3.28.1", + "version": "3.30.4", + "resolved": "https://registry.npmjs.org/cytoscape/-/cytoscape-3.30.4.tgz", + "integrity": "sha512-OxtlZwQl1WbwMmLiyPSEBuzeTIQnwZhJYYWFzZ2PhEHVFwpeaqNIkUzSiso00D98qk60l8Gwon2RP304d3BJ1A==", "license": "MIT", - "dependencies": { - "heap": "^0.2.6", - "lodash": "^4.17.21" - }, "engines": { "node": ">=0.10" } }, "node_modules/cytoscape-cose-bilkent": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz", + "integrity": "sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==", "license": "MIT", "dependencies": { "cose-base": "^1.0.0" @@ -9414,6 +11547,8 @@ }, "node_modules/cytoscape-fcose": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cytoscape-fcose/-/cytoscape-fcose-2.2.0.tgz", + "integrity": "sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==", "license": "MIT", "dependencies": { "cose-base": "^2.2.0" @@ -9424,6 +11559,8 @@ }, "node_modules/cytoscape-fcose/node_modules/cose-base": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cose-base/-/cose-base-2.2.0.tgz", + "integrity": "sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==", "license": "MIT", "dependencies": { "layout-base": "^2.0.0" @@ -9431,10 +11568,14 @@ }, "node_modules/cytoscape-fcose/node_modules/layout-base": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/layout-base/-/layout-base-2.0.1.tgz", + "integrity": "sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==", "license": "MIT" }, "node_modules/d3": { "version": "7.9.0", + "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", + "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", "license": "ISC", "dependencies": { "d3-array": "3", @@ -9474,6 +11615,8 @@ }, "node_modules/d3-array": { "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", "license": "ISC", "dependencies": { "internmap": "1 - 2" @@ -9484,6 +11627,8 @@ }, "node_modules/d3-axis": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", + "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", "license": "ISC", "engines": { "node": ">=12" @@ -9491,6 +11636,8 @@ }, "node_modules/d3-brush": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", + "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", "license": "ISC", "dependencies": { "d3-dispatch": "1 - 3", @@ -9505,6 +11652,8 @@ }, "node_modules/d3-chord": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", + "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", "license": "ISC", "dependencies": { "d3-path": "1 - 3" @@ -9515,6 +11664,8 @@ }, "node_modules/d3-color": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", "license": "ISC", "engines": { "node": ">=12" @@ -9522,6 +11673,8 @@ }, "node_modules/d3-contour": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", + "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", "license": "ISC", "dependencies": { "d3-array": "^3.2.0" @@ -9532,6 +11685,8 @@ }, "node_modules/d3-delaunay": { "version": "6.0.4", + "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz", + "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==", "license": "ISC", "dependencies": { "delaunator": "5" @@ -9542,6 +11697,8 @@ }, "node_modules/d3-dispatch": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", + "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", "license": "ISC", "engines": { "node": ">=12" @@ -9549,6 +11706,8 @@ }, "node_modules/d3-drag": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", "license": "ISC", "dependencies": { "d3-dispatch": "1 - 3", @@ -9560,6 +11719,8 @@ }, "node_modules/d3-dsv": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", + "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", "license": "ISC", "dependencies": { "commander": "7", @@ -9583,6 +11744,8 @@ }, "node_modules/d3-dsv/node_modules/commander": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "license": "MIT", "engines": { "node": ">= 10" @@ -9590,6 +11753,8 @@ }, "node_modules/d3-dsv/node_modules/iconv-lite": { "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" @@ -9600,6 +11765,8 @@ }, "node_modules/d3-ease": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", "license": "BSD-3-Clause", "engines": { "node": ">=12" @@ -9607,6 +11774,8 @@ }, "node_modules/d3-fetch": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", + "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", "license": "ISC", "dependencies": { "d3-dsv": "1 - 3" @@ -9617,6 +11786,8 @@ }, "node_modules/d3-force": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", + "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==", "license": "ISC", "dependencies": { "d3-dispatch": "1 - 3", @@ -9629,6 +11800,8 @@ }, "node_modules/d3-format": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", "license": "ISC", "engines": { "node": ">=12" @@ -9636,6 +11809,8 @@ }, "node_modules/d3-geo": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", "license": "ISC", "dependencies": { "d3-array": "2.5.0 - 3" @@ -9646,6 +11821,8 @@ }, "node_modules/d3-hierarchy": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", + "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", "license": "ISC", "engines": { "node": ">=12" @@ -9653,6 +11830,8 @@ }, "node_modules/d3-interpolate": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", "license": "ISC", "dependencies": { "d3-color": "1 - 3" @@ -9663,6 +11842,8 @@ }, "node_modules/d3-path": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", "license": "ISC", "engines": { "node": ">=12" @@ -9670,6 +11851,8 @@ }, "node_modules/d3-polygon": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", + "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", "license": "ISC", "engines": { "node": ">=12" @@ -9677,6 +11860,8 @@ }, "node_modules/d3-quadtree": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", + "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==", "license": "ISC", "engines": { "node": ">=12" @@ -9684,13 +11869,57 @@ }, "node_modules/d3-random": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", + "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", "license": "ISC", "engines": { "node": ">=12" } }, + "node_modules/d3-sankey": { + "version": "0.12.3", + "resolved": "https://registry.npmjs.org/d3-sankey/-/d3-sankey-0.12.3.tgz", + "integrity": "sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==", + "license": "BSD-3-Clause", + "dependencies": { + "d3-array": "1 - 2", + "d3-shape": "^1.2.0" + } + }, + "node_modules/d3-sankey/node_modules/d3-array": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.12.1.tgz", + "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", + "license": "BSD-3-Clause", + "dependencies": { + "internmap": "^1.0.0" + } + }, + "node_modules/d3-sankey/node_modules/d3-path": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.9.tgz", + "integrity": "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==", + "license": "BSD-3-Clause" + }, + "node_modules/d3-sankey/node_modules/d3-shape": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.7.tgz", + "integrity": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==", + "license": "BSD-3-Clause", + "dependencies": { + "d3-path": "1" + } + }, + "node_modules/d3-sankey/node_modules/internmap": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-1.0.1.tgz", + "integrity": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==", + "license": "ISC" + }, "node_modules/d3-scale": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", "license": "ISC", "dependencies": { "d3-array": "2.10.0 - 3", @@ -9705,6 +11934,8 @@ }, "node_modules/d3-scale-chromatic": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", + "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==", "license": "ISC", "dependencies": { "d3-color": "1 - 3", @@ -9716,6 +11947,8 @@ }, "node_modules/d3-selection": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", "license": "ISC", "engines": { "node": ">=12" @@ -9723,6 +11956,8 @@ }, "node_modules/d3-shape": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", "license": "ISC", "dependencies": { "d3-path": "^3.1.0" @@ -9733,6 +11968,8 @@ }, "node_modules/d3-time": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", "license": "ISC", "dependencies": { "d3-array": "2 - 3" @@ -9743,6 +11980,8 @@ }, "node_modules/d3-time-format": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", "license": "ISC", "dependencies": { "d3-time": "1 - 3" @@ -9753,6 +11992,8 @@ }, "node_modules/d3-timer": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", "license": "ISC", "engines": { "node": ">=12" @@ -9760,6 +12001,8 @@ }, "node_modules/d3-transition": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", + "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", "license": "ISC", "dependencies": { "d3-color": "1 - 3", @@ -9777,6 +12020,8 @@ }, "node_modules/d3-zoom": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", + "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", "license": "ISC", "dependencies": { "d3-dispatch": "1 - 3", @@ -9790,15 +12035,19 @@ } }, "node_modules/dagre-d3-es": { - "version": "7.0.9", + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/dagre-d3-es/-/dagre-d3-es-7.0.11.tgz", + "integrity": "sha512-tvlJLyQf834SylNKax8Wkzco/1ias1OPw8DcUMDE7oUIoSEW25riQVuiu/0OWEFqT0cxHT3Pa9/D82Jr47IONw==", "license": "MIT", "dependencies": { - "d3": "^7.8.2", + "d3": "^7.9.0", "lodash-es": "^4.17.21" } }, "node_modules/dashdash": { "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", "license": "MIT", "dependencies": { "assert-plus": "^1.0.0" @@ -9807,15 +12056,76 @@ "node": ">=0.10" } }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/dayjs": { - "version": "1.11.10", + "version": "1.11.13", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz", + "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==", + "license": "MIT" + }, + "node_modules/debounce": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", + "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==", "license": "MIT" }, "node_modules/debug": { - "version": "4.3.4", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", "license": "MIT", "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -9828,6 +12138,8 @@ }, "node_modules/decamelize": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -9835,6 +12147,8 @@ }, "node_modules/decode-named-character-reference": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", + "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", "license": "MIT", "dependencies": { "character-entities": "^2.0.0" @@ -9844,16 +12158,10 @@ "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/decode-named-character-reference/node_modules/character-entities": { - "version": "2.0.2", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/decode-uri-component": { "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "license": "MIT", "engines": { "node": ">=0.10" @@ -9861,6 +12169,8 @@ }, "node_modules/decompress": { "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", "license": "MIT", "dependencies": { "decompress-tar": "^4.0.0", @@ -9878,6 +12188,8 @@ }, "node_modules/decompress-response": { "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", "license": "MIT", "dependencies": { "mimic-response": "^1.0.0" @@ -9888,6 +12200,8 @@ }, "node_modules/decompress-tar": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", "license": "MIT", "dependencies": { "file-type": "^5.2.0", @@ -9900,20 +12214,17 @@ }, "node_modules/decompress-tar/node_modules/file-type": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", "license": "MIT", "engines": { "node": ">=4" } }, - "node_modules/decompress-tar/node_modules/is-stream": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/decompress-tarbz2": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", "license": "MIT", "dependencies": { "decompress-tar": "^4.1.0", @@ -9928,20 +12239,17 @@ }, "node_modules/decompress-tarbz2/node_modules/file-type": { "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", "license": "MIT", "engines": { "node": ">=4" } }, - "node_modules/decompress-tarbz2/node_modules/is-stream": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/decompress-targz": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", "license": "MIT", "dependencies": { "decompress-tar": "^4.1.1", @@ -9954,20 +12262,17 @@ }, "node_modules/decompress-targz/node_modules/file-type": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", "license": "MIT", "engines": { "node": ">=4" } }, - "node_modules/decompress-targz/node_modules/is-stream": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/decompress-unzip": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==", "license": "MIT", "dependencies": { "file-type": "^3.8.0", @@ -9981,6 +12286,8 @@ }, "node_modules/decompress-unzip/node_modules/file-type": { "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -9988,6 +12295,8 @@ }, "node_modules/decompress-unzip/node_modules/get-stream": { "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==", "license": "MIT", "dependencies": { "object-assign": "^4.0.1", @@ -9999,6 +12308,8 @@ }, "node_modules/decompress-unzip/node_modules/pify": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -10006,6 +12317,8 @@ }, "node_modules/decompress/node_modules/make-dir": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", "license": "MIT", "dependencies": { "pify": "^3.0.0" @@ -10016,6 +12329,8 @@ }, "node_modules/decompress/node_modules/make-dir/node_modules/pify": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "license": "MIT", "engines": { "node": ">=4" @@ -10023,6 +12338,8 @@ }, "node_modules/decompress/node_modules/pify": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -10045,6 +12362,8 @@ }, "node_modules/deep-extend": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", "license": "MIT", "engines": { "node": ">=4.0.0" @@ -10052,10 +12371,14 @@ }, "node_modules/deep-is": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "license": "MIT" }, "node_modules/deepmerge": { - "version": "4.2.2", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -10063,6 +12386,8 @@ }, "node_modules/default-gateway": { "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", "license": "BSD-2-Clause", "dependencies": { "execa": "^5.0.0" @@ -10071,119 +12396,284 @@ "node": ">= 10" } }, - "node_modules/defer-to-connect": { - "version": "1.1.3", - "license": "MIT" - }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", + "node_modules/default-gateway/node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, "engines": { - "node": ">=8" + "node": ">= 8" } }, - "node_modules/define-properties": { - "version": "1.1.4", + "node_modules/default-gateway/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "license": "MIT", "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/define-property": { - "version": "2.0.2", + "node_modules/default-gateway/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/del": { - "version": "6.1.1", + "node_modules/default-gateway/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "license": "MIT", - "dependencies": { - "globby": "^11.0.1", - "graceful-fs": "^4.2.4", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.2", - "p-map": "^4.0.0", - "rimraf": "^3.0.2", - "slash": "^3.0.0" - }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/delaunator": { - "version": "5.0.1", - "license": "ISC", + "node_modules/default-gateway/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", "dependencies": { - "robust-predicates": "^3.0.2" + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", + "node_modules/default-gateway/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "license": "MIT", "engines": { - "node": ">=0.4.0" + "node": ">=8" } }, - "node_modules/depd": { + "node_modules/default-gateway/node_modules/shebang-command": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, "engines": { - "node": ">= 0.8" + "node": ">=8" } }, - "node_modules/dequal": { - "version": "2.0.3", + "node_modules/default-gateway/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "license": "MIT", "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/des.js": { - "version": "1.1.0", - "license": "MIT", + "node_modules/default-gateway/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", + "license": "MIT", + "dependencies": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/delaunator": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz", + "integrity": "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==", + "license": "ISC", + "dependencies": { + "robust-predicates": "^3.0.2" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/des.js": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", + "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" } }, "node_modules/destroy": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "license": "MIT", "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/detab": { - "version": "2.0.4", - "license": "MIT", - "dependencies": { - "repeat-string": "^1.5.4" + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "license": "Apache-2.0", + "optional": true, + "bin": { + "detect-libc": "bin/detect-libc.js" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": ">=0.10" } }, "node_modules/detect-newline": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, "license": "MIT", "engines": { @@ -10192,25 +12682,161 @@ }, "node_modules/detect-node": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "license": "MIT" }, + "node_modules/detect-package-manager": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-3.0.2.tgz", + "integrity": "sha512-8JFjJHutStYrfWwzfretQoyNGoZVW1Fsrp4JO9spa7h/fBfwgTMEIy4/LBzRDGsxwVPHU0q+T9YvwLDJoOApLQ==", + "license": "MIT", + "dependencies": { + "execa": "^5.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/detect-package-manager/node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/detect-package-manager/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/detect-package-manager/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/detect-package-manager/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/detect-package-manager/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-package-manager/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-package-manager/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-package-manager/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-package-manager/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/detect-port": { - "version": "1.3.0", + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.6.1.tgz", + "integrity": "sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==", "license": "MIT", "dependencies": { "address": "^1.0.1", - "debug": "^2.6.0" + "debug": "4" }, "bin": { - "detect": "bin/detect-port", - "detect-port": "bin/detect-port" + "detect": "bin/detect-port.js", + "detect-port": "bin/detect-port.js" }, "engines": { - "node": ">= 4.2.1" + "node": ">= 4.0.0" } }, "node_modules/detect-port-alt": { "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", "license": "MIT", "dependencies": { "address": "^1.0.1", @@ -10226,6 +12852,8 @@ }, "node_modules/detect-port-alt/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -10233,21 +12861,27 @@ }, "node_modules/detect-port-alt/node_modules/ms": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, - "node_modules/detect-port/node_modules/debug": { - "version": "2.6.9", + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", "license": "MIT", "dependencies": { - "ms": "2.0.0" + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/detect-port/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, "node_modules/diacritics-map": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/diacritics-map/-/diacritics-map-0.1.0.tgz", + "integrity": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==", "license": "MIT", "engines": { "node": ">=0.8.0" @@ -10257,12 +12891,15 @@ "version": "10.2.2", "resolved": "https://registry.npmjs.org/didi/-/didi-10.2.2.tgz", "integrity": "sha512-l8NYkYFXV1izHI65EyT8EXOjUZtKmQkHLTT89cSP7HU5J/G7AOj0dXKtLc04EXYlga99PBY18IPjOeZ+c3DI4w==", + "license": "MIT", "engines": { "node": ">= 16" } }, "node_modules/diff": { - "version": "5.1.0", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" @@ -10270,6 +12907,8 @@ }, "node_modules/diff-sequences": { "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, "license": "MIT", "engines": { @@ -10278,6 +12917,8 @@ }, "node_modules/diffie-hellman": { "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", "license": "MIT", "dependencies": { "bn.js": "^4.1.0", @@ -10286,11 +12927,15 @@ } }, "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.0", + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz", + "integrity": "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==", "license": "MIT" }, "node_modules/dir-glob": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "license": "MIT", "dependencies": { "path-type": "^4.0.0" @@ -10301,14 +12946,14 @@ }, "node_modules/discontinuous-range": { "version": "1.0.0", - "license": "MIT" - }, - "node_modules/dns-equal": { - "version": "1.0.0", + "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", + "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==", "license": "MIT" }, "node_modules/dns-packet": { - "version": "5.4.0", + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", "license": "MIT", "dependencies": { "@leichtgewicht/ip-codec": "^2.0.1" @@ -10319,6 +12964,8 @@ }, "node_modules/docusaurus": { "version": "1.14.7", + "resolved": "https://registry.npmjs.org/docusaurus/-/docusaurus-1.14.7.tgz", + "integrity": "sha512-UWqar4ZX0lEcpLc5Tg+MwZ2jhF/1n1toCQRSeoxDON/D+E9ToLr+vTRFVMP/Tk84NXSVjZFRlrjWwM2pXzvLsQ==", "license": "MIT", "dependencies": { "@babel/core": "^7.12.3", @@ -10381,23 +13028,23 @@ } }, "node_modules/docusaurus-plugin-openapi-docs": { - "version": "2.0.4", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/docusaurus-plugin-openapi-docs/-/docusaurus-plugin-openapi-docs-4.3.1.tgz", + "integrity": "sha512-uVv/mipiQzgqHIhgnTmJmsBW3UuuAufmuyXeHzQR8PGovsjMOKJU6YVDTd8qHlkXQ09IdoBLKG0RUZ9daNxt0w==", "license": "MIT", "dependencies": { - "@apidevtools/json-schema-ref-parser": "^10.1.0", - "@docusaurus/plugin-content-docs": ">=2.4.1 <=2.4.3", - "@docusaurus/utils": ">=2.4.1 <=2.4.3", - "@docusaurus/utils-validation": ">=2.4.1 <=2.4.3", - "@paloaltonetworks/openapi-to-postmanv2": "3.1.0-hotfix.1", - "@paloaltonetworks/postman-collection": "^4.1.0", - "@redocly/openapi-core": "^1.0.0-beta.125", + "@apidevtools/json-schema-ref-parser": "^11.5.4", + "@redocly/openapi-core": "^1.10.5", + "allof-merge": "^0.6.6", "chalk": "^4.1.2", "clsx": "^1.1.1", "fs-extra": "^9.0.1", "json-pointer": "^0.6.2", - "json-schema-merge-allof": "^0.8.1", + "json5": "^2.2.3", "lodash": "^4.17.20", "mustache": "^4.2.0", + "openapi-to-postmanv2": "^4.21.0", + "postman-collection": "^4.4.0", "slugify": "^1.6.5", "swagger2openapi": "^7.0.8", "xml-formatter": "^2.6.1" @@ -10406,59 +13053,25 @@ "node": ">=14" }, "peerDependencies": { + "@docusaurus/plugin-content-docs": "^3.5.0", + "@docusaurus/utils": "^3.5.0", + "@docusaurus/utils-validation": "^3.5.0", "react": "^16.8.4 || ^17.0.0 || ^18.0.0" } }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/docusaurus-plugin-openapi-docs/node_modules/clsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=6" } }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/clsx": { - "version": "1.2.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, "node_modules/docusaurus-plugin-openapi-docs/node_modules/fs-extra": { "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "license": "MIT", "dependencies": { "at-least-node": "^1.0.0", @@ -10470,41 +13083,38 @@ "node": ">=10" } }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/docusaurus-plugin-sass": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/docusaurus-plugin-sass/-/docusaurus-plugin-sass-0.2.6.tgz", + "integrity": "sha512-2hKQQDkrufMong9upKoG/kSHJhuwd+FA3iAe/qzS/BmWpbIpe7XKmq5wlz4J5CJaOPu4x+iDJbgAxZqcoQf0kg==", "license": "MIT", + "peer": true, "dependencies": { - "has-flag": "^4.0.0" + "sass-loader": "^16.0.2" }, - "engines": { - "node": ">=8" + "peerDependencies": { + "@docusaurus/core": "^2.0.0-beta || ^3.0.0-alpha", + "sass": "^1.30.0" } }, "node_modules/docusaurus-theme-openapi-docs": { - "version": "2.0.4", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/docusaurus-theme-openapi-docs/-/docusaurus-theme-openapi-docs-4.3.1.tgz", + "integrity": "sha512-AeMBDckf+L3CDybLuzxUnjfBOa4zvpfux+u8g2apMSRub1Zh17EdqSWapzHWcMRw3xmknR4kqMFboWLXhwW1ew==", "license": "MIT", "dependencies": { - "@docusaurus/theme-common": ">=2.4.1 <=2.4.3", "@hookform/error-message": "^2.0.1", - "@paloaltonetworks/postman-code-generators": "1.1.15-patch.2", - "@paloaltonetworks/postman-collection": "^4.1.0", "@reduxjs/toolkit": "^1.7.1", + "allof-merge": "^0.6.6", "clsx": "^1.1.1", "copy-text-to-clipboard": "^3.1.0", "crypto-js": "^4.1.1", - "docusaurus-plugin-openapi-docs": "^2.0.4", - "docusaurus-plugin-sass": "^0.2.3", "file-saver": "^2.0.5", "lodash": "^4.17.20", - "node-polyfill-webpack-plugin": "^2.0.1", - "prism-react-renderer": "^1.3.5", + "node-polyfill-webpack-plugin": "^3.0.0", + "postman-code-generators": "^1.10.1", + "postman-collection": "^4.4.0", + "prism-react-renderer": "^2.3.0", "react-hook-form": "^7.43.8", "react-live": "^4.0.0", "react-magic-dropzone": "^1.0.1", @@ -10512,8 +13122,10 @@ "react-modal": "^3.15.1", "react-redux": "^7.2.0", "rehype-raw": "^6.1.1", - "sass": "^1.58.1", - "sass-loader": "^13.3.2", + "remark-gfm": "3.0.1", + "sass": "^1.80.4", + "sass-loader": "^16.0.2", + "unist-util-visit": "^5.0.0", "webpack": "^5.61.0", "xml-formatter": "^2.6.1" }, @@ -10521,1369 +13133,1537 @@ "node": ">=14" }, "peerDependencies": { + "@docusaurus/theme-common": "^3.5.0", + "docusaurus-plugin-openapi-docs": "^4.0.0", + "docusaurus-plugin-sass": "^0.2.3", "react": "^16.8.4 || ^17.0.0 || ^18.0.0", "react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0" } }, + "node_modules/docusaurus-theme-openapi-docs/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/docusaurus-theme-openapi-docs/node_modules/@types/mdast": { + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", + "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/docusaurus-theme-openapi-docs/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", + "license": "MIT" + }, "node_modules/docusaurus-theme-openapi-docs/node_modules/clsx": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", "license": "MIT", "engines": { "node": ">=6" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/docusaurus-plugin-sass": { - "version": "0.2.5", + "node_modules/docusaurus-theme-openapi-docs/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "license": "MIT", - "dependencies": { - "sass-loader": "^10.1.1" + "engines": { + "node": ">=12" }, - "peerDependencies": { - "@docusaurus/core": "^2.0.0-beta || ^3.0.0-alpha", - "sass": "^1.30.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/docusaurus-plugin-sass/node_modules/sass-loader": { - "version": "10.5.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-from-parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-7.1.2.tgz", + "integrity": "sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==", "license": "MIT", "dependencies": { - "klona": "^2.0.4", - "loader-utils": "^2.0.0", - "neo-async": "^2.6.2", - "schema-utils": "^3.0.0", - "semver": "^7.3.2" - }, - "engines": { - "node": ">= 10.13.0" + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0", + "hastscript": "^7.0.0", + "property-information": "^6.0.0", + "vfile": "^5.0.0", + "vfile-location": "^4.0.0", + "web-namespaces": "^2.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "fibers": ">= 3.1.0", - "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", - "sass": "^1.3.0", - "webpack": "^4.36.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "fibers": { - "optional": true - }, - "node-sass": { - "optional": true - }, - "sass": { - "optional": true - } + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/@babel/code-frame": { - "version": "7.10.4", + "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-parse-selector": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-3.1.1.tgz", + "integrity": "sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==", "license": "MIT", "dependencies": { - "@babel/highlight": "^7.10.4" + "@types/hast": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/airbnb-prop-types": { - "version": "2.16.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-raw": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-7.2.3.tgz", + "integrity": "sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==", "license": "MIT", "dependencies": { - "array.prototype.find": "^2.1.1", - "function.prototype.name": "^1.1.2", - "is-regex": "^1.1.0", - "object-is": "^1.1.2", - "object.assign": "^4.1.0", - "object.entries": "^1.1.2", - "prop-types": "^15.7.2", - "prop-types-exact": "^1.2.0", - "react-is": "^16.13.1" + "@types/hast": "^2.0.0", + "@types/parse5": "^6.0.0", + "hast-util-from-parse5": "^7.0.0", + "hast-util-to-parse5": "^7.0.0", + "html-void-elements": "^2.0.0", + "parse5": "^6.0.0", + "unist-util-position": "^4.0.0", + "unist-util-visit": "^4.0.0", + "vfile": "^5.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "peerDependencies": { - "react": "^0.14 || ^15.0.0 || ^16.0.0-alpha" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-raw/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/argparse": { - "version": "1.0.10", + "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-to-parse5": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-7.1.0.tgz", + "integrity": "sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==", "license": "MIT", "dependencies": { - "sprintf-js": "~1.0.2" + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/autoprefixer": { - "version": "9.8.8", + "node_modules/docusaurus-theme-openapi-docs/node_modules/hastscript": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-7.2.0.tgz", + "integrity": "sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==", "license": "MIT", "dependencies": { - "browserslist": "^4.12.0", - "caniuse-lite": "^1.0.30001109", - "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "picocolors": "^0.2.1", - "postcss": "^7.0.32", - "postcss-value-parser": "^4.1.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-parse-selector": "^3.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0" }, "funding": { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/braces": { - "version": "2.3.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/html-void-elements": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-2.0.1.tgz", + "integrity": "sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==", "license": "MIT", - "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/docusaurus/node_modules/browserslist": { - "version": "4.14.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", "license": "MIT", - "dependencies": { - "caniuse-lite": "^1.0.30001125", - "electron-to-chromium": "^1.3.564", - "escalade": "^3.0.2", - "node-releases": "^1.1.61" - }, - "bin": { - "browserslist": "cli.js" - }, "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "node": ">=12" }, "funding": { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/docusaurus/node_modules/chalk": { - "version": "3.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-find-and-replace": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.2.2.tgz", + "integrity": "sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@types/mdast": "^3.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.0.0" }, - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-from-markdown": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", + "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "@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" }, - "engines": { - "node": ">=7.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/commander": { - "version": "4.1.1", - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/docusaurus/node_modules/cosmiconfig": { - "version": "5.2.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-2.0.2.tgz", + "integrity": "sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==", "license": "MIT", "dependencies": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-gfm-autolink-literal": "^1.0.0", + "mdast-util-gfm-footnote": "^1.0.0", + "mdast-util-gfm-strikethrough": "^1.0.0", + "mdast-util-gfm-table": "^1.0.0", + "mdast-util-gfm-task-list-item": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" }, - "engines": { - "node": ">=4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/css-declaration-sorter": { - "version": "4.0.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-autolink-literal": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.3.tgz", + "integrity": "sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==", "license": "MIT", "dependencies": { - "postcss": "^7.0.1", - "timsort": "^0.3.0" + "@types/mdast": "^3.0.0", + "ccount": "^2.0.0", + "mdast-util-find-and-replace": "^2.0.0", + "micromark-util-character": "^1.0.0" }, - "engines": { - "node": ">4" - } - }, - "node_modules/docusaurus/node_modules/css-select": { - "version": "2.1.0", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/css-tree": { - "version": "1.0.0-alpha.37", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-footnote": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.2.tgz", + "integrity": "sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==", "license": "MIT", "dependencies": { - "mdn-data": "2.0.4", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/docusaurus/node_modules/css-what": { - "version": "3.4.2", - "license": "BSD-2-Clause", - "engines": { - "node": ">= 6" + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0", + "micromark-util-normalize-identifier": "^1.0.0" }, "funding": { - "url": "https://github.com/sponsors/fb55" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/cssnano": { - "version": "4.1.11", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-strikethrough": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.3.tgz", + "integrity": "sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==", "license": "MIT", "dependencies": { - "cosmiconfig": "^5.0.0", - "cssnano-preset-default": "^4.0.8", - "is-resolvable": "^1.0.0", - "postcss": "^7.0.0" + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0" }, - "engines": { - "node": ">=6.9.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/cssnano-preset-default": { - "version": "4.0.8", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-table": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.7.tgz", + "integrity": "sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==", "license": "MIT", "dependencies": { - "css-declaration-sorter": "^4.0.1", - "cssnano-util-raw-cache": "^4.0.1", - "postcss": "^7.0.0", - "postcss-calc": "^7.0.1", - "postcss-colormin": "^4.0.3", - "postcss-convert-values": "^4.0.1", - "postcss-discard-comments": "^4.0.2", - "postcss-discard-duplicates": "^4.0.2", - "postcss-discard-empty": "^4.0.1", - "postcss-discard-overridden": "^4.0.1", - "postcss-merge-longhand": "^4.0.11", - "postcss-merge-rules": "^4.0.3", - "postcss-minify-font-values": "^4.0.2", - "postcss-minify-gradients": "^4.0.2", - "postcss-minify-params": "^4.0.2", - "postcss-minify-selectors": "^4.0.2", - "postcss-normalize-charset": "^4.0.1", - "postcss-normalize-display-values": "^4.0.2", - "postcss-normalize-positions": "^4.0.2", - "postcss-normalize-repeat-style": "^4.0.2", - "postcss-normalize-string": "^4.0.2", - "postcss-normalize-timing-functions": "^4.0.2", - "postcss-normalize-unicode": "^4.0.1", - "postcss-normalize-url": "^4.0.1", - "postcss-normalize-whitespace": "^4.0.2", - "postcss-ordered-values": "^4.1.2", - "postcss-reduce-initial": "^4.0.3", - "postcss-reduce-transforms": "^4.0.2", - "postcss-svgo": "^4.0.3", - "postcss-unique-selectors": "^4.0.1" + "@types/mdast": "^3.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.3.0" }, - "engines": { - "node": ">=6.9.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/dom-serializer": { - "version": "0.2.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-task-list-item": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.2.tgz", + "integrity": "sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==", "license": "MIT", "dependencies": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" - } - }, - "node_modules/docusaurus/node_modules/domutils": { - "version": "1.7.0", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/domutils/node_modules/domelementtype": { - "version": "1.3.1", - "license": "BSD-2-Clause" - }, - "node_modules/docusaurus/node_modules/enzyme-adapter-react-16": { - "version": "1.15.7", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-phrasing": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", + "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", "license": "MIT", "dependencies": { - "enzyme-adapter-utils": "^1.14.1", - "enzyme-shallow-equal": "^1.0.5", - "has": "^1.0.3", - "object.assign": "^4.1.4", - "object.values": "^1.1.5", - "prop-types": "^15.8.1", - "react-is": "^16.13.1", - "react-test-renderer": "^16.0.0-0", - "semver": "^5.7.0" + "@types/mdast": "^3.0.0", + "unist-util-is": "^5.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "peerDependencies": { - "enzyme": "^3.0.0", - "react": "^16.0.0-0", - "react-dom": "^16.0.0-0" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/enzyme-adapter-utils": { - "version": "1.14.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-to-markdown": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", + "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", "license": "MIT", "dependencies": { - "airbnb-prop-types": "^2.16.0", - "function.prototype.name": "^1.1.5", - "has": "^1.0.3", - "object.assign": "^4.1.4", - "object.fromentries": "^2.0.5", - "prop-types": "^15.8.1", - "semver": "^5.7.1" + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^3.0.0", + "mdast-util-to-string": "^3.0.0", + "micromark-util-decode-string": "^1.0.0", + "unist-util-visit": "^4.0.0", + "zwitch": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "peerDependencies": { - "react": "0.13.x || 0.14.x || ^15.0.0-0 || ^16.0.0-0" - } - }, - "node_modules/docusaurus/node_modules/escape-string-regexp": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/docusaurus/node_modules/filesize": { - "version": "6.1.0", - "license": "BSD-3-Clause", - "engines": { - "node": ">= 0.4.0" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/fill-range": { - "version": "4.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-to-markdown/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", "license": "MIT", "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin": { - "version": "4.1.6", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.5.5", - "chalk": "^2.4.1", - "micromatch": "^3.1.10", - "minimatch": "^3.0.4", - "semver": "^5.6.0", - "tapable": "^1.0.0", - "worker-rpc": "^0.1.0" + "@types/mdast": "^3.0.0" }, - "engines": { - "node": ">=6.11.5", - "yarn": ">=1.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { - "version": "3.2.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz", + "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" + "@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" } }, - "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { - "version": "2.4.2", - "license": "MIT", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-core-commonmark": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", + "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" + "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" } }, - "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { - "version": "1.9.3", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.3.tgz", + "integrity": "sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==", "license": "MIT", "dependencies": { - "color-name": "1.1.3" + "micromark-extension-gfm-autolink-literal": "^1.0.0", + "micromark-extension-gfm-footnote": "^1.0.0", + "micromark-extension-gfm-strikethrough": "^1.0.0", + "micromark-extension-gfm-table": "^1.0.0", + "micromark-extension-gfm-tagfilter": "^1.0.0", + "micromark-extension-gfm-task-list-item": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-types": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { - "version": "1.1.3", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/escape-string-regexp": { + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-autolink-literal": { "version": "1.0.5", - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { - "version": "5.5.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.5.tgz", + "integrity": "sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==", "license": "MIT", "dependencies": { - "has-flag": "^3.0.0" + "micromark-util-character": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" }, - "engines": { - "node": ">=4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/fs-extra": { - "version": "9.1.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-footnote": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.1.2.tgz", + "integrity": "sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==", "license": "MIT", "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "micromark-core-commonmark": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" }, - "engines": { - "node": ">=10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/globby": { - "version": "11.0.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-strikethrough": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.7.tgz", + "integrity": "sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==", "license": "MIT", "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/gzip-size": { - "version": "5.1.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-table": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.7.tgz", + "integrity": "sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==", "license": "MIT", "dependencies": { - "duplexer": "^0.1.1", - "pify": "^4.0.1" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" }, - "engines": { - "node": ">=6" - } - }, - "node_modules/docusaurus/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/docusaurus/node_modules/immer": { - "version": "8.0.1", - "license": "MIT", "funding": { "type": "opencollective", - "url": "https://opencollective.com/immer" + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/import-fresh": { - "version": "2.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-tagfilter": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.2.tgz", + "integrity": "sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==", "license": "MIT", "dependencies": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" + "micromark-util-types": "^1.0.0" }, - "engines": { - "node": ">=4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/is-buffer": { - "version": "1.1.6", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/is-extendable": { - "version": "1.0.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-task-list-item": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.5.tgz", + "integrity": "sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==", "license": "MIT", "dependencies": { - "is-plain-object": "^2.0.4" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/is-number": { - "version": "3.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-destination": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", + "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-label": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", + "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" } }, - "node_modules/docusaurus/node_modules/js-yaml": { - "version": "3.14.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-title": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", + "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/loader-utils": { - "version": "2.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-whitespace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", + "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/mdn-data": { - "version": "2.0.4", - "license": "CC0-1.0" - }, - "node_modules/docusaurus/node_modules/micromatch": { - "version": "3.1.10", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-chunked": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", + "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/micromatch/node_modules/extend-shallow": { - "version": "3.0.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-classify-character": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", + "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/node-releases": { - "version": "1.1.77", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/normalize-url": { - "version": "3.3.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-combine-extensions": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", + "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/docusaurus/node_modules/nth-check": { - "version": "1.0.2", - "license": "BSD-2-Clause", "dependencies": { - "boolbase": "~1.0.0" + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/open": { - "version": "7.4.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-decode-numeric-character-reference": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", + "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "is-docker": "^2.0.0", - "is-wsl": "^2.1.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/parse-json": { - "version": "4.0.0", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-decode-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", + "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, - "engines": { - "node": ">=4" + "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" } }, - "node_modules/docusaurus/node_modules/picocolors": { - "version": "0.2.1", - "license": "ISC" + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", + "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" }, - "node_modules/docusaurus/node_modules/postcss": { - "version": "7.0.39", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-html-tag-name": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", + "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-normalize-identifier": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", + "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/postcss-calc": { - "version": "7.0.5", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-resolve-all": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", + "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "postcss": "^7.0.27", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.0.2" + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/postcss-colormin": { - "version": "4.0.3", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-sanitize-uri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", + "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "browserslist": "^4.0.0", - "color": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "engines": { - "node": ">=6.9.0" + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/postcss-colormin/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-convert-values": { - "version": "4.0.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-subtokenize": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", + "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "engines": { - "node": ">=6.9.0" + "micromark-util-chunked": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" } }, - "node_modules/docusaurus/node_modules/postcss-convert-values/node_modules/postcss-value-parser": { - "version": "3.3.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", + "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT" }, - "node_modules/docusaurus/node_modules/postcss-discard-comments": { - "version": "4.0.2", - "license": "MIT", - "dependencies": { - "postcss": "^7.0.0" - }, - "engines": { - "node": ">=6.9.0" - } + "node_modules/docusaurus-theme-openapi-docs/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "license": "MIT" }, - "node_modules/docusaurus/node_modules/postcss-discard-duplicates": { - "version": "4.0.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/rehype-raw": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-6.1.1.tgz", + "integrity": "sha512-d6AKtisSRtDRX4aSPsJGTfnzrX2ZkHQLE5kiUuGOeEoLpbEulFF4hj0mLPbsa+7vmguDKOVVEQdHKDSwoaIDsQ==", "license": "MIT", "dependencies": { - "postcss": "^7.0.0" + "@types/hast": "^2.0.0", + "hast-util-raw": "^7.2.0", + "unified": "^10.0.0" }, - "engines": { - "node": ">=6.9.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/postcss-discard-empty": { - "version": "4.0.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/remark-gfm": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-3.0.1.tgz", + "integrity": "sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==", "license": "MIT", "dependencies": { - "postcss": "^7.0.0" + "@types/mdast": "^3.0.0", + "mdast-util-gfm": "^2.0.0", + "micromark-extension-gfm": "^2.0.0", + "unified": "^10.0.0" }, - "engines": { - "node": ">=6.9.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/postcss-discard-overridden": { - "version": "4.0.1", + "node_modules/docusaurus-theme-openapi-docs/node_modules/unified": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", + "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", "license": "MIT", "dependencies": { - "postcss": "^7.0.0" + "@types/unist": "^2.0.0", + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" }, - "engines": { - "node": ">=6.9.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/postcss-merge-longhand": { - "version": "4.0.11", + "node_modules/docusaurus-theme-openapi-docs/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", "license": "MIT", "dependencies": { - "css-color-names": "0.0.4", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "stylehacks": "^4.0.0" + "@types/unist": "^2.0.0" }, - "engines": { - "node": ">=6.9.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/postcss-merge-longhand/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-merge-rules": { - "version": "4.0.3", + "node_modules/docusaurus-theme-openapi-docs/node_modules/unist-util-position": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", + "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", "license": "MIT", "dependencies": { - "browserslist": "^4.0.0", - "caniuse-api": "^3.0.0", - "cssnano-util-same-parent": "^4.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0", - "vendors": "^1.0.0" + "@types/unist": "^2.0.0" }, - "engines": { - "node": ">=6.9.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { - "version": "3.1.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", "license": "MIT", "dependencies": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" + "@types/unist": "^2.0.0" }, - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/postcss-minify-font-values": { - "version": "4.0.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", "license": "MIT", "dependencies": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" }, - "engines": { - "node": ">=6.9.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/postcss-minify-font-values/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-minify-gradients": { - "version": "4.0.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/vfile": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", "license": "MIT", "dependencies": { - "cssnano-util-get-arguments": "^4.0.0", - "is-color-stop": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" }, - "engines": { - "node": ">=6.9.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/postcss-minify-gradients/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-minify-params": { - "version": "4.0.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/vfile-location": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-4.1.0.tgz", + "integrity": "sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==", "license": "MIT", "dependencies": { - "alphanum-sort": "^1.0.0", - "browserslist": "^4.0.0", - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "uniqs": "^2.0.0" + "@types/unist": "^2.0.0", + "vfile": "^5.0.0" }, - "engines": { - "node": ">=6.9.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/postcss-minify-params/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-minify-selectors": { - "version": "4.0.2", + "node_modules/docusaurus-theme-openapi-docs/node_modules/vfile-message": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", "license": "MIT", "dependencies": { - "alphanum-sort": "^1.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" }, - "engines": { - "node": ">=6.9.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { - "version": "3.1.2", + "node_modules/docusaurus/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", "license": "MIT", "dependencies": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - }, - "engines": { - "node": ">=8" + "@babel/highlight": "^7.10.4" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-charset": { - "version": "4.0.1", + "node_modules/docusaurus/node_modules/address": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", + "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==", "license": "MIT", - "dependencies": { - "postcss": "^7.0.0" - }, "engines": { - "node": ">=6.9.0" + "node": ">= 0.12.0" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-display-values": { - "version": "4.0.2", + "node_modules/docusaurus/node_modules/airbnb-prop-types": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz", + "integrity": "sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==", + "deprecated": "This package has been renamed to 'prop-types-tools'", "license": "MIT", "dependencies": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "array.prototype.find": "^2.1.1", + "function.prototype.name": "^1.1.2", + "is-regex": "^1.1.0", + "object-is": "^1.1.2", + "object.assign": "^4.1.0", + "object.entries": "^1.1.2", + "prop-types": "^15.7.2", + "prop-types-exact": "^1.2.0", + "react-is": "^16.13.1" }, - "engines": { - "node": ">=6.9.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "peerDependencies": { + "react": "^0.14 || ^15.0.0 || ^16.0.0-alpha" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-display-values/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-normalize-positions": { - "version": "4.0.2", + "node_modules/docusaurus/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "license": "MIT", "dependencies": { - "cssnano-util-get-arguments": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "engines": { - "node": ">=6.9.0" + "sprintf-js": "~1.0.2" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-positions/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-normalize-repeat-style": { - "version": "4.0.2", + "node_modules/docusaurus/node_modules/autoprefixer": { + "version": "9.8.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", "license": "MIT", "dependencies": { - "cssnano-util-get-arguments": "^4.0.0", - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" }, - "engines": { - "node": ">=6.9.0" + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-repeat-style/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" + "node_modules/docusaurus/node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "license": "MIT", + "engines": { + "node": "*" + } }, - "node_modules/docusaurus/node_modules/postcss-normalize-string": { - "version": "4.0.2", + "node_modules/docusaurus/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "license": "MIT", "dependencies": { - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "engines": { - "node": ">=6.9.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-string/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-normalize-timing-functions": { - "version": "4.0.2", + "node_modules/docusaurus/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "license": "MIT", "dependencies": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" }, "engines": { - "node": ">=6.9.0" + "node": ">=0.10.0" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-timing-functions/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-normalize-unicode": { - "version": "4.0.1", + "node_modules/docusaurus/node_modules/browserslist": { + "version": "4.14.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz", + "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==", "license": "MIT", "dependencies": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "caniuse-lite": "^1.0.30001125", + "electron-to-chromium": "^1.3.564", + "escalade": "^3.0.2", + "node-releases": "^1.1.61" + }, + "bin": { + "browserslist": "cli.js" }, "engines": { - "node": ">=6.9.0" + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-unicode/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-normalize-url": { - "version": "4.0.1", + "node_modules/docusaurus/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", "license": "MIT", "dependencies": { - "is-absolute-url": "^2.0.0", - "normalize-url": "^3.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=6.9.0" + "node": ">=8" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-url/node_modules/postcss-value-parser": { - "version": "3.3.1", + "node_modules/docusaurus/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/docusaurus/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "license": "MIT" }, - "node_modules/docusaurus/node_modules/postcss-normalize-whitespace": { - "version": "4.0.2", + "node_modules/docusaurus/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/docusaurus/node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", "license": "MIT", "dependencies": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" }, "engines": { - "node": ">=6.9.0" + "node": ">=4" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-whitespace/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-ordered-values": { - "version": "4.1.2", + "node_modules/docusaurus/node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "license": "MIT", "dependencies": { - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=6.9.0" + "node": ">= 8" } }, - "node_modules/docusaurus/node_modules/postcss-ordered-values/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-reduce-initial": { - "version": "4.0.3", + "node_modules/docusaurus/node_modules/css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", "license": "MIT", "dependencies": { - "browserslist": "^4.0.0", - "caniuse-api": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0" + "postcss": "^7.0.1", + "timsort": "^0.3.0" }, "engines": { - "node": ">=6.9.0" + "node": ">4" } }, - "node_modules/docusaurus/node_modules/postcss-reduce-transforms": { - "version": "4.0.2", + "node_modules/docusaurus/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/docusaurus/node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", "license": "MIT", "dependencies": { - "cssnano-util-get-match": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "mdn-data": "2.0.4", + "source-map": "^0.6.1" }, "engines": { - "node": ">=6.9.0" + "node": ">=8.0.0" } }, - "node_modules/docusaurus/node_modules/postcss-reduce-transforms/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" + "node_modules/docusaurus/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } }, - "node_modules/docusaurus/node_modules/postcss-svgo": { - "version": "4.0.3", + "node_modules/docusaurus/node_modules/cssnano": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.11.tgz", + "integrity": "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==", "license": "MIT", "dependencies": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "svgo": "^1.0.0" + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/postcss-svgo/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-unique-selectors": { - "version": "4.0.1", + "node_modules/docusaurus/node_modules/cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", + "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", "license": "MIT", "dependencies": { - "alphanum-sort": "^1.0.0", + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", "postcss": "^7.0.0", - "uniqs": "^2.0.0" + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/prompts": { - "version": "2.4.0", + "node_modules/docusaurus/node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", "license": "MIT", "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" + "css-tree": "^1.1.2" }, "engines": { - "node": ">= 6" + "node": ">=8.0.0" } }, - "node_modules/docusaurus/node_modules/react": { - "version": "16.14.0", + "node_modules/docusaurus/node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", "license": "MIT", "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2" + "mdn-data": "2.0.14", + "source-map": "^0.6.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=8.0.0" } }, - "node_modules/docusaurus/node_modules/react-dev-utils": { - "version": "11.0.4", + "node_modules/docusaurus/node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "license": "CC0-1.0" + }, + "node_modules/docusaurus/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", "license": "MIT", "dependencies": { - "@babel/code-frame": "7.10.4", - "address": "1.1.2", - "browserslist": "4.14.2", - "chalk": "2.4.2", - "cross-spawn": "7.0.3", - "detect-port-alt": "1.1.6", - "escape-string-regexp": "2.0.0", - "filesize": "6.1.0", - "find-up": "4.1.0", - "fork-ts-checker-webpack-plugin": "4.1.6", - "global-modules": "2.0.0", - "globby": "11.0.1", - "gzip-size": "5.1.1", - "immer": "8.0.1", - "is-root": "2.1.0", - "loader-utils": "2.0.0", - "open": "^7.0.2", - "pkg-up": "3.1.0", - "prompts": "2.4.0", - "react-error-overlay": "^6.0.9", - "recursive-readdir": "2.2.2", - "shell-quote": "1.7.2", - "strip-ansi": "6.0.0", - "text-table": "0.2.0" - }, - "engines": { - "node": ">=10" + "domelementtype": "^2.0.1", + "entities": "^2.0.0" } }, - "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/ansi-styles": { - "version": "3.2.1", - "license": "MIT", + "node_modules/docusaurus/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "license": "BSD-2-Clause", "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" + "dom-serializer": "0", + "domelementtype": "1" } }, - "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/chalk": { - "version": "2.4.2", + "node_modules/docusaurus/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "license": "BSD-2-Clause" + }, + "node_modules/docusaurus/node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", "license": "MIT", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "is-obj": "^2.0.0" }, "engines": { - "node": ">=4" - } - }, - "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/chalk/node_modules/escape-string-regexp": { - "version": "1.0.5", - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/color-convert": { - "version": "1.9.3", - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" + "node": ">=8" } }, - "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/color-name": { - "version": "1.1.3", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/has-flag": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" + "node_modules/docusaurus/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/supports-color": { - "version": "5.5.0", + "node_modules/docusaurus/node_modules/enzyme-adapter-react-16": { + "version": "1.15.8", + "resolved": "https://registry.npmjs.org/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.8.tgz", + "integrity": "sha512-uYGC31eGZBp5nGsr4nKhZKvxGQjyHGjS06BJsUlWgE29/hvnpgCsT1BJvnnyny7N3GIIVyxZ4O9GChr6hy2WQA==", "license": "MIT", "dependencies": { - "has-flag": "^3.0.0" + "enzyme-adapter-utils": "^1.14.2", + "enzyme-shallow-equal": "^1.0.7", + "hasown": "^2.0.0", + "object.assign": "^4.1.5", + "object.values": "^1.1.7", + "prop-types": "^15.8.1", + "react-is": "^16.13.1", + "react-test-renderer": "^16.0.0-0", + "semver": "^5.7.2" }, - "engines": { - "node": ">=4" - } - }, - "node_modules/docusaurus/node_modules/react-dom": { - "version": "16.14.0", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.19.1" + "funding": { + "url": "https://github.com/sponsors/ljharb" }, "peerDependencies": { - "react": "^16.14.0" + "enzyme": "^3.0.0", + "react": "^16.0.0-0", + "react-dom": "^16.0.0-0" } }, - "node_modules/docusaurus/node_modules/react-test-renderer": { - "version": "16.14.0", + "node_modules/docusaurus/node_modules/enzyme-adapter-utils": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/enzyme-adapter-utils/-/enzyme-adapter-utils-1.14.2.tgz", + "integrity": "sha512-1ZC++RlsYRaiOWE5NRaF5OgsMt7F5rn/VuaJIgc7eW/fmgg8eS1/Ut7EugSPPi7VMdWMLcymRnMF+mJUJ4B8KA==", "license": "MIT", "dependencies": { - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "react-is": "^16.8.6", - "scheduler": "^0.19.1" + "airbnb-prop-types": "^2.16.0", + "function.prototype.name": "^1.1.6", + "hasown": "^2.0.0", + "object.assign": "^4.1.5", + "object.fromentries": "^2.0.7", + "prop-types": "^15.8.1", + "semver": "^6.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" }, "peerDependencies": { - "react": "^16.14.0" - } - }, - "node_modules/docusaurus/node_modules/resolve-from": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/docusaurus/node_modules/scheduler": { - "version": "0.19.1", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" + "react": "0.13.x || 0.14.x || ^15.0.0-0 || ^16.0.0-0" } }, - "node_modules/docusaurus/node_modules/semver": { - "version": "5.7.1", + "node_modules/docusaurus/node_modules/enzyme-adapter-utils/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { - "semver": "bin/semver" - } - }, - "node_modules/docusaurus/node_modules/shell-quote": { - "version": "1.7.2", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/sitemap": { - "version": "3.2.2", - "license": "MIT", - "dependencies": { - "lodash.chunk": "^4.2.0", - "lodash.padstart": "^4.6.1", - "whatwg-url": "^7.0.0", - "xmlbuilder": "^13.0.0" - }, - "engines": { - "node": ">=6.0.0", - "npm": ">=4.0.0" - } - }, - "node_modules/docusaurus/node_modules/source-map": { - "version": "0.6.1", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" + "semver": "bin/semver.js" } }, - "node_modules/docusaurus/node_modules/strip-ansi": { - "version": "6.0.0", + "node_modules/docusaurus/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.0" - }, "engines": { "node": ">=8" } }, - "node_modules/docusaurus/node_modules/stylehacks": { - "version": "4.0.3", - "license": "MIT", - "dependencies": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/docusaurus/node_modules/stylehacks/node_modules/postcss-selector-parser": { - "version": "3.1.2", - "license": "MIT", - "dependencies": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - }, + "node_modules/docusaurus/node_modules/filesize": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz", + "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==", + "license": "BSD-3-Clause", "engines": { - "node": ">=8" + "node": ">= 0.4.0" } }, - "node_modules/docusaurus/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/docusaurus/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/docusaurus/node_modules/svgo": { - "version": "1.3.2", + "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz", + "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", "license": "MIT", "dependencies": { + "@babel/code-frame": "^7.5.5", "chalk": "^2.4.1", - "coa": "^2.0.2", - "css-select": "^2.0.0", - "css-select-base-adapter": "^0.1.1", - "css-tree": "1.0.0-alpha.37", - "csso": "^4.0.2", - "js-yaml": "^3.13.1", - "mkdirp": "~0.5.1", - "object.values": "^1.1.0", - "sax": "~1.2.4", - "stable": "^0.1.8", - "unquote": "~1.1.1", - "util.promisify": "~1.0.0" - }, - "bin": { - "svgo": "bin/svgo" + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" }, "engines": { - "node": ">=4.0.0" + "node": ">=6.11.5", + "yarn": ">=1.0.0" } }, - "node_modules/docusaurus/node_modules/svgo/node_modules/ansi-styles": { + "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "license": "MIT", "dependencies": { "color-convert": "^1.9.0" @@ -11892,8 +14672,10 @@ "node": ">=4" } }, - "node_modules/docusaurus/node_modules/svgo/node_modules/chalk": { + "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", @@ -11904,33 +14686,19 @@ "node": ">=4" } }, - "node_modules/docusaurus/node_modules/svgo/node_modules/color-convert": { - "version": "1.9.3", - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/docusaurus/node_modules/svgo/node_modules/color-name": { - "version": "1.1.3", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/svgo/node_modules/escape-string-regexp": { + "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/escape-string-regexp": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "license": "MIT", "engines": { "node": ">=0.8.0" } }, - "node_modules/docusaurus/node_modules/svgo/node_modules/has-flag": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/docusaurus/node_modules/svgo/node_modules/supports-color": { + "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "license": "MIT", "dependencies": { "has-flag": "^3.0.0" @@ -11939,1915 +14707,2152 @@ "node": ">=4" } }, - "node_modules/docusaurus/node_modules/tapable": { - "version": "1.1.3", + "node_modules/docusaurus/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/docusaurus/node_modules/to-regex-range": { - "version": "2.1.1", + "node_modules/docusaurus/node_modules/globby": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", "license": "MIT", "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/docusaurus/node_modules/tr46": { - "version": "1.0.1", + "node_modules/docusaurus/node_modules/gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", "license": "MIT", "dependencies": { - "punycode": "^2.1.0" + "duplexer": "^0.1.1", + "pify": "^4.0.1" + }, + "engines": { + "node": ">=6" } }, - "node_modules/docusaurus/node_modules/webidl-conversions": { - "version": "4.0.2", - "license": "BSD-2-Clause" - }, - "node_modules/docusaurus/node_modules/whatwg-url": { - "version": "7.1.0", + "node_modules/docusaurus/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "license": "MIT", - "dependencies": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" + "engines": { + "node": ">=4" } }, - "node_modules/dom-converter": { - "version": "0.2.0", + "node_modules/docusaurus/node_modules/immer": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz", + "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==", "license": "MIT", - "dependencies": { - "utila": "~0.4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" } }, - "node_modules/dom-serializer": { - "version": "1.3.2", + "node_modules/docusaurus/node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", "license": "MIT", "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/domain-browser": { - "version": "4.23.0", - "license": "Artistic-2.0", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://bevry.me/fund" + "node": ">=4" } }, - "node_modules/domelementtype": { - "version": "2.3.0", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "BSD-2-Clause" + "node_modules/docusaurus/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "license": "MIT" }, - "node_modules/domhandler": { - "version": "4.3.1", - "license": "BSD-2-Clause", + "node_modules/docusaurus/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", "dependencies": { - "domelementtype": "^2.2.0" + "is-plain-object": "^2.0.4" }, "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/domify": { - "version": "1.4.2", + "node_modules/docusaurus/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/dompurify": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.2.2.tgz", - "integrity": "sha512-YMM+erhdZ2nkZ4fTNRTSI94mb7VG7uVF5vj5Zde7tImgnhZE3R6YW/IACGIHb2ux+QkEXMhe591N+5jWOmL4Zw==", - "optionalDependencies": { - "@types/trusted-types": "^2.0.7" - } - }, - "node_modules/domutils": { - "version": "2.8.0", - "license": "BSD-2-Clause", "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "kind-of": "^3.0.2" }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/dot-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/dot-prop": { - "version": "5.3.0", + "node_modules/docusaurus/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "license": "MIT", "dependencies": { - "is-obj": "^2.0.0" + "is-buffer": "^1.1.5" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/dot-prop/node_modules/is-obj": { + "node_modules/docusaurus/node_modules/is-obj": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/download": { - "version": "6.2.5", + "node_modules/docusaurus/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "license": "MIT", "dependencies": { - "caw": "^2.0.0", - "content-disposition": "^0.5.2", - "decompress": "^4.0.0", - "ext-name": "^5.0.0", - "file-type": "5.2.0", - "filenamify": "^2.0.0", - "get-stream": "^3.0.0", - "got": "^7.0.0", - "make-dir": "^1.0.0", - "p-event": "^1.0.0", - "pify": "^3.0.0" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "engines": { - "node": ">=4" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/download/node_modules/file-type": { - "version": "5.2.0", + "node_modules/docusaurus/node_modules/loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, "engines": { - "node": ">=4" + "node": ">=8.9.0" } }, - "node_modules/download/node_modules/get-stream": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } + "node_modules/docusaurus/node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "license": "CC0-1.0" }, - "node_modules/download/node_modules/got": { - "version": "7.1.0", + "node_modules/docusaurus/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "license": "MIT", "dependencies": { - "decompress-response": "^3.2.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "is-plain-obj": "^1.1.0", - "is-retry-allowed": "^1.0.0", - "is-stream": "^1.0.0", - "isurl": "^1.0.0-alpha5", - "lowercase-keys": "^1.0.0", - "p-cancelable": "^0.3.0", - "p-timeout": "^1.1.1", - "safe-buffer": "^5.0.1", - "timed-out": "^4.0.0", - "url-parse-lax": "^1.0.0", - "url-to-options": "^1.0.1" + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" }, - "engines": { - "node": ">=4" - } - }, - "node_modules/download/node_modules/is-plain-obj": { - "version": "1.1.0", - "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/download/node_modules/is-stream": { - "version": "1.1.0", + "node_modules/docusaurus/node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/download/node_modules/make-dir": { - "version": "1.3.0", - "license": "MIT", + "node_modules/docusaurus/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", "dependencies": { - "pify": "^3.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=4" + "node": "*" } }, - "node_modules/download/node_modules/p-cancelable": { - "version": "0.3.0", - "license": "MIT", - "engines": { - "node": ">=4" - } + "node_modules/docusaurus/node_modules/node-releases": { + "version": "1.1.77", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz", + "integrity": "sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==", + "license": "MIT" }, - "node_modules/download/node_modules/pify": { - "version": "3.0.0", + "node_modules/docusaurus/node_modules/normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", "license": "MIT", "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/download/node_modules/prepend-http": { - "version": "1.0.4", - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "node_modules/docusaurus/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "~1.0.0" } }, - "node_modules/download/node_modules/url-parse-lax": { - "version": "1.0.0", + "node_modules/docusaurus/node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", "license": "MIT", "dependencies": { - "prepend-http": "^1.0.1" + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/downloadjs": { - "version": "1.4.7", - "license": "MIT" - }, - "node_modules/duplexer": { - "version": "0.1.2", - "license": "MIT" - }, - "node_modules/duplexer2": { - "version": "0.1.4", - "license": "BSD-3-Clause", + "node_modules/docusaurus/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "license": "MIT", "dependencies": { - "readable-stream": "^2.0.2" + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" } }, - "node_modules/duplexer2/node_modules/isarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/duplexer2/node_modules/readable-stream": { - "version": "2.3.8", + "node_modules/docusaurus/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "engines": { + "node": ">=8" } }, - "node_modules/duplexer2/node_modules/string_decoder": { - "version": "1.1.1", + "node_modules/docusaurus/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/docusaurus/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "license": "MIT", "dependencies": { - "safe-buffer": "~5.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" } }, - "node_modules/duplexer3": { - "version": "0.1.4", - "license": "BSD-3-Clause" - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "license": "MIT" - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", + "node_modules/docusaurus/node_modules/postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", "license": "MIT", "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" } }, - "node_modules/ee-first": { - "version": "1.1.1", - "license": "MIT" - }, - "node_modules/electron-to-chromium": { - "version": "1.5.68", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.68.tgz", - "integrity": "sha512-FgMdJlma0OzUYlbrtZ4AeXjKxKPk6KT8WOP8BjcqxWtlg8qyJQjRzPJzUtUn5GBg1oQ26hFs7HOOHJMYiJRnvQ==" - }, - "node_modules/elkjs": { - "version": "0.8.2", - "license": "EPL-2.0" - }, - "node_modules/elliptic": { - "version": "6.5.4", + "node_modules/docusaurus/node_modules/postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", "license": "MIT", "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.0", + "node_modules/docusaurus/node_modules/postcss-colormin/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", "license": "MIT" }, - "node_modules/emittery": { - "version": "0.13.1", - "dev": true, + "node_modules/docusaurus/node_modules/postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", "license": "MIT", - "engines": { - "node": ">=12" + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/emoji-regex": { - "version": "8.0.0", + "node_modules/docusaurus/node_modules/postcss-convert-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", "license": "MIT" }, - "node_modules/emojis-list": { - "version": "3.0.0", + "node_modules/docusaurus/node_modules/postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, "engines": { - "node": ">= 4" + "node": ">=6.9.0" } }, - "node_modules/emoticon": { - "version": "3.2.0", + "node_modules/docusaurus/node_modules/postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/encodeurl": { - "version": "1.0.2", + "node_modules/docusaurus/node_modules/postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, "engines": { - "node": ">= 0.8" + "node": ">=6.9.0" } }, - "node_modules/end-of-stream": { - "version": "1.4.4", + "node_modules/docusaurus/node_modules/postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", "license": "MIT", "dependencies": { - "once": "^1.4.0" + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/enhanced-resolve": { - "version": "5.10.0", + "node_modules/docusaurus/node_modules/postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", "license": "MIT", "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" }, "engines": { - "node": ">=10.13.0" + "node": ">=6.9.0" } }, - "node_modules/entities": { - "version": "2.2.0", - "license": "BSD-2-Clause", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } + "node_modules/docusaurus/node_modules/postcss-merge-longhand/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" }, - "node_modules/enzyme": { - "version": "3.11.0", + "node_modules/docusaurus/node_modules/postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", "license": "MIT", "dependencies": { - "array.prototype.flat": "^1.2.3", - "cheerio": "^1.0.0-rc.3", - "enzyme-shallow-equal": "^1.0.1", - "function.prototype.name": "^1.1.2", - "has": "^1.0.3", - "html-element-map": "^1.2.0", - "is-boolean-object": "^1.0.1", - "is-callable": "^1.1.5", - "is-number-object": "^1.0.4", - "is-regex": "^1.0.5", - "is-string": "^1.0.5", - "is-subset": "^0.1.1", - "lodash.escape": "^4.0.1", - "lodash.isequal": "^4.5.0", - "object-inspect": "^1.7.0", - "object-is": "^1.0.2", - "object.assign": "^4.1.0", - "object.entries": "^1.1.1", - "object.values": "^1.1.1", - "raf": "^3.4.1", - "rst-selector-parser": "^2.2.3", - "string.prototype.trim": "^1.2.1" + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/enzyme-shallow-equal": { - "version": "1.0.5", + "node_modules/docusaurus/node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", "license": "MIT", "dependencies": { - "has": "^1.0.3", - "object-is": "^1.1.5" + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/error": { - "version": "7.2.1", - "dependencies": { - "string-template": "~0.2.1" + "engines": { + "node": ">=8" } }, - "node_modules/error-ex": { - "version": "1.3.2", + "node_modules/docusaurus/node_modules/postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", "license": "MIT", "dependencies": { - "is-arrayish": "^0.2.1" + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/error-ex/node_modules/is-arrayish": { - "version": "0.2.1", + "node_modules/docusaurus/node_modules/postcss-minify-font-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", "license": "MIT" }, - "node_modules/es-abstract": { - "version": "1.21.2", + "node_modules/docusaurus/node_modules/postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", "license": "MIT", "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.0", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6.9.0" } }, - "node_modules/es-array-method-boxes-properly": { - "version": "1.0.0", + "node_modules/docusaurus/node_modules/postcss-minify-gradients/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", "license": "MIT" }, - "node_modules/es-module-lexer": { - "version": "0.9.3", + "node_modules/docusaurus/node_modules/postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "license": "MIT", + "dependencies": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/docusaurus/node_modules/postcss-minify-params/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", "license": "MIT" }, - "node_modules/es-set-tostringtag": { - "version": "2.0.1", + "node_modules/docusaurus/node_modules/postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", "license": "MIT", "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=6.9.0" } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", + "node_modules/docusaurus/node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", "license": "MIT", "dependencies": { - "has": "^1.0.3" + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", + "node_modules/docusaurus/node_modules/postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", "license": "MIT", "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "postcss": "^7.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=6.9.0" + } + }, + "node_modules/docusaurus/node_modules/postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/es6-promise": { + "node_modules/docusaurus/node_modules/postcss-normalize-display-values/node_modules/postcss-value-parser": { "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", "license": "MIT" }, - "node_modules/escalade": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "node_modules/docusaurus/node_modules/postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, "engines": { - "node": ">=6" + "node": ">=6.9.0" } }, - "node_modules/escape-goat": { - "version": "2.1.1", + "node_modules/docusaurus/node_modules/postcss-normalize-positions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", "license": "MIT", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, "engines": { - "node": ">=8" + "node": ">=6.9.0" } }, - "node_modules/escape-html": { - "version": "1.0.3", + "node_modules/docusaurus/node_modules/postcss-normalize-repeat-style/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", "license": "MIT" }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", + "node_modules/docusaurus/node_modules/postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", "license": "MIT", + "dependencies": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, "engines": { - "node": ">=0.8.0" + "node": ">=6.9.0" } }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "license": "BSD-2-Clause", + "node_modules/docusaurus/node_modules/postcss-normalize-string/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "license": "MIT", "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "engines": { - "node": ">=8.0.0" + "node": ">=6.9.0" } }, - "node_modules/esprima": { + "node_modules/docusaurus/node_modules/postcss-normalize-timing-functions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-normalize-unicode": { "version": "4.0.1", - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=6.9.0" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "license": "BSD-2-Clause", + "node_modules/docusaurus/node_modules/postcss-normalize-unicode/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "license": "MIT", "dependencies": { - "estraverse": "^5.2.0" + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "engines": { - "node": ">=4.0" + "node": ">=6.9.0" } }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } + "node_modules/docusaurus/node_modules/postcss-normalize-url/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" }, - "node_modules/estraverse": { - "version": "4.3.0", - "license": "BSD-2-Clause", + "node_modules/docusaurus/node_modules/postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, "engines": { - "node": ">=4.0" + "node": ">=6.9.0" } }, - "node_modules/esutils": { - "version": "2.0.3", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.10.0" - } + "node_modules/docusaurus/node_modules/postcss-normalize-whitespace/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" }, - "node_modules/eta": { - "version": "2.0.0", + "node_modules/docusaurus/node_modules/postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", "license": "MIT", - "engines": { - "node": ">=6.0.0" + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, - "funding": { - "url": "https://github.com/eta-dev/eta?sponsor=1" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/etag": { - "version": "1.8.1", + "node_modules/docusaurus/node_modules/postcss-ordered-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, "engines": { - "node": ">= 0.6" + "node": ">=6.9.0" } }, - "node_modules/eval": { - "version": "0.1.8", + "node_modules/docusaurus/node_modules/postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "license": "MIT", "dependencies": { - "@types/node": "*", - "require-like": ">= 0.1.1" + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">=6.9.0" } }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "license": "MIT", + "node_modules/docusaurus/node_modules/postcss-reduce-transforms/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz", + "integrity": "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, "engines": { - "node": ">=6" + "node": ">=6.9.0" } }, - "node_modules/eventemitter3": { - "version": "4.0.7", + "node_modules/docusaurus/node_modules/postcss-svgo/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", "license": "MIT" }, - "node_modules/events": { - "version": "3.3.0", + "node_modules/docusaurus/node_modules/postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", "license": "MIT", + "dependencies": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, "engines": { - "node": ">=0.8.x" + "node": ">=6.9.0" } }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", + "node_modules/docusaurus/node_modules/prompts": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", "license": "MIT", "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/exec-buffer": { - "version": "3.2.0", + "node_modules/docusaurus/node_modules/react": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", + "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", "license": "MIT", "dependencies": { - "execa": "^0.7.0", - "p-finally": "^1.0.0", - "pify": "^3.0.0", - "rimraf": "^2.5.4", - "tempfile": "^2.0.0" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2" }, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/exec-buffer/node_modules/cross-spawn": { - "version": "5.1.0", + "node_modules/docusaurus/node_modules/react-dev-utils": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.4.tgz", + "integrity": "sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==", "license": "MIT", "dependencies": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "@babel/code-frame": "7.10.4", + "address": "1.1.2", + "browserslist": "4.14.2", + "chalk": "2.4.2", + "cross-spawn": "7.0.3", + "detect-port-alt": "1.1.6", + "escape-string-regexp": "2.0.0", + "filesize": "6.1.0", + "find-up": "4.1.0", + "fork-ts-checker-webpack-plugin": "4.1.6", + "global-modules": "2.0.0", + "globby": "11.0.1", + "gzip-size": "5.1.1", + "immer": "8.0.1", + "is-root": "2.1.0", + "loader-utils": "2.0.0", + "open": "^7.0.2", + "pkg-up": "3.1.0", + "prompts": "2.4.0", + "react-error-overlay": "^6.0.9", + "recursive-readdir": "2.2.2", + "shell-quote": "1.7.2", + "strip-ansi": "6.0.0", + "text-table": "0.2.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/exec-buffer/node_modules/execa": { - "version": "0.7.0", + "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "license": "MIT", "dependencies": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "color-convert": "^1.9.0" }, "engines": { "node": ">=4" } }, - "node_modules/exec-buffer/node_modules/get-stream": { - "version": "3.0.0", + "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, "engines": { "node": ">=4" } }, - "node_modules/exec-buffer/node_modules/is-stream": { - "version": "1.1.0", + "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/chalk/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=0.8.0" } }, - "node_modules/exec-buffer/node_modules/lru-cache": { - "version": "4.1.5", - "license": "ISC", + "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/exec-buffer/node_modules/npm-run-path": { - "version": "2.0.2", + "node_modules/docusaurus/node_modules/react-dom": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz", + "integrity": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==", "license": "MIT", "dependencies": { - "path-key": "^2.0.0" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "scheduler": "^0.19.1" }, - "engines": { - "node": ">=4" + "peerDependencies": { + "react": "^16.14.0" } }, - "node_modules/exec-buffer/node_modules/path-key": { - "version": "2.0.1", + "node_modules/docusaurus/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/react-test-renderer": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.14.0.tgz", + "integrity": "sha512-L8yPjqPE5CZO6rKsKXRO/rVPiaCOy0tQQJbC+UjPNlobl5mad59lvPjwFsQHTvL03caVDIVr9x9/OSgDe6I5Eg==", "license": "MIT", - "engines": { - "node": ">=4" + "dependencies": { + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "react-is": "^16.8.6", + "scheduler": "^0.19.1" + }, + "peerDependencies": { + "react": "^16.14.0" } }, - "node_modules/exec-buffer/node_modules/pify": { - "version": "3.0.0", + "node_modules/docusaurus/node_modules/recursive-readdir": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", + "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", "license": "MIT", + "dependencies": { + "minimatch": "3.0.4" + }, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/exec-buffer/node_modules/rimraf": { - "version": "2.7.1", + "node_modules/docusaurus/node_modules/recursive-readdir/node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "license": "ISC", "dependencies": { - "glob": "^7.1.3" + "brace-expansion": "^1.1.7" }, - "bin": { - "rimraf": "bin.js" + "engines": { + "node": "*" } }, - "node_modules/exec-buffer/node_modules/shebang-command": { - "version": "1.2.0", + "node_modules/docusaurus/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", "license": "MIT", - "dependencies": { - "shebang-regex": "^1.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/exec-buffer/node_modules/shebang-regex": { - "version": "1.0.0", + "node_modules/docusaurus/node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "license": "ISC" + }, + "node_modules/docusaurus/node_modules/scheduler": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", + "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", "license": "MIT", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" } }, - "node_modules/exec-buffer/node_modules/which": { - "version": "1.3.1", + "node_modules/docusaurus/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, "bin": { - "which": "bin/which" + "semver": "bin/semver" } }, - "node_modules/exec-buffer/node_modules/yallist": { - "version": "2.1.2", - "license": "ISC" - }, - "node_modules/execa": { - "version": "5.1.1", + "node_modules/docusaurus/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "shebang-regex": "^3.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": ">=8" } }, - "node_modules/execa/node_modules/get-stream": { - "version": "6.0.1", + "node_modules/docusaurus/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/executable": { - "version": "4.1.1", + "node_modules/docusaurus/node_modules/shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/sitemap": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-3.2.2.tgz", + "integrity": "sha512-TModL/WU4m2q/mQcrDgNANn0P4LwprM9MMvG4hu5zP4c6IIKs2YLTu6nXXnNr8ODW/WFtxKggiJ1EGn2W0GNmg==", "license": "MIT", "dependencies": { - "pify": "^2.2.0" + "lodash.chunk": "^4.2.0", + "lodash.padstart": "^4.6.1", + "whatwg-url": "^7.0.0", + "xmlbuilder": "^13.0.0" }, "engines": { - "node": ">=4" + "node": ">=6.0.0", + "npm": ">=4.0.0" } }, - "node_modules/executable/node_modules/pify": { - "version": "2.3.0", - "license": "MIT", + "node_modules/docusaurus/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, - "node_modules/exenv": { - "version": "1.2.2", - "license": "BSD-3-Clause" - }, - "node_modules/exit": { - "version": "0.1.2", - "dev": true, + "node_modules/docusaurus/node_modules/strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.0" + }, "engines": { - "node": ">= 0.8.0" + "node": ">=8" } }, - "node_modules/expand-brackets": { - "version": "2.1.4", + "node_modules/docusaurus/node_modules/stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", "license": "MIT", "dependencies": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" + "node": ">=6.9.0" } }, - "node_modules/expand-brackets/node_modules/define-property": { - "version": "0.2.5", + "node_modules/docusaurus/node_modules/stylehacks/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", "license": "MIT", "dependencies": { - "is-descriptor": "^0.1.0" + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { - "version": "0.1.6", + "node_modules/docusaurus/node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", "license": "MIT", "dependencies": { - "kind-of": "^3.0.2" + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" }, "engines": { - "node": ">=0.10.0" + "node": ">=4.0.0" } }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", + "node_modules/docusaurus/node_modules/svgo/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "license": "MIT", "dependencies": { - "is-buffer": "^1.1.5" + "color-convert": "^1.9.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/expand-brackets/node_modules/is-buffer": { - "version": "1.1.6", - "license": "MIT" - }, - "node_modules/expand-brackets/node_modules/is-data-descriptor": { - "version": "0.1.4", + "node_modules/docusaurus/node_modules/svgo/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "license": "MIT", "dependencies": { - "kind-of": "^3.0.2" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", + "node_modules/docusaurus/node_modules/svgo/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, "engines": { - "node": ">=0.10.0" + "node": ">=0.8.0" } }, - "node_modules/expand-brackets/node_modules/is-descriptor": { - "version": "0.1.6", + "node_modules/docusaurus/node_modules/svgo/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "license": "MIT", "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/expand-brackets/node_modules/kind-of": { - "version": "5.1.0", + "node_modules/docusaurus/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/expand-brackets/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/expand-range": { - "version": "1.8.2", + "node_modules/docusaurus/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", "license": "MIT", "dependencies": { - "fill-range": "^2.1.0" + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/expand-range/node_modules/fill-range": { - "version": "2.2.4", + "node_modules/docusaurus/node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", "license": "MIT", "dependencies": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" - }, - "engines": { - "node": ">=0.10.0" + "punycode": "^2.1.0" } }, - "node_modules/expand-range/node_modules/is-buffer": { - "version": "1.1.6", - "license": "MIT" + "node_modules/docusaurus/node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "license": "BSD-2-Clause" }, - "node_modules/expand-range/node_modules/is-number": { - "version": "2.1.0", + "node_modules/docusaurus/node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", "license": "MIT", "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" } }, - "node_modules/expand-range/node_modules/isarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/expand-range/node_modules/isobject": { - "version": "2.1.0", - "license": "MIT", + "node_modules/docusaurus/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", "dependencies": { - "isarray": "1.0.0" + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" }, "engines": { - "node": ">=0.10.0" + "node": ">= 8" } }, - "node_modules/expand-range/node_modules/kind-of": { - "version": "3.2.2", + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", "license": "MIT", "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" + "utila": "~0.4" } }, - "node_modules/expect": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", - "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", - "dev": true, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "license": "MIT", "dependencies": { - "@jest/expect-utils": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "node_modules/express": { - "version": "4.18.1", - "license": "MIT", - "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.0", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.10.3", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, + "node_modules/domain-browser": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-4.23.0.tgz", + "integrity": "sha512-ArzcM/II1wCCujdCNyQjXrAFwS4mrLh4C7DZWlaI8mdh7h3BfKdNd3bKXITfl2PT9FtfQqaGvhi1vPRQPimjGA==", + "license": "Artistic-2.0", "engines": { - "node": ">= 0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://bevry.me/fund" } }, - "node_modules/express/node_modules/array-flatten": { - "version": "1.1.1", - "license": "MIT" + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" }, - "node_modules/express/node_modules/content-disposition": { - "version": "0.5.4", - "license": "MIT", + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "license": "BSD-2-Clause", "dependencies": { - "safe-buffer": "5.2.1" + "domelementtype": "^2.3.0" }, "engines": { - "node": ">= 0.6" + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", + "node_modules/domify": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/domify/-/domify-1.4.2.tgz", + "integrity": "sha512-m4yreHcUWHBncGVV7U+yQzc12vIlq0jMrtHZ5mW6dQMiL/7skSYNVX9wqKwOtyO9SGCgevrAFEgOCAHmamHTUA==", "license": "MIT", - "dependencies": { - "ms": "2.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/express/node_modules/path-to-regexp": { - "version": "0.1.7", - "license": "MIT" - }, - "node_modules/express/node_modules/range-parser": { - "version": "1.2.1", - "license": "MIT", - "engines": { - "node": ">= 0.6" + "node_modules/dompurify": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.2.3.tgz", + "integrity": "sha512-U1U5Hzc2MO0oW3DF+G9qYN0aT7atAou4AgI0XjWz061nyBPbdxkfdhfy5uMgGn6+oLFCfn44ZGbdDqCzVmlOWA==", + "license": "(MPL-2.0 OR Apache-2.0)", + "optionalDependencies": { + "@types/trusted-types": "^2.0.7" } }, - "node_modules/express/node_modules/safe-buffer": { - "version": "5.2.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" + "node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } }, - "node_modules/ext-list": { - "version": "2.2.2", + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "license": "MIT", "dependencies": { - "mime-db": "^1.28.0" - }, - "engines": { - "node": ">=0.10.0" + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "node_modules/ext-name": { - "version": "5.0.0", + "node_modules/dot-prop": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", + "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", "license": "MIT", "dependencies": { - "ext-list": "^2.0.0", - "sort-keys-length": "^1.0.0" + "is-obj": "^2.0.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/extend": { - "version": "3.0.2", - "license": "MIT" + "node_modules/dot-prop/node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "node_modules/extend-shallow": { - "version": "2.0.1", + "node_modules/download": { + "version": "6.2.5", + "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz", + "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==", "license": "MIT", "dependencies": { - "is-extendable": "^0.1.0" + "caw": "^2.0.0", + "content-disposition": "^0.5.2", + "decompress": "^4.0.0", + "ext-name": "^5.0.0", + "file-type": "5.2.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^7.0.0", + "make-dir": "^1.0.0", + "p-event": "^1.0.0", + "pify": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/extglob": { - "version": "2.0.4", + "node_modules/download/node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", "license": "MIT", - "dependencies": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/extglob/node_modules/define-property": { - "version": "1.0.0", + "node_modules/download/node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", "license": "MIT", "dependencies": { - "is-descriptor": "^1.0.0" + "pify": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/extsprintf": { - "version": "1.3.0", - "engines": [ - "node >=0.6.0" - ], - "license": "MIT" + "node_modules/download/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", + "node_modules/downloadjs": { + "version": "1.4.7", + "resolved": "https://registry.npmjs.org/downloadjs/-/downloadjs-1.4.7.tgz", + "integrity": "sha512-LN1gO7+u9xjU5oEScGFKvXhYf7Y/empUIIEAGBs1LzUq/rg5duiDrkuH5A2lQGd5jfMOb9X9usDa2oVXwJ0U/Q==", "license": "MIT" }, - "node_modules/fast-folder-size": { - "version": "1.6.1", - "hasInstallScript": true, - "license": "ISC", - "dependencies": { - "unzipper": "^0.10.11" - }, - "bin": { - "fast-folder-size": "cli.js" - } - }, - "node_modules/fast-glob": { - "version": "3.2.11", + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", "license": "MIT", "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" }, "engines": { - "node": ">=8.6.0" + "node": ">= 0.4" } }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", "license": "MIT" }, - "node_modules/fast-safe-stringify": { - "version": "2.1.1", + "node_modules/duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", + "license": "BSD-3-Clause", + "dependencies": { + "readable-stream": "^2.0.2" + } + }, + "node_modules/duplexer3": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", + "license": "BSD-3-Clause" + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", "license": "MIT" }, - "node_modules/fast-url-parser": { - "version": "1.1.3", + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", "license": "MIT", "dependencies": { - "punycode": "^1.3.2" + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" } }, - "node_modules/fast-url-parser/node_modules/punycode": { - "version": "1.4.1", + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "license": "MIT" }, - "node_modules/fast-xml-parser": { - "version": "4.1.3", + "node_modules/electron-to-chromium": { + "version": "1.5.74", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.74.tgz", + "integrity": "sha512-ck3//9RC+6oss/1Bh9tiAVFy5vfSKbRHAFh7Z3/eTRkEqJeWgymloShB17Vg3Z4nmDNp35vAd1BZ6CMW4Wt6Iw==", + "license": "ISC" + }, + "node_modules/elliptic": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz", + "integrity": "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==", "license": "MIT", "dependencies": { - "strnum": "^1.0.5" - }, - "bin": { - "fxparser": "src/cli/cli.js" - }, - "funding": { - "type": "paypal", - "url": "https://paypal.me/naturalintelligence" + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" } }, - "node_modules/fastq": { - "version": "1.13.0", - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" - } + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz", + "integrity": "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==", + "license": "MIT" }, - "node_modules/faye-websocket": { - "version": "0.11.4", - "license": "Apache-2.0", - "dependencies": { - "websocket-driver": ">=0.5.1" - }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.8.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "bser": "2.1.1" - } + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/emojilib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz", + "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==", + "license": "MIT" }, - "node_modules/fbemitter": { + "node_modules/emojis-list": { "version": "3.0.0", - "license": "BSD-3-Clause", - "dependencies": { - "fbjs": "^3.0.0" + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "license": "MIT", + "engines": { + "node": ">= 4" } }, - "node_modules/fbjs": { - "version": "3.0.5", + "node_modules/emoticon": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/emoticon/-/emoticon-4.1.0.tgz", + "integrity": "sha512-VWZfnxqwNcc51hIy/sbOdEem6D+cVtpPzEEtVAFdaas30+1dgkyaOQ4sQ6Bp0tOMqWO1v+HQfYaoodOkdhK6SQ==", "license": "MIT", - "dependencies": { - "cross-fetch": "^3.1.5", - "fbjs-css-vars": "^1.0.0", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^1.0.35" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/fbjs-css-vars": { - "version": "1.0.2", - "license": "MIT" + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } }, - "node_modules/fd-slicer": { - "version": "1.1.0", + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "license": "MIT", "dependencies": { - "pend": "~1.2.0" + "once": "^1.4.0" } }, - "node_modules/feed": { - "version": "4.2.2", + "node_modules/enhanced-resolve": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", "license": "MIT", "dependencies": { - "xml-js": "^1.6.11" + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" }, "engines": { - "node": ">=0.4.0" + "node": ">=10.13.0" } }, - "node_modules/feelers": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/feelers/-/feelers-1.4.0.tgz", - "integrity": "sha512-CGa/7ILuqoqTaeYeoKsg/4tzu2es9sEEJTmSjdu0lousZBw4V9gcYhHYFNmbrSrKmbAVfOzj6/DsymGJWFIOeg==", - "dependencies": { - "@bpmn-io/cm-theme": "^0.1.0-alpha.2", - "@bpmn-io/feel-lint": "^1.2.0", - "@codemirror/autocomplete": "^6.10.1", - "@codemirror/commands": "^6.3.0", - "@codemirror/language": "^6.9.1", - "@codemirror/lint": "^6.4.2", - "@codemirror/state": "^6.3.0", - "@codemirror/view": "^6.21.3", - "@lezer/common": "^1.1.0", - "@lezer/highlight": "^1.1.6", - "@lezer/lr": "^1.3.13", - "@lezer/markdown": "^1.1.0", - "feelin": "^3.0.1", - "lezer-feel": "^1.2.4", - "min-dom": "^5.0.0" - }, - "engines": { - "node": "*" - } - }, - "node_modules/feelers/node_modules/domify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/domify/-/domify-2.0.0.tgz", - "integrity": "sha512-rmvrrmWQPD/X1A/nPBfIVg4r05792QdG9Z4Prk6oQG0F9zBMDkr0GKAdds1wjb2dq1rTz/ywc4ZxpZbgz0tttg==", + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", "engines": { - "node": ">=18" + "node": ">=0.12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/feelers/node_modules/min-dom": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/min-dom/-/min-dom-5.1.1.tgz", - "integrity": "sha512-GaKUlguMAofd3OJsB0OkP17i5kucKqErgVCJxPawO9l5NwIPnr28SAr99zzlzMCWWljISBYrnZVWdE2Q92YGFQ==", - "dependencies": { - "domify": "^2.0.0", - "min-dash": "^4.2.1" + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/feelin": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/feelin/-/feelin-3.2.0.tgz", - "integrity": "sha512-GFDbHsTYk7YXO1tyw1dOjb7IODeAZvNIosdGZThUwPx5XcD/XhO0hnPZXsIbAzSsIdrgGlTEEdby9fZ2gixysA==", + "node_modules/enzyme": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.11.0.tgz", + "integrity": "sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==", + "license": "MIT", "dependencies": { - "@lezer/lr": "^1.4.2", - "lezer-feel": "^1.4.0", - "luxon": "^3.5.0" + "array.prototype.flat": "^1.2.3", + "cheerio": "^1.0.0-rc.3", + "enzyme-shallow-equal": "^1.0.1", + "function.prototype.name": "^1.1.2", + "has": "^1.0.3", + "html-element-map": "^1.2.0", + "is-boolean-object": "^1.0.1", + "is-callable": "^1.1.5", + "is-number-object": "^1.0.4", + "is-regex": "^1.0.5", + "is-string": "^1.0.5", + "is-subset": "^0.1.1", + "lodash.escape": "^4.0.1", + "lodash.isequal": "^4.5.0", + "object-inspect": "^1.7.0", + "object-is": "^1.0.2", + "object.assign": "^4.1.0", + "object.entries": "^1.1.1", + "object.values": "^1.1.1", + "raf": "^3.4.1", + "rst-selector-parser": "^2.2.3", + "string.prototype.trim": "^1.2.1" }, - "engines": { - "node": "*" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fflate": { - "version": "0.4.8", - "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.4.8.tgz", - "integrity": "sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==" - }, - "node_modules/figures": { - "version": "1.7.0", + "node_modules/enzyme-shallow-equal": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.7.tgz", + "integrity": "sha512-/um0GFqUXnpM9SvKtje+9Tjoz3f1fpBC3eXRFrNs8kpYn69JljciYP7KZTqM/YQbUY9KUjvKB4jo/q+L6WGGvg==", "license": "MIT", "dependencies": { - "escape-string-regexp": "^1.0.5", - "object-assign": "^4.1.0" + "hasown": "^2.0.0", + "object-is": "^1.1.5" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/file-drops": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/file-drops/-/file-drops-0.5.0.tgz", - "integrity": "sha512-ZaENKwVySae4RhEGjh1gEE1wMnIIPG6XqtOwHNQYSl7RNwUHoRGVVspe+BrW7cUFseHNIit3Oy9Z/HPIEU5XWA==", + "node_modules/error": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/error/-/error-7.2.1.tgz", + "integrity": "sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==", "dependencies": { - "min-dom": "^4.0.3" + "string-template": "~0.2.1" } }, - "node_modules/file-loader": { - "version": "6.2.0", + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "license": "MIT", "dependencies": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.23.6", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.6.tgz", + "integrity": "sha512-Ifco6n3yj2tMZDWNLyloZrytt9lqqlwvS83P3HtaETR0NUOYnIULGGHpktqYGObGy+8wc1okO25p8TjemhImvA==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.7", + "get-intrinsic": "^1.2.6", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.2", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.2.1", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.1.0", + "math-intrinsics": "^1.0.0", + "object-inspect": "^1.13.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.3", + "safe-array-concat": "^1.1.3", + "safe-regex-test": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.3", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.16" }, "engines": { - "node": ">= 10.13.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/file-saver": { - "version": "2.0.5", + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", "license": "MIT" }, - "node_modules/file-type": { - "version": "10.11.0", + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "license": "MIT", "engines": { - "node": ">=6" + "node": ">= 0.4" } }, - "node_modules/filename-reserved-regex": { - "version": "2.0.0", + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "license": "MIT", "engines": { - "node": ">=4" + "node": ">= 0.4" } }, - "node_modules/filenamify": { - "version": "2.1.0", + "node_modules/es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", + "license": "MIT" + }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", "license": "MIT", "dependencies": { - "filename-reserved-regex": "^2.0.0", - "strip-outer": "^1.0.0", - "trim-repeated": "^1.0.0" + "es-errors": "^1.3.0" }, "engines": { - "node": ">=4" - } - }, - "node_modules/filesize": { - "version": "8.0.7", - "license": "BSD-3-Clause", - "engines": { - "node": ">= 0.4.0" + "node": ">= 0.4" } }, - "node_modules/fill-range": { - "version": "7.0.1", + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", "license": "MIT", "dependencies": { - "to-regex-range": "^5.0.1" + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" }, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/filter-obj": { - "version": "2.0.2", + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", "license": "MIT", - "engines": { - "node": ">=8" + "dependencies": { + "hasown": "^2.0.0" } }, - "node_modules/finalhandler": { - "version": "1.2.0", + "node_modules/es-to-primitive": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", "license": "MIT", "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" }, "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", + "node_modules/es6-promise": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", + "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==", "license": "MIT" }, - "node_modules/find-cache-dir": { - "version": "3.3.2", + "node_modules/esast-util-from-estree": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/esast-util-from-estree/-/esast-util-from-estree-2.0.0.tgz", + "integrity": "sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==", "license": "MIT", "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" + "@types/estree-jsx": "^1.0.0", + "devlop": "^1.0.0", + "estree-util-visit": "^2.0.0", + "unist-util-position-from-estree": "^2.0.0" }, "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/find-up": { - "version": "4.1.0", + "node_modules/esast-util-from-js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/esast-util-from-js/-/esast-util-from-js-2.0.1.tgz", + "integrity": "sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==", "license": "MIT", "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "@types/estree-jsx": "^1.0.0", + "acorn": "^8.0.0", + "esast-util-from-estree": "^2.0.0", + "vfile-message": "^4.0.0" }, - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/find-versions": { + "node_modules/escalade": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "license": "MIT", - "dependencies": { - "semver-regex": "^2.0.0" - }, "engines": { "node": ">=6" } }, - "node_modules/flatpickr": { - "version": "4.6.13", - "license": "MIT" - }, - "node_modules/flux": { - "version": "4.0.4", - "license": "BSD-3-Clause", - "dependencies": { - "fbemitter": "^3.0.0", - "fbjs": "^3.0.1" + "node_modules/escape-goat": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-4.0.0.tgz", + "integrity": "sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==", + "license": "MIT", + "engines": { + "node": ">=12" }, - "peerDependencies": { - "react": "^15.0.2 || ^16.0.0 || ^17.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/focus-trap": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.6.2.tgz", - "integrity": "sha512-9FhUxK1hVju2+AiQIDJ5Dd//9R2n2RAfJ0qfhF4IHGHgcoEUTMpbTeG/zbEuwaiYXfuAH6XE0/aCyxDdRM+W5w==", - "dependencies": { - "tabbable": "^6.2.0" - } + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" }, - "node_modules/follow-redirects": { - "version": "1.14.9", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "license": "MIT", "engines": { - "node": ">=4.0" + "node": ">=10" }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/for-each": { - "version": "0.3.3", - "license": "MIT", + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "license": "BSD-2-Clause", "dependencies": { - "is-callable": "^1.1.3" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "node_modules/for-in": { - "version": "1.0.2", - "license": "MIT", + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/foreach": { - "version": "2.0.6", - "license": "MIT" - }, - "node_modules/foreground-child": { - "version": "3.1.1", - "license": "ISC", + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "license": "BSD-2-Clause", "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" + "estraverse": "^5.2.0" }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=4.0" } }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "license": "ISC", + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "license": "BSD-2-Clause", "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=4.0" } }, - "node_modules/forever-agent": { - "version": "0.6.1", - "license": "Apache-2.0", + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "license": "BSD-2-Clause", "engines": { - "node": "*" + "node": ">=4.0" } }, - "node_modules/fork-ts-checker-webpack-plugin": { - "version": "6.5.2", + "node_modules/estree-util-attach-comments": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz", + "integrity": "sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==", "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.8.3", - "@types/json-schema": "^7.0.5", - "chalk": "^4.1.0", - "chokidar": "^3.4.2", - "cosmiconfig": "^6.0.0", - "deepmerge": "^4.2.2", - "fs-extra": "^9.0.0", - "glob": "^7.1.6", - "memfs": "^3.1.2", - "minimatch": "^3.0.4", - "schema-utils": "2.7.0", - "semver": "^7.3.2", - "tapable": "^1.0.0" - }, - "engines": { - "node": ">=10", - "yarn": ">=1.0.0" - }, - "peerDependencies": { - "eslint": ">= 6", - "typescript": ">= 2.7", - "vue-template-compiler": "*", - "webpack": ">= 4" + "@types/estree": "^1.0.0" }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - }, - "vue-template-compiler": { - "optional": true - } + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/estree-util-build-jsx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz", + "integrity": "sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "@types/estree-jsx": "^1.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "estree-walker": "^3.0.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { - "version": "4.1.2", + "node_modules/estree-util-is-identifier-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", + "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==", "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/estree-util-scope": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/estree-util-scope/-/estree-util-scope-1.0.0.tgz", + "integrity": "sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "@types/estree": "^1.0.0", + "devlop": "^1.0.0" }, - "engines": { - "node": ">=7.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { - "version": "6.0.0", + "node_modules/estree-util-to-js": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz", + "integrity": "sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==", "license": "MIT", "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" + "@types/estree-jsx": "^1.0.0", + "astring": "^1.8.0", + "source-map": "^0.7.0" }, - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { - "version": "9.1.0", + "node_modules/estree-util-value-to-estree": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/estree-util-value-to-estree/-/estree-util-value-to-estree-3.2.1.tgz", + "integrity": "sha512-Vt2UOjyPbNQQgT5eJh+K5aATti0OjCIAGc9SgMdOFYbohuifsWclR74l0iZTJwePMgWYdX1hlVS+dedH9XV8kw==", "license": "MIT", "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "@types/estree": "^1.0.0" }, - "engines": { - "node": ">=10" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/remcohaszing" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { - "version": "2.7.0", + "node_modules/estree-util-visit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-2.0.0.tgz", + "integrity": "sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==", "license": "MIT", "dependencies": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" - }, - "engines": { - "node": ">= 8.9.0" + "@types/estree-jsx": "^1.0.0", + "@types/unist": "^3.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://opencollective.com/unified" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "@types/estree": "^1.0.0" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { - "version": "1.1.3", - "license": "MIT", + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/form-data": { - "version": "2.3.3", + "node_modules/eta": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/eta/-/eta-2.2.0.tgz", + "integrity": "sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g==", "license": "MIT", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, "engines": { - "node": ">= 0.12" + "node": ">=6.0.0" + }, + "funding": { + "url": "https://github.com/eta-dev/eta?sponsor=1" } }, - "node_modules/forwarded": { - "version": "0.2.0", + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "license": "MIT", "engines": { "node": ">= 0.6" } }, - "node_modules/fraction.js": { - "version": "4.3.4", - "license": "MIT", - "engines": { - "node": "*" + "node_modules/eval": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/eval/-/eval-0.1.8.tgz", + "integrity": "sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==", + "dependencies": { + "@types/node": "*", + "require-like": ">= 0.1.1" }, - "funding": { - "type": "patreon", - "url": "https://github.com/sponsors/rawify" + "engines": { + "node": ">= 0.8" } }, - "node_modules/fragment-cache": { - "version": "0.2.1", + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", "license": "MIT", - "dependencies": { - "map-cache": "^0.2.2" - }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/fresh": { - "version": "0.5.2", + "node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "dev": true, + "license": "MIT" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=0.8.x" } }, - "node_modules/from2": { - "version": "2.3.0", + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", "license": "MIT", "dependencies": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" } }, - "node_modules/from2/node_modules/isarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/from2/node_modules/readable-stream": { - "version": "2.3.8", + "node_modules/exec-buffer": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz", + "integrity": "sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==", "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/from2/node_modules/string_decoder": { - "version": "1.1.1", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/fs-constants": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/fs-extra": { - "version": "10.1.0", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "execa": "^0.7.0", + "p-finally": "^1.0.0", + "pify": "^3.0.0", + "rimraf": "^2.5.4", + "tempfile": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">=4" } }, - "node_modules/fs-monkey": { - "version": "1.0.3", - "license": "Unlicense" - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "license": "ISC" - }, - "node_modules/fstream": { - "version": "1.0.12", - "license": "ISC", - "dependencies": { - "graceful-fs": "^4.1.2", - "inherits": "~2.0.0", - "mkdirp": ">=0.5 0", - "rimraf": "2" - }, + "node_modules/exec-buffer/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", "engines": { - "node": ">=0.6" + "node": ">=4" } }, - "node_modules/fstream/node_modules/rimraf": { + "node_modules/exec-buffer/node_modules/rimraf": { "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "license": "ISC", "dependencies": { "glob": "^7.1.3" @@ -13856,2937 +16861,3491 @@ "rimraf": "bin.js" } }, - "node_modules/function-bind": { - "version": "1.1.1", - "license": "MIT" - }, - "node_modules/function.prototype.name": { - "version": "1.1.5", + "node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=4" } }, - "node_modules/gaze": { - "version": "1.1.3", + "node_modules/executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", "license": "MIT", "dependencies": { - "globule": "^1.0.0" + "pify": "^2.2.0" }, "engines": { - "node": ">= 4.0.0" + "node": ">=4" } }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", + "node_modules/executable/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "license": "MIT", "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "license": "ISC", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.0", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.10.0" } }, - "node_modules/get-own-enumerable-property-symbols": { - "version": "3.0.2", - "license": "ISC" + "node_modules/exenv": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", + "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==", + "license": "BSD-3-Clause" }, - "node_modules/get-package-type": { - "version": "0.1.0", + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true, - "license": "MIT", "engines": { - "node": ">=8.0.0" + "node": ">= 0.8.0" } }, - "node_modules/get-proxy": { - "version": "2.1.0", + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", "license": "MIT", "dependencies": { - "npm-conf": "^1.1.0" + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" }, - "engines": { - "node": ">=4" - } - }, - "node_modules/get-stdin": { - "version": "4.0.1", - "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/get-stream": { - "version": "4.1.0", + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" + "ms": "2.0.0" } }, - "node_modules/get-symbol-description": { - "version": "1.0.0", + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" + "is-descriptor": "^0.1.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-value": { - "version": "2.0.6", - "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/getpass": { + "node_modules/expand-brackets/node_modules/is-descriptor": { "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "license": "MIT", "dependencies": { - "assert-plus": "^1.0.0" - } - }, - "node_modules/gifsicle": { - "version": "4.0.1", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.0", - "execa": "^1.0.0", - "logalot": "^2.0.0" - }, - "bin": { - "gifsicle": "cli.js" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" }, "engines": { - "node": ">=6" + "node": ">= 0.4" } }, - "node_modules/gifsicle/node_modules/cross-spawn": { - "version": "6.0.5", + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==", "license": "MIT", "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "fill-range": "^2.1.0" }, "engines": { - "node": ">=4.8" + "node": ">=0.10.0" } }, - "node_modules/gifsicle/node_modules/execa": { - "version": "1.0.0", + "node_modules/expand-range/node_modules/fill-range": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", + "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", "license": "MIT", "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/gifsicle/node_modules/is-stream": { - "version": "1.1.0", + "node_modules/expand-range/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", "license": "MIT", + "dependencies": { + "isarray": "1.0.0" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/gifsicle/node_modules/npm-run-path": { - "version": "2.0.2", + "node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dev": true, "license": "MIT", "dependencies": { - "path-key": "^2.0.0" + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { - "node": ">=4" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/gifsicle/node_modules/path-key": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/gifsicle/node_modules/semver": { - "version": "5.7.1", - "license": "ISC", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/gifsicle/node_modules/shebang-command": { - "version": "1.2.0", + "node_modules/express": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", + "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", "license": "MIT", "dependencies": { - "shebang-regex": "^1.0.0" + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.3", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.7.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.3.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.12", + "proxy-addr": "~2.0.7", + "qs": "6.13.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.19.0", + "serve-static": "1.16.2", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/gifsicle/node_modules/shebang-regex": { - "version": "1.0.0", + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gifsicle/node_modules/which": { - "version": "1.3.1", - "license": "ISC", "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" + "ms": "2.0.0" } }, - "node_modules/github-slugger": { - "version": "1.5.0", - "license": "ISC" + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" }, - "node_modules/glob": { - "version": "7.2.0", - "license": "ISC", + "node_modules/ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "mime-db": "^1.28.0" }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=0.10.0" } }, - "node_modules/glob-parent": { - "version": "5.1.2", - "license": "ISC", + "node_modules/ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "license": "MIT", "dependencies": { - "is-glob": "^4.0.1" + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" }, "engines": { - "node": ">= 6" + "node": ">=4" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "license": "BSD-2-Clause" + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "license": "MIT" }, - "node_modules/global-dirs": { - "version": "3.0.0", + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "license": "MIT", "dependencies": { - "ini": "2.0.0" - }, - "engines": { - "node": ">=10" + "is-extendable": "^0.1.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/global-dirs/node_modules/ini": { - "version": "2.0.0", - "license": "ISC", "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/global-modules": { - "version": "2.0.0", + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "license": "MIT", "dependencies": { - "global-prefix": "^3.0.0" + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/global-prefix": { - "version": "3.0.0", + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "license": "MIT", "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" + "is-descriptor": "^1.0.0" }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-folder-size": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/fast-folder-size/-/fast-folder-size-1.6.1.tgz", + "integrity": "sha512-F3tRpfkAzb7TT2JNKaJUglyuRjRa+jelQD94s9OSqkfEeytLmupCqQiD+H2KoIXGtp4pB5m4zNmv5m2Ktcr+LA==", + "hasInstallScript": true, "license": "ISC", "dependencies": { - "isexe": "^2.0.0" + "unzipper": "^0.10.11" }, "bin": { - "which": "bin/which" + "fast-folder-size": "cli.js" } }, - "node_modules/globals": { - "version": "11.12.0", + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, "engines": { - "node": ">=4" + "node": ">=8.6.0" } }, - "node_modules/globalthis": { - "version": "1.0.3", + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "license": "MIT" + }, + "node_modules/fast-safe-stringify": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", + "license": "MIT" + }, + "node_modules/fast-xml-parser": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.1.tgz", + "integrity": "sha512-y655CeyUQ+jj7KBbYMc4FG01V8ZQqjN+gDYGJ50RtfsUB8iG9AmwmwoAgeKLJdmueKKMrH1RJ7yXHTSoczdv5w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], "license": "MIT", "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" + "strnum": "^1.0.5" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "fxparser": "src/cli/cli.js" } }, - "node_modules/globby": { - "version": "11.1.0", + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fault": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz", + "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==", "license": "MIT", "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" + "format": "^0.2.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/globule": { - "version": "1.3.4", + "node_modules/faye-websocket": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ==", "license": "MIT", "dependencies": { - "glob": "~7.1.1", - "lodash": "^4.17.21", - "minimatch": "~3.0.2" + "websocket-driver": ">=0.5.1" }, "engines": { - "node": ">= 0.10" + "node": ">=0.4.0" } }, - "node_modules/globule/node_modules/glob": { - "version": "7.1.7", - "license": "ISC", + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "license": "Apache-2.0", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "bser": "2.1.1" } }, - "node_modules/gopd": { - "version": "1.0.1", + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", "license": "MIT", "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "pend": "~1.2.0" } }, - "node_modules/got": { - "version": "9.6.0", + "node_modules/feed": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/feed/-/feed-4.2.2.tgz", + "integrity": "sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==", "license": "MIT", "dependencies": { - "@sindresorhus/is": "^0.14.0", - "@szmarczak/http-timer": "^1.1.2", - "cacheable-request": "^6.0.0", - "decompress-response": "^3.3.0", - "duplexer3": "^0.1.4", - "get-stream": "^4.1.0", - "lowercase-keys": "^1.0.1", - "mimic-response": "^1.0.1", - "p-cancelable": "^1.0.0", - "to-readable-stream": "^1.0.0", - "url-parse-lax": "^3.0.0" + "xml-js": "^1.6.11" }, "engines": { - "node": ">=8.6" + "node": ">=0.4.0" } }, - "node_modules/graceful-fs": { - "version": "4.2.9", - "license": "ISC" - }, - "node_modules/gray-matter": { - "version": "4.0.3", + "node_modules/feelers": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/feelers/-/feelers-1.4.0.tgz", + "integrity": "sha512-CGa/7ILuqoqTaeYeoKsg/4tzu2es9sEEJTmSjdu0lousZBw4V9gcYhHYFNmbrSrKmbAVfOzj6/DsymGJWFIOeg==", "license": "MIT", "dependencies": { - "js-yaml": "^3.13.1", - "kind-of": "^6.0.2", - "section-matter": "^1.0.0", - "strip-bom-string": "^1.0.0" + "@bpmn-io/cm-theme": "^0.1.0-alpha.2", + "@bpmn-io/feel-lint": "^1.2.0", + "@codemirror/autocomplete": "^6.10.1", + "@codemirror/commands": "^6.3.0", + "@codemirror/language": "^6.9.1", + "@codemirror/lint": "^6.4.2", + "@codemirror/state": "^6.3.0", + "@codemirror/view": "^6.21.3", + "@lezer/common": "^1.1.0", + "@lezer/highlight": "^1.1.6", + "@lezer/lr": "^1.3.13", + "@lezer/markdown": "^1.1.0", + "feelin": "^3.0.1", + "lezer-feel": "^1.2.4", + "min-dom": "^5.0.0" }, "engines": { - "node": ">=6.0" - } - }, - "node_modules/gray-matter/node_modules/argparse": { - "version": "1.0.10", - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" + "node": "*" + }, + "workspaces": { + "packages": [ + "feelers-playground" + ] } }, - "node_modules/gray-matter/node_modules/js-yaml": { - "version": "3.14.1", + "node_modules/feelers/node_modules/domify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/domify/-/domify-2.0.0.tgz", + "integrity": "sha512-rmvrrmWQPD/X1A/nPBfIVg4r05792QdG9Z4Prk6oQG0F9zBMDkr0GKAdds1wjb2dq1rTz/ywc4ZxpZbgz0tttg==", "license": "MIT", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "engines": { + "node": ">=18" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/gulp-header": { - "version": "1.8.12", + "node_modules/feelers/node_modules/min-dom": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/min-dom/-/min-dom-5.1.1.tgz", + "integrity": "sha512-GaKUlguMAofd3OJsB0OkP17i5kucKqErgVCJxPawO9l5NwIPnr28SAr99zzlzMCWWljISBYrnZVWdE2Q92YGFQ==", "license": "MIT", "dependencies": { - "concat-with-sourcemaps": "*", - "lodash.template": "^4.4.0", - "through2": "^2.0.0" + "domify": "^2.0.0", + "min-dash": "^4.2.1" } }, - "node_modules/gzip-size": { - "version": "6.0.0", + "node_modules/feelin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/feelin/-/feelin-3.2.0.tgz", + "integrity": "sha512-GFDbHsTYk7YXO1tyw1dOjb7IODeAZvNIosdGZThUwPx5XcD/XhO0hnPZXsIbAzSsIdrgGlTEEdby9fZ2gixysA==", "license": "MIT", "dependencies": { - "duplexer": "^0.1.2" + "@lezer/lr": "^1.4.2", + "lezer-feel": "^1.4.0", + "luxon": "^3.5.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "*" } }, - "node_modules/handle-thing": { - "version": "2.0.1", + "node_modules/fflate": { + "version": "0.4.8", + "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.4.8.tgz", + "integrity": "sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==", "license": "MIT" }, - "node_modules/har-schema": { - "version": "2.0.0", - "license": "ISC", - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.5", + "node_modules/figures": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==", "license": "MIT", "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" + "escape-string-regexp": "^1.0.5", + "object-assign": "^4.1.0" }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/has": { - "version": "1.0.3", + "node_modules/figures/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1" - }, "engines": { - "node": ">= 0.4.0" + "node": ">=0.8.0" } }, - "node_modules/has-ansi": { - "version": "2.0.0", + "node_modules/file-drops": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/file-drops/-/file-drops-0.5.0.tgz", + "integrity": "sha512-ZaENKwVySae4RhEGjh1gEE1wMnIIPG6XqtOwHNQYSl7RNwUHoRGVVspe+BrW7cUFseHNIit3Oy9Z/HPIEU5XWA==", "license": "MIT", "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" + "min-dom": "^4.0.3" } }, - "node_modules/has-ansi/node_modules/ansi-regex": { - "version": "2.1.1", + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/has-bigints": { - "version": "1.0.2", + "node_modules/file-loader/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/has-flag": { - "version": "3.0.0", + "node_modules/file-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "license": "MIT", - "engines": { - "node": ">=4" + "peerDependencies": { + "ajv": "^6.9.1" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", + "node_modules/file-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "license": "MIT" + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "license": "MIT", "dependencies": { - "get-intrinsic": "^1.1.1" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.1", - "license": "MIT", "engines": { - "node": ">= 0.4" + "node": ">= 10.13.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/has-symbol-support-x": { - "version": "1.4.2", + "node_modules/file-saver": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/file-saver/-/file-saver-2.0.5.tgz", + "integrity": "sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==", + "license": "MIT" + }, + "node_modules/file-type": { + "version": "10.11.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", + "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", "license": "MIT", "engines": { - "node": "*" + "node": ">=6" } }, - "node_modules/has-symbols": { - "version": "1.0.3", + "node_modules/filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", "license": "MIT", "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=4" } }, - "node_modules/has-to-string-tag-x": { - "version": "1.4.1", + "node_modules/filenamify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", + "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", "license": "MIT", "dependencies": { - "has-symbol-support-x": "^1.4.1" + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" }, "engines": { - "node": "*" + "node": ">=4" } }, - "node_modules/has-tostringtag": { - "version": "1.0.0", + "node_modules/filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "license": "MIT", "dependencies": { - "has-symbols": "^1.0.2" + "to-regex-range": "^5.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/has-value": { - "version": "1.0.0", + "node_modules/finalhandler": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", "license": "MIT", "dependencies": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/has-values": { - "version": "1.0.0", + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" + "ms": "2.0.0" } }, - "node_modules/has-values/node_modules/is-buffer": { - "version": "1.1.6", + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, - "node_modules/has-values/node_modules/is-number": { - "version": "3.0.0", + "node_modules/find-cache-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", + "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", "license": "MIT", "dependencies": { - "kind-of": "^3.0.2" + "common-path-prefix": "^3.0.0", + "pkg-dir": "^7.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "license": "MIT", "dependencies": { - "is-buffer": "^1.1.5" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/has-values/node_modules/kind-of": { - "version": "4.0.0", + "node_modules/find-versions": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", + "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", "license": "MIT", "dependencies": { - "is-buffer": "^1.1.5" + "semver-regex": "^2.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/has-yarn": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=8" + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "license": "BSD-3-Clause", + "bin": { + "flat": "cli.js" } }, - "node_modules/hash-base": { - "version": "3.1.0", + "node_modules/flatpickr": { + "version": "4.6.13", + "resolved": "https://registry.npmjs.org/flatpickr/-/flatpickr-4.6.13.tgz", + "integrity": "sha512-97PMG/aywoYpB4IvbvUJi0RQi8vearvU0oov1WW3k0WZPBMrTQVqekSX5CjSG/M4Q3i6A/0FKXC7RyAoAUUSPw==", + "license": "MIT" + }, + "node_modules/focus-trap": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.6.2.tgz", + "integrity": "sha512-9FhUxK1hVju2+AiQIDJ5Dd//9R2n2RAfJ0qfhF4IHGHgcoEUTMpbTeG/zbEuwaiYXfuAH6XE0/aCyxDdRM+W5w==", "license": "MIT", "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "engines": { - "node": ">=4" + "tabbable": "^6.2.0" } }, - "node_modules/hash-base/node_modules/safe-buffer": { - "version": "5.2.1", + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" } ], - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } }, - "node_modules/hash.js": { - "version": "1.1.7", + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "license": "MIT", "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" + "is-callable": "^1.1.3" } }, - "node_modules/hast-to-hyperscript": { - "version": "9.0.1", + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/foreach": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.6.tgz", + "integrity": "sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==", + "license": "MIT" + }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "license": "ISC", "dependencies": { - "@types/unist": "^2.0.3", - "comma-separated-tokens": "^1.0.0", - "property-information": "^5.3.0", - "space-separated-tokens": "^1.0.0", - "style-to-object": "^0.3.0", - "unist-util-is": "^4.0.0", - "web-namespaces": "^1.0.0" + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/hast-util-from-parse5": { - "version": "6.0.1", + "node_modules/foreground-child/node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "license": "MIT", "dependencies": { - "@types/parse5": "^5.0.0", - "hastscript": "^6.0.0", - "property-information": "^5.0.0", - "vfile": "^4.0.0", - "vfile-location": "^3.2.0", - "web-namespaces": "^1.0.0" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">= 8" } }, - "node_modules/hast-util-parse-selector": { - "version": "2.2.5", + "node_modules/foreground-child/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=8" } }, - "node_modules/hast-util-raw": { - "version": "6.0.1", + "node_modules/foreground-child/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0", - "hast-util-from-parse5": "^6.0.0", - "hast-util-to-parse5": "^6.0.0", - "html-void-elements": "^1.0.0", - "parse5": "^6.0.0", - "unist-util-position": "^3.0.0", - "vfile": "^4.0.0", - "web-namespaces": "^1.0.0", - "xtend": "^4.0.0", - "zwitch": "^1.0.0" + "shebang-regex": "^3.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=8" } }, - "node_modules/hast-util-raw/node_modules/parse5": { - "version": "6.0.1", - "license": "MIT" - }, - "node_modules/hast-util-to-parse5": { - "version": "6.0.0", + "node_modules/foreground-child/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "license": "MIT", - "dependencies": { - "hast-to-hyperscript": "^9.0.0", - "property-information": "^5.0.0", - "web-namespaces": "^1.0.0", - "xtend": "^4.0.0", - "zwitch": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=8" } }, - "node_modules/hast-util-whitespace": { - "version": "2.0.1", - "license": "MIT", + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/hastscript": { - "version": "6.0.0", - "license": "MIT", + "node_modules/foreground-child/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", "dependencies": { - "@types/hast": "^2.0.0", - "comma-separated-tokens": "^1.0.0", - "hast-util-parse-selector": "^2.0.0", - "property-information": "^5.0.0", - "space-separated-tokens": "^1.0.0" + "isexe": "^2.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/he": { - "version": "1.2.0", - "license": "MIT", "bin": { - "he": "bin/he" + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/heap": { - "version": "0.2.7", - "license": "MIT" - }, - "node_modules/hex-color-regex": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/highlight.js": { - "version": "9.18.5", - "hasInstallScript": true, - "license": "BSD-3-Clause", + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "license": "Apache-2.0", "engines": { "node": "*" } }, - "node_modules/history": { - "version": "4.10.1", + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", + "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", "license": "MIT", "dependencies": { - "@babel/runtime": "^7.1.2", - "loose-envify": "^1.2.0", - "resolve-pathname": "^3.0.0", - "tiny-invariant": "^1.0.2", - "tiny-warning": "^1.0.0", - "value-equal": "^1.0.1" + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } } }, - "node_modules/hmac-drbg": { - "version": "1.0.1", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "license": "MIT", "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "license": "BSD-3-Clause", - "dependencies": { - "react-is": "^16.7.0" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/hosted-git-info": { - "version": "2.8.9", - "license": "ISC" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } }, - "node_modules/hpack.js": { - "version": "2.1.6", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "license": "MIT", "dependencies": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/hpack.js/node_modules/isarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/hpack.js/node_modules/readable-stream": { - "version": "2.3.7", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" } }, - "node_modules/hpack.js/node_modules/string_decoder": { - "version": "1.1.1", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "license": "MIT", "dependencies": { - "safe-buffer": "~5.1.0" + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/hsl-regex": { - "version": "1.0.0", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "license": "MIT" }, - "node_modules/hsla-regex": { - "version": "1.0.0", - "license": "MIT" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } }, - "node_modules/html-element-map": { - "version": "1.3.1", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", "license": "MIT", "dependencies": { - "array.prototype.filter": "^1.0.0", - "call-bind": "^1.0.2" + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/html-entities": { - "version": "2.3.3", - "license": "MIT" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "node_modules/html-escaper": { - "version": "2.0.2", - "dev": true, - "license": "MIT" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", + "engines": { + "node": ">= 6" + } }, - "node_modules/html-minifier-terser": { - "version": "6.1.0", + "node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "license": "MIT", "dependencies": { - "camel-case": "^4.1.2", - "clean-css": "^5.2.2", - "commander": "^8.3.0", - "he": "^1.2.0", - "param-case": "^3.0.4", - "relateurl": "^0.2.7", - "terser": "^5.10.0" - }, - "bin": { - "html-minifier-terser": "cli.js" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" }, "engines": { - "node": ">=12" + "node": ">= 0.12" } }, - "node_modules/html-minifier-terser/node_modules/commander": { - "version": "8.3.0", + "node_modules/form-data-encoder": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", + "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", "license": "MIT", "engines": { - "node": ">= 12" + "node": ">= 14.17" } }, - "node_modules/html-tags": { - "version": "3.2.0", - "license": "MIT", + "node_modules/format": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", + "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==", "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.4.x" } }, - "node_modules/html-void-elements": { - "version": "1.0.5", + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": ">= 0.6" } }, - "node_modules/html-webpack-plugin": { - "version": "5.5.0", + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "license": "MIT", - "dependencies": { - "@types/html-minifier-terser": "^6.0.0", - "html-minifier-terser": "^6.0.2", - "lodash": "^4.17.21", - "pretty-error": "^4.0.0", - "tapable": "^2.0.0" - }, "engines": { - "node": ">=10.13.0" + "node": "*" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/html-webpack-plugin" - }, - "peerDependencies": { - "webpack": "^5.20.0" + "type": "patreon", + "url": "https://github.com/sponsors/rawify" } }, - "node_modules/html2canvas": { - "version": "1.4.1", + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", "license": "MIT", "dependencies": { - "css-line-break": "^2.1.0", - "text-segmentation": "^1.0.3" + "map-cache": "^0.2.2" }, "engines": { - "node": ">=8.0.0" + "node": ">=0.10.0" } }, - "node_modules/htmlparser2": { - "version": "6.1.0", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" + "engines": { + "node": ">= 0.6" } }, - "node_modules/http-cache-semantics": { - "version": "4.1.0", - "license": "BSD-2-Clause" + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } }, - "node_modules/http-deceiver": { - "version": "1.2.7", + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", "license": "MIT" }, - "node_modules/http-errors": { - "version": "2.0.0", + "node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "license": "MIT", "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">=14.14" } }, - "node_modules/http-parser-js": { - "version": "0.5.8", - "license": "MIT" + "node_modules/fs-monkey": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz", + "integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==", + "license": "Unlicense" }, - "node_modules/http-proxy": { - "version": "1.18.1", + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=8.0.0" + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/http-proxy-middleware": { - "version": "2.0.6", - "license": "MIT", + "node_modules/fstream": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", + "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", + "deprecated": "This package is no longer supported.", + "license": "ISC", "dependencies": { - "@types/http-proxy": "^1.17.8", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" + "graceful-fs": "^4.1.2", + "inherits": "~2.0.0", + "mkdirp": ">=0.5 0", + "rimraf": "2" }, "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "@types/express": "^4.17.13" - }, - "peerDependenciesMeta": { - "@types/express": { - "optional": true - } + "node": ">=0.6" } }, - "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { - "version": "3.0.0", + "node_modules/fstream/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.7.tgz", + "integrity": "sha512-2g4x+HqTJKM9zcJqBSpjoRmdcPFtJM60J3xJisTQSXBWka5XqyBN/2tNUgma1mztTXyDuUsEtYe5qcs7xYzYQA==", "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" + }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/http-reasons": { - "version": "0.1.0", - "license": "Apache-2.0" + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/http-signature": { - "version": "1.2.0", + "node_modules/gaze": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", + "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", "license": "MIT", "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" + "globule": "^1.0.0" }, "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" + "node": ">= 4.0.0" } }, - "node_modules/http2-client": { - "version": "1.3.5", - "license": "MIT" - }, - "node_modules/https-browserify": { - "version": "1.0.0", - "license": "MIT" + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } }, - "node_modules/human-signals": { - "version": "2.1.0", - "license": "Apache-2.0", + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", "engines": { - "node": ">=10.17.0" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/husky": { - "version": "8.0.3", - "dev": true, + "node_modules/get-intrinsic": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.6.tgz", + "integrity": "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==", "license": "MIT", - "bin": { - "husky": "lib/bin.js" + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "dunder-proto": "^1.0.0", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "function-bind": "^1.1.2", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.0.0" }, "engines": { - "node": ">=14" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/typicode" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/iconv-lite": { - "version": "0.4.24", + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", + "license": "ISC" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", + "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", "license": "MIT", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" + "npm-conf": "^1.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/icss-utils": { - "version": "5.1.0", - "license": "ISC", + "node_modules/get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==", + "license": "MIT", "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">=0.10.0" } }, - "node_modules/ids": { - "version": "1.0.5", - "license": "MIT" - }, - "node_modules/ieee754": { - "version": "1.2.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "BSD-3-Clause" - }, - "node_modules/ignore": { - "version": "5.2.0", + "node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", "license": "MIT", "engines": { - "node": ">= 4" + "node": ">=4" } }, - "node_modules/image-size": { - "version": "1.0.2", + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", "license": "MIT", "dependencies": { - "queue": "6.0.2" + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" }, - "bin": { - "image-size": "bin/image-size.js" + "engines": { + "node": ">= 0.4" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "license": "MIT", "engines": { - "node": ">=14.0.0" + "node": ">=0.10.0" } }, - "node_modules/imagemin": { - "version": "6.1.0", + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "license": "MIT", "dependencies": { - "file-type": "^10.7.0", - "globby": "^8.0.1", - "make-dir": "^1.0.0", - "p-pipe": "^1.1.0", - "pify": "^4.0.1", - "replace-ext": "^1.0.0" + "assert-plus": "^1.0.0" + } + }, + "node_modules/gifsicle": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/gifsicle/-/gifsicle-4.0.1.tgz", + "integrity": "sha512-A/kiCLfDdV+ERV/UB+2O41mifd+RxH8jlRG8DMxZO84Bma/Fw0htqZ+hY2iaalLRNyUu7tYZQslqUBJxBggxbg==", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "execa": "^1.0.0", + "logalot": "^2.0.0" + }, + "bin": { + "gifsicle": "cli.js" }, "engines": { "node": ">=6" } }, - "node_modules/imagemin-gifsicle": { - "version": "6.0.1", + "node_modules/gifsicle/node_modules/cross-spawn": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "license": "MIT", "dependencies": { - "exec-buffer": "^3.0.0", - "gifsicle": "^4.0.0", - "is-gif": "^3.0.0" + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" }, "engines": { - "node": ">=6" + "node": ">=4.8" } }, - "node_modules/imagemin-jpegtran": { - "version": "6.0.0", + "node_modules/gifsicle/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", "license": "MIT", "dependencies": { - "exec-buffer": "^3.0.0", - "is-jpg": "^2.0.0", - "jpegtran-bin": "^4.0.0" + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" }, "engines": { "node": ">=6" } }, - "node_modules/imagemin-optipng": { - "version": "6.0.0", + "node_modules/gifsicle/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "license": "MIT", "dependencies": { - "exec-buffer": "^3.0.0", - "is-png": "^1.0.0", - "optipng-bin": "^5.0.0" + "pump": "^3.0.0" }, "engines": { "node": ">=6" } }, - "node_modules/imagemin-svgo": { - "version": "7.1.0", - "license": "MIT", + "node_modules/gifsicle/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/github-slugger": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz", + "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==", + "license": "ISC" + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", "dependencies": { - "is-svg": "^4.2.1", - "svgo": "^1.3.2" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=6" + "node": "*" }, "funding": { - "url": "https://github.com/sindresorhus/imagemin-svgo?sponsor=1" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/imagemin-svgo/node_modules/argparse": { - "version": "1.0.10", - "license": "MIT", + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", "dependencies": { - "sprintf-js": "~1.0.2" + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/imagemin-svgo/node_modules/css-select": { - "version": "2.1.0", - "license": "BSD-2-Clause", + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "license": "BSD-2-Clause" + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/imagemin-svgo/node_modules/css-tree": { - "version": "1.0.0-alpha.37", - "license": "MIT", + "node_modules/glob/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", "dependencies": { - "mdn-data": "2.0.4", - "source-map": "^0.6.1" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=8.0.0" + "node": "*" } }, - "node_modules/imagemin-svgo/node_modules/css-what": { - "version": "3.4.2", - "license": "BSD-2-Clause", + "node_modules/global-dirs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", + "license": "MIT", + "dependencies": { + "ini": "2.0.0" + }, "engines": { - "node": ">= 6" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/imagemin-svgo/node_modules/dom-serializer": { - "version": "0.2.2", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/imagemin-svgo/node_modules/domutils": { - "version": "1.7.0", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" + "node_modules/global-dirs/node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "license": "ISC", + "engines": { + "node": ">=10" } }, - "node_modules/imagemin-svgo/node_modules/domutils/node_modules/domelementtype": { - "version": "1.3.1", - "license": "BSD-2-Clause" - }, - "node_modules/imagemin-svgo/node_modules/js-yaml": { - "version": "3.14.1", + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "license": "MIT", "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "global-prefix": "^3.0.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/imagemin-svgo/node_modules/mdn-data": { - "version": "2.0.4", - "license": "CC0-1.0" - }, - "node_modules/imagemin-svgo/node_modules/nth-check": { - "version": "1.0.2", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "~1.0.0" - } - }, - "node_modules/imagemin-svgo/node_modules/source-map": { - "version": "0.6.1", - "license": "BSD-3-Clause", "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/imagemin-svgo/node_modules/svgo": { - "version": "1.3.2", + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "license": "MIT", "dependencies": { - "chalk": "^2.4.1", - "coa": "^2.0.2", - "css-select": "^2.0.0", - "css-select-base-adapter": "^0.1.1", - "css-tree": "1.0.0-alpha.37", - "csso": "^4.0.2", - "js-yaml": "^3.13.1", - "mkdirp": "~0.5.1", - "object.values": "^1.1.0", - "sax": "~1.2.4", - "stable": "^0.1.8", - "unquote": "~1.1.1", - "util.promisify": "~1.0.0" - }, - "bin": { - "svgo": "bin/svgo" + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" }, "engines": { - "node": ">=4.0.0" + "node": ">=6" } }, - "node_modules/imagemin/node_modules/@nodelib/fs.stat": { - "version": "1.1.3", + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "license": "MIT", "engines": { - "node": ">= 6" + "node": ">=4" } }, - "node_modules/imagemin/node_modules/array-union": { - "version": "1.0.2", + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", "license": "MIT", "dependencies": { - "array-uniq": "^1.0.1" + "define-properties": "^1.2.1", + "gopd": "^1.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/imagemin/node_modules/braces": { - "version": "2.3.2", + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "license": "MIT", "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/imagemin/node_modules/dir-glob": { - "version": "2.0.0", + "node_modules/globule": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.4.tgz", + "integrity": "sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==", "license": "MIT", "dependencies": { - "arrify": "^1.0.1", - "path-type": "^3.0.0" + "glob": "~7.1.1", + "lodash": "^4.17.21", + "minimatch": "~3.0.2" }, "engines": { - "node": ">=4" + "node": ">= 0.10" } }, - "node_modules/imagemin/node_modules/fast-glob": { - "version": "2.2.7", + "node_modules/globule/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "license": "MIT", "dependencies": { - "@mrmlnc/readdir-enhanced": "^2.2.1", - "@nodelib/fs.stat": "^1.1.2", - "glob-parent": "^3.1.0", - "is-glob": "^4.0.0", - "merge2": "^1.2.3", - "micromatch": "^3.1.10" - }, - "engines": { - "node": ">=4.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/imagemin/node_modules/fill-range": { - "version": "4.0.0", - "license": "MIT", + "node_modules/globule/node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/imagemin/node_modules/glob-parent": { - "version": "3.1.0", + "node_modules/globule/node_modules/minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", "license": "ISC", "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "node_modules/imagemin/node_modules/glob-parent/node_modules/is-glob": { - "version": "3.1.0", + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/imagemin/node_modules/globby": { - "version": "8.0.2", + "node_modules/got": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", + "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", "license": "MIT", "dependencies": { - "array-union": "^1.0.1", - "dir-glob": "2.0.0", - "fast-glob": "^2.0.2", - "glob": "^7.1.2", - "ignore": "^3.3.5", - "pify": "^3.0.0", - "slash": "^1.0.0" + "decompress-response": "^3.2.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-plain-obj": "^1.1.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "p-cancelable": "^0.3.0", + "p-timeout": "^1.1.1", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "url-parse-lax": "^1.0.0", + "url-to-options": "^1.0.1" }, "engines": { "node": ">=4" } }, - "node_modules/imagemin/node_modules/globby/node_modules/pify": { - "version": "3.0.0", + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/graphlib": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/graphlib/-/graphlib-2.1.8.tgz", + "integrity": "sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==", "license": "MIT", - "engines": { - "node": ">=4" + "dependencies": { + "lodash": "^4.17.15" } }, - "node_modules/imagemin/node_modules/ignore": { - "version": "3.3.10", - "license": "MIT" - }, - "node_modules/imagemin/node_modules/is-buffer": { - "version": "1.1.6", - "license": "MIT" - }, - "node_modules/imagemin/node_modules/is-extendable": { - "version": "1.0.1", + "node_modules/gray-matter": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", + "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", "license": "MIT", "dependencies": { - "is-plain-object": "^2.0.4" + "js-yaml": "^3.13.1", + "kind-of": "^6.0.2", + "section-matter": "^1.0.0", + "strip-bom-string": "^1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6.0" } }, - "node_modules/imagemin/node_modules/is-number": { - "version": "3.0.0", + "node_modules/gray-matter/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "license": "MIT", "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" + "sprintf-js": "~1.0.2" } }, - "node_modules/imagemin/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", + "node_modules/gray-matter/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "license": "MIT", "dependencies": { - "is-buffer": "^1.1.5" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "engines": { - "node": ">=0.10.0" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/imagemin/node_modules/make-dir": { - "version": "1.3.0", + "node_modules/gulp-header": { + "version": "1.8.12", + "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz", + "integrity": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==", + "deprecated": "Removed event-stream from gulp-header", "license": "MIT", "dependencies": { - "pify": "^3.0.0" + "concat-with-sourcemaps": "*", + "lodash.template": "^4.4.0", + "through2": "^2.0.0" + } + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "license": "MIT", + "dependencies": { + "duplexer": "^0.1.2" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/imagemin/node_modules/make-dir/node_modules/pify": { - "version": "3.0.0", - "license": "MIT", + "node_modules/hachure-fill": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/hachure-fill/-/hachure-fill-0.5.2.tgz", + "integrity": "sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg==", + "license": "MIT" + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "license": "MIT" + }, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "license": "ISC", "engines": { "node": ">=4" } }, - "node_modules/imagemin/node_modules/micromatch": { - "version": "3.1.10", + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", "license": "MIT", "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" + "ajv": "^6.12.3", + "har-schema": "^2.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/imagemin/node_modules/micromatch/node_modules/extend-shallow": { - "version": "3.0.2", + "node_modules/har-validator/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "license": "MIT", "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/har-validator/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "license": "MIT" + }, + "node_modules/has": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.4.0" } }, - "node_modules/imagemin/node_modules/path-type": { - "version": "3.0.0", + "node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", "license": "MIT", "dependencies": { - "pify": "^3.0.0" + "ansi-regex": "^2.0.0" }, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/imagemin/node_modules/path-type/node_modules/pify": { - "version": "3.0.0", + "node_modules/has-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", "license": "MIT", "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/imagemin/node_modules/slash": { - "version": "1.0.0", + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/imagemin/node_modules/to-regex-range": { - "version": "2.1.1", + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "license": "MIT", - "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/immer": { - "version": "9.0.21", + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/immer" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/immutable": { - "version": "4.3.4", - "license": "MIT" - }, - "node_modules/import-fresh": { - "version": "3.3.0", + "node_modules/has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", "license": "MIT", "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "dunder-proto": "^1.0.0" }, "engines": { - "node": ">=6" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/import-lazy": { - "version": "2.1.0", + "node_modules/has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", "license": "MIT", "engines": { - "node": ">=4" + "node": "*" } }, - "node_modules/import-local": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", - "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", - "dev": true, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", "license": "MIT", "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" + "has-symbol-support-x": "^1.4.1" }, - "bin": { - "import-local-fixture": "fixtures/cli.js" + "engines": { + "node": "*" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", "license": "MIT", + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, "engines": { - "node": ">=0.8.19" + "node": ">=0.10.0" } }, - "node_modules/indent-string": { - "version": "4.0.0", + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", "license": "MIT", + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/indexes-of": { - "version": "1.0.1", + "node_modules/has-values/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "license": "MIT" }, - "node_modules/infima": { - "version": "0.2.0-alpha.43", + "node_modules/has-values/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, "engines": { - "node": ">=12" + "node": ">=0.10.0" } }, - "node_modules/inflight": { - "version": "1.0.6", - "license": "ISC", + "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/inherits": { - "version": "2.0.4", - "license": "ISC" - }, - "node_modules/ini": { - "version": "1.3.8", - "license": "ISC" - }, - "node_modules/inline-style-parser": { - "version": "0.1.1", - "license": "MIT" - }, - "node_modules/internal-slot": { - "version": "1.0.5", + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", "license": "MIT", "dependencies": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" + "is-buffer": "^1.1.5" }, "engines": { - "node": ">= 0.4" - } - }, - "node_modules/internmap": { - "version": "2.0.3", - "license": "ISC", - "engines": { - "node": ">=12" + "node": ">=0.10.0" } }, - "node_modules/interpret": { - "version": "1.4.0", + "node_modules/has-yarn": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz", + "integrity": "sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==", "license": "MIT", "engines": { - "node": ">= 0.10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/into-stream": { - "version": "3.1.0", + "node_modules/hash-base": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.5.tgz", + "integrity": "sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==", "license": "MIT", "dependencies": { - "from2": "^2.1.1", - "p-is-promise": "^1.1.0" + "inherits": "^2.0.4", + "safe-buffer": "^5.2.1" }, "engines": { - "node": ">=4" + "node": ">= 0.10" } }, - "node_modules/invariant": { - "version": "2.2.4", + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", "license": "MIT", "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/ip-regex": { - "version": "4.3.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ipaddr.js": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/is-absolute-url": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" } }, - "node_modules/is-accessor-descriptor": { - "version": "1.0.0", + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "license": "MIT", "dependencies": { - "kind-of": "^6.0.0" + "function-bind": "^1.1.2" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/is-alphabetical": { - "version": "1.0.4", + "node_modules/hast-util-from-parse5": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.2.tgz", + "integrity": "sha512-SfMzfdAi/zAoZ1KkFEyyeXBn7u/ShQrfd675ZEE9M3qj+PMFX05xubzRyF76CCSJu8au9jgVxDV1+okFvgZU4A==", "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "devlop": "^1.0.0", + "hastscript": "^9.0.0", + "property-information": "^6.0.0", + "vfile": "^6.0.0", + "vfile-location": "^5.0.0", + "web-namespaces": "^2.0.0" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-alphanumerical": { - "version": "1.0.4", + "node_modules/hast-util-parse-selector": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", + "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", "license": "MIT", "dependencies": { - "is-alphabetical": "^1.0.0", - "is-decimal": "^1.0.0" + "@types/hast": "^3.0.0" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-arguments": { - "version": "1.1.1", + "node_modules/hast-util-raw": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz", + "integrity": "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "@ungap/structured-clone": "^1.0.0", + "hast-util-from-parse5": "^8.0.0", + "hast-util-to-parse5": "^8.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "parse5": "^7.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-array-buffer": { - "version": "3.0.2", + "node_modules/hast-util-to-estree": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.0.tgz", + "integrity": "sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" + "@types/estree": "^1.0.0", + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-attach-comments": "^3.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-object": "^0.4.0", + "unist-util-position": "^5.0.0", + "zwitch": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-arrayish": { - "version": "0.3.2", + "node_modules/hast-util-to-estree/node_modules/inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", "license": "MIT" }, - "node_modules/is-bigint": { - "version": "1.0.4", + "node_modules/hast-util-to-estree/node_modules/style-to-object": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz", + "integrity": "sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==", "license": "MIT", "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "inline-style-parser": "0.1.1" } }, - "node_modules/is-binary-path": { - "version": "2.1.0", + "node_modules/hast-util-to-jsx-runtime": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.2.tgz", + "integrity": "sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==", "license": "MIT", "dependencies": { - "binary-extensions": "^2.0.0" + "@types/estree": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-object": "^1.0.0", + "unist-util-position": "^5.0.0", + "vfile-message": "^4.0.0" }, - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", + "node_modules/hast-util-to-parse5": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz", + "integrity": "sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-buffer": { - "version": "2.0.5", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", "license": "MIT", - "engines": { - "node": ">=4" + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-callable": { - "version": "1.2.7", + "node_modules/hastscript": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.0.tgz", + "integrity": "sha512-jzaLBGavEDKHrc5EfFImKN7nZKKBdSLIdGvCwDZ9TfzbF2ffXiov8CKE445L2Z1Ek2t/m4SKQ2j6Ipv7NyUolw==", "license": "MIT", - "engines": { - "node": ">= 0.4" + "dependencies": { + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-parse-selector": "^4.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-ci": { - "version": "2.0.0", + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "license": "MIT", - "dependencies": { - "ci-info": "^2.0.0" - }, "bin": { - "is-ci": "bin.js" + "he": "bin/he" } }, - "node_modules/is-color-stop": { + "node_modules/hex-color-regex": { "version": "1.1.0", - "license": "MIT", - "dependencies": { - "css-color-names": "^0.0.4", - "hex-color-regex": "^1.1.0", - "hsl-regex": "^1.0.0", - "hsla-regex": "^1.0.0", - "rgb-regex": "^1.0.1", - "rgba-regex": "^1.0.0" + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "license": "MIT" + }, + "node_modules/highlight.js": { + "version": "9.18.5", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.18.5.tgz", + "integrity": "sha512-a5bFyofd/BHCX52/8i8uJkjr9DYwXIPnM/plwI6W7ezItLGqzt7X2G2nXuYSfsIJdkwwj/g9DG1LkcGJI/dDoA==", + "deprecated": "Support has ended for 9.x series. Upgrade to @latest", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "engines": { + "node": "*" } }, - "node_modules/is-core-module": { - "version": "2.9.0", + "node_modules/history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", "license": "MIT", "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" } }, - "node_modules/is-data-descriptor": { - "version": "1.0.0", + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", "license": "MIT", "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" } }, - "node_modules/is-date-object": { - "version": "1.0.5", - "license": "MIT", + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "license": "BSD-3-Clause", "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "react-is": "^16.7.0" } }, - "node_modules/is-decimal": { - "version": "1.0.4", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } + "node_modules/hoist-non-react-statics/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" }, - "node_modules/is-descriptor": { - "version": "1.0.2", + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "license": "ISC" + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "license": "MIT", "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" } }, - "node_modules/is-directory": { - "version": "0.3.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } + "node_modules/hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==", + "license": "MIT" }, - "node_modules/is-docker": { - "version": "2.2.1", + "node_modules/hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==", + "license": "MIT" + }, + "node_modules/html-element-map": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/html-element-map/-/html-element-map-1.3.1.tgz", + "integrity": "sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==", "license": "MIT", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" + "dependencies": { + "array.prototype.filter": "^1.0.0", + "call-bind": "^1.0.2" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-extendable": { - "version": "0.1.1", + "node_modules/html-entities": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", + "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ], + "license": "MIT" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "license": "MIT" + }, + "node_modules/html-minifier-terser": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-7.2.0.tgz", + "integrity": "sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA==", "license": "MIT", + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "~5.3.2", + "commander": "^10.0.0", + "entities": "^4.4.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.15.1" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, "engines": { - "node": ">=0.10.0" + "node": "^14.13.1 || >=16.0.0" } }, - "node_modules/is-extglob": { - "version": "2.1.1", + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=14" } }, - "node_modules/is-finite": { - "version": "1.1.0", + "node_modules/html-tags": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-fullwidth-code-point": { + "node_modules/html-void-elements": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", + "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-generator-fn": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/is-generator-function": { - "version": "1.0.10", + "node_modules/html-webpack-plugin": { + "version": "5.6.3", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz", + "integrity": "sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==", "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10.13.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.20.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, - "node_modules/is-gif": { - "version": "3.0.0", + "node_modules/html-webpack-plugin/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "license": "MIT", - "dependencies": { - "file-type": "^10.4.0" - }, "engines": { - "node": ">=6" + "node": ">= 12" } }, - "node_modules/is-glob": { - "version": "4.0.3", + "node_modules/html-webpack-plugin/node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", "license": "MIT", "dependencies": { - "is-extglob": "^2.1.1" + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-hexadecimal": { - "version": "1.0.4", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "node": ">=12" } }, - "node_modules/is-installed-globally": { - "version": "0.4.0", + "node_modules/html2canvas": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz", + "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", "license": "MIT", "dependencies": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" + "css-line-break": "^2.1.0", + "text-segmentation": "^1.0.3" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8.0.0" } }, - "node_modules/is-jpg": { - "version": "2.0.0", + "node_modules/htmlparser2": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", + "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], "license": "MIT", - "engines": { - "node": ">=6" + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "entities": "^4.4.0" } }, - "node_modules/is-nan": { - "version": "1.3.2", + "node_modules/http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", + "license": "BSD-2-Clause" + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "license": "MIT" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.8" } }, - "node_modules/is-natural-number": { - "version": "4.0.1", + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", "license": "MIT" }, - "node_modules/is-negative-zero": { - "version": "2.0.2", + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "license": "MIT", - "engines": { - "node": ">= 0.4" + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8.0.0" } }, - "node_modules/is-npm": { - "version": "5.0.0", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", + "node_modules/http-proxy-middleware": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz", + "integrity": "sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==", "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" }, "engines": { - "node": ">= 0.4" + "node": ">=12.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } } }, - "node_modules/is-obj": { - "version": "1.0.1", + "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", "license": "MIT", "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-object": { - "version": "1.0.2", - "license": "MIT", + "node": ">=10" + }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-path-cwd": { - "version": "2.2.0", - "license": "MIT", - "engines": { - "node": ">=6" - } + "node_modules/http-proxy/node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "license": "MIT" }, - "node_modules/is-path-inside": { - "version": "3.0.3", + "node_modules/http-reasons": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/http-reasons/-/http-reasons-0.1.0.tgz", + "integrity": "sha512-P6kYh0lKZ+y29T2Gqz+RlC9WBLhKe8kDmcJ+A+611jFfxdPsbMRQ5aNmFRM3lENqFkK+HTTL+tlQviAiv0AbLQ==", + "license": "Apache-2.0" + }, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, "engines": { - "node": ">=8" + "node": ">=0.8", + "npm": ">=1.3.7" } }, - "node_modules/is-plain-obj": { - "version": "2.1.0", + "node_modules/http2-client": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/http2-client/-/http2-client-1.3.5.tgz", + "integrity": "sha512-EC2utToWl4RKfs5zd36Mxq7nzHHBuomZboI0yYL6Y0RmBgT7Sgkq4rQ0ezFTYoIsSs7Tm9SJe+o2FcAg6GBhGA==", + "license": "MIT" + }, + "node_modules/http2-wrapper": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", + "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", "license": "MIT", + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" + }, "engines": { - "node": ">=8" + "node": ">=10.19.0" } }, - "node_modules/is-plain-object": { - "version": "2.0.4", + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", + "license": "MIT" + }, + "node_modules/https-proxy-agent": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", "license": "MIT", "dependencies": { - "isobject": "^3.0.1" + "agent-base": "^7.1.2", + "debug": "4" }, "engines": { - "node": ">=0.10.0" + "node": ">= 14" } }, - "node_modules/is-png": { - "version": "1.1.0", - "license": "MIT", + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "license": "Apache-2.0", "engines": { - "node": ">=0.10.0" + "node": ">=10.17.0" } }, - "node_modules/is-regex": { - "version": "1.1.4", + "node_modules/husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "bin": { + "husky": "lib/bin.js" }, "engines": { - "node": ">= 0.4" + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/typicode" } }, - "node_modules/is-regexp": { - "version": "1.0.0", + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-resolvable": { - "version": "1.1.0", - "license": "ISC" + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } }, - "node_modules/is-retry-allowed": { - "version": "1.2.0", + "node_modules/ids": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/ids/-/ids-1.0.5.tgz", + "integrity": "sha512-XQ0yom/4KWTL29sLG+tyuycy7UmeaM/79GRtSJq6IG9cJGIPeBz5kwDCguie3TwxaMNIc3WtPi0cTa1XYHicpw==", + "license": "MIT" + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 4" } }, - "node_modules/is-root": { - "version": "2.1.0", + "node_modules/image-size": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.1.1.tgz", + "integrity": "sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==", "license": "MIT", + "dependencies": { + "queue": "6.0.2" + }, + "bin": { + "image-size": "bin/image-size.js" + }, "engines": { - "node": ">=6" + "node": ">=16.x" } }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", + "node_modules/imagemin": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-6.1.0.tgz", + "integrity": "sha512-8ryJBL1CN5uSHpiBMX0rJw79C9F9aJqMnjGnrd/1CafegpNuA81RBAAru/jQQEOWlOJJlpRnlcVFF6wq+Ist0A==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2" + "file-type": "^10.7.0", + "globby": "^8.0.1", + "make-dir": "^1.0.0", + "p-pipe": "^1.1.0", + "pify": "^4.0.1", + "replace-ext": "^1.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=6" } }, - "node_modules/is-stream": { - "version": "2.0.1", + "node_modules/imagemin-gifsicle": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-6.0.1.tgz", + "integrity": "sha512-kuu47c6iKDQ6R9J10xCwL0lgs0+sMz3LRHqRcJ2CRBWdcNmo3T5hUaM8hSZfksptZXJLGKk8heSAvwtSdB1Fng==", "license": "MIT", - "engines": { - "node": ">=8" + "dependencies": { + "exec-buffer": "^3.0.0", + "gifsicle": "^4.0.0", + "is-gif": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=6" } }, - "node_modules/is-string": { - "version": "1.0.7", + "node_modules/imagemin-jpegtran": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/imagemin-jpegtran/-/imagemin-jpegtran-6.0.0.tgz", + "integrity": "sha512-Ih+NgThzqYfEWv9t58EItncaaXIHR0u9RuhKa8CtVBlMBvY0dCIxgQJQCfwImA4AV1PMfmUKlkyIHJjb7V4z1g==", "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "exec-buffer": "^3.0.0", + "is-jpg": "^2.0.0", + "jpegtran-bin": "^4.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" } }, - "node_modules/is-subset": { - "version": "0.1.1", - "license": "MIT" - }, - "node_modules/is-svg": { - "version": "4.4.0", + "node_modules/imagemin-optipng": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-6.0.0.tgz", + "integrity": "sha512-FoD2sMXvmoNm/zKPOWdhKpWdFdF9qiJmKC17MxZJPH42VMAp17/QENI/lIuP7LCUnLVAloO3AUoTSNzfhpyd8A==", "license": "MIT", "dependencies": { - "fast-xml-parser": "^4.1.3" + "exec-buffer": "^3.0.0", + "is-png": "^1.0.0", + "optipng-bin": "^5.0.0" }, "engines": { "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-symbol": { - "version": "1.0.4", + "node_modules/imagemin-svgo": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-7.1.0.tgz", + "integrity": "sha512-0JlIZNWP0Luasn1HT82uB9nU9aa+vUj6kpT+MjPW11LbprXC+iC4HDwn1r4Q2/91qj4iy9tRZNsFySMlEpLdpg==", "license": "MIT", "dependencies": { - "has-symbols": "^1.0.2" + "is-svg": "^4.2.1", + "svgo": "^1.3.2" }, "engines": { - "node": ">= 0.4" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sindresorhus/imagemin-svgo?sponsor=1" } }, - "node_modules/is-typed-array": { - "version": "1.1.10", + "node_modules/imagemin-svgo/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "license": "MIT", "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "color-convert": "^1.9.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=4" } }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "license": "MIT" + "node_modules/imagemin-svgo/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } }, - "node_modules/is-url": { - "version": "1.2.4", - "license": "MIT" - }, - "node_modules/is-utf8": { - "version": "0.2.1", - "license": "MIT" - }, - "node_modules/is-weakref": { - "version": "1.0.2", + "node_modules/imagemin-svgo/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4" } }, - "node_modules/is-whitespace-character": { - "version": "1.0.4", + "node_modules/imagemin-svgo/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "color-name": "1.1.3" } }, - "node_modules/is-windows": { - "version": "1.0.2", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } + "node_modules/imagemin-svgo/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" }, - "node_modules/is-word-character": { - "version": "1.0.4", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "node_modules/imagemin-svgo/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" } }, - "node_modules/is-wsl": { - "version": "2.2.0", + "node_modules/imagemin-svgo/node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", "license": "MIT", "dependencies": { - "is-docker": "^2.0.0" + "mdn-data": "2.0.4", + "source-map": "^0.6.1" }, "engines": { - "node": ">=8" + "node": ">=8.0.0" } }, - "node_modules/is-yarn-global": { - "version": "0.3.0", - "license": "MIT" + "node_modules/imagemin-svgo/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } }, - "node_modules/is2": { - "version": "2.0.9", + "node_modules/imagemin-svgo/node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", "license": "MIT", "dependencies": { - "deep-is": "^0.1.3", - "ip-regex": "^4.1.0", - "is-url": "^1.2.4" + "css-tree": "^1.1.2" }, "engines": { - "node": ">=v0.10.0" + "node": ">=8.0.0" } }, - "node_modules/isarray": { - "version": "0.0.1", - "license": "MIT" - }, - "node_modules/isexe": { - "version": "2.0.0", - "license": "ISC" - }, - "node_modules/isobject": { - "version": "3.0.1", + "node_modules/imagemin-svgo/node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", "license": "MIT", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8.0.0" } }, - "node_modules/isstream": { - "version": "0.1.2", - "license": "MIT" + "node_modules/imagemin-svgo/node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "license": "CC0-1.0" }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", - "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=8" + "node_modules/imagemin-svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" } }, - "node_modules/istanbul-lib-instrument": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", - "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", - "dev": true, - "license": "BSD-3-Clause", + "node_modules/imagemin-svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "license": "BSD-2-Clause", "dependencies": { - "@babel/core": "^7.23.9", - "@babel/parser": "^7.23.9", - "@istanbuljs/schema": "^0.1.3", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^7.5.4" - }, - "engines": { - "node": ">=10" + "dom-serializer": "0", + "domelementtype": "1" } }, - "node_modules/istanbul-lib-report": { - "version": "3.0.1", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" + "node_modules/imagemin-svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "license": "BSD-2-Clause" + }, + "node_modules/imagemin-svgo/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/istanbul-lib-report/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "node_modules/imagemin-svgo/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.8.0" } }, - "node_modules/istanbul-lib-report/node_modules/make-dir": { - "version": "4.0.0", - "dev": true, + "node_modules/imagemin-svgo/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "license": "MIT", - "dependencies": { - "semver": "^7.5.3" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/imagemin-svgo/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "engines": { - "node": ">=8" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "dev": true, - "license": "BSD-3-Clause", + "node_modules/imagemin-svgo/node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "license": "CC0-1.0" + }, + "node_modules/imagemin-svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "license": "BSD-2-Clause", "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=10" + "boolbase": "~1.0.0" } }, - "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "node_modules/imagemin-svgo/node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "license": "ISC" + }, + "node_modules/imagemin-svgo/node_modules/source-map": { "version": "0.6.1", - "dev": true, + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, - "node_modules/istanbul-reports": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", - "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", - "dev": true, - "license": "BSD-3-Clause", + "node_modules/imagemin-svgo/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/isurl": { - "version": "1.0.0", + "node_modules/imagemin-svgo/node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", "license": "MIT", "dependencies": { - "has-to-string-tag-x": "^1.2.0", - "is-object": "^1.0.1" + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" }, "engines": { - "node": ">= 4" + "node": ">=4.0.0" } }, - "node_modules/jackspeak": { - "version": "2.3.6", - "license": "BlueOak-1.0.0", - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, + "node_modules/imagemin/node_modules/@nodelib/fs.stat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "license": "MIT", "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" + "node": ">= 6" } }, - "node_modules/jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", - "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", - "dev": true, + "node_modules/imagemin/node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", "license": "MIT", "dependencies": { - "@jest/core": "^29.7.0", - "@jest/types": "^29.6.3", - "import-local": "^3.0.2", - "jest-cli": "^29.7.0" - }, - "bin": { - "jest": "bin/jest.js" + "array-uniq": "^1.0.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "node": ">=0.10.0" } }, - "node_modules/jest-changed-files": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", - "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", - "dev": true, + "node_modules/imagemin/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "license": "MIT", "dependencies": { - "execa": "^5.0.0", - "jest-util": "^29.7.0", - "p-limit": "^3.1.0" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-changed-files/node_modules/p-limit": { - "version": "3.1.0", - "dev": true, + "node_modules/imagemin/node_modules/dir-glob": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz", + "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", "license": "MIT", "dependencies": { - "yocto-queue": "^0.1.0" + "arrify": "^1.0.1", + "path-type": "^3.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, - "node_modules/jest-circus": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", - "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", - "dev": true, + "node_modules/imagemin/node_modules/fast-glob": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", "license": "MIT", "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/expect": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^1.0.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.7.0", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-snapshot": "^29.7.0", - "jest-util": "^29.7.0", - "p-limit": "^3.1.0", - "pretty-format": "^29.7.0", - "pure-rand": "^6.0.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=4.0.0" } }, - "node_modules/jest-circus/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/imagemin/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/jest-circus/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "node_modules/imagemin/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "license": "ISC", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/imagemin/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "is-extglob": "^2.1.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/jest-circus/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/imagemin/node_modules/globby": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz", + "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "array-union": "^1.0.1", + "dir-glob": "2.0.0", + "fast-glob": "^2.0.2", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=4" } }, - "node_modules/jest-circus/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-circus/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "node_modules/imagemin/node_modules/globby/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/jest-circus/node_modules/p-limit": { - "version": "3.1.0", - "dev": true, + "node_modules/imagemin/node_modules/ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", + "license": "MIT" + }, + "node_modules/imagemin/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "license": "MIT" + }, + "node_modules/imagemin/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "license": "MIT", "dependencies": { - "yocto-queue": "^0.1.0" + "is-plain-object": "^2.0.4" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/jest-circus/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/imagemin/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "kind-of": "^3.0.2" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/jest-cli": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", - "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", - "dev": true, + "node_modules/imagemin/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "license": "MIT", "dependencies": { - "@jest/core": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "create-jest": "^29.7.0", - "exit": "^0.1.2", - "import-local": "^3.0.2", - "jest-config": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "yargs": "^17.3.1" - }, - "bin": { - "jest": "bin/jest.js" + "is-buffer": "^1.1.5" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "node": ">=0.10.0" } }, - "node_modules/jest-cli/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/imagemin/node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "pify": "^3.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=4" } }, - "node_modules/jest-cli/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "node_modules/imagemin/node_modules/make-dir/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=4" } }, - "node_modules/jest-cli/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/imagemin/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-cli/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-cli/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "node_modules/imagemin/node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/jest-cli/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/imagemin/node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "pify": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/jest-config": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", - "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", - "dev": true, + "node_modules/imagemin/node_modules/path-type/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "license": "MIT", - "dependencies": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.7.0", - "@jest/types": "^29.6.3", - "babel-jest": "^29.7.0", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.7.0", - "jest-environment-node": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.7.0", - "jest-runner": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@types/node": "*", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "ts-node": { - "optional": true - } + "node": ">=4" } }, - "node_modules/jest-config/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/imagemin/node_modules/slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==", "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/jest-config/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "node_modules/imagemin/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/jest-config/node_modules/ci-info": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", - "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], + "node_modules/immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", "license": "MIT", - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" } }, - "node_modules/jest-config/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/immutable": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.0.3.tgz", + "integrity": "sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==", + "license": "MIT" + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-config/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-config/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "node_modules/import-lazy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/jest-config/node_modules/strip-json-comments": { - "version": "3.1.1", + "node_modules/import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", "dev": true, "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, "engines": { "node": ">=8" }, @@ -16794,2962 +20353,3576 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-config/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/import-local/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "find-up": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/jest-diff": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", - "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", - "dev": true, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "license": "MIT", - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.6.3", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=0.8.19" } }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "node_modules/indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==", + "license": "MIT" + }, + "node_modules/infima": { + "version": "0.2.0-alpha.45", + "resolved": "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.45.tgz", + "integrity": "sha512-uyH0zfr1erU1OohLk0fT4Rrb94AOhguWNOcD9uGrSpRvNB+6gZXUoJX5J0NtvzBO10YZ9PgvA4NFgt+fYg8ojw==", "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=12" } }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "license": "ISC" + }, + "node_modules/inline-style-parser": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.4.tgz", + "integrity": "sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==", + "license": "MIT" + }, + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.4" } }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "license": "ISC", + "engines": { + "node": ">=12" + } }, - "node_modules/jest-diff/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 0.10" } }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/jest-docblock": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", - "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", - "dev": true, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "license": "MIT", "dependencies": { - "detect-newline": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "loose-envify": "^1.0.0" } }, - "node_modules/jest-each": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", - "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", - "dev": true, + "node_modules/ip-regex": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz", + "integrity": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==", "license": "MIT", - "dependencies": { - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "jest-get-type": "^29.6.3", - "jest-util": "^29.7.0", - "pretty-format": "^29.7.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-each/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "hasown": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">= 0.10" + } + }, + "node_modules/is-alphabetical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", + "license": "MIT", + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/jest-each/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "node_modules/is-arguments": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", + "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-each/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-each/node_modules/color-name": { - "version": "1.1.4", - "dev": true, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "license": "MIT" }, - "node_modules/jest-each/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-each/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "has-bigints": "^1.0.2" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-node": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", - "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", - "dev": true, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "license": "MIT", "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/fake-timers": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-mock": "^29.7.0", - "jest-util": "^29.7.0" + "binary-extensions": "^2.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-get-type": { - "version": "29.6.3", - "dev": true, + "node_modules/is-boolean-object": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.1.tgz", + "integrity": "sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==", "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-haste-map": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", - "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", - "dev": true, + "node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT", - "dependencies": { - "@jest/types": "^29.6.3", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.6.3", - "jest-util": "^29.7.0", - "jest-worker": "^29.7.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" + "node": ">=4" } }, - "node_modules/jest-haste-map/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-haste-map/node_modules/jest-worker": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", - "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", - "dev": true, + "node_modules/is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", "license": "MIT", "dependencies": { - "@types/node": "*", - "jest-util": "^29.7.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "ci-info": "^3.2.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "bin": { + "is-ci": "bin.js" } }, - "node_modules/jest-haste-map/node_modules/supports-color": { - "version": "8.1.1", - "dev": true, + "node_modules/is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" } }, - "node_modules/jest-leak-detector": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", - "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", - "dev": true, + "node_modules/is-core-module": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.0.tgz", + "integrity": "sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==", "license": "MIT", "dependencies": { - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" + "hasown": "^2.0.2" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-matcher-utils": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", - "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", - "dev": true, + "node_modules/is-data-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", "license": "MIT", "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^29.7.0", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" + "hasown": "^2.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.4" } }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-matcher-utils/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-matcher-utils/node_modules/color-convert": { + "node_modules/is-decimal": { "version": "2.0.1", - "dev": true, + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } }, - "node_modules/jest-matcher-utils/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" + "node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } }, - "node_modules/jest-matcher-utils/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/jest-matcher-utils/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" + "bin": { + "is-docker": "cli.js" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-message-util": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", - "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", - "dev": true, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.6.3", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-message-util/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "call-bound": "^1.0.3" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-message-util/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "node_modules/is-finite": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", + "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" + "node": ">=0.10.0" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-message-util/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", "dev": true, "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-message-util/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-message-util/node_modules/has-flag": { - "version": "4.0.0", + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, "license": "MIT", "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/jest-message-util/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-mock": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", - "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", - "dev": true, + "node_modules/is-gif": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz", + "integrity": "sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==", "license": "MIT", "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-util": "^29.7.0" + "file-type": "^10.4.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=6" } }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "dev": true, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "license": "MIT", - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" + "dependencies": { + "is-extglob": "^2.1.1" }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } + "engines": { + "node": ">=0.10.0" } }, - "node_modules/jest-regex-util": { - "version": "29.6.3", - "dev": true, + "node_modules/is-hexadecimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", "license": "MIT", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/jest-resolve": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", - "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", - "dev": true, + "node_modules/is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", "license": "MIT", "dependencies": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-resolve-dependencies": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", - "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", - "dev": true, + "node_modules/is-jpg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz", + "integrity": "sha512-ODlO0ruzhkzD3sdynIainVP5eoOFNN85rxA1+cwwnPe4dKyX0r5+hxNO5XpCrxlHcmb9vkOit9mhRD2JVuimHg==", "license": "MIT", - "dependencies": { - "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.7.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=6" } }, - "node_modules/jest-resolve/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-resolve/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "node_modules/is-nan": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", + "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-resolve/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==", + "license": "MIT" + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-resolve/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-resolve/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "node_modules/is-npm": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-6.0.0.tgz", + "integrity": "sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==", "license": "MIT", "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-resolve/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "kind-of": "^3.0.2" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/jest-runner": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", - "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", - "dev": true, + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", "license": "MIT", "dependencies": { - "@jest/console": "^29.7.0", - "@jest/environment": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.7.0", - "jest-environment-node": "^29.7.0", - "jest-haste-map": "^29.7.0", - "jest-leak-detector": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-resolve": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-util": "^29.7.0", - "jest-watcher": "^29.7.0", - "jest-worker": "^29.7.0", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-runner/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/is-number/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "license": "MIT" + }, + "node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "is-buffer": "^1.1.5" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/jest-runner/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, + "node": ">=0.10.0" + } + }, + "node_modules/is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "license": "MIT", "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-runner/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=6" } }, - "node_modules/jest-runner/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-runner/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/jest-runner/node_modules/jest-worker": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", - "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", - "dev": true, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", "license": "MIT", - "dependencies": { - "@types/node": "*", - "jest-util": "^29.7.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-runner/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "dev": true, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "isobject": "^3.0.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/jest-runner/node_modules/p-limit": { - "version": "3.1.0", - "dev": true, + "node_modules/is-png": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-png/-/is-png-1.1.0.tgz", + "integrity": "sha512-23Rmps8UEx3Bzqr0JqAtQo0tYP6sDfIfMt1rL9rzlla/zbteftI9LSJoqsIoGgL06sJboDGdVns4RTakAW/WTw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", "license": "MIT", "dependencies": { - "yocto-queue": "^0.1.0" + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-runner/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/jest-runner/node_modules/source-map-support": { - "version": "0.5.13", - "dev": true, - "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } + "node_modules/is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "license": "ISC" }, - "node_modules/jest-runner/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/jest-runtime": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", - "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", - "dev": true, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", "license": "MIT", - "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/fake-timers": "^29.7.0", - "@jest/globals": "^29.7.0", - "@jest/source-map": "^29.6.3", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-mock": "^29.7.0", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.7.0", - "jest-snapshot": "^29.7.0", - "jest-util": "^29.7.0", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=6" } }, - "node_modules/jest-runtime/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-runtime/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "call-bound": "^1.0.3" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-runtime/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-runtime/node_modules/color-name": { - "version": "1.1.4", - "dev": true, + "node_modules/is-subset": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz", + "integrity": "sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw==", "license": "MIT" }, - "node_modules/jest-runtime/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "node_modules/is-svg": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-4.4.0.tgz", + "integrity": "sha512-v+AgVwiK5DsGtT9ng+m4mClp6zDAmwrW8nZi6Gg15qzvBnRWWdfWA1TGaXyCDnWq5g5asofIgMVl3PjKxvk1ug==", "license": "MIT", + "dependencies": { + "fast-xml-parser": "^4.1.3" + }, "engines": { - "node": ">=8" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-runtime/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-snapshot": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", - "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", - "dev": true, + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", "license": "MIT", "dependencies": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^29.7.0", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0", - "natural-compare": "^1.4.0", - "pretty-format": "^29.7.0", - "semver": "^7.5.3" + "which-typed-array": "^1.1.16" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "license": "MIT" + }, + "node_modules/is-url": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", + "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==", + "license": "MIT" + }, + "node_modules/is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", + "license": "MIT" + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-snapshot/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "node_modules/is-weakref": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.0.tgz", + "integrity": "sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "call-bound": "^1.0.2" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-snapshot/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-snapshot/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-snapshot/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/jest-snapshot/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "is-docker": "^2.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/jest-util": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", - "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", - "dev": true, + "node_modules/is-yarn-global": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.4.1.tgz", + "integrity": "sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==", "license": "MIT", - "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "node_modules/jest-util/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/is2": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/is2/-/is2-2.0.9.tgz", + "integrity": "sha512-rZkHeBn9Zzq52sd9IUIV3a5mfwBY+o2HePMh0wkGBM4z4qjvy2GwVxQ6nNXSfw6MmVP6gf1QIlWjiOavhM3x5g==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "deep-is": "^0.1.3", + "ip-regex": "^4.1.0", + "is-url": "^1.2.4" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=v0.10.0" } }, - "node_modules/jest-util/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" }, - "node_modules/jest-util/node_modules/ci-info": { - "version": "3.8.0", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "license": "MIT", - "engines": { - "node": ">=8" - } + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" }, - "node_modules/jest-util/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-util/node_modules/color-name": { - "version": "1.1.4", - "dev": true, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", "license": "MIT" }, - "node_modules/jest-util/node_modules/has-flag": { - "version": "4.0.0", + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "engines": { "node": ">=8" } }, - "node_modules/jest-util/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/istanbul-lib-instrument": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", + "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "dependencies": { - "has-flag": "^4.0.0" + "@babel/core": "^7.23.9", + "@babel/parser": "^7.23.9", + "@istanbuljs/schema": "^0.1.3", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/jest-validate": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", - "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "dependencies": { - "@jest/types": "^29.6.3", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.6.3", - "leven": "^3.1.0", - "pretty-format": "^29.7.0" + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" } }, - "node_modules/jest-validate/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "dev": true, "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "semver": "^7.5.3" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-validate/node_modules/chalk": { - "version": "4.1.2", + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-validate/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, + "license": "BSD-3-Clause", "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-validate/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-validate/node_modules/has-flag": { - "version": "4.0.0", + "node_modules/istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/jest-validate/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" }, "engines": { - "node": ">=8" + "node": ">= 4" } }, - "node_modules/jest-watcher": { + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jest": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", - "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "license": "MIT", "dependencies": { - "@jest/test-result": "^29.7.0", + "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "jest-util": "^29.7.0", - "string-length": "^4.0.1" + "import-local": "^3.0.2", + "jest-cli": "^29.7.0" + }, + "bin": { + "jest": "bin/jest.js" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/jest-watcher/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/jest-changed-files": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-watcher/node_modules/chalk": { - "version": "4.1.2", + "node_modules/jest-changed-files/node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">= 8" } }, - "node_modules/jest-watcher/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/jest-changed-files/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/jest-watcher/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-watcher/node_modules/has-flag": { - "version": "4.0.0", + "node_modules/jest-changed-files/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "license": "MIT", "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-watcher/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/jest-changed-files/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-worker": { - "version": "27.5.1", + "node_modules/jest-changed-files/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, "license": "MIT", "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "path-key": "^3.0.0" }, "engines": { - "node": ">= 10.13.0" + "node": ">=8" } }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", + "node_modules/jest-changed-files/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", + "node_modules/jest-changed-files/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "shebang-regex": "^3.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "node": ">=8" } }, - "node_modules/joi": { - "version": "17.6.0", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^9.0.0", - "@hapi/topo": "^5.0.0", - "@sideway/address": "^4.1.3", - "@sideway/formula": "^3.0.0", - "@sideway/pinpoint": "^2.0.0" + "node_modules/jest-changed-files/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/jpegtran-bin": { - "version": "4.0.0", - "hasInstallScript": true, - "license": "MIT", + "node_modules/jest-changed-files/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", "dependencies": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.0", - "logalot": "^2.0.0" + "isexe": "^2.0.0" }, "bin": { - "jpegtran": "cli.js" + "node-which": "bin/node-which" }, "engines": { - "node": ">=6" + "node": ">= 8" } }, - "node_modules/js-levenshtein": { - "version": "1.1.6", + "node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "dev": true, "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/js-tokens": { - "version": "4.0.0", - "license": "MIT" - }, - "node_modules/js-yaml": { - "version": "4.1.0", + "node_modules/jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dev": true, "license": "MIT", "dependencies": { - "argparse": "^2.0.1" + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" }, "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsbn": { - "version": "0.1.1", - "license": "MIT" - }, - "node_modules/jsesc": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", - "bin": { - "jsesc": "bin/jsesc" + "jest": "bin/jest.js" }, "engines": { - "node": ">=6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/json-buffer": { - "version": "3.0.0", - "license": "MIT" - }, - "node_modules/json-parse-better-errors": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", + "node_modules/jest-cli/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, "license": "MIT" }, - "node_modules/json-pointer": { - "version": "0.6.2", - "license": "MIT", - "dependencies": { - "foreach": "^2.0.4" - } - }, - "node_modules/json-schema": { - "version": "0.4.0", - "license": "(AFL-2.1 OR BSD-3-Clause)" - }, - "node_modules/json-schema-compare": { - "version": "0.2.2", + "node_modules/jest-cli/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, "license": "MIT", - "dependencies": { - "lodash": "^4.17.4" + "engines": { + "node": ">=8" } }, - "node_modules/json-schema-merge-allof": { - "version": "0.8.1", + "node_modules/jest-cli/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, "license": "MIT", "dependencies": { - "compute-lcm": "^1.1.2", - "json-schema-compare": "^0.2.2", - "lodash": "^4.17.20" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=12.0.0" + "node": ">=8" } }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "license": "MIT" - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "license": "ISC" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" + "node_modules/jest-cli/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" }, "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/jsonfile": { - "version": "6.1.0", + "node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "dev": true, "license": "MIT", "dependencies": { - "universalify": "^2.0.0" + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } } }, - "node_modules/jsprim": { - "version": "1.4.2", + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dev": true, "license": "MIT", "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { - "node": ">=0.6.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/keyv": { - "version": "3.1.0", + "node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dev": true, "license": "MIT", "dependencies": { - "json-buffer": "3.0.0" + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/khroma": { - "version": "2.1.0" - }, - "node_modules/kind-of": { - "version": "6.0.3", + "node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "dev": true, "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/kleur": { - "version": "3.0.3", + "node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "dev": true, "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, "engines": { - "node": ">=6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/klona": { - "version": "2.0.5", + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true, "license": "MIT", "engines": { - "node": ">= 8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lang-feel": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/lang-feel/-/lang-feel-2.2.0.tgz", - "integrity": "sha512-Ebo5nftYsMfJzB3Ny8Oy4oaDXZXb5x61qtVVmKv6aImvAZUbT76mD60ZbEilizjZQzsR2CcU1iMK5sacIa1NVA==", + "node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dev": true, + "license": "MIT", "dependencies": { - "@codemirror/autocomplete": "^6.16.2", - "@codemirror/language": "^6.10.2", - "@codemirror/state": "^6.4.1", - "@codemirror/view": "^6.28.1", - "@lezer/common": "^1.2.1", - "lezer-feel": "^1.3.0" + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" }, "engines": { - "node": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/latest-version": { - "version": "5.1.0", + "node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dev": true, "license": "MIT", "dependencies": { - "package-json": "^6.3.0" + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/layout-base": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/lazy-cache": { - "version": "2.0.2", + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dev": true, "license": "MIT", "dependencies": { - "set-getter": "^0.1.0" + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/leven": { - "version": "3.1.0", + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "dev": true, "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, "engines": { - "node": ">=6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lezer-feel": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/lezer-feel/-/lezer-feel-1.4.0.tgz", - "integrity": "sha512-kNxG7O38gwpuYy+C3JCRxQNTCE2qu9uTuH5dE3EGVnRhIQMe6rPDz0S8t3urLEOsMud6HI795m6zX2ujfUaqTw==", + "node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, + "license": "MIT", "dependencies": { - "@lezer/highlight": "^1.2.1", - "@lezer/lr": "^1.4.2", - "min-dash": "^4.2.1" + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" }, "engines": { - "node": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lilconfig": { - "version": "2.1.0", + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, "license": "MIT", "engines": { - "node": ">=10" + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } } }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "license": "MIT" - }, - "node_modules/lint-staged": { - "version": "14.0.1", + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", "dev": true, "license": "MIT", - "dependencies": { - "chalk": "5.3.0", - "commander": "11.0.0", - "debug": "4.3.4", - "execa": "7.2.0", - "lilconfig": "2.1.0", - "listr2": "6.6.1", - "micromatch": "4.0.5", - "pidtree": "0.6.0", - "string-argv": "0.3.2", - "yaml": "2.3.1" - }, - "bin": { - "lint-staged": "bin/lint-staged.js" - }, "engines": { - "node": "^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://opencollective.com/lint-staged" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/chalk": { - "version": "5.3.0", + "node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/commander": { - "version": "11.0.0", - "dev": true, - "license": "MIT", "engines": { - "node": ">=16" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/execa": { - "version": "7.2.0", + "node_modules/jest-resolve-dependencies": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" }, "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/get-stream": { - "version": "6.0.1", + "node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "license": "MIT", - "engines": { - "node": ">=10" + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/human-signals": { - "version": "4.3.1", + "node_modules/jest-runner/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "license": "Apache-2.0", + "license": "BSD-3-Clause", "engines": { - "node": ">=14.18.0" + "node": ">=0.10.0" } }, - "node_modules/lint-staged/node_modules/is-stream": { - "version": "3.0.0", + "node_modules/jest-runner/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "node_modules/lint-staged/node_modules/mimic-fn": { - "version": "4.0.0", + "node_modules/jest-runtime": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, "license": "MIT", - "engines": { - "node": ">=12" + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/npm-run-path": { - "version": "5.1.0", + "node_modules/jest-snapshot": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "license": "MIT", "dependencies": { - "path-key": "^4.0.0" + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.7.0", + "semver": "^7.5.3" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/onetime": { - "version": "6.0.0", - "dev": true, + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "license": "MIT", "dependencies": { - "mimic-fn": "^4.0.0" + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/path-key": { - "version": "4.0.0", + "node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, "license": "MIT", - "engines": { - "node": ">=12" + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/strip-final-newline": { - "version": "3.0.0", + "node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, "license": "MIT", - "engines": { - "node": ">=12" + "dependencies": { + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/lint-staged/node_modules/yaml": { - "version": "2.3.1", - "dev": true, - "license": "ISC", - "engines": { - "node": ">= 14" - } - }, - "node_modules/liquid-json": { - "version": "0.3.1", - "license": "Apache-2.0", + "node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, "engines": { - "node": ">=4" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/list-item": { - "version": "1.1.1", + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "license": "MIT", "dependencies": { - "expand-range": "^1.8.1", - "extend-shallow": "^2.0.1", - "is-number": "^2.1.0", - "repeat-string": "^1.5.2" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/list-item/node_modules/is-buffer": { - "version": "1.1.6", - "license": "MIT" + "node_modules/jiti": { + "version": "1.21.7", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", + "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", + "license": "MIT", + "bin": { + "jiti": "bin/jiti.js" + } }, - "node_modules/list-item/node_modules/is-number": { - "version": "2.1.0", + "node_modules/joi": { + "version": "17.13.3", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz", + "integrity": "sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.3.0", + "@hapi/topo": "^5.1.0", + "@sideway/address": "^4.1.5", + "@sideway/formula": "^3.0.1", + "@sideway/pinpoint": "^2.0.0" + } + }, + "node_modules/jpegtran-bin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jpegtran-bin/-/jpegtran-bin-4.0.0.tgz", + "integrity": "sha512-2cRl1ism+wJUoYAYFt6O/rLBfpXNWG2dUWbgcEkTt5WGMnqI46eEro8T4C5zGROxKRqyKpCBSdHPvt5UYCtxaQ==", + "hasInstallScript": true, "license": "MIT", "dependencies": { - "kind-of": "^3.0.2" + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "logalot": "^2.0.0" + }, + "bin": { + "jpegtran": "cli.js" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/list-item/node_modules/kind-of": { - "version": "3.2.2", + "node_modules/js-levenshtein": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", + "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==", "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/listenercount": { - "version": "1.0.1", - "license": "ISC" + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" }, - "node_modules/listr2": { - "version": "6.6.1", - "dev": true, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "license": "MIT", "dependencies": { - "cli-truncate": "^3.1.0", - "colorette": "^2.0.20", - "eventemitter3": "^5.0.1", - "log-update": "^5.0.1", - "rfdc": "^1.3.0", - "wrap-ansi": "^8.1.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "enquirer": ">= 2.3.0 < 3" + "argparse": "^2.0.1" }, - "peerDependenciesMeta": { - "enquirer": { - "optional": true - } + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/listr2/node_modules/ansi-regex": { - "version": "6.0.1", - "dev": true, + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", + "license": "MIT" + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "license": "MIT", - "engines": { - "node": ">=12" + "bin": { + "jsesc": "bin/jsesc" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "engines": { + "node": ">=6" } }, - "node_modules/listr2/node_modules/ansi-styles": { - "version": "6.2.1", - "dev": true, + "node_modules/json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", + "license": "MIT" + }, + "node_modules/json-crawl": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/json-crawl/-/json-crawl-0.5.3.tgz", + "integrity": "sha512-BEjjCw8c7SxzNK4orhlWD5cXQh8vCk2LqDr4WgQq4CV+5dvopeYwt1Tskg67SuSLKvoFH5g0yuYtg7rcfKV6YA==", "license": "MIT", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=14.0.0" } }, - "node_modules/listr2/node_modules/emoji-regex": { - "version": "9.2.2", - "dev": true, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", "license": "MIT" }, - "node_modules/listr2/node_modules/eventemitter3": { - "version": "5.0.1", - "dev": true, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "license": "MIT" }, - "node_modules/listr2/node_modules/string-width": { - "version": "5.1.2", - "dev": true, + "node_modules/json-pointer": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/json-pointer/-/json-pointer-0.6.2.tgz", + "integrity": "sha512-vLWcKbOaXlO+jvRy4qNd+TI1QUPZzfJj1tpJ3vAXDych5XJf93ftpUKe5pKCrzyIIwgBJcOcCVRUfqQP25afBw==", "license": "MIT", "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "foreach": "^2.0.4" } }, - "node_modules/listr2/node_modules/strip-ansi": { - "version": "7.1.0", - "dev": true, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "license": "(AFL-2.1 OR BSD-3-Clause)" + }, + "node_modules/json-schema-compare": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/json-schema-compare/-/json-schema-compare-0.2.2.tgz", + "integrity": "sha512-c4WYmDKyJXhs7WWvAWm3uIYnfyWFoIp+JEoX34rctVvEkMYCPGhXtvmFFXiffBbxfZsvQ0RNnV5H7GvDF5HCqQ==", "license": "MIT", "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "lodash": "^4.17.4" } }, - "node_modules/listr2/node_modules/wrap-ansi": { - "version": "8.1.0", - "dev": true, + "node_modules/json-schema-merge-allof": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/json-schema-merge-allof/-/json-schema-merge-allof-0.8.1.tgz", + "integrity": "sha512-CTUKmIlPJbsWfzRRnOXz+0MjIqvnleIXwFTzz+t9T86HnYX/Rozria6ZVGLktAU9e+NygNljveP+yxqtQp/Q4w==", "license": "MIT", "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" + "compute-lcm": "^1.1.2", + "json-schema-compare": "^0.2.2", + "lodash": "^4.17.20" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "node": ">=12.0.0" } }, - "node_modules/livereload-js": { - "version": "2.4.0", + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "license": "MIT" }, - "node_modules/load-json-file": { - "version": "1.1.0", + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "license": "ISC" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "license": "MIT", - "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" + "bin": { + "json5": "lib/cli.js" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/load-json-file/node_modules/parse-json": { - "version": "2.2.0", + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "license": "MIT", "dependencies": { - "error-ex": "^1.2.0" + "universalify": "^2.0.0" }, - "engines": { - "node": ">=0.10.0" + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/load-json-file/node_modules/pify": { - "version": "2.3.0", + "node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "license": "MIT", + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=0.6.0" } }, - "node_modules/load-json-file/node_modules/strip-bom": { - "version": "2.0.0", + "node_modules/katex": { + "version": "0.16.18", + "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.18.tgz", + "integrity": "sha512-LRuk0rPdXrecAFwQucYjMiIs0JFefk6N1q/04mlw14aVIVgxq1FO0MA9RiIIGVaKOB5GIP5GH4aBBNraZERmaQ==", + "funding": [ + "https://opencollective.com/katex", + "https://github.com/sponsors/katex" + ], "license": "MIT", "dependencies": { - "is-utf8": "^0.2.0" + "commander": "^8.3.0" }, - "engines": { - "node": ">=0.10.0" + "bin": { + "katex": "cli.js" } }, - "node_modules/load-script": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/loader-runner": { - "version": "4.2.0", + "node_modules/katex/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "license": "MIT", "engines": { - "node": ">=6.11.5" + "node": ">= 12" } }, - "node_modules/loader-utils": { - "version": "2.0.2", + "node_modules/keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", "license": "MIT", "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" + "json-buffer": "3.0.0" } }, - "node_modules/locate-path": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, + "node_modules/khroma": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/khroma/-/khroma-2.1.0.tgz", + "integrity": "sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==" + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/lodash": { - "version": "4.17.21", - "license": "MIT" - }, - "node_modules/lodash-es": { - "version": "4.17.21", - "license": "MIT" - }, - "node_modules/lodash._reinterpolate": { - "version": "3.0.0", - "license": "MIT" - }, - "node_modules/lodash.assignin": { - "version": "4.2.0", - "license": "MIT" - }, - "node_modules/lodash.bind": { - "version": "4.2.1", - "license": "MIT" - }, - "node_modules/lodash.chunk": { - "version": "4.2.0", - "license": "MIT" - }, - "node_modules/lodash.clonedeep": { - "version": "4.5.0", - "license": "MIT" - }, - "node_modules/lodash.curry": { - "version": "4.1.1", - "license": "MIT" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "license": "MIT" - }, - "node_modules/lodash.defaults": { - "version": "4.2.0", - "license": "MIT" - }, - "node_modules/lodash.escape": { - "version": "4.0.1", - "license": "MIT" - }, - "node_modules/lodash.filter": { - "version": "4.6.0", - "license": "MIT" - }, - "node_modules/lodash.flatten": { - "version": "4.4.0", - "license": "MIT" - }, - "node_modules/lodash.flattendeep": { - "version": "4.4.0", - "license": "MIT" - }, - "node_modules/lodash.flow": { - "version": "3.5.0", - "license": "MIT" - }, - "node_modules/lodash.foreach": { - "version": "4.5.0", - "license": "MIT" - }, - "node_modules/lodash.isequal": { - "version": "4.5.0", - "license": "MIT" - }, - "node_modules/lodash.map": { - "version": "4.6.0", - "license": "MIT" - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "license": "MIT" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "license": "MIT" - }, - "node_modules/lodash.padstart": { - "version": "4.6.1", - "license": "MIT" - }, - "node_modules/lodash.pick": { - "version": "4.4.0", - "license": "MIT" - }, - "node_modules/lodash.reduce": { - "version": "4.6.0", - "license": "MIT" - }, - "node_modules/lodash.reject": { - "version": "4.6.0", - "license": "MIT" - }, - "node_modules/lodash.some": { - "version": "4.6.0", - "license": "MIT" + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "node_modules/lodash.sortby": { - "version": "4.7.0", + "node_modules/kolorist": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz", + "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==", "license": "MIT" }, - "node_modules/lodash.template": { - "version": "4.5.0", + "node_modules/lang-feel": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/lang-feel/-/lang-feel-2.2.0.tgz", + "integrity": "sha512-Ebo5nftYsMfJzB3Ny8Oy4oaDXZXb5x61qtVVmKv6aImvAZUbT76mD60ZbEilizjZQzsR2CcU1iMK5sacIa1NVA==", "license": "MIT", "dependencies": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" + "@codemirror/autocomplete": "^6.16.2", + "@codemirror/language": "^6.10.2", + "@codemirror/state": "^6.4.1", + "@codemirror/view": "^6.28.1", + "@lezer/common": "^1.2.1", + "lezer-feel": "^1.3.0" + }, + "engines": { + "node": "*" } }, - "node_modules/lodash.templatesettings": { - "version": "4.2.0", + "node_modules/langium": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/langium/-/langium-3.0.0.tgz", + "integrity": "sha512-+Ez9EoiByeoTu/2BXmEaZ06iPNXM6thWJp02KfBO/raSMyCJ4jw7AkWWa+zBCTm0+Tw1Fj9FOxdqSskyN5nAwg==", "license": "MIT", "dependencies": { - "lodash._reinterpolate": "^3.0.0" + "chevrotain": "~11.0.3", + "chevrotain-allstar": "~0.3.0", + "vscode-languageserver": "~9.0.1", + "vscode-languageserver-textdocument": "~1.0.11", + "vscode-uri": "~3.0.8" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "license": "MIT" - }, - "node_modules/log-update": { - "version": "5.0.1", - "dev": true, + "node_modules/latest-version": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-7.0.0.tgz", + "integrity": "sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==", "license": "MIT", "dependencies": { - "ansi-escapes": "^5.0.0", - "cli-cursor": "^4.0.0", - "slice-ansi": "^5.0.0", - "strip-ansi": "^7.0.1", - "wrap-ansi": "^8.0.1" + "package-json": "^8.1.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-update/node_modules/ansi-escapes": { - "version": "5.0.0", - "dev": true, + "node_modules/launch-editor": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.9.1.tgz", + "integrity": "sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==", "license": "MIT", "dependencies": { - "type-fest": "^1.0.2" + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" + } + }, + "node_modules/layout-base": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/layout-base/-/layout-base-1.0.2.tgz", + "integrity": "sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==", + "license": "MIT" + }, + "node_modules/lazy-cache": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", + "integrity": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==", + "license": "MIT", + "dependencies": { + "set-getter": "^0.1.0" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/log-update/node_modules/ansi-regex": { - "version": "6.0.1", - "dev": true, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "license": "MIT", "engines": { - "node": ">=12" + "node": ">=6" + } + }, + "node_modules/lezer-feel": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/lezer-feel/-/lezer-feel-1.4.0.tgz", + "integrity": "sha512-kNxG7O38gwpuYy+C3JCRxQNTCE2qu9uTuH5dE3EGVnRhIQMe6rPDz0S8t3urLEOsMud6HI795m6zX2ujfUaqTw==", + "license": "MIT", + "dependencies": { + "@lezer/highlight": "^1.2.1", + "@lezer/lr": "^1.4.2", + "min-dash": "^4.2.1" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "engines": { + "node": "*" } }, - "node_modules/log-update/node_modules/ansi-styles": { - "version": "6.2.1", - "dev": true, + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", "license": "MIT", "engines": { - "node": ">=12" + "node": ">=14" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/antonk52" } }, - "node_modules/log-update/node_modules/emoji-regex": { - "version": "9.2.2", - "dev": true, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "license": "MIT" }, - "node_modules/log-update/node_modules/string-width": { - "version": "5.1.2", + "node_modules/lint-staged": { + "version": "14.0.1", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-14.0.1.tgz", + "integrity": "sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==", "dev": true, "license": "MIT", "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "chalk": "5.3.0", + "commander": "11.0.0", + "debug": "4.3.4", + "execa": "7.2.0", + "lilconfig": "2.1.0", + "listr2": "6.6.1", + "micromatch": "4.0.5", + "pidtree": "0.6.0", + "string-argv": "0.3.2", + "yaml": "2.3.1" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" }, "engines": { - "node": ">=12" + "node": "^16.14.0 || >=18.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://opencollective.com/lint-staged" } }, - "node_modules/log-update/node_modules/strip-ansi": { - "version": "7.1.0", + "node_modules/lint-staged/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", "dev": true, "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, "engines": { - "node": ">=12" + "node": "^12.17.0 || ^14.13 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/log-update/node_modules/type-fest": { - "version": "1.4.0", + "node_modules/lint-staged/node_modules/commander": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz", + "integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==", "dev": true, - "license": "(MIT OR CC0-1.0)", + "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=16" } }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "8.1.0", + "node_modules/lint-staged/node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "license": "MIT", "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "node": ">= 8" } }, - "node_modules/logalot": { - "version": "2.1.0", + "node_modules/lint-staged/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, "license": "MIT", "dependencies": { - "figures": "^1.3.5", - "squeak": "^1.0.0" + "ms": "2.1.2" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/longest": { - "version": "1.0.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "license": "MIT", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" + "node": ">=6.0" }, - "bin": { - "loose-envify": "cli.js" + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/loud-rejection": { - "version": "1.6.0", + "node_modules/lint-staged/node_modules/execa": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "dev": true, "license": "MIT", "dependencies": { - "currently-unhandled": "^0.4.1", - "signal-exit": "^3.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/lower-case": { - "version": "2.0.2", + "node_modules/lint-staged/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lowercase-keys": { - "version": "1.0.1", - "license": "MIT", + "node_modules/lint-staged/node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "dev": true, + "license": "Apache-2.0", "engines": { - "node": ">=0.10.0" + "node": ">=14.18.0" } }, - "node_modules/lpad-align": { - "version": "1.1.2", + "node_modules/lint-staged/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, "license": "MIT", - "dependencies": { - "get-stdin": "^4.0.1", - "indent-string": "^2.1.0", - "longest": "^1.0.0", - "meow": "^3.3.0" - }, - "bin": { - "lpad-align": "cli.js" - }, "engines": { - "node": ">=0.10.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lpad-align/node_modules/indent-string": { + "node_modules/lint-staged/node_modules/lilconfig": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, "license": "MIT", - "dependencies": { - "repeating": "^2.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/lru-cache": { - "version": "6.0.0", - "license": "ISC", + "node_modules/lint-staged/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "license": "MIT", "dependencies": { - "yallist": "^4.0.0" + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, "engines": { - "node": ">=10" + "node": ">=8.6" } }, - "node_modules/luxon": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.5.0.tgz", - "integrity": "sha512-rh+Zjr6DNfUYR3bPwJEnuwDdqMbxZW7LOQfUN4B54+Cl+0o5zaU9RJ6bcidfDtC1cWCZXQ+nvX8bf6bAji37QQ==", + "node_modules/lint-staged/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "license": "MIT", "engines": { "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/make-dir": { - "version": "3.1.0", + "node_modules/lint-staged/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/lint-staged/node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "dev": true, "license": "MIT", "dependencies": { - "semver": "^6.0.0" + "path-key": "^4.0.0" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/makeerror": { - "version": "1.0.12", + "node_modules/lint-staged/node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "tmpl": "1.0.5" + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/map-cache": { - "version": "0.2.2", + "node_modules/lint-staged/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, "license": "MIT", + "dependencies": { + "mimic-fn": "^4.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/map-obj": { - "version": "1.0.1", + "node_modules/lint-staged/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/map-visit": { - "version": "1.0.0", + "node_modules/lint-staged/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, "license": "MIT", "dependencies": { - "object-visit": "^1.0.0" + "shebang-regex": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/markdown-escapes": { - "version": "1.0.4", + "node_modules/lint-staged/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": ">=8" } }, - "node_modules/markdown-link": { - "version": "0.1.1", + "node_modules/lint-staged/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/markdown-toc": { - "version": "1.2.0", - "license": "MIT", + "node_modules/lint-staged/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", "dependencies": { - "concat-stream": "^1.5.2", - "diacritics-map": "^0.1.0", - "gray-matter": "^2.1.0", - "lazy-cache": "^2.0.2", - "list-item": "^1.1.1", - "markdown-link": "^0.1.1", - "minimist": "^1.2.0", - "mixin-deep": "^1.1.3", - "object.pick": "^1.2.0", - "remarkable": "^1.7.1", - "repeat-string": "^1.6.1", - "strip-color": "^0.1.0" + "isexe": "^2.0.0" }, "bin": { - "markdown-toc": "cli.js" + "node-which": "bin/node-which" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/markdown-toc/node_modules/argparse": { - "version": "1.0.10", - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" + "node": ">= 8" } }, - "node_modules/markdown-toc/node_modules/autolinker": { - "version": "0.28.1", - "license": "MIT", - "dependencies": { - "gulp-header": "^1.7.1" + "node_modules/liquid-json": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/liquid-json/-/liquid-json-0.3.1.tgz", + "integrity": "sha512-wUayTU8MS827Dam6MxgD72Ui+KOSF+u/eIqpatOtjnvgJ0+mnDq33uC2M7J0tPK+upe/DpUAuK4JUU89iBoNKQ==", + "license": "Apache-2.0", + "engines": { + "node": ">=4" } }, - "node_modules/markdown-toc/node_modules/gray-matter": { - "version": "2.1.1", + "node_modules/list-item": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz", + "integrity": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==", "license": "MIT", "dependencies": { - "ansi-red": "^0.1.1", - "coffee-script": "^1.12.4", + "expand-range": "^1.8.1", "extend-shallow": "^2.0.1", - "js-yaml": "^3.8.1", - "toml": "^2.3.2" + "is-number": "^2.1.0", + "repeat-string": "^1.5.2" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/markdown-toc/node_modules/js-yaml": { - "version": "3.14.1", + "node_modules/listenercount": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz", + "integrity": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==", + "license": "ISC" + }, + "node_modules/listr2": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-6.6.1.tgz", + "integrity": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==", + "dev": true, "license": "MIT", "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } + "cli-truncate": "^3.1.0", + "colorette": "^2.0.20", + "eventemitter3": "^5.0.1", + "log-update": "^5.0.1", + "rfdc": "^1.3.0", + "wrap-ansi": "^8.1.0" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "enquirer": ">= 2.3.0 < 3" + }, + "peerDependenciesMeta": { + "enquirer": { + "optional": true + } + } }, - "node_modules/markdown-toc/node_modules/remarkable": { - "version": "1.7.4", + "node_modules/listr2/node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/livereload-js": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/livereload-js/-/livereload-js-2.4.0.tgz", + "integrity": "sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw==", + "license": "MIT" + }, + "node_modules/load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", "license": "MIT", "dependencies": { - "argparse": "^1.0.10", - "autolinker": "~0.28.0" + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" }, - "bin": { - "remarkable": "bin/remarkable.js" + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/load-json-file/node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "license": "MIT", + "dependencies": { + "error-ex": "^1.2.0" }, "engines": { - "node": ">= 0.10.0" + "node": ">=0.10.0" } }, - "node_modules/marked": { - "version": "15.0.3", - "resolved": "https://registry.npmjs.org/marked/-/marked-15.0.3.tgz", - "integrity": "sha512-Ai0cepvl2NHnTcO9jYDtcOEtVBNVYR31XnEA3BndO7f5As1wzpcOceSUM8FDkNLJNIODcLpDTWay/qQhqbuMvg==", - "bin": { - "marked": "bin/marked.js" + "node_modules/load-json-file/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/load-json-file/node_modules/strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "license": "MIT", + "dependencies": { + "is-utf8": "^0.2.0" }, "engines": { - "node": ">= 18" + "node": ">=0.10.0" } }, - "node_modules/math-random": { - "version": "1.0.4", + "node_modules/load-script": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/load-script/-/load-script-1.0.0.tgz", + "integrity": "sha512-kPEjMFtZvwL9TaZo0uZ2ml+Ye9HUMmPwbYRJ324qF9tqMejwykJ5ggTyvzmrbBeapCAbk98BSbTeovHEEP1uCA==", "license": "MIT" }, - "node_modules/md5.js": { - "version": "1.3.5", + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", "license": "MIT", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "engines": { + "node": ">=6.11.5" } }, - "node_modules/mdast-squeeze-paragraphs": { - "version": "4.0.0", + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "license": "MIT", "dependencies": { - "unist-util-remove": "^2.0.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=8.9.0" } }, - "node_modules/mdast-util-definitions": { - "version": "4.0.0", + "node_modules/loader-utils/node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "license": "MIT", - "dependencies": { - "unist-util-visit": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "*" } }, - "node_modules/mdast-util-definitions/node_modules/unist-util-visit": { - "version": "2.0.3", + "node_modules/local-pkg": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.1.tgz", + "integrity": "sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0", - "unist-util-visit-parents": "^3.0.0" + "mlly": "^1.7.3", + "pkg-types": "^1.2.1" + }, + "engines": { + "node": ">=14" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/mdast-util-definitions/node_modules/unist-util-visit-parents": { - "version": "3.1.1", + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0" + "p-locate": "^4.1.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=8" } }, - "node_modules/mdast-util-from-markdown": { - "version": "1.3.1", + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "license": "MIT" + }, + "node_modules/lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", + "license": "MIT" + }, + "node_modules/lodash.chunk": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.chunk/-/lodash.chunk-4.2.0.tgz", + "integrity": "sha512-ZzydJKfUHJwHa+hF5X66zLFCBrWn5GeF28OHEr4WVWtNDXlQ/IjWKPBiikqKo2ne0+v6JgCgJ0GzJp8k8bHC7w==", + "license": "MIT" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "license": "MIT" + }, + "node_modules/lodash.escape": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz", + "integrity": "sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==", + "license": "MIT" + }, + "node_modules/lodash.flattendeep": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", + "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==", + "license": "MIT" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "license": "MIT" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "license": "MIT" + }, + "node_modules/lodash.padstart": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==", + "license": "MIT" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", + "license": "MIT" + }, + "node_modules/lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", "license": "MIT", "dependencies": { - "@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" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" } }, - "node_modules/mdast-util-from-markdown/node_modules/mdast-util-to-string": { - "version": "3.2.0", + "node_modules/lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", "license": "MIT", "dependencies": { - "@types/mdast": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "lodash._reinterpolate": "^3.0.0" } }, - "node_modules/mdast-util-from-markdown/node_modules/unist-util-stringify-position": { - "version": "3.0.3", + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "license": "MIT" + }, + "node_modules/log-update": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-5.0.1.tgz", + "integrity": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==", + "dev": true, "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0" + "ansi-escapes": "^5.0.0", + "cli-cursor": "^4.0.0", + "slice-ansi": "^5.0.0", + "strip-ansi": "^7.0.1", + "wrap-ansi": "^8.0.1" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mdast-util-to-hast": { - "version": "10.0.1", + "node_modules/log-update/node_modules/ansi-escapes": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-5.0.0.tgz", + "integrity": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==", + "dev": true, "license": "MIT", "dependencies": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "mdast-util-definitions": "^4.0.0", - "mdurl": "^1.0.0", - "unist-builder": "^2.0.0", - "unist-util-generated": "^1.0.0", - "unist-util-position": "^3.0.0", - "unist-util-visit": "^2.0.0" + "type-fest": "^1.0.2" + }, + "engines": { + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mdast-util-to-hast/node_modules/unist-util-visit": { - "version": "2.0.3", + "node_modules/log-update/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0", - "unist-util-visit-parents": "^3.0.0" + "engines": { + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/mdast-util-to-hast/node_modules/unist-util-visit-parents": { - "version": "3.1.1", + "node_modules/log-update/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0" + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/mdast-util-to-string": { - "version": "2.0.0", - "license": "MIT", + "node_modules/log-update/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mdn-data": { - "version": "2.0.14", - "license": "CC0-1.0" + "node_modules/logalot": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/logalot/-/logalot-2.1.0.tgz", + "integrity": "sha512-Ah4CgdSRfeCJagxQhcVNMi9BfGYyEKLa6d7OA6xSbld/Hg3Cf2QiOa1mDpmG7Ve8LOH6DN3mdttzjQAvWTyVkw==", + "license": "MIT", + "dependencies": { + "figures": "^1.3.5", + "squeak": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/mdurl": { + "node_modules/longest": { "version": "1.0.1", - "license": "MIT" - }, - "node_modules/media-typer": { - "version": "0.3.0", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha512-k+yt5n3l48JU4k8ftnKG6V7u32wyH2NfKzeMto9F/QRE0amxy/LayxwlvjjkZEIzqR+19IrtFO8p5kB9QaYUFg==", "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=0.10.0" } }, - "node_modules/memfs": { - "version": "3.4.7", - "license": "Unlicense", + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", "dependencies": { - "fs-monkey": "^1.0.3" + "js-tokens": "^3.0.0 || ^4.0.0" }, - "engines": { - "node": ">= 4.0.0" + "bin": { + "loose-envify": "cli.js" } }, - "node_modules/memoize-one": { - "version": "5.1.1", - "license": "MIT" - }, - "node_modules/meow": { - "version": "3.7.0", + "node_modules/loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==", "license": "MIT", "dependencies": { - "camelcase-keys": "^2.0.0", - "decamelize": "^1.1.2", - "loud-rejection": "^1.0.0", - "map-obj": "^1.0.1", - "minimist": "^1.1.3", - "normalize-package-data": "^2.3.4", - "object-assign": "^4.0.1", - "read-pkg-up": "^1.0.1", - "redent": "^1.0.0", - "trim-newlines": "^1.0.0" + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "license": "MIT" + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } }, - "node_modules/merge-stream": { - "version": "2.0.0", - "license": "MIT" + "node_modules/lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/merge2": { - "version": "1.4.1", + "node_modules/lpad-align": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/lpad-align/-/lpad-align-1.1.2.tgz", + "integrity": "sha512-MMIcFmmR9zlGZtBcFOows6c2COMekHCIFJz3ew/rRpKZ1wR4mXDPzvcVqLarux8M33X4TPSq2Jdw8WJj0q0KbQ==", "license": "MIT", + "dependencies": { + "get-stdin": "^4.0.1", + "indent-string": "^2.1.0", + "longest": "^1.0.0", + "meow": "^3.3.0" + }, + "bin": { + "lpad-align": "cli.js" + }, "engines": { - "node": ">= 8" + "node": ">=0.10.0" } }, - "node_modules/mermaid": { - "version": "9.4.3", + "node_modules/lpad-align/node_modules/indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==", "license": "MIT", "dependencies": { - "@braintree/sanitize-url": "^6.0.0", - "cytoscape": "^3.23.0", - "cytoscape-cose-bilkent": "^4.1.0", - "cytoscape-fcose": "^2.1.0", - "d3": "^7.4.0", - "dagre-d3-es": "7.0.9", - "dayjs": "^1.11.7", - "dompurify": "2.4.3", - "elkjs": "^0.8.2", - "khroma": "^2.0.0", - "lodash-es": "^4.17.21", - "non-layered-tidy-tree-layout": "^2.0.2", - "stylis": "^4.1.2", - "ts-dedent": "^2.2.0", - "uuid": "^9.0.0", - "web-worker": "^1.2.0" + "repeating": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/mermaid/node_modules/dompurify": { - "version": "2.4.3", - "license": "(MPL-2.0 OR Apache-2.0)" + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } }, - "node_modules/mermaid/node_modules/uuid": { - "version": "9.0.1", - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], + "node_modules/luxon": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.5.0.tgz", + "integrity": "sha512-rh+Zjr6DNfUYR3bPwJEnuwDdqMbxZW7LOQfUN4B54+Cl+0o5zaU9RJ6bcidfDtC1cWCZXQ+nvX8bf6bAji37QQ==", "license": "MIT", - "bin": { - "uuid": "dist/bin/uuid" + "engines": { + "node": ">=12" } }, - "node_modules/methods": { - "version": "1.1.2", + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "license": "MIT", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, "engines": { - "node": ">= 0.6" + "node": ">=6" } }, - "node_modules/microevent.ts": { - "version": "0.1.1", - "license": "MIT" + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } }, - "node_modules/micromark": { - "version": "3.2.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "@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" + "tmpl": "1.0.5" } }, - "node_modules/micromark-core-commonmark": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", "license": "MIT", - "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" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/micromark-factory-destination": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", "license": "MIT", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/micromark-factory-label": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", "license": "MIT", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/micromark-factory-space": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/markdown-extensions": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-2.0.0.tgz", + "integrity": "sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==", "license": "MIT", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-types": "^1.0.0" + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/micromark-factory-title": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/markdown-link": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/markdown-link/-/markdown-link-0.1.1.tgz", + "integrity": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==", "license": "MIT", - "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" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/micromark-factory-whitespace": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/markdown-table": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", + "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", "license": "MIT", - "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" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/micromark-util-character": { + "node_modules/markdown-toc": { "version": "1.2.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "resolved": "https://registry.npmjs.org/markdown-toc/-/markdown-toc-1.2.0.tgz", + "integrity": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==", "license": "MIT", "dependencies": { - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "concat-stream": "^1.5.2", + "diacritics-map": "^0.1.0", + "gray-matter": "^2.1.0", + "lazy-cache": "^2.0.2", + "list-item": "^1.1.1", + "markdown-link": "^0.1.1", + "minimist": "^1.2.0", + "mixin-deep": "^1.1.3", + "object.pick": "^1.2.0", + "remarkable": "^1.7.1", + "repeat-string": "^1.6.1", + "strip-color": "^0.1.0" + }, + "bin": { + "markdown-toc": "cli.js" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/micromark-util-chunked": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/markdown-toc/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "license": "MIT", "dependencies": { - "micromark-util-symbol": "^1.0.0" + "sprintf-js": "~1.0.2" } }, - "node_modules/micromark-util-classify-character": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/markdown-toc/node_modules/autolinker": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-0.28.1.tgz", + "integrity": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==", "license": "MIT", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "gulp-header": "^1.7.1" } }, - "node_modules/micromark-util-combine-extensions": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/markdown-toc/node_modules/gray-matter": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz", + "integrity": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==", "license": "MIT", "dependencies": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-types": "^1.0.0" + "ansi-red": "^0.1.1", + "coffee-script": "^1.12.4", + "extend-shallow": "^2.0.1", + "js-yaml": "^3.8.1", + "toml": "^2.3.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/micromark-util-decode-numeric-character-reference": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/markdown-toc/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "license": "MIT", "dependencies": { - "micromark-util-symbol": "^1.0.0" + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/micromark-util-decode-string": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/markdown-toc/node_modules/remarkable": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-1.7.4.tgz", + "integrity": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==", "license": "MIT", "dependencies": { - "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" + "argparse": "^1.0.10", + "autolinker": "~0.28.0" + }, + "bin": { + "remarkable": "bin/remarkable.js" + }, + "engines": { + "node": ">= 0.10.0" } }, - "node_modules/micromark-util-encode": { + "node_modules/marked": { + "version": "15.0.4", + "resolved": "https://registry.npmjs.org/marked/-/marked-15.0.4.tgz", + "integrity": "sha512-TCHvDqmb3ZJ4PWG7VEGVgtefA5/euFmsIhxtD0XsBxI39gUSKL81mIRFdt0AiNQozUahd4ke98ZdirExd/vSEw==", + "license": "MIT", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/math-intrinsics": { "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } }, - "node_modules/micromark-util-html-tag-name": { - "version": "1.2.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/math-random": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", + "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==", "license": "MIT" }, - "node_modules/micromark-util-normalize-identifier": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", "license": "MIT", "dependencies": { - "micromark-util-symbol": "^1.0.0" + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" } }, - "node_modules/micromark-util-resolve-all": { - "version": "1.1.0", + "node_modules/mdast-util-definitions": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", + "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-definitions/node_modules/@types/mdast": { + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", + "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/mdast-util-definitions/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", + "license": "MIT" + }, + "node_modules/mdast-util-definitions/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-definitions/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-definitions/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-directive": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-directive/-/mdast-util-directive-3.0.0.tgz", + "integrity": "sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.1.tgz", + "integrity": "sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mdast-util-from-markdown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", + "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-from-markdown/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/mdast-util-frontmatter": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-2.0.1.tgz", + "integrity": "sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "escape-string-regexp": "^5.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "micromark-extension-frontmatter": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-frontmatter/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mdast-util-gfm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.0.0.tgz", + "integrity": "sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==", + "license": "MIT", + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-gfm-autolink-literal": "^2.0.0", + "mdast-util-gfm-footnote": "^2.0.0", + "mdast-util-gfm-strikethrough": "^2.0.0", + "mdast-util-gfm-table": "^2.0.0", + "mdast-util-gfm-task-list-item": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz", + "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "ccount": "^2.0.0", + "devlop": "^1.0.0", + "mdast-util-find-and-replace": "^3.0.0", + "micromark-util-character": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/mdast-util-gfm-autolink-literal/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", "funding": [ { "type": "GitHub Sponsors", @@ -19760,1211 +23933,4436 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT" + }, + "node_modules/mdast-util-gfm-footnote": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.0.0.tgz", + "integrity": "sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", + "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", + "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", + "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz", + "integrity": "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==", + "license": "MIT", + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz", + "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-jsx": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.1.3.tgz", + "integrity": "sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-stringify-position": "^4.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", + "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz", + "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", + "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "license": "CC0-1.0" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "license": "Unlicense", + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/memoize-one": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", + "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", + "license": "MIT" + }, + "node_modules/meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==", + "license": "MIT", + "dependencies": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/mermaid": { + "version": "11.4.1", + "resolved": "https://registry.npmjs.org/mermaid/-/mermaid-11.4.1.tgz", + "integrity": "sha512-Mb01JT/x6CKDWaxigwfZYuYmDZ6xtrNwNlidKZwkSrDaY9n90tdrJTV5Umk+wP1fZscGptmKFXHsXMDEVZ+Q6A==", + "license": "MIT", + "dependencies": { + "@braintree/sanitize-url": "^7.0.1", + "@iconify/utils": "^2.1.32", + "@mermaid-js/parser": "^0.3.0", + "@types/d3": "^7.4.3", + "cytoscape": "^3.29.2", + "cytoscape-cose-bilkent": "^4.1.0", + "cytoscape-fcose": "^2.2.0", + "d3": "^7.9.0", + "d3-sankey": "^0.12.3", + "dagre-d3-es": "7.0.11", + "dayjs": "^1.11.10", + "dompurify": "^3.2.1", + "katex": "^0.16.9", + "khroma": "^2.1.0", + "lodash-es": "^4.17.21", + "marked": "^13.0.2", + "roughjs": "^4.6.6", + "stylis": "^4.3.1", + "ts-dedent": "^2.2.0", + "uuid": "^9.0.1" + } + }, + "node_modules/mermaid/node_modules/marked": { + "version": "13.0.3", + "resolved": "https://registry.npmjs.org/marked/-/marked-13.0.3.tgz", + "integrity": "sha512-rqRix3/TWzE9rIoFGIn8JmsVfhiuC8VIQ8IdX5TfzmeBucdY05/0UlzKaw0eVtpcN/OdVFpBk7CjKGo9iHJ/zA==", + "license": "MIT", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/microevent.ts": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz", + "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==", + "license": "MIT" + }, + "node_modules/micromark": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.1.tgz", + "integrity": "sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.2.tgz", + "integrity": "sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-extension-directive": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-3.0.2.tgz", + "integrity": "sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "parse-entities": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-directive/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-directive/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-directive/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-extension-frontmatter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-2.0.0.tgz", + "integrity": "sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==", + "license": "MIT", + "dependencies": { + "fault": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-frontmatter/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-frontmatter/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-extension-gfm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", + "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", + "license": "MIT", + "dependencies": { + "micromark-extension-gfm-autolink-literal": "^2.0.0", + "micromark-extension-gfm-footnote": "^2.0.0", + "micromark-extension-gfm-strikethrough": "^2.0.0", + "micromark-extension-gfm-table": "^2.0.0", + "micromark-extension-gfm-tagfilter": "^2.0.0", + "micromark-extension-gfm-task-list-item": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", + "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==", + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-extension-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-footnote/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-footnote/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-footnote/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-extension-gfm-strikethrough": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", + "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-strikethrough/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-extension-gfm-table": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.0.tgz", + "integrity": "sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-table/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-extension-gfm-tagfilter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", + "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", + "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm-task-list-item/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-extension-mdx-expression": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.0.tgz", + "integrity": "sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-mdx-expression": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-expression/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-expression/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-expression/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-extension-mdx-jsx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.1.tgz", + "integrity": "sha512-vNuFb9czP8QCtAQcEJn0UJQJZA8Dk6DXKBqx+bg/w0WGuSxDxNr7hErW89tHUY31dUW4NqEOWwmEUNhjTFmHkg==", + "license": "MIT", + "dependencies": { + "@types/acorn": "^4.0.0", + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "micromark-factory-mdx-expression": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdx-jsx/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-jsx/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-jsx/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-extension-mdx-md": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz", + "integrity": "sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==", + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdxjs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz", + "integrity": "sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==", + "license": "MIT", + "dependencies": { + "acorn": "^8.0.0", + "acorn-jsx": "^5.0.0", + "micromark-extension-mdx-expression": "^3.0.0", + "micromark-extension-mdx-jsx": "^3.0.0", + "micromark-extension-mdx-md": "^2.0.0", + "micromark-extension-mdxjs-esm": "^3.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdxjs-esm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz", + "integrity": "sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-position-from-estree": "^2.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdxjs-esm/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-factory-destination": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", + "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-destination/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-destination/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-factory-label": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", + "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-label/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-label/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-factory-mdx-expression": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.2.tgz", + "integrity": "sha512-5E5I2pFzJyg2CtemqAbcyCktpHXuJbABnsb32wX2U8IQKhhVFBqkcZR5LRm1WVoFqa4kTueZK4abep7wdo9nrw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-position-from-estree": "^2.0.0", + "vfile-message": "^4.0.0" + } + }, + "node_modules/micromark-factory-mdx-expression/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-mdx-expression/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-mdx-expression/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-factory-space": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz", + "integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-factory-space/node_modules/micromark-util-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", + "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-factory-title": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", + "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-title/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-title/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-title/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-factory-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", + "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-whitespace/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-whitespace/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-whitespace/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-character": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.2.0.tgz", + "integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "node_modules/micromark-util-character/node_modules/micromark-util-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", + "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-chunked": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", + "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-chunked/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-classify-character": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", + "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-classify-character/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-classify-character/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-combine-extensions": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", + "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", + "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-decode-string": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", + "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-string/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-string/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-encode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-events-to-acorn": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.2.tgz", + "integrity": "sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/acorn": "^4.0.0", + "@types/estree": "^1.0.0", + "@types/unist": "^3.0.0", + "devlop": "^1.0.0", + "estree-util-visit": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "vfile-message": "^4.0.0" + } + }, + "node_modules/micromark-util-events-to-acorn/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-html-tag-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", + "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", + "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-normalize-identifier/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-resolve-all": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", + "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-subtokenize": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.3.tgz", + "integrity": "sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-subtokenize/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-symbol": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz", + "integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-types": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.1.tgz", + "integrity": "sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark/node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark/node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark/node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz", + "integrity": "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==", + "license": "MIT" + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.53.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", + "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-format": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mime-format/-/mime-format-2.0.1.tgz", + "integrity": "sha512-XxU3ngPbEnrYnNbIX+lYSaYg0M01v6p2ntd2YaFksTu0vayaw5OJvbdRyWs07EYRlLED5qadUZ+xo+XhOvFhwg==", + "license": "Apache-2.0", + "dependencies": { + "charset": "^1.0.0" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types/node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/min-dash": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/min-dash/-/min-dash-4.2.2.tgz", + "integrity": "sha512-qbhSYUxk6mBaF096B3JOQSumXbKWHenmT97cSpdNzgkWwGjhjhE/KZODCoDNhI2I4C9Cb6R/Q13S4BYkUSXoXQ==", + "license": "MIT" + }, + "node_modules/min-dom": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/min-dom/-/min-dom-4.2.1.tgz", + "integrity": "sha512-TMoL8SEEIhUWYgkj7XMSgxmwSyGI+4fP2KFFGnN3FbHfbGHVdsLYSz8LoIsgPhz4dWRmLvxWWSMgzZMJW5sZuA==", + "license": "MIT", + "dependencies": { + "component-event": "^0.2.1", + "domify": "^1.4.1", + "min-dash": "^4.2.1" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.2.tgz", + "integrity": "sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==", + "license": "MIT", + "dependencies": { + "schema-utils": "^4.0.0", + "tapable": "^2.2.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "license": "ISC" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "license": "MIT" + }, + "node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "license": "MIT" + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "license": "MIT", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixpanel-browser": { + "version": "2.58.0", + "resolved": "https://registry.npmjs.org/mixpanel-browser/-/mixpanel-browser-2.58.0.tgz", + "integrity": "sha512-ZayNE4augjSJh5RxYKRPhFe1jzS9HZnoowvZaN4DaUeCezbLGVck46L+N9X8VLtK74UgLUYfehPgCr41rtgpRA==", + "license": "Apache-2.0", + "dependencies": { + "rrweb": "2.0.0-alpha.13" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mlly": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.3.tgz", + "integrity": "sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==", + "license": "MIT", + "dependencies": { + "acorn": "^8.14.0", + "pathe": "^1.1.2", + "pkg-types": "^1.2.1", + "ufo": "^1.5.4" + } + }, + "node_modules/moo": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", + "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==", + "license": "BSD-3-Clause" + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/mrmime": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", + "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "license": "MIT", + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/mustache": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz", + "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==", + "license": "MIT", + "bin": { + "mustache": "bin/mustache" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/nearley": { + "version": "2.20.1", + "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", + "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", + "license": "MIT", + "dependencies": { + "commander": "^2.19.0", + "moo": "^0.5.0", + "railroad-diagrams": "^1.0.0", + "randexp": "0.4.6" + }, + "bin": { + "nearley-railroad": "bin/nearley-railroad.js", + "nearley-test": "bin/nearley-test.js", + "nearley-unparse": "bin/nearley-unparse.js", + "nearleyc": "bin/nearleyc.js" + }, + "funding": { + "type": "individual", + "url": "https://nearley.js.org/#give-to-nearley" + } + }, + "node_modules/nearley/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "license": "MIT" + }, + "node_modules/neotraverse": { + "version": "0.6.15", + "resolved": "https://registry.npmjs.org/neotraverse/-/neotraverse-0.6.15.tgz", + "integrity": "sha512-HZpdkco+JeXq0G+WWpMJ4NsX3pqb5O7eR9uGz3FfoFt+LYzU8iRWp49nJtud6hsDoywM8tIrDo3gjgmOqJA8LA==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "license": "MIT" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "license": "MIT", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "license": "MIT", + "optional": true + }, + "node_modules/node-emoji": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.2.0.tgz", + "integrity": "sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==", + "license": "MIT", + "dependencies": { + "@sindresorhus/is": "^4.6.0", + "char-regex": "^1.0.2", + "emojilib": "^2.4.0", + "skin-tone": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-fetch-h2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/node-fetch-h2/-/node-fetch-h2-2.3.0.tgz", + "integrity": "sha512-ofRW94Ab0T4AOh5Fk8t0h8OBWrmjb0SSB20xh1H8YnPV9EJ+f5AMoYSUQ2zgJ4Iq2HAK0I2l5/Nequ8YzFS3Hg==", + "license": "MIT", + "dependencies": { + "http2-client": "^1.2.5" + }, + "engines": { + "node": "4.x || >=6.0.0" + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-polyfill-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/node-polyfill-webpack-plugin/-/node-polyfill-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-QpG496dDBiaelQZu9wDcVvpLbtk7h9Ctz693RaUMZBgl8DUoFToO90ZTLKq57gP7rwKqYtGbMBXkcEgLSag2jQ==", + "license": "MIT", + "dependencies": { + "assert": "^2.1.0", + "browserify-zlib": "^0.2.0", + "buffer": "^6.0.3", + "console-browserify": "^1.2.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.12.0", + "domain-browser": "^4.22.0", + "events": "^3.3.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "^1.0.1", + "process": "^0.11.10", + "punycode": "^2.3.0", + "querystring-es3": "^0.2.1", + "readable-stream": "^4.4.2", + "stream-browserify": "^3.0.0", + "stream-http": "^3.2.0", + "string_decoder": "^1.3.0", + "timers-browserify": "^2.0.12", + "tty-browserify": "^0.0.1", + "type-fest": "^4.4.0", + "url": "^0.11.3", + "util": "^0.12.5", + "vm-browserify": "^1.1.2" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "webpack": ">=5" + } + }, + "node_modules/node-polyfill-webpack-plugin/node_modules/readable-stream": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.6.0.tgz", + "integrity": "sha512-cbAdYt0VcnpN2Bekq7PU+k363ZRsPwJoEEJOEtSJQlJXzwaxt3FIo/uL+KeDSGIjJqtkwyge4KQgD2S2kd+CQw==", + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/node-polyfill-webpack-plugin/node_modules/type-fest": { + "version": "4.30.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.30.2.tgz", + "integrity": "sha512-UJShLPYi1aWqCdq9HycOL/gwsuqda1OISdBO3t8RlXQC4QvtuIz4b5FCfe2dQIWEpmlRExKmcTBfP1r9bhY7ig==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/node-readfiles": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/node-readfiles/-/node-readfiles-0.2.0.tgz", + "integrity": "sha512-SU00ZarexNlE4Rjdm83vglt5Y9yiQ+XI1XpflWlb7q7UTN1JUItm69xMeiQCTxtTfnzt+83T8Cx+vI2ED++VDA==", + "license": "MIT", + "dependencies": { + "es6-promise": "^3.2.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "license": "MIT" + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "license": "MIT", + "dependencies": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/normalize-url/node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/normalize-url/node_modules/sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", "license": "MIT", "dependencies": { - "micromark-util-types": "^1.0.0" + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/micromark-util-sanitize-uri": { - "version": "1.2.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", "license": "MIT", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-symbol": "^1.0.0" + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/micromark-util-subtokenize": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/npm-conf/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", "license": "MIT", "dependencies": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/micromark-util-symbol": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], + "node_modules/nprogress": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz", + "integrity": "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==", "license": "MIT" }, - "node_modules/micromark-util-types": { - "version": "1.1.0", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } }, - "node_modules/micromatch": { - "version": "4.0.5", + "node_modules/null-loader": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/null-loader/-/null-loader-4.0.1.tgz", + "integrity": "sha512-pxqVbi4U6N26lq+LmgIbB5XATP0VdZKOG25DhHi8btMmJJefGArFyDg1yc4U3hWCJbMqSrw0qyrz1UQX+qYXqg==", "license": "MIT", "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" }, "engines": { - "node": ">=8.6" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/miller-rabin": { - "version": "4.0.1", + "node_modules/null-loader/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "license": "MIT", "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, - "bin": { - "miller-rabin": "bin/miller-rabin" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.0", + "node_modules/null-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/null-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "license": "MIT" }, - "node_modules/mime": { - "version": "1.6.0", + "node_modules/null-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "license": "MIT", - "bin": { - "mime": "cli.js" + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">=4" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/mime-db": { - "version": "1.51.0", - "license": "MIT", + "node_modules/num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==", + "license": "MIT" + }, + "node_modules/oas-kit-common": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/oas-kit-common/-/oas-kit-common-1.0.8.tgz", + "integrity": "sha512-pJTS2+T0oGIwgjGpw7sIRU8RQMcUoKCDWFLdBqKB2BNmGpbBMH2sdqAaOXUg8OzonZHU0L7vfJu1mJFEiYDWOQ==", + "license": "BSD-3-Clause", + "dependencies": { + "fast-safe-stringify": "^2.0.7" + } + }, + "node_modules/oas-linter": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/oas-linter/-/oas-linter-3.2.2.tgz", + "integrity": "sha512-KEGjPDVoU5K6swgo9hJVA/qYGlwfbFx+Kg2QB/kd7rzV5N8N5Mg6PlsoCMohVnQmo+pzJap/F610qTodKzecGQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@exodus/schemasafe": "^1.0.0-rc.2", + "should": "^13.2.1", + "yaml": "^1.10.0" + }, + "funding": { + "url": "https://github.com/Mermade/oas-kit?sponsor=1" + } + }, + "node_modules/oas-linter/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", "engines": { - "node": ">= 0.6" + "node": ">= 6" } }, - "node_modules/mime-format": { - "version": "2.0.1", - "license": "Apache-2.0", + "node_modules/oas-resolver": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/oas-resolver/-/oas-resolver-2.5.6.tgz", + "integrity": "sha512-Yx5PWQNZomfEhPPOphFbZKi9W93CocQj18NlD2Pa4GWZzdZpSJvYwoiuurRI7m3SpcChrnO08hkuQDL3FGsVFQ==", + "license": "BSD-3-Clause", "dependencies": { - "charset": "^1.0.0" + "node-fetch-h2": "^2.3.0", + "oas-kit-common": "^1.0.8", + "reftools": "^1.1.9", + "yaml": "^1.10.0", + "yargs": "^17.0.1" + }, + "bin": { + "resolve": "resolve.js" + }, + "funding": { + "url": "https://github.com/Mermade/oas-kit?sponsor=1" } }, - "node_modules/mime-types": { - "version": "2.1.34", - "license": "MIT", + "node_modules/oas-resolver-browser": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/oas-resolver-browser/-/oas-resolver-browser-2.5.6.tgz", + "integrity": "sha512-Jw5elT/kwUJrnGaVuRWe1D7hmnYWB8rfDDjBnpQ+RYY/dzAewGXeTexXzt4fGEo6PUE4eqKqPWF79MZxxvMppA==", + "license": "BSD-3-Clause", "dependencies": { - "mime-db": "1.51.0" + "node-fetch-h2": "^2.3.0", + "oas-kit-common": "^1.0.8", + "path-browserify": "^1.0.1", + "reftools": "^1.1.9", + "yaml": "^1.10.0", + "yargs": "^17.0.1" + }, + "bin": { + "resolve": "resolve.js" }, + "funding": { + "url": "https://github.com/Mermade/oas-kit?sponsor=1" + } + }, + "node_modules/oas-resolver-browser/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/oas-resolver-browser/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=8" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", + "node_modules/oas-resolver-browser/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/mimic-response": { - "version": "1.0.1", + "node_modules/oas-resolver-browser/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "node_modules/oas-resolver-browser/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/min-dash": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/min-dash/-/min-dash-4.2.2.tgz", - "integrity": "sha512-qbhSYUxk6mBaF096B3JOQSumXbKWHenmT97cSpdNzgkWwGjhjhE/KZODCoDNhI2I4C9Cb6R/Q13S4BYkUSXoXQ==" + "node_modules/oas-resolver/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" }, - "node_modules/min-dom": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/min-dom/-/min-dom-4.2.1.tgz", - "integrity": "sha512-TMoL8SEEIhUWYgkj7XMSgxmwSyGI+4fP2KFFGnN3FbHfbGHVdsLYSz8LoIsgPhz4dWRmLvxWWSMgzZMJW5sZuA==", - "dependencies": { - "component-event": "^0.2.1", - "domify": "^1.4.1", - "min-dash": "^4.2.1" + "node_modules/oas-resolver/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/mini-create-react-context": { - "version": "0.4.1", + "node_modules/oas-resolver/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "license": "MIT", "dependencies": { - "@babel/runtime": "^7.12.1", - "tiny-warning": "^1.0.3" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, - "peerDependencies": { - "prop-types": "^15.0.0", - "react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + "engines": { + "node": ">=8" } }, - "node_modules/mini-css-extract-plugin": { - "version": "2.6.1", + "node_modules/oas-resolver/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "node_modules/oas-resolver/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "license": "MIT", "dependencies": { - "schema-utils": "^4.0.0" + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" }, "engines": { - "node": ">= 12.13.0" - }, + "node": ">=12" + } + }, + "node_modules/oas-schema-walker": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/oas-schema-walker/-/oas-schema-walker-1.1.5.tgz", + "integrity": "sha512-2yucenq1a9YPmeNExoUa9Qwrt9RFkjqaMAA1X+U7sbb0AqBeTIdMHky9SQQ6iN94bO5NW0W4TRYXerG+BdAvAQ==", + "license": "BSD-3-Clause", "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" + "url": "https://github.com/Mermade/oas-kit?sponsor=1" } }, - "node_modules/mini-css-extract-plugin/node_modules/ajv": { - "version": "8.11.0", - "license": "MIT", + "node_modules/oas-validator": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/oas-validator/-/oas-validator-5.0.8.tgz", + "integrity": "sha512-cu20/HE5N5HKqVygs3dt94eYJfBi0TsZvPVXDhbXQHiEityDN+RROTleefoKRKKJ9dFAF2JBkDHgvWj0sjKGmw==", + "license": "BSD-3-Clause", "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "call-me-maybe": "^1.0.1", + "oas-kit-common": "^1.0.8", + "oas-linter": "^3.2.2", + "oas-resolver": "^2.5.6", + "oas-schema-walker": "^1.1.5", + "reftools": "^1.1.9", + "should": "^13.2.1", + "yaml": "^1.10.0" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "url": "https://github.com/Mermade/oas-kit?sponsor=1" } }, - "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" + "node_modules/oas-validator/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", + "engines": { + "node": ">= 6" } }, - "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { - "version": "1.0.0", - "license": "MIT" + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "license": "Apache-2.0", + "engines": { + "node": "*" + } }, - "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { - "version": "4.0.0", + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" - }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">=0.10.0" } }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "license": "ISC" - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/minimatch": { - "version": "3.0.4", - "license": "ISC", + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "license": "MIT", "dependencies": { - "brace-expansion": "^1.1.7" + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" }, "engines": { - "node": "*" + "node": ">=0.10.0" } }, - "node_modules/minimist": { - "version": "1.2.6", - "license": "MIT" - }, - "node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^0.1.0" + }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=0.10.0" } }, - "node_modules/mitt": { - "version": "3.0.1", + "node_modules/object-copy/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "license": "MIT" }, - "node_modules/mixin-deep": { - "version": "1.3.2", + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "license": "MIT", "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/mixin-deep/node_modules/is-extendable": { - "version": "1.0.1", + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "license": "MIT", "dependencies": { - "is-plain-object": "^2.0.4" + "is-buffer": "^1.1.5" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/mixpanel-browser": { - "version": "2.56.0", - "resolved": "https://registry.npmjs.org/mixpanel-browser/-/mixpanel-browser-2.56.0.tgz", - "integrity": "sha512-GYeEz58pV2M9MZtK8vSPL4oJmCwGS08FDDRZvZwr5VJpWdT4Lgyg6zXhmNfCmSTEIw2coaarm7HZ4FL9dAVvnA==", - "dependencies": { - "rrweb": "2.0.0-alpha.13" + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "license": "MIT", + "engines": { + "node": ">= 6" } }, - "node_modules/mkdirp": { - "version": "0.5.6", + "node_modules/object-inspect": { + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", + "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", "license": "MIT", - "dependencies": { - "minimist": "^1.2.6" + "engines": { + "node": ">= 0.4" }, - "bin": { - "mkdirp": "bin/cmd.js" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/moo": { - "version": "0.5.2", - "license": "BSD-3-Clause" - }, - "node_modules/mri": { - "version": "1.2.0", + "node_modules/object-is": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" + }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mrmime": { - "version": "1.0.0", + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "license": "MIT", "engines": { - "node": ">=10" + "node": ">= 0.4" } }, - "node_modules/ms": { - "version": "2.1.2", - "license": "MIT" + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/multicast-dns": { - "version": "7.2.5", + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", "license": "MIT", "dependencies": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" }, - "bin": { - "multicast-dns": "cli.js" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mustache": { - "version": "4.2.0", + "node_modules/object.entries": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", + "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", "license": "MIT", - "bin": { - "mustache": "bin/mustache" + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/mz": { - "version": "2.7.0", + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", "license": "MIT", "dependencies": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/nanoid": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", - "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz", + "integrity": "sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==", + "license": "MIT", + "dependencies": { + "array.prototype.reduce": "^1.0.6", + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "gopd": "^1.0.1", + "safe-array-concat": "^1.1.2" }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/nanomatch": { - "version": "1.2.13", + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", "license": "MIT", "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "isobject": "^3.0.1" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/nanomatch/node_modules/extend-shallow": { - "version": "3.0.2", + "node_modules/object.values": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", "license": "MIT", "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/nanomatch/node_modules/is-extendable": { - "version": "1.0.1", + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "license": "MIT" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "license": "MIT", "dependencies": { - "is-plain-object": "^2.0.4" + "ee-first": "1.1.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/natural-compare": { + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { "version": "1.4.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } }, - "node_modules/nearley": { - "version": "2.20.1", + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "license": "MIT", "dependencies": { - "commander": "^2.19.0", - "moo": "^0.5.0", - "railroad-diagrams": "^1.0.0", - "randexp": "0.4.6" + "mimic-fn": "^2.1.0" }, - "bin": { - "nearley-railroad": "bin/nearley-railroad.js", - "nearley-test": "bin/nearley-test.js", - "nearley-unparse": "bin/nearley-unparse.js", - "nearleyc": "bin/nearleyc.js" + "engines": { + "node": ">=6" }, "funding": { - "type": "individual", - "url": "https://nearley.js.org/#give-to-nearley" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/nearley/node_modules/commander": { - "version": "2.20.3", - "license": "MIT" - }, - "node_modules/negotiator": { - "version": "0.6.3", + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, "engines": { - "node": ">= 0.6" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/neo-async": { - "version": "2.6.2", - "license": "MIT" + "node_modules/openapi-to-postmanv2": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/openapi-to-postmanv2/-/openapi-to-postmanv2-4.24.0.tgz", + "integrity": "sha512-SfWo8fftwTVmBs61ZY9SciNlQ7ddSBmPS7NTBdf+LyjHdzr2/TNuvFjyftGJ7Jnm48oghi+R9At2geq1NoBOLA==", + "license": "Apache-2.0", + "dependencies": { + "ajv": "8.11.0", + "ajv-draft-04": "1.0.0", + "ajv-formats": "2.1.1", + "async": "3.2.4", + "commander": "2.20.3", + "graphlib": "2.1.8", + "js-yaml": "4.1.0", + "json-pointer": "0.6.2", + "json-schema-merge-allof": "0.8.1", + "lodash": "4.17.21", + "neotraverse": "0.6.15", + "oas-resolver-browser": "2.5.6", + "object-hash": "3.0.0", + "path-browserify": "1.0.1", + "postman-collection": "^4.4.0", + "swagger2openapi": "7.0.8", + "yaml": "1.10.2" + }, + "bin": { + "openapi2postmanv2": "bin/openapi2postmanv2.js" + }, + "engines": { + "node": ">=8" + } }, - "node_modules/nice-try": { - "version": "1.0.5", + "node_modules/openapi-to-postmanv2/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "license": "MIT" }, - "node_modules/no-case": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" + "node_modules/openapi-to-postmanv2/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", + "engines": { + "node": ">= 6" } }, - "node_modules/node-emoji": { - "version": "1.11.0", + "node_modules/opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "license": "(WTFPL OR MIT)", + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/optipng-bin": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/optipng-bin/-/optipng-bin-5.1.0.tgz", + "integrity": "sha512-9baoqZTNNmXQjq/PQTWEXbVV3AMO2sI/GaaqZJZ8SExfAzjijeAP7FEeT+TtyumSw7gr0PZtSUYB/Ke7iHQVKA==", + "hasInstallScript": true, "license": "MIT", "dependencies": { - "lodash": "^4.17.21" + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "logalot": "^2.0.0" + }, + "bin": { + "optipng": "cli.js" + }, + "engines": { + "node": ">=6" } }, - "node_modules/node-fetch": { - "version": "2.7.0", + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", + "license": "MIT" + }, + "node_modules/os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", "license": "MIT", "dependencies": { - "whatwg-url": "^5.0.0" + "arch": "^2.1.0" }, "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "node": ">=4" } }, - "node_modules/node-fetch-h2": { - "version": "2.3.0", + "node_modules/p-cancelable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", + "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-event": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz", + "integrity": "sha512-hV1zbA7gwqPVFcapfeATaNjQ3J0NuzorHPyG8GPL9g/Y/TplWVBVoCKCXL6Ej2zscrCEv195QNWJXuBH6XZuzA==", "license": "MIT", "dependencies": { - "http2-client": "^1.2.5" + "p-timeout": "^1.1.1" }, "engines": { - "node": "4.x || >=6.0.0" + "node": ">=4" } }, - "node_modules/node-forge": { - "version": "1.3.1", - "license": "(BSD-3-Clause OR GPL-2.0)", + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "license": "MIT", "engines": { - "node": ">= 6.13.0" + "node": ">=4" } }, - "node_modules/node-int64": { - "version": "0.4.0", - "dev": true, - "license": "MIT" + "node_modules/p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==", + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "node_modules/node-polyfill-webpack-plugin": { - "version": "2.0.1", + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "license": "MIT", "dependencies": { - "assert": "^2.0.0", - "browserify-zlib": "^0.2.0", - "buffer": "^6.0.3", - "console-browserify": "^1.2.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.12.0", - "domain-browser": "^4.22.0", - "events": "^3.3.0", - "filter-obj": "^2.0.2", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "^1.0.1", - "process": "^0.11.10", - "punycode": "^2.1.1", - "querystring-es3": "^0.2.1", - "readable-stream": "^4.0.0", - "stream-browserify": "^3.0.0", - "stream-http": "^3.2.0", - "string_decoder": "^1.3.0", - "timers-browserify": "^2.0.12", - "tty-browserify": "^0.0.1", - "type-fest": "^2.14.0", - "url": "^0.11.0", - "util": "^0.12.4", - "vm-browserify": "^1.1.2" + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">=12" + "node": ">=10" }, - "peerDependencies": { - "webpack": ">=5" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/node-polyfill-webpack-plugin/node_modules/buffer": { - "version": "6.0.3", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "license": "MIT", "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/node-polyfill-webpack-plugin/node_modules/readable-stream": { - "version": "4.5.2", + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "license": "MIT", "dependencies": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10", - "string_decoder": "^1.3.0" + "p-try": "^2.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/node-polyfill-webpack-plugin/node_modules/type-fest": { - "version": "2.19.0", - "license": "(MIT OR CC0-1.0)", + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, "engines": { - "node": ">=12.20" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/node-readfiles": { - "version": "0.2.0", + "node_modules/p-map-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz", + "integrity": "sha512-4k9LlvY6Bo/1FcIdV33wqZQES0Py+iKISU9Uc8p8AjWoZPnFKMpVIVD3s0EYn4jzLh1I+WeUZkJ0Yoa4Qfw3Kg==", "license": "MIT", "dependencies": { - "es6-promise": "^3.2.1" + "p-reduce": "^1.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/node-releases": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", - "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" + "node_modules/p-pipe": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-1.2.0.tgz", + "integrity": "sha512-IA8SqjIGA8l9qOksXJvsvkeQ+VGb0TAzNCzvKvz9wt5wWLqfWbV6fXy43gpR2L4Te8sOq3S+Ql9biAaMKPdbtw==", + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "node_modules/non-layered-tidy-tree-layout": { - "version": "2.0.2", - "license": "MIT" + "node_modules/p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "node_modules/normalize-package-data": { - "version": "2.5.0", - "license": "BSD-2-Clause", + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "license": "MIT", "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "5.7.1", - "license": "ISC", - "bin": { - "semver": "bin/semver" + "node_modules/p-timeout": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", + "integrity": "sha512-gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA==", + "license": "MIT", + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/normalize-path": { - "version": "3.0.0", + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/normalize-range": { - "version": "0.1.2", + "node_modules/package-json": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-8.1.1.tgz", + "integrity": "sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==", "license": "MIT", + "dependencies": { + "got": "^12.1.0", + "registry-auth-token": "^5.0.1", + "registry-url": "^6.0.0", + "semver": "^7.3.7" + }, "engines": { - "node": ">=0.10.0" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/normalize-url": { - "version": "6.1.0", + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/package-json/node_modules/@sindresorhus/is": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz", + "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", "license": "MIT", "engines": { - "node": ">=10" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sindresorhus/is?sponsor=1" } }, - "node_modules/npm-conf": { - "version": "1.1.3", + "node_modules/package-json/node_modules/cacheable-request": { + "version": "10.2.14", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", + "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", "license": "MIT", "dependencies": { - "config-chain": "^1.1.11", - "pify": "^3.0.0" + "@types/http-cache-semantics": "^4.0.2", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.1", + "keyv": "^4.5.3", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=14.16" } }, - "node_modules/npm-conf/node_modules/pify": { - "version": "3.0.0", + "node_modules/package-json/node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", "license": "MIT", + "dependencies": { + "mimic-response": "^3.1.0" + }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm-run-path": { - "version": "4.0.1", + "node_modules/package-json/node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", "license": "MIT", - "dependencies": { - "path-key": "^3.0.0" - }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/nprogress": { - "version": "0.2.0", - "license": "MIT" + "node_modules/package-json/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/nth-check": { - "version": "2.0.1", - "license": "BSD-2-Clause", + "node_modules/package-json/node_modules/got": { + "version": "12.6.1", + "resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz", + "integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==", + "license": "MIT", "dependencies": { - "boolbase": "^1.0.0" + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.8", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" + }, + "engines": { + "node": ">=14.16" }, "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" + "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/num2fraction": { - "version": "1.2.2", + "node_modules/package-json/node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "license": "BSD-2-Clause" + }, + "node_modules/package-json/node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "license": "MIT" }, - "node_modules/oas-kit-common": { - "version": "1.0.8", - "license": "BSD-3-Clause", + "node_modules/package-json/node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "license": "MIT", "dependencies": { - "fast-safe-stringify": "^2.0.7" + "json-buffer": "3.0.1" } }, - "node_modules/oas-linter": { - "version": "3.2.2", - "license": "BSD-3-Clause", - "dependencies": { - "@exodus/schemasafe": "^1.0.0-rc.2", - "should": "^13.2.1", - "yaml": "^1.10.0" + "node_modules/package-json/node_modules/lowercase-keys": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", + "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/Mermade/oas-kit?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/oas-resolver": { - "version": "2.5.6", - "license": "BSD-3-Clause", - "dependencies": { - "node-fetch-h2": "^2.3.0", - "oas-kit-common": "^1.0.8", - "reftools": "^1.1.9", - "yaml": "^1.10.0", - "yargs": "^17.0.1" - }, - "bin": { - "resolve": "resolve.js" + "node_modules/package-json/node_modules/mimic-response": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", + "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/Mermade/oas-kit?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/oas-resolver-browser": { - "version": "2.5.2", - "license": "BSD-3-Clause", - "dependencies": { - "node-fetch-h2": "^2.3.0", - "oas-kit-common": "^1.0.8", - "path-browserify": "^1.0.1", - "reftools": "^1.1.6", - "yaml": "^1.10.0", - "yargs": "^15.3.1" - }, - "bin": { - "resolve": "resolve.js" + "node_modules/package-json/node_modules/normalize-url": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", + "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==", + "license": "MIT", + "engines": { + "node": ">=14.16" }, "funding": { - "url": "https://github.com/Mermade/oas-kit?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/oas-resolver-browser/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/package-json/node_modules/p-cancelable": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", + "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", + "license": "MIT", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/package-json/node_modules/responselike": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", + "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "lowercase-keys": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/oas-resolver-browser/node_modules/camelcase": { - "version": "5.3.1", + "node_modules/package-manager-detector": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-0.2.7.tgz", + "integrity": "sha512-g4+387DXDKlZzHkP+9FLt8yKj8+/3tOkPv7DVTJGGRm00RkEWgqbFstX1mXJ4M0VDYhUqsTOiISqNOJnhAu3PQ==", + "license": "MIT" + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "license": "(MIT AND Zlib)" + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, "engines": { "node": ">=6" } }, - "node_modules/oas-resolver-browser/node_modules/cliui": { - "version": "6.0.0", + "node_modules/parse-asn1": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.7.tgz", + "integrity": "sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==", "license": "ISC", "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" + "asn1.js": "^4.10.1", + "browserify-aes": "^1.2.0", + "evp_bytestokey": "^1.0.3", + "hash-base": "~3.0", + "pbkdf2": "^3.1.2", + "safe-buffer": "^5.2.1" + }, + "engines": { + "node": ">= 0.10" } }, - "node_modules/oas-resolver-browser/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/parse-entities": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz", + "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "@types/unist": "^2.0.0", + "character-entities-legacy": "^3.0.0", + "character-reference-invalid": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0", + "is-hexadecimal": "^2.0.0" }, - "engines": { - "node": ">=7.0.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/oas-resolver-browser/node_modules/color-name": { - "version": "1.1.4", + "node_modules/parse-entities/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", "license": "MIT" }, - "node_modules/oas-resolver-browser/node_modules/wrap-ansi": { - "version": "6.2.0", + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/oas-resolver-browser/node_modules/y18n": { - "version": "4.0.3", + "node_modules/parse-numeric-range": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz", + "integrity": "sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==", "license": "ISC" }, - "node_modules/oas-resolver-browser/node_modules/yargs": { - "version": "15.4.1", + "node_modules/parse5": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.2.1.tgz", + "integrity": "sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==", "license": "MIT", "dependencies": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/oas-resolver-browser/node_modules/yargs-parser": { - "version": "18.1.3", - "license": "ISC", - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" + "entities": "^4.5.0" }, - "engines": { - "node": ">=6" - } - }, - "node_modules/oas-schema-walker": { - "version": "1.1.5", - "license": "BSD-3-Clause", "funding": { - "url": "https://github.com/Mermade/oas-kit?sponsor=1" + "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/oas-validator": { - "version": "5.0.8", - "license": "BSD-3-Clause", + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz", + "integrity": "sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==", + "license": "MIT", "dependencies": { - "call-me-maybe": "^1.0.1", - "oas-kit-common": "^1.0.8", - "oas-linter": "^3.2.2", - "oas-resolver": "^2.5.6", - "oas-schema-walker": "^1.1.5", - "reftools": "^1.1.9", - "should": "^13.2.1", - "yaml": "^1.10.0" + "domhandler": "^5.0.3", + "parse5": "^7.0.0" }, "funding": { - "url": "https://github.com/Mermade/oas-kit?sponsor=1" - } - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "license": "Apache-2.0", - "engines": { - "node": "*" + "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/object-assign": { - "version": "4.1.1", + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/object-copy": { - "version": "0.1.0", + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", "license": "MIT", "dependencies": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "engines": { - "node": ">=0.10.0" + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "node_modules/object-copy/node_modules/define-property": { - "version": "0.2.5", + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", "license": "MIT", - "dependencies": { - "is-descriptor": "^0.1.0" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/object-copy/node_modules/is-accessor-descriptor": { - "version": "0.1.6", + "node_modules/path": { + "version": "0.12.7", + "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", + "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", "license": "MIT", "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" + "process": "^0.11.1", + "util": "^0.10.3" } }, - "node_modules/object-copy/node_modules/is-buffer": { - "version": "1.1.6", + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", "license": "MIT" }, - "node_modules/object-copy/node_modules/is-data-descriptor": { - "version": "0.1.4", - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } + "node_modules/path-data-parser": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/path-data-parser/-/path-data-parser-0.1.0.tgz", + "integrity": "sha512-NOnmBpt5Y2RWbuv0LMzsayp3lVylAHLPUTut412ZA3l+C4uw4ZVkQbjShYCQ8TCpUMdPapr4YjUqLYD6v68j+w==", + "license": "MIT" }, - "node_modules/object-copy/node_modules/is-descriptor": { - "version": "0.1.6", + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "license": "MIT" + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { - "version": "5.1.0", + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/object-copy/node_modules/kind-of": { - "version": "3.2.2", + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "license": "(WTFPL OR MIT)" + }, + "node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/object-inspect": { - "version": "1.12.3", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" }, - "node_modules/object-is": { - "version": "1.1.5", - "license": "MIT", + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=16 || 14 >=14.18" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/object-keys": { - "version": "1.1.1", + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/path-to-regexp": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", + "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "license": "MIT", "engines": { - "node": ">= 0.4" + "node": ">=8" } }, - "node_modules/object-visit": { - "version": "1.0.1", + "node_modules/path/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "license": "ISC" + }, + "node_modules/path/node_modules/util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", "license": "MIT", "dependencies": { - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" + "inherits": "2.0.3" } }, - "node_modules/object.assign": { - "version": "4.1.4", + "node_modules/pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", + "license": "MIT" + }, + "node_modules/pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" }, "engines": { - "node": ">= 0.4" + "node": ">=0.12" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "license": "MIT" + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/object.entries": { - "version": "1.1.6", + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "bin": { + "pidtree": "bin/pidtree.js" }, "engines": { - "node": ">= 0.4" + "node": ">=0.10" } }, - "node_modules/object.fromentries": { - "version": "2.0.6", + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/object.getownpropertydescriptors": { - "version": "2.1.5", + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", "license": "MIT", "dependencies": { - "array.prototype.reduce": "^1.0.5", - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "pinkie": "^2.0.0" }, "engines": { - "node": ">= 0.8" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.10.0" } }, - "node_modules/object.pick": { - "version": "1.3.0", + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, "engines": { - "node": ">=0.10.0" + "node": ">= 6" } }, - "node_modules/object.values": { - "version": "1.1.6", + "node_modules/pkg-dir": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", + "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "find-up": "^6.3.0" }, "engines": { - "node": ">= 0.4" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/obuf": { - "version": "1.1.2", - "license": "MIT" - }, - "node_modules/on-finished": { - "version": "2.4.1", + "node_modules/pkg-dir/node_modules/find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", "license": "MIT", "dependencies": { - "ee-first": "1.1.1" + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" }, "engines": { - "node": ">= 0.8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/on-headers": { - "version": "1.0.2", + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "license": "ISC", "dependencies": { - "wrappy": "1" + "p-locate": "^6.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/onetime": { - "version": "5.1.2", + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", "license": "MIT", "dependencies": { - "mimic-fn": "^2.1.0" + "yocto-queue": "^1.0.0" }, "engines": { - "node": ">=6" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/open": { - "version": "8.4.0", + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", "license": "MIT", "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" + "p-limit": "^4.0.0" }, "engines": { - "node": ">=12" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/opener": { - "version": "1.5.2", - "license": "(WTFPL OR MIT)", - "bin": { - "opener": "bin/opener-bin.js" - } - }, - "node_modules/optipng-bin": { - "version": "5.1.0", - "hasInstallScript": true, + "node_modules/pkg-dir/node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", "license": "MIT", - "dependencies": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.0", - "logalot": "^2.0.0" - }, - "bin": { - "optipng": "cli.js" - }, "engines": { - "node": ">=6" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, - "node_modules/os-browserify": { - "version": "0.3.0", - "license": "MIT" - }, - "node_modules/os-filter-obj": { - "version": "2.0.0", + "node_modules/pkg-dir/node_modules/yocto-queue": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz", + "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==", "license": "MIT", - "dependencies": { - "arch": "^2.1.0" - }, "engines": { - "node": ">=4" + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-cancelable": { - "version": "1.1.0", + "node_modules/pkg-types": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.2.1.tgz", + "integrity": "sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==", "license": "MIT", - "engines": { - "node": ">=6" + "dependencies": { + "confbox": "^0.1.8", + "mlly": "^1.7.2", + "pathe": "^1.1.2" } }, - "node_modules/p-event": { - "version": "1.3.0", + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", "license": "MIT", "dependencies": { - "p-timeout": "^1.1.1" + "find-up": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/p-finally": { - "version": "1.0.0", + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/p-is-promise": { - "version": "1.1.0", + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/p-limit": { + "node_modules/pkg-up/node_modules/p-limit": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "license": "MIT", "dependencies": { "p-try": "^2.0.0" @@ -20976,989 +28374,1531 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-locate": { - "version": "4.1.0", + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "license": "MIT", "dependencies": { - "p-limit": "^2.2.0" + "p-limit": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/p-map": { - "version": "4.0.0", + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/playwright": { + "version": "1.49.1", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.49.1.tgz", + "integrity": "sha512-VYL8zLoNTBxVOrJBbDuRgDWa3i+mfQgDTrL8Ah9QXZ7ax4Dsj0MSq5bYgytRnDVVe+njoKnfsYkH3HzqVj5UZA==", + "dev": true, + "license": "Apache-2.0", "dependencies": { - "aggregate-error": "^3.0.0" + "playwright-core": "1.49.1" + }, + "bin": { + "playwright": "cli.js" }, "engines": { - "node": ">=10" + "node": ">=18" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "optionalDependencies": { + "fsevents": "2.3.2" } }, - "node_modules/p-map-series": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "p-reduce": "^1.0.0" + "node_modules/playwright-core": { + "version": "1.49.1", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.49.1.tgz", + "integrity": "sha512-BzmpVcs4kE2CH15rWfzpjzVGhWERJfmnXmniSyKeRZUs9Ws65m+RGIi7mjJK/euCegfn3i7jvqWeWyHe9y3Vgg==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "playwright-core": "cli.js" }, "engines": { - "node": ">=4" + "node": ">=18" } }, - "node_modules/p-pipe": { - "version": "1.2.0", + "node_modules/playwright/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=4" + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/p-reduce": { - "version": "1.0.0", + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", "license": "MIT", "engines": { "node": ">=4" } }, - "node_modules/p-retry": { - "version": "4.6.2", + "node_modules/points-on-curve": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/points-on-curve/-/points-on-curve-0.2.0.tgz", + "integrity": "sha512-0mYKnYYe9ZcqMCWhUjItv/oHjvgEsfKvnUTg8sAtnHr3GVy7rGkXCb6d5cSyqrWqL4k81b9CPg3urd+T7aop3A==", + "license": "MIT" + }, + "node_modules/points-on-path": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/points-on-path/-/points-on-path-0.2.1.tgz", + "integrity": "sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g==", "license": "MIT", "dependencies": { - "@types/retry": "0.12.0", - "retry": "^0.13.1" - }, - "engines": { - "node": ">=8" + "path-data-parser": "0.1.0", + "points-on-curve": "0.2.0" } }, - "node_modules/p-timeout": { - "version": "1.2.1", + "node_modules/portfinder": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", "license": "MIT", "dependencies": { - "p-finally": "^1.0.0" + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" }, "engines": { - "node": ">=4" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "license": "MIT", - "engines": { - "node": ">=6" + "node": ">= 0.12.0" } }, - "node_modules/package-json": { - "version": "6.5.0", + "node_modules/portfinder/node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", "license": "MIT", "dependencies": { - "got": "^9.6.0", - "registry-auth-token": "^4.0.0", - "registry-url": "^5.0.0", - "semver": "^6.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/package-json/node_modules/semver": { - "version": "6.3.0", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" + "lodash": "^4.17.14" } }, - "node_modules/pako": { - "version": "1.0.11", - "license": "(MIT AND Zlib)" - }, - "node_modules/param-case": { - "version": "3.0.4", + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "license": "MIT", "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" + "ms": "^2.1.1" } }, - "node_modules/parent-module": { - "version": "1.0.1", + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", "license": "MIT", - "dependencies": { - "callsites": "^3.0.0" - }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/parse-asn1": { - "version": "5.1.6", - "license": "ISC", - "dependencies": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.4" } }, - "node_modules/parse-entities": { - "version": "2.0.0", + "node_modules/postcss": { + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "license": "MIT", "dependencies": { - "character-entities": "^1.0.0", - "character-entities-legacy": "^1.0.0", - "character-reference-invalid": "^1.0.0", - "is-alphanumerical": "^1.0.0", - "is-decimal": "^1.0.0", - "is-hexadecimal": "^1.0.0" + "nanoid": "^3.3.7", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": "^10 || ^12 || >=14" } }, - "node_modules/parse-json": { - "version": "5.2.0", + "node_modules/postcss-attribute-case-insensitive": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-7.0.1.tgz", + "integrity": "sha512-Uai+SupNSqzlschRyNx3kbCTWgY/2hcwtHEI/ej2LJWc9JJ77qKgGptd8DHwY1mXtZ7Aoh4z4yxfwMBue9eNgw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": ">=8" + "node": ">=18" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/parse-numeric-range": { - "version": "1.3.0", - "license": "ISC" - }, - "node_modules/parse5": { - "version": "7.1.2", + "node_modules/postcss-attribute-case-insensitive/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "license": "MIT", "dependencies": { - "entities": "^4.4.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" + "engines": { + "node": ">=4" } }, - "node_modules/parse5-htmlparser2-tree-adapter": { - "version": "7.0.0", + "node_modules/postcss-calc": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", + "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", "license": "MIT", "dependencies": { - "domhandler": "^5.0.2", - "parse5": "^7.0.0" + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" } }, - "node_modules/parse5-htmlparser2-tree-adapter/node_modules/domhandler": { - "version": "5.0.3", - "license": "BSD-2-Clause", + "node_modules/postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "license": "MIT", "dependencies": { - "domelementtype": "^2.3.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 4" + "node": ">=7.6.0" }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "peerDependencies": { + "postcss": "^8.4.6" } }, - "node_modules/parse5/node_modules/entities": { - "version": "4.4.0", - "license": "BSD-2-Clause", + "node_modules/postcss-color-functional-notation": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.6.tgz", + "integrity": "sha512-wLXvm8RmLs14Z2nVpB4CWlnvaWPRcOZFltJSlcbYwSJ1EDZKsKDhPKIMecCnuU054KSmlmubkqczmm6qBPCBhA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^3.0.6", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/utilities": "^2.0.0" + }, "engines": { - "node": ">=0.12" + "node": ">=18" }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/parseurl": { - "version": "1.3.3", + "node_modules/postcss-color-hex-alpha": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-10.0.0.tgz", + "integrity": "sha512-1kervM2cnlgPs2a8Vt/Qbe5cQ++N7rkYo/2rz2BkqJZIHQwaVuJgQH38REHrAi4uM0b1fqxMkWYmese94iMp3w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", + "dependencies": { + "@csstools/utilities": "^2.0.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">= 0.8" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/pascal-case": { - "version": "3.1.2", - "license": "MIT", + "node_modules/postcss-color-rebeccapurple": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-10.0.0.tgz", + "integrity": "sha512-JFta737jSP+hdAIEhk1Vs0q0YF5P8fFcj+09pweS8ktuGuZ8pPlykHsk6mPxZ8awDl4TrcxUqJo9l1IhVr/OjQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/pascalcase": { - "version": "0.1.1", - "license": "MIT", + "@csstools/utilities": "^2.0.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/path": { - "version": "0.12.7", + "node_modules/postcss-colormin": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.1.0.tgz", + "integrity": "sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==", "license": "MIT", "dependencies": { - "process": "^0.11.1", - "util": "^0.10.3" - } - }, - "node_modules/path-browserify": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/path-dirname": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/path-exists": { - "version": "4.0.0", - "license": "MIT", + "browserslist": "^4.23.0", + "caniuse-api": "^3.0.0", + "colord": "^2.9.3", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", + "node_modules/postcss-convert-values": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.1.0.tgz", + "integrity": "sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==", "license": "MIT", + "dependencies": { + "browserslist": "^4.23.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/path-is-inside": { - "version": "1.0.2", - "license": "(WTFPL OR MIT)" - }, - "node_modules/path-key": { - "version": "3.1.1", + "node_modules/postcss-custom-media": { + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-11.0.5.tgz", + "integrity": "sha512-SQHhayVNgDvSAdX9NQ/ygcDQGEY+aSF4b/96z7QUX6mqL5yl/JgG/DywcF6fW9XbnCRE+aVYk+9/nqGuzOPWeQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "license": "MIT" - }, - "node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + "@csstools/cascade-layer-name-parser": "^2.0.4", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/media-query-list-parser": "^4.0.2" }, "engines": { - "node": ">=16 || 14 >=14.18" + "node": ">=18" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" - }, - "node_modules/path-to-regexp": { - "version": "1.8.0", + "node_modules/postcss-custom-properties": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-14.0.4.tgz", + "integrity": "sha512-QnW8FCCK6q+4ierwjnmXF9Y9KF8q0JkbgVfvQEMa93x1GT8FvOiUevWCN2YLaOWyByeDX8S6VFbZEeWoAoXs2A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "dependencies": { - "isarray": "0.0.1" - } - }, - "node_modules/path-type": { - "version": "4.0.0", - "license": "MIT", + "@csstools/cascade-layer-name-parser": "^2.0.4", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/utilities": "^2.0.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/path/node_modules/inherits": { - "version": "2.0.3", - "license": "ISC" - }, - "node_modules/path/node_modules/util": { - "version": "0.10.4", + "node_modules/postcss-custom-selectors": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-8.0.4.tgz", + "integrity": "sha512-ASOXqNvDCE0dAJ/5qixxPeL1aOVGHGW2JwSy7HyjWNbnWTQCl+fDc968HY1jCmZI0+BaYT5CxsOiUhavpG/7eg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "dependencies": { - "inherits": "2.0.3" + "@csstools/cascade-layer-name-parser": "^2.0.4", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "postcss-selector-parser": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/pbkdf2": { - "version": "3.1.2", + "node_modules/postcss-custom-selectors/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "license": "MIT", "dependencies": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=0.12" + "node": ">=4" } }, - "node_modules/pend": { - "version": "1.2.0", - "license": "MIT" - }, - "node_modules/performance-now": { - "version": "2.1.0", - "license": "MIT" - }, - "node_modules/picocolors": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "license": "MIT", + "node_modules/postcss-dir-pseudo-class": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-9.0.1.tgz", + "integrity": "sha512-tRBEK0MHYvcMUrAuYMEOa0zg9APqirBcgzi6P21OhxtJyJADo/SWBwY1CAwEohQ/6HDaa9jCjLRG7K3PVQYHEA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "postcss-selector-parser": "^7.0.0" + }, "engines": { - "node": ">=8.6" + "node": ">=18" }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/pidtree": { - "version": "0.6.0", - "dev": true, + "node_modules/postcss-dir-pseudo-class/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "license": "MIT", - "bin": { - "pidtree": "bin/pidtree.js" + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=0.10" + "node": ">=4" } }, - "node_modules/pify": { - "version": "4.0.1", + "node_modules/postcss-discard-comments": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.2.tgz", + "integrity": "sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==", "license": "MIT", "engines": { - "node": ">=6" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pinkie": { - "version": "2.0.4", + "node_modules/postcss-discard-duplicates": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.3.tgz", + "integrity": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pinkie-promise": { - "version": "2.0.1", + "node_modules/postcss-discard-empty": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.3.tgz", + "integrity": "sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==", "license": "MIT", - "dependencies": { - "pinkie": "^2.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pirates": { - "version": "4.0.5", + "node_modules/postcss-discard-overridden": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.2.tgz", + "integrity": "sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==", "license": "MIT", "engines": { - "node": ">= 6" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pkg-dir": { - "version": "4.2.0", + "node_modules/postcss-discard-unused": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-6.0.5.tgz", + "integrity": "sha512-wHalBlRHkaNnNwfC8z+ppX57VhvS+HWgjW508esjdaEYr3Mx7Gnn2xA4R/CKf5+Z9S5qsqC+Uzh4ueENWwCVUA==", "license": "MIT", "dependencies": { - "find-up": "^4.0.0" + "postcss-selector-parser": "^6.0.16" }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pkg-up": { - "version": "3.1.0", - "license": "MIT", + "node_modules/postcss-double-position-gradients": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.0.tgz", + "integrity": "sha512-JkIGah3RVbdSEIrcobqj4Gzq0h53GG4uqDPsho88SgY84WnpkTpI0k50MFK/sX7XqVisZ6OqUfFnoUO6m1WWdg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "find-up": "^3.0.0" + "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/utilities": "^2.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/pkg-up/node_modules/find-up": { - "version": "3.0.0", - "license": "MIT", + "node_modules/postcss-focus-visible": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-10.0.1.tgz", + "integrity": "sha512-U58wyjS/I1GZgjRok33aE8juW9qQgQUNwTSdxQGuShHzwuYdcklnvK/+qOWX1Q9kr7ysbraQ6ht6r+udansalA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "locate-path": "^3.0.0" + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": ">=6" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/pkg-up/node_modules/locate-path": { - "version": "3.0.0", + "node_modules/postcss-focus-visible/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "license": "MIT", "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/pkg-up/node_modules/p-locate": { - "version": "3.0.0", - "license": "MIT", + "node_modules/postcss-focus-within": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-9.0.1.tgz", + "integrity": "sha512-fzNUyS1yOYa7mOjpci/bR+u+ESvdar6hk8XNK/TRR0fiGTp2QT5N+ducP0n3rfH/m9I7H/EQU6lsa2BrgxkEjw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "p-limit": "^2.0.0" + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": ">=6" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/pkg-up/node_modules/path-exists": { - "version": "3.0.0", + "node_modules/postcss-focus-within/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, "engines": { "node": ">=4" } }, - "node_modules/playwright": { - "version": "1.49.0", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "playwright-core": "1.49.0" - }, - "bin": { - "playwright": "cli.js" - }, + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-gap-properties": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-6.0.0.tgz", + "integrity": "sha512-Om0WPjEwiM9Ru+VhfEDPZJAKWUd0mV1HmNXqp2C29z80aQ2uP9UVhLc7e3aYMIor/S5cVhoPgYQ7RtfeZpYTRw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "engines": { "node": ">=18" }, - "optionalDependencies": { - "fsevents": "2.3.2" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/playwright/node_modules/playwright-core": { - "version": "1.49.0", - "dev": true, - "license": "Apache-2.0", - "bin": { - "playwright-core": "cli.js" + "node_modules/postcss-image-set-function": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-7.0.0.tgz", + "integrity": "sha512-QL7W7QNlZuzOwBTeXEmbVckNt1FSmhQtbMRvGGqqU4Nf4xk6KUEQhAoWuMzwbSv5jxiRiSZ5Tv7eiDB9U87znA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/utilities": "^2.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/pluralize": { - "version": "8.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/portfinder": { - "version": "1.0.32", - "license": "MIT", + "node_modules/postcss-lab-function": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-7.0.6.tgz", + "integrity": "sha512-HPwvsoK7C949vBZ+eMyvH2cQeMr3UREoHvbtra76/UhDuiViZH6pir+z71UaJQohd7VDSVUdR6TkWYKExEc9aQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "async": "^2.6.4", - "debug": "^3.2.7", - "mkdirp": "^0.5.6" + "@csstools/css-color-parser": "^3.0.6", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/utilities": "^2.0.0" }, "engines": { - "node": ">= 0.12.0" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/portfinder/node_modules/debug": { - "version": "3.2.7", + "node_modules/postcss-loader": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.3.4.tgz", + "integrity": "sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==", "license": "MIT", "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/posix-character-classes": { - "version": "0.1.1", - "license": "MIT", + "cosmiconfig": "^8.3.5", + "jiti": "^1.20.0", + "semver": "^7.5.4" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" } }, - "node_modules/postcss": { - "version": "8.4.49", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", - "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", + "node_modules/postcss-logical": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-8.0.0.tgz", + "integrity": "sha512-HpIdsdieClTjXLOyYdUPAX/XQASNIwdKt5hoZW08ZOAiI+tbV0ta1oclkpVkW5ANU+xJvk3KkA0FejkjGLXUkg==", "funding": [ { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" + "type": "github", + "url": "https://github.com/sponsors/csstools" }, { - "type": "github", - "url": "https://github.com/sponsors/ai" + "type": "opencollective", + "url": "https://opencollective.com/csstools" } ], - "license": "MIT", + "license": "MIT-0", "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.1.1", - "source-map-js": "^1.2.1" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/postcss-calc": { - "version": "8.2.4", + "node_modules/postcss-merge-idents": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-6.0.3.tgz", + "integrity": "sha512-1oIoAsODUs6IHQZkLQGO15uGEbK3EAl5wi9SS8hs45VgsxQfMnxvt+L+zIr7ifZFIH14cfAeVe2uCTa+SPRa3g==", "license": "MIT", "dependencies": { - "postcss-selector-parser": "^6.0.9", + "cssnano-utils": "^4.0.2", "postcss-value-parser": "^4.2.0" }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, "peerDependencies": { - "postcss": "^8.2.2" + "postcss": "^8.4.31" } }, - "node_modules/postcss-colormin": { - "version": "5.3.1", + "node_modules/postcss-merge-longhand": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.5.tgz", + "integrity": "sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^6.1.1" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-merge-rules": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.1.1.tgz", + "integrity": "sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==", "license": "MIT", "dependencies": { - "browserslist": "^4.21.4", + "browserslist": "^4.23.0", "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" + "cssnano-utils": "^4.0.2", + "postcss-selector-parser": "^6.0.16" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, - "node_modules/postcss-convert-values": { - "version": "5.1.3", + "node_modules/postcss-minify-font-values": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.1.0.tgz", + "integrity": "sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==", "license": "MIT", "dependencies": { - "browserslist": "^4.21.4", "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, - "node_modules/postcss-discard-comments": { - "version": "5.1.2", + "node_modules/postcss-minify-gradients": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.3.tgz", + "integrity": "sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==", "license": "MIT", + "dependencies": { + "colord": "^2.9.3", + "cssnano-utils": "^4.0.2", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, - "node_modules/postcss-discard-duplicates": { - "version": "5.1.0", + "node_modules/postcss-minify-params": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.1.0.tgz", + "integrity": "sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==", "license": "MIT", + "dependencies": { + "browserslist": "^4.23.0", + "cssnano-utils": "^4.0.2", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, - "node_modules/postcss-discard-empty": { - "version": "5.1.1", + "node_modules/postcss-minify-selectors": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.4.tgz", + "integrity": "sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==", "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.16" + }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, - "node_modules/postcss-discard-overridden": { - "version": "5.1.0", - "license": "MIT", + "node_modules/postcss-modules-extract-imports": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "license": "ISC", "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^10 || ^12 || >= 14" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.1.0" } }, - "node_modules/postcss-discard-unused": { - "version": "5.1.0", + "node_modules/postcss-modules-local-by-default": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", + "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", "license": "MIT", "dependencies": { - "postcss-selector-parser": "^6.0.5" + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^7.0.0", + "postcss-value-parser": "^4.1.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^10 || ^12 || >= 14" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.1.0" } }, - "node_modules/postcss-loader": { - "version": "7.0.1", + "node_modules/postcss-modules-local-by-default/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "license": "MIT", "dependencies": { - "cosmiconfig": "^7.0.0", - "klona": "^2.0.5", - "semver": "^7.3.7" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">= 14.15.0" + "node": ">=4" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", + "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", + "license": "ISC", + "dependencies": { + "postcss-selector-parser": "^7.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "engines": { + "node": "^10 || ^12 || >= 14" }, "peerDependencies": { - "postcss": "^7.0.0 || ^8.0.1", - "webpack": "^5.0.0" + "postcss": "^8.1.0" } }, - "node_modules/postcss-merge-idents": { - "version": "5.1.1", + "node_modules/postcss-modules-scope/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "license": "MIT", "dependencies": { - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "license": "ISC", + "dependencies": { + "icss-utils": "^5.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^10 || ^12 || >= 14" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.1.0" } }, - "node_modules/postcss-merge-longhand": { - "version": "5.1.7", - "license": "MIT", + "node_modules/postcss-nesting": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-13.0.1.tgz", + "integrity": "sha512-VbqqHkOBOt4Uu3G8Dm8n6lU5+9cJFxiuty9+4rcoyRPO9zZS1JIs6td49VIoix3qYqELHlJIn46Oih9SAKo+yQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.1" + "@csstools/selector-resolve-nested": "^3.0.0", + "@csstools/selector-specificity": "^5.0.0", + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4" } }, - "node_modules/postcss-merge-rules": { - "version": "5.1.4", - "license": "MIT", - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.1.0", - "postcss-selector-parser": "^6.0.5" + "node_modules/postcss-nesting/node_modules/@csstools/selector-resolve-nested": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-3.0.0.tgz", + "integrity": "sha512-ZoK24Yku6VJU1gS79a5PFmC8yn3wIapiKmPgun0hZgEI5AOqgH2kiPRsPz1qkGv4HL+wuDLH83yQyk6inMYrJQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=18" }, + "peerDependencies": { + "postcss-selector-parser": "^7.0.0" + } + }, + "node_modules/postcss-nesting/node_modules/@csstools/selector-specificity": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", + "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss-selector-parser": "^7.0.0" } }, - "node_modules/postcss-minify-font-values": { - "version": "5.1.0", + "node_modules/postcss-nesting/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "license": "MIT", "dependencies": { - "postcss-value-parser": "^4.2.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=4" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.2.tgz", + "integrity": "sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==", + "license": "MIT", + "engines": { + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, - "node_modules/postcss-minify-gradients": { - "version": "5.1.1", + "node_modules/postcss-normalize-display-values": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.2.tgz", + "integrity": "sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==", "license": "MIT", "dependencies": { - "colord": "^2.9.1", - "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, - "node_modules/postcss-minify-params": { - "version": "5.1.4", + "node_modules/postcss-normalize-positions": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.2.tgz", + "integrity": "sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==", "license": "MIT", "dependencies": { - "browserslist": "^4.21.4", - "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, - "node_modules/postcss-minify-selectors": { - "version": "5.2.1", + "node_modules/postcss-normalize-repeat-style": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.2.tgz", + "integrity": "sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==", "license": "MIT", "dependencies": { - "postcss-selector-parser": "^6.0.5" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, - "node_modules/postcss-modules-extract-imports": { - "version": "3.0.0", - "license": "ISC", + "node_modules/postcss-normalize-string": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.2.tgz", + "integrity": "sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": "^10 || ^12 || >= 14" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.1.0" + "postcss": "^8.4.31" } }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.0.0", + "node_modules/postcss-normalize-timing-functions": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.2.tgz", + "integrity": "sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==", "license": "MIT", "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^10 || ^12 || >= 14" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.1.0" + "postcss": "^8.4.31" } }, - "node_modules/postcss-modules-scope": { - "version": "3.0.0", - "license": "ISC", + "node_modules/postcss-normalize-unicode": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.1.0.tgz", + "integrity": "sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==", + "license": "MIT", "dependencies": { - "postcss-selector-parser": "^6.0.4" + "browserslist": "^4.23.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^10 || ^12 || >= 14" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.1.0" + "postcss": "^8.4.31" } }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", - "license": "ISC", + "node_modules/postcss-normalize-url": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.2.tgz", + "integrity": "sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==", + "license": "MIT", "dependencies": { - "icss-utils": "^5.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^10 || ^12 || >= 14" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.1.0" + "postcss": "^8.4.31" } }, - "node_modules/postcss-normalize-charset": { - "version": "5.1.0", + "node_modules/postcss-normalize-whitespace": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.2.tgz", + "integrity": "sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==", "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, - "node_modules/postcss-normalize-display-values": { - "version": "5.1.0", + "node_modules/postcss-opacity-percentage": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-3.0.0.tgz", + "integrity": "sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ==", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4" } }, - "node_modules/postcss-normalize-positions": { - "version": "5.1.1", + "node_modules/postcss-ordered-values": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.2.tgz", + "integrity": "sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==", "license": "MIT", "dependencies": { + "cssnano-utils": "^4.0.2", "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, - "node_modules/postcss-normalize-repeat-style": { - "version": "5.1.1", - "license": "MIT", + "node_modules/postcss-overflow-shorthand": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-6.0.0.tgz", + "integrity": "sha512-BdDl/AbVkDjoTofzDQnwDdm/Ym6oS9KgmO7Gr+LHYjNWJ6ExORe4+3pcLQsLA9gIROMkiGVjjwZNoL/mpXHd5Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4" } }, - "node_modules/postcss-normalize-string": { - "version": "5.1.0", + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", "license": "MIT", + "peerDependencies": { + "postcss": "^8" + } + }, + "node_modules/postcss-place": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-10.0.0.tgz", + "integrity": "sha512-5EBrMzat2pPAxQNWYavwAfoKfYcTADJ8AXGVPcUZ2UkNloUTWzJQExgrzrDkh3EKzmAx1evfTAzF9I8NGcc+qw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4" } }, - "node_modules/postcss-normalize-timing-functions": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" + "node_modules/postcss-preset-env": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-10.1.2.tgz", + "integrity": "sha512-OqUBZ9ByVfngWhMNuBEMy52Izj07oIFA6K/EOGBlaSv+P12MiE1+S2cqXtS1VuW82demQ/Tzc7typYk3uHunkA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/postcss-cascade-layers": "^5.0.1", + "@csstools/postcss-color-function": "^4.0.6", + "@csstools/postcss-color-mix-function": "^3.0.6", + "@csstools/postcss-content-alt-text": "^2.0.4", + "@csstools/postcss-exponential-functions": "^2.0.5", + "@csstools/postcss-font-format-keywords": "^4.0.0", + "@csstools/postcss-gamut-mapping": "^2.0.6", + "@csstools/postcss-gradients-interpolation-method": "^5.0.6", + "@csstools/postcss-hwb-function": "^4.0.6", + "@csstools/postcss-ic-unit": "^4.0.0", + "@csstools/postcss-initial": "^2.0.0", + "@csstools/postcss-is-pseudo-class": "^5.0.1", + "@csstools/postcss-light-dark-function": "^2.0.7", + "@csstools/postcss-logical-float-and-clear": "^3.0.0", + "@csstools/postcss-logical-overflow": "^2.0.0", + "@csstools/postcss-logical-overscroll-behavior": "^2.0.0", + "@csstools/postcss-logical-resize": "^3.0.0", + "@csstools/postcss-logical-viewport-units": "^3.0.3", + "@csstools/postcss-media-minmax": "^2.0.5", + "@csstools/postcss-media-queries-aspect-ratio-number-values": "^3.0.4", + "@csstools/postcss-nested-calc": "^4.0.0", + "@csstools/postcss-normalize-display-values": "^4.0.0", + "@csstools/postcss-oklab-function": "^4.0.6", + "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/postcss-random-function": "^1.0.1", + "@csstools/postcss-relative-color-syntax": "^3.0.6", + "@csstools/postcss-scope-pseudo-class": "^4.0.1", + "@csstools/postcss-sign-functions": "^1.1.0", + "@csstools/postcss-stepped-value-functions": "^4.0.5", + "@csstools/postcss-text-decoration-shorthand": "^4.0.1", + "@csstools/postcss-trigonometric-functions": "^4.0.5", + "@csstools/postcss-unset-value": "^4.0.0", + "autoprefixer": "^10.4.19", + "browserslist": "^4.23.1", + "css-blank-pseudo": "^7.0.1", + "css-has-pseudo": "^7.0.2", + "css-prefers-color-scheme": "^10.0.0", + "cssdb": "^8.2.3", + "postcss-attribute-case-insensitive": "^7.0.1", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^7.0.6", + "postcss-color-hex-alpha": "^10.0.0", + "postcss-color-rebeccapurple": "^10.0.0", + "postcss-custom-media": "^11.0.5", + "postcss-custom-properties": "^14.0.4", + "postcss-custom-selectors": "^8.0.4", + "postcss-dir-pseudo-class": "^9.0.1", + "postcss-double-position-gradients": "^6.0.0", + "postcss-focus-visible": "^10.0.1", + "postcss-focus-within": "^9.0.1", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^6.0.0", + "postcss-image-set-function": "^7.0.0", + "postcss-lab-function": "^7.0.6", + "postcss-logical": "^8.0.0", + "postcss-nesting": "^13.0.1", + "postcss-opacity-percentage": "^3.0.0", + "postcss-overflow-shorthand": "^6.0.0", + "postcss-page-break": "^3.0.4", + "postcss-place": "^10.0.0", + "postcss-pseudo-class-any-link": "^10.0.1", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^8.0.1" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4" } }, - "node_modules/postcss-normalize-unicode": { - "version": "5.1.1", - "license": "MIT", + "node_modules/postcss-pseudo-class-any-link": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-10.0.1.tgz", + "integrity": "sha512-3el9rXlBOqTFaMFkWDOkHUTQekFIYnaQY55Rsp8As8QQkpiSgIYEcF/6Ond93oHiDsGb4kad8zjt+NPlOC1H0Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4" } }, - "node_modules/postcss-normalize-url": { - "version": "5.1.0", + "node_modules/postcss-pseudo-class-any-link/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "license": "MIT", "dependencies": { - "normalize-url": "^6.0.1", - "postcss-value-parser": "^4.2.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=4" } }, - "node_modules/postcss-normalize-whitespace": { - "version": "5.1.1", + "node_modules/postcss-reduce-idents": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-6.0.3.tgz", + "integrity": "sha512-G3yCqZDpsNPoQgbDUy3T0E6hqOQ5xigUtBQyrmq3tn2GxlyiL0yyl7H+T8ulQR6kOcHJ9t7/9H4/R2tv8tJbMA==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, - "node_modules/postcss-ordered-values": { - "version": "5.1.3", + "node_modules/postcss-reduce-initial": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.1.0.tgz", + "integrity": "sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==", "license": "MIT", "dependencies": { - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" + "browserslist": "^4.23.0", + "caniuse-api": "^3.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, - "node_modules/postcss-reduce-idents": { - "version": "5.2.0", + "node_modules/postcss-reduce-transforms": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.2.tgz", + "integrity": "sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, - "node_modules/postcss-reduce-initial": { - "version": "5.1.2", + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.0.3" + } + }, + "node_modules/postcss-selector-not": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-8.0.1.tgz", + "integrity": "sha512-kmVy/5PYVb2UOhy0+LqUYAhKj7DUGDpSWa5LZqlkWJaaAV+dxxsOG3+St0yNLu6vsKD7Dmqx+nWQt0iil89+WA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0" + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4" } }, - "node_modules/postcss-reduce-transforms": { - "version": "5.1.0", + "node_modules/postcss-selector-not/node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "license": "MIT", "dependencies": { - "postcss-value-parser": "^4.2.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=4" } }, "node_modules/postcss-selector-parser": { - "version": "6.0.10", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", "license": "MIT", "dependencies": { "cssesc": "^3.0.0", @@ -21969,61 +29909,149 @@ } }, "node_modules/postcss-sort-media-queries": { - "version": "4.4.1", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/postcss-sort-media-queries/-/postcss-sort-media-queries-5.2.0.tgz", + "integrity": "sha512-AZ5fDMLD8SldlAYlvi8NIqo0+Z8xnXU2ia0jxmuhxAU+Lqt9K+AlmLNJ/zWEnE9x+Zx3qL3+1K20ATgNOr3fAA==", "license": "MIT", "dependencies": { - "sort-css-media-queries": "2.1.0" + "sort-css-media-queries": "2.2.0" }, "engines": { - "node": ">=10.0.0" + "node": ">=14.0.0" }, "peerDependencies": { - "postcss": "^8.4.16" + "postcss": "^8.4.23" } }, "node_modules/postcss-svgo": { - "version": "5.1.0", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.3.tgz", + "integrity": "sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==", "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0", - "svgo": "^2.7.0" + "svgo": "^3.2.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >= 18" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-unique-selectors": { - "version": "5.1.1", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.4.tgz", + "integrity": "sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==", "license": "MIT", "dependencies": { - "postcss-selector-parser": "^6.0.5" + "postcss-selector-parser": "^6.0.16" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/postcss-value-parser": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "license": "MIT" }, "node_modules/postcss-zindex": { - "version": "5.1.0", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-6.0.2.tgz", + "integrity": "sha512-5BxW9l1evPB/4ZIc+2GobEBoKC+h8gPGCMi+jxsYvd2x0mjq7wazk6DrP71pStqxE9Foxh5TVnonbWpFZzXaYg==", "license": "MIT", "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" + } + }, + "node_modules/postman-code-generators": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/postman-code-generators/-/postman-code-generators-1.14.1.tgz", + "integrity": "sha512-IQ/D4VqNNK9cLxQttFGI9Jx4Q6uxCvOf4UKf+hfatmqivguJ1ICeSCcjEfYXhLQTa/RsJ3PFERHztF+CE0M/WQ==", + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "async": "3.2.2", + "detect-package-manager": "3.0.2", + "lodash": "4.17.21", + "path": "0.12.7", + "postman-collection": "^4.4.0", + "shelljs": "0.8.5" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/postman-code-generators/node_modules/async": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.2.tgz", + "integrity": "sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g==", + "license": "MIT" + }, + "node_modules/postman-collection": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/postman-collection/-/postman-collection-4.5.0.tgz", + "integrity": "sha512-152JSW9pdbaoJihwjc7Q8lc3nPg/PC9lPTHdMk7SHnHhu/GBJB7b2yb9zG7Qua578+3PxkQ/HYBuXpDSvsf7GQ==", + "license": "Apache-2.0", + "dependencies": { + "@faker-js/faker": "5.5.3", + "file-type": "3.9.0", + "http-reasons": "0.1.0", + "iconv-lite": "0.6.3", + "liquid-json": "0.3.1", + "lodash": "4.17.21", + "mime-format": "2.0.1", + "mime-types": "2.1.35", + "postman-url-encoder": "3.0.5", + "semver": "7.6.3", + "uuid": "8.3.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postman-collection/node_modules/file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postman-collection/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postman-collection/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" } }, "node_modules/postman-url-encoder": { "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postman-url-encoder/-/postman-url-encoder-3.0.5.tgz", + "integrity": "sha512-jOrdVvzUXBC7C+9gkIkpDJ3HIxOHTIqjpQ4C1EMt1ZGeMvSEpbFCKq23DEfgsj46vMnDgyQf+1ZLp2Wm+bKSsA==", "license": "Apache-2.0", "dependencies": { "punycode": "^2.1.1" @@ -22033,23 +30061,28 @@ } }, "node_modules/preact": { - "version": "10.25.1", - "resolved": "https://registry.npmjs.org/preact/-/preact-10.25.1.tgz", - "integrity": "sha512-frxeZV2vhQSohQwJ7FvlqC40ze89+8friponWUFeVEkaCfhC6Eu4V0iND5C9CXz8JLndV07QRDeXzH1+Anz5Og==", + "version": "10.25.3", + "resolved": "https://registry.npmjs.org/preact/-/preact-10.25.3.tgz", + "integrity": "sha512-dzQmIFtM970z+fP9ziQ3yG4e3ULIbwZzJ734vaMVUTaKQ2+Ru1Ou/gjshOYVHCcd1rpAelC6ngjvjDXph98unQ==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/preact" } }, "node_modules/prepend-http": { - "version": "2.0.0", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==", "license": "MIT", "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, "node_modules/prettier": { "version": "3.3.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", "dev": true, "license": "MIT", "bin": { @@ -22064,6 +30097,8 @@ }, "node_modules/pretty-bytes": { "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", "license": "MIT", "engines": { "node": ">=6" @@ -22074,6 +30109,8 @@ }, "node_modules/pretty-error": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", "license": "MIT", "dependencies": { "lodash": "^4.17.20", @@ -22097,6 +30134,8 @@ }, "node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "license": "MIT", "engines": { @@ -22106,27 +30145,32 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/pretty-format/node_modules/react-is": { - "version": "18.2.0", - "dev": true, - "license": "MIT" - }, "node_modules/pretty-time": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz", + "integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/prism-react-renderer": { - "version": "1.3.5", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-2.4.1.tgz", + "integrity": "sha512-ey8Ls/+Di31eqzUxC46h8MksNuGx/n0AAC8uKpwFau4RPDYLuE3EXTp8N8G2vX2N7UC/+IXeNUnlWBGGcAG+Ig==", "license": "MIT", + "dependencies": { + "@types/prismjs": "^1.26.0", + "clsx": "^2.0.0" + }, "peerDependencies": { - "react": ">=0.14.9" + "react": ">=16.0.0" } }, "node_modules/prismjs": { "version": "1.29.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz", + "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", "license": "MIT", "engines": { "node": ">=6" @@ -22134,6 +30178,8 @@ }, "node_modules/process": { "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", "license": "MIT", "engines": { "node": ">= 0.6.0" @@ -22141,17 +30187,14 @@ }, "node_modules/process-nextick-args": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "license": "MIT" }, - "node_modules/promise": { - "version": "7.3.1", - "license": "MIT", - "dependencies": { - "asap": "~2.0.3" - } - }, "node_modules/prompts": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "license": "MIT", "dependencies": { "kleur": "^3.0.3", @@ -22163,6 +30206,8 @@ }, "node_modules/prop-types": { "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "license": "MIT", "dependencies": { "loose-envify": "^1.4.0", @@ -22171,20 +30216,39 @@ } }, "node_modules/prop-types-exact": { - "version": "1.2.0", + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/prop-types-exact/-/prop-types-exact-1.2.6.tgz", + "integrity": "sha512-jjPykG6orULQ/2Zcatm6vtCs9mdksYZQs4HTmlHAxbkK2NHGFVBrSLDh4k/RpMWVXECZO6za1i6iF7srRKp/KQ==", "license": "MIT", "dependencies": { - "has": "^1.0.3", - "object.assign": "^4.1.0", - "reflect.ownkeys": "^0.2.0" + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "isarray": "^2.0.5", + "object.assign": "^4.1.5", + "reflect.ownkeys": "^1.1.4" + }, + "engines": { + "node": ">= 0.8" } }, + "node_modules/prop-types-exact/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, "node_modules/property-information": { - "version": "5.6.0", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", + "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", "license": "MIT", - "dependencies": { - "xtend": "^4.0.0" - }, "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -22192,10 +30256,14 @@ }, "node_modules/proto-list": { "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", "license": "ISC" }, "node_modules/proxy-addr": { "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "license": "MIT", "dependencies": { "forwarded": "0.2.0", @@ -22205,23 +30273,28 @@ "node": ">= 0.10" } }, - "node_modules/proxy-addr/node_modules/ipaddr.js": { - "version": "1.9.1", - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, "node_modules/pseudomap": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", "license": "ISC" }, "node_modules/psl": { - "version": "1.9.0", - "license": "MIT" + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz", + "integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==", + "license": "MIT", + "dependencies": { + "punycode": "^2.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/lupomontero" + } }, "node_modules/public-encrypt": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", "license": "MIT", "dependencies": { "bn.js": "^4.1.0", @@ -22233,11 +30306,15 @@ } }, "node_modules/public-encrypt/node_modules/bn.js": { - "version": "4.12.0", + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz", + "integrity": "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==", "license": "MIT" }, "node_modules/pump": { - "version": "3.0.0", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", + "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", "license": "MIT", "dependencies": { "end-of-stream": "^1.1.0", @@ -22245,26 +30322,29 @@ } }, "node_modules/punycode": { - "version": "2.1.1", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/pupa": { - "version": "2.1.1", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-3.1.0.tgz", + "integrity": "sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==", "license": "MIT", "dependencies": { - "escape-goat": "^2.0.0" + "escape-goat": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pure-color": { - "version": "1.3.0", - "license": "MIT" - }, "node_modules/pure-rand": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", @@ -22283,7 +30363,9 @@ "license": "MIT" }, "node_modules/pushfeedback": { - "version": "0.1.39", + "version": "0.1.49", + "resolved": "https://registry.npmjs.org/pushfeedback/-/pushfeedback-0.1.49.tgz", + "integrity": "sha512-RbGrWT05MkXpXRCliZwirxkCKxEFtjGdFMq5dioQmYKqsfE9tnSM7CNv0axPC15E5tWfZ1UZMn9eg9cZahV3rQ==", "license": "MIT", "dependencies": { "@stencil/core": "^2.13.0", @@ -22291,14 +30373,19 @@ } }, "node_modules/pushfeedback-react": { - "version": "0.1.30", + "version": "0.1.50", + "resolved": "https://registry.npmjs.org/pushfeedback-react/-/pushfeedback-react-0.1.50.tgz", + "integrity": "sha512-Bvtu/czdrty+ELfBoHMGO/2aqtb8roP4Hq2HImU95ohyr/8sj3jKCam33k51PLZPQ65IQ2Dg+EQtrOOqNKD/Wg==", "license": "ISC", "dependencies": { - "pushfeedback": "^0.1.39" + "pushfeedback": "^0.1.49" } }, "node_modules/q": { "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)", "license": "MIT", "engines": { "node": ">=0.6.0", @@ -22306,10 +30393,12 @@ } }, "node_modules/qs": { - "version": "6.10.3", + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", "license": "BSD-3-Clause", "dependencies": { - "side-channel": "^1.0.4" + "side-channel": "^1.0.6" }, "engines": { "node": ">=0.6" @@ -22320,6 +30409,8 @@ }, "node_modules/query-string": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", "license": "MIT", "dependencies": { "decode-uri-component": "^0.2.0", @@ -22332,12 +30423,16 @@ }, "node_modules/querystring-es3": { "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", "engines": { "node": ">=0.4.x" } }, "node_modules/queue": { "version": "6.0.2", + "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", + "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", "license": "MIT", "dependencies": { "inherits": "~2.0.3" @@ -22345,6 +30440,8 @@ }, "node_modules/queue-microtask": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "funding": [ { "type": "github", @@ -22361,8 +30458,22 @@ ], "license": "MIT" }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/raf": { "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", "license": "MIT", "dependencies": { "performance-now": "^2.1.0" @@ -22370,10 +30481,14 @@ }, "node_modules/railroad-diagrams": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", + "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==", "license": "CC0-1.0" }, "node_modules/randexp": { "version": "0.4.6", + "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", + "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", "license": "MIT", "dependencies": { "discontinuous-range": "1.0.0", @@ -22385,6 +30500,8 @@ }, "node_modules/randomatic": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", + "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", "license": "MIT", "dependencies": { "is-number": "^4.0.0", @@ -22397,6 +30514,8 @@ }, "node_modules/randomatic/node_modules/is-number": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -22404,6 +30523,8 @@ }, "node_modules/randombytes": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "license": "MIT", "dependencies": { "safe-buffer": "^5.1.0" @@ -22411,6 +30532,8 @@ }, "node_modules/randomfill": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", "license": "MIT", "dependencies": { "randombytes": "^2.0.5", @@ -22418,34 +30541,33 @@ } }, "node_modules/range-parser": { - "version": "1.2.0", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/raw-body": { - "version": "2.5.1", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", "license": "MIT", "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/raw-body/node_modules/bytes": { - "version": "3.1.2", - "license": "MIT", + "unpipe": "1.0.0" + }, "engines": { "node": ">= 0.8" } }, "node_modules/rc": { "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", "dependencies": { "deep-extend": "^0.6.0", @@ -22457,29 +30579,31 @@ "rc": "cli.js" } }, - "node_modules/react": { - "version": "17.0.2", + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/react-base16-styling": { - "version": "0.6.0", + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", "license": "MIT", "dependencies": { - "base16": "^1.0.0", - "lodash.curry": "^4.0.1", - "lodash.flow": "^3.3.0", - "pure-color": "^1.2.0" + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, "node_modules/react-dev-utils": { "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.16.0", @@ -22511,59 +30635,24 @@ "node": ">=14" } }, - "node_modules/react-dev-utils/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/react-dev-utils/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/react-dev-utils/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/react-dev-utils/node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/react-dev-utils/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/react-dev-utils/node_modules/escape-string-regexp": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 8" } }, "node_modules/react-dev-utils/node_modules/find-up": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "license": "MIT", "dependencies": { "locate-path": "^6.0.0", @@ -22576,15 +30665,10 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-dev-utils/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/react-dev-utils/node_modules/loader-utils": { - "version": "3.2.0", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", + "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", "license": "MIT", "engines": { "node": ">= 12.13.0" @@ -22592,6 +30676,8 @@ }, "node_modules/react-dev-utils/node_modules/locate-path": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "license": "MIT", "dependencies": { "p-locate": "^5.0.0" @@ -22603,11 +30689,13 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-dev-utils/node_modules/p-limit": { - "version": "3.1.0", + "node_modules/react-dev-utils/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "license": "MIT", "dependencies": { - "yocto-queue": "^0.1.0" + "p-limit": "^3.0.2" }, "engines": { "node": ">=10" @@ -22616,51 +30704,80 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-dev-utils/node_modules/p-locate": { - "version": "5.0.0", + "node_modules/react-dev-utils/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "license": "MIT", "dependencies": { - "p-limit": "^3.0.2" + "shebang-regex": "^3.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/react-dev-utils/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/react-dev-utils/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", "dependencies": { - "has-flag": "^4.0.0" + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" }, "engines": { - "node": ">=8" + "node": ">= 8" } }, "node_modules/react-dom": { - "version": "17.0.2", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "scheduler": "^0.20.2" + "scheduler": "^0.23.2" }, "peerDependencies": { - "react": "17.0.2" + "react": "^18.3.1" } }, "node_modules/react-error-overlay": { "version": "6.0.11", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", + "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==", "license": "MIT" }, "node_modules/react-fast-compare": { - "version": "3.2.0", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", + "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==", "license": "MIT" }, "node_modules/react-helmet-async": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/react-helmet-async/-/react-helmet-async-1.3.0.tgz", + "integrity": "sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==", "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.12.5", @@ -22675,44 +30792,49 @@ } }, "node_modules/react-hook-form": { - "version": "7.49.3", + "version": "7.54.1", + "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.54.1.tgz", + "integrity": "sha512-PUNzFwQeQ5oHiiTUO7GO/EJXGEtuun2Y1A59rLnZBBj+vNEOWt/3ERTiG1/zt7dVeJEM+4vDX/7XQ/qanuvPMg==", "license": "MIT", "engines": { - "node": ">=18", - "pnpm": "8" + "node": ">=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/react-hook-form" }, "peerDependencies": { - "react": "^16.8.0 || ^17 || ^18" + "react": "^16.8.0 || ^17 || ^18 || ^19" } }, "node_modules/react-is": { - "version": "16.13.1", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", "license": "MIT" }, - "node_modules/react-json-view": { - "version": "1.21.3", + "node_modules/react-json-view-lite": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/react-json-view-lite/-/react-json-view-lite-1.5.0.tgz", + "integrity": "sha512-nWqA1E4jKPklL2jvHWs6s+7Na0qNgw9HCP6xehdQJeg6nPBTFZgGwyko9Q0oj+jQWKTTVRS30u0toM5wiuL3iw==", "license": "MIT", - "dependencies": { - "flux": "^4.0.1", - "react-base16-styling": "^0.6.0", - "react-lifecycles-compat": "^3.0.4", - "react-textarea-autosize": "^8.3.2" + "engines": { + "node": ">=14" }, "peerDependencies": { - "react": "^17.0.0 || ^16.3.0 || ^15.5.4", - "react-dom": "^17.0.0 || ^16.3.0 || ^15.5.4" + "react": "^16.13.1 || ^17.0.0 || ^18.0.0" } }, "node_modules/react-lifecycles-compat": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==", "license": "MIT" }, "node_modules/react-live": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/react-live/-/react-live-4.0.1.tgz", + "integrity": "sha512-ndRYxgJYdcfVibnM0zublvEdwArbIwplhLxpOf3dsRtVh8BId0nOnblticIwhl24D5RcmIHf8siCErtgGN4zLw==", "license": "MIT", "dependencies": { "prism-react-renderer": "^1.3.1", @@ -22724,13 +30846,23 @@ "npm": ">= 2.0.0" } }, + "node_modules/react-live/node_modules/prism-react-renderer": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-1.3.5.tgz", + "integrity": "sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==", + "license": "MIT", + "peerDependencies": { + "react": ">=0.14.9" + } + }, "node_modules/react-loadable": { "name": "@docusaurus/react-loadable", - "version": "5.5.2", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@docusaurus/react-loadable/-/react-loadable-6.0.0.tgz", + "integrity": "sha512-YMMxTUQV/QFSnbgrP3tjDzLHRg7vsbMn8e9HAa8o/1iXoiomo48b7sk/kkmWEuWNDPJVlKSJRB6Y2fHqdJk+SQ==", "license": "MIT", "dependencies": { - "@types/react": "*", - "prop-types": "^15.6.2" + "@types/react": "*" }, "peerDependencies": { "react": "*" @@ -22738,6 +30870,8 @@ }, "node_modules/react-loadable-ssr-addon-v5-slorber": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/react-loadable-ssr-addon-v5-slorber/-/react-loadable-ssr-addon-v5-slorber-1.0.1.tgz", + "integrity": "sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==", "license": "MIT", "dependencies": { "@babel/runtime": "^7.10.3" @@ -22752,10 +30886,14 @@ }, "node_modules/react-magic-dropzone": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/react-magic-dropzone/-/react-magic-dropzone-1.0.1.tgz", + "integrity": "sha512-0BIROPARmXHpk4AS3eWBOsewxoM5ndk2psYP/JmbCq8tz3uR2LIV1XiroZ9PKrmDRMctpW+TvsBCtWasuS8vFA==", "license": "MIT" }, "node_modules/react-markdown": { "version": "8.0.7", + "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-8.0.7.tgz", + "integrity": "sha512-bvWbzG4MtOU62XqBx3Xx+zB2raaFFsq4mYiAzfjXJMEz2sixgeAfraA3tvzULF02ZdOMUOKTBFFaZJDDrq+BJQ==", "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", @@ -22783,1055 +30921,1241 @@ "react": ">=16" } }, - "node_modules/react-markdown/node_modules/bail": { - "version": "2.0.2", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/react-markdown/node_modules/comma-separated-tokens": { - "version": "2.0.3", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/react-markdown/node_modules/is-plain-obj": { - "version": "4.1.0", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/react-markdown/node_modules/property-information": { - "version": "6.4.0", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/react-markdown/node_modules/react-is": { - "version": "18.2.0", - "license": "MIT" - }, - "node_modules/react-markdown/node_modules/remark-parse": { - "version": "10.0.2", + "node_modules/react-markdown/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", "license": "MIT", "dependencies": { - "@types/mdast": "^3.0.0", - "mdast-util-from-markdown": "^1.0.0", - "unified": "^10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/react-markdown/node_modules/space-separated-tokens": { - "version": "2.0.2", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "@types/unist": "^2" } }, - "node_modules/react-markdown/node_modules/style-to-object": { - "version": "0.4.4", + "node_modules/react-markdown/node_modules/@types/mdast": { + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", + "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", "license": "MIT", "dependencies": { - "inline-style-parser": "0.1.1" - } - }, - "node_modules/react-markdown/node_modules/trough": { - "version": "2.1.0", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "@types/unist": "^2" } }, - "node_modules/react-markdown/node_modules/unified": { - "version": "10.1.2", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } + "node_modules/react-markdown/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", + "license": "MIT" }, - "node_modules/react-markdown/node_modules/unist-util-is": { - "version": "5.2.1", + "node_modules/react-markdown/node_modules/hast-util-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", + "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0" - }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/react-markdown/node_modules/unist-util-stringify-position": { - "version": "3.0.3", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } + "node_modules/react-markdown/node_modules/inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", + "license": "MIT" }, - "node_modules/react-markdown/node_modules/unist-util-visit": { - "version": "4.1.2", + "node_modules/react-markdown/node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" + "engines": { + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-markdown/node_modules/unist-util-visit-parents": { - "version": "5.1.3", + "node_modules/react-markdown/node_modules/mdast-util-from-markdown": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", + "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", "license": "MIT", "dependencies": { + "@types/mdast": "^3.0.0", "@types/unist": "^2.0.0", - "unist-util-is": "^5.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" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/react-markdown/node_modules/vfile": { - "version": "5.3.7", + "node_modules/react-markdown/node_modules/mdast-util-to-hast": { + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz", + "integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-definitions": "^5.0.0", + "micromark-util-sanitize-uri": "^1.1.0", + "trim-lines": "^3.0.0", + "unist-util-generated": "^2.0.0", + "unist-util-position": "^4.0.0", + "unist-util-visit": "^4.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/react-markdown/node_modules/vfile-message": { - "version": "3.1.4", + "node_modules/react-markdown/node_modules/mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" + "@types/mdast": "^3.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/react-modal": { - "version": "3.16.1", + "node_modules/react-markdown/node_modules/micromark": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz", + "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "exenv": "^1.2.0", - "prop-types": "^15.7.2", - "react-lifecycles-compat": "^3.0.0", - "warning": "^4.0.3" - }, - "engines": { - "node": ">=8" - }, - "peerDependencies": { - "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", - "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18" + "@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" } }, - "node_modules/react-player": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/react-player/-/react-player-2.16.0.tgz", - "integrity": "sha512-mAIPHfioD7yxO0GNYVFD1303QFtI3lyyQZLY229UEAp/a10cSW+hPcakg0Keq8uWJxT2OiT/4Gt+Lc9bD6bJmQ==", + "node_modules/react-markdown/node_modules/micromark-core-commonmark": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", + "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "deepmerge": "^4.0.0", - "load-script": "^1.0.0", - "memoize-one": "^5.1.1", - "prop-types": "^15.7.2", - "react-fast-compare": "^3.0.1" - }, - "peerDependencies": { - "react": ">=16.6.0" + "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" } }, - "node_modules/react-redux": { - "version": "7.2.9", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.15.4", - "@types/react-redux": "^7.1.20", - "hoist-non-react-statics": "^3.3.2", - "loose-envify": "^1.4.0", - "prop-types": "^15.7.2", - "react-is": "^17.0.2" - }, - "peerDependencies": { - "react": "^16.8.3 || ^17 || ^18" - }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true + "node_modules/react-markdown/node_modules/micromark-factory-destination": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", + "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" }, - "react-native": { - "optional": true + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" } - } - }, - "node_modules/react-redux/node_modules/react-is": { - "version": "17.0.2", - "license": "MIT" - }, - "node_modules/react-router": { - "version": "5.3.3", + ], "license": "MIT", "dependencies": { - "@babel/runtime": "^7.12.13", - "history": "^4.9.0", - "hoist-non-react-statics": "^3.1.0", - "loose-envify": "^1.3.1", - "mini-create-react-context": "^0.4.0", - "path-to-regexp": "^1.7.0", - "prop-types": "^15.6.2", - "react-is": "^16.6.0", - "tiny-invariant": "^1.0.2", - "tiny-warning": "^1.0.0" - }, - "peerDependencies": { - "react": ">=15" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/react-router-config": { - "version": "5.1.1", + "node_modules/react-markdown/node_modules/micromark-factory-label": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", + "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@babel/runtime": "^7.1.2" - }, - "peerDependencies": { - "react": ">=15", - "react-router": ">=5" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" } }, - "node_modules/react-router-dom": { - "version": "5.3.3", + "node_modules/react-markdown/node_modules/micromark-factory-title": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", + "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@babel/runtime": "^7.12.13", - "history": "^4.9.0", - "loose-envify": "^1.3.1", - "prop-types": "^15.6.2", - "react-router": "5.3.3", - "tiny-invariant": "^1.0.2", - "tiny-warning": "^1.0.0" - }, - "peerDependencies": { - "react": ">=15" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/react-textarea-autosize": { - "version": "8.5.3", + "node_modules/react-markdown/node_modules/micromark-factory-whitespace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", + "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@babel/runtime": "^7.20.13", - "use-composed-ref": "^1.3.0", - "use-latest": "^1.2.1" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/read-pkg": { + "node_modules/react-markdown/node_modules/micromark-util-chunked": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", + "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/read-pkg-up": { - "version": "1.0.1", + "node_modules/react-markdown/node_modules/micromark-util-classify-character": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", + "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "1.1.2", + "node_modules/react-markdown/node_modules/micromark-util-combine-extensions": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", + "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/read-pkg-up/node_modules/path-exists": { - "version": "2.1.0", + "node_modules/react-markdown/node_modules/micromark-util-decode-numeric-character-reference": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", + "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/read-pkg/node_modules/path-type": { + "node_modules/react-markdown/node_modules/micromark-util-decode-string": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", + "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" + "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" } }, - "node_modules/read-pkg/node_modules/pify": { - "version": "2.3.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } + "node_modules/react-markdown/node_modules/micromark-util-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", + "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" }, - "node_modules/readable-stream": { - "version": "3.6.2", + "node_modules/react-markdown/node_modules/micromark-util-html-tag-name": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", + "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/react-markdown/node_modules/micromark-util-normalize-identifier": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", + "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/readdirp": { - "version": "3.6.0", + "node_modules/react-markdown/node_modules/micromark-util-resolve-all": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", + "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" + "micromark-util-types": "^1.0.0" } }, - "node_modules/reading-time": { - "version": "1.5.0", - "license": "MIT" - }, - "node_modules/rechoir": { - "version": "0.6.2", + "node_modules/react-markdown/node_modules/micromark-util-sanitize-uri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", + "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", "dependencies": { - "resolve": "^1.1.6" - }, - "engines": { - "node": ">= 0.10" + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/recursive-readdir": { - "version": "2.2.2", + "node_modules/react-markdown/node_modules/micromark-util-subtokenize": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", + "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "minimatch": "3.0.4" - }, - "engines": { - "node": ">=0.10.0" + "micromark-util-chunked": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" } }, - "node_modules/redent": { - "version": "1.0.0", + "node_modules/react-markdown/node_modules/micromark-util-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", + "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/react-markdown/node_modules/remark-parse": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.2.tgz", + "integrity": "sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==", "license": "MIT", "dependencies": { - "indent-string": "^2.1.0", - "strip-indent": "^1.0.1" + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "unified": "^10.0.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/redent/node_modules/indent-string": { - "version": "2.1.0", + "node_modules/react-markdown/node_modules/remark-rehype": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz", + "integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==", "license": "MIT", "dependencies": { - "repeating": "^2.0.0" + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-to-hast": "^12.1.0", + "unified": "^10.0.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/redux": { - "version": "4.2.1", + "node_modules/react-markdown/node_modules/style-to-object": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz", + "integrity": "sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==", "license": "MIT", "dependencies": { - "@babel/runtime": "^7.9.2" - } - }, - "node_modules/redux-thunk": { - "version": "2.4.2", - "license": "MIT", - "peerDependencies": { - "redux": "^4" - } - }, - "node_modules/reflect.ownkeys": { - "version": "0.2.0", - "license": "MIT" - }, - "node_modules/reftools": { - "version": "1.1.9", - "license": "BSD-3-Clause", - "funding": { - "url": "https://github.com/Mermade/oas-kit?sponsor=1" + "inline-style-parser": "0.1.1" } }, - "node_modules/regenerate": { - "version": "1.4.2", - "license": "MIT" - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.0", + "node_modules/react-markdown/node_modules/unified": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", + "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", "license": "MIT", "dependencies": { - "regenerate": "^1.4.2" + "@types/unist": "^2.0.0", + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" }, - "engines": { - "node": ">=4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/regenerator-runtime": { - "version": "0.13.9", - "license": "MIT" - }, - "node_modules/regenerator-transform": { - "version": "0.15.1", + "node_modules/react-markdown/node_modules/unist-util-is": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", + "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", "license": "MIT", "dependencies": { - "@babel/runtime": "^7.8.4" + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/regex-not": { - "version": "1.0.2", + "node_modules/react-markdown/node_modules/unist-util-position": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", + "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", "license": "MIT", "dependencies": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" + "@types/unist": "^2.0.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/regex-not/node_modules/extend-shallow": { - "version": "3.0.2", + "node_modules/react-markdown/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", "license": "MIT", "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" + "@types/unist": "^2.0.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/regex-not/node_modules/is-extendable": { - "version": "1.0.1", + "node_modules/react-markdown/node_modules/unist-util-visit": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", "license": "MIT", "dependencies": { - "is-plain-object": "^2.0.4" + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/regexp.prototype.flags": { - "version": "1.4.3", + "node_modules/react-markdown/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" - }, - "engines": { - "node": ">= 0.4" + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/regexpu-core": { - "version": "5.2.2", + "node_modules/react-markdown/node_modules/vfile": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", "license": "MIT", "dependencies": { - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsgen": "^0.7.1", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" }, - "engines": { - "node": ">=4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/registry-auth-token": { - "version": "4.2.1", + "node_modules/react-markdown/node_modules/vfile-message": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", "license": "MIT", "dependencies": { - "rc": "^1.2.8" + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" }, - "engines": { - "node": ">=6.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/registry-url": { - "version": "5.1.0", + "node_modules/react-modal": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.16.3.tgz", + "integrity": "sha512-yCYRJB5YkeQDQlTt17WGAgFJ7jr2QYcWa1SHqZ3PluDmnKJ/7+tVU+E6uKyZ0nODaeEj+xCpK4LcSnKXLMC0Nw==", "license": "MIT", "dependencies": { - "rc": "^1.2.8" + "exenv": "^1.2.0", + "prop-types": "^15.7.2", + "react-lifecycles-compat": "^3.0.0", + "warning": "^4.0.3" }, - "engines": { - "node": ">=8" + "peerDependencies": { + "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 || ^19", + "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 || ^19" } }, - "node_modules/regjsgen": { - "version": "0.7.1", - "license": "MIT" - }, - "node_modules/regjsparser": { - "version": "0.9.1", - "license": "BSD-2-Clause", + "node_modules/react-player": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/react-player/-/react-player-2.16.0.tgz", + "integrity": "sha512-mAIPHfioD7yxO0GNYVFD1303QFtI3lyyQZLY229UEAp/a10cSW+hPcakg0Keq8uWJxT2OiT/4Gt+Lc9bD6bJmQ==", + "license": "MIT", "dependencies": { - "jsesc": "~0.5.0" + "deepmerge": "^4.0.0", + "load-script": "^1.0.0", + "memoize-one": "^5.1.1", + "prop-types": "^15.7.2", + "react-fast-compare": "^3.0.1" }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "bin": { - "jsesc": "bin/jsesc" + "peerDependencies": { + "react": ">=16.6.0" } }, - "node_modules/rehype-raw": { - "version": "6.1.1", + "node_modules/react-redux": { + "version": "7.2.9", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", + "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0", - "hast-util-raw": "^7.2.0", - "unified": "^10.0.0" + "@babel/runtime": "^7.15.4", + "@types/react-redux": "^7.1.20", + "hoist-non-react-statics": "^3.3.2", + "loose-envify": "^1.4.0", + "prop-types": "^15.7.2", + "react-is": "^17.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "peerDependencies": { + "react": "^16.8.3 || ^17 || ^18" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } } }, - "node_modules/rehype-raw/node_modules/@types/parse5": { - "version": "6.0.3", + "node_modules/react-redux/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "license": "MIT" }, - "node_modules/rehype-raw/node_modules/bail": { - "version": "2.0.2", + "node_modules/react-router": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.3.4.tgz", + "integrity": "sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "@babel/runtime": "^7.12.13", + "history": "^4.9.0", + "hoist-non-react-statics": "^3.1.0", + "loose-envify": "^1.3.1", + "path-to-regexp": "^1.7.0", + "prop-types": "^15.6.2", + "react-is": "^16.6.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "peerDependencies": { + "react": ">=15" } }, - "node_modules/rehype-raw/node_modules/comma-separated-tokens": { - "version": "2.0.3", + "node_modules/react-router-config": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/react-router-config/-/react-router-config-5.1.1.tgz", + "integrity": "sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "@babel/runtime": "^7.1.2" + }, + "peerDependencies": { + "react": ">=15", + "react-router": ">=5" } }, - "node_modules/rehype-raw/node_modules/hast-util-from-parse5": { - "version": "7.1.2", + "node_modules/react-router-dom": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.4.tgz", + "integrity": "sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==", "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0", - "@types/unist": "^2.0.0", - "hastscript": "^7.0.0", - "property-information": "^6.0.0", - "vfile": "^5.0.0", - "vfile-location": "^4.0.0", - "web-namespaces": "^2.0.0" + "@babel/runtime": "^7.12.13", + "history": "^4.9.0", + "loose-envify": "^1.3.1", + "prop-types": "^15.6.2", + "react-router": "5.3.4", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "peerDependencies": { + "react": ">=15" } }, - "node_modules/rehype-raw/node_modules/hast-util-parse-selector": { - "version": "3.1.1", + "node_modules/react-router/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "license": "MIT" + }, + "node_modules/react-router/node_modules/path-to-regexp": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.9.0.tgz", + "integrity": "sha512-xIp7/apCFJuUHdDLWe8O1HIkb0kQrOMb/0u6FXQjemHn/ii5LrIzU6bdECnsiTF/GjZkMEKg1xdiZwNqDYlZ6g==", "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "isarray": "0.0.1" } }, - "node_modules/rehype-raw/node_modules/hast-util-raw": { - "version": "7.2.3", + "node_modules/react-router/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0", - "@types/parse5": "^6.0.0", - "hast-util-from-parse5": "^7.0.0", - "hast-util-to-parse5": "^7.0.0", - "html-void-elements": "^2.0.0", - "parse5": "^6.0.0", - "unist-util-position": "^4.0.0", - "unist-util-visit": "^4.0.0", - "vfile": "^5.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/rehype-raw/node_modules/hast-util-to-parse5": { - "version": "7.1.0", + "node_modules/read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/rehype-raw/node_modules/hastscript": { - "version": "7.2.0", + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-parse-selector": "^3.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0" + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/rehype-raw/node_modules/html-void-elements": { - "version": "2.0.1", + "node_modules/read-pkg-up/node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/rehype-raw/node_modules/is-plain-obj": { - "version": "4.1.0", + "node_modules/read-pkg/node_modules/path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", "license": "MIT", - "engines": { - "node": ">=12" + "dependencies": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/rehype-raw/node_modules/parse5": { - "version": "6.0.1", - "license": "MIT" - }, - "node_modules/rehype-raw/node_modules/property-information": { - "version": "6.4.0", + "node_modules/read-pkg/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/rehype-raw/node_modules/space-separated-tokens": { - "version": "2.0.2", + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/rehype-raw/node_modules/trough": { - "version": "2.1.0", + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/readable-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "safe-buffer": "~5.1.0" } }, - "node_modules/rehype-raw/node_modules/unified": { - "version": "10.1.2", + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" + "picomatch": "^2.2.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=8.10.0" } }, - "node_modules/rehype-raw/node_modules/unist-util-is": { - "version": "5.2.1", - "license": "MIT", + "node_modules/reading-time": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/reading-time/-/reading-time-1.5.0.tgz", + "integrity": "sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==", + "license": "MIT" + }, + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", "dependencies": { - "@types/unist": "^2.0.0" + "resolve": "^1.1.6" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">= 0.10" } }, - "node_modules/rehype-raw/node_modules/unist-util-position": { - "version": "4.0.4", + "node_modules/recma-build-jsx": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/recma-build-jsx/-/recma-build-jsx-1.0.0.tgz", + "integrity": "sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0" + "@types/estree": "^1.0.0", + "estree-util-build-jsx": "^3.0.0", + "vfile": "^6.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/rehype-raw/node_modules/unist-util-stringify-position": { - "version": "3.0.3", + "node_modules/recma-jsx": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/recma-jsx/-/recma-jsx-1.0.0.tgz", + "integrity": "sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0" + "acorn-jsx": "^5.0.0", + "estree-util-to-js": "^2.0.0", + "recma-parse": "^1.0.0", + "recma-stringify": "^1.0.0", + "unified": "^11.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/rehype-raw/node_modules/unist-util-visit": { - "version": "4.1.2", + "node_modules/recma-parse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/recma-parse/-/recma-parse-1.0.0.tgz", + "integrity": "sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" + "@types/estree": "^1.0.0", + "esast-util-from-js": "^2.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/rehype-raw/node_modules/unist-util-visit-parents": { - "version": "5.1.3", + "node_modules/recma-stringify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/recma-stringify/-/recma-stringify-1.0.0.tgz", + "integrity": "sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" + "@types/estree": "^1.0.0", + "estree-util-to-js": "^2.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/rehype-raw/node_modules/vfile": { - "version": "5.3.7", + "node_modules/recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" + "minimatch": "^3.0.5" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=6.0.0" } }, - "node_modules/rehype-raw/node_modules/vfile-location": { - "version": "4.1.0", + "node_modules/recursive-readdir/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "vfile": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/rehype-raw/node_modules/vfile-message": { - "version": "3.1.4", - "license": "MIT", + "node_modules/recursive-readdir/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" + "brace-expansion": "^1.1.7" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "*" } }, - "node_modules/rehype-raw/node_modules/web-namespaces": { - "version": "2.0.1", + "node_modules/redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/rehype-raw/node_modules/zwitch": { - "version": "2.0.4", + "node_modules/redent/node_modules/indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "repeating": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/relateurl": { - "version": "0.2.7", + "node_modules/redux": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", + "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", "license": "MIT", - "engines": { - "node": ">= 0.10" + "dependencies": { + "@babel/runtime": "^7.9.2" } }, - "node_modules/remark-emoji": { - "version": "2.2.0", + "node_modules/redux-thunk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", + "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", "license": "MIT", - "dependencies": { - "emoticon": "^3.2.0", - "node-emoji": "^1.10.0", - "unist-util-visit": "^2.0.3" + "peerDependencies": { + "redux": "^4" } }, - "node_modules/remark-emoji/node_modules/unist-util-visit": { - "version": "2.0.3", + "node_modules/reflect.getprototypeof": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.9.tgz", + "integrity": "sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0", - "unist-util-visit-parents": "^3.0.0" + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "dunder-proto": "^1.0.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "gopd": "^1.2.0", + "which-builtin-type": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/remark-emoji/node_modules/unist-util-visit-parents": { - "version": "3.1.1", + "node_modules/reflect.ownkeys": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/reflect.ownkeys/-/reflect.ownkeys-1.1.4.tgz", + "integrity": "sha512-iUNmtLgzudssL+qnTUosCmnq3eczlrVd1wXrgx/GhiI/8FvwrTYWtCJ9PNvWIRX+4ftupj2WUfB5mu5s9t6LnA==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-set-tostringtag": "^2.0.1", + "globalthis": "^1.0.3" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/remark-footnotes": { - "version": "2.0.0", - "license": "MIT", + "node_modules/reftools": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/reftools/-/reftools-1.1.9.tgz", + "integrity": "sha512-OVede/NQE13xBQ+ob5CKd5KyeJYU2YInb1bmV4nRoOfquZPkAkxuOXicSe1PvqIuZZ4kD13sPKBbR7UFDmli6w==", + "license": "BSD-3-Clause", "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/Mermade/oas-kit?sponsor=1" } }, - "node_modules/remark-mdx": { - "version": "1.6.22", - "license": "MIT", - "dependencies": { - "@babel/core": "7.12.9", - "@babel/helper-plugin-utils": "7.10.4", - "@babel/plugin-proposal-object-rest-spread": "7.12.1", - "@babel/plugin-syntax-jsx": "7.12.1", - "@mdx-js/util": "1.6.22", - "is-alphabetical": "1.0.4", - "remark-parse": "8.0.3", - "unified": "9.2.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "license": "MIT" }, - "node_modules/remark-mdx/node_modules/@babel/core": { - "version": "7.12.9", + "node_modules/regenerate-unicode-properties": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", + "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.5", - "@babel/helper-module-transforms": "^7.12.1", - "@babel/helpers": "^7.12.5", - "@babel/parser": "^7.12.7", - "@babel/template": "^7.12.7", - "@babel/traverse": "^7.12.9", - "@babel/types": "^7.12.7", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.19", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" + "regenerate": "^1.4.2" }, "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" + "node": ">=4" } }, - "node_modules/remark-mdx/node_modules/@babel/helper-plugin-utils": { - "version": "7.10.4", + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", "license": "MIT" }, - "node_modules/remark-mdx/node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.12.1", + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-transform-parameters": "^7.12.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/runtime": "^7.8.4" } }, - "node_modules/remark-mdx/node_modules/@babel/plugin-syntax-jsx": { - "version": "7.12.1", + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/remark-mdx/node_modules/semver": { - "version": "5.7.1", - "license": "ISC", - "bin": { - "semver": "bin/semver" + "node_modules/regex-not/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/remark-mdx/node_modules/unified": { - "version": "9.2.0", + "node_modules/regex-not/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "license": "MIT", "dependencies": { - "bail": "^1.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^2.0.0", - "trough": "^1.0.0", - "vfile": "^4.0.0" + "is-plain-object": "^2.0.4" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/remark-parse": { - "version": "8.0.3", + "node_modules/regexp.prototype.flags": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", + "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", "license": "MIT", "dependencies": { - "ccount": "^1.0.0", - "collapse-white-space": "^1.0.2", - "is-alphabetical": "^1.0.0", - "is-decimal": "^1.0.0", - "is-whitespace-character": "^1.0.0", - "is-word-character": "^1.0.0", - "markdown-escapes": "^1.0.0", - "parse-entities": "^2.0.0", - "repeat-string": "^1.5.4", - "state-toggle": "^1.0.0", - "trim": "0.0.1", - "trim-trailing-lines": "^1.0.0", - "unherit": "^1.0.4", - "unist-util-remove-position": "^2.0.0", - "vfile-location": "^3.0.0", - "xtend": "^4.0.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/remark-rehype": { - "version": "10.1.0", + "node_modules/regexpu-core": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", + "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-to-hast": "^12.1.0", - "unified": "^10.0.0" + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.0", + "regjsgen": "^0.8.0", + "regjsparser": "^0.12.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=4" } }, - "node_modules/remark-rehype/node_modules/bail": { - "version": "2.0.2", + "node_modules/registry-auth-token": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.3.tgz", + "integrity": "sha512-1bpc9IyC+e+CNFRaWyn77tk4xGG4PPUyfakSmA6F6cvUDjrm58dfyJ3II+9yb10EDkHoy1LaPSmHaWLOH3m6HA==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "@pnpm/npm-conf": "^2.1.0" + }, + "engines": { + "node": ">=14" } }, - "node_modules/remark-rehype/node_modules/is-plain-obj": { - "version": "4.1.0", + "node_modules/registry-url": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz", + "integrity": "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==", "license": "MIT", + "dependencies": { + "rc": "1.2.8" + }, "engines": { "node": ">=12" }, @@ -23839,159 +32163,197 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/remark-rehype/node_modules/mdast-util-definitions": { - "version": "5.1.2", - "license": "MIT", + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", + "license": "MIT" + }, + "node_modules/regjsparser": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", + "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", + "license": "BSD-2-Clause", "dependencies": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "unist-util-visit": "^4.0.0" + "jsesc": "~3.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "bin": { + "regjsparser": "bin/parser" } }, - "node_modules/remark-rehype/node_modules/mdast-util-to-hast": { - "version": "12.3.0", + "node_modules/regjsparser/node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", "license": "MIT", - "dependencies": { - "@types/hast": "^2.0.0", - "@types/mdast": "^3.0.0", - "mdast-util-definitions": "^5.0.0", - "micromark-util-sanitize-uri": "^1.1.0", - "trim-lines": "^3.0.0", - "unist-util-generated": "^2.0.0", - "unist-util-position": "^4.0.0", - "unist-util-visit": "^4.0.0" + "bin": { + "jsesc": "bin/jsesc" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=6" } }, - "node_modules/remark-rehype/node_modules/trough": { - "version": "2.1.0", + "node_modules/rehype-raw": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz", + "integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==", "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-raw": "^9.0.0", + "vfile": "^6.0.0" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/unified": { - "version": "10.1.2", + "node_modules/rehype-recma": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rehype-recma/-/rehype-recma-1.0.0.tgz", + "integrity": "sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "bail": "^2.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^4.0.0", - "trough": "^2.0.0", - "vfile": "^5.0.0" + "@types/estree": "^1.0.0", + "@types/hast": "^3.0.0", + "hast-util-to-estree": "^3.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/unist-util-generated": { - "version": "2.0.1", + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">= 0.10" } }, - "node_modules/remark-rehype/node_modules/unist-util-is": { - "version": "5.2.1", + "node_modules/remark-directive": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remark-directive/-/remark-directive-3.0.0.tgz", + "integrity": "sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0" + "@types/mdast": "^4.0.0", + "mdast-util-directive": "^3.0.0", + "micromark-extension-directive": "^3.0.0", + "unified": "^11.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/unist-util-position": { - "version": "4.0.4", + "node_modules/remark-emoji": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/remark-emoji/-/remark-emoji-4.0.1.tgz", + "integrity": "sha512-fHdvsTR1dHkWKev9eNyhTo4EFwbUvJ8ka9SgeWkMPYFX4WoI7ViVBms3PjlQYgw5TLvNQso3GUB/b/8t3yo+dg==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0" + "@types/mdast": "^4.0.2", + "emoticon": "^4.0.1", + "mdast-util-find-and-replace": "^3.0.1", + "node-emoji": "^2.1.0", + "unified": "^11.0.4" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, - "node_modules/remark-rehype/node_modules/unist-util-stringify-position": { - "version": "3.0.3", + "node_modules/remark-frontmatter": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-5.0.0.tgz", + "integrity": "sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0" + "@types/mdast": "^4.0.0", + "mdast-util-frontmatter": "^2.0.0", + "micromark-extension-frontmatter": "^2.0.0", + "unified": "^11.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/unist-util-visit": { - "version": "4.1.2", + "node_modules/remark-gfm": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.0.tgz", + "integrity": "sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.1.1" + "@types/mdast": "^4.0.0", + "mdast-util-gfm": "^3.0.0", + "micromark-extension-gfm": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-stringify": "^11.0.0", + "unified": "^11.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/unist-util-visit-parents": { - "version": "5.1.3", + "node_modules/remark-mdx": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.1.0.tgz", + "integrity": "sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^5.0.0" + "mdast-util-mdx": "^3.0.0", + "micromark-extension-mdxjs": "^3.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/vfile": { - "version": "5.3.7", + "node_modules/remark-parse": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.0.0" + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unified": "^11.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-rehype/node_modules/vfile-message": { - "version": "3.1.4", + "node_modules/remark-rehype": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.1.tgz", + "integrity": "sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "mdast-util-to-hast": "^13.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/remark-squeeze-paragraphs": { - "version": "4.0.0", + "node_modules/remark-stringify": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", + "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", "license": "MIT", "dependencies": { - "mdast-squeeze-paragraphs": "^4.0.0" + "@types/mdast": "^4.0.0", + "mdast-util-to-markdown": "^2.0.0", + "unified": "^11.0.0" }, "funding": { "type": "opencollective", @@ -24000,6 +32362,8 @@ }, "node_modules/remarkable": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-2.0.1.tgz", + "integrity": "sha512-YJyMcOH5lrR+kZdmB0aJJ4+93bEojRZ1HGDn9Eagu6ibg7aVZhc3OWbbShRid+Q5eAfsEqWxpe+g5W5nYNfNiA==", "license": "MIT", "dependencies": { "argparse": "^1.0.10", @@ -24014,6 +32378,8 @@ }, "node_modules/remarkable/node_modules/argparse": { "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" @@ -24021,6 +32387,8 @@ }, "node_modules/renderkid": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", "license": "MIT", "dependencies": { "css-select": "^4.1.3", @@ -24030,113 +32398,154 @@ "strip-ansi": "^6.0.1" } }, - "node_modules/repeat-element": { - "version": "1.1.4", - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "node_modules/renderkid/node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/repeat-string": { - "version": "1.6.1", + "node_modules/renderkid/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "license": "MIT", - "engines": { - "node": ">=0.10" + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "node_modules/repeating": { - "version": "2.0.1", - "license": "MIT", + "node_modules/renderkid/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "license": "BSD-2-Clause", "dependencies": { - "is-finite": "^1.0.0" + "domelementtype": "^2.2.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/replace-ext": { - "version": "1.0.1", - "license": "MIT", - "engines": { - "node": ">= 0.10" + "node_modules/renderkid/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/replace-in-file": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/replace-in-file/-/replace-in-file-7.2.0.tgz", - "integrity": "sha512-CiLXVop3o8/h2Kd1PwKPPimmS9wUV0Ki6Fl8+1ITD35nB3Gl/PrW5IONpTE0AXk0z4v8WYcpEpdeZqMXvSnWpg==", - "dev": true, + "node_modules/renderkid/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], "license": "MIT", "dependencies": { - "chalk": "^4.1.2", - "glob": "^8.1.0", - "yargs": "^17.7.2" - }, - "bin": { - "replace-in-file": "bin/cli.js" - }, - "engines": { - "node": ">=10" + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" } }, - "node_modules/replace-in-file/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "license": "MIT", + "engines": { + "node": ">=0.10" } }, - "node_modules/replace-in-file/node_modules/brace-expansion": { + "node_modules/repeating": { "version": "2.0.1", - "dev": true, + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==", "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "is-finite": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/replace-in-file/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, + "node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">= 0.10" } }, - "node_modules/replace-in-file/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/replace-in-file": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/replace-in-file/-/replace-in-file-7.2.0.tgz", + "integrity": "sha512-CiLXVop3o8/h2Kd1PwKPPimmS9wUV0Ki6Fl8+1ITD35nB3Gl/PrW5IONpTE0AXk0z4v8WYcpEpdeZqMXvSnWpg==", "dev": true, "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "chalk": "^4.1.2", + "glob": "^8.1.0", + "yargs": "^17.7.2" + }, + "bin": { + "replace-in-file": "bin/cli.js" }, "engines": { - "node": ">=7.0.0" + "node": ">=10" } }, - "node_modules/replace-in-file/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/replace-in-file/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true, "license": "MIT" }, @@ -24161,44 +32570,55 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/replace-in-file/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/replace-in-file/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/replace-in-file/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "node_modules/replace-in-file/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "brace-expansion": "^2.0.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/replace-in-file/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/replace-in-file/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" }, "engines": { - "node": ">=8" + "node": ">=12" } }, "node_modules/request": { "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", "license": "Apache-2.0", "dependencies": { "aws-sign2": "~0.7.0", @@ -24228,6 +32648,8 @@ }, "node_modules/request/node_modules/qs": { "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", "license": "BSD-3-Clause", "engines": { "node": ">=0.6" @@ -24235,6 +32657,9 @@ }, "node_modules/request/node_modules/uuid": { "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", "license": "MIT", "bin": { "uuid": "bin/uuid" @@ -24242,6 +32667,8 @@ }, "node_modules/require-directory": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -24249,6 +32676,8 @@ }, "node_modules/require-from-string": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -24256,39 +32685,54 @@ }, "node_modules/require-like": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/require-like/-/require-like-0.1.2.tgz", + "integrity": "sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==", "engines": { "node": "*" } }, - "node_modules/require-main-filename": { - "version": "2.0.0", - "license": "ISC" - }, "node_modules/requires-port": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", "license": "MIT" }, "node_modules/reselect": { "version": "4.1.8", + "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz", + "integrity": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==", "license": "MIT" }, "node_modules/resolve": { - "version": "1.22.1", + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", "license": "MIT", "dependencies": { - "is-core-module": "^2.9.0", + "is-core-module": "^2.16.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "license": "MIT" + }, "node_modules/resolve-cwd": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, "license": "MIT", "dependencies": { @@ -24300,6 +32744,8 @@ }, "node_modules/resolve-cwd/node_modules/resolve-from": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "license": "MIT", "engines": { @@ -24308,6 +32754,8 @@ }, "node_modules/resolve-from": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "license": "MIT", "engines": { "node": ">=4" @@ -24315,10 +32763,15 @@ }, "node_modules/resolve-pathname": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", + "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==", "license": "MIT" }, "node_modules/resolve-url": { "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", "license": "MIT" }, "node_modules/resolve.exports": { @@ -24333,6 +32786,8 @@ }, "node_modules/responselike": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", "license": "MIT", "dependencies": { "lowercase-keys": "^1.0.0" @@ -24340,6 +32795,8 @@ }, "node_modules/restore-cursor": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", + "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", "dev": true, "license": "MIT", "dependencies": { @@ -24355,6 +32812,8 @@ }, "node_modules/ret": { "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "license": "MIT", "engines": { "node": ">=0.12" @@ -24362,6 +32821,8 @@ }, "node_modules/retry": { "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", "license": "MIT", "engines": { "node": ">= 4" @@ -24369,6 +32830,8 @@ }, "node_modules/reusify": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "license": "MIT", "engines": { "iojs": ">=1.0.0", @@ -24376,20 +32839,29 @@ } }, "node_modules/rfdc": { - "version": "1.3.0", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", "dev": true, "license": "MIT" }, "node_modules/rgb-regex": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==", "license": "MIT" }, "node_modules/rgba-regex": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==", "license": "MIT" }, "node_modules/rimraf": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "license": "ISC", "dependencies": { "glob": "^7.1.3" @@ -24403,6 +32875,8 @@ }, "node_modules/ripemd160": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", "license": "MIT", "dependencies": { "hash-base": "^3.0.0", @@ -24412,20 +32886,35 @@ "node_modules/robust-predicates": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz", - "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==" + "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==", + "license": "Unlicense" + }, + "node_modules/roughjs": { + "version": "4.6.6", + "resolved": "https://registry.npmjs.org/roughjs/-/roughjs-4.6.6.tgz", + "integrity": "sha512-ZUz/69+SYpFN/g/lUlo2FXcIjRkSu3nDarreVdGGndHEBJ6cXPdKguS8JGxwj5HA5xIbVKSmLgr5b3AWxtRfvQ==", + "license": "MIT", + "dependencies": { + "hachure-fill": "^0.5.2", + "path-data-parser": "^0.1.0", + "points-on-curve": "^0.2.0", + "points-on-path": "^0.2.1" + } }, "node_modules/rrdom": { - "version": "2.0.0-alpha.17", - "resolved": "https://registry.npmjs.org/rrdom/-/rrdom-2.0.0-alpha.17.tgz", - "integrity": "sha512-b6caDiNcFO96Opp7TGdcVd4OLGSXu5dJe+A0IDiAu8mk7OmhqZCSDlgQdTKmdO5wMf4zPsUTgb8H/aNvR3kDHA==", + "version": "2.0.0-alpha.18", + "resolved": "https://registry.npmjs.org/rrdom/-/rrdom-2.0.0-alpha.18.tgz", + "integrity": "sha512-fSFzFFxbqAViITyYVA4Z0o5G6p1nEqEr/N8vdgSKie9Rn0FJxDSNJgjV0yiCIzcDs0QR+hpvgFhpbdZ6JIr5Nw==", + "license": "MIT", "dependencies": { - "rrweb-snapshot": "^2.0.0-alpha.17" + "rrweb-snapshot": "^2.0.0-alpha.18" } }, "node_modules/rrweb": { "version": "2.0.0-alpha.13", "resolved": "https://registry.npmjs.org/rrweb/-/rrweb-2.0.0-alpha.13.tgz", "integrity": "sha512-a8GXOCnzWHNaVZPa7hsrLZtNZ3CGjiL+YrkpLo0TfmxGLhjNZbWY2r7pE06p+FcjFNlgUVTmFrSJbK3kO7yxvw==", + "license": "MIT", "dependencies": { "@rrweb/types": "^2.0.0-alpha.13", "@types/css-font-loading-module": "0.0.7", @@ -24438,15 +32927,18 @@ } }, "node_modules/rrweb-snapshot": { - "version": "2.0.0-alpha.17", - "resolved": "https://registry.npmjs.org/rrweb-snapshot/-/rrweb-snapshot-2.0.0-alpha.17.tgz", - "integrity": "sha512-GBg5pV8LHOTbeVmH2VHLEFR0mc2QpQMzAvcoxEGfPNWgWHc8UvKCyq7pqN1vA+fDZ+yXXbixeO0kB2pzVvFCBw==", + "version": "2.0.0-alpha.18", + "resolved": "https://registry.npmjs.org/rrweb-snapshot/-/rrweb-snapshot-2.0.0-alpha.18.tgz", + "integrity": "sha512-hBHZL/NfgQX6wO1D9mpwqFu1NJPpim+moIcKhFEjVTZVRUfCln+LOugRc4teVTCISYHN8Cw5e2iNTWCSm+SkoA==", + "license": "MIT", "dependencies": { "postcss": "^8.4.38" } }, "node_modules/rst-selector-parser": { "version": "2.2.3", + "resolved": "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz", + "integrity": "sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA==", "license": "BSD-3-Clause", "dependencies": { "lodash.flattendeep": "^4.4.0", @@ -24454,87 +32946,33 @@ } }, "node_modules/rtl-detect": { - "version": "1.0.4", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/rtl-detect/-/rtl-detect-1.1.2.tgz", + "integrity": "sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==", "license": "BSD-3-Clause" }, "node_modules/rtlcss": { - "version": "3.5.0", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-4.3.0.tgz", + "integrity": "sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig==", "license": "MIT", "dependencies": { - "find-up": "^5.0.0", + "escalade": "^3.1.1", "picocolors": "^1.0.0", - "postcss": "^8.3.11", + "postcss": "^8.4.21", "strip-json-comments": "^3.1.1" }, "bin": { "rtlcss": "bin/rtlcss.js" - } - }, - "node_modules/rtlcss/node_modules/find-up": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/rtlcss/node_modules/locate-path": { - "version": "6.0.0", - "license": "MIT", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/rtlcss/node_modules/p-limit": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/rtlcss/node_modules/p-locate": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "p-limit": "^3.0.2" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/rtlcss/node_modules/strip-json-comments": { - "version": "3.1.1", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12.0.0" } }, "node_modules/run-parallel": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "funding": [ { "type": "github", @@ -24556,17 +32994,14 @@ }, "node_modules/rw": { "version": "1.3.3", + "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", + "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==", "license": "BSD-3-Clause" }, - "node_modules/rxjs": { - "version": "7.6.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.1.0" - } - }, "node_modules/sade": { "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", "license": "MIT", "dependencies": { "mri": "^1.1.0" @@ -24575,27 +33010,77 @@ "node": ">=6" } }, + "node_modules/safe-array-concat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, "node_modules/safe-buffer": { - "version": "5.1.2", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT" }, "node_modules/safe-json-parse": { - "version": "1.0.1" + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz", + "integrity": "sha512-o0JmTu17WGUaUOHa1l0FPGXKBfijbxK6qoHzlkihsDXxzBHvJcA7zgviKR92Xs841rX9pK16unfphLq0/KqX7A==" }, "node_modules/safe-regex": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", "license": "MIT", "dependencies": { "ret": "~0.1.10" } }, "node_modules/safe-regex-test": { - "version": "1.0.0", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -24603,14 +33088,18 @@ }, "node_modules/safer-buffer": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "license": "MIT" }, "node_modules/sass": { - "version": "1.70.0", + "version": "1.83.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.83.0.tgz", + "integrity": "sha512-qsSxlayzoOjdvXMVLkzF84DJFc2HZEL/rFyGIKbbilYtAvlCxyuzUeff9LawTn4btVnLKg75Z8MMr1lxU1lfGw==", "license": "MIT", "dependencies": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", + "chokidar": "^4.0.0", + "immutable": "^5.0.2", "source-map-js": ">=0.6.2 <2.0.0" }, "bin": { @@ -24618,30 +33107,35 @@ }, "engines": { "node": ">=14.0.0" + }, + "optionalDependencies": { + "@parcel/watcher": "^2.4.1" } }, "node_modules/sass-loader": { - "version": "13.3.3", + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.4.tgz", + "integrity": "sha512-LavLbgbBGUt3wCiYzhuLLu65+fWXaXLmq7YxivLhEqmiupCFZ5sKUAipK3do6V80YSU0jvSxNhEdT13IXNr3rg==", "license": "MIT", "dependencies": { "neo-async": "^2.6.2" }, "engines": { - "node": ">= 14.15.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "fibers": ">= 3.1.0", + "@rspack/core": "0.x || 1.x", "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", "sass": "^1.3.0", "sass-embedded": "*", "webpack": "^5.0.0" }, "peerDependenciesMeta": { - "fibers": { + "@rspack/core": { "optional": true }, "node-sass": { @@ -24652,28 +33146,65 @@ }, "sass-embedded": { "optional": true + }, + "webpack": { + "optional": true } } }, + "node_modules/sass/node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/sass/node_modules/readdirp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.0.2.tgz", + "integrity": "sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==", + "license": "MIT", + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, "node_modules/sax": { - "version": "1.2.4", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", + "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", "license": "ISC" }, "node_modules/scheduler": { - "version": "0.20.2", + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", "license": "MIT", "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" + "loose-envify": "^1.1.0" } }, "node_modules/schema-utils": { - "version": "3.1.1", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz", + "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==", "license": "MIT", "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" }, "engines": { "node": ">= 10.13.0" @@ -24684,15 +33215,16 @@ } }, "node_modules/search-insights": { - "version": "2.8.0", + "version": "2.17.3", + "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.17.3.tgz", + "integrity": "sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==", "license": "MIT", - "peer": true, - "engines": { - "node": ">=16.0.0" - } + "peer": true }, "node_modules/section-matter": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", + "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", "license": "MIT", "dependencies": { "extend-shallow": "^2.0.1", @@ -24704,6 +33236,8 @@ }, "node_modules/seek-bzip": { "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", "license": "MIT", "dependencies": { "commander": "^2.8.1" @@ -24715,16 +33249,23 @@ }, "node_modules/seek-bzip/node_modules/commander": { "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "license": "MIT" }, "node_modules/select-hose": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", "license": "MIT" }, "node_modules/selfsigned": { - "version": "2.0.1", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", "license": "MIT", "dependencies": { + "@types/node-forge": "^1.3.0", "node-forge": "^1" }, "engines": { @@ -24732,11 +33273,10 @@ } }, "node_modules/semver": { - "version": "7.5.4", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, @@ -24745,24 +33285,24 @@ } }, "node_modules/semver-diff": { - "version": "3.1.1", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", + "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", "license": "MIT", "dependencies": { - "semver": "^6.3.0" + "semver": "^7.3.5" }, "engines": { - "node": ">=8" - } - }, - "node_modules/semver-diff/node_modules/semver": { - "version": "6.3.0", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semver-regex": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", + "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", "license": "MIT", "engines": { "node": ">=6" @@ -24770,6 +33310,8 @@ }, "node_modules/semver-truncate": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", + "integrity": "sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w==", "license": "MIT", "dependencies": { "semver": "^5.3.0" @@ -24779,14 +33321,18 @@ } }, "node_modules/semver-truncate/node_modules/semver": { - "version": "5.7.1", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/send": { - "version": "0.18.0", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "license": "MIT", "dependencies": { "debug": "2.6.9", @@ -24809,6 +33355,8 @@ }, "node_modules/send/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -24816,42 +33364,75 @@ }, "node_modules/send/node_modules/debug/node_modules/ms": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "license": "MIT" - }, - "node_modules/send/node_modules/range-parser": { - "version": "1.2.1", + "node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">= 0.8" } }, "node_modules/serialize-javascript": { - "version": "6.0.0", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" } }, "node_modules/serve-handler": { - "version": "6.1.3", + "version": "6.1.6", + "resolved": "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.6.tgz", + "integrity": "sha512-x5RL9Y2p5+Sh3D38Fh9i/iQ5ZK+e4xuXRd/pGbM4D13tgo/MGwbttUk8emytcr1YYzBYs+apnUngBDFYfpjPuQ==", "license": "MIT", "dependencies": { "bytes": "3.0.0", "content-disposition": "0.5.2", - "fast-url-parser": "1.1.3", "mime-types": "2.1.18", - "minimatch": "3.0.4", + "minimatch": "3.1.2", "path-is-inside": "1.0.2", - "path-to-regexp": "2.2.1", + "path-to-regexp": "3.3.0", "range-parser": "1.2.0" } }, + "node_modules/serve-handler/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/serve-handler/node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/serve-handler/node_modules/content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, "node_modules/serve-handler/node_modules/mime-db": { "version": "1.33.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", + "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==", "license": "MIT", "engines": { "node": ">= 0.6" @@ -24859,6 +33440,8 @@ }, "node_modules/serve-handler/node_modules/mime-types": { "version": "2.1.18", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", + "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", "license": "MIT", "dependencies": { "mime-db": "~1.33.0" @@ -24867,12 +33450,37 @@ "node": ">= 0.6" } }, + "node_modules/serve-handler/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/serve-handler/node_modules/path-to-regexp": { - "version": "2.2.1", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz", + "integrity": "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==", "license": "MIT" }, + "node_modules/serve-handler/node_modules/range-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", + "integrity": "sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, "node_modules/serve-index": { "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "license": "MIT", "dependencies": { "accepts": "~1.3.4", @@ -24889,6 +33497,8 @@ }, "node_modules/serve-index/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -24896,6 +33506,8 @@ }, "node_modules/serve-index/node_modules/depd": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", "license": "MIT", "engines": { "node": ">= 0.6" @@ -24903,6 +33515,8 @@ }, "node_modules/serve-index/node_modules/http-errors": { "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", "license": "MIT", "dependencies": { "depd": "~1.1.2", @@ -24916,42 +33530,82 @@ }, "node_modules/serve-index/node_modules/inherits": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", "license": "ISC" }, "node_modules/serve-index/node_modules/ms": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, "node_modules/serve-index/node_modules/setprototypeof": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", "license": "ISC" }, "node_modules/serve-index/node_modules/statuses": { "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/serve-static": { - "version": "1.15.0", + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "license": "MIT", "dependencies": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "0.19.0" }, "engines": { "node": ">= 0.8.0" } }, - "node_modules/set-blocking": { - "version": "2.0.0", - "license": "ISC" + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } }, "node_modules/set-getter": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/set-getter/-/set-getter-0.1.1.tgz", + "integrity": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==", "license": "MIT", "dependencies": { "to-object-path": "^0.3.0" @@ -24962,6 +33616,8 @@ }, "node_modules/set-value": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", "license": "MIT", "dependencies": { "extend-shallow": "^2.0.1", @@ -24975,14 +33631,20 @@ }, "node_modules/setimmediate": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", "license": "MIT" }, "node_modules/setprototypeof": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "license": "ISC" }, "node_modules/sha.js": { "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", "license": "(MIT AND BSD-3-Clause)", "dependencies": { "inherits": "^2.0.1", @@ -24994,6 +33656,8 @@ }, "node_modules/shallow-clone": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "license": "MIT", "dependencies": { "kind-of": "^6.0.2" @@ -25004,31 +33668,47 @@ }, "node_modules/shallowequal": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==", "license": "MIT" }, "node_modules/shebang-command": { - "version": "2.0.0", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "license": "MIT", "dependencies": { - "shebang-regex": "^3.0.0" + "shebang-regex": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, "node_modules/shebang-regex": { - "version": "3.0.0", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, "node_modules/shell-quote": { - "version": "1.7.3", - "license": "MIT" + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz", + "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/shelljs": { "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", "license": "BSD-3-Clause", "dependencies": { "glob": "^7.0.0", @@ -25044,6 +33724,8 @@ }, "node_modules/should": { "version": "13.2.3", + "resolved": "https://registry.npmjs.org/should/-/should-13.2.3.tgz", + "integrity": "sha512-ggLesLtu2xp+ZxI+ysJTmNjh2U0TsC+rQ/pfED9bUZZ4DKefP27D+7YJVVTvKsmjLpIi9jAa7itwDGkDDmt1GQ==", "license": "MIT", "dependencies": { "should-equal": "^2.0.0", @@ -25055,6 +33737,8 @@ }, "node_modules/should-equal": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/should-equal/-/should-equal-2.0.0.tgz", + "integrity": "sha512-ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA==", "license": "MIT", "dependencies": { "should-type": "^1.4.0" @@ -25062,6 +33746,8 @@ }, "node_modules/should-format": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/should-format/-/should-format-3.0.3.tgz", + "integrity": "sha512-hZ58adtulAk0gKtua7QxevgUaXTTXxIi8t41L3zo9AHvjXO1/7sdLECuHeIN2SRtYXpNkmhoUP2pdeWgricQ+Q==", "license": "MIT", "dependencies": { "should-type": "^1.3.0", @@ -25070,10 +33756,14 @@ }, "node_modules/should-type": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/should-type/-/should-type-1.4.0.tgz", + "integrity": "sha512-MdAsTu3n25yDbIe1NeN69G4n6mUnJGtSJHygX3+oN0ZbO3DTiATnf7XnYJdGT42JCXurTb1JI0qOBR65shvhPQ==", "license": "MIT" }, "node_modules/should-type-adaptors": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/should-type-adaptors/-/should-type-adaptors-1.1.0.tgz", + "integrity": "sha512-JA4hdoLnN+kebEp2Vs8eBe9g7uy0zbRo+RMcU0EsNy+R+k049Ki+N5tT5Jagst2g7EAja+euFuoXFCa8vIklfA==", "license": "MIT", "dependencies": { "should-type": "^1.3.0", @@ -25082,15 +33772,77 @@ }, "node_modules/should-util": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/should-util/-/should-util-1.0.1.tgz", + "integrity": "sha512-oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g==", "license": "MIT" }, "node_modules/side-channel": { - "version": "1.0.4", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -25098,22 +33850,34 @@ }, "node_modules/signal-exit": { "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "license": "ISC" }, "node_modules/simple-swizzle": { "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", "license": "MIT", "dependencies": { "is-arrayish": "^0.3.1" } }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "license": "MIT" + }, "node_modules/sirv": { - "version": "1.0.19", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz", + "integrity": "sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==", "license": "MIT", "dependencies": { - "@polka/url": "^1.0.0-next.20", - "mrmime": "^1.0.0", - "totalist": "^1.0.0" + "@polka/url": "^1.0.0-next.24", + "mrmime": "^2.0.0", + "totalist": "^3.0.0" }, "engines": { "node": ">= 10" @@ -25121,10 +33885,14 @@ }, "node_modules/sisteransi": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "license": "MIT" }, "node_modules/sitemap": { - "version": "7.1.1", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-7.1.2.tgz", + "integrity": "sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw==", "license": "MIT", "dependencies": { "@types/node": "^17.0.5", @@ -25140,8 +33908,28 @@ "npm": ">=5.6.0" } }, + "node_modules/sitemap/node_modules/@types/node": { + "version": "17.0.45", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz", + "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==", + "license": "MIT" + }, + "node_modules/skin-tone": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", + "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==", + "license": "MIT", + "dependencies": { + "unicode-emoji-modifier-base": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/slash": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "license": "MIT", "engines": { "node": ">=8" @@ -25149,6 +33937,8 @@ }, "node_modules/slice-ansi": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", "dev": true, "license": "MIT", "dependencies": { @@ -25164,6 +33954,8 @@ }, "node_modules/slice-ansi/node_modules/ansi-styles": { "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "dev": true, "license": "MIT", "engines": { @@ -25173,26 +33965,29 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/slice-ansi/node_modules/is-fullwidth-code-point": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/slugify": { "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", "license": "MIT", "engines": { "node": ">=8.0.0" } }, + "node_modules/snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "node_modules/snapdragon": { "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", "license": "MIT", "dependencies": { "base": "^0.11.1", @@ -25210,6 +34005,8 @@ }, "node_modules/snapdragon-node": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", "license": "MIT", "dependencies": { "define-property": "^1.0.0", @@ -25222,6 +34019,8 @@ }, "node_modules/snapdragon-node/node_modules/define-property": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", "license": "MIT", "dependencies": { "is-descriptor": "^1.0.0" @@ -25232,6 +34031,8 @@ }, "node_modules/snapdragon-util": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", "license": "MIT", "dependencies": { "kind-of": "^3.2.0" @@ -25242,10 +34043,14 @@ }, "node_modules/snapdragon-util/node_modules/is-buffer": { "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "license": "MIT" }, "node_modules/snapdragon-util/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" @@ -25256,6 +34061,8 @@ }, "node_modules/snapdragon/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -25263,6 +34070,8 @@ }, "node_modules/snapdragon/node_modules/define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" @@ -25271,84 +34080,70 @@ "node": ">=0.10.0" } }, - "node_modules/snapdragon/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "license": "MIT", "dependencies": { - "is-buffer": "^1.1.5" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/snapdragon/node_modules/is-buffer": { - "version": "1.1.6", + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, - "node_modules/snapdragon/node_modules/is-data-descriptor": { - "version": "0.1.4", - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, - "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", "license": "MIT", "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" } }, - "node_modules/snapdragon/node_modules/is-descriptor": { - "version": "0.1.6", - "license": "MIT", + "node_modules/sockjs/node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "license": "Apache-2.0", "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "websocket-driver": ">=0.5.1" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/kind-of": { - "version": "5.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "node": ">=0.8.0" } }, - "node_modules/snapdragon/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/sockjs": { - "version": "0.3.24", + "node_modules/sockjs/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "license": "MIT", - "dependencies": { - "faye-websocket": "^0.11.3", - "uuid": "^8.3.2", - "websocket-driver": "^0.7.4" + "bin": { + "uuid": "dist/bin/uuid" } }, "node_modules/sort-css-media-queries": { - "version": "2.1.0", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/sort-css-media-queries/-/sort-css-media-queries-2.2.0.tgz", + "integrity": "sha512-0xtkGhWCC9MGt/EzgnvbbbKhqWjl1+/rncmhTh5qCpbYguXh6S/qwePfv/JQ8jePXXmqingylxoC49pCkSPIbA==", "license": "MIT", "engines": { "node": ">= 6.3.0" @@ -25356,6 +34151,8 @@ }, "node_modules/sort-keys": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", "license": "MIT", "dependencies": { "is-plain-obj": "^1.0.0" @@ -25366,6 +34163,8 @@ }, "node_modules/sort-keys-length": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", "license": "MIT", "dependencies": { "sort-keys": "^1.0.0" @@ -25374,30 +34173,29 @@ "node": ">=0.10.0" } }, - "node_modules/sort-keys/node_modules/is-plain-obj": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/source-map": { - "version": "0.5.7", + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "license": "BSD-3-Clause", "engines": { - "node": ">=0.10.0" + "node": ">= 8" } }, "node_modules/source-map-js": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-resolve": { "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", "license": "MIT", "dependencies": { "atob": "^2.1.2", @@ -25409,6 +34207,8 @@ }, "node_modules/source-map-support": { "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", @@ -25417,6 +34217,8 @@ }, "node_modules/source-map-support/node_modules/source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -25424,10 +34226,15 @@ }, "node_modules/source-map-url": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", "license": "MIT" }, "node_modules/space-separated-tokens": { - "version": "1.1.5", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", "license": "MIT", "funding": { "type": "github", @@ -25436,6 +34243,8 @@ }, "node_modules/spdx-correct": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", "license": "Apache-2.0", "dependencies": { "spdx-expression-parse": "^3.0.0", @@ -25443,11 +34252,15 @@ } }, "node_modules/spdx-exceptions": { - "version": "2.3.0", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", "license": "CC-BY-3.0" }, "node_modules/spdx-expression-parse": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", @@ -25455,11 +34268,15 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.13", + "version": "3.0.20", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", + "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", "license": "CC0-1.0" }, "node_modules/spdy": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", "license": "MIT", "dependencies": { "debug": "^4.1.0", @@ -25474,6 +34291,8 @@ }, "node_modules/spdy-transport": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", "license": "MIT", "dependencies": { "debug": "^4.1.0", @@ -25484,8 +34303,24 @@ "wbuf": "^1.7.3" } }, + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/split-string": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", "license": "MIT", "dependencies": { "extend-shallow": "^3.0.0" @@ -25496,6 +34331,8 @@ }, "node_modules/split-string/node_modules/extend-shallow": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "license": "MIT", "dependencies": { "assign-symbols": "^1.0.0", @@ -25507,6 +34344,8 @@ }, "node_modules/split-string/node_modules/is-extendable": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4" @@ -25517,10 +34356,14 @@ }, "node_modules/sprintf-js": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "license": "BSD-3-Clause" }, "node_modules/squeak": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/squeak/-/squeak-1.3.0.tgz", + "integrity": "sha512-YQL1ulInM+ev8nXX7vfXsCsDh6IqXlrremc1hzi77776BtpWgYJUMto3UM05GSAaGzJgWekszjoKDrVNB5XG+A==", "license": "MIT", "dependencies": { "chalk": "^1.0.0", @@ -25533,6 +34376,8 @@ }, "node_modules/squeak/node_modules/ansi-regex": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -25540,6 +34385,8 @@ }, "node_modules/squeak/node_modules/ansi-styles": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -25547,6 +34394,8 @@ }, "node_modules/squeak/node_modules/chalk": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", "license": "MIT", "dependencies": { "ansi-styles": "^2.2.1", @@ -25559,8 +34408,19 @@ "node": ">=0.10.0" } }, + "node_modules/squeak/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, "node_modules/squeak/node_modules/strip-ansi": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", "license": "MIT", "dependencies": { "ansi-regex": "^2.0.0" @@ -25571,13 +34431,29 @@ }, "node_modules/squeak/node_modules/supports-color": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/srcset": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/srcset/-/srcset-4.0.0.tgz", + "integrity": "sha512-wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw==", "license": "MIT", "engines": { - "node": ">=0.8.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/sshpk": { - "version": "1.17.0", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", + "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", "license": "MIT", "dependencies": { "asn1": "~0.2.3", @@ -25601,10 +34477,15 @@ }, "node_modules/stable": { "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", "license": "MIT" }, "node_modules/stack-utils": { "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "dev": true, "license": "MIT", "dependencies": { @@ -25616,22 +34497,18 @@ }, "node_modules/stack-utils/node_modules/escape-string-regexp": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/state-toggle": { - "version": "1.0.3", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/static-extend": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", "license": "MIT", "dependencies": { "define-property": "^0.2.5", @@ -25643,6 +34520,8 @@ }, "node_modules/static-extend/node_modules/define-property": { "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" @@ -25651,90 +34530,62 @@ "node": ">=0.10.0" } }, - "node_modules/static-extend/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-buffer": { - "version": "1.1.6", - "license": "MIT" - }, - "node_modules/static-extend/node_modules/is-data-descriptor": { - "version": "0.1.4", - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/static-extend/node_modules/is-descriptor": { - "version": "0.1.6", + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "license": "MIT", "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/kind-of": { - "version": "5.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, "node_modules/statuses": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/std-env": { - "version": "3.0.1", + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.0.tgz", + "integrity": "sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==", "license": "MIT" }, "node_modules/stream-browserify": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", + "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", "license": "MIT", "dependencies": { "inherits": "~2.0.4", "readable-stream": "^3.5.0" } }, + "node_modules/stream-browserify/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/stream-http": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-3.2.0.tgz", + "integrity": "sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==", "license": "MIT", "dependencies": { "builtin-status-codes": "^3.0.0", @@ -25743,8 +34594,24 @@ "xtend": "^4.0.2" } }, + "node_modules/stream-http/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/strict-uri-encode": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -25752,31 +34619,17 @@ }, "node_modules/string_decoder": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "license": "MIT", "dependencies": { "safe-buffer": "~5.2.0" } }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.2.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, "node_modules/string-argv": { "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", "dev": true, "license": "MIT", "engines": { @@ -25785,6 +34638,8 @@ }, "node_modules/string-length": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, "license": "MIT", "dependencies": { @@ -25796,23 +34651,32 @@ } }, "node_modules/string-template": { - "version": "0.2.1" + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz", + "integrity": "sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw==" }, "node_modules/string-width": { - "version": "4.2.3", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "license": "MIT", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/string-width-cjs": { "name": "string-width", "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", @@ -25823,13 +34687,61 @@ "node": ">=8" } }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, "node_modules/string.prototype.trim": { - "version": "1.2.7", + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -25839,31 +34751,58 @@ } }, "node_modules/string.prototype.trimend": { - "version": "1.0.6", + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/string.prototype.trimstart": { - "version": "1.0.6", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "license": "MIT", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/stringify-object": { "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", "license": "BSD-2-Clause", "dependencies": { "get-own-enumerable-property-symbols": "^3.0.0", @@ -25876,6 +34815,8 @@ }, "node_modules/strip-ansi": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" @@ -25887,6 +34828,8 @@ "node_modules/strip-ansi-cjs": { "name": "strip-ansi", "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" @@ -25897,6 +34840,8 @@ }, "node_modules/strip-bom": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true, "license": "MIT", "engines": { @@ -25905,6 +34850,8 @@ }, "node_modules/strip-bom-string": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", + "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -25912,6 +34859,8 @@ }, "node_modules/strip-color": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/strip-color/-/strip-color-0.1.0.tgz", + "integrity": "sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -25919,6 +34868,8 @@ }, "node_modules/strip-dirs": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", "license": "MIT", "dependencies": { "is-natural-number": "^4.0.1" @@ -25926,6 +34877,8 @@ }, "node_modules/strip-eof": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -25933,6 +34886,8 @@ }, "node_modules/strip-final-newline": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "license": "MIT", "engines": { "node": ">=6" @@ -25940,6 +34895,8 @@ }, "node_modules/strip-indent": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==", "license": "MIT", "dependencies": { "get-stdin": "^4.0.1" @@ -25952,14 +34909,21 @@ } }, "node_modules/strip-json-comments": { - "version": "2.0.1", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/strip-outer": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.2" @@ -25968,41 +34932,62 @@ "node": ">=0.10.0" } }, + "node_modules/strip-outer/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, "node_modules/strnum": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", "license": "MIT" }, "node_modules/style-mod": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.1.2.tgz", + "integrity": "sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==", "license": "MIT" }, "node_modules/style-to-object": { - "version": "0.3.0", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.8.tgz", + "integrity": "sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==", "license": "MIT", "dependencies": { - "inline-style-parser": "0.1.1" + "inline-style-parser": "0.2.4" } }, "node_modules/stylehacks": { - "version": "5.1.1", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.1.1.tgz", + "integrity": "sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==", "license": "MIT", "dependencies": { - "browserslist": "^4.21.4", - "postcss-selector-parser": "^6.0.4" + "browserslist": "^4.23.0", + "postcss-selector-parser": "^6.0.16" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4.31" } }, "node_modules/stylis": { - "version": "4.3.1", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.4.tgz", + "integrity": "sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==", "license": "MIT" }, "node_modules/sucrase": { "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.2", @@ -26021,42 +35006,39 @@ "node": ">=16 || 14 >=14.17" } }, - "node_modules/sucrase/node_modules/brace-expansion": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, "node_modules/sucrase/node_modules/commander": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/sucrase/node_modules/glob": { - "version": "10.3.10", + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", "license": "ISC", "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/sucrase/node_modules/minimatch": { - "version": "9.0.3", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" @@ -26069,17 +35051,21 @@ } }, "node_modules/supports-color": { - "version": "5.5.0", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "license": "MIT", "dependencies": { - "has-flag": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "license": "MIT", "engines": { "node": ">= 0.4" @@ -26090,29 +35076,39 @@ }, "node_modules/svg-parser": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", "license": "MIT" }, "node_modules/svgo": { - "version": "2.8.0", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz", + "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==", "license": "MIT", "dependencies": { "@trysound/sax": "0.2.0", "commander": "^7.2.0", - "css-select": "^4.1.3", - "css-tree": "^1.1.3", - "csso": "^4.2.0", - "picocolors": "^1.0.0", - "stable": "^0.1.8" + "css-select": "^5.1.0", + "css-tree": "^2.3.1", + "css-what": "^6.1.0", + "csso": "^5.0.5", + "picocolors": "^1.0.0" }, "bin": { "svgo": "bin/svgo" }, "engines": { - "node": ">=10.13.0" + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/svgo" } }, "node_modules/svgo/node_modules/commander": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "license": "MIT", "engines": { "node": ">= 10" @@ -26120,6 +35116,8 @@ }, "node_modules/swagger2openapi": { "version": "7.0.8", + "resolved": "https://registry.npmjs.org/swagger2openapi/-/swagger2openapi-7.0.8.tgz", + "integrity": "sha512-upi/0ZGkYgEcLeGieoz8gT74oWHA0E7JivX7aN9mAf+Tc7BQoRBvnIGHoPDw+f9TXTW4s6kGYCZJtauP6OYp7g==", "license": "BSD-3-Clause", "dependencies": { "call-me-maybe": "^1.0.1", @@ -26143,10 +35141,71 @@ "url": "https://github.com/Mermade/oas-kit?sponsor=1" } }, + "node_modules/swagger2openapi/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/swagger2openapi/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/swagger2openapi/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/swagger2openapi/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "node_modules/swagger2openapi/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/swc-loader": { - "version": "0.2.3", + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/swc-loader/-/swc-loader-0.2.6.tgz", + "integrity": "sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==", "dev": true, "license": "MIT", + "dependencies": { + "@swc/counter": "^0.1.3" + }, "peerDependencies": { "@swc/core": "^1.2.147", "webpack": ">=2" @@ -26154,10 +35213,14 @@ }, "node_modules/tabbable": { "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", + "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==", "license": "MIT" }, "node_modules/tapable": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", "license": "MIT", "engines": { "node": ">=6" @@ -26165,6 +35228,8 @@ }, "node_modules/tar-stream": { "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", "license": "MIT", "dependencies": { "bl": "^1.0.0", @@ -26179,32 +35244,10 @@ "node": ">= 0.8.0" } }, - "node_modules/tar-stream/node_modules/isarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/tar-stream/node_modules/readable-stream": { - "version": "2.3.8", - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/tar-stream/node_modules/string_decoder": { - "version": "1.1.1", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/tcp-port-used": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/tcp-port-used/-/tcp-port-used-1.0.2.tgz", + "integrity": "sha512-l7ar8lLUD3XS1V2lfoJlCBaeoaWo/2xfYt81hM7VlvR4RrMVFqfmzfhLVk40hAb368uitje5gPtBRL1m/DGvLA==", "license": "MIT", "dependencies": { "debug": "4.3.1", @@ -26213,6 +35256,8 @@ }, "node_modules/tcp-port-used/node_modules/debug": { "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", "license": "MIT", "dependencies": { "ms": "2.1.2" @@ -26226,8 +35271,16 @@ } } }, + "node_modules/tcp-port-used/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" + }, "node_modules/temp-dir": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==", "license": "MIT", "engines": { "node": ">=4" @@ -26235,6 +35288,8 @@ }, "node_modules/tempfile": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz", + "integrity": "sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==", "license": "MIT", "dependencies": { "temp-dir": "^1.0.0", @@ -26246,17 +35301,23 @@ }, "node_modules/tempfile/node_modules/uuid": { "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", "license": "MIT", "bin": { "uuid": "bin/uuid" } }, "node_modules/terser": { - "version": "5.10.0", + "version": "5.37.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.37.0.tgz", + "integrity": "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==", "license": "BSD-2-Clause", "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", "commander": "^2.20.0", - "source-map": "~0.7.2", "source-map-support": "~0.5.20" }, "bin": { @@ -26264,25 +35325,19 @@ }, "engines": { "node": ">=10" - }, - "peerDependencies": { - "acorn": "^8.5.0" - }, - "peerDependenciesMeta": { - "acorn": { - "optional": true - } } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.3", + "version": "5.3.11", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.11.tgz", + "integrity": "sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==", "license": "MIT", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.7", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.7.2" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "engines": { "node": ">= 10.13.0" @@ -26306,19 +35361,45 @@ } } }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "license": "MIT" + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } }, - "node_modules/terser/node_modules/source-map": { - "version": "0.7.3", - "license": "BSD-3-Clause", + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">= 8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, "node_modules/test-exclude": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, "license": "ISC", "dependencies": { @@ -26330,8 +35411,34 @@ "node": ">=8" } }, + "node_modules/test-exclude/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/test-exclude/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/text-segmentation": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/text-segmentation/-/text-segmentation-1.0.3.tgz", + "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", "license": "MIT", "dependencies": { "utrie": "^1.0.2" @@ -26339,10 +35446,14 @@ }, "node_modules/text-table": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "license": "MIT" }, "node_modules/thenify": { "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", "license": "MIT", "dependencies": { "any-promise": "^1.0.0" @@ -26350,6 +35461,8 @@ }, "node_modules/thenify-all": { "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", "license": "MIT", "dependencies": { "thenify": ">= 3.1.0 < 4" @@ -26360,50 +35473,36 @@ }, "node_modules/through": { "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", "license": "MIT" }, "node_modules/through2": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" } }, - "node_modules/through2/node_modules/isarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.8", - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/through2/node_modules/string_decoder": { - "version": "1.1.1", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/thunky": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "license": "MIT" }, "node_modules/ticky": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ticky/-/ticky-1.0.1.tgz", + "integrity": "sha512-RX35iq/D+lrsqhcPWIazM9ELkjOe30MSeoBHQHSsRwd1YuhJO5ui1K1/R0r7N3mFvbLBs33idw+eR6j+w6i/DA==", "license": "MIT" }, "node_modules/timed-out": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -26411,6 +35510,8 @@ }, "node_modules/timers-browserify": { "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", "license": "MIT", "dependencies": { "setimmediate": "^1.0.4" @@ -26421,14 +35522,20 @@ }, "node_modules/timsort": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==", "license": "MIT" }, "node_modules/tiny-invariant": { - "version": "1.2.0", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", "license": "MIT" }, "node_modules/tiny-lr": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.1.1.tgz", + "integrity": "sha512-44yhA3tsaRoMOjQQ+5v5mVdqef+kH6Qze9jTpqtVufgYjYt08zyZAwNwwVBj3i1rJMnR52IxOW0LK0vBzgAkuA==", "license": "MIT", "dependencies": { "body": "^5.1.0", @@ -26441,36 +35548,42 @@ }, "node_modules/tiny-lr/node_modules/debug": { "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, - "node_modules/tiny-lr/node_modules/faye-websocket": { - "version": "0.10.0", - "license": "MIT", - "dependencies": { - "websocket-driver": ">=0.5.1" - }, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/tiny-warning": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==", + "license": "MIT" + }, + "node_modules/tinyexec": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.1.tgz", + "integrity": "sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==", "license": "MIT" }, "node_modules/tmpl": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true, "license": "BSD-3-Clause" }, "node_modules/to-buffer": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", "license": "MIT" }, "node_modules/to-object-path": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", "license": "MIT", "dependencies": { "kind-of": "^3.0.2" @@ -26481,10 +35594,14 @@ }, "node_modules/to-object-path/node_modules/is-buffer": { "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "license": "MIT" }, "node_modules/to-object-path/node_modules/kind-of": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" @@ -26493,15 +35610,10 @@ "node": ">=0.10.0" } }, - "node_modules/to-readable-stream": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/to-regex": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", "license": "MIT", "dependencies": { "define-property": "^2.0.2", @@ -26515,6 +35627,8 @@ }, "node_modules/to-regex-range": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "license": "MIT", "dependencies": { "is-number": "^7.0.0" @@ -26523,8 +35637,19 @@ "node": ">=8.0" } }, + "node_modules/to-regex-range/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, "node_modules/to-regex/node_modules/extend-shallow": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "license": "MIT", "dependencies": { "assign-symbols": "^1.0.0", @@ -26536,6 +35661,8 @@ }, "node_modules/to-regex/node_modules/is-extendable": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4" @@ -26546,6 +35673,8 @@ }, "node_modules/toidentifier": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "license": "MIT", "engines": { "node": ">=0.6" @@ -26553,10 +35682,14 @@ }, "node_modules/toml": { "version": "2.3.6", + "resolved": "https://registry.npmjs.org/toml/-/toml-2.3.6.tgz", + "integrity": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==", "license": "MIT" }, "node_modules/totalist": { - "version": "1.1.0", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", "license": "MIT", "engines": { "node": ">=6" @@ -26564,6 +35697,8 @@ }, "node_modules/tough-cookie": { "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", "license": "BSD-3-Clause", "dependencies": { "psl": "^1.1.28", @@ -26575,14 +35710,23 @@ }, "node_modules/tr46": { "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "license": "MIT" }, "node_modules/traverse": { "version": "0.3.9", - "license": "MIT/X11" + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz", + "integrity": "sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==", + "license": "MIT/X11", + "engines": { + "node": "*" + } }, "node_modules/tree-node-cli": { "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tree-node-cli/-/tree-node-cli-1.6.0.tgz", + "integrity": "sha512-M8um5Lbl76rWU5aC8oOeEhruiCM29lFCKnwpxrwMjpRicHXJx+bb9Cak11G3zYLrMb6Glsrhnn90rHIzDJrjvg==", "license": "MIT", "dependencies": { "commander": "^5.0.0", @@ -26594,11 +35738,10 @@ "treee": "bin/tree.js" } }, - "node_modules/trim": { - "version": "0.0.1" - }, "node_modules/trim-lines": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", "license": "MIT", "funding": { "type": "github", @@ -26607,6 +35750,8 @@ }, "node_modules/trim-newlines": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -26614,6 +35759,8 @@ }, "node_modules/trim-repeated": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.2" @@ -26622,16 +35769,19 @@ "node": ">=0.10.0" } }, - "node_modules/trim-trailing-lines": { - "version": "1.1.4", + "node_modules/trim-repeated/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": ">=0.8.0" } }, "node_modules/trough": { - "version": "1.0.5", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", "license": "MIT", "funding": { "type": "github", @@ -26639,106 +35789,18 @@ } }, "node_modules/truncate-html": { - "version": "1.0.4", - "license": "MIT", - "dependencies": { - "@types/cheerio": "^0.22.8", - "cheerio": "0.22.0" - } - }, - "node_modules/truncate-html/node_modules/cheerio": { - "version": "0.22.0", - "license": "MIT", - "dependencies": { - "css-select": "~1.2.0", - "dom-serializer": "~0.1.0", - "entities": "~1.1.1", - "htmlparser2": "^3.9.1", - "lodash.assignin": "^4.0.9", - "lodash.bind": "^4.1.4", - "lodash.defaults": "^4.0.1", - "lodash.filter": "^4.4.0", - "lodash.flatten": "^4.2.0", - "lodash.foreach": "^4.3.0", - "lodash.map": "^4.4.0", - "lodash.merge": "^4.4.0", - "lodash.pick": "^4.2.1", - "lodash.reduce": "^4.4.0", - "lodash.reject": "^4.4.0", - "lodash.some": "^4.4.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/truncate-html/node_modules/css-select": { - "version": "1.2.0", - "license": "BSD-like", - "dependencies": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" - } - }, - "node_modules/truncate-html/node_modules/css-what": { - "version": "2.1.3", - "license": "BSD-2-Clause", - "engines": { - "node": "*" - } - }, - "node_modules/truncate-html/node_modules/dom-serializer": { - "version": "0.1.1", - "license": "MIT", - "dependencies": { - "domelementtype": "^1.3.0", - "entities": "^1.1.1" - } - }, - "node_modules/truncate-html/node_modules/domelementtype": { - "version": "1.3.1", - "license": "BSD-2-Clause" - }, - "node_modules/truncate-html/node_modules/domhandler": { - "version": "2.4.2", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "1" - } - }, - "node_modules/truncate-html/node_modules/domutils": { - "version": "1.5.1", - "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "node_modules/truncate-html/node_modules/entities": { "version": "1.1.2", - "license": "BSD-2-Clause" - }, - "node_modules/truncate-html/node_modules/htmlparser2": { - "version": "3.10.1", + "resolved": "https://registry.npmjs.org/truncate-html/-/truncate-html-1.1.2.tgz", + "integrity": "sha512-BiLzO594/Quf0wu3jHnVxHA4X5tl4Gunhqe2mlGTa5ElwHJGw7M/N5JdBvU8OPtR+MaEIvmyUdNxnoEi3YI5Yg==", "license": "MIT", "dependencies": { - "domelementtype": "^1.3.1", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^3.1.1" - } - }, - "node_modules/truncate-html/node_modules/nth-check": { - "version": "1.0.2", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "~1.0.0" + "cheerio": "1.0.0-rc.12" } }, "node_modules/ts-dedent": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz", + "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==", "license": "MIT", "engines": { "node": ">=6.10" @@ -26746,18 +35808,26 @@ }, "node_modules/ts-interface-checker": { "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", "license": "Apache-2.0" }, "node_modules/tslib": { - "version": "2.4.0", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "license": "0BSD" }, "node_modules/tty-browserify": { "version": "0.0.1", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz", + "integrity": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==", "license": "MIT" }, "node_modules/tunnel-agent": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", "license": "Apache-2.0", "dependencies": { "safe-buffer": "^5.0.1" @@ -26768,10 +35838,14 @@ }, "node_modules/tweetnacl": { "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", "license": "Unlicense" }, "node_modules/type-detect": { "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true, "license": "MIT", "engines": { @@ -26779,10 +35853,12 @@ } }, "node_modules/type-fest": { - "version": "0.20.2", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", "license": "(MIT OR CC0-1.0)", "engines": { - "node": ">=10" + "node": ">=12.20" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -26790,6 +35866,8 @@ }, "node_modules/type-is": { "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "license": "MIT", "dependencies": { "media-typer": "0.3.0", @@ -26799,13 +35877,75 @@ "node": ">= 0.6" } }, - "node_modules/typed-array-length": { + "node_modules/typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" + "gopd": "^1.0.1", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -26813,52 +35953,52 @@ }, "node_modules/typedarray": { "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", "license": "MIT" }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "license": "MIT", "dependencies": { "is-typedarray": "^1.0.0" } }, "node_modules/typescript": { - "version": "4.7.4", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz", + "integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==", "license": "Apache-2.0", "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/ua-parser-js": { - "version": "1.0.35", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/ua-parser-js" - }, - { - "type": "paypal", - "url": "https://paypal.me/faisalman" - } - ], - "license": "MIT", + }, "engines": { - "node": "*" + "node": ">=14.17" } }, + "node_modules/ufo": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz", + "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==", + "license": "MIT" + }, "node_modules/unbox-primitive": { - "version": "1.0.2", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", + "call-bound": "^1.0.3", "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -26866,26 +36006,57 @@ }, "node_modules/unbzip2-stream": { "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", "license": "MIT", "dependencies": { "buffer": "^5.2.1", "through": "^2.3.8" } }, - "node_modules/unherit": { - "version": "1.1.3", + "node_modules/unbzip2-stream/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT", "dependencies": { - "inherits": "^2.0.0", - "xtend": "^4.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, + "node_modules/undici-types": { + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "license": "MIT" + }, "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-emoji-modifier-base": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", + "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", "license": "MIT", "engines": { "node": ">=4" @@ -26893,6 +36064,8 @@ }, "node_modules/unicode-match-property-ecmascript": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", "license": "MIT", "dependencies": { "unicode-canonical-property-names-ecmascript": "^2.0.0", @@ -26903,7 +36076,9 @@ } }, "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", + "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", "license": "MIT", "engines": { "node": ">=4" @@ -26911,29 +36086,48 @@ }, "node_modules/unicode-property-aliases-ecmascript": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/unified": { - "version": "9.2.2", + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", "license": "MIT", "dependencies": { - "bail": "^1.0.0", + "@types/unist": "^3.0.0", + "bail": "^2.0.0", + "devlop": "^1.0.0", "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^2.0.0", - "trough": "^1.0.0", - "vfile": "^4.0.0" + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^6.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, + "node_modules/unified/node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/union-value": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", "license": "MIT", "dependencies": { "arr-union": "^3.1.0", @@ -26947,32 +36141,35 @@ }, "node_modules/uniq": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==", "license": "MIT" }, "node_modules/uniqs": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==", "license": "MIT" }, "node_modules/unique-string": { - "version": "2.0.0", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", "license": "MIT", "dependencies": { - "crypto-random-string": "^2.0.0" + "crypto-random-string": "^4.0.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/unist-builder": { - "version": "2.0.3", - "license": "MIT", + "node": ">=12" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/unist-util-generated": { - "version": "1.1.6", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", + "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", "license": "MIT", "funding": { "type": "opencollective", @@ -26980,62 +36177,38 @@ } }, "node_modules/unist-util-is": { - "version": "4.1.0", - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-position": { - "version": "3.1.0", - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-remove": { - "version": "2.1.0", - "license": "MIT", - "dependencies": { - "unist-util-is": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-remove-position": { - "version": "2.0.1", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", + "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", "license": "MIT", "dependencies": { - "unist-util-visit": "^2.0.0" + "@types/unist": "^3.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/unist-util-remove-position/node_modules/unist-util-visit": { - "version": "2.0.3", + "node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0", - "unist-util-visit-parents": "^3.0.0" + "@types/unist": "^3.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/unist-util-remove-position/node_modules/unist-util-visit-parents": { - "version": "3.1.1", + "node_modules/unist-util-position-from-estree": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz", + "integrity": "sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0" + "@types/unist": "^3.0.0" }, "funding": { "type": "opencollective", @@ -27043,10 +36216,12 @@ } }, "node_modules/unist-util-stringify-position": { - "version": "2.0.3", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.2" + "@types/unist": "^3.0.0" }, "funding": { "type": "opencollective", @@ -27055,6 +36230,8 @@ }, "node_modules/unist-util-visit": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", + "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", @@ -27068,6 +36245,8 @@ }, "node_modules/unist-util-visit-parents": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", + "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", @@ -27078,38 +36257,10 @@ "url": "https://opencollective.com/unified" } }, - "node_modules/unist-util-visit-parents/node_modules/@types/unist": { - "version": "3.0.0", - "license": "MIT" - }, - "node_modules/unist-util-visit-parents/node_modules/unist-util-is": { - "version": "6.0.0", - "license": "MIT", - "dependencies": { - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-visit/node_modules/@types/unist": { - "version": "3.0.0", - "license": "MIT" - }, - "node_modules/unist-util-visit/node_modules/unist-util-is": { - "version": "6.0.0", - "license": "MIT", - "dependencies": { - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/universalify": { - "version": "2.0.0", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "license": "MIT", "engines": { "node": ">= 10.0.0" @@ -27117,6 +36268,8 @@ }, "node_modules/unpipe": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "license": "MIT", "engines": { "node": ">= 0.8" @@ -27124,10 +36277,14 @@ }, "node_modules/unquote": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==", "license": "MIT" }, "node_modules/unset-value": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", "license": "MIT", "dependencies": { "has-value": "^0.3.1", @@ -27139,6 +36296,8 @@ }, "node_modules/unset-value/node_modules/has-value": { "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", "license": "MIT", "dependencies": { "get-value": "^2.0.3", @@ -27151,6 +36310,8 @@ }, "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", "license": "MIT", "dependencies": { "isarray": "1.0.0" @@ -27161,17 +36322,17 @@ }, "node_modules/unset-value/node_modules/has-values": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/unset-value/node_modules/isarray": { - "version": "1.0.0", - "license": "MIT" - }, "node_modules/unzipper": { - "version": "0.10.11", + "version": "0.10.14", + "resolved": "https://registry.npmjs.org/unzipper/-/unzipper-0.10.14.tgz", + "integrity": "sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==", "license": "MIT", "dependencies": { "big-integer": "^1.6.17", @@ -27186,30 +36347,6 @@ "setimmediate": "~1.0.4" } }, - "node_modules/unzipper/node_modules/isarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/unzipper/node_modules/readable-stream": { - "version": "2.3.8", - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/unzipper/node_modules/string_decoder": { - "version": "1.1.1", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/update-browserslist-db": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", @@ -27241,110 +36378,127 @@ } }, "node_modules/update-notifier": { - "version": "5.1.0", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-6.0.2.tgz", + "integrity": "sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==", "license": "BSD-2-Clause", "dependencies": { - "boxen": "^5.0.0", - "chalk": "^4.1.0", - "configstore": "^5.0.1", - "has-yarn": "^2.1.0", - "import-lazy": "^2.1.0", - "is-ci": "^2.0.0", + "boxen": "^7.0.0", + "chalk": "^5.0.1", + "configstore": "^6.0.0", + "has-yarn": "^3.0.0", + "import-lazy": "^4.0.0", + "is-ci": "^3.0.1", "is-installed-globally": "^0.4.0", - "is-npm": "^5.0.0", - "is-yarn-global": "^0.3.0", - "latest-version": "^5.1.0", - "pupa": "^2.1.1", - "semver": "^7.3.4", - "semver-diff": "^3.1.1", - "xdg-basedir": "^4.0.0" + "is-npm": "^6.0.0", + "is-yarn-global": "^0.4.0", + "latest-version": "^7.0.0", + "pupa": "^3.1.0", + "semver": "^7.3.7", + "semver-diff": "^4.0.0", + "xdg-basedir": "^5.1.0" }, "engines": { - "node": ">=10" + "node": ">=14.16" }, "funding": { "url": "https://github.com/yeoman/update-notifier?sponsor=1" } }, - "node_modules/update-notifier/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/update-notifier/node_modules/boxen": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-7.1.1.tgz", + "integrity": "sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "ansi-align": "^3.0.1", + "camelcase": "^7.0.1", + "chalk": "^5.2.0", + "cli-boxes": "^3.0.0", + "string-width": "^5.1.2", + "type-fest": "^2.13.0", + "widest-line": "^4.0.1", + "wrap-ansi": "^8.1.0" }, "engines": { - "node": ">=8" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/update-notifier/node_modules/chalk": { - "version": "4.1.2", + "node_modules/update-notifier/node_modules/camelcase": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz", + "integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==", "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/update-notifier/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/update-notifier/node_modules/chalk": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.0.tgz", + "integrity": "sha512-ZkD35Mx92acjB2yNJgziGqT9oKHEOxjTBTDRpOsRWtdecL/0jM3z5kM/CTzHWvHIen1GvkM85p6TuFfDGfc8/Q==", "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/update-notifier/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/update-notifier/node_modules/has-flag": { + "node_modules/update-notifier/node_modules/import-lazy": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/update-notifier/node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/uri-js": { "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" } }, + "node_modules/uri-js-replace": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uri-js-replace/-/uri-js-replace-1.0.1.tgz", + "integrity": "sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g==", + "license": "MIT" + }, "node_modules/urix": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", "license": "MIT" }, "node_modules/url": { - "version": "0.11.3", + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.4.tgz", + "integrity": "sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==", "license": "MIT", "dependencies": { "punycode": "^1.4.1", - "qs": "^6.11.2" + "qs": "^6.12.3" + }, + "engines": { + "node": ">= 0.4" } }, "node_modules/url-loader": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", "license": "MIT", "dependencies": { "loader-utils": "^2.0.0", @@ -27368,18 +36522,71 @@ } } }, + "node_modules/url-loader/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/url-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/url-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "license": "MIT" + }, + "node_modules/url-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/url-parse-lax": { - "version": "3.0.0", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==", "license": "MIT", "dependencies": { - "prepend-http": "^2.0.0" + "prepend-http": "^1.0.1" }, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, "node_modules/url-to-options": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==", "license": "MIT", "engines": { "node": ">= 4" @@ -27387,78 +36594,32 @@ }, "node_modules/url/node_modules/punycode": { "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", "license": "MIT" }, - "node_modules/url/node_modules/qs": { - "version": "6.11.2", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/use": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/use-composed-ref": { - "version": "1.3.0", - "license": "MIT", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, "node_modules/use-editable": { "version": "2.3.3", + "resolved": "https://registry.npmjs.org/use-editable/-/use-editable-2.3.3.tgz", + "integrity": "sha512-7wVD2JbfAFJ3DK0vITvXBdpd9JAz5BcKAAolsnLBuBn6UDDwBGuCIAGvR3yA2BNKm578vAMVHFCWaOcA+BhhiA==", "license": "MIT", "peerDependencies": { "react": ">= 16.8.0" } }, - "node_modules/use-isomorphic-layout-effect": { - "version": "1.1.2", - "license": "MIT", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-latest": { - "version": "1.2.1", - "license": "MIT", - "dependencies": { - "use-isomorphic-layout-effect": "^1.1.1" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-sync-external-store": { - "version": "1.2.0", - "license": "MIT", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, "node_modules/util": { "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", "license": "MIT", "dependencies": { "inherits": "^2.0.3", @@ -27470,10 +36631,14 @@ }, "node_modules/util-deprecate": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "license": "MIT" }, "node_modules/util.promisify": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", "license": "MIT", "dependencies": { "define-properties": "^1.1.3", @@ -27487,10 +36652,14 @@ }, "node_modules/utila": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", "license": "MIT" }, "node_modules/utility-types": { - "version": "3.10.0", + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.11.0.tgz", + "integrity": "sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==", "license": "MIT", "engines": { "node": ">= 4" @@ -27498,6 +36667,8 @@ }, "node_modules/utils-merge": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "license": "MIT", "engines": { "node": ">= 0.4.0" @@ -27505,13 +36676,21 @@ }, "node_modules/utrie": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/utrie/-/utrie-1.0.2.tgz", + "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", "license": "MIT", "dependencies": { "base64-arraybuffer": "^1.0.2" } }, "node_modules/uuid": { - "version": "8.3.2", + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], "license": "MIT", "bin": { "uuid": "dist/bin/uuid" @@ -27519,6 +36698,8 @@ }, "node_modules/uvu": { "version": "0.5.6", + "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", + "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", "license": "MIT", "dependencies": { "dequal": "^2.0.0", @@ -27535,6 +36716,8 @@ }, "node_modules/uvu/node_modules/kleur": { "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", "license": "MIT", "engines": { "node": ">=6" @@ -27555,14 +36738,10 @@ "node": ">=10.12.0" } }, - "node_modules/v8-to-istanbul/node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, "node_modules/validate-npm-package-license": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "license": "Apache-2.0", "dependencies": { "spdx-correct": "^3.0.0", @@ -27571,33 +36750,47 @@ }, "node_modules/validate.io-array": { "version": "1.0.6", + "resolved": "https://registry.npmjs.org/validate.io-array/-/validate.io-array-1.0.6.tgz", + "integrity": "sha512-DeOy7CnPEziggrOO5CZhVKJw6S3Yi7e9e65R1Nl/RTN1vTQKnzjfvks0/8kQ40FP/dsjRAOd4hxmJ7uLa6vxkg==", "license": "MIT" }, "node_modules/validate.io-function": { - "version": "1.0.2" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/validate.io-function/-/validate.io-function-1.0.2.tgz", + "integrity": "sha512-LlFybRJEriSuBnUhQyG5bwglhh50EpTL2ul23MPIuR1odjO7XaMLFV8vHGwp7AZciFxtYOeiSCT5st+XSPONiQ==" }, "node_modules/validate.io-integer": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/validate.io-integer/-/validate.io-integer-1.0.5.tgz", + "integrity": "sha512-22izsYSLojN/P6bppBqhgUDjCkr5RY2jd+N2a3DCAUey8ydvrZ/OkGvFPR7qfOpwR2LC5p4Ngzxz36g5Vgr/hQ==", "dependencies": { "validate.io-number": "^1.0.3" } }, "node_modules/validate.io-integer-array": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/validate.io-integer-array/-/validate.io-integer-array-1.0.0.tgz", + "integrity": "sha512-mTrMk/1ytQHtCY0oNO3dztafHYyGU88KL+jRxWuzfOmQb+4qqnWmI+gykvGp8usKZOM0H7keJHEbRaFiYA0VrA==", "dependencies": { "validate.io-array": "^1.0.3", "validate.io-integer": "^1.0.4" } }, "node_modules/validate.io-number": { - "version": "1.0.3" + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/validate.io-number/-/validate.io-number-1.0.3.tgz", + "integrity": "sha512-kRAyotcbNaSYoDnXvb4MHg/0a1egJdLwS6oJ38TJY7aw9n93Fl/3blIXdyYvPOp55CNxywooG/3BcrwNrBpcSg==" }, "node_modules/value-equal": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", + "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==", "license": "MIT" }, "node_modules/vary": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "license": "MIT", "engines": { "node": ">= 0.8" @@ -27605,6 +36798,8 @@ }, "node_modules/vendors": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", "license": "MIT", "funding": { "type": "github", @@ -27613,6 +36808,8 @@ }, "node_modules/verror": { "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", "engines": [ "node >=0.6.0" ], @@ -27625,16 +36822,18 @@ }, "node_modules/verror/node_modules/core-util-is": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", "license": "MIT" }, "node_modules/vfile": { - "version": "4.2.1", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^2.0.0", - "vfile-message": "^2.0.0" + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" }, "funding": { "type": "opencollective", @@ -27642,19 +36841,27 @@ } }, "node_modules/vfile-location": { - "version": "3.2.0", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz", + "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==", "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile": "^6.0.0" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, "node_modules/vfile-message": { - "version": "2.0.4", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz", + "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^2.0.0" + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" }, "funding": { "type": "opencollective", @@ -27663,31 +36870,69 @@ }, "node_modules/vm-browserify": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", "license": "MIT" }, - "node_modules/w3c-keyname": { - "version": "2.2.8", - "license": "MIT" + "node_modules/vscode-jsonrpc": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz", + "integrity": "sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } }, - "node_modules/wait-on": { - "version": "6.0.1", + "node_modules/vscode-languageserver": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-9.0.1.tgz", + "integrity": "sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==", "license": "MIT", "dependencies": { - "axios": "^0.25.0", - "joi": "^17.6.0", - "lodash": "^4.17.21", - "minimist": "^1.2.5", - "rxjs": "^7.5.4" + "vscode-languageserver-protocol": "3.17.5" }, "bin": { - "wait-on": "bin/wait-on" - }, - "engines": { - "node": ">=10.0.0" + "installServerIntoExtension": "bin/installServerIntoExtension" + } + }, + "node_modules/vscode-languageserver-protocol": { + "version": "3.17.5", + "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz", + "integrity": "sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==", + "license": "MIT", + "dependencies": { + "vscode-jsonrpc": "8.2.0", + "vscode-languageserver-types": "3.17.5" } }, + "node_modules/vscode-languageserver-textdocument": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz", + "integrity": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==", + "license": "MIT" + }, + "node_modules/vscode-languageserver-types": { + "version": "3.17.5", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz", + "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==", + "license": "MIT" + }, + "node_modules/vscode-uri": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", + "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", + "license": "MIT" + }, + "node_modules/w3c-keyname": { + "version": "2.2.8", + "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz", + "integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==", + "license": "MIT" + }, "node_modules/walker": { "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -27696,13 +36941,17 @@ }, "node_modules/warning": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", "license": "MIT", "dependencies": { "loose-envify": "^1.0.0" } }, "node_modules/watchpack": { - "version": "2.4.0", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", + "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", @@ -27714,54 +36963,57 @@ }, "node_modules/wbuf": { "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", "license": "MIT", "dependencies": { "minimalistic-assert": "^1.0.0" } }, "node_modules/web-namespaces": { - "version": "1.1.4", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", + "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/web-worker": { - "version": "1.3.0", - "license": "Apache-2.0" - }, "node_modules/webidl-conversions": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", "license": "BSD-2-Clause" }, "node_modules/webpack": { - "version": "5.74.0", + "version": "5.97.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.97.1.tgz", + "integrity": "sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==", "license": "MIT", "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.17.1", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.2.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { @@ -27781,17 +37033,22 @@ } }, "node_modules/webpack-bundle-analyzer": { - "version": "4.5.0", + "version": "4.10.2", + "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.2.tgz", + "integrity": "sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==", "license": "MIT", "dependencies": { + "@discoveryjs/json-ext": "0.5.7", "acorn": "^8.0.4", "acorn-walk": "^8.0.0", - "chalk": "^4.1.0", "commander": "^7.2.0", + "debounce": "^1.2.1", + "escape-string-regexp": "^4.0.0", "gzip-size": "^6.0.0", - "lodash": "^4.17.20", + "html-escaper": "^2.0.2", "opener": "^1.5.2", - "sirv": "^1.0.7", + "picocolors": "^1.0.0", + "sirv": "^2.0.3", "ws": "^7.3.1" }, "bin": { @@ -27801,73 +37058,19 @@ "node": ">= 10.13.0" } }, - "node_modules/webpack-bundle-analyzer/node_modules/ansi-styles": { - "version": "4.3.0", - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/webpack-bundle-analyzer/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/webpack-bundle-analyzer/node_modules/color-convert": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/webpack-bundle-analyzer/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, "node_modules/webpack-bundle-analyzer/node_modules/commander": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "license": "MIT", "engines": { "node": ">= 10" } }, - "node_modules/webpack-bundle-analyzer/node_modules/has-flag": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/webpack-bundle-analyzer/node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/webpack-dev-middleware": { - "version": "5.3.3", + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", + "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", "license": "MIT", "dependencies": { "colorette": "^2.0.10", @@ -27887,60 +37090,16 @@ "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/webpack-dev-middleware/node_modules/ajv": { - "version": "8.11.0", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { - "version": "1.0.0", + "node_modules/webpack-dev-middleware/node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", "license": "MIT" }, - "node_modules/webpack-dev-middleware/node_modules/range-parser": { - "version": "1.2.1", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/webpack-dev-middleware/node_modules/schema-utils": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, "node_modules/webpack-dev-server": { - "version": "4.9.3", + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz", + "integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==", "license": "MIT", "dependencies": { "@types/bonjour": "^3.5.9", @@ -27949,7 +37108,7 @@ "@types/serve-index": "^1.9.1", "@types/serve-static": "^1.13.10", "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.1", + "@types/ws": "^8.5.5", "ansi-html-community": "^0.0.8", "bonjour-service": "^1.0.11", "chokidar": "^3.5.3", @@ -27962,16 +37121,17 @@ "html-entities": "^2.3.2", "http-proxy-middleware": "^2.0.3", "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", "open": "^8.0.9", "p-retry": "^4.5.0", "rimraf": "^3.0.2", "schema-utils": "^4.0.0", - "selfsigned": "^2.0.1", + "selfsigned": "^2.1.1", "serve-index": "^1.9.1", "sockjs": "^0.3.24", "spdy": "^4.0.2", - "webpack-dev-middleware": "^5.3.1", - "ws": "^8.4.2" + "webpack-dev-middleware": "^5.3.4", + "ws": "^8.13.0" }, "bin": { "webpack-dev-server": "bin/webpack-dev-server.js" @@ -27987,65 +37147,40 @@ "webpack": "^4.37.0 || ^5.0.0" }, "peerDependenciesMeta": { + "webpack": { + "optional": true + }, "webpack-cli": { "optional": true } } }, - "node_modules/webpack-dev-server/node_modules/ajv": { - "version": "8.11.0", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/webpack-dev-server/node_modules/ajv-keywords": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { - "version": "1.0.0", + "node_modules/webpack-dev-server/node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", "license": "MIT" - }, - "node_modules/webpack-dev-server/node_modules/schema-utils": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + }, + "node_modules/webpack-dev-server/node_modules/ipaddr.js": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", + "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==", + "license": "MIT", + "engines": { + "node": ">= 10" } }, "node_modules/webpack-dev-server/node_modules/ws": { - "version": "8.8.1", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "license": "MIT", "engines": { "node": ">=10.0.0" }, "peerDependencies": { "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" + "utf-8-validate": ">=5.0.2" }, "peerDependenciesMeta": { "bufferutil": { @@ -28057,99 +37192,186 @@ } }, "node_modules/webpack-merge": { - "version": "5.8.0", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz", + "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==", "license": "MIT", "dependencies": { "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" + "flat": "^5.0.2", + "wildcard": "^2.0.1" }, "engines": { - "node": ">=10.0.0" + "node": ">=18.0.0" } }, "node_modules/webpack-sources": { "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "license": "MIT", "engines": { "node": ">=10.13.0" } }, + "node_modules/webpack/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "license": "MIT" + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/webpackbar": { - "version": "5.0.2", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-6.0.1.tgz", + "integrity": "sha512-TnErZpmuKdwWBdMoexjio3KKX6ZtoKHRVvLIU0A47R0VVBDtx3ZyOJDktgYixhoJokZTYTt1Z37OkO9pnGJa9Q==", "license": "MIT", "dependencies": { - "chalk": "^4.1.0", - "consola": "^2.15.3", + "ansi-escapes": "^4.3.2", + "chalk": "^4.1.2", + "consola": "^3.2.3", + "figures": "^3.2.0", + "markdown-table": "^2.0.0", "pretty-time": "^1.1.0", - "std-env": "^3.0.1" + "std-env": "^3.7.0", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": ">=12" + "node": ">=14.21.3" }, "peerDependencies": { "webpack": "3 || 4 || 5" } }, - "node_modules/webpackbar/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/webpackbar/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/webpackbar/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/webpackbar/node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "escape-string-regexp": "^1.0.5" }, "engines": { "node": ">=8" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/webpackbar/node_modules/chalk": { - "version": "4.1.2", + "node_modules/webpackbar/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=8" } }, - "node_modules/webpackbar/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/webpackbar/node_modules/markdown-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz", + "integrity": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "repeat-string": "^1.0.0" }, - "engines": { - "node": ">=7.0.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/webpackbar/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, - "node_modules/webpackbar/node_modules/has-flag": { - "version": "4.0.0", + "node_modules/webpackbar/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, "engines": { "node": ">=8" } }, - "node_modules/webpackbar/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/webpackbar/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/websocket-driver": { "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "license": "Apache-2.0", "dependencies": { "http-parser-js": ">=0.5.1", @@ -28162,6 +37384,8 @@ }, "node_modules/websocket-extensions": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", "license": "Apache-2.0", "engines": { "node": ">=0.8.0" @@ -28169,6 +37393,8 @@ }, "node_modules/whatwg-url": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "license": "MIT", "dependencies": { "tr46": "~0.0.3", @@ -28176,46 +37402,99 @@ } }, "node_modules/which": { - "version": "2.0.2", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, "bin": { - "node-which": "bin/node-which" + "which": "bin/which" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "license": "MIT", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" }, "engines": { - "node": ">= 8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/which-boxed-primitive": { + "node_modules/which-builtin-type": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.2.1", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.1.0", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, + "node_modules/which-collection": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", "license": "MIT", "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/which-module": { - "version": "2.0.1", - "license": "ISC" - }, "node_modules/which-typed-array": { - "version": "1.1.9", + "version": "1.1.18", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz", + "integrity": "sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==", "license": "MIT", "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -28225,21 +37504,30 @@ } }, "node_modules/widest-line": { - "version": "3.1.0", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz", + "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==", "license": "MIT", "dependencies": { - "string-width": "^4.0.0" + "string-width": "^5.0.1" }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/wildcard": { - "version": "2.0.0", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", "license": "MIT" }, "node_modules/wordwrap": { "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha512-xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q==", "license": "MIT/X11", "engines": { "node": ">=0.4.0" @@ -28247,21 +37535,25 @@ }, "node_modules/worker-rpc": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz", + "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", "license": "MIT", "dependencies": { "microevent.ts": "~0.1.1" } }, "node_modules/wrap-ansi": { - "version": "7.0.0", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" @@ -28270,6 +37562,8 @@ "node_modules/wrap-ansi-cjs": { "name": "wrap-ansi", "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", @@ -28283,76 +37577,98 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/wrap-ansi-cjs/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/wrap-ansi-cjs/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } }, "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "ansi-regex": "^6.0.1" }, "engines": { - "node": ">=7.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" - }, "node_modules/wrappy": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "license": "ISC" }, "node_modules/write-file-atomic": { - "version": "3.0.3", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, "node_modules/ws": { - "version": "7.5.6", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "license": "MIT", "engines": { "node": ">=8.3.0" @@ -28371,14 +37687,21 @@ } }, "node_modules/xdg-basedir": { - "version": "4.0.0", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz", + "integrity": "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/xml-formatter": { "version": "2.6.1", + "resolved": "https://registry.npmjs.org/xml-formatter/-/xml-formatter-2.6.1.tgz", + "integrity": "sha512-dOiGwoqm8y22QdTNI7A+N03tyVfBlQ0/oehAzxIZtwnFAHGeSlrfjF73YQvzSsa/Kt6+YZasKsrdu6OIpuBggw==", "license": "MIT", "dependencies": { "xml-parser-xo": "^3.2.0" @@ -28389,6 +37712,8 @@ }, "node_modules/xml-js": { "version": "1.6.11", + "resolved": "https://registry.npmjs.org/xml-js/-/xml-js-1.6.11.tgz", + "integrity": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==", "license": "MIT", "dependencies": { "sax": "^1.2.4" @@ -28399,6 +37724,8 @@ }, "node_modules/xml-parser-xo": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/xml-parser-xo/-/xml-parser-xo-3.2.0.tgz", + "integrity": "sha512-8LRU6cq+d7mVsoDaMhnkkt3CTtAs4153p49fRo+HIB3I1FD1o5CeXRjRH29sQevIfVJIcPjKSsPU/+Ujhq09Rg==", "license": "MIT", "engines": { "node": ">= 10" @@ -28406,6 +37733,8 @@ }, "node_modules/xmlbuilder": { "version": "13.0.2", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-13.0.2.tgz", + "integrity": "sha512-Eux0i2QdDYKbdbA6AM6xE4m6ZTZr4G4xF9kahI2ukSEMCzwce2eX9WlTI5J3s+NU7hpasFsr8hWIONae7LluAQ==", "license": "MIT", "engines": { "node": ">=6.0" @@ -28413,6 +37742,8 @@ }, "node_modules/xtend": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "license": "MIT", "engines": { "node": ">=0.4" @@ -28420,28 +37751,39 @@ }, "node_modules/y18n": { "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/yallist": { - "version": "4.0.0", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "license": "ISC" }, "node_modules/yaml": { - "version": "1.10.2", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "dev": true, "license": "ISC", "engines": { - "node": ">= 6" + "node": ">= 14" } }, "node_modules/yaml-ast-parser": { "version": "0.0.43", + "resolved": "https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz", + "integrity": "sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==", "license": "Apache-2.0" }, "node_modules/yamljs": { "version": "0.2.10", + "resolved": "https://registry.npmjs.org/yamljs/-/yamljs-0.2.10.tgz", + "integrity": "sha512-sbkbOosewjeRmJ23Hjee1RgTxn+xa7mt4sew3tfD0SdH0LTcswnZC9dhSNq4PIz15roQMzb84DjECyQo5DWIww==", "license": "MIT", "dependencies": { "argparse": "^1.0.7", @@ -28454,29 +37796,26 @@ }, "node_modules/yamljs/node_modules/argparse": { "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/yargs": { - "version": "17.7.2", - "license": "MIT", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-2.3.0.tgz", + "integrity": "sha512-w48USdbTdaVMcE3CnXsEtSY9zYSN7dTyVnLBgrJF2quA5rLwobC9zixxfexereLGFaxjxtR3oWdydC0qoayakw==", + "license": "MIT/X11", "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" + "wordwrap": "0.0.2" } }, "node_modules/yargs-parser": { "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "license": "ISC", "engines": { "node": ">=12" @@ -28484,6 +37823,8 @@ }, "node_modules/yauzl": { "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", "license": "MIT", "dependencies": { "buffer-crc32": "~0.2.3", @@ -28492,6 +37833,8 @@ }, "node_modules/yocto-queue": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "license": "MIT", "engines": { "node": ">=10" @@ -28501,7 +37844,9 @@ } }, "node_modules/zwitch": { - "version": "1.0.5", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", "license": "MIT", "funding": { "type": "github", diff --git a/package.json b/package.json index 1c85373daab..2c533538c06 100644 --- a/package.json +++ b/package.json @@ -34,19 +34,19 @@ "dependencies": { "@auth0/auth0-react": "^2.2.4", "@bpmn-io/form-js": "^1.12.0", - "@docusaurus/core": "^2.4.1", - "@docusaurus/preset-classic": "^2.4.1", - "@docusaurus/theme-mermaid": "^2.4.1", - "@mdx-js/react": "^1.6.22", + "@docusaurus/core": "^3.0.1", + "@docusaurus/preset-classic": "^3.0.1", + "@docusaurus/theme-mermaid": "^3.0.1", + "@mdx-js/react": "^3.1.0", "@saucelabs/theme-github-codeblock": "^0.2.3", "clsx": "^2.1.1", "docusaurus": "^1.14.7", - "docusaurus-plugin-openapi-docs": "^2.0.4", - "docusaurus-theme-openapi-docs": "^2.0.4", + "docusaurus-plugin-openapi-docs": "^4.3.1", + "docusaurus-theme-openapi-docs": "^4.3.1", "mixpanel-browser": "^2.56.0", "pushfeedback-react": "^0.1.30", - "react": "^17.0.2", - "react-dom": "^17.0.2", + "react": "^18.3.1", + "react-dom": "^18.3.1", "react-player": "^2.16.0", "unist-util-visit": "^5.0.0" }, diff --git a/src/theme/DocItem/Metadata/determineCanonical.js b/src/theme/DocItem/xxxMetadata/determineCanonical.js similarity index 100% rename from src/theme/DocItem/Metadata/determineCanonical.js rename to src/theme/DocItem/xxxMetadata/determineCanonical.js diff --git a/src/theme/DocItem/Metadata/determineCanonical.spec.js b/src/theme/DocItem/xxxMetadata/determineCanonical.spec.js similarity index 100% rename from src/theme/DocItem/Metadata/determineCanonical.spec.js rename to src/theme/DocItem/xxxMetadata/determineCanonical.spec.js diff --git a/src/theme/DocItem/Metadata/index.js b/src/theme/DocItem/xxxMetadata/index.js similarity index 100% rename from src/theme/DocItem/Metadata/index.js rename to src/theme/DocItem/xxxMetadata/index.js diff --git a/src/theme/DocCard/index.js b/src/theme/xxxDocCard/index.js similarity index 100% rename from src/theme/DocCard/index.js rename to src/theme/xxxDocCard/index.js diff --git a/src/theme/DocCard/styles.module.css b/src/theme/xxxDocCard/styles.module.css similarity index 100% rename from src/theme/DocCard/styles.module.css rename to src/theme/xxxDocCard/styles.module.css diff --git a/src/versions.js b/src/versions.js index 9c3601788be..7867d673611 100644 --- a/src/versions.js +++ b/src/versions.js @@ -19,18 +19,18 @@ const versionMappings = [ docsVersion: "8.6", optimizeVersion: "3.14.0", }, - { - docsVersion: "8.5", - optimizeVersion: "3.13.0", - }, - { - docsVersion: "8.4", - optimizeVersion: "3.12.0", - }, - { - docsVersion: "8.3", - optimizeVersion: "3.11.0", - }, + // { + // docsVersion: "8.5", + // optimizeVersion: "3.13.0", + // }, + // { + // docsVersion: "8.4", + // optimizeVersion: "3.12.0", + // }, + // { + // docsVersion: "8.3", + // optimizeVersion: "3.11.0", + // }, ]; /** @type {Array} */ diff --git a/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/get-clusters.api.mdx b/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/get-clusters.api.mdx index 43b170c8562..4b5a2e85e93 100644 --- a/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/get-clusters.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/get-clusters.api.mdx @@ -5,48 +5,162 @@ description: "Returns a list of all automation and management clusters. Each clu sidebar_label: "Get current clusters" hide_title: true hide_table_of_contents: true -api: eJzFV21v2zYQ/iuEvuyLIntvQGEMA7ygKzI0a9E4KLAgH2jpbLGmSJWk6rmG/vvujrIlvyQxsDcgiCXy7uHdcy88bRNbg5NBWXNTJJNkCeFaNz6A80maOPC1NR58Mtkm343H9FOAz52qSQPl361QLLcmgAm0K+taq5zxRp88iWwTn5dQSXpSASrGqh0dG1REbhpV0G/Y1ICYPjhlloh7eNS9UZ8bEKrAo9RCgRN2IUIJIo8GJ22aGFnBy0i/o9QTyr6W+YUILDrEEMoL1xiDCkKZjCB9kKHxp7TdmIJYAi/UQsghQAlSh3IjrBPGBjz42BAwTZVMHpJOEFcaM3xeGbs2ySMqqqBJ8xojaDXc3U6LSplprbK7aBXatwTTRf9ln2clmod/7HHjHIZBfME8wd0dmTvvB6RGzGP/P8I3DkShfEDxRvmStOYQ1gBGyCbYio0S0hSikkYuoaLjOlyfidvTReQcHwsQgxwka2UQMg9iqe1car1BMYTF/xgbraEQnL1/hlRotQLRsUX839oCNLhMTHuD9odJF2P/B8Acjm0gbw6sYOh3XGmQipn0K42+s3vvkJNKfYXsmVj3jOBiz8fzUe7qeEaYGAi0xz9Tg0/EidnrPTlM8WHyd/QxHempq6nIsuc8/Ep6V3NnV5g2afe6RIi1pLSOTQoIoAPkxcgccRJDFXsR8YBPsVGEi6tiWtc7rv5WOxrQdXkLMMcs/7d9oHH6kgYAom7maKW4//D2CXf/pY5ydIoDiUUG3l9m9V78GcMrQP38QsBO+Ek4NvFzoxwUFCMG5LTa50Pk/ICvx32Q7fwT5BR0WRSK9qR+P6jWhdQeXkjlvvcm0jkuolM3uAmh/Qe96nx9n/jEl3Z34w7vzoGHA9/SHQfchv45T6+Pb5rO27Yle38Yf39aeL9aN1cFli0p/XhuqLkDh2l45bG2BThno/OHMh8gNA7Zkj2JWl90db2Webm/8XHLbfgKksr445T3jIKLyonIKvdQufQUgf2ghnR6wAKiZjd52CZzwNvJ4eNji1u1dBgcFsQVTvTSdrNeQtuhxJeRJEqvZK1GeT8AembCMyr3iGQbp7l2MhptS+tDO9nW1oUWhb9Ip+Rcx/uE9iKzC9lofEy0zaXm5XOpSBtmMJdN39+IeDoPUnTGIdyr8avx+RaFok+g9JNoj1OGUJ/FicJnkdp2QPkdyUWnd8TvW0gHzlD03gmk3QOmImYLrv/2ccY5pszCsvphwou7W8EpT2acGDvNc2pt3IRICPMxVh0bjfb3KJQ+XYdFxW+zcTbu5ncckXgU5yCT2R4jvF6vs1xWjSlkltuKKMQ+AfhFQLJx2E7edivpkXJhc7/XVpbfRw4WgH0+h1EH5EfseI3hx2oZwL6BsL8UBhl54Pq2//T4XwsyBpumyFGtUW9wpcbywhFuV17E96BwY508JNvtXHq4d7ptaRlHC7eJ9borK67nlO77got7m6xg04W/Dlx/uuEOePwN1g6r/s3rGbXbhsza5+lRXjL6rp+azQD7p19YQMxwUDM/40a0IdArnoOV8RcY7wHV +api: eJzFV9tu2zgQ/RViXnYXYGzvDSj0ZgRtkUWzKRoHBdbwA02NLdYUqZBUs66gf18MKcvyJYmBvT1ZooaHM2dmDscN2AqdCMqamxwyWGO41rUP6DxwcOgrazx6yBr4aTKhnxy9dKqiHZDB3QY4SGsCmkBfRVVpJSPe+Isnkwa8LLAU9KQClhGrcnRsUAm5rlVOv2FbIWTgg1NmDfzoqAejHmtkKkcT1EqhY3bFQoFMJoeh5WBEia8j/S5KfGazr4S8ECGaDjGY8szVxiizZsqMCNIHEWp/StuNyYkl9EytmBgCFCh0KLbMOmZsAH7iCJq6hGwOnSFwqM3weWPsk4EFh6CCpp3X1nir8f52mpfKTCs1uk9etRzWaLrsvx7zrFCePIwR186hCewrOq+s2ZG5i35AasI8jv8zfueQ5coHZda18gXtWmJ4QjRM1MGW0SkmTM5KYcQaSzquw/Ujdnu6yJSRus6RDWqQvBWBCRnYWtul0HrLFMEyZXwQWmPOYvX+GTjTaoOsY4v4v7U5anQjNt071B8mXMr9H4hLPPaBojnwIkLfxU5DzmbCb7TyIYZ3VwVVqm84eiHXe0aAw56Pl7Pc9fGMMFtOnelf6MFn8hTZ20dyWOLD4u/oi3Tw01A5G41eivAb7btaOrtBB7x7XYuAT4LKOokUEkAHGBcTc8RJSlXSIuIBOCShCBd3xbSqdlz9LTka0HW5BJhjlv9bHaidvkQAkFX1UivJHj59eCbcf0lRjk5xKHJl0PvLvO7NX3C8xOCUvBCwM34WLrr4WCuHOeUoAsay6ushcX7A16JPsl1+QUlJF3mu6JvQHwfduhLa4yulvNdeEM7FJjoNI4qQXR1q1fn+PokpXtrdjTu8OwcRDmLjOw6iDP1zkV4f3zRdtG1L/v4y+fm08d5Zt1R5jjHrv54bau7RfUV35VWODJ2zKfhDm08Yamc8E3sStb7o6norZNHf+GiC28YrSCjjj0veR5RQoHIssRo1VKw9ZaAf1BYcPMrakdhl8waWKBw6yOaLdsGhEk6UGA2z+SIWemG7WQ/ocyggg7EgSq9EpcZyPwD6yISPqFEjoEnTXJuNx01hfWizprIutMDhq3BKLHW6T+hbYnYlah0gA22l0HH5XCnSBzOYy6Yfb1g6PQ5SdMYh3JvJm8l5ibIuPIOyn0T3OEUI1VmcZHwWqW0HlN+TXQp6R3wvIR14hKL3zoB3D++sKwU58dvnWawxZVY2bu8KPta58iF1UXTi+3vUq6s0/+Q/nHg+lZJ0LirS6Wa76gecIQxVVSe8kMGPo8lo0o31QkbaU+4pGp+Nx09PTyMpytrkYiRtScxqJdH4OEGkGRw+dCv8aHNupe93Kxvfxw5X6NBIHHdAfhz5qKwPpTAD2PcY+rtiUKgHJDT7fyT/a5+mGqDhclxpoczgpk1dN4e+64jvQT+n9plD0yyFxwen25aWH2t029TGu26Lbc5pDMhjzzewwW1XCFWIbanrKIzHf83aoRi8fzsjFa7Jrb58j8o1ou9k1mwH2E2TLGZ2g6YlMUhOBHqHdtG27V8VCQwO sidebar_class_name: "get api-method" -info_path: docs/apis-tools/administration-sm-api/specifications/sm-administration-api +info_path: versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/administration-api-self-managed custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get current clusters

+ - + Returns a list of all automation and management clusters. Each cluster entry contains the running apps and their status. -## Request + -
+ -Ok + -
Schema
  • Array [
  • apps object[]required
    - -The list of applications running in the cluster - -
  • Array [
  • ]
  • ]
- -Forbidden - -
- -Server-side error - -
+ diff --git a/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/get-usage-metrics.api.mdx b/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/get-usage-metrics.api.mdx index 1de2f6077bd..0a4b7e86ad7 100644 --- a/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/get-usage-metrics.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/get-usage-metrics.api.mdx @@ -5,59 +5,152 @@ description: "Returns usage metrics for a specific cluster for a given time rang sidebar_label: "Get usage metrics for clusters" hide_title: true hide_table_of_contents: true -api: eJzlV9tu4zYQ/RVCTy3g2O4NWARFgXTRXaRo2sXGQQsEeRhTY5kbidSSlLOGoH/vDClZsi0b2zZBH/YlkcThmTO3Q7pOTIkWvDL6Ok0ukwz9nYMMb9BbJV0ySSy60miHLrmsk2/nc/6XopNWlbyL9vzxSGbSaI/a8yqUZa5kwJx9cGxSJ06usQB+Ki179CoCqpT/+m2JBOTIp84IbB9/sUahUgJXK4VWmJXw9EXmlfNop0kzYUyJzl1r50HLiHyMUXFgooiRiZWxgsytx1S0+4XqAKbJ5ICoNx7yAVddFUu0ZEY4BVDcSWqqZY6j7KMxMz/mAMKVKCk0KRia4mk46R8rZZGSc996fph0ns3yA0pPfiBNFTuB/N2A6gpyh2SsfM7Wr6l2Jsfbm6u0UPqqVNNhffuMNcxbKseN8E/TiJ9QVpzHDuELT6QH93jn0H52AsE5lWlKIO+kddr6vyaOUhIZtUPqsXDHc9rsMgnWwnbUb4iF5hV8iM2JNWxQLBH1IGhzqlZDHi9Tt8WuVIcMSJlGhGVsSoYFfxmWb4x9HeWOaDLR7+ffHfcWWS1VSkLJlflhTKlv0W7QXjhSU4HWGhui3rd5j76y2p3vk1Z828+Z2lA9vSpQWNAZTsVxm4NFAVlmMQNWCkM8goz3uwTolISDoNNhv57U6Mk53ZkEtBNz5SFzXOKQYtEddVQ6R3hW+S0t1skSibOlx4eGlkqwQLGEob4fnWqtPlZnDiryq9iWjCzPiiY4eg1t1vedtxV1RX9aHkxcMxlzHVIUMklPRdk5HqbWibvfr/8a2CgtCpXnikI2OnUn2AXkswSPxWdfnk5QRqrOSxAm3P9Il2pNdV6b9jbEIgB+TS8z4NG8gFLNQmtfFLs7kgtzFTujsiTSSR1dNpezWb02zjeXdWmsb8h4A1YB+Q6KymtxTldQ5UwsNxLy8HlMT3mBQ+1SdvXuWkTv8SJEPvbhXs1fzUeR2PQESp+uHmftfTmKE41HkUIyu5m6ZbsYdDdZu/ZuwQMUv7cGk/bhTVe0X/9cBMVSemXC9n31FLc3Iugn0zgieyWDfjDLUElFQxUuqYE08e9RWCS4oHHjN9P5dN5ecUGG/MYiM21HFX56eppKKCqdwlSaglNIF2CkSzPbtp35W/tlcrA5NdLtdisT3mcWV2iRhGzWArlZCLyk8hegB7Bv0Y9Idas57jAJdX9P/yKEPraXx09+VuagwskY0l+3U32f7KaaK7M319S8cTzvk7pegsM7mzcNf46iE84B5XiW092BfjLdX71vRelr8ZnHxSj7R9x2p8YG8ooNkiCx/5bI8xweZ7h2Z8jz0H2Og+MM2Xh+9FQfer0ONwFqCYQ0XAvqdgvrSjkM8Oj3796Z8vaXBV8KK+6+nQAeCF5A7+7WejvA/vHnYCAW5hH1T0lH2/Mr+SHJ/Rs/aYl5 +api: eJzlV01v2zgQ/SvEnFqAsb1fQKFbUGyKLDa7RZNgFzB8GJNjm41EKiSVNBD034uhJFuxZW93kWAPvSSWPHx8fDPzhq7BleQxGmcvNWSwpngbcE1XFL1RASR4CqWzgQJkNfw4m/E/TUF5U/IqyODPO5CgnI1kI3+LZZkblTCnnwOH1BDUhgrkT6XnHaNpAY3mv/GpJMggRG/sGuQe/s2GhNFko1kZ8sKtRNyQUHkVIvkJNJIxFYVwaUNEq1rkQ4yKDyaK9mRi5bwIEX0kLbr1wvQAE5B7RKOLmA+42qpYkgcJK+cLjJCBdtUyp1H2bTAzP+SAIpSkzMoowdATaBoW/b4ynjRk827nhex3dsvPpCJIQK0Nb4L5xwHVFeaBJEQTc45+72xwOV1fnevC2PPSTIb53SnWMG9lAhfCv5WRvpCqWMce4TsXMmK4uw3kv1lADMGsLWnBK0XFS/9X4SR0jLomjVSEwz5ttkqi9/g0um86i4gbjOlsQWzwgcSSyA4O7Y7lasjjdfJ2s03VPgOjYcRYxrpkmPDXYXnh/PvW7qBpmOjPs58Oa+vC+aXRmixn5pcxp74m/0D+LBhNgrx3Pp36ecwnipW34XSddObbvV6bB7IimoKER7umiTgsc/QkcL32tEZ2CvdAPtn4bpVAq4WxKq/0sF6PerQ85TsyoR3pq4jrwClOEot+1C0kBFKVN/EJsnkNS0JPHrL5ollIKNFjQTE19Xy0q625r04MKpBgOPa+Is+9YrHgxKcy29Vd9BXJwbTc67hGjm2dJEpKhohF2W88lDaI2z8u/x7EGCsKk+cmkHJWhyPsEvJJgofm89yejlAmq1+FMNnTev4z3YWEguLGdbchNgGMG8hgityaZ1iaaSrts2J7Rwqpr9rKqHwOGdTtlk02ndYbF2KT1aXzsQEJD+gNLvPWWvm7tk9XWOVMLHcK8/R6zE/5Cz5qL9n5x0vR7t5ehJzfg3s3ezcbReLQIyg7uXY4mxjLUZw2eBQpidn31DXHtYfuO2tb3h14guLnLkB2Hy76pP32101yLGNXLi3v3DOZpgmxvcgmEm+uKV+dXaHFNem3B8zPVTITpoyHi91KdIYshjDsHZznFuKHyWwy626+qJLsbe75NCGbTh8fHycKi8pqnChXsLK5UWQDcWxXsL93b+TeYu1U2K42Lj1PPa3Ik1U07YDCNOlRuhALtAPYDxRHHLyzorAvR727vn8X/t9WXaQvcVrmaNLATPLXXbPPYdvsnJln7b6QXdfOoa6XGOjW503Dr1svSuPBBG5xvZ3zR+V+86nzqrfiG6fIKPs7euqHyQPmFQdAct7/SuRlZsoJrv1oeRm6LzFPTpBtx8qO6mJn4+mCIGFDqNNtoe6WsMOUwwMe/Cx+Nmo+/HrDd8WKq2/ri3s+mND7K7d9GmDXdRtx4+7INjxlWhKRn6FZNE3zFavQk7I= sidebar_class_name: "get api-method" -info_path: docs/apis-tools/administration-sm-api/specifications/sm-administration-api +info_path: versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/administration-api-self-managed custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get usage metrics for clusters

+ Returns usage metrics for a specific cluster for a given time range. The usage metrics are aggregated over the time range and include number of started process instances, executed decision instances, and assigned task users. -## Request - -

Query Parameters

- -Ok - -
Schema
    processInstances objectrequired
    - -The usage metrics for started process instances. - -
    decisionInstances objectrequired
    - -The usage metrics for executed decision instances. - -
    taskUsers objectrequired
    - -The usage metrics for assigned task users. - -
- -Forbidden - -
- -Server-side error - -
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/sidebar.js b/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/sidebar.js deleted file mode 100644 index 5c1953863bc..00000000000 --- a/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/sidebar.js +++ /dev/null @@ -1,30 +0,0 @@ -module.exports = [ - { - type: "doc", - id: "apis-tools/administration-sm-api/specifications/sm-admin-api", - }, - { - type: "category", - label: "Usage Metrics", - items: [ - { - type: "doc", - id: "apis-tools/administration-sm-api/specifications/get-usage-metrics", - label: "Get usage metrics for clusters", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Clusters", - items: [ - { - type: "doc", - id: "apis-tools/administration-sm-api/specifications/get-clusters", - label: "Get current clusters", - className: "api-method get", - }, - ], - }, -]; diff --git a/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/sidebar.ts b/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/sidebar.ts new file mode 100644 index 00000000000..7a427bc25ef --- /dev/null +++ b/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/sidebar.ts @@ -0,0 +1,36 @@ +import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; + +const sidebar: SidebarsConfig = { + apisidebar: [ + { + type: "doc", + id: "version-8.6/apis-tools/administration-sm-api/specifications/administration-api-self-managed", + }, + { + type: "category", + label: "Usage Metrics", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/administration-sm-api/specifications/get-usage-metrics", + label: "Get usage metrics for clusters", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Clusters", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/administration-sm-api/specifications/get-clusters", + label: "Get current clusters", + className: "api-method get", + }, + ], + }, + ], +}; + +export default sidebar.apisidebar; diff --git a/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/sm-administration-api.info.mdx b/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/sm-administration-api.info.mdx index 5d84abb5475..2c017af2d29 100644 --- a/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/sm-administration-api.info.mdx +++ b/versioned_docs/version-8.6/apis-tools/administration-sm-api/specifications/sm-administration-api.info.mdx @@ -9,18 +9,26 @@ custom_edit_url: null --- import ApiLogo from "@theme/ApiLogo"; +import Heading from "@theme/Heading"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; import Export from "@theme/ApiExplorer/Export"; -

Administration API (Self-Managed)

+ Access the administration API of Console Self-Managed.
-

- Authentication -

+
@@ -53,9 +61,7 @@ Access the administration API of Console Self-Managed. >

Contact

- - URL: https://www.camunda.com - + URL: [https://www.camunda.com](https://www.camunda.com)

License

diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/activate-jobs.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/activate-jobs.api.mdx index 5370a7cc20c..8b8d03ceb6e 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/activate-jobs.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/activate-jobs.api.mdx @@ -5,52 +5,288 @@ description: "Iterate through all known partitions and activate jobs up to the r sidebar_label: "Activate jobs" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Activate jobs

+ - + Iterate through all known partitions and activate jobs up to the requested maximum. -## Request + -

Body

required
    )\n","type":"string"}}>
+ -The list of activated jobs. +)\n', + type: "string", + }, + worker: { + description: + "the name of the worker activating the jobs, mostly used for logging purposes", + type: "string", + nullable: true, + }, + timeout: { + description: + "a job returned after this call will not be activated by another call until the timeout (in ms) has been reached\n", + type: "integer", + format: "int64", + }, + maxJobsToActivate: { + description: "the maximum jobs to activate by this request", + type: "integer", + format: "int32", + }, + fetchVariable: { + description: + "a list of variables to fetch as the job variables; if empty, all visible variables at the time of activation for the scope of the job will be returned\n", + type: "array", + nullable: true, + items: { type: "string" }, + }, + requestTimeout: { + description: + "The request will be completed when at least one job is activated or after the requestTimeout (in ms). If the requestTimeout = 0, a default timeout is used. If the requestTimeout < 0, long polling is disabled and the request is completed immediately, even when no job is activated.\n", + type: "integer", + format: "int64", + default: 0, + nullable: true, + }, + tenantIds: { + description: + "a list of IDs of tenants for which to activate jobs", + type: "array", + items: { type: "string" }, + nullable: true, + }, + }, + required: ["type", "timeout", "maxJobsToActivate"], + title: "JobActivationRequest", + }, + }, + }, + }} +> -
Schema
    jobs object[]
  • Array [
  • customHeaders object
    - -a set of custom headers defined during modelling; returned as a serialized JSON document - -
    variables object
    - -All variables visible to the task scope, computed at activation time - -
  • ]
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx index d80124c01ce..8f41c021eab 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx @@ -5,55 +5,259 @@ description: "Assigns a user task with the given key to the given assignee." sidebar_label: "Assign user task" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Assign user task

+ Assigns a user task with the given key to the given assignee. -## Request + -

Path Parameters

Body

required
+ -The user task's assignment was adjusted. + -
- -The assignment of the user task with the given key cannot be completed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx index e531316f43d..83f4c6c24db 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx @@ -5,52 +5,223 @@ description: "Broadcasts a signal." sidebar_label: "Broadcast signal" hide_title: true hide_table_of_contents: true -api: eJztWMFy2zYQ/RUMTu1UFpXUSV3dFNlpnaaOx5Lbg+LDkoQkJCTAAqAlDYf/3l2ClChRctOZHGWPZYJY7Nt9+xYkVHAHC8uHMz6RCwUJf+rxWNjIyMxJrfiQvzMa4gisswyYrYz6vMeN+CcX1r3T8YYPi2oojYj50Jlc9HiklRPK0RRkWSIjIHfBF0s+C26jpUiBrtwmE4iiwy8icug3MzoTxklhK7sK7w5SQaP9wKZLwRTOMD1nDq+9LXOahU3IFGgNYJ2RasHLHn8GIyFMPADEsSR/kNy3gH0OXbgaYuuBAZHyYfLpjvkEWoB1RgiIRIByt/HxFG6vmwS8HV6CY3qlbCurI4mUvRbpszZTWEInXULGvqjbEj74ouFiv9xmWllPxOvB4Hh8dc4rTHWP1+9a4T/E5jh6riSG3CKpqTKR1ImphpIY2UIYvDHXJgXnb729/O9i1CX4f3Ctipzk3TNdE395imuk5lnGImYxOGDSMqUdqi2R8QuM4yLUYvpTl/l9gBG795YsFg5kUkuWNOwNQwSWis0e3o/Zr5dvfnn6YelcZodBsFqt+mYeXQhsFm362iwCHNIf2f3YZxi8ESyFDQsF2/UU29Wa2UxEci4jalDnc62CIRL7n1WncQ6F4meLA9JbJc6N5IdNO2KPD7cMKVVOzje4oAtdrZlDnpAPCHXuhmEC6ivflbMLeohi8zQFs2lUsw+AjqwDl7fSOCHRn193fJMsfp9O75l3wSIdC4ZrEAf1UQNREqlUMs1TPkR14QjWfvR2MCjJJ1X8GzJRTKwzTL+S1mE6KI5UY529tyoxqTAuFX2vymgjF/IQt7/XWrWIr31GTUNdvrh51Z0017k6d9K5k86ddLKT3hx7NGEuxLIhHQpjkDIdRbnBNw+2Wsqkch8Jaxvs+t3w3GnnTjt32vFOw8lUuKXG91CeaVtJB9wSR4F/Ztlg+6qJc1aYZ2HonFZgZEgKL3zLlKj0YokOymGRaePK4JnqsXfGoWnfWo1kEh1BsvSw3dLRRPtgNYYUn5vArtjDzWTKfgMnVrCpqCTIfddXg6vBUa9kesLj6P6W+Qy98FqbQeOWuvqoW2/8LY7L8omIxI1Lus2Elnl6QgFGmFFO7G8FUeNV3mnsjfCOv3jfyOTD39Oq0rSRPeyOxDdrSDPfhu0j7E5n7QLtnUpaB1Wp5roKqVZRNzlyhLLwbAz6r7qKRQKo8SKd4tpq90XVrqRb4rl15y9KcuuIpB7HLVrQSQVxlY+5MfvoZ9hfHpG96lOhvRqbTXeBnvOwj3BB5Jdt/4eJDoMUpApqCBuMR38+3l2PLj7ejm/uJjcX6LHv1q4ilJoiBdWKY3uaqt/qDpMtdg+bU19a1MV1Yu0C3DGkIpqrDIq6/ZqDtKVSbxsQheObaMaLIgQrHk1SlnQbK27w6Dp72pWURuh2KSBGxVDHfqXTLR/76C6mFASZJzkF0zk8l71mxSiKROZetH1q7SP3nyZTCrv+SibFXRfvGljR1zX4OeSf8RcHumKsEn91v+C4ey5yWJC990s//wIkFT00 +api: eJztWN9zm0YQ/ldu9qmdYiGnTurypthO6zR1PLbcPrh6WGAlLoE7fHdY1jD8753lQEI/7KYzebRmNBKwt9/ut/sdLDU4XFiI7uFWLhTmMAsgJZsYWTqpFUTw3mhME7TOChS2NRpBAIYeKrLuvU5XENXtoTSUQuRMRQEkWjlSji9hWeYyQXYXfrHsswabZFQg/3OrkiACHX+hxEEApdElGSfJtnYt3hUWxEfbgU0zEgoLEnouXEZdbMJpEfchc6AdgHVGqgU0ATyikRjnHgDTVLI/zK8HwD6HfbgOYu1BIJPy8fbzlfAJDAC7jJoAHClU7jI9nMLleZ+AtxMuQyf0UtlBVgcSaYIB6fdDpmYBOOlyNvZFXZfwxhcNmsYvt6VW1hPxZjw+HF+X8xLtNq/ftcJ/0OoweqXkQzUkqa8yk7QXUwcllaMFGQhgrk2Bzp96d/LfxehK8P/gBhV5lnfPdEf8yXNcl0Y/ypRSkaJDIa1Q2olHzGX6AuOl0XFOxU/7zG8DTMS1txQpOZR517Lcw94wplRIJe5vPpyJX0/e/jL7IXOutFEYLpfLkZknR5RKp81Im0Vo5gl/2e7HkZhmZEgUuBIxiY2mxKbWwpaUyLlMWKDO59oGwySO/lF7wtltFH+13iF9UOLKSNgV7UTc3VwKmZJycr6SarEP3a6ZY5WzD4x15aI4R/UVNuXcB91FsVVRoFn1XbMN0ARgHbpqkMYzLfrzmz3f3Ba/T6fXwrsQiU5JzLURLpO2B+IkCqlkURUQnYzHART45I/ejccN++SKf0MmStBTmaNqW2s3HalEoQ11/dMmJpV1qJLvVRlt5ELu4o62pNU18bnPqBfUyYubV6ekua7Uq5JelfSqpGeV9PbQrWmiBLNsuA/JGG2ETpLKGErFMpN56z4ha3vs7tnwVWmvSntV2mGlNQEU5DKdQgSltm3roMsggtDfs2y4ftSEACyZRzI8p9VQmRwiqL1kmigM60xb10R1qY1rwkeux9aMw5e9tPqWyXWCeeZh90vHF4aD1RkWlUpRnIqbi9up+A0dLXHVUsmQ265Px6fjg17Z9BmPk+tL4TP0jTfYDHq3rOqDbr3xtzhumhkTmVRGutUtL/P0xISGzKRi9tcN0eG13vnYG0HQ/fnQt8nHv6dtpXkju9mMxBdPWJRehsMRdtNnwwJtTSWDQVWquW5D6rpoPzl2RMZ6Nsaj4/2Ovb5shZfooqhUu/uqhVhKlwkckJXklXVMUgC5TIgnlagG5WPuzT75K+IvjyiOR1xo3439pruQLqviUaKLMPHL1r9xruOwQKnCDsKGZ5M/767OJ0efLs8urm4vjo5H45F7ci2hLIoC1SCO9TTVPdXtJltvbjbPvbToiuvoyYVljlIxzW0GdSe/fpC2XOq1AGdBJ6J7qOsYLd2ZvGn49ENFZgXR/WxTUj5qAsgIUzKtYr/ydAtnPrqjKQfB5nnFwewNz03Qr5gkCZXuRdvZYB+5/nw75bC7VzKFTnmNwSW/rsElRAAB6JattvHbczXkqBYVLtjW++TPv0I6PDg= sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Broadcast signal

+ - + Broadcasts a signal. -## Request - -

Body

required
    variables object
    - -The signal variables as a JSON object. - -
- -The signal was broadcast. - -
Schema
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The signal is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx index c8c484fd2ab..eb8e1dac584 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx @@ -9,18 +9,26 @@ custom_edit_url: null --- import ApiLogo from "@theme/ApiLogo"; +import Heading from "@theme/Heading"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; import Export from "@theme/ApiExplorer/Export"; -

Camunda 8 REST API

+ API for communicating with a Camunda 8 cluster.
-

- Authentication -

+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx index 3125499a15d..987fd254367 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx @@ -5,51 +5,206 @@ description: "Cancels a running process instance." sidebar_label: "Cancel process instance" hide_title: true hide_table_of_contents: true -api: eJztWFtv2zYU/isEn1ossZwu7VI9DPDcdMvWdobjdA9pHiiJstlSpEZScQxB/33nkJJvstEU2KNTpJHIcz/fR+mopo7NLY3v6cTolFtLhLKOqZTThzOacZsaUTqhFY3pGJelJYyYSimh5qTc0xnQM1oywwruuEGrNVVwA7qt5E0r+BdfgahAqyVzC7g2/N9KGJ7R2JmK77ueLTj5xldE58TB5b5f4jRJfXQYgU0XvGA0rqlblehcKMfn3MBWrk3BXFh6c0mb5iF45tb9prMV6mwCyZm0EEmqQV053GNlKUXKMKjoq8XI6r43nXzlqQNnqpKSJZJ3KUHUJTdOcIvSeO0tTXnODceKw+pu2iNiuk2ffrrQliuSrHwVKssNXDBHlkJKkkBdmHFYIwa3hqfaZBb+2ko67FZudAHywpK178EX9bGyDnV/JUMicizto8h4BjuQwvcKeEYLoURRFTS+aBqQFw7zbaEy2W36NBQaqo6iEFeplQ3FeDW87Gc/O9RpiD50GkKkYOZyODyq6RMhGXMM1ZR25JFJkSFGjjQVlKBhxU/95u43ZhIkScYdE5KEphNmSRBMwLFQ5H76fkzeXr7+5eHFwrnSxlG0XC4HJk/PeSacNgNt5hHc4i/KvRwQCN5wUrAVdoVlIAY+mSQb+BBb8lTkIkXct3zwwWC7dhq3xuIu9sLuGrHWGcDHdncrI+g+B0fkbnpDoKTKiXyFgOq59jo5A7yBPEt05eJEMvWNbqDRd7rvxVZFwcw217ccgCEAgqvsd+n986uebYTFH7PZhAQTJNUZJ6ATSNE6GmyDGtAFd+wp3L0ZDhu0iR1/RiaK8KcS0vfQ2k8HwFFo6HOw5hNbn7z/T2e0EXOx7xccbdG0BfG7kFHg5eWPUBE5letKnTh14tSJU0c59frQQwpywSobxCE3Bkqm07Qy8OpBlgsh14TrfLfvKSemnZh2YtphpsEmjB4LneFcoa2HDo4XMY1aMp13Ydqo7s8kTRTeLaVPGkcJbh67SaYyUDZaB1I1wIUa3sZdE9elNq6JHrFjj8wIfOX3DcbtQL4OVFKnTC5CYP3m4gaOS13SY1bAk5WRKzK9vp2R35njS7byxUaXu6avhlfDg1ZR9IjF0eSGhAwDNLeOi84s8v6g2SD8HMN+yLIcjjbhVreoFsqTcGa4GVXYnzVkWn/eOt4HIVgJF+87IP35z8xjAY+66WaAu35iRRmIemi+Gnqc5to7XI8q+6FjH6HpIdfh4KKPWEgPiZfqAnT96QuoXQq3gNl4Yy+VMFphCc4oHNEcZh302w7EndiHsEM+B4/kYoBtDFjrDt05WK6SAbgDfHq19d9E6iQqmFBR68JG49HHu0/vRucfbsbXn26vz8HiwD05Xy4kRcHUThwI+N7L3X7O9eaZ88zvAG1DHX9yEZwjMOs3bV51S8p72iMl6MUHPxXs8BLwFLh1T+s6YZbfGdk0uAxAMDDF3z9sqOi5mwmL15uh/mhyL6bt/P+S/NBHh4PptotMrfzZICu8g0uwevibSPMAWgvOMsA8xh0ExyG68xma2xjqfY1ozjqNUZry0h2R3XlNQHKuz8zJ37cz5Fr7KaSAJwysGrbEDzTwf0y/wD+40b5ynsZ+vabwpJhXbI7ywS7+/AfloVm8 +api: eJztWFtv2zYU/isHfGoxRVK6rOv0MMBL0y1b2xmOuz2keaCkI4stRaokFccQ9N+HQ8p3B22BPcaAYYk8PNfvo3nYM8cXlmW3bGp0gdaCUNZxVSC7i1iJtjCidUIrlrFLGpYWOJhOKaEW0B6siVnEWm54gw4Nae2Z4g2yjI2S16PgX7hiEROkteWuZhEz+KUTBkuWOdPhoel5jfAZV6ArcDUe2QWnofDekQe2qLHhLOuZW7VkXCiHCzQsYpU2DXdh6OUFG4a7YBmt+02XK1qzdaTi0mLECq0cKkdzvG2lKDg5lXyy5Fl/bE3nn7BwLGKqk5LnEtchtUa3aJxAS9L07DXNsEKDlPGsPwh7AmY96cMvam1RQb7yWegsGnA1d7AUUkKO0HLjKEdcSjBYaFNaMGg76ahaldENuFpY2NiOP6p3nXW09ldIQVSU2ntRYhl/VCz6agIj1gglmq5h2fkwRMwJR/GOUJnuF30WEs2GgUQN2lYrG5LxIr04jn5+qtLCjpXGMmZDxC7S9NGVPhAoueO0TGkH91yKkjDySFFbo3OJzQ/HxT0szDRIQomOCwmh6MAtBMEcSxAKbmdvLuGXi59+vntWO9faLEmWy2VsquIMS+G0ibVZJKYq6Etyz2OY12gQGr6iqvCyFGSTS9jCB2yLhahEQbgf+eCdoXLtFW6DxX3shdkNYq0zQi12q9sZwQ45OIEPs2sQJSonqhUB6si0X1PxTpIOnuvOZbnk6jPbQuPY6KEV2zUNN7tc3zEwRMw67jr7VXr/+OJIN8Hij/l8CkEFFLpEqLQJpBgNxbugvkjTiDX8Iby9TNOBdFLFvyESBfjQSq48tA7DEQoabXDEjw9ss/P+P5XRRizEod2Y7dJ0BPHrEFHg5cX3UJE4VelOPXHqiVNPnHqUUz+d+pOaKKAsG8IhGqMN6KLojMESlrWQG8KtbY/nlCemPTHtiWmnmTZErEFX65L6Cm09dKi9yFgykuls7aZN+uOeZEjC2VL6oKmVQHO/7mQ6I1nG+kCqIUuSvtbWDVnfauOG5J4qds+NoCO/LzBNB/KtQSV1wWUdHDsuLk1Qu7QO+pI3nSo5vILZ1c0cfucOl3zlk00m91W/Sl+lJ7WS6CMaJ9NrCBEGaO5sF2u1xPuTaoPwtyj2TZbFojPCrW5oWUhPjtygmXRUnw1kRnteO70HIRaND2/WQPrz37nHAm11s20Dd/XAmzYQ9VR/lXqcVtob3LQqh65THdHYEGsanx8jdnrtiVfopumU333VApbC1cB3UlHIzjpKQcSkKFBZ79fYEK/F3oYZ+CdYhPOYyhiwtt50F8LVXR4XukmKsGzzm0udJw0XKhlN2ORy8u7D+9eTs7fXl1fvb67OzuM0dg/Op4tI0XC15wcB/uhwdxhzv/3P+cZ7gLGgDh9c0kouFEHMx9WPpLxlR6RkEctOXhXs8fIuGrl1y/o+5xY/GDkMNPylQ7Ni2e3dloqeu6Ww9Lxt6h8N7tls7P+fw3ddOpwMdxzkauX3BtnRG4vYZ1ydvhMZ7oaI1chLNN7vIHgZvDubk7qtoqPbiCFar5gUBbbuEdm9YwKRc7NnTv++mRPXxquQRpe01vAlXdDwZXBe+6x5CvuxnkmuFh1fkGzQSZ//AJGmWMA= sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Cancel process instance

+ Cancels a running process instance. -## Request + -

Path Parameters

Body

    = 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
+ -The process instance is canceled. + 0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + title: "CancelProcessInstanceRequest", + }, + }, + }, + }} +> -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The process instance is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx index 6dcef1c1af3..9f8de3c3c9c 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx @@ -5,59 +5,247 @@ description: "Complete a job with the given payload, which allows completing the sidebar_label: "Complete job" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/SsYnJKpTSqpkzq6qYrTOk1Sjyy3B8cHEIQk2CTAAqBkDof/vbsAKerDctKZ9CZnHBMEsG8X+x5AbE0dm1s6vKUfdULvTmgqLDeycFIrOqRjnReZcIIwcq8TspJuQdxCkLlcCkUKVmWapSdktZB8QViW6ZUlPMyRau6HMms1l8yJlFhhlpIL4ph9iL4qekILZlgO9g26UFMFDUAFqD9EBd0SfSiYW8CzEf+U0oiUDp0pxa6jU0B6EBXRMw+KzjrduSIimG/5QuSMDmvqqgJRpHJiLgx0zbTJmQuv3p7RprkLcMK6X3Va4ZwefcYyC/Bcw3TlsI8VRSY5Q0/ie4vu1PtoOrkX3GHIRhfCOCks9i6ZkSzJQoOlqUQrLLvaGHQo3PXUzUjX0WOqMOxdeFVmGc4KdpsGRkiHTSRAm27AmITwYS1wiBG20MoGL18PzvDPvkMelq0JgAkvORfWzgCziigYOhsMnpm7zS5MJ2dKaUcS0RuNyGdtBEmFYzKzhMEzLOlSpoAnlZ/fuUsSyF4g2oF0wUxYi/yn/bRtuzgiV2Fki0vCegK5SRiYBPTbyYcxeXf25pe7FwvnCjuM49VqFZkZPxWQW20ibeYxNPEXx72MCIQPMeSswjB7CpCeKMQWgsuZ5JhpDLB1m2ByQ3zPsyz0rrlonQF1bhK/NJLucmxEbiaXBNZVOTmrOjlvQfs5M1ZmaIMlunTDJGPqgfa02gfdRbFlnjOzlu42ABiyjrnSflO4P7/es43E+n06vSLBBHAoFQTmAI60HRAGkUsl8zKnQ+AntNhjaL0dDBq0iRn/jkgUEY8FhO+ptRsOkCPveesDkwr8UvxHZUYbOZe7uAC0IfGWxO9DREHbZ8/KeV+SqHDU5EyXKo2O0jpK6yitg9J695+kBSvXnmArowEa1xZOvtIYcAdO0OPJd5TnUZ4/TJ5vnvoYhVhwlQ3yUBgDS6a5V2CKt5zMm8dv2g67vScctXbU2lFrh7QGnXDLX+gUr/PaeurgrX5IYzgKbVyHG38T8/UFFG/swiy7ykBpYG1oHZTTAOHrBdhphnWhjWviJaZl6y6N3UFhHXMyzVm2COj7GcQOLD90kY1ZDt+3jJyTycX1lPwGJ/GKhUssQm6bPh+cD560ikMPWBxdXZIQYeDfxp7QmUVxP2k2DP4ew76WYQXsYNJV1zgtLE8i4PPBjEpMwpoXLZ63ju0wCN6Ehw8dWz7+PfUJx/1s0tdJLh4ZZm+3rNF4Es60B2opsu8y5g+SHWIcRK/26QhhoaqAIjDXb61ASf8VxTaWgGeldRj6CYX9V8C3EOK2haVu2KfQQ/4KiORVhOkLHOt21DlYLpMI4GIepq3/JplO4pxJFbcQNh6PPt98eT86/XQ5vvhyfXEKFiP36PwyIeNzpjb96Ko1wPvdQOv+FPnfy29t3p14dDHsKVIhE/0y1K1Ab7EYZ2HocF2U29AocCvo7JbWdcKsuDFZ0+BrIIWp4P1dL0uv41RafO7raAdjfzFpS24vybeLe08G0r5kqvKbQ1ZiCx7BVF9kbO5g5EKwFIiODobOcXDjdIom+sl7lb7mpJsx4lwU7sDYrQ8AVOR6N7z683qKAmvLjDmcHfDWsBVWPOH/If0K/6Ch/RJ57fr3NYUzYF6yuS+Yerv48y98k4hh +api: eJztWE1z2zYQ/SsYnJIpTSqpkzq8qY7TOk1Sj620B9eHJbgSYYMAA4CWNRr+984CpD7tJJ1Jb9KMRiKB3beLfQ8kdsk9zBzPr/l7U/CbhJfohJWNl0bznJ+aulHokQG7NQWbS18xXyGbyXvUrIGFMlAmbF5JUTFQyswdE9FG6lmYCs4ZIcFjyRzaeymQeXB36T+aJ7wBCzV6tBTCkmuokef81hR/4IInXFIMDfiKJ9zil1ZaLHnubYu7gU4qZHe4YGYaQClYb4ZQMOUJd6LCGni+5H7REIrUHmdoecKnxtbg463Xx7zrbiIcOv+rKRdks0afgnKYcGG0R+1pDJpGSQEUSXbrKJzlPpopblF4StmaBq2X6Gj0HqyEQsULKEtJXkBdbEx6Kt2V6Wamq+ypVJT2LrxulSKr6LfrEu6lp0siQF9uafRlTJ93HU2x6BqjXYzy5eiYfvYDCrCwIgAVvBUCnZu2Si1S3iX8eDT6iu02u6icArQ2nhW4dpqyj8YiK9GDVI6BRdZYcy9LLJnUwX4IlxWmXESiPVGuxppCYf3Tftm2Qxyzizizx2VxPRk4FicWEf368t0pe3P86pebZ5X3jcuzbD6fp3YqjrCU3tjU2Flmp4K+NO95yiYVWmQ1LCjNNQXYmijMNSjkVAqqNCXYh82ouDG/r7Msjq646LyVerZJ/NZKvsuxMft8ec5kidrL6WKQ8xZ0sJlCq8gHFKb1eaFA3/E1rfZBd1FcW9dgV9LdBugS7jz41n1TuD+/3PNNxPp9Mrlg0QUTpkQ2NZb5SroBiJKopZZ1W/P8eDRKeA0P8er1aNSRT6r4d2SiGT40CnSg1m46UrN6zduQmNTOgxY/qjLGypncxU35psR7Er+NGUVtH39VzvuSJIWTJqem1WV6kNZBWgdpPSmtN/9JWtINT7C5NXoW1haZaK1F7dXi8OQ7yPMgzx8nz1ePvYyONaNVtsRDtNZYZkRQYEmnHBXc0zvtgN2fEw5aO2jtoLWntNYlvEZfmZKO88YF6tCpPufZrSlctown/i4TqwMondjR3g+dgdYqnvNlVE6XZ9myMs53+bIx1nfZPZVl6yxNw1FhA3OUEaCqiL5fQRqg9sOQ2SnUrS6BnbDLs6sJ+w08ziEeYgly2/XJ6GT0qFea+oTH8cU5ixlG/m3sCYNbEvejbuPk73EcehkORWulX1yRWVyeAsGiHbdUhBUverzgna7jJJ70f94NbHn/9yQUnPazy3Wf5OwBqHq7bY0ukHBqAlBPkf2QqX5oXcxxlL7Yp+PFeVCVMHXd6rC16ll8i4KNJRCqdZ5ST7iSArUL8fSNpWHahzjC/oqI7EVK5YscG3bUmfRVW6TC1JmIZqvfQpkiq0HqrIdw2en44+dPb8dHH85Pzz5dnR29SEepf/BhmYjxNejNOIZuza0pdhNdrp8i/3v7ra+7xwefNQqkJiaGZVj2Ar2mZpzjCc9XTbkNjd4kvc6u+XJZgMPPVnUd3f7Sol3w/PpmLcug41I6+r/uoz2Z+7PLvuX2nH27ufdoIv1N0IuwOaiWrnjC73CxbjJ2N13CK4QSbQgwDp7GMI4m5GJtvNfp65LBYiwENv6JuVsvAKTI1W548efVhATWtxlrU5KthTl1PGEeAzZheYJuw70lV6BnLcxCszT4pM+/bfWHZQ== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Complete job

+ Complete a job with the given payload, which allows completing the associated service task. -## Request - -

Path Parameters

Body

    variables objectnullable
    - -The variables to complete the job with. - -
- -The job was completed successfully. - -
- -The job with the given key cannot be completed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx index bc4353d7eaa..632614213c8 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx @@ -5,59 +5,253 @@ description: "Completes a user task with the given key." sidebar_label: "Complete user task" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zYQ/isYnJKpTCqpkzq6qYrTus3DI8vtwfYBJEEJCQmwAChZw+F/7y5AihJpTdxOjnLGDkEs9vl9ALgVtWxp6OSO3hquiWXmG30Y0YSbWIvCCiXphM5UXmTcckMYKVsxshF2ReyKk6VYc0m+8W1AR7RgmuUgq1FpRSUMQAOuWsCiP/kWZAQqLZhdwbPm/5RC84ROrC553/IC1INiolJnqTNuFYkbr9CqiVc8Z3RSUbst0KCQli+5hqlU6ZxZ/+rtOa3rB2+UG/urSra4pvMhZZkBJ2IFy6XFOVYUmYgZ+hN+NehUNbSmoq88thi9VgXXVnCDs2umBYsyP2BJIlALy673hI4FvVu6H2kvB1gADL7vhCyzDNd67fWIsthrrnqGpiQujVU58QJgNCvRCLOgO8tIxGEm5sYI0EZSDZKddQ5Ft4ZobsrMCrn083YlDOEyKRSkmwi5Vj53AblKiVSWQIbWIuHJiIjGSsJTBiow0HvahnpPg3vZxWasBhPD2CA4KywOHX4RYg1YwebcVxlKjnLgaKGk8cV4PT4fpmNxmF1mdolPiCldIlIwDzAHdefj8Xc1DAhCYiYxCZDYneqAfFKaQxYsExkwDJ7bHEH+3PrWdRIBYH1ejiAUVkJy8p+GSO1X/tpLNnaJBw+BmL1g5K3fzT/MyLvzN788vFhZW5hJGG42m0Cn8RkHOCsdKL0MYYi/KPcyIJAEiCFnW4efHepJxw1iCh6LVMRYcwywcZtgtQ/qfoRYfrYaoGPH9VIL2qfVlNzOrwjkVVqRbhGxA9NujUMjyLNIlXYSZUx+ox3Ohkb7VkyZ50zv9qxDA6DIWGZL89296ufXA90Ir98Xi2viVQCGEqCl0p51jSEMIhdS5GVOJ4BSGLFHP3o7HteoEyv+jEgk4Y8FhO+g1Q8HwJF3uHWBCQl+yfhHVUZpsRR9u2Boj/MNiN/7iDzPz59B7SExke3IzFSVMglOBDsR7ESwowR79z8IBvlrTrONVuAAZhhOwVJrcArO1NMpeCLpiaQ/jKRvnrqeQiyYZY045FpDylTsGJiQzUpkTr277je2m8+kE9dOXDtx7RjXYDLndqUS7Gko46CDrY0JDfFAPMMD0YTVXgekDuPdNyr2Lrhet+2SUkOaaOVJVAP2qxWorCdVobStwzVW6KCrgNOebC2IMvjizlbekWExcQJ7Mm2QM5bDhZeRCzK/vFmQ3+BQ3jD/hYsmD1VfjC/GT2pF0SMap9dXxEfoobi3PbRqkedPqvXCz1HsujqGw2Ym7PYGl/n0RBxuEnpaYj12EGnsOe049kLwxj98aIHzx98LV3vc2uZdx+jykWH1+g2evT5LC0KH0FQ50w1+hkFgRaH8fuE4eDXEKgSKlAPQwFq37wJe3RWL7SUlzkpjMRkjCpszh4sS2m36b63YRz9D/vIWyasAC+pR1263S9BcRgGYC2O/bPd/lKkozJmQYWPChLPpp9vP76dnH69ml59vLs9AY2AfrUsc0iFnct+PtpO1uyv2w626g+Y/9R2b2lr+aEPYQoTE7LvAqoaPd7TjIyyYHPYk9ygJUPK0uqNVFTHDb3VW1/gaMKC38P6hY6GjbSIMPncNxKMhvZg3vcaX5Lm9zScja14yuXU7QlbiCB5BYa/dWj+A+IqzBCCOvnqJmffobIF6Og2Dbmc9aldM45gX9ojswS0AubjbEq+/3CyQWk2rNYcDBN5qtsHeL/yd0Hv4BwPlsuVY695XFA6CZcmWKO/14s+/xBTa1w== +api: eJztWE1z2zYQ/Ss7OCVTmlRSJ3V4Ux2ndZukHltuD44PILiSEIMAA4CSNRz+984C1Lc1cTs5yjMai8Ri3368B1LbMs8njuV37NahBc/dA7tPWIlOWFl7aTTL2bmpaoUeHXBolmYwl34KfoowkTPU8ICLlCWs5pZX6NGS05ZpXiHLGe0acffwJy5YwiQ5rbmfsoRZ/NZIiyXLvW1wF3k0RXIMZhyQ1uDegOijIlQnplhxlrfML2oClNrjBC1L2NjYivt46+0p67r7CIrO/2rKBe1ZxzDmymHChNEetac1XtdKCk7xZF8dBdXuo5niKwpP2VtTo/USHa3OuJW8UPGCl6UkL1xdbRgdSnq1dTPTnRpQAyj53SB0oxTtjd67hHERPbc7QEMQjfOmgmgAM64aAuEe5lIpKBC4EOicLBTC2JpqAx1nqL0Di65RXupJXPdT6QB1WRupPUg9M7F2KVyOQRsPtTUzWWKZgOxRShzzRnlK9AtbpvqFpV/0OjfnrdST/dy6hHnp6TLwlyjWk1UafR27zLqO7Cy62mgXm/F6cLpfjtF2dblbFb4E14RCjBulFinrEnY6GHzXw55AQHBNRShw7TqFT8YilOi5VA64xVWNQOqwfxk6FKZcxLocYGhtTaGw+mmfqbudv4qWPS5E8gB3EA2LiH53/eEc3p2++eX+xdT72uVZNp/PUzsWJ1hKb2xq7CSzY0EfsnuZwmiKFqHii8CfFethrQ1wNQo5loJ6Tgn2YQN1e6vvB4QVV9s9dqy03ljJdmU1hNvrS5Alai/HC2LsHnTYE9jIcsYL0/i8UFw/sDXP9kF3UVxTVdyuzqxtgC5hznPfuO+eVT+/3vNN9Pp9NLqC6AKEKRHGxkbV9UCURCW1rJqK5aeDQcIq/hiv3g4GHfmkjj8jEw34WCuuA7V205EaqjVvQ2JSO8+1+FGdMVZO5C5uyjY135P4fcwo6vz0GdLeFyapnZQ5No0u06PAjgI7CuygwN79D4FJt3yaza3Rk1BhBNFYi9qrxfEpeBTpUaQ/TqRvnno9HWqgKlviIVprLBgRFFjCfCpVcB9e93vs/mfSUWtHrR21dkhrXcIq9FNT0kzDuEAdGm3kLKMH4gk9EF3WbkxAukysfqPS7ALtbDkuaaxiOWujiLo8y9qpcb7L29pY32Uz6tDWVIGWo9iWJFJGcDWNgew3kxZoJrNM8pxXjS45nMH1xc0IfuMe5zz+wiXIbddng7PBk17J9IDH4dUlxAwjFTeOh6Vb0vmTbqPxcxyHqY5D0VjpFze0LZanQG7RDhvqx4oiPV7wTtfRiCX9lw9L4vzxzyj0no626/XE6OKRU/d2Bzwbc5YlCQNDxyZA9/zZT4I6itbFjYP01T5Xry6D5ISpqkaHc1dP4isW3yiKUI3zVIyEKSlQuxBhP39bmn2MK/B3RIRXKTU0sm553E6knzZFKkyVibht9b9QpsgqLnXWQ7jsfPjp9vP74cnHy/OLzzcXJ6/SQeoffSgcyaHiejOO5SRr9a64m267ftD8p7lj31uPjz6rFZeaqh8Sa3s93rG1HlnC8u2Z5IYk75NeVnesbQvu8NaqrqPb3xq0C5bf3a9VGGRbSkff1wPEgym9uO5njS/hubPNJzPrb3K9CCeCauiKJewBFzvj1u6+S9gUeYk2xBotzmNEJyPys/awN+3skuWOoRBY+wO2W28BpMXVkXj1182IpNWPWitT0l7L5zT75fMYtQmVCooN91qmuJ40fEK20Sf9/Qtrj9nb sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Complete user task

+ Completes a user task with the given key. -## Request + -

Path Parameters

Body

    variables objectnullable
    + -The variables to complete the user task with. + -
- -The user task was completed successfully. - -
- -The user task with the given key cannot be completed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/correlate-a-message.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/correlate-a-message.api.mdx index 4f39e87aae3..a6cfc2303af 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/correlate-a-message.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/correlate-a-message.api.mdx @@ -5,57 +5,279 @@ description: "Publishes a message and correlates it to a subscription." sidebar_label: "Correlate a message" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/SsYnNqpLCqJk7q6KbLTKo0djS23B9sHkIREJCTAAqBllcP/3l2CFClRktWZXjojZxyZxGI/3r63FJFTyxaGDh/oNTeGLTh96tGQm0CL1Aol6ZBOMz8WJuKGMJI4I8JkSAKlNY+ZhQVhiVWwbDJ/vbP/KCfztRHcIMKAQRCAi3kW456liGOiuc20JDbiZC60sSTVCm2IkMYyGXDyna/K5Tr4OnAIHmwEgWiPav5Xxo39qMIVHeblpdA8pEOrM96jgZKWS4tLLE1jEZQped8MlphTE0Q8YfiXXaUcilb+Nx5Y8AvZpFxbwQ2uSpZw/NxEaNZKDi0IMyTkcyEhQ+FK+zi9vqkrK/Ot4hirhVzQAjNcI/U7X+0O0kYTUVHzNjAdr9jJOctiKJtiiGemBfNjV8r+EtZmWMfnu683JFRBliB8PcrCUOAeFk9byDiQt7GTWRyjI7cOCUALmLSTsBsfy3CrZK40WUYiiDaaDuRJKyKGOwrdCoWxhMXLmtfjBrpbRxVaFGinuUmVNA6Ut4PBYWwgjRb9gPRKcgIJJ0rzDnMN/RfE2x+z1elW7Gq1h01achASfL4iImEf5U7xHCZ9FWkvKw/m13gXAMSCa7gBHU6Ydbc+nNODxJg1xJhcHhOmUVSFwaSC4Jj894B3YPocU98rbHT8q+h4vo+BkNSzCCFqyCxDHkplQaqxCPezDPaAJpKfXmPbiEydJYwty0RMHBPcHEND302yh9tPY/LL+fufn36IrE3N0POWy2Vfz4MzDmNB6b7SCw8u8RftfuwTyB2kkbAV8WEwrqcHaThGTMoDMRcB6sm6UstkENhjCOpW885QWPch04JuP9ZG5P52QgBRacV8BRu6oTcGKPNVZod+zOR32jS0G3Q7ismShOk1wzYDgCOgmM1aZezh0bu3Hd/Iit9msylxLoCZIS+np41wWrpAWEQipEiyhA6BXHDFXtzVh8GgQJ/Y8SMqkYS/pFC+e/xslQPkKEeg81YWVqvnP+qM0mIhtuP2N8RVkfjSVVTr6V2X7/eSZTYCj3/zk3pO6jmpZ796zrt8v1H4JS2TJ+mcpHOSzj7pvN/1RW4CEGskoeH6mWvCtVb6JKOTjE4y2ikjWEw4fFODF0OaKlNSh8FL15B61fuY8VqHIrDshIUnWjkkB7jQ3KmmALLnEfgohnmqtC28Z2zJxpkILjt11ayJVcDiyEXudg8XygOfqqoxS+CxyMgFub26m5Ff4S1xyVYlmhhy0/XF4GKw0yua7vE4mk6q0eG415oHtVsU9k63zvgYx0XxhEAG0Fy7usNtDh6fM831KMMGrDlRxSu947Uzgjvuj081Uz7/OSubjbPstjmsu3phSeqU6A7XGpJtn4g1K+2mbZwetN7+hZyrMs2KXN2C0RFQxSE06L/pEhlAQT0GKoG95VAGMuNbP2EtAIM4MxaB61GY3Bzf5ZtqarMvboX84SKSN31svmNoPYsX4Dnz+xDOC9y29acfK99LmJBeFcJ449H1/c3l6OzLZHx1c3d1Bh779sWWIKNWEibbedTHFs0p7na9efMY+p8c+lYUtPzFejDahMTGl5jm1Zx4qE+vzCah8Jjbqf2B5rnPDL/XcVHgbaCmBrY9PDU8wyvwHHEWArVxtHwvCTl2eJ3NMA80jzPMp3PQV/TqHSOAIrUHbZ9aM2/69W6GUqpOtRN4QsBdzZZ44g3/D+kj/IMLVcJfqrS8n1OY9IsMuzykzi/+/AMz9VEJ +api: eJztWFFv2zYQ/isEnzZMsdw27Tq9uWm6uWtTI3G2hzQPlHS22FKkSh7juIb++3CibMl2nGbAXgY4QGBLPN7xvvu+k3UrjmLueHLDP4JzYg78NuI5uMzKCqXRPOETnyrpCnBMsDIYMaFzlhlrQQkExyQyNEww59PNzsFnPZ5tjKTRTDrmfJaBczOvaM9CKsUsoLeaYQFsJq1DVllDNkxqh0JnwL7CslleB98EztlCYjH4rHnELXzz4PCNyZc8WTWX0kLOE7QeIp4ZjaCRlkRVKZk1R4q/OEpxxV1WQCnoGy4r4Ak36RfIkEe8sqYCixIcrWpRAn1uIzTtHY4smHAsh5nUkDMZUnsz+Xixzqw5bxvHoZV6zms64QapP2H5cJA+moSKmfWB2fNKlZwJr5AnnELcCStFqkIqh1PYmFEe768+XbDcZL4k+CIu8lzSHqEmPWQCyLvYaa8UOQrrdcQRtNA4zvfjUxphlc2MZYtCZsVW0aVjVUvE/IFEd0JRLIl0ueb1WQfdZaAKr2uys+Aqo10A5flw+Dg20vXph4YZDcxYVhoLe8x1/F8Q73DMXqV7sdvViIq0AKXo8wcikvhZPyiex0nfRjrIykfP13mXGmEOlkd8ZmwpMNx6dcofJca0I8b47VPCdIpqMRi3EDzl/AfAe6T7PCW/H7Ax8K+l4+khBlbW3MkccpYLFMRDbZDdCSXzwyyrrEkVlL/8iG0jNgmWLAcUUrHAhNDHyDANnezm8t0Z++305a+3PxWIlUvieLFYDOwsO4FcorEDY+exnWX0T3Y/D9i0AAusFEuWAuu6B+s4xlwFmZzJjPSEIdXmMATsUwgaVld7TWFTB28l332sjdj15ZjJHDTK2VLq+X7orQYqUuMxSZXQX3lX0P2gu1GcL0thNwzbDlBH3KFA30vjAI9ePN/zTaz4YzqdsOCCZSaHpntiQd0yBKIkSqll6UuenA6HES/Ffbh6NRzW5JMq/oRMNIP7SgkdHj876UgdWmDw1iS2Vs9/VBlj5Vzuxh1siasl8duQ0VpPL/b5fq2Fx8JY+R2O6jmq56iew+o53ef7haEfaV4fpXOUzlE6h6Tz8qEfcmONYImEDuwdWAbWGnuU0VFGRxk9KKM64iVgYXKe8Mq4hjoCC57wuH0fc3FvKMIjHoRFE60V91bxhK+CauokjleFcVgnq8pYrOM7KsnWTISWg7rWrFEmE6oIkferRwvNwKfN6kyUXueCvWaX51dT9rtAWIhlgyaF3Hb9evh6+KBXMj3gcTQZt60jcK/XD9ZuSdgPug3GT3Fc17cEZOatxOUVbQvwpCAs2JGnAmw40cZrvNN1MOJR++Xdminv/542xaZedtkN687vRVkFJYbhWkey3YlYt9Iv2tb0oPf2L/XMNMdsybWfMDkC6wJCw8GzfSJPxo0eM1OWXjdNWc+bt34megBmyjsk4CKuZAb0Lt9lszb7EFbYXyEiezag4geGrnvxXGLh00FmyjgL2zafqTJpXAqp4zaEi89GH68v3o5OPozPzi+uzk+eDYYDvMcGZNJKKXT/HOuxRTfF3c131T2G/idD35aCCPcYV0pITYVvMF21feJmPb1y24SiMXdQ+w1frVLh4Nqquqbb3zzYJU9ubjue0VUd8QJEDrZpLV8bQp4FvE6mdA4yV57Oszfoq6P1jlGWQYWP2t72et7k09WUpNROtUuT0x4rFjTxFgua60bcNNA3Cm3urbgSeu6pwgkPPunvHwLGUA0= sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Correlate a message

+ - + Publishes a message and correlates it to a subscription. If correlation is successful it will return the first process instance key the message correlated with. -## Request + -

Body

required
    variables objectnullable
    + -The message variables as JSON document + -
- -The message is correlated to one or more process instances - -
Schema
- -The provided data is not valid - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Unauthorized - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Internal server error - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-document-link-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-document-link-alpha.api.mdx index 55b0a9f7c1f..6ce050ce7dc 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-document-link-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-document-link-alpha.api.mdx @@ -5,48 +5,153 @@ description: "Create a link to a document in the Camunda 8 cluster." sidebar_label: "Create document link (alpha)" hide_title: true hide_table_of_contents: true -api: eJzdV1tv2zYU/iuEnhLMlmw3XTO9eU66ZWi7wHE2YHEeKImy2EqkSlJxDEH/feeQki+Rk2ZDsYfFiC2Sh+f6nYtqz9CV9sI770LGVcGE0d79wEuYjhUvDZfCC72ZYtQwQknOxRdiJDwlLTXhgpiMkRktKpFQck7ivNKGKX8pliIMQyENW4pFxjVhIiklxzuaUEFoXmaUpMC6UswnV4bElVLAM98QKeBLV2UplbHEXAwLVki12UnWRio2WIp1xuMMeYIoUjAKR6lUpFQyqWK0gFSa+VaZpfAGXkkVLRioiGbXnoAF2NixvUqAhKPVJTUZPCv2teKKJV5oVMWeumYBtl9dEJlaL2x1Ax+hr3y4r+OMFdQLa89sSpSkjeJi5TXNYCvcmrKT/LVianMgOqW5fq1sy6zT4PAoVbJ4Wad7J5Vp87NMNkjRUyKWwgAzPKNlmfOYoj7BZ41K1X3eMvrMYoOOV7JkynCm8ZQ9lsBWT01fjYEHASyowbAA8IaGg5eOWZ9YWIqEIAVZZ8yB0Rre8kdzRZXnNMqZCyE43jPc4HIL+g9wY+7sBicgBVwtpdBO18lojD9HFOg8a0WuqSaxzZUEwBvHTOsURG9Qh+/ktUrlx/zV16xL1f34+x4Y9p/5/Tk/tw4+G41e41PrT0zilPKcJT75iOhOmIElVAZ4Bgc98ARc3paiLnIkAgT7NuWfcT7cBFQUP/SDcKjVlFw7ylYuccEhEG5HGDnpd/P3M/LT2dt39yeZMaUOg2C9XvsqjYcs4ZCWvlSrAJb4j3SnPgGLwYaCbkgELk2ADGTSnOzCTnTJYp7yuAtnqzbB4Dn7XsaMO30h2JXivTBPye38ioBfheHpBi70Rds7Ka1y5EEjWZkwyikGeBv4byF1CnlSFBTKelvFDgUAI22gP+yZARXSsBVT+/rD1pvJUaD+ulhcE8eCxDJhtjMYbEatIDSi4IIXVeGFAElY0Ue3+nE0apAnRvwVlghEPpjv0PrEHABHscOtNYwL0EvE3ysyUvEVfyr3MAlbEF84ixqXhtAJM5lgu5PaQge7XugFXRYG9a4zNgGmpMYGwtRD10BtSfJqlzwNYL7OgFUT1ti8m+ABI/NAFccKbAOJxy7JOvDkMqZ55hToBxEPsFF2xu1mjfnlzYL8AsVoTTfWqSjykPX56Hx0lCuSPsNxen1FnIUOgntloWOL+X2UrSN+DWPbbDWDoYebzQ1ec+6JGFQ1Na0wDltotPIsd1w7IthxD+87wPz258LGHEvafNfILx9pUbqE3Kv/0NcmZ8PxaDiaLCaTcDQOJ2P/zdt3fzl8ptIq0KKnbwrGFUDgbB/54z5SwVxMuFgWcNdWXUDrmpsMJsj+xAj3oTQzKN0otx2NOrIP7oT84SSSsY9hddjriu0KOFeRD+KC2F3b/ka5jIKCchG0InQwm368/XQxHX64ml1+urkcAkffPBrrPkyGgop9PdwMfNicTuwMe/rU8HrXcP5ns3OLRsMeTQDFDqbVZtDNJK5y3G0naSAPD6ZqVzwA9K4A3Hl1HVHNblXeNLjtxl4sKQnXWC2eGXz33fvvZ+Cjpnxhm4Nx/IHmFVJ5mKtdEfuHKp7M2wn6lHz7beGoVu0mFZt9lTpt93zc3AN1xmgCpQGVdAQzp8pwgWx2DHpjKL6QuBtTmF1L8yLt/V7ruP79ZoGlqH1jKKDRwq6ia3yHge/QW8IHFtK6x1Y5u1970DBXFV0hveOLf38D940Glw== +api: eJztV99T4zYQ/lc0eoKpYwfKFc5vKXBtOndXBnLtTCEPG3sT686SfJJM8GT8v3dWsklCAkc7N30qMxAcrXa/3W9/ecUdLCxPb/mFzmqJylk+jXiONjOickIrnvJzg+CQASuF+sKcZsDyTpoJxVyB7BxkrXJgZywra+vQxHfqTqVpqrTDOzUphGWo8koLumMZKHYLZVUAmyO42uD0IMm0rLQiCAmCKZsBZBlam3i58HfQSdtY5ocxGzuW1cagcmXDtCobZuuq0sZ5A0INJEptmjVa67TB6E4tC5EVhENpxySCcmyuDauMzuuMvGa1xdg7cKd4xCswINGhoVCtuAKJPOW92nHOIy4oUhW4gkfc4NdaGMx56kyNT8M5KZCNL5ie+8g9YnPaxzfmEbdZgRJ4uuKuqciSdUaoBW/b6NG4d2Vt+WuNptkyPYfSvta2V9Yj2D6aGy1fxjQNVtG6n3XekMQOiEwrh8rRGVRVKTIgPMlnS6BWu7r17DNmjgJvdIXGCbR0ig+VMGhHbhdGxOfaSHBECzgcOCGR7/M+96msckYSbFlgSGDveKef3FV1WcKsxEBh20bcCUePj4XyXqgv18Fv3rYkYdBWWtmA9Xh4RB97APSR9SaXYFnm6ytntvYJP6/LsiEM3ylqtSn3xWsXWV/em/zHvI3+u7g/F+cuwCfD4Wti6uNJRTwHUWIesw+U3Tk6EKVlYJAK/V7kmPftq2eOzXTexL7knwl+ZfSsRPnDLgnbqEbsKkh2dlkgh4FlQXAWrN9evztnb0/enE4PCucqmybJcrmMzTwbYC6cNrE2i8TMM/olucOYTQo0yCQ0bIYM8lyQTSjZmnZmK8zEXGQ9nR1sRuQF/17OmXD6Atm1ETs0j9in6zETOSon5o1Qi13T/s4c6pJ0wEzXLp2VQAQ/Ev+tTB0xW0sJpum72LaBNuLWgas33OBCOVyg2cQvlPvxeG+i/jqZXLGggmU6Rz8ZHA2wzhA5IYUSspY8PRkOIy7hITz9NBy2pJMYf4UnijK/BBWy9Yk7QjG5zlvvmFDWgcq+FzPaiIV4ane7CLskvggetaEMJbpC5zTutPWpQ1Mv5UlfhclqPRnbhErS0gBBc98PUN+S+CoUT5smyarQ1rXpioZ3m9wTM/dgBHVgTyQdhyLrk6fUGZRFALBLIh3QoOydW+8n15c3E/YLOFxC44NKJrdVnw3Phnu1kugzGkdXYxY8DCm40RZ6tVTfe9UG4dco9sPWYlYb4ZobuhbCM0MwaEY18fCYGp09r52egxCPun/e9Qnz258Tzzm1tOv1IL98AFmFgtzo//x4eHwyGJ4Ojt9Ojt6kb47S47N4eHr0V8jPufYAuuzZdYV4RWOD78P4aDdTr8a+4DItZa1811ULthSuYLBny+QRL0WGynqc3WrUi70PJ+yPYJEdxURryL2+2S6EK+pZnGmZZOHa4+es1LNEglBJZ8Im56MPnz5ejAbvx+eXH28uB0fxMHYPzoePikGC2sQR9ubt4XTgF9nDp46v1gPn/327z2CHDy6pShCKsqvbY0K3uX3cvnnE061NPDScadQ1jVu+Ws3A4idTti19HVZlakO5sNRhnlmWNyn593vzXle+YLO1wt9DWZMUp/ruG98/hHhw3W3dh+zbbxh7UXVfgmo2IfVoN2LcTtuIFwg5Gg8yCJwHKIMJqVkr2Fld6SUm3BhlGVbuRdnpxri5+v1mQu2re8uQOqc7Bpb03gPLAFb70Piu6L9b8RLUooYFyQad9PM3iPIsbQ== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Create document link (alpha)

+ Create a link to a document in the Camunda 8 cluster. :::note -This endpoint is an alpha feature. It currently only supports an in-memory document store, +This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md). It currently only supports an in-memory document store, which is not meant for production use. ::: -## Request + -

Path Parameters

Query Parameters

Body

+ -The document link was created successfully. + -
Schema
- -The document link creation failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx index fb9494e3a00..f2de4e8ae8f 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx @@ -5,29 +5,32 @@ description: "Creates and starts an instance of the specified process." sidebar_label: "Create process instance" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Create process instance

+ - + Creates and starts an instance of the specified process. The process definition to use to create the instance can be specified either using its unique key @@ -36,44 +39,285 @@ The process definition to use to create the instance can be specified either usi Waits for the completion of the process instance before returning a result when awaitCompletion is enabled. -## Request + -

Body

required
    oneOf
    variables object
    + -JSON object that will instantiate the variables for the root variable scope -of the process instance. +0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + startInstructions: { + description: + "List of start instructions. By default, the process instance will start at\nthe start event. If provided, the process instance will apply start instructions\nafter it has been created.\n", + type: "array", + items: { + type: "object", + properties: { + elementId: { + description: + 'Future extensions might include:\n - different types of start instructions\n - ability to set local variables for different flow scopes\n\nFor now, however, the start instruction is implicitly a "startBeforeElement" instruction\n', + type: "string", + }, + }, + title: "ProcessInstanceCreationStartInstruction", + }, + }, + awaitCompletion: { + description: + "Wait for the process instance to complete. If the process instance completion does\nnot occur within the requestTimeout, the request will be closed. Disabled by default.\n", + type: "boolean", + default: false, + }, + fetchVariables: { + description: + "List of variables names to be included in the response.\nIf empty, all visible variables in the root scope will be returned.\n", + type: "array", + items: { type: "string" }, + }, + requestTimeout: { + description: + "Timeout (in ms) the request waits for the process to complete. By default or\nwhen set to 0, the generic request timeout configured in the cluster is applied.\n", + type: "integer", + format: "int64", + }, + }, + title: "CreateProcessInstanceRequestBase", + }, + ], + properties: { + processDefinitionKey: { + description: + "The unique key identifying the process definition, e.g. returned for a process in the\ndeploy resources endpoint. Cannot be used together with processDefinitionId.\n", + type: "integer", + format: "int64", + }, + }, + title: "CreateProcessInstanceRequestByKey", + }, + { + type: "object", + allOf: [ + { + type: "object", + properties: { + variables: { + description: + "JSON object that will instantiate the variables for the root variable scope\nof the process instance.\n", + type: "object", + additionalProperties: true, + }, + tenantId: { + description: "The tenant ID of the process definition.", + type: "string", + }, + operationReference: { + description: + "A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be >0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + startInstructions: { + description: + "List of start instructions. By default, the process instance will start at\nthe start event. If provided, the process instance will apply start instructions\nafter it has been created.\n", + type: "array", + items: { + type: "object", + properties: { + elementId: { + description: + 'Future extensions might include:\n - different types of start instructions\n - ability to set local variables for different flow scopes\n\nFor now, however, the start instruction is implicitly a "startBeforeElement" instruction\n', + type: "string", + }, + }, + title: "ProcessInstanceCreationStartInstruction", + }, + }, + awaitCompletion: { + description: + "Wait for the process instance to complete. If the process instance completion does\nnot occur within the requestTimeout, the request will be closed. Disabled by default.\n", + type: "boolean", + default: false, + }, + fetchVariables: { + description: + "List of variables names to be included in the response.\nIf empty, all visible variables in the root scope will be returned.\n", + type: "array", + items: { type: "string" }, + }, + requestTimeout: { + description: + "Timeout (in ms) the request waits for the process to complete. By default or\nwhen set to 0, the generic request timeout configured in the cluster is applied.\n", + type: "integer", + format: "int64", + }, + }, + title: "CreateProcessInstanceRequestBase", + }, + ], + properties: { + processDefinitionId: { + description: + "The BPMN process ID of the process definition to start an instance of.\nCannot be used together with processDefinitionKey.\n", + type: "string", + }, + processDefinitionVersion: { + description: + "The version of the process. Only considered when a processDefinitionId is provided.\nBy default, the latest version of the process is used.\n", + type: "integer", + format: "int32", + default: -1, + }, + }, + title: "CreateProcessInstanceRequestById", + }, + ], + title: "CreateProcessInstanceRequest", + }, + examples: { + "By process definition key": { + summary: "Create a process instance by processDefinitionKey.", + value: { processDefinitionKey: 12345, variables: {} }, + }, + "By process definition ID": { + summary: + "Create a process instance by processDefinitionId and version.", + value: { + processDefinitionId: "1234-5678", + version: 1, + variables: {}, + }, + }, + }, + }, + }, + }} +> -
    = 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be >0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
    startInstructions object[]
    - -List of start instructions. By default, the process instance will start at -the start event. If provided, the process instance will apply start instructions -after it has been created. - -
  • Array [
  • ]
  • variables object
    - -JSON object that will instantiate the variables for the root variable scope -of the process instance. - -
    = 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be >0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
    startInstructions object[]
    - -List of start instructions. By default, the process instance will start at -the start event. If provided, the process instance will apply start instructions -after it has been created. - -
  • Array [
  • ]
- -The process instance was created. - -
Schema
    variables object
    - -All the variables visible in the root scope. - -
- -The provided data is not valid. - -
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-document-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-document-alpha.api.mdx index 841c0c56569..f55e820ae85 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-document-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-document-alpha.api.mdx @@ -5,52 +5,154 @@ description: "Delete a document from the Camunda 8 cluster." sidebar_label: "Delete document (alpha)" hide_title: true hide_table_of_contents: true -api: eJztV0tv4zYQ/isETwnqSN5ttk11M2Jv62K7CBKnPSQ50NLY4q5EakkqjiHov3eGlPyK06ZoT0UOiSVx+H3z5rDhTiwtT+74WKd1CcpZ/jDgGdjUyMpJrXjCx1CAAyZY1smwhdElczmwS1HWKhPsgqVFbR2Y6F7dqyRJlHZwr2a5tAxUVmmJu/BZKCaKKhdsAcLVBiI2dSytjUHUYs20wn+2riptnBeW6qyEUpv1lts6bWBwr1a5THPCRCpWgiC1tGGV0VmdkuasthB5Ze4VH/BKGFGiHYbMbbjCF7Sth51mKCLJ2kq4HJ8NfKulgYwnztRw6JIZ2j4dM73wXtjo5jTLvLMiRLBpDqXgScPduiIu64xUS962gw29N2bL/a0Gs94jX4jCvpbdg2112F+kkP21Vg/EayutLFhafz8c0s9z6g3mStiOK8OopSlYu6iLYh3xdsDPh+d/t1263Cu5lI+gyCICpHAuNGZV5MOWauVQmKBEVRUyFQQVY5jnBZTffbGE2+yYtU84YldBEhV1QhZMz79A6pjXnATnqLtU7O764yX76fzDjw8nuXOVTeJ4tVpFZpGeQSbRsZE2yxhf6Y/kTiOGxqC/S7Fmc6yODMWQUxSUghUYJ8EyW0EqFzKlqJClndqMfB/s66IQ1KI03WzexugwVgOOmV4KdAqvjeSH6TFit9dTJjN0m1ysccNzar9nIeqCMMRc1y6ZF0J9pcA56YqjpIcsti5LgaXZ5eE+AQJZhzW+YwbmuIMlmF398dP3759hU5r8MptdsQDBUp2Br25HDaUjIiNKqWRZlzw5Hw7xTTyFtx+Gw5YwKeKvsEQxeKrQfJ9ah+ZgcpRUVwHNGyYV6qXS/yoy2silPOSNqE/0seBdEo+DRW1Lax+O1eeIeiY2OcpDMAZdplPfXzOGDbPw8FSnPTd1GrDurdbeau2t1l6qNVzEySHXGQ0M/rzz8wTOCQmP++PMxs12mGjppAXz2E8btUHf8CZUTosJ3+TaujZpaNJp40cKy6MwUiCzjyIthwrrM6fQqSj852MRpAWaKXrLtoPZ9eRmxn4WDlYiHMxEuQ99MbwYHkUl0RcQR1dTFiwM+bfTE3pYKu6jsEH4NcB+KrGAHUy69Q1tC+6ZgzBgRjWFYJMXHZ9Hp/cghF/Cw8c+W379Y+YDLtVC++1d4J8rQlHBEAbNh9G750mGylKtpLrEvb5hYqL5wUYcGY5xP3ZVwAmLeLsZsBf7FFbY74GRvYsoKCFz+j65ROR6HiFdnIZtm995oedxKaSKOwobX45+u/08Hp19ml5OPt9MzhAxck/OG19hwpRC7ejRjfmb8ezET+qnhzY322Pif3Iz6NLHwZOLsTXhJN52fm+6Kr/b3BMsyic7lwZMz1Cqd7xp5sLCrSnalj6HWZ6KP5OW6vqFaX7Xn/9msD9qxVdY790yHkVRkxSnuuobzj9U8uS6u52cstdcg47q1X0Uar2rVK/vjn/bB5TOQWRYyKRmEBjhXaNyO1tfHFfIzk3vHk8+TWYTTP8/AQwvKiQ= +api: eJztV01z2zYQ/SsYnOwpTcqp07q8aWynVSfNeBylPdg+QOBSRIIPBlha5mj43zsLkpIsy6077a052JKIxb59eLvLxZqjWAae3/JLJxsDFgO/T3gBQXpVo3KW5/wSNCAwwYrBhpXeGYYVsAthGlsIds6kbgKCT+/snc3z3DqEOzuvVGBgi9opi0wFJiy7FbquBCtBYOPh/iiTztTOEnQGwuv2REgJIWTRrv9/MliH1BTHKZshk433YFG3zFndstDUtfMYAZQ9MWCcb7fxBnQekju7qpSsKA7rkBkQRMV5VntXNJLYsiZAGgncWZ7wWnhhAMHTEa25FQZ4zke3s4InXNEJ1QIrnnAPXxvloeA5+gb2j3FeAZtdMlfGk9vEho4V8YBTnvAgKzCC52uObU1YAb2yS951yQY+ktlif23At0/AS6HDa9Gjs20MTxdJ5r+O6p5wQ+1sgEDrbyYT+ngOvfG5EmHAKlhootJlo3Wb8i7hZ5Ozv9uusIpBLtUDWGJEDknO0jW2SKNs0lkEi+RK1LVWUpCrrPZuocF89zmQ3/UOraeAU3bdW7ICUCjN3OIzSGQxcjJcQMGUZbc37y7YT2dvf7w/qhDrkGfZarVKfSlPoFDofOr8MvOlpD+yO07ZvAIPzIiWLYCJolCEKTSlYA0eFQQWapCqVJJUIaZD2IzOvuc3qNCHRWm62bzVaF+rhJfOG4E8541XfD89puzTzYypAiyqslV2+Rw67ilFo8mHWLgG84UW9gsJhwr1QdB9lNAYI3w75uFTgC7hAQU2OzS4sghL8LvxK4vfv3nmm9Lkl/n8mvUumHQFxOpGakIDEJEwyirTGJ6fTSYJN+Kx//XDZNKRT1L8FUwsg8daCxtTa5+OssxQXfXeIjFlAwor/ytlnFdLtY+bUp8YteBDEl/2jLqO1t4eqs8p9UwET3kI3jvPnIz9tWCrSunonup0xKZOAwG/1dq3WvtWay/VWpdwA1i5ggaG+L6L8wRWPOfZ+DoL2Xo7THT0pgX/ME4bjdc85+u+cro8y9aVC9jla5p0uuyBZHkQXomF7pORlvsKGzNHOyl0fHxIQVqgmWJkth3mbq4+ztnPAmEl+hczQT51fT45nxz0SqYveJxez1jPsM+/nZ4wuqXiPui2N36N4ziVBJCNV9h+pG398SxAePDThiTY5MWAF73T796IJ8OXd2O2/PrHPAqubOni9kH454GQKuBDH/kkPX2eZNezWCvSGdPY2DDtsh9sxIGBmidcKwk2xHQeZsDR7H2/wn7vEdlpSqL0mTP2yaXCqlmk0plM9ts2nwvtFpkRymYDRMgupr99+nA5PXk/u7j68PHq5DSdpPiIkXztAhphd+IYrgab8ewojuvH+5zX29fE//g2MaQcwiNmtRbKUhFErdZDZ7jd3C0CT3i+c9G4T4byvuXr9UIE+OR119Hjfv6nhlGoQL3ghRvArgb/5jJwkMUXaJ/cTB6EbsiKUy2OTeofBnl0M9xojtlrrk4H4xoeCtvuBjXGu3O+3X2X8ApEAT6G2RtMpYQad7a+OOIQz02/v7x6fzW/4l33J31MUOA= sidebar_class_name: "delete api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Delete document (alpha)

+ Delete a document from the Camunda 8 cluster. :::note -This endpoint is an alpha feature. It currently only supports an in-memory document store, +This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md). It currently only supports an in-memory document store, which is not meant for production use. ::: -## Request + -

Path Parameters

Query Parameters

+ -The document was deleted successfully. + -
- -The document with the given ID was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx index 2075c8028d7..a1195a85f4e 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx @@ -5,53 +5,209 @@ description: "Deletes a deployed resource." sidebar_label: "Delete resource" hide_title: true hide_table_of_contents: true -api: eJztWN1v2zYQ/1cIPrWYYzld2mV+GOAl6Zat7QLH2R6SAKWls81WIjWSimMI+t93R0qy5Q+kD3sZ5hRJRfI+eL/73UlkyZ2YWz6852OwujAx8MceT8DGRuZOasWH/BJScGCZYAnkqV5Bwkwt3H9Qk4W0LBaKTQElcqNjsBYlZ1JJMtDD51hafEKtvwtpIAPluhLasJk22cbcg2p9FVaqOXMLqN23zi0DleRaKtdntzk6ma28WLPOVrpgS6Eccxp1KQgmlRf53Mj8DqvPLBdGZLhqMBze4+2QcCm5wgGisKGBMpKAyYVb4HMdVsKHzhSwjd4E3X2FFdOz7ubaPW1h6Nby++HsCOzFlsBr5AnbjsYO0BiBjReQCT4suVvlFCxiCnMwuETiwoWpd2e8qh5DwGDdzzpZkc46/plILQIQa1RXjtZEnqcyFuQp+mIJkHLXm55+gdihM1WkqZim0CCJ4edgnARL0vTsLY1hBgYUchVnu2iPEIh60YccL7QFxDUwo7BAaAjHljJNCW3MtfO44NBArE1iKUVF6oh0M6MzlMfktL4xWx8L60j3JzZgckY5epIJJIE8LwHY4xkinxUZH55WFcpLR/HWRdYU4TggjHCTDG4o18oGFN4MBrthTzaZJW3NrKTPUfvskEKzcZYIJ0hLaceeRCpR72ASUQkTlH23m8ztRNwESdyLEzJlIclM0OZIcIqOsRrvx+8v2I9nb394fLVwLrfDKFoul30zi08gkU6bvjbzCIf0S3Kv+ww3b4BlYuV7TpJ4IouUrenCrO8HMqYycyFWvxlKTydRLfe6XAurLUOtM8iHzWwWRvLtUh+xu/E1Q0iVw17UdK2Oa68zE8gvlBdTXbjhNBXqK19TYdfpthdbZJkwbUvpOkBD1glX2BfL+fs3O7aJFr9OJjcsmGCxToA6RiiC2lF/k8TILhyJ5zB6NxhUZJMy/g2RKAbPOYYvQqfqhoPkyLSBmj8+MKlwX3Xd/wuZ0UbO5bZfdLRRljWJL0NEoRzPBmcvVyDV0kwX6lhLx1o61tLBWnq77+WEsRDKhngIxiBkOo4Lg58YbLmQKTSfRY3v+nvkWGnHSjtW2v5Kw0U80ix0QscWbT116PQy5FF7nIrKjTNOFflvSNoIpgbMU3McKgxixMtQQRUSv8RPbFcNy1wbV0VPlJ4nYSR9x/ts0nKotIZBqY5Fugi72M0kLdCZq4nwQmT4GhXsnI2vbifsF+FgKVYeWXLZNX0+OB/stUqiByyObq5ZiDDwcKM3NGapyPeaDcLfYtifnCxgH5NudUtqAZ4pCANmVFAyWn7U/rx1GgchnAkP7xvW/PbXxCee+tp4fSq7ehZZHqpy36Fp4Ek5095hTZndrVMeMekh1kH/dJeeGB5VWawz1PWtFim6lG6Bx8y1vTjF8xJB0OPYjwHPMeS3PlU3Yh/CCvszeGSnfUpj4FrTYedouZj20V0UB7X2/2mqp1EmpIpqFza6GH28+3Q5OvlwfXH16fbqBC323bPzcFEFZEJt7CMcv9ovuO1Yy/WL5X93HVJT0sGzi7DtSUVF4jNT1j3kvr0csSg/7N6UtG0E6R9awT0vy6mwcGfSqqJp5K1Z4fzjunP4VpNIS8/ri4WDOXk1ru8gXrP/wn3LXkjrSaFWvoOmBY3wES1tXT9Vjyi+AJFgSyCcgsRFQONkQnbWFnZuYKpeozGKY8jdAdnOJxP1rvb9cfPH7YRaUX39k+HbljYolnQXhn+H/AH/4UD7TPku5+dLjm/NeSHmJB/s0s8/ZB4kmw== +api: eJztWE1v3DYQ/SsDnhJUltapm6Y6FNg6Tus2SY31pj3YBsKVRismFKmQlNfCQv+9GFLSfhrJoZeiNrCwJA5nOG/eG4lcM8eXlqU3bIZWNyZDdhexHG1mRO2EVixlr1GiQwsccqylbjEH0xvHt2peCgsZV7BA4FAbnaG1kGMhlCAHEeSYCSu0AoNfGmGwQuV2LbSBQptq69mtGmM1VqgluBL78GNwC6jyWgvlYriuMRNF682GcWh1AyuuHDgNuU8ChPImHwebP7D9CDU3vEKHJr5VLGLjLeGyZopXyFK2NYNFTBAwNXcli1ifVs5SZxrcR29eInzGFnSxu7hxTXsYuo39cTh3DI5iS+AN9oTtzowDoFnEbFZixVm6Zq6tKVmhHC7RsIiROXfh0csz1nV3IWG07hedtzRnk3/BpcWIZVo5VI7GeF1LkXGKlHyyBMj6MJpefMLMsYipRkq+kDggWRtdo3ECLVnTtfc0wwINqgzp6S7aUzDDoE85K7VFBYvAjMYiocEdrISUhHbNjfO4SAkGM21ySyVqpCPSFUZX4Kg4Y+z4Vr1rrKO5P8MEREE1uhc55oE8XwMwYpVQomoqlp52XcSccJRvL7JBhLOAMOs6sjFoa61sQOHFZHKY9nybWcL2zMpj1kXs7LEJw8Ih547TLKUd3HMp8pg9WsTa6IXE6rvDYu4X4ipYQo6OCwmhyMBpcWS4wJzUeDN7cw4/nf3w492z0rnapkmyWq1iU2QnmAunTazNMjFFRj+yex7DvESDUPHW95w890TmEjZ0Aev7gchIZi7k6hdD5dkp1Mi9Xa6F0ZGh1hmhltvVbIxg+1KfwofZJYgclRNFO3StndB+TsEbST74QjcuXUiuPrMNFQ6D7kexTVVxM7aU3QBdxKzjrrFflfP3Lw58Ey1+m8+vILiATOdIHSOIoA8Ub5P4bDKJWMUfwt3LyaQjn1Txb8hEAT7UkiseOtVuOkJBpQ32/PGJCWUd73X/L1RGG7EU+3Fjti3LnsSvQ0ZBjmeTs68rkLRU6EY9aelJS09aelRLPxx7OU0VEMqGeIjGaAM6yxpjMIdVKSQOn0VD7P575ElpT0p7UtpxpXURq9CVOqdti7aeOrR7SVkybqeS9dYep0v8NyQtJGIWzf2wHWqMZClbBwV1aZKsS21dl65rbVyX3FN57rkR9B3vq0nDQWkDg6TOuCzDKg4rSQO05xoyPOdVo3IOr2B2cT2HX7nDFW89shRy1/WryavJUa9k+ojH6dUlhAwDD7d6w+CWRH7UbTD+Fsd+52Qxa4xw7TVNC/AskBs004aKMfKjj+e9030wYlF/8WZgze9/z33hqa/NNruyiwde1UGVxzZNE0/KQvuAPWUOl051RGNDrpP49JCeV5deZZmuqkb5VquWsBKuBL4FRSYbS3trFjEpMlTWr6vfVQ9mb8MI/BUiwmlMZQxcGzrsUriyWcSZrpIsTBv/L6ReJBUXKulD2OR8+u7D+9fTk7eX5xfvry9OTuNJ7B6ch4sUUHG1tY6w/Rq/4PZzXW9eLP+745Cekg4fXFJLLhSJxFdm3feQm/FwxLKIpbsnJWMbuYv6VnDD1usFt/jByK6jx18aNC1Lb+42ncO3mlxYut4cLDxak2ez/gziOfwXzluOQto/5Kr1HVQ2dMci9hnbveOn7q6LWIk8R+NxChbnAY2TOfnZeDg4gemiYcY0y7B2j9jufDJR7xrfH1d/Xs+pFfXHP5XO/fkYX9FZGF+FVWtfJd/h/LM1k1wtG74k2+CT/v4B5Kcjnw== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Delete resource

+ Deletes a deployed resource. This can be a process definition, decision requirements definition, or form definition deployed using the deploy resources endpoint. Specify the resource you want to delete in the `resourceKey` parameter. -## Request + -

Path Parameters

Body

    = 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
+ -The resource is deleted. + 0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + title: "DeleteResourceRequest", + }, + }, + }, + }} +> -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The resource is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/deploy-resources.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/deploy-resources.api.mdx index 4128d208bf6..5d3eb6b7c2c 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/deploy-resources.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/deploy-resources.api.mdx @@ -5,41 +5,288 @@ description: "Deploys one or more resources (e.g. processes, decision models, or sidebar_label: "Deploy resources" hide_title: true hide_table_of_contents: true -api: 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 +api: eJzVWVFz2zYM/is4Pq03RXa7ruu0Jy9uN29Nlkvc7SHNAyXBFhuJVEkqic+n/74DKduyLSdO6ma3h5wtEwQ+AB9AgZkzy6eGRZfsHI2qdILsKmApmkSL0golWcSGWOZqZkBJBKWhUBpBN9IGvsNwGkKpVYLGoAkgxUQYoSQUKsXcBLRnonRhXoSf5DgTBoQBLoFbVYgEEp7nAYgQQ0BhM9TA87yln2uE1CHAlFRJB2MCNsOCFsNPkgVM45cKjf1VpTMWzd2j0JiyyOoKA5YoaVFaWiqq3IqSa9sjUEcpt5x+NkmGhftmZyWyiKn4MyaWBazUqkRtBRqvuQHWEuVa8xnbDNs4Q4iF5HoGZASsgkQjt0jQG5cKlHblawgjS8EplTEizpG2ZPwGfchtxqXLAeEG8gBuhc0gFZMJalK0WpC8QEPPzlY3Ct7C4IMoLBZtv4zVQk5ZwEgxtyxiXhOr64BZlFzaUdolvx0IL03WvVGHa5Vkq0KndJW3y2Wk2VVd+zVTKml85F/1+/SxbaibOCFb4wAvy1wknLb1Phvauz8BVkH7E2ctcSEtTlG3oyWkffO6MxyVFF8qhGucgUhRWjGZCTndIEbI6qBlrotxmxnbgbmpziFOhBQexqO37JvpuCzkoh3AaBgAN8RJgymkFe1qeRiAVVN0Re+oTP7foHbdw7UM4J9kE6smTgJdNwEOpsRETESyNJYusRKd62Dbh7+97gez9sOrTte4MWIqMV1abLCGnca+gh5LQ9c4C+A2E0kGPLGGYsmhOyCWOmsDwgFaVMIpL3C/1C12uPYBE62KxnZbN9wuE+rMPKkPjIZNC1+19hV0Uipsjsujh6hy5pd9SfgD5jF03t6zL+K0kKsj7Vn4vLDWsPjmQKRdOtFm7XZcDkHbpanH8nfDdbk3dYcnp561S1p5Rfem66D8XUJvh/Xcn2eufT+GcG39TSh1SxVMNS+JXtyux829PdALgJrc77mPbxfMA7Wtr8bvIHa2gmEjvMuD/bvBU9PT7dQDzeGX3c3BLLrDjtp4xuaw5lFXp2jHbP+jZVd9rtl7/mJdM7/TzYO2xLUAP7U/ruP2VDj0ed+NeO30v7c810qy9tF6uDRJat/8unnnWY5kkjxwxTnw7QKjH/6Ld0bn27cgkPPwG70tNqA7CfieiNa9dIKWu4n//gm2e/N5M4AyP4++3jWCpiqp3GBflbniKUy4yDEN4US5idRykfvptNTqRqSYgpCLedgZgFilMz+S7xhaS63iHIvvt4fXdTgDOPOSjV3wVUec8IKxt355/v4Yfn79409X32XWlibq9W5vb0M9SY4wFVbpUOlpT08S+iO5FyGMM9QIBZ9BjMDT1L098hxW9byqH6ucgw1soGh7/+5vBn71nvuISost4gzg4/loa6xeM+32THiVkw4eq8pGcc7lNVvl/SF6DsBURUHXKg011w3UATOW28o8tU/8Ph6fgVcBiUpxbcYjQ+REIaQoqoJFr/v9gBX8zj+96ffdSUYZ38MTCXhX5lw6am26I6S/ffLanGNCGstlcqjMKC2mYtPuem03JB56j2pffwXaTKUsYqUyjjrcZixivfaNScAMamqyLLqcs0rnLGJzXyx11OvNM2VsHc1LpW3du6FM3HAteJx7/tGyL6oFWXKV8DzzBreTRgvtt5xjXlQy5fAWzt9djOE3bvGWz/x1gdIbqt/23/Y7tZLoDo2DsxF4Dz3lWm1goZbquVOtF95HcV1fUSCTSgs7u6BtPjwxco16UFHcl1Ro7Dnt9OyFWNB8eb8gyB//jF2OhZwot73J9TYQ1jp0WT98uc2rs5Erj0QVRSVdj5RTf9zzlmNJXhlLDgUsFwlSJ4/mzYy5NPvBr0BzVQQvQ0qKZ86iNU6Fzao4TFTRS/y25Wecq7hXcCF7jQnTOx6cfDwdDo4+jI7fnV68O3oZ9kN7Z53zRN2CyxYOf9ysrjE3nZ2vjoT/xcV8wwqLd7ZX5ly4dygXznlTsZdrd5xXQVN1l2w+j7nBjzqva/r5S4V6xqLLq1WR0lMdsAx5itqV+DW9QLFjH6KjMRkn8bwiEF1X/3Ww2DRIEixtS3zrlpjKYNl1zv66GBOrm/84UExZ5Pqf0xusvhLIuv4XxhXy3A== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Deploy resources

+ - + Deploys one or more resources (e.g. processes, decision models, or forms). This is an atomic call, i.e. either all resources are deployed or none of them are. -## Request + -

Body

required
+ -The resources are deployed. + -
Schema
    deployments object[]
  • Array [
  • processDefinition object
    decisionDefinition object
    decisionRequirements object
    form object
  • ]
- -The document upload failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/download-document-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/download-document-alpha.api.mdx index 5848d75d3fc..82c78c1e525 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/download-document-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/download-document-alpha.api.mdx @@ -5,56 +5,162 @@ description: "Download a document from the Camunda 8 cluster." sidebar_label: "Download document (alpha)" hide_title: true hide_table_of_contents: true -api: eJztV0tz2zYQ/isYnOypTCqp0zq8aWwnVSfNeGy5Odg+gORKREICDABa1mj437sLkHpZSt1pTx17xjYfi/2+fXJ3yZ2YWZ7c8QudNRUoZ/nDgOdgMyNrJ7XiCb6aq1KLnAmWd1JsanTFXAHsXFSNygU7Y1nZWAcmulf3KkkSpR3cq0khLQOV11riKbwWiomyLgSbgnCNgYiNHcsaY1BruWBa4R/b1LU2zgtLdVJBpc1ijW2dNjC4V/NCZgXpRChWgSBa2rDa6LzJiDtrLESezL3iA14LIypAimTwkiu8Qet6teMcRSTZWwtX4LWB7400kPPEmQZ2nTJB28cXTE+9F1bcnMbr4K4IddisgErwZMndoiY064xUM962gxUBb84a/XsDZrEFPxWlfSm+V7bJYvs1he3HvB4I2dZaWbD0/u1wSP+eg690zoVdoUGOwcsysHbalOWCoDKtHIqRElHXpcwEKYl15sCdICyIit4dYjTgGNNK4HmeSiXQNS3+DPjp8PTveElXeOtn8hEUOYuYUq5MNaZs5HPiADvMobSE6qevlvRustsGHLGrIMlycEKWTKdfIXOMXOIFU/SIVOzu+sM5e3/67teHo8K52iZxPJ/PIzPNTiCXGLNIm1mMt/RLcscRQ2MwlJVYsBSYyFEMMUVJ+V2DcRIsszVkciozCjhZ2tFm5MJgX+fMQItqYHV47eofuLwxku9m3ojdXo+ZzNFtcrrAA8+h/ZmpaErSIVLduCQthfrGMXBOunIv6C6KbaoK492n+DYAKrIOG8iGGVg+DmZgNvnjo5/fPtNNafLbZHLFggqW6Rx863DUrTogMqKSSlYN5ufpcIh34inc/TIctqSTIv4CSxSDpxrN96m1aw4mR0UlG7R5w6RCXir7ryKjjZzJXdyIWlAfC94l8UWwKBTYu32FP6KGjB2U8hCMQZfpzDfvnGE3Lr16qv4em5oYWPdaa6+19lprh2oNX+JYUmj81PMZ+MyhCSThcf8ts/FyPaa09P0G89jPMY1Bx/BlKJsWs31ZaOvaZEkzVBs/UkwehZECYX0I6XUorz5tSp2J0j/eFz56QbNKb9Z65Lu+vJmwj8LBXCy8OwlyW/XZ8Gy4VyuJHtA4uhqzYGFIvo2G0Kulyt6rNgi/RLGfdSxg+5JucUPHgntSEAbMqKEQrJKiw/Pa6T4I4ZNw8aFPld+/THy0pZpqf7yL+nMiFBUMYWA+jN48zzAkS4WS6QrP+m6JWeanGrFn7Mbz2FIB5zbC7WbLXuxTeMP+DIjsTURBCZnTN8kZam7SCOHiLBxb/U9LncaVkCruIGx8Pvrj9vPF6OTT+Pzy883lCWqM3JPzxteYMJVQGzxWK8RqOjvyW8DxrtXL9Vfif7N3dCnk4MnF2Jtwym873y+7Sr9bbSEW5ZONlQRTNJTrHV8uU2Hh1pRtS4/DnkANIJeWavvAprDp0X+3NOy14xsstnaYR1E2JMWpuvq28w9pHl13u88xe9matZdZ91CoxSatnvGGj9sHlC4AtxfjiQaBEa4xtds4enB7IUtXDfzjJTWAvwAplk5Z +api: eJztV0tT40YQ/itTc4KKLJkNm2x0cwG7cWqzRYE3OQCH0ahtze48tDMtjMql/57qkWQMmA2p5BYOYFvT09/XT3VvOIpV4PkVP3WyMWAx8JuElxCkVzUqZ3nOT93aaidKJlg5SLGld4ZhBexEmMaWgr1jUjcBwafX9trmeW4dwrVdVCowsGXtlEWmAhOWXQldV4ItQWDj4eYgk87UzhJ4BsLrdiKkhBCyKNf/nwzSITXlYcrmyGTjPVjULXNWtyw0de08RgBlJwaM8+0934DOQ3Jt15WSFfGwDpkBQaY4z2rvykaSvawJkEYDri1PeC28MIDgyUkbboUBnvNR7bzkCVfko1pgxRPu4VujPJQ8R9/AY0cuKmDzU+aW0XNbbuhYObg45QkPsgIjeL7h2NaEFtAru+Jdl2wJRHPu0b814NsH8Euhw0vxo7JdFg+PKdTf53VDyKF2NkCg8zfTKX08Bd/qXIuwRYOShSYGfNlo3RKUdBbBIikRda2VFKQkcxIBJwE9CENnzzFK+NJ5I5DnvFBW+JZ3Xdcl/Hh6/He8FFbR+pW6BUvOIqaUK0vX2DKNOfEMu9q7QoP54UsgvbvsHgLO2HkvyUpAoTRzxReQyMglUbCAkinLri7en7Bfjt/+fHNQIdYhz7L1ep36pZxAqdD51PlV5peS/kjuMGWLCjwwI1pWABNlqQhTaMrvGjwqCCzUINVSSQo4WTrQZuTC3r7BmT0tqoHt5XtXf8fljVf8cebN2OeLOVMlWFTLVtnVU+h4ZykaTTpE4RrMCy3sV94lHBXqvaCPUUJjjPDtmOIPAbqEBxTY7JjBlUVYgd/lryz++OaJbkqTXxeLc9arYNKVEFsHUocbgMgIo6wyjeH58XSacCPu+l8/Tacd6aSIv8ASy+Cu1sLG1HpsjrLMUMn22qJhygYUVv5XkXFerdRj3JRa0BgLPiTxaW9RX2Bv9xX+jBoygqc8BO+dZ07G5l2ydaV0VE/VP2JTE4OAr7X2WmuvtfZcrXUJN4CVK3nOVxAzhyaQnGfjuyxkm/sxpaP3N/jbcY5pvOY53/Rl0+VZtqlcwC7f0AzVZbcUk1vhlSh0n4l03JfXmDbaSaHj433howOaVUaz7sfEi7PLBfsgENaije4kyIeq303fTfdqJdFnNM7O56y3sE++nYYwqqXK3qu2F36J4jjrBJCNV9he0rXePQUID37WUAi2STHgRe30uxfiyfDl/Zgqv/25iNFWduni9SHqT4lQVMCHnvk0PXqaYefzWCjSGdPY2C3tqp9qxJ5RnSdcKwk2xFweZstR7GN/wv7oEdlRSkHpM2dskiuFVVOk0plM9te2n4V2RWaEstkAEbKT2e+fP53OJh/nJ2efLs8mR+k0xTuMxtcuoBF2h8d27dhOZwdxFTh8bPXm/i3xv95VhrRDuMOs1kJZKoQYr83QHa62m0vgCc931pibZCjxK77ZFCLAZ6+7jh73uwU1jVIF6gfPbBe7Ufh3i8ZeO75C+2DvuRW6ISlOFTm2qn9I8+Bi2JcO2ctWs73MhofCtru0RsY7Pu5uuoRXIErwkWgvMJMSaty5+uzGQ5Zum/6HM2oafwE1iHUV sidebar_class_name: "get api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Download document (alpha)

+ Download a document from the Camunda 8 cluster. :::note -This endpoint is an alpha feature. It currently only supports an in-memory document store, +This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md). It currently only supports an in-memory document store, which is not meant for production use. ::: -## Request + -

Path Parameters

Query Parameters

+ -The document was downloaded successfully. + -
Schema
    - -string - -
- -The document with the given ID was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx index c3396d51826..1128051da21 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx @@ -5,31 +5,31 @@ description: "Evaluates a decision." sidebar_label: "Evaluate decision" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Evaluate decision

+ Evaluates a decision. @@ -37,30 +37,411 @@ You specify the decision to evaluate either by using its unique key (as returned DeployResource), or using the decision ID. When using the decision ID, the latest deployed version of the decision is used. -## Request + -

Body

required
    oneOf
    variables object
    + -The message variables as JSON document. + -
    variables object
    - -The message variables as JSON document. - -
- -The decision was evaluated. - -
Schema
    evaluatedDecisions object[]
  • Array [
  • matchedRules object[]
  • Array [
  • evaluatedOutputs object[]
  • Array [
  • ]
  • ]
  • evaluatedInputs object[]
  • Array [
  • ]
  • ]
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The decision is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx index 31df6c76e49..76b2410080c 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx @@ -5,59 +5,265 @@ description: "Mark the job as failed" sidebar_label: "Fail job" hide_title: true hide_table_of_contents: true -api: eJztWEtX3DYU/is62hROh/EkJSmZ3YRACw2PA0O7ICxkWx4LbMmVZAYfH//33ivZnieERZeTBGLrcZ/fdyXfmlo2M3R8T89VSB8GNOYm0qKwQkk6phdMPxGbcvKoQsIMSZjIePxD0gEtmGY5t1zj7ppKeIENsO4vXsG0wO0Fsyk8a/5vKTSP6djqkq/rmIL4J14RlfSarHKahrDXRCnPGR3X1FYFahDS8hnXMJUonTPrhz4f0qZ58Kq4sV9VXOGeheaEZQZURwq2S4tzrCgyETG0Ing0aEq9qU2Fjzyy6K5WBddWcOPlWt0+bjrDclVKi/60y3q/TKrKLCYpe+Yk44l1gXzTr98+UoxXwsoMRkbNgHKtlb7gxrAZ39Q/kUS5Z5aR3C8ifkUo5IzM06o3xudySKapMAT+QUKtiMqM6awipeFJmRGREOYW61IaosoVr5iM4YcIGYkYYooyNBOGxwOEikWxnQkRrEt5VhD+UmRMSGfI8t456zYPl4NiQJOcwbsss4yFGfcQagYuA9VXFj1dJcn2NIQwqRIAlcg5Wr4HanOzTyC8LgaSv1jnSzX8eR4AX2t5eGZaoEUOBCyOhY/69RJOtqH9/PbqknhUgRUMPBcZxFkay6QVzHJnWy+cMOsGMhVBRk0EwpeI8gvMG6Mi3BcTy8zTiis9eNeiB9ZbYfEVWX8KOLjxtAEONS62plDSeNc+jg63xxdhIbqSMKSw73A02r4UyPMMeY5JzCzDTVJZ8DETbbZfYSVsA6PzXzfZuQZ6cu1XAtQtmNPFFzDVYh9UQ/bvb06PyZfDT78/7KXWFmYcBPP5fKiT6IBD/pQeKj0L4BV/cN0+soNrTnJWkRCY3aeZLOoBMQWPRCIiLFvWe+uMwSxsz8dqMfGz9Qbme/yVWtB1HE3I3c0ZceQRSYXc3lC9jFjKQuDAOMyYfKKL/G8qXddiyjxnuq/OqwpAEODWluan9bmtY+vA+HM6vSZeBIlUzFtyYjXyitCJXEiRlzkdA77gjb34t88jpKHP+Ds8kb72SAetdXewNCjNW/w4xzwlo/8rM0qLmVjXC4qWuNiC+Jv3yFPx8C32zYVNnbiZeOaS+LO3o1cCh9COXjt67ej1Jr2+vJteT55boAXH5lqBaowt3G5KrcGcrBqSi4WbcDbrpaOv3dedrSSEK+qOnjt67uj5Oj0/bbtQTvCzAb47EYfuY4ioyDEwhq8KuIui+Ai+Ozrd7Sfhjms7ru249hrXYDLnNlUxdm2UcdDB5s2YBnAUmqD2l8smwM+9UnPszHD93HV/Sg2BobWnTQNor1MQ0ozrQmnbBM+Yk5UPZpz29Opg475wU696M304gS2mzq1jlsP1lpEjcnNyOyV/wDE8Z5ULJ6pcFX00OhptlYpLX5E4uT4j3kMPvqWC0IlFZm8V6xe/R7DrWRkO5UvY6ha3+fCEHO4OelJiBnpQtPqcdHz3i2DEP5x2UDn/Z+qyjcXsZtEPO3lheeGp2LevRuv9pAXyVhsso9X8NQ62iXLWtaDa9BOTDgjxgRkNP2wCGGKBPIxUDntdMcYmFd672FLcoqw0FuM1oFCxOdyeUG/bceyWffcz5G+vkXwYYs49MLsaPAPJZTgEdUHkt/X/h5kKg5wJGbQqTHA8ubi7/DY5+H52fHJ5e3IAEof2xbrYIkdyJpfswDYKXhvXnawXZ85b7dQ2x5a/2MC1yBB1zvq6ZeI9NlcNLB33TdaOjAAiT6h7WtchM/xOZ02Dw5B9XcH4wyJ/jrCxMPi8aIy+avPeTdtD3Sdvd2q3etAOMlm5CpCV+AaPIGbRLW4eYGXKWQxoRuP85LE34WCKIhabN9q2zaDbMYkiXthX1q4c8Ui7vt5dX91OkUVtzziH0wFGNZsjC+D3mP6Av/DiO6u+AYzjNYUqPys9cbxc/PMfr+YI7Q== +api: eJztWEtz2zYQ/is7uDSZ0pKSOmmim+MkbdI8PLbTHlwfluRShA0CDABa5mj43zsLkHrbyaFHeUZjEsS+v29J7EJ4nDkxvRIfTSquE5GTy6ysvTRaTMVntLfgS4IbkwI6KFAqyv/VIhE1WqzIk2XphdBYkZiKG5P+Ra1IhGTxGn0pEmHpeyMt5WLqbUPbNi5LgltqwRRLS94ESyORCJeVVKGYLoRva7YgtacZWZGIwtgKfVx6eSy67jqaIuffmLxlmZXlApWjRGRGe9Ken2FdK5khezG+cezKYteaSW8o8xyuNTVZL8lFvd72l7vBYGUa7TmeftsyLleaRuVQ4h2BosKHRD4a12/PBeerwEZ5MZ10iSBrjf1MzuGMdu2faDDhGhVUcRPEHanUM5iX7dKZWMsRXJbSgXRQo/UyaxRa1ULjqGgUyAIwbLaNdmCajahQ54AapM5kTtqzDovSUZ4wVDyrHVzIUENJqga6rxVKHRxZl53jIDxaT4rzVuqZSIRulMJUUYRQl4QKtG8wu/1aFPvLkGJ2a4oCvKyIPX8iNVTuKRTGhhxouvchlnb04zq8PN6uwx1ayR4FEGCey5j1szWc7EP7x4uvXyCiCnyJHuZSKZDaedReoqfg21I5oA8LymSowGWmpjWi/OIAnTMZy+Xg0d1uhLIE71b2ukR46fmWWf8epTqPtBFd14XcutpoF0N7Pjnen1+GhRxawkh0iTieTPZvra25kznlkKNHFtLGwx0q2Vf7AVbW1qSKql932bkFejiLOyEnj1IN+UU3YJ9ykBquzt+fwuvjF79fPym9r910PJ7P5yNbZEeUS2/syNjZ2BYZ/3jfU2YHWYIKW0gJVmWGVT8AV1MmC5lx2/Ix2uAMV2F/PTabSXy62MH8En+NlWIbRyfw7fwDBPLIomVu75heR6zA1DR+mirUt2JV/12j21ZcU1Vol91500CXCOfRN+6H/bnvY9vA+PPy8gyiCshMTj05uRtFQxxEJbWsmkpMjyeTRFR4H+9eTpiGseI/EYmOvUcHaG2Hw63BWOrxEwKLlMz+r8oYK2dy2+5IrHOxB/HbGFGk4vFj7JtLXwZ1M3lHGuK7d6BXYRp9oNeBXgd6PUqv1z9Nr9vILanD2twaPQu5Jcgaa0l71Y7g8ypMB2jXXn293PBuhdTk7YGeB3oe6PkwPV/s+6A84WODJ8s4DIchMFlgYA7zUqqgPiPnBtv9kfDAtQPXDlx7iGtdIirypcl5amNcgA4Pb6ZifGNSN17Ej8tuzMe9xhJPZsjeDdOfxioxFYtIm246Hi9K43w3XdTG+m58xzXZODDz40ivATbhhFtG07vl4wc8YhrCOsWq0TnCKzh/d3EJf6CnObYhnWxyU/WryavJXq289QGNJ2cfIEYYwbfWEAa1zOy9auPmn1EcZlaOssZK316wWExPSmjJnjRcgSUoentBO9/HTSLpL94PUPn4z2WoNjez89U87N09VnWk4nJ8NdmeJ62QtzlgmWzWrwuwLUzwrgfVbpxcdLIuJmYyerYL4LMPgYeZqapGh2bMQyr+7sK1vGWqcZ7zlQglM9IuBNFPHIdtn+IT+DtahGcjrnkE5tCDZ9KXTTrKTDXOotjyf6pMOq5Q6nFvwo1PTz5/+/L25OjTh9N3Xy7eHT0bTUb+3ofcMkcq1Gt+8BiFPxu3g1ys3jmPjVP7Gnu69+MwImPUBe8XPROveLjqRCKmyyHrQMbrpCfUlVgsUnT0zaqu4+XvDdlWTK+uV/ULhM2l4+vVYPRBn5+c9zPUp/D4pHZvBP0i6jZ0ANXwnUjELbWraXF33SWiJMzJBufiw9PowtElq1gJ74xtu2SQOMkyqv0Dezde8Uy7Zb87+3pxySzqZ8aVyVnW4pxZgPPocJyqxuEvry2EQj1rImmiTv77D582B/E= sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Fail job

+ Mark the job as failed -## Request + -

Path Parameters

Body

    variables objectnullable
    + -JSON object that will instantiate the variables at the local scope of the job's associated task. + -
- -The job is failed. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the given jobKey is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/find-all-users.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/find-all-users.api.mdx index ef8aa6c543d..dc57507cd72 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/find-all-users.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/find-all-users.api.mdx @@ -5,62 +5,388 @@ description: "Search for users based on given criteria." sidebar_label: "Query users (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWU1z2zYQ/SsY9JJMrY+kTprqpjh26zZNXEtOD7IOIAlKSECABUDLqob/vbsA9UkqkTvtjc44FoHFLvDwHpZarKhjM0sHE3pnuaHTM5pwGxuRO6EVHdARZyaek1QbUoCBJRGzPCFakZl44IqAqeNGsO69uleDwUBpx+/VeC4s4SrJtVCOwGemCJP5nJGUM1cYDg0JAVswYpEMDi9YVqiEkVgW1mEoXTiiU+LmnET6ESKMOPdPk7XpG3J7ORqT4c010Q/cPAi+mD7rsVzYjtNa2l4cDDvQ1DHculpDZz2umyXf/VVws8Su5/cKV5wWBsIZknDHhLRdv8J7Rc+ozrlhCNF1AiClQiVDKRFBC52GgyPr3upkSQcrGmvluHL4keW5FLEf2PtsEeAVtfGcZ8z3Svkxha1YUbfMOfjV0WceO/CYGwzoBLd+hDbeW2XFjGFLMIKNyOxT/KSCy2THkXVGqBktYXkmATLUepAcKSukw6g2pmUZFisMT5BCwSFwyAkn+YY9fyCsI5j0bQCGllMcmbMZf9J0jc525gTM4jOY5RmFrcqYC00/vMT5S5EJd6Kt9XMcpm5vxTVQ9+dWbga+5eCSP2Vk2YjPDaCxxeesIV7DoOMD6nstqwWeCjfKXbGMNxLkaAdQWciGnp35o0yu/HT2+bDb37TGfbY5U3DfYHOtbJjyy34f/+yfYB9/g6WdrMFDTE5F66lkdtoxeX1AkWaavj5HYFNhrEMRfWKy4PZpVJXs3479GlkD8k9h686IfTgO439jXrXhyYkofuHLEy3/V/pvkWgm/m4/GJw38fotS0iVaY4THGCC9Jp9Xyf6vrMhuQmWVa4jAWjCLAmGEeRoocjk9uqC/HT+6sfps7lzuR30eovFomvSuMMT4bTpajPrwSP+ot3zLhlDCuUkY0sSQd5PwAxiMkm2W0hszmORipg47RN8NW2CKHZ9wv2GmnxvPV1ttrUwgh6+2gzJ3e01EQnAJtIlDKiH3s94EbyQDCLJ1Be63bWmHLkfxRZZxsxy/SqzHwDziINXom8fA5CtDn0DsuSX8fiGBBck1gn3r2oO37+qQLiITCiRFZA9gUnwxB7D0+t+v0SfrpG0tZUowh9zWL6n1uFygBwZJMKKP35hQsG8VPxf7Yw2YiYO43b3tFWR+F1Y0Vo8L+p8v1OscHPw+DfkklY9rXpa9RxTzw91vl9pE4kEArTSaaXTSueodM7rfP+gHQBVqDbrtNJppXNMOq+avvBcA8QGSQhfkx64IdwYbVoZtTJqZdQoI+jMOHzJwQp1rn2VIGduDk89X8rvhQImxUomCsr6slVhAA+6CmopgeSrOYwtB6tcG1f2HnArHpgRWLb3O4fdQVVrtkgdMzkPEeu7hh1YP1mv5qCW/zNzfMGWHsW8KnRvXb/pv+k3ekXTIx7xdiCsMHBu5xxYu0VBN7oNxqc4LrGoZXkMm+qWIxwW4IkAZG6GBQK/4UIVz3vH52AELeHD1Zohv/459puMZ9jt9lbh8pFleVDgtq67LVhtqXb4XJWndgpW4S5hsrkM2NpWdwCh0D/dlutDGb6/KbL3D0rok1VAYrc4jm2ll0WqPQwVaeuAIruAimEH+t0XdYEA6KjzWGcw1h/2IJKFcHPCdjaoukTCEwAyAsdaGsSt8FibvQ895FOISF50kVxBAeszfgaei6gL4dZ3R5u/kdRRDxBVvSqE7V0Mf7/78G7YeX99cflhdNkBj133GCqiqMGMqZ15+Kpoda/2zN+PPT9c7871UXsX13wXV2nK8UfXgzNaKF++NTKU5VF3Ey8OS9e0xCuqcGxN6GqFKN4ZWZbY7MNC+3R7yuETeJxzlgR+hyoyvQgb0xljfDSXhS9dH94vlGfrEcM45rn7qu1059C++Tga45lQ3SNmkOKg1bAF3jHC/wN6D//8bSR68MeNb19RSFWzwguWBr/48w/0TFIP +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query users (alpha)

+ - + Search for users based on given criteria. :::note -This endpoint is an alpha feature and not enabled on Camunda clusters out of the box. +This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) for further details. ::: -## Request + -

Body

required
    sort object[]
  • Array [
  • ]
  • page object
    filter object
+ -OK + -
Schema
    page object
    items object[]
  • Array [
  • ]
- -Bad request - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Unauthorized - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Internal server error - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-cluster-topology.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-cluster-topology.api.mdx index 0bd48cbb727..2ec96af97d0 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-cluster-topology.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-cluster-topology.api.mdx @@ -5,44 +5,143 @@ description: "Obtains the current topology of the cluster the gateway is part of sidebar_label: "Get cluster topology" hide_title: true hide_table_of_contents: true -api: eJy1Vk1v2zgQ/SsETy3gWm57CXLzOmngRdsNknQXaOADJY9ltpSoJSmnruD/vjMkZSm2mjhAFzBg8eu9Gc6bGTbcidzy83s+U7V1YPhixJdgMyMrJ3XJz/lfqROytMytgWW1MVA65nSllc63TK/CfDjsv3Ph4EFsmbSsEsbhljEfcQO20qUF5Gr4u8mE/v4PnkyXDk8SvKgqJTNB8Mk3SxwNt9kaCnFMfoeArYlEJjpqA//WYB2Bu20FuFmn3yBzOK6MrsA4GbxKjf4Oxh6DT5mSlgxkcQvaLxwTBlrLcQLdiN71mIQxYovDslZKpAqnnKlhxKWDYoDo2uiNxCkmy5U2hXed4U9EYlbqJTzvCO2aL4cvqS4lXgd79SDRZEKORr/22Gx+wZDZxydQ9tgkRiZHhY14MC5MvX/HdyO+1tYNE9JKKQrwuAZEhrT5MIF1BtcIrtLmF3C0cgLUU7ZSzCRBPhnqbhcrRClyWDLPGjRJozJE/Yi7DfqLg7ynZPvovCju+/PPBB+D3Ep2f+TEuzOaRHyIfeFHKYTkvxErx2hjm/XRCYqaYLncQDnIG8M/4lDWBZU0BWIZ7VBKP/hPWYrMIQRfkOpAKLd+zp62GIXdrVEnWRCOUDDrsvteol3IjwYgAt0Hv27BOM1usETIUK+OYxAvI+4ZUH8P9g+/d4468dMxVW/lz4EYEDZanSJ2r1DJsl93TwnyYbF6lDAzXZe/SMyOu5c5VCJtham6ZCIz2trfYE2bgkjwAbWgzbA92EhWMq8NZmrvBFv5I7HIDdbsl9gSe9jfTwU8RrrV3VeAFNhVODikvQOSnhzuYku7iY0ORbGj9QLcWmPK8xx8URCUEzxpOyBOWTAb39ruG14bhatN6KS78yRpqETvzhsqrbtkQ45uhJFkgy8rXW1fiVrRfSidCeWnDx8bjyp+9HgmirpcCnbGbi5v7zrXH9X5FvpscjYZRPWFfxhxej1nwUMP2n8jtLBr56pB2LD5FODdbkEXidVEuu0tHYvPBkCVm2kdClGMZuTz6DQOm3AmfHxolfXnP3c+takX+OMx1MeG8F5d4ZPx2yNvyFiSdaYLPOv1jt2ROglW3Q6vJ3hMCiAZ0ZNBFH3aj2GFRWGzt2MKSlAOuWZRNjki1+kY6ZIsHNv/p0qnSYGvwSRS2GQ2/fTl88X0zcf57PLz7eUbRBy7H847X6FgsMf27LgC170VOxk/crjp3oq/6e0ZY+fgh0sqhYCkJu90E5Pqnu+tWbSPnnveNKmw8MWo3Y6mscWaLc4vujyiUehX1NAoC7/DlmKWZVA5n3Cq9m+HwzcviW6f31eXpJb/AA/VJdQ= +api: eJy1Vt9v2zYQ/leIe9oA1XK6l0BvXpIGHrouSNINWOAHSjpLbCVSISmnnqD/vTiSshVbTRyg84slivd9d/zuBzuwvDCQPMBF1RqLGlYR5GgyLRorlIQE/kotF9IwWyLLWq1RWmZVoypVbJla+3Vv7J4LbvGJb5kwrOHaMrWeQQQaTaOkQQNJB+/nc/r7P3gyJS1KS/C8aSqRcYKPvxji6MBkJdb8mPy+RDa4SGR8T63xsUVjCdxuG4QEVPoFMwsRNFo1qK3wUaVafUVtjsEXrBKGHGRhC7Mlt4xrHDxnthRmiG7ExLXmW4hAtlXF0wohsbrFCITFeoLoRquNyNEwIddK1y50piTjgZhJlePrgdCuZT59SK0Ujy2yX56ELQUhB6d/ddhsecnWyuvjKUdsQlosUEME3jm/9Nt76CMolbHThPRF8hodrkaelUIW0wTGaiELgmuU/gEcfTkB6iVfSTNBkC9Kvd/Fai55gTlzrD4n6U161Y+4B9HfLPKOku3UeZPuO/tXxF9e7lJ2Z3Li2WlFSXyIfeneUvTFf8vXltHGoepDEKQaZ4XYoJzkDfJHgLKtqaVVyPPgR1WpJ/coJM+s2CCsKOuQV7Z8zZ+hGfndg1MneeBNSMxW7p9z5Dms+j4CKyydB9wMYECrG9RG+H51rEE4jLBnIvtHsL+7vUu5Vm45lOqd+G9CA8KWbZ2iHjcqIcd99xSRD5vVs4K5UK38QWHuuUeVQy3SNBp5znimlTE/wZuhBIWSH3hmlZ72J1NyLYpWY85GFmztTEKTm+zZb/ElzLC/XxI8KD3k3b+IKbJrbziVewcko3S4DyPtNgw66OkXQY22VDkkUKBrCpxqAuJhAkIEBvXGjbaHDlpdQQKdn6R9Escdteg+6ai19vGGAt1wLcgH11b2vX3N24rOo1IZr9zy4WXjWccPEV/wupU5Z+fs9urufh/6sz4/QJ/Pz+eTqK7xTyMubpbMR+hAx3eEAba0tpmE9ZtPAe77FR1k1mpht3dkFq4NyDXqResbUVAz8Dl0evebIAoPH4bM+uOfe1faNAuceZD62BEY9RWYz86OoiFnKa0zVdetdPkuCzdJGB8FNkr4SmRIaURXBl6PaT/6LywkNjubkSg+cyg0k8RxIWzZprNM1XHmzXb/aaXSuOZCxoHCxBeLPz9/uly8+7i8uPp0d/XubDaf2W/WBd8oY2suR35co93fFfdp/Czgbn9X/El3z6CdxW82biouJGWTC7oLRfUAO29Ww6XnAbou5QY/66rvafmxRb2F5GG1ryN68/OKBhpV4VfckmZZho11BVe17u5weOelpNvV9/UVZct3D9Ul1A== sidebar_class_name: "get api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get cluster topology

+ - + Obtains the current topology of the cluster the gateway is part of. -## Request + -
+ -Obtains the current topology of the cluster the gateway is part of. - -
Schema
    brokers object[]nullable
    - -A list of brokers that are part of this cluster. - -
  • Array [
  • partitions object[]
    - -A list of partitions managed or replicated on this broker. - -
  • Array [
  • ]
  • ]
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-decision-definition-xml-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-decision-definition-xml-alpha.api.mdx index 0991f335d07..36732439332 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-decision-definition-xml-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-decision-definition-xml-alpha.api.mdx @@ -5,61 +5,196 @@ description: "Returns decision definition as XML." sidebar_label: "Get decision definition XML (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zYQ/isY9mJPLVJJndTlTWM7blo747HltjO2DyC5FJGQAAOAeoyG/z27ACnJktzmkOlJB43wWOzz2yUWy8DyiQnix+ACUmGEkiyDXEhhcRg8nwQZmFSL2k3j4A5so6VBmh1ixg375+Y6fJJPMo5jqSw8yXEhDAOZ1UpIy3DMka6sC85y4MgKcCFjSItEPCkhY8jonFeNzDhLy8ZY0IapxjKVM1sAS9QcJdwDuNljT3rG7i7vx2x0+5GpKeipgNnzUcRrYQZWqdJEqScc4NJAg7E7C4P+XFhlP31tQC9o6/hJ5kqzvNEoTqO1lovShM7CJxmcBDXXvALSEn24DCRO0E29ey5W3vkTFkgtyIc1twWONXxthIYsiK1uYNvRY7SOGyMmEn3yBRa9/Xscf8JmhUgLxlNrKAicNVKgBUxkIK3IBSpORliKRX8+RA1MWkDFg3gZ2EVNamOMYAIat5C+4tYvvT8N2vaZFDa1kgYMnXg7HNLfrtIIgX/RlSBgmjQFY/KmLBdMO0BBFjpvpgo1kNapBHMbzauSxjuKGquFnKBabXsSnL6mygrR6zCwK7BOxRzjiFLZjdLQh5VxHNdaTdFxGRPSGdFbjcjLFjta8rouRcqJdYQnEcHVz58NabCp9UvVRuzWU3ZymUo+Q2opdJ4w8dIf7z6cs99O3/36fFRYW5s4imazWajzdACZsEqHSk8inNKP6I5DhmajDRVfsATxk2XOaF6SVTVoKwDdX6NbcpEyq5yBndqMXOvt65zs1SKMrw6vQ7Adig3INFoE23AesYe7jz0gF3hgV7Q7k/OmJB48wZyPk5LLLwGG2Apb7hW6LcU0VcX1KlteCkBGxmLVMf8J+V/e7vAmQP0+Ht8yz4KlKoN1WnWCyIgKoVY1VRAjLnHG5372fjhsiSdF/DsskQzmNZrvoLVtDoKjWuPWGSYk6iXTHxUZpcVEbMtFQetYBB2IL7xFfSqe7k/FVSmYCVs4nhMxBekq2wyBT1+AXGFBPmTkISMPGfnjMvLdvo8j2kJe1oRD0BpdptK00XgZoatE6djTJ7qXTVcVvCIdcu2Qa4dcey3XcBMbgULhhT6YgEMOXfTjIOo/foP1PdhEy709QuuuvBgp7EX6nqLR6LJg6ROqxTxYFsrYNl7WSts2mlK0plwL6p9ccGnbJ14PqFKlvHTL+wJLG9S49AZvNVVX3MKML5yjSeRL1mfDs+FerkT6Ckdq07yFHpYbpaJnSzm/l60n/h7GrmkxgIVN2MU9HfPuSQBvFXrUUHBWcOnkOe4090S44gcfehD98ffY4UBgX+iOd3jYVYSigiH0mg/DN7vYQ2UphVJV4VlXRxF/7oLENwzrumBKLiy2gBcfkts1mj3Ztd9hf3mJ7E1IQfHI6cvnBDk3SYji+uZ39Z+UKokqLmTUiTDR+ejm4dPFaHD98fzy0/3lADmGdm6d8TUCpuJyQw9qq/a1e9RqHbmG/3jb/uX6S3J4Vth+VuhQ6ZpgLIRCUp64cC67svIY7CsreDR+7fGBKgtmhK8Oj8FymXADD7psW1p2uuH687qYuOqTCeM8GMQ5L832O8VmEI/uuheNY/Z/vF7sdVG3yOXCFcWyoRkOUYdXn2XaZzxYAM8w38liTztKU6jtBpfVgwSVlVWlv7qkevANA/ewdw== +api: eJztWEtz2zYQ/is76MWeUqScOmnKm8Z2Urd2xmPLbWZkHUBwKSIBAQYPyRoN/3sHICkpktzm4OlJB4kEuNjntwssVsTSmSHphFwi44YrCTkWXHLLlSTTiORomOZ1GKbkHq3T0kC+TwzUwOfbm/hJPsk0TaWy+CTHJTeAMq8Vlxa4ASphQkVdUiiQWqdxepIwVdVKorQmQarFckAZQ2OSQNf+DzpqE1f5KVCZg1QWUNJMYA5KwgWtnMwpMOGMRW1AOQuqAFsiZOo5fpIPiGE06Unfw/3VwxhGd9eg5qjnHBfTk4TW3AysUsIkrCUc0JoPNBq7NzHo18VV/tM3h3rpP50+yUJpKJy2JWrI0VIuTBy88iRJRGqqaYVeS5JOVkTSCklKepderj36Jy5JRLj3e01tSSKi8ZvjGnOSWu1wNzjjEoEaw2cSc/iKy97+A8GKYFFyVgJl1vjAUXCSf3MIPEdpecFRgzfC+vj162MSEcNKrChJV8Qua682lxZnqElECqUratupd+ekaaZeYVMradD4FW+GQ//YV/rz7c2/6OphY1yAROGEWIIOIMQ8Dt5kSlqUNqiEzzZ5roR/31PUWM3ljDRN00Tk/CVV1lmwCQN8RBtULCgXmMdwqzT2YQWqEWqt5jzHHLgMRvRWQ6by5Z6WtK4FZ9SzTmqtMoHVz1+M12Bb6+9VG8FdS9nJBZV9QWZ96FrCrJU+uf9wAb+dv/11elJaW5s0SRaLRawLNsCcW6VjpWeJLpj/ebrTGMYlaoSKLiFDoHkejKbCW1WjthwNmBoZLzgDq4KBndrgXdva1zm5VctjfL14E4LdUGxBxmlOduE8gsf76x6QSy5n+6LDmoI64XnQTDmbZoLKr6SJiOVWHBS6K8W4qqJ6nS3fC2giYiy1zvwn5H95s8fbA+r38fgOWhbAVI6btOoEeSMqLnnlKpKeD4cRqehzO3o3HDaep4/4D1giAZ9rQWWA1q45XEK1wW0wjEtjqWSvFRml+Yzvyo1Js4kF6UB82VrUp+L54VRcl4IFt2XgOeNzlKGyLagJO0ChnDxm5DEjjxn5ihn59tDmOJLgvaw9DlFrpUEx5rTG3B8lRGDvt+hetj+qoLHHXDvm2jHXXsq1JiIV2lLlJCUzDMjxB/2UJP3mN9icg02yOtgjNOHIGxGDet73FE4LkpJVm1BNmiSrUhnbpKtaadskcx+tOdXc908huP5zm3g9oIRiVITpQ4H1H3zj0hu801R9pBYXdBkc7UV+z/r98P3wIFdP+gJH36a1Fraw3CoVPVuf8wfZtsQ/wjg0LQaZ09wuH/yy1j0ZUo165Hxw1nDp5AXuftwSkah7+dCD6I+/xwEHXBYqLO/wsK+Ijwpq02o+jM/2sXd3HVKIqapyMtRROWsPSHTLsK4L9sklOENpAsq7RrMnu2m/wF+tRDiLfVBa5PTlc8Zt6bKYqapvftfPTKgsqSiXSSfCJBej28dPl6PBzfXF1aeHq8FZPIztsw3G18rYisotPXxbdajd863WSej6T3ftX212kuNVxGtcRXRIDo1zLSiXPrcCBFZdKZqQQ6WIRCR96cLCV6Np1FWUCVmtMmrwUYum8dNBN5JOppsCFCpWzk3wIEkLKszu3cZ24E/uu1uQU/g/bjwOuqibpHIZCqlwfkQi8hWXL17lNNMmIiXSHHWwuKUdMYa13eKyvsTwpWi9O3y88jXkH8yc1zM= sidebar_class_name: "get api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get decision definition XML (alpha)

+ Returns decision definition as XML. :::note -This endpoint is an alpha feature and not enabled on Camunda clusters out of the box. +This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) for further details. ::: -## Request - -

Path Parameters

- -The XML of the decision definition is successfully returned. - -
Schema
    - -string - -
- -The Decision Definition Get XML failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The decision with the given key was not found. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-incident-by-key-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-incident-by-key-alpha.api.mdx index ab9841f58ba..e2812193920 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-incident-by-key-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-incident-by-key-alpha.api.mdx @@ -5,56 +5,285 @@ description: "Returns incident as JSON." sidebar_label: "Get incident by key (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get incident by key (alpha)

+ Returns incident as JSON. :::note -This endpoint is an alpha feature and not enabled on Camunda clusters out of the box. +This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) for further details. ::: -## Request + -

Path Parameters

+ -The incident is successfully returned. + -
Schema
- -The incident Get failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The incident with the given key was not found. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-status-of-camunda-license.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-status-of-camunda-license.api.mdx index b581b01f02d..27de7c051dd 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-status-of-camunda-license.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-status-of-camunda-license.api.mdx @@ -5,36 +5,67 @@ description: "Obtains the status of the current Camunda license" sidebar_label: "Get status of Camunda license" hide_title: true hide_table_of_contents: true -api: eJydVE1v2zAM/SuCzmmc9hTkFnRZ0aHrhjZdD0UPssPE6mTJk+i0geH/PlK2k7RugGEnWxT1Hj8eWUtUmyBnT/JGZ2ADyOeRXEHIvC5ROytn8keKStsgMAcRUGEVhFvHU1Z5DxbFpSoqu1LCdBAj6SGUjn4JuZYXkwl/TqP2OO/Rh6iZs0h+DKbKkuyKwZKXwIi1DFkOhRpSLQmsD4jB95Bk/VNBwDFh464E8nXpC2RI59K7EjzqNoWtMnrVV2hI4CsQ+tOohQ4iPh6JtTIhujny8686ptTRps4ZUJYMtjJGpYaM0b8ZyQ5pGT0/Uj9qYygNrLyN9D0t44ouh93pinb0Ab22G9kQG2pk8l4Od13d6K7h6wIwdyu630CsksKcDskBMYDfgmdF1bLyhi7rti/NLEnq3AVsZnXpPDbJ9oL8t8przjeWma/bHNeqMvQrjcuUieaPsuSu8oVVBXxMcCruFvdLcaUQXtVuLClwpnwPPZ1MJ5+isusJxPnPa9FmGEGPFdfD5ojlp7Ct878AN80zF5LGQuPunp+15UlBefDzimte973r+CJ6lFJ0Ikv789X5QnFc3x6XscHarl183jV6GAh3hVrYRj4Znw+y4WDXzovMFfQ2jqHdiFeNOc3WAS8zVUBOaK9h5uV+HdF2OhO/WkZxPuamtMrh1ALJZkPIVTomuiRrn+2/qXFpUtAm6SUYksv594fbL/Ozm+vLxe394owQx/iGMfmSBFMoexTHFRzvneGEvMu8Pqyg/1qLXcsQ3jApDT1nEcVc626UnvalIgm04/Ak6zpVAR68aRo2087yO7I/H6aHTwSVg1pR73n2fsOOO5VlUGIcM1Mx9WBvstT2Q321YI38BUgnF3I= +api: eJydVMFO4zAQ/RVrzqEpnFBuFdtFu2LZFZTlgHpw3Glj1rGDPS5UUf59NU5SCgVptbk4icfvzZt54xZIbgIUD3ClFdqAsMxghUF53ZB2Fgr4WZLUNgiqUASSFINw6/SlovdoSVzIOtqVFGaAyMBjaJwNGKBo4Ww65eVz1BHnLfoxqnKW0BKDyaYxWkkGyx8DI7YQVIW1PKZaVCjGhBh8Dyk8PkUMNIEMaNcgFODKR1QEGTTeNehJ9xK20ujVWKFjAh9R6A+zFjqIdDgTa2lCCnNUoX/WSdJAWzpnUFrIwEZjZGkQihTfZTAgLVLke+p7bYzwSNHbRD/SMq4YNOw+r+hAH8hru4Guy4A0Mfloh5uhbtDxk0GNVLkVFLDBVCVJFRSQvyIG9Fv07KgWojdQQNv3pSvyvK1coK5oG+epy7dnkMFWes16U5l5u9e4ltEQFGCckib9fm9L7ipvWFnje4Hn4mZ+uxCXkvBZ7ibQZcCUb6HPp+fTD1E59BPE2a9voleYQA8dN8JWRM2HsH3wvwB33ZILqaLXtLvlY315SpQe/SxyzduxdwNfQk9WSkGQDS9fna8l5/X9fpEarO3apeNDo48T4a6gD33m08npkRpOdu28UK6uo01jaDfiWVMl5IEwZWIgFrT3MPNyvw5oB5+J3z2jOJ1wU3rnsLRQ5PlGUxXLiXJ1rvpj+7U0rsxrqe1owZBfzH7cXX+ZnVx9u5hf385PTifTCb1QEt+4QLW0B3lc4uG9czwhb5S3r1fQf12LQ8sIXyhvjNSWTZS0tsMoPexLtcyGcXiAti1lwDtvuo5/P0X0Oygelq/Tw19dBhXKFfo0e39wx51SChtKY2YiUx/dm2y1/VBfztkjfwFIJxdy sidebar_class_name: "get api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get status of Camunda license

+ - + Obtains the status of the current Camunda license -## Request + -
+ -Obtains the current status of the Camunda license - -
Schema
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx index 0eff1841ebd..824e95bc191 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx @@ -5,31 +5,31 @@ description: "Migrates a process instance to a new process definition." sidebar_label: "Migrate process instance" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Migrate process instance

+ Migrates a process instance to a new process definition. @@ -40,22 +40,203 @@ Use this to upgrade a process instance to a new version of a process or to a different process definition, e.g. to keep your running instances up-to-date with the latest process improvements. -## Request + -

Path Parameters

Body

required
    mappingInstructions object[]required
  • Array [
  • ]
  • = 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
+ -The process instance is migrated. + 0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + required: ["targetProcessDefinitionKey", "mappingInstructions"], + title: "MigrateProcessInstanceRequest", + }, + }, + }, + }} +> -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The process instance is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx index e5e565fec20..14c59f50ea7 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx @@ -5,31 +5,31 @@ description: "Modifies a running process instance." sidebar_label: "Modify process instance" hide_title: true hide_table_of_contents: true -api: eJztWcty2zYU/RUMN02m1sOpk6ZadEZ1nFZpHh5bTheyFxAJSahJggVAyxqN/r3nAiRFipLtTjvpxukkFQngPs89uADXgeVzEwwmwblWoTCGydRYnoYiuDkKImFCLTMrVRoMgk8qkjMpDONM52kq0znLdhZ1r9PxQhqmxV+5MJaFPGWhSi2XKUvy2MosFm6yzkOSaphVjOPnHbeCYbKIRSJSy9SM2YWo5Ct9nWKmFTqRaTHVLROValqyFQBDrtMrIyBFOiVaZFxqmL5rMmZwyzDJ2Dy8ZSptmKGxVt3SqxwOW5FGImIZtwsoeI9Rcc8T+HTEpiLkufE+3MPOlMfMrIwVCclOlWX8jsuYTxEArIuUMOl3FmaZTKUR4wbLMhFaEUFycBRkXPNEQBAlZx2keEAKCuNHhe2/ixWmSkoO2YTfFHipRRQMEGKxm8ExQnorVrvRbYbCLFQeR3CIJT7hUReCTbgQCQ8G68CuMjKFojEXGkMzpRNu/as3J8Fmc+PtAAB+UdGK1uyaRZhAfGmIZ1ksQ04W9v40ZOa6rUxN/0RsKCxaZUJboNCtLZAzqiGqtoprzV2AkAWzT1ozOnUpzA9NCeTLhQwXJSRMLT6l+ggRLGaZEPahQpBS/+KOa0lJr68LteDbRDc8KrSMInpoJ2/0rsxdidCdlFUmUc4Kd+EV3Ag2RwEl2VilzwotNRjtVVfDSrnUe9gwoYJPy0MMwclLYakCO8f0rx9x61OxbMtYSlSsr8F7aSzFvzXHm3SdzmK19Pb4UD6GTEr4jIOGgkHnGOEoc/Mt4PMQDlooqCa30/Lh8stnsEeYb7O/lHFcBMfKMrhbfTMiMbzRCiRUvi7SeIAIEM6RBWGDwQlTzCn1bh8RVW2FO91EFShjXwecUNO543Eu2IybBcz22eFRJMkJHp/XnPV80IzshugGU55eBc362wnAvsL7KDj2DpFkdrWDyu06CKUX81hNicwfClgdfkW51cAWgBPr1DypJRhcaaWNRbm/rs6bFP+1jVFI2xG3ZY3HxA3bjOmMq3bW/4lKK/17qkE8ka0eJcemksf3sf1BrpnxWLTHe6Lq5JJ7bsu7EDOhBbVbLZeGaA6KQUfE4UIZkbLpyrmIXkPXyh/eoWNwfRPHoxah0hH1YYa6LkR+plXim6FKd5d9Kir8Z9ZnckaovpNRuTE9zqbwTSZ5EgyOHYQeisSF7wcIui6s1PUYn95X/ZP9+Wy1JzB+25JAzEm/f3Clc4RF3PKy/wIlSZf4A80HFqHOku/bTchuXs79TAAbjW1cECPxYoF0T4STi/en7KeT1z/evFhYm5lBr7dcLrt6FnYEmFDprtLzHh7pL8172WUwXhOZrhzvVoTJtgXBDLpEhCAk2iqoyBlD6Wok7kDP5EfXLbaqsptr2arnIbu6GDGEFDvMbEV4aqluEB6fqtwOpjFPb4MtNNpKd7WYPEm4rjeoNQW0LVhuc/NoF/rDq5ZsgsVv4/E58yJwKolEsTUCH4Wibh3UQBee+L1/etPvb0gmZfwJnlD7ksF9B61dd+gwpJBnL805Vp26/pvMKC3ncldvN6iXaQHid94jX5cn/6QUqaZmKk+fa+q5pp5r6mBNvd63ScEXirK7JRBaI2QqDHONToNapLgquFJ3cZx+rrTnSnuutP2VhsFE2IWK6DJMGQcduhMbBL2imDqlmaa3bl+kbXq+t/T1RDdeQt+V12+5RtiCtS+qDWphjWbcbgbrTGm76d1RxhqHdhr2xVeCKlYhjxfesHZyaYDu+EqnT3mCnZWzt+zi7HLMfsUZYslXLtiksin6bf9tf69UmnpA4vB8xLyHHpo1uijFUt3vFesnP0Wwuws0AtQm7eqSlvnwTAXXQg9zyk8FmUKfk07PfhLe+B/vSyB9+GPssEBUd7G9ZzzzV7GH7wUnjeu1LUIfuhXrHB+6Jpo0r2nqdxbVjdsNuX/gaD3Zf7Dt05J9x8O+q7OZcgErqqAdesIhQOtz1e8etysO6SHiCFWCtQ7tdC6XdsF4LZVhjKMhpfAowBYjcFYjvcUtdDntox9hX71GdtwlGPpaKTeNOSTn0y7U9UK/rPr/NFbTXsJl2itUmN7p8NPV53fDzsfR6dnny7MOJHbtvXXppqJOeFqzw580W83prs/r7Z75/A3jW37DKOraQlgP24lMiWkcPNYFN0+CFjdj3WDvZ44GPaNIPMVOgvV6yo240vFmQ6+RNI06mtxsC9cVWyQN/UZ5znhsdj+N1DHy4qK49XnJ/sUHk73Ol7dp6cptGHFOT/h5S6W/7+sOKASeCh6BCMkLP/HU29oZk7itoNanlM1RuWIYhiKzB+Y2ekfin2ojPf9yOSYCLj7jwD9aq/mSPjXh30Fwjf8CYqzqxtC9XwdoH+Y5n9N8L5f+/A1KWAIj +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Modify process instance

+ Modifies a running process instance. @@ -39,27 +39,242 @@ to terminate an active instance of an element. Use this to repair a process instance that is stuck on an element or took an unintended path. For example, because an external system is not available or doesn't respond as expected. -## Request + -

Path Parameters

Body

required
    activateInstructions object[]
  • Array [
  • variableInstructions object[]
  • Array [
  • variables objectrequired
    + -JSON document that will instantiate the variables for the root variable scope of the process instance. -It must be a JSON object, as variables will be mapped in a key-value fashion. + 0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + title: "ModifyProcessInstanceRequest", + }, + }, + }, + }} +> -
  • ]
  • ]
  • terminateInstructions object[]
  • Array [
  • ]
  • = 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
- -The process instance is modified. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The process instance is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/pin-internal-clock-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/pin-internal-clock-alpha.api.mdx index 993b60b1883..48866f80e70 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/pin-internal-clock-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/pin-internal-clock-alpha.api.mdx @@ -5,29 +5,32 @@ description: "Set a precise, static time for the Zeebe engine’s internal clock sidebar_label: "Pin internal clock (alpha)" hide_title: true hide_table_of_contents: true -api: eJztV8FuGzcQ/RViTzEqa5XUSV3dVMdpXSSBYcsNUNkHanekZbxLbkmuZUEQ0N/o7/VL+obctWRLRnMoerINyyI5nJk382ZIrhIv5y4ZTpKT0mS3yU0vycllVtVeGZ0Mk0vyQoraUqYc9YTz0qtMeFWRmBkrfEHid6IpCdJzpenvP/9yQmlPVstSZKyzf62/FKSDaJgQyolaaU15TygvLFVSaSekDyKuhqmZojwakToXuSEntIEj+Z3UGUHj2IiskHpOYQ9L9rYMVI3zAj5FK0LOYUAslC8ARdMiyANJVUPTtR4Oh1BOUFrAM9J5bYCAvZRaTGRZF1LMSPrG0s2r1NKMLMGLNKwctiuuX+UHwdtKLtm2a6ZfKQOmztNrDSdmDQsDc0nSYVOwfq2TXmLpjwZO/WTyZTJchaGylCdDbxvqJZlBULXnJVnXpcokJyj96jhLq8RlBcLI3/yyJuTNBOvQW1tTk/WKXFjtkPPgcabHCB/dS3aZAw9nqTZZISpVlsg9HMgdo1kUCrObYLvCNGW+CXcfRlsnmAhzspgAVyrp49S7o2S97m0hnGy5BQJ65UveHRh5rvRFjAw2xW2uNtpFOG8GR/uBRNcW0iEPWUbOzZqyXHaEAIo9VNuLGBlKYPVoMNhvqEOx4ZSopZUVoQSYQpVyTum5QK2owClNc6TujjhMzyQVKZuWVH23m9zH9kfiPEqKnLxUpYhJF0AdBafwC6gmFx9OxI9Hb3+4eVV4X7thmi4Wi76dZYeUK29s39h5iiH/sdxBXwAbeNpyWeYQg02U9IZOXfiyLpyt24KT3w+c/hcuhtUHxjpvEahtrjRWJU/70UhcXZwJlSNsarbkyO6YDntmsilZh5yaxg+npdS3nMeWW7tGn1pxTVVJuxRmtscAFHEjbLZgPMP179/s6GbW/DIen4uoQmQm73opN8ZoiEFUSquqqZIhyIeRvI+jd4PBmnVyxr8BCUh9XwN+oNZTOCBHZZDnqC0AQyv23GT/o8wYq3AuPLHbDw2gq/OWxO8joljlb/fVG7A8HC1kLUJmsqyxXH1oSmVQz7Xe2W5b6kulvVTaS6XtrzQs4qgqDE7hpG4Cc6QvMEjDCYqxI3tHlq+IKziDOCSrWCVrkHtVGOfXw1VtrF+nd5yCO2mVhJWQMV6O1dSxBFplGab3ZYsXNA7PDsWJrBqdS3EsLk4vx+Jn6WkhlyF6bPKx6uPB8WCvVhZ9RuPo/ExEhJFrW/XfqeVC3qs2Cn+L4vX6hgOJXqX88pK3xfBMSVqyo4Yj/sCB1l7QzuMohJn45UPHjF+/jENyuXddbC6Pp/e4g7SVt7nsDQLfZiZOt/erHY85fch1hDjov95lHlBxAWWmwt7QRcG+9ma90ZeVuIAz8l6CVku4rbFdTuyW2Y9xRfwWLYrXfc5epFjXPOfQ3Ez7MJdmcdvD/2lppim/HNLWhEtPRp+uPr8fHX48Ozn9fHl6CI19f+9DlGowq5J6yw/cLJ+8VMSrcKU/eAp7tTk+Xt5D/9d7qK0GT/c+RVdV4Roe2LFqe9Qkybo3a+wzk2S1mkLNlS3Xa55GUVi8piY3m7bEIygqSOYoKm5qt7RkVsYMH47ZLIuXDZvfeWute92OEd4VtX9G9tHFgqv/ocueX425lttnXoUjCZNWLvgJiM9hco1fDEwgX2gTYX6V4GiZN3LO8lEt//wDv315Tg== +api: eJztV19v2zYQ/yoHPrWYIrld2mV689J0y9AVQeKswOw8nKmzxVYiVZKKYxgC9jX29fZJhiOl2IkdrA/DnmJAsEge73d/fnciN8Lj0ol8Kk4rI7+Im0QU5KRVjVdGi1xckQeExpJUjhJwHr2S4FVNsDAWfEnwB9GcgPRSafr7z78cKO3JaqxAss50pj+VpINomADloFFaU5GA8mCpRqUdoA8iriGpFoqKCIK6gMKQA208YHGLWlI60xMDskS9pLCHJZMdgLp1HubUowAuUWlYKV8CgqZVkHce6yad6ZnO81wbTzM9KZUD0kVjlPZsJWqYYtWUCAtC31q6eZFZWpAlLSkLK0f9ikvr4mWwtsY1Y7t2/pmkBz9YOtNKw6JlYbBUETpyaUCfaZEIS19bcv4nU6xFvglDZakQubctJUIa7Ul7XsKmqZRETlD22XGWNsLJkmrkN79uSOTCBHSRiMaahqxX5MLq4DkPHmZ6UhLQHbLJHHilgRojS6hVVSlH0ujCsTerUslyJ9iuNG1VbMOdimQwgomwJCsSsTC2Rh+n3h6Lrkt2PJzumHWTCK98xbsDIy+UvoyREV0Xt7nGaBfdeT06PuxING2FDlwrJTm3aKtqPRDCm0NUO+hxOtOiS8TxaHQYaPBiyylo0GJNnixTqFbOKb0EY5nryoGmJXp1SxymJ5LaWDOvqP5uP7kP8cdwESWhII+qgph0QAdRcE4FezW9fH8KPx6/+eHmRel94/IsW61WqV3IIyqUNzY1dpnZheSH5V6mMCnJ0sBlLArFmFjBlk5D+OQQzt5s4OSngdP/wsWwes9Y563Sy12utFaJx/1oDNeX56AK0l4t1hzZPeiwZ4FtxTpwblqfzyvUXziPPbf2QR+juLau0a7BLA4AdIngRtjuuPEE179/vaebWfPLZHIBUQVIUwy9lBtjBGInaqVV3dYiPx6NElHjXRy9HY061skZ/wZPNNBdU6EO1HrsjtJQG0s9f4JjSjvPTfY/yoyxaqke46ahAQx13pP4XfQoVvmbQ/U21ttPC1lrLBgpW8vVtypVFdRzrQ/YfUt9rrTnSnuutMOV1iWiJl+aQuSiaQNz0JciF1n4gopEOLK3ZPmIuBGtrUQuNrFKujzLNqVxvss3jbG+y245BbdoFc6rSDxejtU0sKQyEqswfShbvKCxpsGLU6xbXSCcwOXZ1QR+Rk8rXIfoMeRD1Sejk9FBrSz6hMbxxTlEDyPXdup/UMuFfFBtFP4WxV13w4GUrVV+fcXbYnjmhJbsuOWI33OgxwvaeRyFRNK/vB+Y8eunSUgu967L7eHx7A7rpq+87WFvFPi2MHG6P1/tWczpI+uii6P01T7zLs5DAUlT160OXVQvh5P1Vp+sWufZ80RUSpJ2wRxO7A7sh7gCv0dEeJVy9iLFhua5VL5s56k0dSbjtvv/eWXmGd8csh7CZafj364/vhsffTg/Pft4dXb0Kh2l/s6HKDXG+Rr1jh0XSj+6qcCLcKR/+djtzfbz8Xwf+r/uQ301eLrzWVOhCsfwwI5N36OmQg531thnpmKzmaOja1t1HU9/bcmuRT692bYlHnWJKAkLsqGpfaE1szJm+GjCsCxetQy/d9fqkmHHWEpq/BOyDw4WXP33XfbiesK13F/zalPwVosrvgLiSuRCJMIE4oUWEeY2okK9bHHJslEl//4B7St4Ug== sidebar_class_name: "put api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Pin internal clock (alpha)

+ - + Set a precise, static time for the Zeebe engine’s internal clock. When the clock is pinned, it remains at the specified time and does not advance. @@ -38,18 +41,129 @@ This endpoint is an [alpha feature](/reference/alpha-features.md) and may be sub in future releases. ::: -## Request + -

Body

required
+ -The clock was successfully pinned to the specified time in epoch milliseconds. + -
- -The required timestamp parameter is missing or it is negative. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/publish-a-message.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/publish-a-message.api.mdx index 292680ce941..4a312302dd9 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/publish-a-message.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/publish-a-message.api.mdx @@ -5,51 +5,203 @@ description: "Publishes a single message." sidebar_label: "Publish a message" hide_title: true hide_table_of_contents: true -api: eJztWF1T4zYU/SsaPS1TiLNbdpfmLQW2ZctCBkL7EPIg23KsxZZcSU7IePzfe6/lxHacsHSmbwUGEklX9/OcK8sFtWxh6GhGv3Fj2ILT+TENuQm0yKxQko7oJPcTYWJuCCNGyEXCSepkB4+y3gVrmpOslgyJVcRkPBCRCEjGtBWoy5BApVluYT3SKiU25kLDnNY8YShAnvjagNJpzAmXYaaEtCRUoF0qS1ZMWBIpDW6092hu8sTCrgfDUeXGuY7QVhvuN3kQkxykA2Y42qPHVPO/c27srypc01FRDYXmIR1ZnfNjGihpubS4xLIsEUGl1vtuMEMFNUHMU4bf7DrjkDPlf+eBBb2ZVhmH+LnBVclSjp/dBGO4uEJU1A5gANtrdcZqSDwt0ZFtUH/w9X5dOxn9oVoseMQgiTCFNqxI+VRdi+U+X2HNZEySd0KS1Bxhpf08irju5B4s49DX6onrlkUoAV9wDRNQiJRZN/XptO3DEFyo9VyF+yPMpYBykauL3djIrUzWWNsoT9A1Lk2u0R2YVbLxbyVsXG1cQJQSFD3KlUgSwpcQiN9G8rswxyQRYQ1JRMQxOUcOM7tZlHmSMD/hDjQQxZJpgRNmfxQbZ7ZihBny9f72BjAf5CngDTPHwrBiD0smLSw5WO6irecBgJZJeyiNbnUnh8QAWTpFOxRgedziycyBu4fQOeLJ4p5Nh6n6iSPQnWMdLUunzGTQJVy6PgyHL2dtBcnalmlA/wVHD+tssaVBQJ83B9hdCx7kZZ+LryDGa4vY50K/fZQv18Jlvy7G6aH8Q8xLEUJeQmYZEa43L1kiXioCbALcpD/9qBhjMnGSJOSWiYS4VCMxnKAPhqHzzO6+nJNfTj9+nr+Lrc3MyPNWq9VAR8EJB7ooPVB64cEQ/1DuaEDAeWgFKVsjwRtWkaaIzZkFrcO6WCtnMI8dzh9AgFstesTZ1hR6Cd09X8fk4e6KQEqlFdEae03PdKdFM1/lduQnTD7RpqJ9o7tWTJ6mTDcA7xgARcYym7fCOIDJnz/0dCMsfp9OJ8SpgAMo5NVJa2PAR20Ig0iFFGme0hGgC0bs2Y0+DbHnu4q/IhI4zp8zCN+dcDvh4LGkoM5OWxWYkOCXDP6ryigtFmLX7qDDrhrEFy4iR6iP+wh1BSnWCELDNR49XGul33j0xqM3Hu3nUfVsaGMFhyHNlKmgw2wMI68+94yXNYcaLDtm4RWnAOcgL7RwrCkB7EUMOspRkSltS2+JJek8tOGyY9cGNYkKWBI7y/3q4UL7Uf6cpbkMGTkjd5f3U/Ibs3zF1lU20WRX9dnwbLhXK4oe0DieXNW9w2Gv1Q82apHYe9U64dcoLss5JjKA4tr1PW5z6fE5XPv0OMcCbDFR26u049gJwYz78mWDlK9/TatiYy+7a65fl88szRwT3XWpAdnu5adZaV9Zhp3rQyPTLmznqap1vRIyUlUoNQD7SUFFACeXxeHgfR/skDjkLNx1YW+FQwB8deFgrSQHSW6se8wGsHJ88Goi3ohduxXyp7NI3g8QIA7Fm369AM25PwBzXuC2bT/9RPleyoT0ahPGOx9/e7i5GJ9cX51f3txfnoDGgX22VSGQTymTLT/qqz843jywdqItmoPq//GeoMa45c/Wg94pJKKmKkhRN6LZBn0Ge1OrFQGFXDuZ0aLwQeWDTsoSpwH7GuA8mzcgxRFojjmDu1jVu54qxJ+7dJ9M0Q8UT3L0p3fhKY83O8ZBwDP7ouy81VQnt/dT5Gr9IiSFIwhmNVvhSxL4P6KP8AsDVUGgagPVfEHhKFnkCJIRdXrx5x+EMmPQ +api: eJztWEtz2zYQ/is7OCVTWlJSJ015U22nVZqHxpbbg+0DSK5ExCDA4CFZo+F/7yxBmZQoOe5Mb41mNBKIxT6/bwFwwxxfWBbfsE9oLV8gu4tYhjY1onRCKxazqU+ksDla4GCFWkiEIsgOblWzygI3CGUjmYHTYEtMxVykUHLjBOmykOqi9A4zmBtdgMtRGEi1MSg5CcA9ru3gVs1yBFRZqYVykGm0oLSDFRcO5toA31lj0HrpBrfq2iKp3Dq3I/SojdZbn+bgLULKLZI9FjGD3zxa95vO1ize1ENhMGOxMx4jlmrlUDma4mUpRVqrHX61lKENs2mOBad/bl0ii5lOvmLqWMRKo0s0TqClWcULpN/dBFO4NAN63g1gwKKtOuuMUAtWkSOPQf2J68O69jL6XbVU8Dn30rGYkQ0nCpzpj2J5yFdRoC25ghdCQWFfUqUTP5+j2cm9VvUwMfoeTceiUA4XaFjE5toU3IVHb0+7PoyqiDV6JtnhCL0S3zzC5Hw/Nvii5JpqO/eSXENlvSF35Bq0av1bCZfXCxdiiQom57dqJaQEXKKBpIvkF5mnJIFwFqSYIyXnZcDMfhaVl5InEgNoqogtuRH0wB6OYuvMoxhwCx+uvnyGTKe+QOUoczzLavZwOe1gKcByH209DxwqrtyxNIbZvRyCRZXtFO1YgFXU4clNAHcPoXeEJ0drth2m7ieBQJeBdayqgjJbamVDul6PRk9nbcVtW6YB+xccPa6zw5YWAX3eHGF3I3iUl30uPoMYzy1inwv99lE9XYuQ/aYYp8fyXxq9FBlmkHHHQYTevORSPFWE0uhEYvHT94oxhmmQhAwdFxJCqokYQTDBDISCm8v3Z/Dr6Ztf7l7kzpU2Hg5Xq9XAzNMTzITTZqDNYmjmKX1J7uUAZjkahIKvieAtq6AtYrtnOR1A0DhDedzh/BEEhNlNjziPNfVGsP39dQzXlxMQGSon5mvqNT3TOy2aJ9q7OJFc3bO2on2j+1asLwpuWoDvGKgiZh13vhPGEUz+/Lqnm2Dxx2w2haACUp1hvdO6XNitIQqiEEoUvmDx6WgUsYI/hNHbEfX8UPFnRKIAH0rJVdjh9sKhbUkbbPBTByaUdVyl/1VltBELsW93sMOuBsTnIaJAqDeHCDVRDg2B0KKhrQeN0eYHj37w6AePDvOoPhu6XGcsZqW2NXS4y1nMhs2+Z4dlu6mxiAVm0RVnw7yRLGabwJoqHg43ubauijelNq4aLqkkO4c2mg7s2qJG6pTLPFjuV48mukf5M154lXF4B5cXVzP4nTtc8XWdTTK5q/rd6N3ooFYSPaJxPJ00vSNgr9MPtmqJ2AfVBuHnKK6qO0pk6o1w6ytaFtKTIDdoxp4K8IiJxl6tncZBiEXNn/dbpHz4e1YXm3rZZXv9unjgRRmYGK5LLcj2Lz/tTPfKMtq5PrQy3cLunKo61yuh5roOpQFgPymkCI0NWRwNXvXBPp3UnE11UXhV41AtwoWDd5KcSm9dOGZLkSIdvNqIt2Ifwwz8FSzCqwEBJKB4268XwuU+GaS6GKZh2eNvInUyLLhQw8aEHZ6NP11/Ph+ffJycXXy+ujh5NRgN3IOrC0F8Krjq+NFc/YF3Dqw70W7ajer/8Z6gwbjDBzcsJReKUFMXZNM0opst+iz1pk4ruouadnLDNpuEW7w2sqro8TePZs3im7sWpDSqIpYjz9DUveu+RvxZSPfJjPwgcenJn96Fp4q2K8ZpiqV7Uvau01SnX65mxNXmRUihM1pj+IpekvAVvSKImK7LX7eA+tmGSa4WngASs6CTPv8AB+di1A== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Publish a message

+ - + Publishes a single message. Messages are published to specific partitions computed from their correlation keys. The endpoint does not wait for a correlation result. Use the message correlation endpoint for such use cases. -## Request + -

Body

required
    variables objectnullable
    + -The message variables as JSON document. + -
- -The message was published. - -
Schema
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Internal server error. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-definitions-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-definitions-alpha.api.mdx index 60a82c59d2f..a58e9adea96 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-definitions-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-definitions-alpha.api.mdx @@ -5,53 +5,328 @@ description: "Search for decision definitions based on given criteria." sidebar_label: "Query decision definitions (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query decision definitions (alpha)

+ Search for decision definitions based on given criteria. :::note -This endpoint is an alpha feature and not enabled on Camunda clusters out of the box. +This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) for further details. ::: -## Request + -

Body

    sort object[]
  • Array [
  • ]
  • page object
    filter object
+ -The Decision Definition Search successful response. + -
Schema
    page object
    items object[]
  • Array [
  • ]
- -The Decision Definition Search Query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-instances-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-instances-alpha.api.mdx index fde29473bec..fd465bcfc99 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-instances-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-instances-alpha.api.mdx @@ -5,53 +5,386 @@ description: "Search for decision instances based on given criteria." sidebar_label: "Query decision instances (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query decision instances (alpha)

+ Search for decision instances based on given criteria. :::note -This endpoint is an alpha feature and not enabled on Camunda clusters out of the box. +This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) for further details. ::: -## Request + -

Body

    sort object[]
  • Array [
  • ]
  • page object
    filter object
+ -The decision instance search successful response. + -
Schema
    page object
    items object[]
  • Array [
  • ]
- -The decision instance search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-requirements-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-requirements-alpha.api.mdx index 0f1190cf9d6..3810e8d691c 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-requirements-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-requirements-alpha.api.mdx @@ -5,49 +5,234 @@ description: "Search for decision requirements based on given criteria." sidebar_label: "Query decision requirements (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWFtv2zYU/isE99ICvrUrhsBvbpIO2Zo0i93uwc4DLdE2W4pUScqOIei/7xxSshVbju1iwB7WNEht8twvn85RTh2bW9of0yseCSu0IoZ/z4ThCVfO0scWjbmNjEgd3NE+HXJmogWZaUPiJg4yZZbHBE7nYskVAVbHjWCdiZqofr+vtOMTNVoIS7iKUy2UI/CZKcJkumBkxpnLDIeDmAAtELGpDAIvWZKpmJFIZhZkWqIzR/SMuAUnU/0EGoac+2/jivSCPFwPR2Rwf0P0kpul4KvHV12WCtt2WkvbjQJhG47ahlu3d9Cu+DpJ/Mv3jJs1Xr2eKIzALDOgDiPhmJC24z2cKNqiGBLgfq/jNe3ntIxQTPszJi1v0UgrB+HCO5amUkQM49v9ajHIObXRgifM30r5aQb5yalbpxwSoKdfeeRARWp0yo0T3HoObby0kooZw9ZABMFP7DlyZoLLuCbIOiPUnBYtqk3Mzf4NFsiMZdKhVhvRomjV3B2XAqGOnHCSbyroLwzlEIx+CJGixSNypmzOzzLX6KRmE1QTn4OVLQrpSZgLR7++RfulSIQ7kdZ6Gwcz98zjvaA+t63YML7nIJKfw1k0xuceorGNT6tBXwPTYYb9XMvSwVPDXbX8Q63j/+Tro1H97R3dBZIR9CmzVswVdPc3vm6R1UIAsrAIQITBL8mUAE+IiEGLgDIyHnUcQkcj9HQwc00W3rGENxfurkFXt3dEAXUFK4f1ACpYEZr1WD296Hkp57jCJsduGjp1V5sr3RLxcR0ASUy5U6SiD4Ga3FwdE1yr06sGLz74MnyOAy/RN9V6EWDHplrZUKpve71QsbtmNz+2QuMSm0URt3aWSVJJ63hA/9cB+1ykc9oxebODHwe7DaIxE8Y6RNgvTGbcnodjkv0o70tIFgJ6DpQd5NgNz649R+z8CWz/K2CDXtaZifjpAasHq+ImOG2U2TycLbKCJKfMwBj8H4IqIsXzbjwKpVWvea53PwSffkAmMxiGwXlyC0NQNRsTBp+h55ZQ9TERqgqs1wnje7xGnEXNCXcLDdGiqba+UZlbwLdupbhdV9wNiilOXgZLziNpZiRw5AGUi363my9AVtHPU4C0orvE0l0y2EpgtfDtj9fB3WqUlTpichEs2A8CXtQrZGff+J05vmJrn/60HMy3oi96F71GqUh6QCJuMMFDL3T7uNmKXTiXNooNxKcILhBnLY8yWNrWQ2QL4ZlCkLkZZJiITRGX+rx0/B6I4CR8+FBhxR9/j3xe8VH5sF2Lrp9Ykkr+fA49CMO9lwBw208b8DpAj124pd52Zm3NCYvUeLMJbcnLBShsOY/bXSXsIL3NhtHb2R/GeQhrfTPAMwyKgD3Sx7Rs0v3s1L2ivc6bvRRjBvH5EekEeP1gouZkJRw8cmrZLrfmDkU7I46dDnpVCGBF9jHckC8leL/pYKWGdsJ8W+ilOUjOph1QVy3Lm/+nUk+7CROqW6qw3cvB7ee7q0H7483l9d3wug0SO+4pPPGxwROmanZ4JDoAMa/8C4LXu/7n29Hs58uJ015OlA3s+JPrphLShXXvk5yXaDumjWhLqzLGfT5g5pjmOUb1s5FFgcfeDDh/3EIsfgMNC87i0A/0G/Y0vQyJa4/QHiSHWRP7a3e+LloVxwCm89S9SPtYe4LcfxqOEJDKtzCJjpHHsBW+oYG/fTqBf9javpg81vnzHAZgNc98g9MgF3/+AZqLvSs= +api: eJztWFtv2zYU/isE99ICsuV2xVDoLU3SIVubtnHaPTh+OJaOLLYUqZKUHcPQfx8OKdmOLedSbNjDmockIs/98pGHa+5gbnky4WeYCiu0Yga/18JgicpZPo14hjY1onJCK57wMYJJC5Zrw7I+DjYDixnTis3FAhVLjXBoBAxv1I1KkkRphzfquhCWocoqLZRjwjJQbAKyKoDlCK42OH0Wp7qstCKhMYKRqwGkKVobe7rwe9BS22GZPWegMqa0Y6hgJoMRp1DWKgOWyto6NJbp2jGdM1cgm+nb4Y0aI/qvSUf6ml2dj6/ZyccLphdoFgKX02cxVMIOnNbSxmkgHEAlBgatO1gYdHzDMvvle41mRVvPbxRFLa+NK5Ci50BIO/RRuVE84hRGtO6NzlY8WfM2qhlPcpAWI55q5VA52oOqkiIFykn81VJi1tymBZbgd6X8kPNksuZuVSFPuJ59xdTxiFdGV2icQOs5tPHSWiowBlY84sJhaZ8iJxcosx1B1hmh5ryJuDYZmsMdKqocaulIq01500Q77k5agdOIO+EkbqruE4VyrI27CpHizZQ4K5jjk8w1utyxSSiHczQ84rk2Jbiw9OtLsl+KUrhH0lpv40nu7nh8ENS7tjUbxjeYa4NP4Wx64/MR5riNT9Sjr4fpOMNhrmXr4GPD3cHE1Q5K/ImrB6P62yu+Dz7XBTKwVswVZuwbriK2LERaMEidZWAZsFqJ7zUykaFyIhdoPFI5gpteuBpS5vosvIQS+wt336Cz95dMQYkdrBzXs0BjRWjWh+rpXs9bOQ8r7HPsoqdT97W51i2RPazDoQLlHiOVfAjU7OLsIcE7dXrW48VbX4Z3ceA++r5abwLs2EorG0r15WgUKnbf7P6jLjQus7U/l/Jask7a0AP6Pw7YT0U6px3Iiz38ONptTcRzYawjhP0Cskb7NByT8KO89yFZCOhToOwox3549u15wM6fwPa/AjaDVtcmxccHbDdYHTej20abzePZYkuwrAJjMfsPQZWQ4m43PgilXa95rlc/BJ/+gsxyEBKzIXuvDXZ3YwYGWWX0QmSYMaG6wHqdbKazFeEsaS7RFTrjCa+09Y0KruAJjzvFg13FcVDM6eZlqOQ8ktZG8oSvAyg3SRyvC21dk6wrbVwTL6h0F2AEjRa+/Wk7uNtdZaVOQRbBgsMg0MZuhezNG7+DwyWsfPqr9mK+Ff169HrUK5VIj0ikCSZ46IVuj5ut2MK5qldsIH6M4IZw1mJaG+FWY2IL4ZkhGDQnNSViU8StPi+dvgMRj9p/3nZY8cdf1z6vdFRebcei81soK4l376FHYXh0HwBu+2kDXkfoqQu31NvO3BlzwiA12UxCW/J2AApTznQ7q4QZZLSZMEZ788NkHcK6OxnQGgVFqFz7mLZNepidXa/4aPjiIMWUQTo/Ul2WtfIXEzVnS+EKBjvZbqfmISc7U6ROT9ZchQB2ZO/CDvvSgveLIVVqaCfKt03ieC5cUc+GqS67YXnzdyb1LC5BqLhVYePTk/efL89OBu8uTs8vx+eDF8PR0N2GE58avAS1Y4dHoiMQ88y/Ejzf93+9vZr9fND49x402qZ3eOviSoJQ1Cu+MNYtQk94L0LzrvTpDSDg7ISv15SJz0Y2DS17M3gymW5hmb6aiBcIWegh/o1wgJ+GZA+uyR4il7W/7u3fyZuo4zhJU6zcvbTTnVPn44fxNYFY+3JT6ox4DCzpVQeWPOEEBb74PDb6tTWXoOa1BwQeZNLP365C4us= sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query decision requirements (alpha)

+ Search for decision requirements based on given criteria. :::note -This endpoint is an alpha feature and not enabled on Camunda clusters out of the box. +This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) for further details. ::: -## Request + -

Body

    sort object[]
  • Array [
  • ]
  • page object
    filter object
+ -The decision requirements search successful response. + -
Schema
    page object
    items object[]
  • Array [
  • ]
- -The decision requirements search query failed. More details are provided in the response body. - -
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-flow-node-instances-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-flow-node-instances-alpha.api.mdx index c4fda7854ce..659a18a4e4c 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-flow-node-instances-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-flow-node-instances-alpha.api.mdx @@ -5,53 +5,318 @@ description: "Search for flow node instances based on given criteria." sidebar_label: "Query flow node instances (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query flow node instances (alpha)

+ Search for flow node instances based on given criteria. :::note -This endpoint is an alpha feature and not enabled on Camunda clusters out of the box. +This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) for further details. ::: -## Request + -

Body

    sort object[]
  • Array [
  • ]
  • page object
    filter object
+ -The Flow node instance search successful response. + -
Schema
    page object
    items object[]
  • Array [
  • ]
- -The Flow node instance Search Query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-incidents-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-incidents-alpha.api.mdx index 0f25906416d..20b8484105c 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-incidents-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-incidents-alpha.api.mdx @@ -5,62 +5,511 @@ description: "Search for incidents based on given criteria." sidebar_label: "Query incidents (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztWm1z2zYS/isY3JdkjqJkx2lSflMk2mVrSzpJdjuVPRqIXIpISIABQMs6jf77DQBS747l1h9upvJMHJNc7C4Wz75wuQusyFRib4QDFtIImMIPDo5AhoLminKGPTwAIsIExVwgWhJJNCESIsQZmtJHYCgUVIGgxL1n98zzPMYV3LNhQiUCFuWcMoWoRIShEUnzhKAYiCoEPLyrhzzLOdNM60BEOq+RMAQp64bO/q6V1NLNoveIsAgxrhAwMkmtEi2SFSwiKEwLqUBIxAuFeIxUAmjCn9x7NgAwV6OK9DPq+4MhavYCxB9BPFKYPbyrk5zKmuI8lfXQEtZITmsCpNq7UavWuVn0r+8FiLl+9P6eaUvFhVAJCBSBIjSVrrHKPcMOFvC9AKm+8GiOvYW5pAIi7MUkleDgkDOlz8FbYJLnKQ2JPof6V6kPY4FlmEBGzNM07cbYGy2wmueAPcwnXyFU2MG54DkIRUGaFVwYbiUVEYLMsYOpgky+hk9MIY02GEklKJvipYO5iEDsP9FAikmRKi1Vhni5dDa2OyoZPjhYUZXCCmn/0aYccKH61lJ4+aBX5mQKr1JX8GxDJ8oUTEFgB8dcZETZWx/Otf4pzag6klYaHZux2trxnlG3dVuuFn6BmAt4zcrlQfv0yBTW9nEOyDuw6PkF+2edlhs81tzfYP6iBX+6wLvBZZgAIlLSKYMIfYO5g2YJDRNEQiURkYiggtHvBSATd2hMQZhIpHRoqcKRqw8mF1zHjTbElFHN/be/rlHJC0UrZlo3rSgPKVEQIcWPUSE44C+H5E3yjK2E0uhYQQGTirAQ3mCntGR11D5BCC6GRtpLu6vSCjJrkCZGM6oSRKxxIUISTKx+JGkB0sUOBlZkOj7cdgY9vxVcBn4bO/i281un+3sHOzjojm+avV7QuRr7/X63jx38a/fLuNMd9/1hP/AH2MGtbqcdDINuZ0Xi/zHsN1vD8V3z+tZf3W01r6/99ti/9m/8znB1+7bzS7PTNk/0nbF/53eG2ME3/mDQvPLHg+BPf+z/0fL9tlGuZNP2W8FgU+j6hhbb3FLostu/GXe6w/Fl97bTxg+VYW9AyjLW/di2vjFpZslLv7EUE5Am21mjU4YyLqDMReYE45TPOjyCYwGq6RHjERyDzhXzvw/PDbmvAWgowGTNIc2OsGObKNAIrFigarm7qWREFNSUZqiDuSLqCM4DVbLeUvFoB2i2hsGdr2EXXPWbQ4O0vj/oXt+ZP3t+px10rgxyvvLJ3zDzVz6xwZfGCJ6oVNLZtLHRd9/KSgD0iEqOg1BOVIJ0Ut6POY+UbCFMmhrv8NlLlAKJKJsePnkFjDBlYb2vg32qMVwWh+u1zm5Zs5FCqyB2abLidlmyS3Mo3S5t5SNzzqTNlueNxmENVxix5QKShamG4yJFFQPXlJFvXia+tr5SXJE02KlankWdDgtUSKXrujsD9NdVTyn5q2t/VD9Zg76mgHp2xa55dvV5Qc9TOXUqp07l1KmcOpVT/+/l1JtUT4fy4z+unNLFw3aCPlhEVSnXUF4cWziZhhyKCU0hctHN2mElIsIE6kcaQaS9WWteFVdowqO5rrCMrLN9WbeMFCrhgv4XoufLsFzwSQrZv/fLsW1uTdSzlKVyyJYDOlVXoceoOOpfttDPFx8/PbxLlMqlV6/PZjNXxGENIqq4cLmY1kUc6n+a7r2LhgkIQBmZowkgEkUmhZIUrQsNJHMIaUxDe/jGKkYZfXa2zHyhBnwmaa3AXQi6h94muu0HVQEyN9DbFb3dOpzwQnmTlLBveI2Vl3ykiWSRZUTMK2xuCyiDTvFy8frh/KD//TIc9pBlgULtVasyqhSkN5FRRjMdfC4aDQdn5Mle/dRoLDVPfeJH7IQheMpTwgy0drdzIBtV/v1GJ8MFndJdue6WR5cgbtsdVZ76YR/vl1xMaBTBD95gTq5zcp1/vOtc7OO9wxWKecFOWefkOifXec51Ph6qDwOmQGgQShCPIOx73MmNTm50cqODbrR0cAYq4RH2cM6lgY55McX11QRI3b5nYf1hWzuVNC3jQqTYwwvrMUuvXl8kXKqlt8i5UMv6oz6ORyKontwwp6cfW8+qEJPykKSJlbp/cvoBIxlUO9oZ57giCmZkbrt65dzDmvXnxufG4ZdpLtQzHPWAiN2hxd1GLKjYaqc+yNYSH8N4qRvKEsJCUDUf6GXWPBMgAkSz2OoKlPIMd31tibBT/nFZoeTX34fmoHUc66+nTvwnkuXWC9ef+U2/ufFc2/fQA90UWEPzUAu1sdXafLapt92l20D7RlPtwN0dSds9KnzeOL+oNT7Vzn8enn30Pp5555/dxqezP/Gq2bRuB1XNnsZmD2Ytcd0D2Rh5sUM1o9VUzJq8HIaxEy8P67kVO4/SWE2bNHZmSUYLi4HNKRF9b2mCQswNAEqX3YeS9isQ0mKv4Z7th4deYKJcyLOsYCbVsWnVOlvzKyeodPxLaQi68eItsPa4DbHX9gm6sxLRmavdyvp+leGmVCXFxA15Vg1Orf6fpHxSzwhl9VKErLeaN7eddrN2HbT8zsCvnbkNVz3Z7zA6AmWEbehhGkMbw2jvzJTY+909L9YJ/jTE9rZDbGUkUvCk6nlKqOmXGQAsylQxwis74wrWetbLBvwRXiy09W9Fulzq20Y09kYP6/ygr5YOToBE1j9skMIte6g1E1Y0eVqYD2y7X0GXTrWiGYaQqx/SPmykvF53oD9OTMoJvYxHeo0gMz29R2bYw9rNDchMkDb3FjglbFrYGGZ56p//AVb1Nmo= sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query incidents (alpha)

+ - + Search for incidents based on given criteria. :::note -This endpoint is an alpha feature and not enabled on Camunda clusters out of the box. +This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) for further details. ::: -## Request + -

Body

    sort object[]
  • Array [
  • ]
  • page object
    filter object
+ -The incident search successful response. + -
Schema
    page object
    items object[]
  • Array [
  • ]
- -The incident search query failed. More details are provided in the response body. - -
- -Unauthorized - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Forbidden - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Not found - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -Internal server error - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-process-instances-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-process-instances-alpha.api.mdx index 4d69bf8894f..024ebcd1ce5 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-process-instances-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-process-instances-alpha.api.mdx @@ -5,53 +5,385 @@ description: "Search for process instances based on given criteria." sidebar_label: "Query process instances (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query process instances (alpha)

+ Search for process instances based on given criteria. :::note -This endpoint is an alpha feature and not enabled on Camunda clusters out of the box. +This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) for further details. ::: -## Request + -

Body

    sort object[]
  • Array [
  • ]
  • page object
    filter object
    variable object
+ -The Process Instance Search successful response. + -
Schema
    page object
    items object[]
  • Array [
  • operations object[]
  • Array [
  • ]
  • callHierarchy object[]
  • Array [
  • ]
  • ]
- -The Process Instance Search Query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-user-tasks-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-user-tasks-alpha.api.mdx index 67590b5a46e..f88215d54e7 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-user-tasks-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-user-tasks-alpha.api.mdx @@ -5,54 +5,314 @@ description: "Search for user tasks based on given criteria." sidebar_label: "Query user tasks (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztWUtz2zYQ/isY9BJPJZJJkzblTXUeddukri2nB1kHiFyKSECABUDLGg3/e2cBUqQk2pE6menFnrEtEbt47H77LXa5oZYtDY1n9MaAJpaZL3Q+oimYRPPSciVpTK+B6SQnmdKkaqUMWTADKVGSLPkdSJJobkFzFtzKWxnHsVQWbuU054aATEvFpSXcECbJjIkyZyQDZisN82dhoopSSZDWhMC0WI9ZkoAxoZPzf8eNtAmK9IwwmRKpLAHJFsJv4pwVlUwZSURlLGhDVGWJyojNgSzUfXArrwHct1kr+ppcvb2eksnlBVF3oO84rObPQlZyM7ZKCRMmXnDMSj7WYOzBg3GrFxTpd/9UoNc4dHYr0VRZpW0OmqRgGRcmcFa5lXRENfxTgbG/qHRN4437yjWkNM6YMDCiiZIWpMUxVpaCJwwdEX426I0NNUkOBXOjQvyZ0Xi2oXZdAo2pWnyGxNIRLbUqQVsOxmko7WZrpJjWbE1HlFsozCnzZBxE2pvIWM3lktYjqnQK+nAEkZSxSlhc1SS0rke9486aCecjarkVsIXaX2jKa6XtlbcUreeoWbIlnLRdrYrenri0sARNRzRTumDWP/rhBe5f8ILbI2WN2+MkszsnPjDq7t7qreIvkCkNp2jWg/a5ZEvo7DMaWG9Aqa+wG+Tb+Cd+m8ThmTRYDej+AofYEI1BHprXSxw/4xdYf9UjP750HrHMwiAumTF8KWF4EAQUIO3FMKQTJlOeMgvvtarKx0XwkIMSpVZIZW8g45KjRX4/+lCN6oU0lskEjle0IBmeyhy3oweOf8c0R3Y1xyN134GSFcOGv2OiGhrpYRYtOmXmy6dmG+8ceLbwHRLdFzmUGAqE2nOSKZU0ftsvougQxtMcuuTXhoipXKLKKkHaGQLH8N+cwU+lPqssExd7bnoMNBnXxiLlfkLfnOB0NJ9g/1X3MWrzBj2F23oaR5Jb47SvctH+AU6MhP+ZytrRk6nkQQ586Py9SH6IHI9QPZaj/g92xScnGFCDC/03g17taaChxpYX4LRUUQo4XS9TQqjVTXmaVlrBaQqPJxi4t6AlE++ULq4gAw0yGQbtgfs+gTbcU+QR97CkMlYVvwJLQQ/GIEtTNy0Tl7vkOAA4rjS3w149TAStOBYYrEsLAcHBnC/x2o+lhstz7lPvYauMpFNwyYuqoHE0ogW795+fR1Hv3vwqGspkSO3DWXCQEJ3ky6PzmmfHjHEBaUA+KA1tFUOYxhOoO55CSrh0J2pplCxUun40AZZaLQQU3x8mwt1dTcill2zWJd6nhBniBRd+9dnVu3Py88tXP82f5daWJg7D1WoV6CwZQ8qt0oHSy1BnCf6i3JnzkQZSsDVZAOkgQjrGJqaEhGc8IVY1LvObQWj4830l+7rRR8Kp0vwAWBNyc3VBeArS8mzN5fJw6d16aqEqGy8Ek19oh4OhCmx3FVMVBdPrtjjeXaDJQNXXrw0/vBgMjV+n00vipyCJSsF1DSx2AZqFdmD/MuoD/8coQjpyHj/iJJLAfSmYdNDaPw6XpOhw6w7GG67/Rp5Rmi/5/rrBzuWkAfEbfyIfha+GonAiCVoZaZOA1koTlSSV1pCSVc6Fmx6psl27raGeYu0p1p5i7YFYq0e0AJurlMa0VMZBh9mcxjTEjDd2bczQpzyK3Rl95y4Ssw2ttKAx3fiQqeMw3OTK2DrelErbOrxDf+wUyDjsQ6uFjFAJE7lf9tB1OIDlcXukvZ7ke2ZhxdbOlGXTvOumfh29jobvJUrbB2bELqc/oQdejwzaaTGqB6f1wsdMXGPpZSCp8IJzjWrePAtgGvSkQutvAdGs52bH716IjpoP71qY/Pb31Hkaieyqa52+vWd4S97tPblCK9qWUR3ouuqpe9YrmrqH+yXPwIgvaLqB4TIkGi4yop378yOT7G6rh7ZZ21npj7qGyvZKO0cXO9zMtl3bTrpp1vqO7Lzrq/p+abTthkZ7vc7Zxru338XEZ7UL+Ew53zbheIgS3GZ7v6dR8Pww9C8vHIMlqigq6dKYXJIVtzlhPdQ1HX7kNsETwPvttte0XfYPP0KaioI8DzBifFi32WvJbV4tgkQVbWN/+38h1CIsGJdhs4QJzycfbj6+mYz/uDh/+/H67fh5EAX23jcjkF0KJnv7cPfv/tuSZ+41xtn+oTdd9n56zfKNX7M0NGPh3oalYFwi8TkIbJpEMKNdIqAtsvF1hKfzGd1s0Pw3WtQ1PnZr03g27+IRv9Ujmrsq1IWboyB67t06nuImugA96AbWo1ZjkiRQ2kdl572Mdvnn9RS5snmJVKgUdTRb4QsmtqIxxUh3MHMU7J5tqGByWbl4p35O/PkX+6C5xg== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Query user tasks (alpha)

+ - + Search for user tasks based on given criteria. :::note -This endpoint is an alpha feature and not enabled on Camunda clusters out of the box. +This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md) and not enabled on Camunda clusters out of the box. See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) for further details. ::: -## Request + -

Body

    sort object[]
  • Array [
  • ]
  • page object
    filter object
    + -User task filter request. + -
    variables object[]
  • Array [
  • ]
- -The user task search successful response. - -
Schema
    page object
    items object[]
  • Array [
  • customHeaders object
  • ]
- -The user task search query failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/report-error-for-job.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/report-error-for-job.api.mdx index 861fdb17257..17393bd40b3 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/report-error-for-job.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/report-error-for-job.api.mdx @@ -5,56 +5,259 @@ description: "Reports a business error (i.e. non-technical) that occurs while pr sidebar_label: "Report error for job" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/SsYnOypLCqpkzq6qYrT2o0djyy3B8cHkIRE2CTBAqBlDYf/vbtYUqI+nPrQ3uSMHRIf+7C77wHgVtyJueXDe36pQ/7Q47G0kVGFUzrnQz6RhTbOMsHC0qpcWsukMdqwI9WXfZbr/MTJKMlVJNJj5hLhmI6i0li2SFQqWWF0BJNUPgcTjzrsf895jxfCiEw6aRC44jm8ABZ0/yGX0K0QuRAugWcj/y6VkTEfOlPK7eVNE8me5JLpGWBLDwBzbJTITPBhxd2yQMsqd3IuDXTNtMmEo6aPp7yuHwhCWverjpc4Zxsx0jA7d9gliiIFTxE8eLS4gmoXTIePMnLopdGFNE5Ji70+bGMdS3zZ9YKiGkE/RXGh0pSFksFqASCGd5cwkbfjsJXJZ1gXRbTBts5AqHndI7grCL2Y70EctYYyGkGYsOBnBQOZiGOFI0XKvPcve1F6PC/TVISppFAB6rMwChu8x2srN51I7Evj5e23a0Zx63ivcutE7pRw0md3ZZwJ5xtSDaxjNgLjLQN2wkP2fANMxCEuMXrR+L/h1ipxW27VXRbedxIJ3HHK4TgUzzm2T4hLQCyaZgudWwrH+8HpDxKhbLswoOiazGDkdDDYT5kmXTGLhRNoINcOgpSqmNx6hbgwDXzLftol8NbS2A2NZLF0QqVtgoRlNDAEaJWz+8mXMft0+uGXh6PEucIOg2CxWPTNLDqRQAAIsjbzAF7xF8cd9xks3yC3l0jxDtvWkmG2kJGaqYg57cPRLJthsvanbVNv1FvtcHa1A5RG8W0ijtjd5IJBUIF2syXuWjvQfs5MlCnaEKEu3TBMRf6EqWrYsAu6jWLLLBNmtW9tAoAhIL4r7b/uYD+/37GNxPh9Or1hZIJ2FKIUMKQBQicylauszPgQ+AVv4oXePg4GNdrEjL/BE6DvSwHue2ptuwPkyDTkmax5x0jT0X+VGW3UXG3jAtA6F7wh8WfyiHR5uk+KU9Ic7bRobq5gA2F0KrXymukyP8jrIK+DvH4or09vltcTaQtQsG1hNEBjbCWDW6SB5aTLPrtauwmHv+kcfc289qBlIVziDvI8yPMgz9fl+WHfhRJ8wSgb5CHdSP13nMFPj+0vOVKcv+getHbQ2kFrr2kNOjPpEh1jPUNbTx0sawx5AEehDSq6XNaBVxxWLqR5bqsipYGw8IpEUwPXqwRM1MMKKzJ18IwZ2fjexm4SV0sa/4GcEPBu8rADSy+tU2ORweVWsDM2Ob+dst/gEF6IpQ8mQm6aPhucDfZaxaGvWBzdXDDykKjX2Q5as6jrvWZp8FsM+5qOlbB5Kbe8xWkUnlDCzcGMSoz/ihINnreO7zQIWujhS0uUy7+mPte4lU3W9aLzF5EVJMROfWdNtM0qzLq9m7fak3Wm/aoaKu36h5OAGRSQQf/dLm0hBjNfQspgrt+CgbpUNurEK0pL6zBOPQ77tIQ7E+I2Fbh22FfqYX8SInvXx1wTIduddw6Wy7APcEFE01b/h6kOg0yoPGggbDAeXd1dfx6dfL0Yn1/fnp+Axb57cT6mqIxM5J11UNWxOYfQKdDJtsPV+tT5n6qUDUWw/BXAzqNyJK0PQtXI+B5rlhaGDle1S1IyMJDUeM+rKhRW3pm0rrEZqGOW0P6wJoFXe6wsPsNOMROp3a6QdZ09mjTFqGO2v/y5d91No8iXnn5piW/wCNPXpdf6AUYmUsQgAVwUdY4J+mSKJtaTd4qhda+dMYoiWbhXxm7cClCrqy3y5tvtFKXXFGIzEpMRC6wDw98h/w7/4EX7sHhV+/aKw8EwL0lkZBd//gEAD+RO +api: eJztWE1z2zYQ/SsYnJIpLSqpkya8qY7TOs2HR5bbg6sDCK5E2CTAAKBkDYf/vbNYUt9OfWhv0oxGIrDYxe6+B5Kv4V7MHU/u+CeT8mnEM3DSqsoro3nCx1AZ6x0TLK2d0uAcA2uNZS/UAAZMG33mQeZaSVG8ZD4Xnhkpa+vYMlcFsMoaCc4pPWeC3Zt08LfmEa+EFSV4sBi44VqUwBN+b9I/YMUjrjByJXzOI27he60sZDzxtob97U1yYA+wYmbGfA4hAI+4kzmUgicN96sKPSvtYQ6WR3xmbCk8Db095207pRDg/K8mW+Ga/YjSaA/a45SoqkJJgcHje4c7aA6DmfQepMcsranAegUOZ0PZLkwGeHGYBVVVmgyoiktVFCwFVgovc8jYUvmcCd3b4SiDBWhPFe1iO2+VnvM2onBfwDkxPxJx1DsqyYJiVtYsVAaOiSxTaCkKFrJ/PBol4rouCpEWQKVqI74QVuFAyHjj5XqrEsfa+Onm21dGddvKXmnnhfZKeAjdXTtnwoeBwkhRMCdNBT0CDspD/sIAuGDic2uWXf47aa0bt5dWu43Cu61GTiPulUc7JM8ljo8JS7xtaZmrjHZUjtfD8x80Qrl+YzNjN2BuI34+HB6HTNeujGXCC3SgjWcLUaiM0noCuJU1aQHlT4cA3tsauyZLloEXqugbJBwjwxQypjS7G3+8YO/P3/wyfZF7X7kkjpfL5cDO5Blkyhs7MHYe25nEL9q9HLBJDhaxvUKIb6FtQxnmKpBqpiTzJpSj2zbDZh1v2y7faLY5wOz6BKit4vtAHLHb8RVTGWivZis8tQ5ChzUzURfoQ6Sm9klaCP2ArerQcBh0P4qry1LY9bm1G6CNuPPC1+5fT7CfXx/4RmD8PplcM3JBJwpBSrk+ECZRKq3KuuTJ+XAY8VI80tXb4bBFn9jxZ2SiGTxWhdABWvvpKM1KY6HDT0iMOC3/q84Yq+ZqP+6At5te8A7EHygj4uX5MSpOiHN00qK7uVqAZnRX6uk1M7U+0etErxO9fkiv98+m1wNxS+kwtrRGz0NtgcnaWtC+WA3Yl02ajgm7devr1vU3WpaabHWi54meJ3o+Tc83xx4oR5phlS3ikJ5Iw3ucxVeP/Tc5Ylx40D1x7cS1E9ee4lob8RJ8bjLUM4wL0EFZI+HxvUld3NDDZRsHxqFyAXbRqyK1LXjCGyJNm8Rxkxvn26RBRaaNF9iRnfdtnCZy9aAJL8g5BT5sHk6g9NIndSHKWmeCvWPjy5sJ+014WIpVKCaG3HX9bvhueNQrmj7hcXR9xShDgt7WcdC7RV4fdUvGz3EcNB0HsrbKr25wGZUnBWHBjmqs/xoSXbzgHa/JiEfdn489UD79NQm9xqNsvNGLLh9FWRERt/SdDdB2VZjN+Hbf2gDWmQm76qB0mB8uAuuoIMPBq0PYXl8F9klTlrUOR7Ced7LRVr1kUTuPdYp4oSRoFzbfKXC92WeaYX9SRPZqgL0mQPYn71z5vE4H0pSxpGXr37QwaVwKpeMuhIsvRl9uv34YnX2+urj8enN59mowHPhHH2qKzCiF3toHqY7dfQiTujfpfsLN5q7zP6mUHURQ/oqrQiiNoA1FaDoa36Fm6XjEk7V2SUyeRh0b73jTpMLBrS3aFoe/12BXPLmbbkAQ2J4ph/8znsxE4fYVsu1kX4w7MeolOy5/Ht13Nyj0KsCvqPGKR/wBVhvptZ22Ec9BZGDDpmjygkKfTdDFZvGBGNpG/YqRlFD5J2x3ngqQq+sj8vrbzQSp1wmxJZHJiiXqwGJJGzahJIHRYazhhdDzmghGPvHzD4Gf41I= sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Report error for job

+ - + Reports a business error (i.e. non-technical) that occurs while processing a job. -## Request + -

Path Parameters

Body

required
    variables objectnullable
    + -JSON object that will instantiate the variables at the local scope of the error catch event that catches the thrown error. + -
- -An error is thrown for the job. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the given jobKey is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/reset-internal-clock-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/reset-internal-clock-alpha.api.mdx index 57756c511a2..46a49e88c9d 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/reset-internal-clock-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/reset-internal-clock-alpha.api.mdx @@ -5,29 +5,32 @@ description: "Resets the Zeebe engine’s internal clock to the current system t sidebar_label: "Reset internal clock (alpha)" hide_title: true hide_table_of_contents: true -api: eJztVt1OIzcUfhXLV4sKmeyWbWnuIpZtqba7CEIrFbjwzJzJeJmxp7aHEEWR+hp9vT5Jv2NPIARW2ov2rkhoYvuc7zv/9koGNfdyciWPG1vcypt9WZIvnO6CtkZO5Dl5Cl6EmsTvRDkJMnNt6O8///JCm0DOqEYUrCuCjWJF7xyZIPzSB2pF0C3tQ0vljTZzoUOU05DXRjhSzQFLjK7NrNZe2I6cYmqBRe+p6htRWQfB0DvDAJFi4Ls2xroWBuRUqzsNOVXBJCaplccuGdFpY6hkUiV8R4WudCEGymszmUyMDTSwkyk7C6+YXBlxpZquVqIiBXK6eZU5qgi+FZTFk4PhxI/acg8KpWjVEqzC9/lnKqKnRa3MHPhwtupZGK40pDyUro3cl9DurMFSTlbyzfiQP08zMHtweAGffF8U5D3i0iwBheRs4r4V75Fc78u34/FzsKl5zBo5h4jZIiasFItaNyQ6Zxl/E2lHf/TkwwiWFhaKJjCm6rpGFzFPGRTyhtpvPnsmWElf1NSqF5jFWZIUJQWlG2FTjOBTEsxhA6J0df7+WPxw+Pb7m1d1CJ2fZNlisRi5qjigUgfrRtbNMyz5n+X2RgIhQmCH4KsSYuCEh7AN9RQ0+a3Up2gNZouw7Chlgn/BzmQW1o/K7Ew63XylDw4hglTFBYigyN5puds8U3F5fip0ibDparmJ6RPqqFOpvmEMlds+TPJGmVvOYNCheZF0l8X3bavcUtjqBQIA+YA63XJDcg3MyW3bj61v3zzD5uL7aTY7EwlCFLak2JCB+2UgYidabXTbt3JyOB5jpe7T6rvxeM2YnPGv8MQIuu/gfhoBO+6gOFqLPCe06Jg2sAv9+C9lxjqN4bbDC6LHXMihiN8lj9b8B3cp1LbEaWd9LB0Vaqyy2LZZ7FLsenJ35HjYrmATwiFXqVnWqPFVDdX1ZNVZF9bZHWfiTjmNqZnqj49TU22KBdiqqRPh86TxgVEtbZw5Vm1vSiWOxPnJxUz8qAIt1DIGkSmfQh+Nj8YvorLoFxCnZ6cieZhKbmsMbGC5n1+ETcJfA7xe33AgMbJ0WF6wWgpPTsqRm/Yc94dSGPgiOq+TEHbSj/ebAvn5t1nMsTaVjepDrp8bwllBCpPl49Hr53UFY7k9CttCN85I1NZChxrXzyNe0fQY1o4bB4OUMP+Zl/O1RfshnYhfE6N4PeKkpMrZjMY5kPt8BLqsSGoP37yxedYqbbKBwmfH018uP76bHnw4PT75eHFyAMRRuA/ReS7dVpktO+LVv3vJv4o3396u46vH6+H/J8N//GQYqjvQfcgwLLXhfotlsRomz5WM7qbnBWYPeibNjyu5WuVAunTNes3buN3dEvs3j+OGVwCsSZVoFh5Wt7Tk0sbDowtxLjU9G/DFVwD36MNIPPt0wd31DyERoUY= +api: eJztVttu3DYQ/ZUBnxJUljZp0qZ6M5ykdZGmhr1pgdp+oKjRijE1VHjxerEQ0N/o7/VLiiG19sZ2gDy0b11godVyOIdnzpmRtiLIlRf1uTgyVl2Jy0K06JXTY9CWRC1O0WPwEHqEPxAbBKSVJvz7z788aAroSBpQvBeCTWEqOocUwG98wAGCHrAAJNkYTSvQIcVpdQWawKE0BxxRXtCy1x7siE4yNGgP0WMXDXTWgcMQHXGCBDHjXRBZN0gDDfbyWlsHsgvoGKSXHhpEglETYcugEvyISndawQx5QXVdkw04oyO1o9UUGFwSnEsz9hI6lCE6vHxSOezQISms0srBvOLLoX0KkloY5AYaBB+bj6gSU9VLWuEFaYIucjA4NCg9+vKCRCEc+tGSRy/qrXi+eMGXzxVY3hJeSw8+KoXed9GYDTgWZ1f3vXqXYirEy8XiYbJDulMNnbMOrEqCtbDutUEYneX8u0o7/BTRh1IUQlkKSIFzynE0WiWdqtHZxuDwzUfPAFvhVY+DfAQZTnIktBikNmBzjaSHHNhgy5Y4P317BD+8ePn95ZM+hNHXVbVer0vXqQNsdbCutG5VuU7xl+OelrDs0eGu+LJtNWNKw2RGdEGj35M+V2s+NoTNiFkJ/iVqkY8lCnG3mcnk1d1V+OA0rUQhOjZgELWITov7zXMIH06PQbdIQXebXU0/g057OhkN55CNjaFujKQrVjDoYB4FvY/i4zBItwHbPQIwFcIHGeIeDcEeWKHbP7+m8O3zB7nZfD8tlyeQU4CyLaaGDNwvMxCTGDTpIQ6ifrFYFGKQN/nuu8Vi4pys+FcwIcCb0UjKI+AeHU0wWIezfxIxTT5IUv+WMtbplb6PW4rpTgsxm/h1ZjTxpxADht62ohaj9ck6MvSiFlVq2yp1qSiER3eNjoftVkRnRC22uVmmuqq2vfVhqrejdWGqrlmJa+m0bEz2Hy/nptqZxVglTZ8BH4rGCyQH3JE5kkOkVsIrOH1ztoQfZcC13KQiMuTnqV8tXi0ezcqhX8h4eHIMmWG23N4Y2KXlfn40bQ7+msTTdMmFVNHpsDnjbbk8DUqH7jBy3W+tMOOl7Hyfg0Qx/3i7M8jPvy+Txpo6m7bPWj88CKuCzueTL8pnD311cpzaQ9lhiJRmJK1grUMPco+YMtEHJlQIoxWSTw5mvfZg3+UV+C0jwrOSRcnO2Y3GlQ59bEplh0rlbbfXxtimGqSmaobw1dHhLx/evz48eHd89Ob92ZuDZ+WiDDchkWfrDpL2zpEe/fcf8k/Sk+/pfeLbu8fD/68M//Erw+zugDehGo3UxP2WbLGdJ8+5SHTz6wUGfqvL8+NcbLeN9PjBmWnivz9FdBtRn1/ejRu+mwrRo2zRpWF1hRu2tlI4hjSXTOQDfPEtgHv0diSe/HrG3fUPIRGhRg== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Reset internal clock (alpha)

+ - + Resets the Zeebe engine’s internal clock to the current system time, enabling it to tick in real-time. This operation is useful for returning the clock to @@ -37,14 +40,57 @@ normal behavior after it has been pinned to a specific time. This endpoint is an [alpha feature](/reference/alpha-features.md) and may be subject to change in future releases. -## Request + -
+ -The clock was successfully reset to the system time. - -
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx index f8caf5b59dc..11905fefd10 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx @@ -5,51 +5,183 @@ description: "Marks the incident as resolved; most likely a call to Update job w sidebar_label: "Resolve incident" hide_title: true hide_table_of_contents: true -api: eJztV81y2zYQfhUMTsnUFpXUSV31pHGc1m2SemS5Pbg6gORKhA0SLABK1nA409fo6/VJuguQMvXjcQ499KCDRgSwv/i+BRY1d2Jh+eiOXxWJTKFwfHbCU7CJkaWTuuAj/lmYB8tcBky2MkxYZsBqtYT0B5Zr65iSD6DWTLBEKMWcZrdlKhywex2zlcSpGFgBCVgrzJrWUR+ct4oi//z1N1l0RoI9YXOtlF5BymKUzKT1Ngd/FPyEl8KIHBwYirnmBQ4wwi6uX2CNMpKCLoXL8NvAn5U0kPKRMxXsZobyTM+3UwuhUWoD1LdJBrngo5q7dRlcOViAwaW5NrlwYer9GW+aGbmzpS4sWNJ4Ozyjv22X074vTC3HzcVMexs64M0JPxsOD+uWRi9ROWW4u4IMFNqxpVAypXATjeEhhqgqylLJRJBqhEqxgvybe0t26l5W2w7G7DpIshSckIrp+B4SD3cQjNGxLNjd5OMF+/7s3XezV5lzpR1F0Wq1Gph5cgqpdNoMtFlEOKQfyb0eMAzeAKa7JiaIFMXQp1CUUAnGIfDMlpDIuUwIAxdy9cHQ1gf4WxBCWESHjfITRBuoLNKpWPSRqozkuxwYs9vJFfN4yPkaFfZde525qBTZELGu3ChWonggoJx06qDTXS+2ynOifsu3bQdoyDrhKvsi0759u2ebaPHTdHrNggmW6BSwhkyondYRJZHLQuZVzkfILhyJxzB6Pxw2ZJMQ/4pMCgaPJabvqbWbDpIj14hzsOYTkwXGVST/FTLayIXc9YuOnrDgLYk/hIyapvEF9VIxrqTLto4COh3aApvrqjgW2LHAjgX2bIG9O3RjYS60y4Z4CMbglukkqQxeyGyVSeXNU0/Q+abrGqw7Vtqx0o6VdrjScBEb4Eyn1ORi5+2bYux1RzzqLi4b1b07rIl8Z1n5UBAcMMuufa4M7hKvQw01SP06Q4vNqC61cU20JICWwkiBMXg8aTnUWschpbE5z0Ic+1jSAvXoXY4XIseLVLBzNrm8mbIf8YWwEmu/t+Ry2/T58Hx40CqJPmNxfH3FQoaBib3ToTNLZX7QbBD+GsO+17eAJ5l06xtSC9sTgzBgxhXBsWFI689bp3EQwpnw8bHjzc+/Tz30sphrr95SYD8QQgUhDJEPB2/26YbBUtUkOkddf3Qi5XyDI3qJJaqyjhI64Xi+Ar5byG/7purEPoUV9lvwyN4MCJTAnO7EXKDlKh6guygJapv/WOk4yoUsotaFjS7Gn2+/fBiffrq6uPxyc3mKFgfu0fnkidG5KHpxTMKzaNOV7SZbP90U/6uXaou+g0cX4RmDj9Km3ba6Ldi7zbvVovxo+xHbq1nkWqi7O17XsbBwa1TT0DRelmaN87OnMvV1nUpL33hEzIWyu8/e/o69mrQP5Nfs5cfwwZTaSVGs/WGhKhrh5wOmsf0yb2YonoFIkf0UZZAYJwmUrqf77G1PRbc5+q5/vaFy+RfLSsf3 +api: eJztV8tu4zYU/RXirmZQxXKmmWmqroxMpk3n0SCPdpF6QVHXFhOK1JBUHEEQ0N/o7/VLikvKju04yCy66MILQ5Z4eR8855C8HXg+d5DdwJkWskDtYZpAgU5YWXtpNGTwmds7x3yJTA42jDtm0Rl1j8VPrDLOMyXvULWMM8GVYt6w67rgHtmtydlCKsVyZBoFOsdtS+MWHfrg9dbk//z1N3n0VqJL2MwoZRZYsLxlvpQu+Bz9qSGBmlteoUdLOXegeYWQwTKvj9hCApKSrrkvIQGLXxtpsYDM2wa3K/uILTOzzdJialTaCBJwosSKQ9aBb+sYyuMcLSQwM7biPn56dwR9P6VwrjbaoaMZb8ZH9NgMebUeSzpWcXuHxfqCjqBP4Gg83j23tuZeFliwgntODrTx7J4rWVC6wmhPGGYd8LpWUnCamtbW5Aqr724d+enWqtoMMGHn0ZIV6LlUzOS3KALc0TDHgknNbi4+nLAfj97+MH1Vel+7LE0Xi8XIzsQBFtIbOzJ2ntqZoB/ZvR6xqxItsoq3xAReFJJickUF1Wi9RMdcjULOpCAMfKw1JENLH+EfQIhpER1Wkx8hWkHlvJV6vo5UYyVsc2DCri/OWMBDzlqp509Dhzkz3ijywXPT+CxXXN8RUF56tTPodhTXVBVRf+DbZoA+Aee5b9yLTPv+zRPfRItfrq7OWXTBhCmQzYyN2hkCURGV1LJqKsiOxuMEKv4Q396Nxz35JMS/oRLN8KFWXAdqbZcjNauMxYE/oTCpneda/FfIGCvncjvuCPpHLGAg8ftYUd/3QVAviXEhfbmxFdDuMAhsZhq9F9heYHuBPSuwt7tOrIlmtMqWeIjWGsuMEI21WLBFKVVwT3eCZWw6rtH5vdL2StsrbbfS+gQq9KUp6JJrXKAO3XUzSJcHl0u7tTOsT8PNsgmpJODQ3i+vz41VkEEXNdRnadqVxvk+62pjfZ/eE0D33Eqeq0hLGo5aW3JIGcFVGfN4iiUN0B19WeMJrxpdcHbMLk4vr9jP3OOCt2FtKeSm6+Px8XinVzJ9xuPk/IzFCiMT13aHpVuS+U630fhbHIe7vkPRWOnbS5oWlydHbtFOGoJjxZAhXvBO79EIkuHPhyVvfv3jKkAv9cyE6QMFniZCqKB1MfPx6PAp3c7PgmqEqapGh61Tz+MFh68VJlTjPBWUgJICtQvEHnqqpdmnOMJ+jxHZ4YhAicxZ7phz6csmHwlTpSJOWz1zZfK04lKnQwiXnkw+X395Pzn4dHZy+uXy9OBwNB75Bx+KJ0ZXXK/lcRHbotWtbLvY7vGk+F91qgP6Hh98WisuNfExLFs3CPZm1bc6SCDbbGLXNDtNBt3dQNfl3OG1VX1Pn782aFvIbqaPMg26LqSj/wVkM67cdtu7vmKvLoYG+TV7uRneWdLwkes2bBaqoTdI4A7brc68n/YJlMgLtCHLaDERAmu/NvfZ055Et9r6zn+7JLn8C8tKx/c= sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Resolve incident

+ Marks the incident as resolved; most likely a call to Update job will be necessary to reset the job’s retries, followed by this call. -## Request + -

Path Parameters

+ -The incident is marked as resolved. + -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The incident with the incidentKey is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/sidebar.js b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/sidebar.js deleted file mode 100644 index 5aae0ea5757..00000000000 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/sidebar.js +++ /dev/null @@ -1,342 +0,0 @@ -module.exports = [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/camunda-8-rest-api", - }, - { - type: "category", - label: "Cluster", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-cluster-topology", - label: "Get cluster topology", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "License", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-status-of-camunda-license", - label: "Get status of Camunda license", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Job", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/activate-jobs", - label: "Activate jobs", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/fail-job", - label: "Fail job", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/report-error-for-job", - label: "Report error for job", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/complete-job", - label: "Complete job", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/update-a-job", - label: "Update a job", - className: "api-method patch", - }, - ], - }, - { - type: "category", - label: "Incident", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/resolve-incident", - label: "Resolve incident", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/query-incidents-alpha", - label: "Query incidents (alpha)", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-incident-by-key-alpha", - label: "Get incident by key (alpha)", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "User task", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/complete-user-task", - label: "Complete user task", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/assign-user-task", - label: "Assign user task", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/update-user-task", - label: "Update user task", - className: "api-method patch", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/unassign-user-task", - label: "Unassign user task", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/query-user-tasks-alpha", - label: "Query user tasks (alpha)", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Clock", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/pin-internal-clock-alpha", - label: "Pin internal clock (alpha)", - className: "api-method put", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/reset-internal-clock-alpha", - label: "Reset internal clock (alpha)", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Process instance", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/create-process-instance", - label: "Create process instance", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/query-process-instances-alpha", - label: "Query process instances (alpha)", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/cancel-process-instance", - label: "Cancel process instance", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/migrate-process-instance", - label: "Migrate process instance", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/modify-process-instance", - label: "Modify process instance", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Flow node Instance", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/query-flow-node-instances-alpha", - label: "Query flow node instances (alpha)", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Decision definition", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/query-decision-definitions-alpha", - label: "Query decision definitions (alpha)", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/get-decision-definition-xml-alpha", - label: "Get decision definition XML (alpha)", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/evaluate-decision", - label: "Evaluate decision", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Decision requirements", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/query-decision-requirements-alpha", - label: "Query decision requirements (alpha)", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Decision instance", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/query-decision-instances-alpha", - label: "Query decision instances (alpha)", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Message", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/publish-a-message", - label: "Publish a message", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/correlate-a-message", - label: "Correlate a message", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Documents", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/upload-document-alpha", - label: "Upload document (alpha)", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/download-document-alpha", - label: "Download document (alpha)", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/delete-document-alpha", - label: "Delete document (alpha)", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/create-document-link-alpha", - label: "Create document link (alpha)", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "User", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-all-users", - label: "Query users (alpha)", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Resource", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/deploy-resources", - label: "Deploy resources", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/delete-resource", - label: "Delete resource", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Element instance", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/update-element-instance-variables", - label: "Update element instance variables", - className: "api-method post", - }, - ], - }, - { - type: "category", - label: "Signal", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/broadcast-signal", - label: "Broadcast signal", - className: "api-method post", - }, - ], - }, -]; diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/sidebar.ts b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/sidebar.ts new file mode 100644 index 00000000000..d4c13bf216e --- /dev/null +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/sidebar.ts @@ -0,0 +1,348 @@ +import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; + +const sidebar: SidebarsConfig = { + apisidebar: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api", + }, + { + type: "category", + label: "Cluster", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/get-cluster-topology", + label: "Get cluster topology", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "License", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/get-status-of-camunda-license", + label: "Get status of Camunda license", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Job", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/activate-jobs", + label: "Activate jobs", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/fail-job", + label: "Fail job", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/report-error-for-job", + label: "Report error for job", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/complete-job", + label: "Complete job", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/update-a-job", + label: "Update a job", + className: "api-method patch", + }, + ], + }, + { + type: "category", + label: "Incident", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/resolve-incident", + label: "Resolve incident", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/query-incidents-alpha", + label: "Query incidents (alpha)", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/get-incident-by-key-alpha", + label: "Get incident by key (alpha)", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "User task", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/complete-user-task", + label: "Complete user task", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/assign-user-task", + label: "Assign user task", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/update-user-task", + label: "Update user task", + className: "api-method patch", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/unassign-user-task", + label: "Unassign user task", + className: "api-method delete", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/query-user-tasks-alpha", + label: "Query user tasks (alpha)", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Clock", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/pin-internal-clock-alpha", + label: "Pin internal clock (alpha)", + className: "api-method put", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/reset-internal-clock-alpha", + label: "Reset internal clock (alpha)", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Process instance", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/create-process-instance", + label: "Create process instance", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/query-process-instances-alpha", + label: "Query process instances (alpha)", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/cancel-process-instance", + label: "Cancel process instance", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/migrate-process-instance", + label: "Migrate process instance", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/modify-process-instance", + label: "Modify process instance", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Flow node Instance", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/query-flow-node-instances-alpha", + label: "Query flow node instances (alpha)", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Decision definition", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-definitions-alpha", + label: "Query decision definitions (alpha)", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/get-decision-definition-xml-alpha", + label: "Get decision definition XML (alpha)", + className: "api-method get", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/evaluate-decision", + label: "Evaluate decision", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Decision requirements", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-requirements-alpha", + label: "Query decision requirements (alpha)", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Decision instance", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-instances-alpha", + label: "Query decision instances (alpha)", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Message", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/publish-a-message", + label: "Publish a message", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/correlate-a-message", + label: "Correlate a message", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Documents", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/upload-document-alpha", + label: "Upload document (alpha)", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/download-document-alpha", + label: "Download document (alpha)", + className: "api-method get", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/delete-document-alpha", + label: "Delete document (alpha)", + className: "api-method delete", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/create-document-link-alpha", + label: "Create document link (alpha)", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "User", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/find-all-users", + label: "Query users (alpha)", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Resource", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/deploy-resources", + label: "Deploy resources", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/delete-resource", + label: "Delete resource", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Element instance", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/update-element-instance-variables", + label: "Update element instance variables", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Signal", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/camunda-api-rest/specifications/broadcast-signal", + label: "Broadcast signal", + className: "api-method post", + }, + ], + }, + ], +}; + +export default sidebar.apisidebar; diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/unassign-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/unassign-user-task.api.mdx index 2152d9921c2..9912dcb27e8 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/unassign-user-task.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/unassign-user-task.api.mdx @@ -5,55 +5,226 @@ description: "Removes the assignee of a task with the given key." sidebar_label: "Unassign user task" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/SsYnJKpTSqpkzq8aWyldetkPLLUHBwfQBCUEJMAC4CSNRz+9+wCpCRLcp3J5KiDRgSJ3beLfQ9fDXVsZmlyR6dWGOKYfaD3JzQTlhtZOakVTehYlHohLHFzQZi1cqaEIDonzPcnS+nm/ttMLoQiD2IV0RNaMcNK4YRB7w1V0ABXNaBMwOgfsYI+Er1XzM3h2Yj/amlERhNnarEbwgTcg2NERaS6DxaRLJ+LktGkoW5VIYhUTsyEgU+5NiVz4dX7M9q29whkK62ssGjxdnCGf/tgawSyZJbUqss7I7bmXFib10UBebYn9GwweNHF3ggRzpTSjqRiy3dEPmkjSCYck4UlDJ4roxcyA1ipvIM+eJLqbBV9VZAj15CuchgDq6pCcoYxxGCZFqL87ZvFgJqtUXoa6ZDchJ4dLtHpN8EdFJqEjmlAvxt/vCAfzt79cf9q7lxlkzheLpeRyfmpyKTTJtJmFkMTf9jvdURgFCCHkq0wT5ZBN8BkBWZVCeMkcMpWgstccuK0T7ALm2ApQ35dUUNYSKy18abk69JbZ6SabVe+NpLusmlIpuMrAuOqnMxXYLAP7W1yVhfog6W6dklaMPWAFXfSFQdBd1FsXZbMrFn7FAAcWcdcbV9k7u9v93wjv/6aTG5IcEG4zgQBG8CRtgfCJEqpZFmXNAGaQos9htb7waBFn1jxH8hEEfFYQfqeWrvpADnKDW99YlJBXIr/qspoI2dyFxeANrWgHYkvQ0Zt23plvizufWWi3lGaua5VFh0FdhTYUWDPCuzDTwgMxq9bzZZGQwA4woLw2hgIChbV4yp4FOlRpL9MpO8O7U8hFxxlgzwUxsCQae4VmJHlXBbePW5ze2zcnQvrjlo7au2otee0Bh/hxDvXcIYFkAIOv/4cDMfbhMa4JJ7ikmjjZusU3Mb9iRpPssIs+gNzbWCYaBNE1AL3m7m2rk2aShvXxgus0IIZySAIX1D8HMTWk6jQnBX+9aFi4gc8lfdJXrASNryMnJPx6HZC/oRFecnCERchn7o+H5wPDnrFrs94HN5ckZBhoOLW9NC7RZ0fdBs6/4hjf8a3AiYz6Va3aBaGJxWwkzDDGquxpkiH571jO3SCN+HhY0+cv79MfO2lyrU37ziwHwhWBUoYIh9Eb/b5BsGibLguwdbPncA5v01iW4nxorYOEzqhMMEK2OwgbneL0ne7Dl/IvwGRvImwKIE5/ZQ5A891GgFczIPZ+j8tdBqXTKq4g7DxxfDT9PPl8PT66mL0+XZ0Ch4j9+h88hUQpmRqK45pd3Wx2e/tpttsFoufu0bqCuXEo4thPpAKqeMzbDpp3dGNtMAgeXrFtFYXsCIo5I42TcqsmJqibfE1rGxmBe/vN4LyCsykxWdQc84Ku3sltZ3Zq3F3efWa/N9F1cFcupdMrbygixpb8AhOdu7L2nvoPhcsA4ZifKHHkHNRuS3bZ5dkFMZ6frocXY8mI6jrd/wi5PA= +api: eJztWE1z2zYQ/SuYPSVTmpRTJ3V409hK69bJeGy5Pbg6gOBKREwCDABK1mj43zsLkJIsyXUmk6MOGooksG8f9j3iYwWOzyykD3Bv0TDH7SNMIsjRCiNrJ7WCFG6x0nO0zBXIuLVyphCZnjLu27OFdIV/N5NzVOwRlzFEUHPDK3RoKPoKFK8QUmgsmjG3j3/hEiKQFL3mroAIDH5rpMEcUmca3E1hXCAFJlRCavpkCcmKAisO6QrcsiYQqRzO0EAEU20q7sKjD2fQthMCsrVWFi31eDc4o8s+2BqBLbhljep458w2QqC106YslzG0EZwNBq+G2BshJrhS2rEMt2LH7LM2yHJ0XJaWcYOsNnouc8yZVD5AnzzLdL6M/1UQgdDKoXKUA6/rUgpOOSS10VmJ1S9fLSW02hql55kO2U1o2eEynX1F4Ri3LDTMAvrD7acL9vHs/W+TN4VztU2TZLFYxGYqTjCXTptYm1lipoJ+1O5tzMYFGmQVXxJPnueSMHlJrGo0TqJltkYhp1Iwpz3BLm1GpQz8uqKGtEhY686bkq9Lb52RarZd+cZI2FXTkN3fXjGZo3JyupRqtg/t+0x5U1IMnunGpVnJ1SNV3ElXHgTdRbFNVXGzVu1zgDYC67hr7KvK/fXdXmzS1x/j8Q0LIZjQObKpNswV0vZARKKSSlZNBenZYBBBxZ/C3YfBoKWYVPHvYKIYPtUlV15au3SkYtVGt56YVNZxJX5WZbSRM7mLG0O7qQV0Ir4MjNq29c583dz7ziS/kzWnulF5fDTY0WBHg71osI8/YDBp+9lsYbSa+RFGJhpjULlyeZwFjyY9mvTnmfT9ofXpUDEaZUM6RGO0YVp4B+ZsUcjSh6dlbo9Nq3O07ui1o9eOXnvJa20EFbpC55BCjiU69PtgV0AKCU2JJzQl2mS1tQtuk35HTTtZNPN+w9yYElJYBRO1aZKsCm1dm65qbVybzKlCc24kz8qgS3odzNaLqNSCl/7xoWLSC9qV9yQveNWonLNzdju6G7PfucMFD1tcgnwe+nxwPjgYlZq+EHF4c8UCwyDFrc9DH5Z8fjBsaPw9gf0e36JojHTLO+oWhidDbtAMG6rGWiIdno9O96ERRN2fT71w/vxn7Gsv1VT77p0G9hOhqqCxIfNBfLqvt5srbxuhq6pR/tupZmGZxLeIibKxjghFUEqBynpld6cofbPr8Ib9HRDZaUxFCcrpP5kz6Yomi4WuEhG6ra9ZqbOk4lIlHYRNLoaf779cDk+ury5GX+5GJ6fxIHZPzpOvtXUVV1t53HdHF5v13i7d1Way+LFjpK5QDp9cUpdcKpKOZ7jqrPUAG2tBBOnzI6a1uyZR55AHWK0ybvHelG1Lj781aJaQPkw2hvIOzKWl/zmkU17a3SOpbWZvbrvDq7fs/w6qDnLpHnK19IYuG7qDCB5xuXNe1k7aCArkORqfX2gxFAJrt9X3xSmZjLH+Pl2OrkfjEbTtf/wi5PA= sidebar_class_name: "delete api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Unassign user task

+ Removes the assignee of a task with the given key. -## Request - -

Path Parameters

- -The user task was unassigned successfully. - -
- -The user task with the given key cannot be unassigned. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-a-job.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-a-job.api.mdx index b728aca1d9d..95732b30400 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-a-job.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-a-job.api.mdx @@ -5,66 +5,263 @@ description: "Update a job with the given key." sidebar_label: "Update a job" hide_title: true hide_table_of_contents: true -api: eJztWN1u2zYUfhVCV+2W2G6Xdq135bnp2q7tgsTZLpIApSTaZiqRGknZMQwDe4293p5k3yEp/8R2G2y9dIo0ksjz/32H0pknjo9s0r1K3uk0uTlKcmEzIysntUq6yWWVcycYZ7c6ZVPpxsyNBRvJiVDss5i1kqOk4oaXwglDWuaJwg0Esf9XMcOyJDUVd2NcG/FnLY3Ik64ztbhvawDN0Mn00Bshi06z2ntAhmw2FiVPuvPEzSqyIZUTI2GwNNSm5C48en6SLBY3wZiw7medz0jmvu1MQ1o5WuJVVciMkxvtW0u+zLeN6fRWZI7iNboSxklhaTUbczUSVnhFm/G8u/jtIwtiIXVhb+4j484ZmdbI7YQX8LN1ra4VZWCoi0JPpRqttliWccVSlCG/ra2DhlgJaZlQeaUR9REWc0mWebEmea2msihIVo6URvhdsvMd+2QEtgj7iR0zsqrElPFS18pR+uMifDFNKX5iJUx7J1ilLSxNIFWXqTAtr9DJUujaNQrz2viENtUkA3ELk4qV9ohZx5FGBDo0uvSbstoY1ISVusQfn5Izoycy9+lQERraivXc+Fxw+II4fS4ZvNaldF63dKwyqI+ZYCvZQO2s9Elc6vjnr79tEF1WgUqEpCvtQ850WRWCZKB6yGWxpwQ1PPNxxP1eTRTx181WixzAB57DICD1ZYjFanwV+D88TXZR6n+VFhopsTwtRCDOAt6GMj6EiLv8+RbI2HbL++XolhpZf8lKWlhR/2qNrzcbEqHRnYeeAakgZyutbEj9087JNsUbqEy5jY0qZ7bOMmHtEP6hP0LNSaezW7Ly2IYIBDkDkghuwKGMsNjToiCGuMvvt1vVpokeOws7WS4cITD2IvgaNqYwjYxfnb/us5cnz368eTR2rrLddns6nbbMMDsWaCnatLQZtXFLv7TvcYsobgQr+Sy0pWXnWSGX2UpkcigzauIuROudIcw8BPZhdYkxC9yq0TrEaiO3ANZjl+dvGZKqnBzOCEJbpr3MkNcF6eApYNdNC64+JysIbRu9b8XWZcnN8qzaNABFQLCr/zNl3wwGZyyoQC/JRWQrEBINURClVLKsy6QLfOGO34W7553OgnRSxR8QiWLirkL4G5RswiE64tCI+PGBUd/iKvtWldFGjuR9u61knc4RxK9CRIGZJ18kY/OaEt5BGmIN0QLz1oFWB1odaLWXVi8fQKvl2z8xC1bo2dRomKbcLs9qnH7swypMy7hZO/KiXHPEshSv6YdT70DPAz330/PZrhdJxEJZNoRDYQx9+2SegfhEGeNLhdTT+2hjO34WH7h24NqBa/u4hsVSuLHOw+wqG/s5lxvjto2z0Lbn4d1yQWMpmi3E4VdtkJFkHviyAMznY23dojuvtHGL9oSKMeFG0oerrx0tB141eCl0xgv/eFfdaIEmbE08fV7irZazF+z89GLAfsH5O+Xhs5NMbqp+0XnR2amVtu7R2Dt7y0KEAXVrnaBRS5TeqTZsfohiP7CzAn1LutkFiYX0pAIvDaZXU+aXaIj2vHa6D5vwJFy8bjDy7o+BLzN1sfPVMPD0jtN0Zmt4txyzdNZGHJ2FR+RQe/sRL9uRUFlpruRD77SebGMT0RLFMl1C1vdZ4DOOrlb6soLme37sgmYs8GJEduNItdn2Pqyw34NF9qRFVQ3Qa9rrCJrrtAVz7SyILf+mhU7bJZeqHU3Ydr/34fLjq97x+7f9048Xp8fQ2HJ3YXhSAXElV2t+rM+E7wc6Xx0pD5kdx4o6cefa6BFSEcZ8JPPItyuaJFts7caJMoASSHOVzOcpt+LSFIsFPUaFzQzPb1Yc86TMpaVrcHnIC3t/7Lzu8aPzOCl6zL42jN7peXzI1czzvKjpDpdQtBqJL26wcyx4DsySe2GxH5w4HpCKlfDWaHpx1Ej0skxUbs/ejROcyLVsZ2e9Qf8NkSXOxUt0fzw2fEoDevzfTa7xDzfaZyiMIOn5PEEXH9V85Of7XjH9/Atn9mWy +api: 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 sidebar_class_name: "patch api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Update a job

+ - + Update a job with the given key. -## Request + -

Path Parameters

Body

required
    changeset objectrequired
    + -JSON object with changed job attribute values. + -The following attributes can be adjusted with this endpoint, additional attributes -will be ignored: - -- `retries` - The new amount of retries for the job; must be a positive number. -- `timeout` - The duration of the new timeout in ms, starting from the current moment. - -Providing any of those attributes with a null value or omitting it preserves the persisted attribute’s value. - -The job cannot be completed or failed with this endpoint, use the complete job or fail job endpoints instead. - -
- -The job was updated successfully. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the jobKey is not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The job with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-element-instance-variables.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-element-instance-variables.api.mdx index 990dcf390b8..f75526da29b 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-element-instance-variables.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-element-instance-variables.api.mdx @@ -5,52 +5,179 @@ description: "Updates all the variables of a particular scope (for example, proc sidebar_label: "Update element instance variables" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Update element instance variables

+ Updates all the variables of a particular scope (for example, process instance, flow element instance) with the given variable data. Specify the element instance in the `elementInstanceKey` parameter. -## Request + -

Path Parameters

Body

required
    variables objectrequired
    + -JSON object representing the variables to set in the element’s scope. + { \"foo\" : 2 }\n2 => { \"bar\" : 1 }\n\nAn update request with elementInstanceKey as '2', variables { \"foo\" : 5 }, and local set\nto true leaves scope '1' unchanged and adjusts scope '2' to { \"bar\" : 1, \"foo\" 5 }.\n\nBy default, with local set to false, scope '1' will be { \"foo\": 5 }\nand scope '2' will be { \"bar\" : 1 }.\n", + type: "boolean", + default: false, + }, + operationReference: { + description: + "A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + required: ["variables"], + title: "SetVariableRequest", + }, + }, + }, + }} +> -
    { \"foo\" : 2 }\n2 => { \"bar\" : 1 }\n\nAn update request with elementInstanceKey as '2', variables { \"foo\" : 5 }, and local set\nto true leaves scope '1' unchanged and adjusts scope '2' to { \"bar\" : 1, \"foo\" 5 }.\n\nBy default, with local set to false, scope '1' will be { \"foo\": 5 }\nand scope '2' will be { \"bar\" : 1 }.\n","type":"boolean","default":false}}>= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
- -The variables were updated. - -
- -The provided data is not valid. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx index bf926037c75..faedffd420a 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx @@ -5,74 +5,294 @@ description: "Update a user task with the given key." sidebar_label: "Update user task" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Update user task

+ Update a user task with the given key. -## Request + -

Path Parameters

Body

    changeset objectnullable
    + -JSON object with changed task attribute values. + -The following attributes can be adjusted with this endpoint, additional attributes -will be ignored: - -- `candidateGroups` - reset by providing an empty list -- `candidateUsers` - reset by providing an empty list -- `dueDate` - reset by providing an empty String -- `followUpDate` - reset by providing an empty String -- `priority` - minimum 0, maximum 100, default 50 - -Providing any of those attributes with a `null` value or omitting it preserves -the persisted attribute's value. - -The assignee cannot be adjusted with this endpoint, use the Assign task endpoint. -This ensures correct event emission for assignee changes. - -
- -The user task was updated successfully. - -
- -The user task with the given key cannot be updated. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key was not found. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -An internal error occurred while processing the request. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/upload-document-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/upload-document-alpha.api.mdx index d4dd5a82250..ad902036bc8 100644 --- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/upload-document-alpha.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/upload-document-alpha.api.mdx @@ -5,45 +5,207 @@ description: "Upload a document to the Camunda 8 cluster." sidebar_label: "Upload document (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/SsYnJKpRClpmqa6qXbSuhOnHltuD5YPILkUkZAAA4CWVY3+e3cBUqJEOXHTHDqZZsYxSWC/3z5gveZOLCyf3PBTndQlKGf57YCnYBMjKye14hN+XRVapEywtNnDnGYuB3Yiylqlgr1iSVFbByaaq7maTCZKO5irWS4tA5VWWqIMPgvFRFHlgmUgXG0gYmeOJbUxqLNYMa3wP1tXlTbOb5ZqWEKpzWpn2TptYDBXy1wmOelEU6wEgUuZNqwyOq0T8pvVFiLvzFzxAa+EESWgixTsmit8wci8trMU1yUF+rEGs8IXAx9raSDlk0wUFg7zMcPQz06ZznwS9l2j1NQhX3uLTkeo2CY5lIJP1tytquCAkWrBN5vB1qdW5Gu5tXUIs535dGGS7mQK6QBLqmBJQktZFCwGtgAFRjjAzVcVJDJboXtUCriX1tFzu9mArQusqvKrxmDy5YFlURgQ6SrI2sjX4eEM3IYAwbqfdbqiHbt4nakx3EQrh3ppqUTbEmvqRlj1cpgK53X2tOv4PSSO6m90BcZJsLSayQL6Pgw4KRNogMdSCcz5ZsARNKJVf6hUpKmk5IvioqM+OLtvsHF95hX07fYL2Qgw2nlY0oj8ohDeecQ8Rh1hq1VDkl4F3FeYXjt1n0wFBg9DJ9HSMcW0ighAtOMOtsxB7WOgseHtWflX110kBViA6drCTy9fHLVDsj1oI/jilfPaUb2Tjqq6ZbLztnK0uMPSTaj+LSVAJTqlcAlRnTrvVYuLqipkIsiZ0XuLHm3oH6m0lVY2FPj5+Bn9OpKg1tmlsE0jQooslyRgbVYXxYqIoQPtnrl/gOvW2ONw1iaKpZI+l4h5pLCITYulWFlmwZPHnCeB5uecPAVVl5TE5qPPY0ujj4LiQ8zpIdIhvy9UFv3ftN9M0x4uXkIGeFdIgIcOfDEef6bpmqM4E5g+PNPO6YRO0YQs8IKBz+1RSF6Rl21PsxjPoHBiPdCaKBkXUH7Xb9F9d6bsIuxs7LIARIZsEDbGwfrN5ZsT9tOLH368fZI7V9nJaLRcLiOTJUNAwGJfarMY4Sv90L6nEcNQMYZSrOjo3uGa7WDMrD/FZdJe2Rq3PURDfJ9mFPcA+LfVr43s1X7Kri/PGOZVueYG0TPtZTKBxzgxbKxrN4kLoT7wXdk/1yJTZNGyxGO6hdi+Ac9LeM20n0Xv98+PovfX2eyCBRXY2Sn4C6ajO21jiIJA0pQlMSJiEd/EfXh7OR4Tm/mKPyISul9VGL6H1mE4CI5yh1sfmFToF/XB16mMNnIhD+3u92cD4tMQUXMCIs3mGpmaV9p66AiX49so3c4SWAMwd+2tuzaYDL4OrbJBhK9zFNxM1nTj34zuqA53wkiBpnzZaDm0VAuVQieiyIO5fsloocuauwHl8vXVjP2CvIdHm08hmdxX/Wr8anxUK219QOP04oyFCAPgOiTQqqVuPs6OfvNjFPvLsQWclKRbXZFYSE8MyGFmWlPWt0Bo7Hnt9B424Zfw8KaFx29/znyFpcq0F28q3XeEqoIlDJ6Po2d9VKGz1ByJLlHWMyQiayldjhNGf0hEeaRRQJolu83Y0257G1bYH8EiexZRUQJyWmJcoOY6jtDcqLmGbH/HhY5HpZBq1Jiwo5Pp+fW70+nw7dnJ63dXr4eoMXL3zgdPwC2F6vjRDLvbE+SJn1ifHsa83p0L38R83IDHwb0bIRPh3Llpsr5u2vqGp90/EYTWvOHrdSwsXJtis6HPYValZsdLJfXxA9NqN39fPk8f9foDrPZG+ztR1LSL05D9r736b43Tn0jA3t8Rdjm43VEslolu7zlqRYKgmgXJk5CDob/47mSPzdyU0iA0xYGmcp3t/bHptnNiXPx+NSNOakb9Es9X/EqKvd7B7pGc3Gz+BhUIecs= +api: eJztWEtz2zYQ/is7OCVTipTTNE15U+2kVSdJPbbcHmwfIGIlIgEBBgAtsxr9984CpN5O3DSHTlvPyHpg3/vtLpZL5vncsfyanZmiqVB7x24TJtAVVtZeGs1ydlUrwwVwEB0NeAO+RDjlVaMFh5dQqMZ5tOmNvtF5nmvj8UZPSukAtaiN1B6kA67hmqu65DBD7huLt0+ywlS10aQ4Q25VO+BFgc5lgS7+H3TULq3E0xTGHorGWtRetWC0asE1dW2sDwqkHlRYGdturHXeWExu9KKURUl2aOOhQq49zIyF2hrRFOQrNA7T4MCNZgmrueUVerQUoCXTvEKWsyBtLFjCJAXnY4O2ZQmz+LGRFgXLZ1w53I/hpEQYn4GZhcDtmkbhbGKMdw69SVnCXFFixVm+ZL6towFW6jlbrZK1TT3L1zJrbVAK41kIV23NnRQoEuCgcUFMC6kUTBHmqNFyjyKFyxoLOWulnlMq8F46T597YouuUR6kDqfWGgtyTzNXFrloI69LQx4ejsBtdBCd/9GIlig2/nrbYMIKoz1qT0dVo7ysufXZzNhqILgPMg+km+l7LDzl35oarZfo6HQmFR7akDASxj3L2VRqblu2SliFnvfi94VyISQFn6vzLfHR2F2FnemTIOBQ72EiOwYgyv2UpmQXufAuIOYx4ghbvRjiDCLwvpYW3ch/MhSCexx4WeFRwXQKXAsgCliUqHcx0OkI+pz8Y9tcqT3O0W7rktq/eH5UD/EeQFtqmLY+SF8lzEtPWV13v7d95uhwg6XrmP1bCoAujCB3CVFbed7JFuN1rWTByZjsvTOareiPRLraaBcT/Gx4Qm9HAtQbu+CuK0QU4JrQGWeNUi01hi1oH6j7C7julT0OZ32gQEj6uZKae2NTGKkFbx04DM3jhhVxNNwwshR1U1EQux9DHPs2+igoPtQ5A0S2mt8XCkv/L9p/TdHuH17gDC3qAlmswOfD4WeKrhvFMy4VzbS3NKEFei6VA25xPQrJKrKyr2mYGtHGifVAadbWTBVW3xyW6K45IziPlJ1eiEAE7iASTqP264vXp/DD8+++v31Sel+7PMsWi0VqZ8UAhaS6NHae2VlBL6J7msKkRItQ8ZZG9wbXsIExuDDFZdFf8zqzA0Sjf5/uKP4B8K+z31h5kPsRXF2MQQrUvrtBHKgOPDPeKJLBp6bx+VRx/YFt0v65EhmBa6qK27aH2K6C0Je4b9xn0fvts6Po/XkyOYcoAgojMFwwPd2DO0XkRCW1rKgjPh8OE1bx+/jtxXBI3Sxk/BGe0P2qVlwHaO27IzVUG9wGx6R2nlMdfJ3MGCvncl/vbn12ID6LHnUTsEJfGsFyVhsXoMN9yXKWifX+kTCH9q6/dTdWsZwtY6ms8ixblsb5Vb6kG/8qu6M83HEr+VRF9NFxLKkeKsoUXJVR3WHK6GC7a26WmotXlxP4iXtc8DaEkFTuin45fDk8KpVIH5A4Oh9D9DACbqsJ9GKpmo93x0D8GMHhcuywaKz07SWxxfBMkVu0o4aivgZCpy9Ip++RiCXdh9c9PH75fRIyLPXMBPYu04eGUFbQumj5MD05RNX5OBRHYaqq0aFD6jkspC+BH1ksWcKULFC7gN9u7enJ3sQT+C1qhJOUkhKR0zfGufRlM00LU2XdNWT9PlVmmlVc6qxT4bLT0durd2ejwZvx6at3l68GJ+kw9fc+OE/ArbjesqNbkNcT5ElYW5/u+7zczIX/7E7dAc7jvc9qxaWmEgiZWnat4JqJ7UcRsZyv2XI55Q6vrFqt6Oe431KDENJR7T+w4W7H/Mt38KNWf8B253HAHVcNUTFazP+2Vf+sFfwTAdh59rCJwe2mLbP8mm78JXKBNuQscp7GGAzCZXnDe2xPp5BGplFRYO23yA9XrdutKXP+6+WE+lj3eKAygnhIcJCbbD6SkavVn+/poIc= sidebar_class_name: "post api-method" -info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Upload document (alpha)

+ - + Upload a document to the Camunda 8 cluster. :::note -This endpoint is an alpha feature. It currently only supports an in-memory document store, +This endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md). It currently only supports an in-memory document store, which is not meant for production use. ::: -## Request + -

Query Parameters

Body

required
    metadata object
+ -The document was uploaded successfully. + -
Schema
    metadata object
- -The document upload failed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx index e1e428e5b1e..b40f567d7d6 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx @@ -5,55 +5,191 @@ description: "Get decision instance by id" sidebar_label: "Get decision instance by id" hide_title: true hide_table_of_contents: true -api: eJzlV21v2zYQ/ivCfVo7JXLadCiEYoBbK4VWwwlipx0QBAVNnWM2EqmSlFND0H8fjnqxY8tetk8b+skS74V3z734UQmW3RsIb2GEXBihZCyNZZIj3PmgctTM0mECIczXcQI+5EyzDC1qMitBsgwhBEEiISGEnNkl+JCg4VrkZA0hxImnFl7S3OGJ9hIfNH4vhMYEQqsL9MHwJWYMwhLsOifPxmoh76Gq7kjZ5EoaNCR/NRjQz9OLpgXnaAz4wJW0KC2psDxPBXeZBN8M6ZX796j5N+SWEtSUtxX1LSLpicWHB1xvnQtp8R41+LBQOmO2PvrtnDSNZRb3ffiAssgI+YthPI5G4EP0eTi+Gc7c883k0+Tyy8Q9Ta+iD/FFHI3grvIBVywtXC6jXsdPVC6YSAvdr5VrRVCNcCGkIOVPz86pMW175fmGbQfE/ai24k1Mf6M4cd13ROEzaiPqih8N7/WrbauZUz1cslH0IZ7Gl5Ovs+H7cQQ+jONZdD0cf43+vLqOpiTaqdymolRDjaZI7bHaYRLLvLBmS4dpzdY0ZRYz868bVx5CjO7tk1Q+WGFTOtrdES5Ep9FFfVnY/0bYPugixQPt40QywR/P6osjCNTp1ioombS9Fx5xAFVF4vO+XRbLFUtF4tGKRGMP77Rcq3mK2a//dLfRairMM2cjQ2PYfT/U3T7vE9reYdoGJdJa6Q6J1/tIXCg9F0mC8ikGL4OX//90z/fTva4LjlR6owrN0ZPKegtVyOTn6II3ffMwvIq9rYQ9dAY/AR7EIpAXWti141xzZBr1ieMgt3eVXwJX6kGge7vb5V4f0e4zL2++9hxny9AuFdG7e3RQEHsLIVidBa3NSWtjglIkFVAwetXyv0KnEEJZg1uFQVAulbFVWOZKW1JeMS3YPK2xJVld2AVz/4CQKs5Sd7wb92yJHglo9RN7tEv0qAXq208dD1F6x93bwdtBrydSPeBl0xgbP0tr814/tXKvJ0dR20JNSa9Oui3O5i8xF0SZ2n81uLyKroez6GTaUQfHpBu7yn9S8M5LE6ILiN5rJWi1L9pe/ePLzPWVkAvlzJv+unTsHr2rYp4KTqnsJ6w85vi0x7gVK/SYTDyusjxF2k4NDeyaip681u1CaS9TUlhFne0srVYFdcJSKVsTKhpdxl0N60aipEwYBI+Pj6ecZYVM2ClXGYGQCo7SOBwb3MbNib9jnChuOmuh3HugcYEaJcegcWQCxx9agghnp4PTQd1VxmZMbl10fISeYNaVx+IPG+QpE5J8ugDLZrxuYXUGG7a5GTDwIRQJfXrVg3ILZTlnBm90WlV0/L1A7YZ+M1duChNh6DmBcMFSg3sxdSsSfrluPrheeIc/ynpTaJtXrqGjXQDNpxDxtoqo7RJZgtoFVQuGnGNut0z2vsZobLo19DGagQ+sIJw6LHda23nvDefde6fgzdQDyt+74Cy9UnxV9RfHqxkU +api: eJzlV9tu20YQ/RVintqUNuXELQK+qREdsBFsw5KTAIYQrJYja2Nyl9ldyhEI/nsxy4tulOL2qUWeRO5cdubMRYclWPZoIHyAEXJhhJKxNJZJjjDzQeWomaXDBEKYr+MEfMiZZhla1GRWgmQZQgiCREJCCDmzS/AhQcO1yMkaQogTTy28pLnDE+0lPmj8VgiNCYRWF+iD4UvMGIQl2HVOno3VQj5CVc1I2eRKGjQkfz0Y0M/uRZOCczQGfOBKWpSWVFiep4K7TIKvhvTKw3vU/CtySwlqytuK+haR9MTiwxOut86FtPiIGnxYKJ0xWx/9cUmaxjKLhz58QFlkhPzVMB5HI/Ah+jgc3w+n7vn++sP1zadr9zS5jd7FV3E0glnlA65YWrhcRr2Od1SumEgL3a+Va0VQjXAhpCDlDy/OqTFte+Xlhm0HxP2otuJNTD9QvHbdd0LhI2oj6oqfDO/N622rqVM9XrJR9C6exDfXX6bDP8cR+DCOp9HdcPwl+nx7F01ItFe5TUWphhpNkdpTtcMklnlhzZYO05qtacosZuZfN648hhjd2yepfLDCpnS0vyNciE6ji/qmsP+NsH3QRYpH2seJZILfX9QXJxCo061VUDJpey884QCqisSXfbssliuWisSjFYnGHt9puVbzFLPf/uluo9VUmBfORobGsMd+qLt93ie0vcO0DUqktdIdEm8OkbhSei6SBOUuBq+CV///dC8P072rC45UeqMKzdGTynoLVcjk5+iC3/vmYXgbe1sJe+gMfgI8iEUgL7Swa8e55sg06jPHQR5mlV8CV+pJoHub7XOv92gPmZc3X3uOs2Vol4ro3SM6KIi9hRCsLoLW5qy1MUEpkgooGL1q+V+hUwihrMGtwiAol8rYKixzpS0pr5gWbJ7W2JKsLuyCuX9ASBVnqTvej3u6RI8EtPqJPdoletQC9e3njocovefu7eDtoNcTqR7xsmmMjZ+ltXmvn1q515OjqG2hJqRXJ90WZ/OXmAuiTO2/GtzcRnfDaXQ26aiDY9KNXeXvFLzz0oToAqL3Wgla7au2V//6NHV9JeRCOfOmv24cu0fvtpinglMqhwkrjzk+7TFuxQo9JhOPqyxPkbZTQwO7pqInr3W7UNrLlBRWUWc7S6tVQZ2wVMrWhIpGl3FXw7qRKCkTBsHz8/M5Z1khE3bOVUYgpIKjNA7HBrdxc+LvGSeKm85aKPceaFygRskxaByZwPGHliDCxfngfFB3lbEZk1sXnR6hHcy68lj8boM8ZUKSTxdg2YzXA6wuYMM2NwMGPoQioU+velAeoCznzOC9TquKjr8VqN3Qb+bKTWEiDD0nEC5YavAgpm5Fwi93zQfXr97xj7LeFNrmlWvoaBdA8ylEvK0iartElqB2QdWCIeeY2y2Tg68xGptuDb2PpuADKwinDsu91nbee8Mpy1pjqp5QVlUXnaV3CrCq/gYA8BqK sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get decision instance by id

+ Get decision instance by id -## Request - -

Path Parameters

- -Success - -
Schema
    evaluatedInputs object[]
  • Array [
  • ]
  • evaluatedOutputs object[]
  • Array [
  • ]
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx index f36cdf8c8a6..8be57fd78bc 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx @@ -5,55 +5,156 @@ description: "Get process instance by key" sidebar_label: "Get process instance by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v2zYQ/leIe2o7JXLabiiEYUCWOIWXNAkSr3sIjIGizjYbiVTJkzND0P8+HCU5jq0E2ePQF1sS77uf3/GuBpILD8kdXDur0PuJ8SSNQphFYEt0krQ1kwwSSNfnuP77CCIopZMFEjoG1mBkgZDAPa4hAm0ggVLSEiLI0CunS9YACZzjWti5KFs7QveGInD4vdIOM0jIVRiBV0ssJCQ10Lpk1doQLtBBBHPrCkntp18+QtPMGO5Lazx6RrwfjfjvqenbSrFNiEBZQ2iIRWRZ5lqF+OJvnuXqfcs2/YaKOGbH2SDdWuFYX+NewLHpr+i8bm28CPrwfh80lYstnCenzYKl0rIwfdWyQYlSOjR0/npng/xZbh8ubYY9FV6P9yQdnUrCQW/QZM+eeRo8YVBVMD2PT6aTr2OI4OTqy/XFeDo+5efjy5PxxfgUZg0zT+msq22nJbU2R2m2UnqKc2001/z1UREaaejFFO80T9ANSjtV5dK92Tl9G5RqylnTbts1TdNE8HGIxROzkrnOBLcLenqezaWzaY7FT/+V1VyEyr+SowV6LxfD1dz09tBh+2HvYCsnY+es22Tiw34mzqxLdZaheZqDd/G7/3+4H/fDvWkLjlx6byunUBhLYm4rk/0YLPh5qB+OrydiK2CBAfAD5IPvS1SV07QOAzhF6dAdhKF0N2uiGpS19xrD22x3Dn9G2hvCIl2Ldn4XSEvL436BIRU8yROIV0dxhznoMT6u73HdADvjVv0yULkcEqjb5DZJHNdL66lJ6tI6YuGVdFqmeZtbPmsLO5dVzpnMrZJ5+Lzr93SJgg943eBFgpYomAKt9cNwGVu3o+7T6NNoUBOLPqPlkRiPepZE5aCeVnhQU1hO+kLdslwbdF+cTbFlqc9D8rtN6up6fHM8HR/cjm9vJ1eX/VbV4XjybxV8o6VzMTgUhl8Qgl76rOfqH39NA6+0mdsA7/h1FbY9FNdVmmvFoewHbIUMm5SQivQKhTSZULYoc+TbaZdV/CR6tXPrRGGNJsvMDkhytmImLK2ldtpz60oVatgSiYPySRw/PDwcKllUJpOHyhachFwrND7kscvbRfcl2gFnVvkNWtvwHjuco0OjMO4U+Zi1rvpFDY4OR4ejllWeCmm2DL3cQk9ytikP4T8Ul7nUYR0JDtZde93B6gg2K8pjg0EECaucRV2j3EFdp9Ljny5vGv78vUIXmv6xr0IXZtrzcwbJXOYe93zaXJHw5qZbvt+K5xf0wRB68pp16Oq84jeI2t04/Da8li1RZuiCV+3JsVJY0hZmbxHnvtncQ5/HU4hAVpyox8XuKbeD9kF/fv09CIipvUfz28Y74lf2r2n+BXkpdA4= +api: eJzlVt9P20gQ/leseWp7BoeWO1V+Q2CqHBxEkLYPKDqt15Nki73r7o7DRZb/99Os7RASg3KPp74ktne++fnNztRAYuEgfoCJNRKdG2tHQkuEWQimRCtIGT3OIIZ0fYXrv08ghFJYUSChZWANWhQIMTziGkJQGmIoBS0hhAydtKpkDRDDFa4DMw/K1k6gekMhWPxZKYsZxGQrDMHJJRYC4hpoXbJqpQkXaCGEubGFoPbTH6fQNDOGu9Joh44RH0cj/ntp+r6SbBNCkEYTamIRUZa5kj6+6IdjuXrfskl/oCSO2XI2SLVWONZD3PM4Nv0NrVOtjTdBnz7ug6ZisYVzZJVesFRaFrqvWjYoUQqLmq4Od9bLX+bm6cZk2FPhcLwjYelCEA56gzp79czR4AmDqoLpeXY+HX9LIITz278m18k0ueDns5vz5Dq5gFnDzJMq62rbaUmNyVHorZRe4FxpxTU/PCpCLTS9meKd5vG6QSorq1zYdzun771SRTlr2m27pmmaEE6HWDzWK5GrLOB2QUevs7m0Js2x+O2/spqLULkDOVqgc2IxXM1Nbw8dth/2DrZyklhr7CYTn/YzcWlsqrIM9cscfIg+/P/DPd0P964tOHLpnamsxEAbCuam0tmvwYLfh/rhbDIOtgIO0AN+gXzwfYmysorWfgCnKCzaIz+UHmZNWIM05lGhf5vtzuEvSHtDOEjXQTu/C6Sl4XG/QJ8KnuQxRKuTqMMc9RgX1Y+4boCdsat+GahsDjHUbXKbOIrqpXHUxHVpLLHwSlgl0rzNLZ+1hZ2LKudM5kaK3H/e9Xu6xIAPeN3gRYKWGDAFWuvH/jI2dkfd59Hn0aAmFn1FyzMxnvUsicpBPa3woCa/nPSFume5Nui+OJtii1Jd+eR3m9TtJLk7myZH98n9/fj2pt+qOhxP/q2Cb7R0LnqH/PDzQtBLX/Zc/fP71PNK6bnx8I5ft37bw2BSpbmSHMp+wCYQfpMKhCS1wkDoLJCmKHPk22mXVfwU9GrnxgaF0YoMM9sjyZqKmbA0htppz60rpK9hSyQOysVR9PT0dCxFUelMHEtTcBJyJVE7n8cub9fdl3AHnBnpNmhl/HtkcY4WtcSoU+Qi1rrqFzU4OR4dj1pWOSqE3jL0dgu9yNmmPIT/UFTmQvl1xDtYd+31AKsT2Kwozw0GIcSschZ2jfIAdZ0Kh19t3jT8+WeF1jf9c1/5LsyU4+cM4rnIHe75tLki4d1dt3y/D15f0AdD6Mmr176r84rfIGx3Y//b8Fq2RJGh9V61J2dSYklbmL1FnPtmcw99SaYQgqg4Uc+L3Utue+2D/tR1KzE1j6ibZuMe8Ts72DT/Ag1odYQ= sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get process instance by key

+ Get process instance by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx index 85681d95add..c5d1725af06 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx @@ -5,55 +5,146 @@ description: "Get process definition by key" sidebar_label: "Get process definition by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v4zYM/lcEPm03N0573XAwhgEdljt0HdaiybCHIhhkmY51tSWfJKcLDP/vAyXb+eXrbo/DvSSWRH4kP5KiWnB8YyF5ggejBVr7C+ZSSSe1gnUEukbDaXGbQQLp7g53f11BBDU3vEKHhlRbULxCSOAZdxCBVJBAzV0BEWRohZG1h0vgDndM56wOlli2NxWBwU+NNJhB4kyDEVhRYMUhacHtagKXyuEGDUSQa1NxF7Z+uIauW5O6rbWyaEnjaj6nv2Pjy0aQVYhAaOVQORLhdV1K4SOMP1qSa88t6/QjCkdRG+LDyWCFov0S96KenlHUOiPVhg62aKwMVl+FeXt1IL3im0mwtK5Un0TK1oSEQ8WVmzykU+lK2jovhK6j8+spVm/VlpcyY5Q+tO7z7NZGpyVW3/1Xlq3jrrFfyFCF1vLNNNdSWceVmD4MG6+xsjBGm5GJt+dMvNcmlVmG6piDN/Gb/3+41+fhPoaEI6Xe6sYIZEo7lutGZV9HFXw/1Q83D7fsIGCGXuEr4KOLwKJojHQ7PxJS5AbNhb8kn9Zd1ILQ+lmiX61PJ8MHdBNjgaU7FmZKha7QNII26Mmg6ZJAvL2Me62LvZaN22fcdUAOme0wohpTQgJtILhL4rgttHVd0tbaOBLeciN5WgZ+6SwkN+dNSWyWWvDSb5/6viqQ0QHd8jTeXIGMyiBYnxGRZOMY7t383XwSiUQ/g7Ivjj1O4Vw9iROEJ5H8wByStSS5EPSQoDHhvJZ3nv5+vt8/LB5vVouL5WK5vL3/fZj1vR6NoIOkjyi9i94hWgchGKTfD/X6658rX1tS5dqr9zV2798gyB6atJSCQjkPWDPupzvjwsktMq4yJnRVl0g31FBZQ7HTFxtgc21YpZV0mqrbazqjG6qEQmtHFR/alwufw1BIFJRN4vjl5WUmeNWojM+EroiEUgpU1vPY8/ZbvxOdKGda2FFbar+ODeZoUAmMeyAbHz0V4HI2n81DVVlXcXVg6N/a6Ii1MUEO/3ZxXXKpCNW72PYt9gTby3D5nDYZRJAQ6Drqm+UJ2jblFv8wZdfR9qcGjW/+fW/5Tsykpe8MkpyXFs+8Gq9K+OaxfxR+y157Ok6GMZSw2vneLhtaQRRebf63W3cRFMgzNN6vcHIjBNbuQOfsiUjdM95HHxYriIA3RNZI6EmFe/RJf3782QuwlX5G9dPonaMl+dd1/wB6G/xX +api: eJzlVt9v3DYM/lcEPq2dc76k2VD4LcCuRZZhCXI37CE4FLJM36mxJVeSLzMM/+8FJdv3y826x6Evd5ZEfiQ/kqJacHxjIXmCB6MFWvsb5lJJJ7WCdQS6QsNpcZtBAmlzh82nK4ig4oaX6NCQaguKlwgJPGMDEUgFCVTcbSGCDK0wsvJwCdxhw3TOqmCJZXtTERj8UkuDGSTO1BiBFVssOSQtuKYicKkcbtBABLk2JXdh69dr6Lo1qdtKK4uWNK7mc/o7Nr6sBVmFCIRWDpUjEV5VhRQ+wvizJbn23LJOP6NwFLUhPpwMVija73Ev6ukZRa0zUm3oYIfGymD1VZh3VwfSK76ZBEurUvVJpGxNSDhUXLnJQzqVrqCt80LoOjq/nmL1Vu14ITNG6UPrvs1uZXRaYPnzf2XZOu5q+50MlWgt30xzLZV1XInpw7DxGisLY7QZmXh3zsQHbVKZZaiOOXgbv/3/h3t9Hu5jSDhS6q2ujUCmtGO5rlX2Y1TBL1P9cPNwyw4CZugVfgA+uggsitpI1/iRkCI3aC78Jfm07qIWhNbPEv1qfToZPqKbGAssbViYKSW6raYRtEFPBk2XBOLdZdxrXey1bNw+Y9MBOWR2w4iqTQEJtIHgLonjdqut65K20saR8I4bydMi8EtnIbk5rwtis9CCF3771PfVFhkd0C1P481tkVEZBOszIpJsHMO9n7+fTyKR6DdQ9sWxx9k6V03iBOFJJD8wh2QtSS4EPSRoTDiv5J2nv5/v9w+Lx5vV4mK5WC5v7/8cZn2vRyPoIOkjSu+id4jWQQgG6Q9Dvf7+98rXllS59up9jd37NwiyhzotpKBQzgPWjPvpzrhwcoeMq4wJXVYF0g01VNZQ7PTFBthcG1ZqJZ2m6vaazuiaKmGrtaOKD+3Lhc9hKCQKyiZx/PLyMhO8rFXGZ0KXREIhBSrreex5+6PfiU6UMy3sqC21X8cGczSoBMY9kI2PngpwOZvP5qGqrCu5OjD0b210xNqYIIf/uLgquFSE6l1s+xZ7gt1luHxOmwwiSAh0HfXN8gRtm3KLf5mi62j7S43GN/++t3wnZtLSdwZJzguLZ16NVyX89Ng/Ct+w156Ok2EMJawa39tFTSuIwqvN/3brLoIt8gyN9yuc3AiBlTvQOXsiUveM99HHxQoi4DWRNRJ6UuEefdKftg0SK/2MqutG9xytycGu+wqWo/3N sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get process definition by key

+ Get process definition by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx index 16b32c5492b..ff33da69e90 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx @@ -5,52 +5,169 @@ description: "Get incident by key" sidebar_label: "Get incident by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v2zYQ/ivCfdo6NUr6MhTCMMC1mUyNIxu2nAYLAoGWzjEbiVRJKp1h6L8PR8nKi921/Tj0iy0d7/W5O/HZguW3BsJriGQmcpQWbnxQFWpuhZJRDiEsN+e4SV+DDxXXvESLmiy2IHmJEMIdbsAHISGEits1+JCjybSoyAOEcI4bT608sQvgg8bPtdCYQ2h1jT6YbI0lh3ALdlORSyEt3qIGH1ZKl9y2ot/fQNPckLmplDRoyOLV8TH9PQ05r7MMjQEfMiUtBQ23wKuqEJmrK/hkSG+7H1ktP2FGOVaaULCijUI1fk96zo5Cj3AlpKBY5z9qGkljuczw+w1blV7VWC3kLfiAsi6pt4t4PmXD6DRiI/BhEZ/Hk48x+BBN0ovBdBrFZymbzSYz8OHD5H0aT9IZS2YRm4MP7IoNF0k0idNxNE9YzGZPz4eTeBS5850LdpXMBsMkvRyMF6yXDgfjMRulbMwuWJz04kX81yAeuROSpOySxQn4cMHm88EZS+fR3yxlV0PGRi75zs2IDaP546APAgo7eJLQ6WR2kcaTJD2dLOIR3DQ+lGgMvz0AWuNDptENSSLKwwrGcvufeA+GSXTJqIrobDZIXOIzNp+ML93jlMWjKD5ziXxSyx/oM0ouLS3lXlZ0KmxBon6Tm4bEbw4tSCTveSFyjzYRjf36olRaLQssf/vRhSGMavPNul6/gm90Q3TbcPDw8OA/BoNprXSPxOt9JE6VXoo8R/kUgxfBi/9/uW/2y521DUdqvVG1ztCTynorVcv855iCt4f2YTCNvEcFe+gMfgI86HOGWa2F3bg7fYlco37p7rvrm8bfQqbUnUD3dvP8aj9D29/r3nLjtVSgRLtWxBxu0UFApCCE4P4k2OmaYHuHmwYouL7f8YlaFxDCtgWzCYNgu1bGNuG2UtqS8j3Xgi+LFks6axu54nVByBUq44UTP88zWaNHB8RYiIvYNXrU8jb6kbt8lX7m7t3xu+ODnkj1K14eBuHBz9ra6qCfVvmgJ8dzdo2Zk15b9K4ZfXN5Jc4d6B0Zm0wZ3Tgv52xO1+GOmHV2jf+kwb2XLkWXEL23SrDTPt3N5oePiZsjIVfKmXfzNHGEEb1pvSxERqXsF6w87kiZxzMr7tHjMvcyVVYF0teo4z7ebrDpydu5XSntlUoKq2iSnaXVqqZJWCtl28uXVpVnroftIFFRJgyCL1++HGW8rGXOjzJVEgiFyFAah2OH27iT+M+Mc5WZ3loo9x5oXKFGmWHQOTIBeaVBbos9OTo+Om6nytiSy0eBDq/ME6z6tlj8xwZVwYUkXy6xbbdO13B/4prbLRT4EJKrG79bjGvYbpfc4EIXTUPizzVqt9QPe+S2LheGnnMIV7wwuJdL/wmEX2Ydb//V2+f0B1PeDancuO0tanoDv6XT7rchErRGnqN22bQngyzDyj6y2ePutB/9d+aMEWXkNQHTg/dshp33g/n88d4peIm6Q/lnn52lV8qvaf4FfTtoRQ== +api: eJzlVttu20YQ/RVintqUsZxLi4BvqrR2GcukIFFOUMMgVuTI2pjcZXaXTgWC/17MkqIvUprksciLRM7O9cwM9zRg+a2B4BpCmYkcpYUbH1SFmluhZJhDAOvdBe7SN+BDxTUv0aImiwYkLxECuMMd+CAkBFBxuwUfcjSZFhV5gAAucOepjSf2AXzQ+LkWGnMIrK7RB5NtseQQNGB3FbkU0uItavBho3TJbSf64y207Q2Zm0pJg4YsXp+e0t/TkMs6y9AY8CFT0lLQoAFeVYXIXF2jT4b0msPIav0JM8qx0oSCFV0UqvF70nN2FHqKGyEFxbr4UdNQGstlht9v2KkMqsZqIW/BB5R1Sb1dRcs5m4RnIZuCD6voIoo/ROBDGKeX4/k8jM5TtljEC/DhffxnGsXpgiWLkC3BB/aRTVZJGEfpLFwmLGKLp+eTOJqG7nzvgn1MFuNJkl6NZys2SCfj2YxNUzZjlyxKBvEq+mscTd0JSVJ2xaIEfLhky+X4nKXL8G+Wso8TxqYu+d7NlE3C5eOgDwIKO36S0Fm8uEyjOEnP4lU0hZvWhxKN4bdHQGt9yDS6IUlEeVzBWG7/E+/xJAmvGFURni/GiUt8wZbx7Mo9zlk0DaNzl8gntf6BPqPk0tJSHmRFp8IWJBo2uW1J/PbYgoTynhci92gT0divL0ql1brA8rcfXRjCqDbfrOvNa/hGN0S/DUcPjw/+YzCY1koPSLw5ROJM6bXIc5RPMXgxevH/L/ftYbmLruFIrTeq1hl6Ullvo2qZ/xxT8PuxfRjPQ+9RwR46g58AD/qcYVZrYXfuTl8j16hfuvvu+qb1G8iUuhPo3m6eX+3naId73VvvvI4KlGi3ipjDLToIiBQEMLp/NdrrmlFzh7sWKLi+3/OJWhcQQNOB2QajUbNVxrZBUyltSfmea8HXRYclnXWN3PC6IOQKlfHCiZ/nmWzRowNiLMRF7BY9ankX/cRdvko/c/fu9N3pUU+k+hUvD4Pw4GdrbXXUT6d81JPjOfvGLEmvK3rfjKG5vBIXDvSejMVzRjfOyyVb0nW4J2a9Xes/afDgpU/RJUTvnRLstc/2s/n+Q+LmSMiNcub9PMWOMKI3r9eFyKiUw4KVxx0p83hmxT16XOZepsqqQPoa9dzH2w82PXl7txulvVJJYRVNsrO0WtU0CVulbHf50qryzPWwGyQqygSj0ZcvX04yXtYy5yeZKgmEQmQojcOxx23WS/xnxrnKzGAtlHsfadygRpnhqHdkRuSVBrkr9tXJ6clpN1XGllw+CnR8ZZ5gNbTF4j92VBVcSPLlEmv6dbqG+1euuf1CgQ8Bubrx+8W4hqZZc4MrXbQtiT/XqN1SP+yR27pcGHrOIdjwwuBBLsMnEH5Z9Lz9V++Q0x9NeT+kcue2t6jpDfyOTrvflkjQFnmO2mXTnYyzDCv7yOaAu9N+DN+Zc0aUkdcEzADesxl23o/m0zSdRqLuULbtkJ6ld0qwbf8FBbFpuw== sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get incident by key

+ - + Get incident by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx index 6563ac201ed..d6ff71053c9 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx @@ -5,55 +5,184 @@ description: "Get flow node instance by key" sidebar_label: "Get flow node instance by key" hide_title: true hide_table_of_contents: true -api: eJzlV1tv2zYU/isCn7ZOjdI2HQphGKDYTKvFlT1JTlYEhkFLxzEbmVRJKplh6L8Ph7rEjp1eHoe+2CLPhefyHerTlhh2q4l/Qy4K+SBkDqHQhokMyMwlsgTFDJcizIlPFptL2MzPiEtKptgaDCi03BLB1kB8cgcb4hIuiE9KZlbEJTnoTPESPRCfXMLGkUtn2R7k8O4klyj4UnEFOfGNqsAlOlvBmhF/S8ymRN9cGLgFRVyylGrNTLP1+xmp6xma61IKDRotXp+e4t/+2UmVZaA1cUkmhQFhUIWVZcEzm6D3WaPe9vBkufgMmcGkFZbD8OYUTPZ7wrN2eHRX18sfNRzCkguOQX6/qTZMmSEzsKOvjeLiFqUg8mdl2J0IYZB/VRzZlh9R4CLjOQjz/bE2Kk9dYZTVGoE5jZIJHYQXIR0Sl0zi8YAmCXFJMj2fP67oFY3S+f5ekgZxOrcS4pIwSmn8kQ7DIKXzQZAOPhwXpR/i8XUvOh9Po2EQf+o3aDTsnxMaX4UDOk+D5JK4JKYDGl71y2lC4+75YxBNg1G3av/oP4PRNEGL90FKr4NPNpTDvUkQB6MRHe1sNemeBwkd7uwm9O8pjQZ0fjEaX+Op01EazsMoSQPcPR8PUWsQjEbzYJCGV2GK6/NpEkY0SebxdNQHnwzicJL2K8y6Syu6jMbXEZk1ODuGo8fm2WMoHjr+OBnR1PYQix1GAS5mO5DZ8bOQsgAmLDxAMGGOwhGl3BS4ddHBtrtT6hrFZ8fuglDcs4LnDl46oM3zd0Kp5KKA9W8/ejdgVSr9Tfi/eY35rUFrdvvcMLXZHBMen5vdolClpOor8eawEhdSLXieg9ivwQvvxf8/3bPDdOOm4YCt17JSGThCGmcpK5H/HCh4e2wegkno7CTsgDX4CeqBFxhkleJmY3nMApgC9dK+2m9mtbslmZR3HOxq9pTOvAdjuYyzR2acxcZpiNAazEoib7oFWwykRD7x7l95HQN62Rlpb3sHm5pgPOq+o1WVKohPtk19a9/ztiupTe1vS6kMKt8zxdmiaMqLsqa3S1YVWMxCZqyw209DT1fgoACJG1IyswIHUdCcfmLJh1RP3L07fXd61BOqPuPlERuPflbGlEf9NMpHPVmW1/UqQb0m6a4/fb9ZyS9t9VtOOp7QOEjpy4QmSTiOOn7a2tXuXs97L22INiD7OrJKpNO+6OD613VqocXFUlrzFmJjy5vBmVSLgmeYymHC0mGWkjosM/weHCZyJ5PrsgC8oFru18MKn5zO7VIqZy0FNxLBbS2NkhUiYSWlad7AOL0ssz1sgIRJad/zHh4eTjK2rkTOTjK5xiIUPAOhbR3buo3aHfeJcS4z3VtzadeegiUoEBl4rSPtoVcEcpPsq5PTk9MGVdqsmdg56FtTtFe1vkEG/jVeWTBuKYINcdtO2A25f0Uaoro/Y8QlPvqcue2s3JDtdsE0TFVR17j9pQJlR/9xtOwg5lzjc078JSs0HATVX5Tkl7j9kPnV+crXztEkOgCLjZ3sosIVcZsPDftbI1laActB2bAaSZBlUJodm4OvGpyd/jJ6T5G4sgpL9Ui39vFtvR+N549zq+Ck8g7En310BpcYX13/B+pfx+g= +api: eJzlV1tv2zYU/isCn7ZOjdM2HQq9KTbTanFkT5KTFYFh0NJxzEYmVZJKZgj678OhLrFjp5fHoS+2yHPhuXyH+lQRw+408W7JRS4fhcwgENowkQKZu0QWoJjhUgQZ8chyewnbxRlxScEU24ABhZYVEWwDxCP3sCUu4YJ4pGBmTVySgU4VL9AD8cglbB25clbtQQ7vTnKJgq8lV5ARz6gSXKLTNWwY8SpitgX65sLAHSjikpVUG2aarT/PSF3P0VwXUmjQaPH29BT/9s+OyzQFrYlLUikMCIMqrChyntoEB1806lWHJ8vlF0gNJq2wHIY3p2CyPxKetcOju7pe/qzhCFZccAzyx021YcqMmIEdfW0UF3coBZG9KMPuhAiD7Jvi0Lb8iAIXKc9AmB+PtVF57gqjLDcIzFkYT+kwuAjoiLhkGk2GNI6JS+LZ+eJpRa9pmCz29+LEj5KFlRCXBGFCoys6CvyELoZ+Mvx0XJR8iiY3veh8MgtHfvS536DhqH+OaXQdDOki8eNL4pKIDmlw3S9nMY265ys/nPnjbtX+0X+G41mMFh/9hN74n20oh3tTP/LHYzre2WrSPfdjOtrZjenfMxoO6eJiPLnBU2fjJFgEYZz4uHs+GaHW0B+PF/4wCa6DBNfnszgIaRwvotm4Dz4eRsE06VeYdZdWeBlObkIyb3B2DEdPzbPHUDx0cjUd08T2EIsdhD4u5juQ2fGzlDIHJiw8QDBhjsIRpdzkuHXRwba7U+oaxWfH7oJAPLCcZw5eOqDNy3dCoeQyh80fP3s3YFVK/V34v3uL+W1Aa3b30jC12RwTHp+b3aJQpaTqK/HusBIXUi15loHYr8Grwav/f7pnh+lGTcMBW69lqVJwhDTOSpYi+zVQ8P7YPPjTwNlJ2AFr8AvUAy8wSEvFzdbymCUwBeq1fbXfzmu3IqmU9xzsav6cznwEY7mMs0dmnOXWaYjQBsxaIm+6A1sMpEQeGTy8GXQM6HVnpAfVPWxrgvGoh45WlSonHqma+tbeYFCtpTa1VxVSGVR+YIqzZd6UF2VNb1eszLGYuUxZbrefh56swUEBEjekZGYNDqKgOf3Ekg+pnrn7cPrh9KgnVH3ByxM2nvysjSmO+mmUj3qyLK/rVYx6TdJdf/p+s4Jf2uq3nHQypZGf0NcxjeNgEnb8tLWr3b2e917aEG1A9nVklUinfdHB9a+bxEKLi5W05i3EJpY3gzMtlzlPMZXDhKXDLCV1WGr4AzhMZE4qN0UOeEG13K+HFT45nduVVM5GCm4kgttaGiVLRMJaStO8gXF6WWp72AAJk9LeYPD4+HiSsk0pMnaSyg0WIecpCG3r2NZt3O64z4wzmeremku7HihYgQKRwqB1pAfoFYHcJPvm5PTktEGVNhsmdg763hTtVa1vkIF/zaDIGbcUwYZYtRN2Sx7ekIao7s8YcYmHPuduOyu3pKqWTMNM5XWN219LUHb0n0bLDmLGNT5nxFuxXMNBUP1FSX6L2g+Z351vfO0cTaIDsNjayc5LXBG3+dCwvzWSpTWwDJQNq5H4aQqF2bE5+KrB2ekvo48UiSsrsVRPdGsf39b70XiqqtFI5D2Iuu7DM7jGAOv6P9J4yV4= sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get flow node instance by key

+ Get flow node instance by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx index c269bbffaeb..88dffa13855 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx @@ -5,52 +5,147 @@ description: "Get decision requirements by key" sidebar_label: "Get decision requirements by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v2zYQ/leIe9o61XLadCiEYUCKuoWXoQliD3sIjIKmzjYbiVTJkzNB0P8+HPUjdqx06ePQF1sk7767++6OxxpIbj0kt/Aelfbamhv8WmqHORrysIrAFugkaWvmKSSwri6x+vwGIiikkzkSOtauwcgcIYE7rCACbSCBQtIOIkjRK6cLRoAELrESdiPSzphwh9Yi6JYpJORKjMCrHeYSkhqoKhhfG8ItOohgY10uqd369RyaZsXqvrDGo2eNV9Mp/x3bX5RKoWdTyhpCQywiiyLTKgQZf/EsV59atusvqIgDd0wJ6daKTg9kPDltttBEgYfneM38nPI+HwdtOR452KPzuvX7mxZfv2Jph96WTuGnp+AIjTQ06gSfasp4a7RgmoZFzseon5u9zHQaUo6enk5B4ew6w/yX702FJ0mlfyYJOXovt+Pxa+NJGvUEOWHjW8TMnLNuYOL1KRMfrFvrNEVzzMGL+MX/P9zz03Bv2oQjp76tPGEsiY0tTfpjVMGbsX64uJ6Lg4AFBoUfgI8mAo+qdJqqMDrWKB26l+HKvF01UQ3K2juNYbV6PEE+Io2PD7GuRDt+cqSd5Wm1xcAHD6IE4v1ZnLo0ru+waoB9cPt+epUugwTqltMmieN6Zz01SV1YRyy8l07LddZSymdtPjeyzJjAzCqZhe3H7i53KPiA726efLRDwZlvrU+YO7ZxDPd2+nY6isSiT6A81MMDzo6oGMVphUeRwiDt87NguTboPidDjmWhLwPd3ei/up7dXCxnLxezxWJ+9al/BnR6TXSU5wGlczE4xOtWCHrpD32J/vH3MpSTNhsb1LuyugrPExTX5TrTikM5DdgKGaa+kIr0HoU0qVA2LzLkS6lwNhz29c1foofdWCdyazRZLuigSc6WXAk7a4mLvO1YqUIO20LioHwSx/f39xMl89KkcqJsziRkWqHxgceOtz+7neiRcmqVH7S1DevY4QYdGoVxB+TjowcAnE2mk2lbVZ5yaQ4MPaNzjogbckT4D8VFJrVh4OBl3XXVLezPWM/xTZ4wyCrq+uMW6notPf7lsqbh7a8lutDiD+0Umi/Vnr9TSDYy83jixXAhwk/dWyP9WfzHQ3LU875wTRU6Oit5Bd1jLfw2qyaCHcoUXXCtPblQCgs60Dl5MHLPDLfOx9kSIpAl8zNw+KiuA/qoP7+9CwJiae/Q/D54R7xk/5rmX5p7AyA= +api: eJzlVlFvGzcM/isCn9bu6nPadCjuLcDcIsvQBLGHPQTGIOtoW82ddJV4zoyD/ntB6ezY8aXNHoe+2CeJ/Eh+JEV1QHLlobiD31Fpr625xa+tdlijIQ/zDGyDTpK25rKEAhbbK9z+8x4yaKSTNRI61u7AyBqhgHvcQgbaQAGNpDVkUKJXTjeMAAVc4VbYpSh7Y8IdWsugX5ZQkGsxA6/WWEsoOqBtw/jaEK7QQQZL62pJaeu3cwhhzuq+scajZ4234zH/HduftkqhZ1PKGkJDLCKbptIqBpl/8SzXnVq2iy+oiAN3TAnpZEWXBzKenDYrCFnk4SVeMz+nvF8OgyaOBw426LxOfn/X4ru3LO3Q29Yp/PwcHKGRhgad4FNNFW8NFkwILHI+RP2l2chKlzHl6On5FDTOLiqsf/2vqfAkqfUvJKFG7+VqOH5tPEmjniEnbnyPmIlz1u2ZeHfKxEfrFros0Rxz8Dp//f8P9/w03NuUcOTUp8oTxpJY2taUP0cVvB/qh4ubS3EQsMCo8BPwETLwqFqnaRtHxwKlQ/cmXpl385B1oKy91xhX86cT5BPS8PgQi61I46dGWlueViuMfPAgKiDfnOWlK/PuHrcB2Ae32U2v1lVQQJc4DUWed2vrKRRdYx2x8EY6LRdVopTPUj6Xsq2YwMoqWcXtp+7O1ij4gO9unny0RsGZT9ZHzB3bOIb7MP4wHkRi0WdQHuvhEWdN1AziJOFBpDhId/mZslwKepeTfY5lo68i3f3ov76Z3F7MJm+mk+n08vrz7hnQ64XsKM97lN7F6BCvkxDspD/uSvSPv2exnLRZ2qjel9V1fJ6guGkXlVYcymnAVsg49YVUpDcopCmFsnVTIV9KjbPxcFff/CV2sEvrRG2NJssFHTXJ2ZYrYW0tcZGnjpUq5jAVEgflizx/eHgYKVm3ppQjZWsmodIKjY889rz92e9kT5RLq/xeW9u4zh0u0aFRmPdAPj96AMDZaDwap6ryVEtzYOgFnXNE3D5HhP9S3lRSGwaOXnZ9V93B5oz1HN/kBYPMs74/7qDrFtLjX64Kgbe/tuhiiz+2U2y+Unv+LqFYysrjiRf7CxF+6d8a5Svxg4fkoOe7wjXb2NFVyyvoH2vxN8xDBmuUJbroWjq5UAobOtA5eTByz+xvnU+TGWQgW+Znz+GTuo7og/50XZKY2Xs0IezdI16zgyF8A729BJY= sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get decision requirements by key

+ - + Get decision requirements by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx index 2af5df108f0..6dfe598cd29 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx @@ -5,55 +5,150 @@ description: "Get decision definition by key" sidebar_label: "Get decision definition by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v2zYQ/ivEfdo6xXLarCiEYUCGuoWXoQlib/sQGANNnW02EqmSJ6eGoP8+HCm/xUrWfBz6xRbJe334HO8aILn0kN3Be1Taa2ve40IbTdoamCVgK3SSF+McMphvrnDzz1tIoJJOlkjoWLcBI0uEDO5xAwloAxlUklaQQI5eOV0Fcxlc4UbYhcg7VyLf+0rA4ZdaO8whI1djAl6tsJSQNUCbiq1rQ7hEBwksrCslxa23F9C2M1b3lTUePWu8Hg7579j7pFYKvYcElDWEhlhEVlWhVUgx/exZrjn1bOefURGn7RgQ0tGLzg9kPDltltAmAYVviZrRiUCM+w1FVHsO1ui8jrE+6+XN60MvtxHgEg35Jzz2iV69OJ1D7U9P5dAn/NeL8iI00lBvJnyqqeCtHl63LQtc9HFkbNay0LlgMqKnp7lSOTsvsPzppZzxJKn235hhid7LZT9+2niSRvUfxo3nYBk5Z90OiTenSHywbq7zHM0xBq/SV///dC9O072NF4589d7WTqEwlsTC1ib/Pljwc189XN6MxUHCAoPCd4BHm4BHVTtNm9Dh5igdurPwtt/N2qQBZe29xrCaPW50H5H6upyYb0TskSXSynJLXWJAg7tlBun6PN2qne3VfNrc46YFDsmttz23dgVk0ESI2yxNm5X11GZNZR2x8Fo6LedFRJjP4vUuZF0wnoVVsgjbj6OfrlDwAfcf7te0QsFEiN4HDCX7ODb3bvhu2GuJRZ+wsqfH3s6KqOq1E4V7LYUBYHtdE5aLSW+vaHflstJXAf9uYLm+Gd1eTkdnk9FkMr7+tB1eOr02Obr2nZUuxBAQr6MQbKU/bBn7+9/TwC5tFjaodyy7DkMVipt6XmjFqZwmbIUM04qQivQahTS5ULasCuQ3qnI2HG7pzl9ia3ZhnSit0WSZ30GTnK2ZCStriTkfC1iqcIeRSJyUz9L04eFhoGRZm1wOlC0ZhEIrND7g2OH2R7eTPFLOrfI7bW3DOnW4QIdGYdoZ8unREAPng+FgGFnlqZTmwNF/FtIRbLsbIvxKaVVIbdhsiLHpiuwO1uewHz8OywwSyNjqLOnK5Q6aZi49/umKtuXtLzW68ADsqyvUYq49f+eQLWTh8SSs3XMJP3TzTv6jeHYa7k1ky2KzCeVd1LyCbuIMv+2sTWCFMkcXAosnl0phRQc6J1MvF9DuTfo4mkICsma4dpA+Inmw3hvPL78FATG192h+3UVHvOT42vZf5I9HyQ== +api: eJzlVt1v2zYQ/1eIe9o6xXLarCj0FqBukWVogtjbHgJjoKmzzUYiVfLkzBD0vw9HSv6Ilax5HPpii+R9/vg73jVAcuUhu4ePqLTX1nzEpTaatDUwT8BW6CQvrnLIYLG9xu3f7yGBSjpZIqFj3QaMLBEyeMAtJKANZFBJWkMCOXrldBXMZXCNW2GXIu9ciXzvKwGH32rtMIeMXI0JeLXGUkLWAG0rtq4N4QodJLC0rpQUt95fQNvOWd1X1nj0rPF2POa/Y+/TWin0HhJQ1hAaYhFZVYVWIcX0q2e55tSzXXxFRZy2Y0BIRy86P5Dx5LRZQZsEFL4nakYnAnE1bCiiOnCwQed1jPVFL+/eHnq5iwCXaMg/43FI9PrV6Rxqf3kuhyHhP1+VF6GRhgYz4VNNBW8N8LptWeBiiCNXZiMLnQsmI3p6niuVs4sCy19eyxlPkmr/nRmW6L1cDeOnjSdp1PBh3HgJlolz1u2QeHeKxCfrFjrP0Rxj8CZ98/9P9+I03bt44chX723tFApjSSxtbfIfgwW/DtXD5e2VOEhYYFD4AfBoE/CoaqdpGzrcAqVDdxbe9vt5mzSgrH3QGFbzp43uM9JQlxOLrYg9skRaW26pKwxocLfMIN2cp73a2V7Np80DblvgkNym77m1KyCDJkLcZmnarK2nNmsq64iFN9JpuSgiwnwWr3cp64LxLKySRdh+Gv1sjYIPuP9wv6Y1CiZC9D5iKNnHsbkP4w/jQUss+oyVPT32dtZE1aCdKDxoKQwA/XVNWS4m3V/R7splpa8D/t3AcnM7ubucTc6mk+n06uZLP7x0em1ydO07K12IISBeRyHopT/1jP3tr1lglzZLG9Q7lt2EoQrFbb0otOJUThO2QoZpRUhFeoNCmlwoW1YF8htVORsOe7rzl+jNLq0TpTWaLPM7aJKzNTNhbS0x52MBSxXuMBKJk/JZmj4+Po6ULGuTy5GyJYNQaIXGBxw73H7vdpInyrlVfqetbVinDpfo0ChMO0M+PRpi4Hw0Ho0jqzyV0hw4+s9COoJtd0OE/1BaFVIbNhtibLoiu4fNOezHj8MygwQytjpPunK5h6ZZSI9/uKJteftbjS48APvqCrWYa8/fOWRLWXg8CWv3XMJP3byT/yxenIYHE+lZbLahvIuaV9BNnOG3nbcJrFHm6EJg8eRSKazoQOdk6uUC2r1JnyczSEDWDNcO0ickD9YH42maKDGzD2jadhce8ZoDbNt/AUyJST8= sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get decision definition by key

+ Get decision definition by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx index 11ffbbedf5d..fbfe1a9ecc1 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx @@ -5,52 +5,147 @@ description: "Get variable by key" sidebar_label: "Get variable by key" hide_title: true hide_table_of_contents: true -api: eJzlVt1v2zYQ/1eIe9pa1XLabCiEYkAKuIWXYQlir30I/EBRZ4uNRKrkyakh6H8fjvpIHKtr+zj0xRZ5H7z73R1/bIDkzkNyCx+k0zItEDYR2AqdJG3NMoME0sMlHiCCSjpZIqFj/QaMLBESuAsybSCBSlIOEWToldMV20MCl3gQdiv2g/sIHH6utcMMEnI1RuBVjqWEpAE6VOxSG8IdOohga10pqdv6/RzadsPmvrLGo2eLl/M5/x0fuaqVQu8hAmUNoSFWkVVVaBWyij951mtOT7bpJ1TEuTrGgHR3Cuf4PeEFOz56aTxJo/Dyuw29stUPqHfgj6qenDY7FuxlUU9LyNVGSWLcR2lqbYHSBDEaaWiZTdiyVFPBW2OXtC1vn0/BvzR7WehMcJ3R09fLUDmbFlg+/9FyeJJU+28i9eol51Wi93I3DYnuyzSNV9j4LzAWzlk3IvHqFIl31qU6y9AcY/Asfvb/T/f8NN2bruDIpfe2dgqFsSS2tjbZz9EFv03Nw8X1UjxKWGAw+Anw4GsNVe00HQJjpCgduhfhNr3dtFEDyto7jWG1eUoc75FG1hDpQXREUyLllllphwECppwE4v1ZPOj6uLnDQwt8uNsPbFW7AhJoOjDbJI6b3Hpqk6ayjlh5NOfsWNYVcivrgpErrJJF2H4a5zpHwQK+kpnpKEfBJe9OnwVWsO6Ju9fz1/NJT6z6FS8PjfDgJyeqJv10ypOeAosOhVmxXpf0UIyxuLLSHfP3VH91vbi5WC9erBar1fLq74H2e7s2Oirw6KUPMQQUOCcowaD9bujNPz+uQx9ps7XBvO+nq/AYQXFdp4VWnMppwlbIQPlCKtJ7FNJkQtmyKpBvo56UxdDY/CUGt1vrRGmNJsudHCzJ2Zo7IbeWuLu7UZUq1LBrJE7KJ3F8f38/U7KsTSZnypYMQqEVGh9w7HH7q9+JnhhnVvnRWtuwjh1u0aFRGPeOfBx4HZ3vkj2bzWfzrqs8ldI8Omh6ZI6wGstC+IXiqpA6sH8IrOnH6Rb2Z0cTEUHCrjZRPxi30DSp9PiPK9qWtz/X6MJQP1iFqcu05+8Mkq0sPJ7EMl6B8MtN/yr8VZy+GCdDHprUHGB89gBE3WMt/LabNoIcZYYuRNNJLpTCih7ZnLwMeT7Ge+b9Yg0RyJqBeXg3Hfdw8D4Zz5u3QUGs7R2aP8boiJccX9v+C4wh7NA= +api: eJzlVk1z2zYQ/SuYPbUpI8qJm8nw5oOSUd2pPZbaHDw6gOBKQkwCDLCUq+Hwv3cWIGnLYtrk2MlFIrAf2H27i4cWSO48ZPfwl3Ra5iXCJgFbo5OkrVkWkEF+vMYjJFBLJyskdKzfgpEVQgYPQaYNZFBL2kMCBXrldM32kME1HoXdisPgPgGHXxrtsICMXIMJeLXHSkLWAh1rdqkN4Q4dJLC1rpIUt95dQtdt2NzX1nj0bPFmPue/0yNXjVLoPSSgrCE0xCqyrkutQlbpZ8967fnJNv+MijhXxxiQjqdwjt8SXrDjo5fGkzQKr7/Z0Ctbf4d6BH9U9eS02bHgIMtmWkKuMUoS4z5Kc2tLlCaI0UhDy2LClqWaSt4au6TrePtyCv6lOchSF4LrjJ6+Xoba2bzE6pfvLYcnSY3/T6TevuG8KvRe7qYh0X2ZpvEKG/8GxsI560Yk3p4j8cG6XBcFmlMMXqWv/v/pXp6nexcLjlx6bxunUBhLYmsbU/wYXfDr1Dxc3S7Fs4QFBoMfAA++1lA1TtMxMEaO0qF7HW7T+02XtKCsfdAYVpuXxPERaWQNkR9FJJoKaW+ZlXYYIGDKySA9XKSDrk/bBzx2wIe7w8BWjSshgzaC2WVp2u6tpy5ra+uIlUdzzo5lsZBb2ZSMXGmVLMP2yzjXexQs4CuZmY72KLjk8fRZYAXrXrh7P38/n/TEql/x8tQIT372RPWkn6g86Smw6FCYFevFpIdijMWVtY7M31P9ze3i7mq9eL1arFbLmz8G2u/tuuSkwKOXPsQQUOCcoASD9oehN3/7tA59pM3WBvO+n27CYwTFbZOXWnEq5wlbIQPlC6lIH1BIUwhlq7pEvo16UhZDY/OXGNxurROVNZosd3KwJGcb7oS9tcTdHUdVqlDD2EiclM/S9PHxcaZk1ZhCzpStGIRSKzQ+4Njj9nu/k7wwLqzyo7W2YZ063KJDozDtHfk08Do6H5O9mM1n89hVnippnh00PTInWI1lIfyb0rqUOrB/CKztx+keDhcnE5FAxq42ST8Y99C2ufT4pyu7jre/NOjCUD9ZhakrtOfvArKtLD2exTJegfDTXf8q/FmcvxgnQx6a1BxhfPYAJPGxFn67TZfAHmWBLkQTJVdKYU3PbM5ehjwf4z3zcbGGBGTDwDy9m057OHifjKdto8baPqDpujE84jUH2HX/AJki7kY= sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get variable by key

+ - + Get variable by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx index eb7cc632ca5..b756e60d7bd 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx @@ -5,57 +5,142 @@ description: "Delete process instance and all dependant data by key" sidebar_label: "Delete process instance and all dependant data by key" hide_title: true hide_table_of_contents: true -api: eJzlVktv3DYQ/ivEnNpUXq0TtwiEooDbbAA3QW14t+jB2AOXml0xlkiFHK2zEPTfiyEleV/u61bkJJGc58dvZtgCyY2H7AHunFXo/Y3xJI1CWCZga3SStDU3OWSQY4mEkEAtnayQ0LFeC0ZWCBk84g4S0AYyqCUVkECOXjldswHI4APuhF2LOroRevCTgMPPjXaYQ0auwQS8KrCSkLVAu5pNa0O4QQcJrK2rJMWtH66g65as7mtrPHrWeD2d8ufQ9bxR7BMSUNYQGmIRWdelViG99JNnufbUs119QkWcs2MwSEcvFXovN7gn6Mlps4Eu6WHK/1n4CZCmkoV+KaTZ4JwkNR66jo+uzuVyY7ay1Llg0NDTyznVzq5KrL77t7n5GMLfhf/mNSf7V0CMN3zuMG6cHOwBMnPOuhGJN6dIvLdupfMczSEGr9JX//90r07TvY8Xjnz13jZOoTCWxNo2Jv86WPD9uXq4vrsRewkLDApfAR5dAh5V4zTtQhteoXToLrgNZw/LLmlBWfuoMayWx934XehSJ91YSJMLWZYixxpNLg2JXJIUq52I/b1CKuzRNKACMki3l2lv7WKw5tP2EXcdcKRuO8yLxpWQQRuR77I0bQvrqcva2jpi4a10Wq7KCDyfxVtfy6ZkmEurZBm2j5NaFCj4gCcSzxoqUDA/ovcJI8w+Ds29nb6dnrXEoi9YeWbNs52CqD5rJwqftRTm13CLc5aLSQ83NzJB1vpDwL8ftrd3s/vrxexiPpvPb25/GwZvr9clB2wYrfQhhoB4HYVgkH4/EPnXPxaBdNqsbVDvyXcb3gMo7ppVqRWncpqwFTIMWyEV6W0klLJVHYbiCd/4Twxm19aJyhpNlmkfNMnZhplQWEtcCrGupQp3GInESfksTZ+eniZKVo3J5UTZikEotULjA449bh/7neRIObfKj9rahnXqcI0OjcK0N+RTtspEjsleTqaTaWSVp0qaPUf/tb4O0BwvjvALpXUptWFvIfS2L7wH2F7GbnVYepBAxiaXSV9CD9C2K+nxd1d2HW9/btCFXvFccaE+c+35P4dsLUuPJzGNnRW+ue9fbt+Kl193Z1MYaG12od7LhleQhEdkfEp2yy6BAmWOLkQVT66Vwpr2dE5ecVxRY5N6N/s4W8wgAdkwViOeR8QPDs6G9OPPQUAs7COan8YAiZccYtf9CSey2/E= +api: eJzlVktv4zYQ/ivEnNqtYjm7abHQLeh6AXcXTRC76CHwgabGFjcSqSVHTg1B/70YUlL8Sl+3Yk8SyXl+/GaGLZDcesge4d5Zhd7PjSdpFMIqAVujk6StmeeQQY4lEkICtXSyQkLHei0YWSFk8IR7SEAbyKCWVEACOXrldM0GIINPuBd2I+roRujBTwIOvzbaYQ4ZuQYT8KrASkLWAu1rNq0N4RYdJLCxrpIUt366ga5bsbqvrfHoWePtdMqfY9eLRrFPSEBZQ2iIRWRdl1qF9NIvnuXac892/QUVcc6OwSAdvVTovdzigaAnp80WuqSHKf9n4SdAmkoW+rmQZosLktR46Do+urmUy9zsZKlzwaChp9dzqp1dl1j98G9z8zGEvwv/3VtO9q+AGG/40mHcODs4AGTmnHUjEu/Okfho3VrnOZpjDN6kb/7/6d6cp/sQLxz56r1tnEJhLImNbUz+bbDgx0v1cHs/FwcJCwwK3wAeXQIeVeM07UMbXqN06K64DWePqy5pQVn7pDGsVqfd+EPoUmfdWEiTC1mWIscaTS4NiVySFOu9iP29QirsyTSgAjJId9dpb+1qsObT9gn3HXCkbjfMi8aVkEEbke+yNG0L66nL2to6YuGddFquywg8n8Vb38imZJhLq2QZtk+TWhYo+IAnEs8aKlAwP6L3CSPMPo7NvZ++n160xKKvWHlhzYudgqi+aCcKX7QU5tdwiwuWi0kPNzcyQdb6U8C/H7Z397OH2+XsajFbLOZ3vw6Dt9frkiM2jFb6EENAvI5CMEh/HIj8y+/LQDptNjao9+S7C+8BFPfNutSKUzlP2AoZhq2QivQuEkrZqg5D8Yxv/CcGsxvrRGWNJsu0D5rkbMNMKKwlLoVY11KFO4xE4qR8lqbPz88TJavG5HKibMUglFqh8QHHHrfP/U5yopxb5UdtbcM6dbhBh0Zh2hvyKVtlIsdkryfTyTSyylMlzYGj/1pfR2iOF0f4B6V1KbVhbyH0ti+8R9hdx251XHqQQMYmV0lfQo/Qtmvp8TdXdh1vf23QhV7xUnGhPnPt+T+HbCNLj2cxjZ0VvnvoX27fi9dfdxdTGGht9qHey4ZXkIRHZHxKdqsugQJlji5EFU9ulcKaDnTOXnFcUWOT+jD7PFvOIAHZMFYjnifEDw4uhtS2UWJpn9B03Rgh8Zpj7Lo/ASPU3Wc= sidebar_class_name: "delete api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

- Delete process instance and all dependant data by key -

+ Delete process instance and all dependant data by key -## Request - -

Path Parameters

- -Success - -
Schema
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx index 9b0793cadfe..da460cb759c 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx @@ -5,57 +5,173 @@ description: "Get flow node statistic by process instance id" sidebar_label: "Get flow node statistic by process instance id" hide_title: true hide_table_of_contents: true -api: eJzlV0tv4zYQ/ivEnNqtYjm7abEQigIpkCzSLTZB7KKHwAeaGlvcSKSWHNk1BP33YqhH7EhBkdyKzSXmY17ffDMc1UBy6yF5gDtnFXp/YzxJoxBWEdgSnSRtzU0KCWyRFiRJe9LKQwSldLJAQsfiNRhZICTwiAeIQBtIoJSUQQQpeuV0yXoggc94EHYjytaa0L25CBx+q7TDFBJyFUbgVYaFhKQGOpSsWhvCLTqIYGNdIand+uUCmmbF4r60xqNniffzOf87Nb2oFNuciXukyhkv/BCO2FgnKEOx1Ts0I+8isXW2KjEV64PY5HYvjE2RQVDWEBpiY7Isc60CXvFXzxbrcQzSORkAIiz80b5df0VFjKpj1Em3cUhFeqfpwAkY7npy2mxHyC4zFDplcDmQwcsQ2j7TKgv7Dn2VkxfSoZDbrcOtJEyhiVpbOIn32BBZkrkwVbFGxyZb4QEwP3JjImsRKL6bY/pGo734a81qo3SKhvwb7Q7yA23+I0xblDnS2+Ps5V8XaBMBacrZ2nVu919sikcF3PBfBBdTlXJjdjLXqeCSRE8v87x0dp1j8dOLfH+B11x51TT8x1F8eM/wFei93OK4AkIqu/4xddhujA6OcLlyzjrokfgwRuLaurVOUzSnGLyL3/3/w70Yh3vfJhw59d5WTqEwlsTGVib9Pljw81Q9XN7diKOABQaB7wCPJgKPqnKaDuGRX6N06M74kU8eVk1Ug7L2UWNYrZ73sk9IR+/Q8NryI/r8hRWa+VUgZbabNcKEQRkkEO/O4+7+2dAA4/oRD03sjycSj27XjyOVyyGBuoW+SeK4zqynJqlL66iBCHbSabnOW+T5rE37RlY545xbJfOwPdWh+YAHnr4NM0Fa6zOGmG2cqvs4/zif1MRXX9DyRJsnPRlROamnvTypKYxHfRoXfK8Nuk/d03BS6s9hfOtmudu7q/vL5dXZ4mqxuLn90s91nVwTndBh0NK5GBzidXsJ+tvXPZP/+HsZWKfNxgbxjn23YepEcVetc604lHHAVsgwy/VzhzTp0Sv5nFz8S/Rq+ckurNFkmfdBkpytmAmZtdROVlzYUoUctkTioHwSx/v9fqZkUZlUzpQtGIRcKzQ+4Njh9me3Ez0TTq3yg7S2YR073KBDozDuFPmYtTKR22DPZ/PZvGWVp0KaI0OvLrATGIeMEf5DcZlLbdhM8Lnuiu8BdudtnzotP4ggaUf9owpcRV0hPUBdr6XHv1zeNLz9rUIXWsZT3YUqTbXn3ykkG5l7HDk4NFj44b77PPhRvPwJMRlPT25zCFWfV7yCKHyptN8rzaqJIEOZogtetSeXSmFJRzKjAZ/ramhZn66WEIGsGLUB2WfcD9on/fn193BBLO0jmt8G74iX7F/T/Au9Rrd6 +api: eJzlV0tv20YQ/iuLObUpLcpJWgS8+WAHborYsFz0YOiwWo7EjcldZncoVSD434NZPkyZNAr7VsQXax/z+uab2WENJHcekge4dVah99fGkzQKYR2BLdFJ0tZcp5DADmlFkrQnrTxEUEonCyR0LF6DkQVCAo94hAi0gQRKSRlEkKJXTpesBxL4gkdht6JsrQndm4vA4fdKO0whIVdhBF5lWEhIaqBjyaq1Idyhgwi21hWS2q0/PkLTrFncl9Z49Czxfrnkf6emV5Vimwtxh1Q544UfwhFb6wRlKHZ6j2biXSR2zlYlpmJzFNvcHoSxKTIIyhpCQ2xMlmWuVcAr/ubZYj2NQTonA0CEhR/t2803VMSoOkaddBuHVKT3mo6cgOGuJ6fNboLsfYZCpwwuBzJ4GUI7ZFplYd+hr3LyQjoUcrdzuJOEKTRRawtn8Z4aIksyF6YqNujYZCs8AOYnbsxkLQLFd3NM32i0F3+tWW2UTtGQf6PdQX6gzX+EaYsyR3p7nL386wJtIiBNOVu7yu3hq01xVMAN/0Xwca5Srs1e5joVXJLo6WWel85ucix+e5HvL/CaK6+ah38cxYf3DF+B3ssdTisgpLLrH3OH7cbkYITLpXPWQY/EhykSV9ZtdJqiOcXgXfzu/x/ux2m4d23CkVPvbeUUCmNJbG1l0p+DBb/P1cPF7bUYBSwwCPwEeDQReFSV03QMj/wGpUN3xo988rBuohqUtY8aw2r9vJd9Rhq9Q8Nry4/o8xdWaOZXgZTZbtYIEwZlkEC8P4+7+2dDA4zrRzw2sR9PJB7dvh9HKpdDAnULfZPEcZ1ZT01Sl9ZRAxHspdNyk7fI81mb9q2scsY5t0rmYXuuQ/MBDzx9G2aCtNYXDDHbOFX3aflpOauJr76g5Yk2T3oyonJWT3t5VlMYj/o0rvheG3SfuqfhpNRfwvjWzXI3t5d3F/eXZ6vL1er65ms/13VyTXRCh0FL52JwiNftJehvX/VM/vOf+8A6bbY2iHfsuwlTJ4rbapNrxaFMA7ZChlmunzukSUev5HNy8S/Rq+Unu7BGk2XeB0lytmImZNZSO1lxYUsVctgSiYPySRwfDoeFkkVlUrlQtmAQcq3Q+IBjh9tf3U70TDi1yg/S2oZ17HCLDo3CuFPkY9bKRG6DPV8sF8uWVZ4KaUaGXl1gJzAOGSP8l+Iyl9qwmeBz3RXfA+zP2z51Wn4QQdKO+qMKXEddIT1AXW+kx79d3jS8/b1CF1rGU92FKk21598pJFuZe5w4ODRY+OWu+zz4Vbz8CTEbT09ucwxVn1e8gih8qbTfK826iSBDmaILXrUnF0phSSOZyYDPdTW0rM+X9xCBrBi1Adln3A/aZ/2p6/bGvX1E0zSDe8RrdrBpfgCU8bjw sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

- Get flow node statistic by process instance id -

+ Get flow node statistic by process instance id -## Request - -

Path Parameters

- -Success. Returns statistics for the given process instance, grouped by flow nodes - -
Schema
  • Array [
  • ]
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api.info.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api.info.mdx index 9ea6e3d454d..cabe55b339c 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api.info.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api.info.mdx @@ -9,18 +9,26 @@ custom_edit_url: null --- import ApiLogo from "@theme/ApiLogo"; +import Heading from "@theme/Heading"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; import Export from "@theme/ApiExplorer/Export"; -

Operate Public API

+ To access active and completed process instances in Operate for monitoring and troubleshooting
-

- Authentication -

+
@@ -69,9 +77,7 @@ To access active and completed process instances in Operate for monitoring and t >

Contact

- - URL: https://www.camunda.com - + URL: [https://www.camunda.com](https://www.camunda.com)

License

diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-1.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-1.api.mdx index 5cba3950265..a8ab51ec272 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-1.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-1.api.mdx @@ -5,59 +5,240 @@ description: "Search process instances" sidebar_label: "Search process instances" hide_title: true hide_table_of_contents: true -api: eJztWG1PIzcQ/ivWfOHuupDl7V6iqhIHQeJ6BUpS+gGiyvFOEh+79p7tBdIo/70ae5NssgsXpPZD2+MTsWfG42eeefFOwfGRhfYNXBot0NozZR1XAqEfgc7RcCe1OkugDRa5EeM/diECg18LtO6jTibQnkKCVhiZkyS0oevlWB7sMVkatBCB0MqhcqTD8zyVwltvfbGkOAUrxphx+s9NcoQ26MEXFA4iyA354iRa2h3K1KH5ttwdTipCUjkcoYEIhtpk3IWltwcw83rk7DUaK4Mvzyrt79WVenxU0bPOSDUiqUGeqTm2SaNEzg0q9/Pmznr501Q/nOsE5wHbXN86btwJd9joDarkyT3rGndIqciIREfHvbPrDkRwfPHL5edOr3NC/x+dH3c+d06gP4tAKiGTkgOllYHWKXJVgfQEh1JJ4sbmt3KouHLPQrxGcW8bhDSiSLl5tbb72huVLiVL68lBWMg/cUOihMw5Gq6SlhvDJxCBdJjZOplnpKiN21yjniaYNsOhTbLiSj2O3WOI4KTTPYb+rIJDlxyaVVd+LdBMGuDBR57laXDkKE3rZeIKXWGUZTxN67WCvUpwyIvUMePFWCqtYwQ5k5btxq8hgnueFhQB8ob8woQNJmxx6ebT6ifZoMqtQJVINSIjqzm7PKoMyM0CW1iXLJH1AM76Fde4SljOR5iwB+nGbM6eZi8z/sj2G3zlRCG2NZCja27KY7e86TucsLfvDg/3P3w4ONiNDw/fv4u/fTV2q3qajdAxN0am8NF5H5nQ+cQv+YszPWRbZOuaftktJpXTbKvC6q0guHOr6LbM5ijksKzuzI51kSYs406MvdGK4qroCtIeoP3opZCvZdsNrIAF0TpIPkanvqGUUQqoPR+cw7genYgN52YGE7baHAjCvZdRbdnk1pvT3qL6HMYvxmfm/6iF21wrGxJ0L44b+nghAmR/V9teL1svLGffu/n3bv4PdfOy1Yb69rIW7bTj6UaXqjhwhbZIna37QUIHTcl4wh1nUt3zVCZPZ2Ru9CDF7IeXZiYxobAbJkqG1vJRM6XmxbBxMyzUNiq4dIzRZgHDfh2GU20GMklQrWLwpvXm33/dg/p1z7Vjp7pQyX/uuodNJD+6PGMVOjP0Cv8Dtvs3giiMdBPfygfIDZpt3/Fu+rNoCkLrO4n+Vz/a/MGdoRtrGgpybT0Q3I2hDa373VYpvr0Qb4XBCcgXc4/GelcKk0IbpgHbWbvVmo61dbP2NNfGzfzAYiQflJM+7YW4+ukd2pBqwdNxOH3V7d4YGW0onvkRk0ZDYkA4fccX+vL9szT3Pn4fN1oi0SesLHmxtDN2Lm+0E4QbLc3CdBni1CW5cOl5bJZtI5fUjSKgq0EbLi47V0e9zna30+2eXZxTQ6HjSj2aKirxXlgpXfQO+cbqhWAufTqn6qffe55WlAZXyw8znfAAWx0l/QlxfUKqLfn5ZzkRrI09y43KtBM/O8vEK5NKddZI1pfKuWQ5fiynDGcKfGquiKtTQ3XM8aNyvP4wmPporg/PCyfWpmZyYqh9dMrsvfAfx5BdFoNUCmJKnU+acT9DMy6cvEf/vBCawkLvgPr7Tio2NzvUhmVaSafJIa/pjC4o0cZau+AkFUYufIqEPCXO2Har9fDwsCN4VqiE7widEQypFKis50NJy8/lSrSmnGhhF9pS+98tg0M0qAS2SkO2RVbv5wyC3Z14Jw5Ja13GVeWgZwrUCmAL6jt8dK085dKPkd67aVm7buB+FxYU2K7aKutXPyrL0A1MpwNu8TeTzma0/JW+VVANXVatUF9hjDwJrAgpAseh5Wz3yKHFq6z+/KHaHDSOhMDcPSvbrxTky4tujxKr/ISa6YR0DH+gz6v8AdpwC7dARPTg+ELj16eQcjUqfE+CYJeynxeEznIKXy0W/mbz6qQmFS9//OgFWE/fofoJovI2jn6G5+Jf7YeYrw== +api: eJztWEtz2zYQ/iuYvThJaYt+5aGba8szblPbtVT34Gg6ELiSkJAAA4C2VQ3/e2cBSqJE2pFn2kPb+GQBu4vFt98+wDk4PrHQvYNrowVae6Gs40ogDCPQORrupFYXCXTBIjdi+sc+RGDwa4HW/aiTGXTnkKAVRuYkCV3oezmWB3tMVgYtRCC0cqgc6fA8T6Xw1jufLSnOwYopZpz+c7McoQt69BmFgwhyQ744iZZ2xzJ1aL4t9wVnNSGpHE7QQARjbTLuwtLbIyi9Hjl7i8bK4MuzSocHTaUBn9T0rDNSTUhqlGdqgW3SKpFzg8r9vL2zXv481Q+XOsFFwLbXt44bd8YdtnqDKnlyz7rWHVIqMiLRyeng4rYHEZxe/XL9sTfondH/J5envY+9MxiWEUglZFJxoLIy0jpFrmqQnuFYKknc2P5WDhVX7lmINyjubYOQRhQpN682dl97o9KlZGkzOQgL+SduSZSQOSfjddJyY/gMIpAOM9skc0mK2rjtNZppgmk7HNoka64049g/hQjOev1TGJY1HPrkUFlf+bVAM2uBBx95lqfBkZM0bZaJG3SFUZbxNG3WCvYqwTEvUseMF2OptI4R5Exath+/hgjueVpQBMgb8gsTNpqx5aXbT2ueZIMqtwJVItWEjKzn7OqoKiB3S2xhU7JC1gNYDmuucZWwnE8wYQ/STdmCPe1eZvyRHbb4yolCbGckJ7fcVMfueNNfcMbevjs+Pvzw4ehoPz4+fv8u/vbV2Cc10GyCjrkpMoWPzvvIhM5nfslfnOkx2yFbt/TL7jCpnGY7NVbvBMG9T4puy2yOQo6r6s7sVBdpwjLuxNQbrSmui64h7QE6jF4K+Ua23cEaWBBtguRjdO4bShWlgNrzwTmOm9GJ2HhhZjRj682BIDx4GdVWTW6zOR0sq89x/GJ8Sv9HLdzmWtmQoAdx3NLHCxEg+7va9mbZemE5+97Nv3fzf6ibV6021LeXtWinHU+3ulTNgRu0Reps0w8SOmpLxjPuOJPqnqcyeTojc6NHKWY/vDQziQmF3TJRMrSWT9optSiGrZthobFRw6VnjDZLGA6bMJxrM5JJgmodgzedN//+6x41r3upHTvXhUr+c9c9biP5yfUFq9GZoVf4H7DdvxFEYaSb+VY+Qm7Q7PqOdzcsozkIrb9I9L+G0fYP7gzdVNNQkGvrgeBuCl3o3O93KvHdpXgnDE5Avph7NNa7UpgUujAP2JbdTmc+1daV3XmujSv9wGIkH1WTPu2FuPrpHbqQasHTaTh93e3BFBltKJ75EZNGQ2JAOH3PF/rq/bMy9z5+H7daItEnrKx4sbIzdS5vtROEWy2VYboMceqTXLj0IjartpFL6kYR0NWgC1fXvZuTQW+33+v3L64uqaHQcZUeTRW1eC+tVC56h3xj9UKwkD5fUPWn3weeVpQGN6sPM73wAFsfJf0JcXNCaiz5+Wc1EWyMPauN2rQTPzvLxGuTSn3WSDaXqrlkNX6spgxnCnxqrojrU0N9zPGjcrz5MJj7aG4Oz0snNqZmcmKsfXSq7L3yH8eQXRejVApiSpNPmnE/QzMunLxH/7wQmsJC74Dm+04qtjA71oZlWkmnySGv6YwuKNGmWrvgJBVGLnyKhDwlzthup/Pw8LAneFaohO8JnREMqRSorOdDRcuP1Uq0oZxoYZfaUvvfHYNjNKgEdipDtkNW7xcMgv29eC8OSWtdxlXtoGcK1BpgS+o7fHSdPOXSj5Heu3lVu+7gfh+WFNit26rq1zCqytAdzOcjbvE3k5YlLX+lbxVUQ1dVK9RXmCJPAitCisBpaDm7A3Jo+SprPn+oNgeNEyEwd8/KDmsF+fqqP6DEqj6hZjohHcMf6PMqf4AuEAk9ML7I+LU5pFxNCt+PINikzOcFIbOawNcLhb/VojKpWc3D+TxIDPQXVCUV83AVR7/DW/EvcbmZKQ== sidebar_class_name: "post api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search process instances

+ Search process instances -## Request - -

Body

- -Search process instances - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-2.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-2.api.mdx index d59e2ac1312..9b6fb57462b 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-2.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-2.api.mdx @@ -5,59 +5,223 @@ description: "Search process definitions" sidebar_label: "Search process definitions" hide_title: true hide_table_of_contents: true -api: eJzlWN9v2zYQ/leIe8nWKf6RJm0qDAPcNAXaDU1We9tDEgy0dLbZUqRKUkk9wf/7cCQty7aaJsNetr5Z5N3x+N3dd0fX4PjcQnoFl0ZnaO0rnAklnNAKbhLQJRpOH29ySMEiN9nizyNIwOCnCq17qfMlpDXkaDMjSq+WwtjLMfzMi1KihQQyrRwqR6K8LKXIvNH+B0vyNdhsgQWnX25ZIqSgpx8wc5BAacgFJ9DS7kxIh+brch9x2RISyuEcDSQw06bgLiw9O4ZVAooX2BK1zgg1p41bNFYE7+418/SoJT3h805j07JQEV8CskPCoeLKdW7SrnCSlvZjtErAir/wgW6GAI5m2yByY/gSEhAOC7sPLjlgtXEP19gPG8rua2uTb7kSdxJAVRWUlaPxGSTw6nx8BjdtJMbk0Kq98muFZtkJUJOHaQ0jKffzdSQlK4MmE8o6rjK07LscZ7ySjhHATFg2HHwPCdxyWRHedPaYdvSMGXSVUZgzKaz7Yj3sH8FVHnW9Jpnyh520zonxPfHnxTA8wjxFjk2XzCd626o3ddUEB6JAjIgHfnWzPjSYion2sNOTcDQJo8qFmq+9CFe1EbquqyZf9c4nxI57JZ8/xr02MI0+M2gr6ewmEj12rdhEszk65hbIFH52QTTT5dIvefdJ44Bs/k5f9oAJ5TQ7aFXcQRDsXSvvsi0xE7PIhMwudCVzVnCXLbzRluK26D/CK0RzhwCu4IxLiTmLVQMJHB2dDJ+/eHE6fPrs9PnR6TAU3WtPu5t02kc5SkyXLDLhVu5t01/L/w2fN3Q7bBjtZNBxr11Tu+m68pxg0JZa2VDyR4NBR1pUWbzyv9SadqnwkRT5DXWs2E5CnTyuDTntuHwQTi0X3oeS7vKExI670uMVd5wJdculyL+cI6XRU4nFD4/NFeu4q+wDA1WgtZHZ9mKwZrPuAPmF+4Jzbow2DQxPO8pam6nIc1TbGDzpP/nvX/d4/7rvtGOvdaXy/911T7qSfHT5hrXSmaFX+Aay3U/CWWWEW/rmMkVu0Bx6Dr66WSU1ZFp/FOi/bpL7J4q8IRTqJgW6haZGVWrroeBuASn0b4f9qHDYUuiHfgzkjyFG9u5URkIKdcB3lfb79UJbt0rrUhu38v3TCD6NEy3thdj6aRVSkDrjchHO33Z9skBGG37m0TM/aFAWhNN7hGPZjJhrc6eD00GnJRL9gpVNbmzsLJwrO+0E4U5LqzC0hFiNSS5ceh2fTfMoxc9I3SO0R7i4PH8/mpwfjs/H4zcX76it0HFRjxpcK+aNleiid4i+gxCspV+v0/XtHxOfWlQK7zcv4fPw0NiebPwJg8ax5oXTtOvBdjPeSOz04M3GpvW2CiAMTYPdGa/2CO6OUY2pnfmJYJppj0ismgv/DwCyy2oqRUbR2Y+hZtxPU4xnTtyGaTrTBIXDvONdIhRbm51pwwqthNPkkNd0RleU3AutXXCSCIlnPi1DbVCcbNrv393d9TJeVCrnvUwXBIMUGSrrYxAR/yWuJDvKuc5soy20/+4bnKFBlWE/GrL9rdkKhr1BbxAKxbqCq9ZB9xLDFmRNwjn87Pql5MI/VL1/deSMK7gdBi7dZQ1Yx5j+oQnlfwV1PeUWfzNytaLlT/QaJv7asEXgNlggz0NmhNSEs0D3hxNyqRnO94dh4sWgMcoyLN29sjctKry8GE8oneN/RYXOScfwO/ofid9BCtdwDZSMZbhfWof1GiRX88r3Awh2qep4Rfg0GO4Uqb/ZmhXUsuXljy+9AJvoj6h+giTextFneDz8DaxJhiw= +api: eJzlWFFz2zYM/is8vGTrFMtOmzbVm5emd912TVZ720Oa29ESbLGlSJWkkno6/fcdSFmWbTVNdnvZ+maRAAh+AD6ArsHxlYXkGq6MTtHaV7gUSjihFdxEoEs0nD7eZJCARW7S/M8TiMDgpwqt+1Fna0hqyNCmRpReLYGZl2P4mRelRAsRpFo5VI5EeVlKkXqj8QdL8jXYNMeC0y+3LhES0IsPmDqIoDTkghNoaXcppEPzdbmPuO4JCeVwhQYiWGpTcBeWnj+DJgLFC+yJWmeEWtHGLRorgnf3mnl60pOe89WgsUVZqBZfAnJAwqHiyg1u0q5wkpYOY9REYMVf+EA3QwCny10QuTF8DREIh4U9BJccsNq4h2schg3l8LW1yXZcaXciQFUVlJXT2TlE8Opidg43fSRm5FDTX/m1QrMeBKjLw6SGqZSH+TqVkpVBkwllHVcpWvZdhkteSccIYCYsm4y/hwhuuawIbzp7Rjt6yQy6yijMmBTWfbEeDo/gKmt1vSaZ8oed9s5p43vqz2vD8AjzFDm2WDOf6H2r3tR1FxxoBdqIeOCbm82hwVSbaA87PQpHkzCqTKjVxotwVdtCN3TV6Kve+YTYc6/kq8e41wem02cGbSWd3UZixN4rNtdshY65HJnCzy6Iprpc+yXvPmkckc3f6cseMaGcZke9ijsKgqP3yrtsS0zFsmVCZnNdyYwV3KW5N9pT3BX9R3iFaO4RwDWccykxY23VQAQnJ6eTFy9fnk2ePj97cXI2CUX32tPuNp0OUW4lFmvWMuFO7u3SX8//LZ93dDvpGO10PHCvfVP76dp4TjBoS61sKPmT8XggLaq0vfK/1Jr2qfCRFPkNday2nYQ6eVwbctpx+SCcei68CyU95AmJPRtKj1fccSbULZci+3KOlEYvJBY/PDZXrOOusg8MVIHWtsx2EIMNmw0HyC/cF5wLY7TpYHg6UNbaLESWodrF4En85L9/3WeH132rHXutK5X97657OpTk06s3rJfODL3CN5DtfhJOKyPc2jeXBXKD5thz8PVNE9WQav1RoP+6ie6fKLKOUKibFOhyTY2q1NZDwV0OCcS3k7hVOO4pxKEfA/ljiJG9O5WRkEAd8G2SOK5zbV2T1KU2rvH90wi+aCda2gux9dMqJCB1ymUezt91fZ4jow0/8+ilHzQoC8LpI8Kx7EbMjbmz8dl40BKJfsHKNje2dnLnykE7QXjQUhOGlhCrGcmFS2/is20epfgZqXuE9giXVxfvpvOL49nFbPbm8i21FTqu1aMG14t5Z6V10TtE30EINtKvN+n60x9zn1pUCu+2L+GL8NDYnWz8CePOse6F07Xr8W4z3krs9eDtxrb19gogDE3j/Rmv9gjuj1Gdqb35iWBaao9IWzWX/h8AZFfVQoqUonMYQ824n6YYT524DdN0qgkKh9nAu0QotjG71IYVWgmnySGv6YyuKLlzrV1wkgiJpz4tQ21QnGwSx3d3d6OUF5XK+CjVBcEgRYrK+hi0iP/SrkR7yplObacttP+ODS7RoEoxbg3ZeGe2gsloPBqHQrGu4Kp30L3EsANZl3AOP7u4lFz4h6r3r2454xpuJ4FL91kDNjGmf2hC+V9DXS+4xd+MbBpa/kSvYeKvLVsEboMceRYyI6QmnAe6P56TS91wfjgMEy8GjWmaYunulb3pUeHV5WxO6dz+V1TojHQMv6P/kfgdJECJWIa7JXVYq0Fytap8L4BgkyqOV4RNh99egfpbbRhBrXse1nWQmOuPqBoi0XAVR9/h5fA3aASGpg== sidebar_class_name: "post api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search process definitions

+ Search process definitions -## Request - -

Body

- -Search examples - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-3.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-3.api.mdx index bf4ab7bd85d..8cc582c91a7 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-3.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-3.api.mdx @@ -5,56 +5,282 @@ description: "Search incidents" sidebar_label: "Search incidents" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search incidents

+ - + Search incidents -## Request + -

Body

+ -Search incidents - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error + -
Schema
+ diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-4.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-4.api.mdx index 1ecf3581674..224417e3c2e 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-4.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-4.api.mdx @@ -5,59 +5,305 @@ description: "Search flownode-instances" sidebar_label: "Search flownode-instances" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search flownode-instances

+ Search flownode-instances -## Request + -

Body

+ -Search flownode-instances - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error + -
Schema
+ diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-5.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-5.api.mdx index 56935b6c5ee..e95140e43d5 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-5.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-5.api.mdx @@ -5,56 +5,227 @@ description: "Search decision requirements" sidebar_label: "Search decision requirements" hide_title: true hide_table_of_contents: true -api: eJztWG1v2zYQ/ivEfcnWqZad1l0qDAPcNgWyDU0We9uHJBho6mxzlUiVpJx6hv77cKQsy7bcJsW+7OWbRN4dH97LcyetwfG5heQG3qCQVmp1jR9KaTBH5SzcRaALNNxJrS5SSMAiN2Lx+xAiMPihROte6XQFyRpStMLIgiQhgbGXY/iR50WGFiIQWjlUjkR5UWRSeKPxH5bk12DFAnNOT25VICSgp3+gcBBBYQiCk2hpdyYzh+bzcjJtyVhnpJpDFcF7XLXWpXI4RwMRzLTJuQtLL56TZNrhj4tuo4rn2LmxRGNluN8nT3x2StIGrS6NwHfHzDlUXLlOELQrXUZLnYGsIrDyT3wgkhDl0WzX09wYvoIIpMPcHkaAMFht3MM1DmOLWbeHtUl3oNQ7EaAqc8re0fg1RPDmfPwa7trOGBOgqr3yc4lmdcxHTb4maxhl2WFej7KMbTKDmZY2+yrFGS8zx8jPTFo26H8NESx5VpLbCcKYdvSMGXSlUZiyTFp3tHa6j+EqrfW9NpnzBw5bZ9WhHvoz64g88ggKJONWoEqlmrPpivkkb5/hDd80UYNaoA6Vj0h1t4EQjNYZ+HAsUQBCCrtIokc5IvosWp85e3ALPv8yuAd+20FLZrdoe7dqotkcHXMLZAo/Oi8QMaGLlV/zlyGFEzL+K73ZEyaV0+ykVagnQbB3q/wFbIFCzmqWZXahyyxlOXdi4Y22FHdFe1/kvhDsPeK4gQu11FIge1VaqdBatqk7aginp8PBty9fng2evTh7MRz2Q+G+9fy+zcHDANQS0xWr6XUrPF2xI7TdutS2gzT0PGjocdjvuOxRm/u5XnmmMWgLrWxgkdN+vyOHSiHQ/o1dcZ9gH0m8/zfL3UZQd7JQa4/rgE47nj3Iay0U12jLzNkjYEjyeVcaveGOM6mWPJPp8VwqjJ5mmH/z2JyyjrvSPjAcOVpb0+VBJKSyjitxJEx+4VMhOjdGm8YNzzoIQZupTFNUuz54Ej/551/3+eF132nH3upSpf+66w67knx0dcFa6czQK/wHst3P4aI00q18N5oiN2ieelK+uauiNQit30v0b3fRI8YUoBu4habeVmjrncHdAhKIl4M4NWkc+jgQAkO87AGUJoME1sGjVRLH64W2rkrWhTau8i3WSD6tx2faC9H0YzEkkGnBs0U4bxfsZIGMNqg30KRDEwrFPZzeI88VzRy7MXfWP+t3WiLRI1a22bC1s3Cu6LQThDstVWHYCdEZk1y49CYi245RyB+RWkZoe3B5dX49mpw/HZ+PxxeX76iX0HG1XhXtRLmxUkP0gOg9CMFG+u0mQX/4beKTiZL/evt5fh6+anaHH5m2v6P8ef3jjXwrWV+keW/adn+/KW9ltr24VQth4OrvD41r79r9EawxtTdykf9m2ruqLqBL/78C2VU5zaSgsB0GVzPuBzDGhZNL9AOk0OQjhykrjPabm0qmJ7YxO9OG5VpJpwmQ13RGl5T1C61dAEncxIXP11A0FECbxPH9/X1P8LxUKe8JnZMbMilQWR+c2rU/1SvRnnKqhW20pfbvscEZGlQC49qQjXeGKRj0+r1+qCDrcq5aB32GI3ac1uSiw48uLjIuFRn1CNc1fdzAckB6JoVNVOkPUmCCG1ivp9ziLyarKlr+QB/iRF5b4gjEBgvkaciFkJfwOnD90wlBaEb5w4mZSDFojITAwn1S9q7FgleX4wmVU/0vK9cp6Rh+T/+5+D0kcAu3QOnn3eFr3a+vIeNqXvpmAMEuFSAvyR+Nz/bq1d9sQxBq1UL53SsvwCb6ParvN3UJjl7DF8ZfAH7Cog== +api: eJztWEtz2zYQ/iuYvbhNGT0cK3V4UxJnxm0mdi21PTieDgSuJCQkwACgHJXD/95ZgKIoiUrsTC993Ehgd/FhH98uWYLjCwvxLbxGIa3U6gY/FdJghspZuItA52i4k1pdJhCDRW7E8o8RRGDwU4HWvdTJGuISErTCyJwkIYaJl2P4mWd5ihYiEFo5VI5EeZ6nUnij/Q+W5EuwYokZpye3zhFi0LMPKBxEkBuC4CRa2p3L1KH5upxMWjLWGakWUEXwEdetdakcLtBABHNtMu7C0vMzkkw6/HHZbVTxDDs3VmisDPf74onPTknaoNWFEfjumDmHiivXCYJ2pUtpqTOQVQRW/okPRBKiPJ7vepobw9cQgXSY2cMIEAarjXu4xmFsMe32sDbJDpR6JwJURUbZO568ggheX0xewV3bGRMCVLVXfinQrI/5qMnXuIRxmh7m9ThN2SYzmGlps+8SnPMidYz8zKRlw8H3EMGKpwW5nSBMaEfPmUFXGIUJS6V1R2un+xiuklrfa5M5f+CodVYd6pE/s47II4+gQDJuBapEqgWbrZlP8vYZ3vBtEzWoBepQ+YhUdxsIwWidgQ/HEgUgpLCLJHqUI6KvovWZswc354tvg3vgtx20ZHaLtvdeTTVboGNuiUzhZ+cFIiZ0vvZr/jKkcELGf6M3e8KkcpqdtAr1JAj23it/AZujkPOaZZld6iJNWMadWHqjLcVd0d43uS8Ee484buFSrbQUyF4WViq0lm3qjhrC6elo+OOLF+fDZ8/Pn49Gg1C4bzy/b3PwMAC1xGzNanrdCs/W7Ahtty617SANPQ8behwNOi571OZ+rleeaQzaXCsbWOR0MOjIoUIItH9jV9wn2EcS7//NcrcR1J0s1NrjOqDTjqcP8loLxQ3aInX2CBiSPOtKo9fccSbViqcyOZ5LudGzFLMfHptT1nFX2AeGI0Nra7o8iIRU1nEljoTJL3wpRBfGaNO44VkHIWgzk0mCatcHT/pP/vnXPTu87jvt2BtdqORfd91RV5KPry9ZK50ZeoX/QLb7OVwURrq170Yz5AbNU0/Kt3dVVILQ+qNE/3YXPWJMAbqBW2rqbbm23hncLSGG/mrYT0zSD30cCIEhXvYACpNCDGXwaBX3++VSW1fFZa6Nq3yLNZLP6vGZ9kI0/VgMMaRa8HQZztsFO10iow3qDTTp0IRCcQ+n98hzeTPHbsydD84HnZZI9IiVbTZs7SydyzvtBOFOS1UYdkJ0JiQXLr2JyLZj5PJnpJYR2h5cXV/cjKcXTycXk8nl1TvqJXRcrVdFO1FurNQQPSB6D0KwkX6zSdCffp/6ZKLkv9l+nl+Er5rd4Ucm7e8of97geCPfStYXad6btj3Yb8pbmW0vbtVCGLgG+0Nj6V27P4I1pvZGLvLfXHtX1QV05f9XILsuZqkUFLbD4GrG/QDGuHByhX6AFJp85DBhudF+c1PJ9MQ2ZufasEwr6TQB8prO6IKyfqm1CyCJm7jw+RqKhgJo437//v6+J3hWqIT3hM7IDakUqKwPTu3at/VKtKecaGEbban9e9/gHA0qgf3akO3vDFMw7A16g1BB1mVctQ76CkfsOK3JRYefXT9PuVRk1CMsa/q4hdWQ9EwCm6jSH6TABLdQljNu8VeTVhUtf6IPcSKvLXEEYoMl8iTkQshLeBW4/umUIDSj/OHETKQYNMZCYO6+KHvXYsHrq8mUyqn+l5XphHQMv6f/XPweYqDU867wde7XSki5WhS+EUCwScXHC/JF46+9WvW32pCDWrcQlmWQmOqPqKpqU5Tg6D18XvwFBsjDHA== sidebar_class_name: "post api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search decision requirements

+ - + Search decision requirements -## Request - -

Body

- -Search examples - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-6.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-6.api.mdx index 9635ddbad3d..a4cff06d67a 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-6.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-6.api.mdx @@ -5,59 +5,317 @@ description: "Search decision instances" sidebar_label: "Search decision instances" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search decision instances

+ Search decision instances -## Request + -

Body

+ -Search examples + -
    filter object
    evaluatedInputs object[]
  • Array [
  • ]
  • evaluatedOutputs object[]
  • Array [
  • ]
  • sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • evaluatedInputs object[]
  • Array [
  • ]
  • evaluatedOutputs object[]
  • Array [
  • ]
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-7.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-7.api.mdx index 53311a23861..7b5d4a83384 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-7.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-7.api.mdx @@ -5,59 +5,242 @@ description: "Search decision definitions" sidebar_label: "Search decision definitions" hide_title: true hide_table_of_contents: true -api: eJztWFtv2zYU/ivEecnWKb6kdZsKwwC3SYFsQ5LFXveQGAMtHVtsJVIlqaSe4P8+HFKWZVtO42Iv3fYmkefynfuRSrB8biC8hTOMhBFKnuFMSGGFkjAJQOWoOb1cxBCCQa6j5M9XEIDGTwUa+0bFCwhLiNFEWuSOLYSRo2P4mWd5igYCiJS0KC2R8jxPReSEdj8Yoi/BRAlmnJ7sIkcIQU0/YGQhgFwTBCvQ0O1MpBb1l+lE3KAxVgs5h2UAH3HROBfS4hw1BDBTOuPWH718QZRx5Y2LdkGSZ9h6cY/aCG/To1qenzS13OCnQmjMUFqzR2Mb6S8Hm9PkvtxnQxvx+4Pssii5tK2W0K2wKR21ZNwyACP+wieq8ek4nG2mBNeaLyAAYTEzu6lCCIzS9ukcu0mIaXuQlI43oFQ3AaAsMiqy4egtBHB2PnoLk6YrRgRo2Tz5rUC9aPdQXVZhCcM03S2/YZqyVRBZXPMa9l2MM16klpGTmTCs3/seArjnaUE+J/0julEzptEWWmLMUmHs3gpv1cJlXLE7ZpLm9A0aqqowD5zKKhqHaaAYMm4ilLGQczZdMFeUTRVO7m0dMKgIqii5YCwnKwReaJV8T4YSeBxEvwkkOMgNwRfBupzZQpvz+Veh3fHaBliSugbbuZNjxeZomU2QSfxsHUHAIpUv3JmzhRiOSPh7ejNHTEir2FGjQo88YedOOvwmx0jMqjnATKKKNGYZt1HihDYYN0k7X+U9H+qtjuFnXoxO4ZkwCQRwcjLov3r9+rT//OXpy8Gg58v0nRs767TbdXpFMV2wagKsiacL1pgmDfTrYVZPjX7dAAe9Fqs25Gyn8dL1D40mV9L47nDS67XkRxFFaP7BobzdNg9sp//P6m90VleD1Ff8YQPYKsvTJ/mjgeEGTZFa0wqF6F60ZfsZt5wJec9TEe9P+VyraYrZD4emvrHcFuaJns7QmKpj78RRSGO5jNov/cFj4TnXWunaDc9b+pPSUxHHKDd98Kz77Ns398WuuZfKsneqkPG/ztxBW5IPry9YI50ZOob/QLa7j4Co0MIu3KCcIteoj93suJ0sgxIipT4KdG+T4OmbEpABNlE0dXNlnC+4TSCE7n2/u+I4bnB0/W4BhEjTaHGACp1CCKX38DLsdstEGbsMy1xpu3TbgBZ8Wm3zdOej69Z0CCFVEU8TD2AT/DhBRhc03mj7oiWG8sBr75An83qxXok77Z32WiUR6R4p6+xYy0mszVvleOJWSUu/gPlojYjOG72K0Hp+5IKm5Wpyw9X1+c1wfH48Oh+NLq4uabKQuopvGWxEvZZSQXSA6N0TwYr63Sphf/5j7JKLiuFm/VPj3H9kbe5pIm5+1Dl9vc39Y31bga/f622jt3+XWFPvXSH2cF9uaXt0L+g1p36j8vzm2dtek0sXuO1dtFa1tYdSdGbKBaIq1yv3DwnZdTFNRURJsZs6inG3lTIeWXGPbnuOFEXAYsxyrdzlqm/QE1uJnSnNMiWFVQTIcVqtCqqpRCnrQVIn5JGrBl+SlB4m7HYfHh46Ec8KGfNOpDJyQyoilMaFvgrir9VJsMUcq8jU3EK5967GGWqUEXYrQaa7sW1Cv9Pr9Hx9Gptx2VD0eEfa8Fmd6BY/226ecuF+DjiAZdWsbuG+30iG401xVcOaBFXfuYWynHKDv+t0uaTjT/QPglrnuk35tgoJ8tjnhq8CeOsnzfGYMNXfOLufFdSSPccwijC3j9JOGk34+mo0puKt/jdmKiYezR/oXyR/gBDu4A4oHXNvX1j68xJSLueFG0Xg5VK584IcVDtxqzs4y1btSC4aKH984wjYWH1E+dOqC4ClV/8Z9jeJZlWE +api: eJztWEtz2zYQ/iuYvbhNaUl2osThTY2dGbcZ27XU9OBoOhC5kpCQAAOAdlQO/3tnAYoiJcqxMr2k7Y0E9vHte8kCLF8YCO/gHCNhhJLnOBdSWKEkTANQGWpOL5cxhGCQ62j55ysIQOPnHI39WcUrCAuI0URaZI4thLGjY/iFp1mCBgKIlLQoLZHyLEtE5IT2PxqiL8BES0w5PdlVhhCCmn3EyEIAmSYIVqCh27lILOqv04m4QWOsFnIBZQCfcNU4F9LiAjUEMFc65dYfvXxBlHHljctuQZKn2Hlxj9oIb9OjWp6fNrXc4udcaExRWrNHYxfprweb0+S+2mdDF/H7g+yyKLm0nZbQrbAJHXVkXBmAEX/hE9X4dBzN2ynBteYrCEBYTM1uqhACo7R9OsduEmLSHSSl4xaU6iYAlHlKRTYav4EAzi/Gb2DadMWYAJXNk99y1KtuD9VlFRYwSpLd8hslCVsHkcU1r2E/xDjneWIZOZkJw04GP0IA9zzJyeekf0w3as402lxLjFkijN1b4Z1auIwrdsdM0py+YUNVFeahU1lF4zANFEPGTYQyFnLBZivmirKpwsm9qwMGFUEVJReMcrpG4IVWyfdkKIHHQfRtIMFBbgi+CtblzBbajC++Ce2O11pgSeoGbO+DnCi2QMvsEpnEL9YRBCxS2cqdOVuI4YiEv6c3c8SEtIodNSr0yBP2PkiH32QYiXk1B5hZqjyJWcpttHRCG4xt0t43ec+Heqtj+JkXo1N4LswSAjg9HZ68ev367OT5y7OXw+HAl+lbN3Y2abfr9IpitmLVBNgQz1asMU0a6DfDrJ4aJ3UDHA46rGrJ2U7j0vUPjSZT0vjucDoYdORHHkVo/sGhvN02D2yn/8/q73RWV4PUV/xhA9gqy5Mn+aOB4RZNnljTCYXoXnRl+zm3nAl5zxMR70/5TKtZgulPh6a+sdzm5omeTtGYqmPvxFFIY7mMui/9wWPhudBa6doNzzv6k9IzEcco2z541n/2/Zv7YtfcK2XZW5XL+F9n7rAryUc3l6yRzgwdw38g291HQJRrYVduUM6Qa9THbnbcTcuggEipTwLd2zR4+qYEZIBdKpq6mTLOF9wuIYT+/Ul/zXHc4Oj73QIIkabR4gDlOoEQCu/hMuz3i6UytgyLTGlbum1ACz6rtnm689F1azqEkKiIJ0sPoA1+skRGFzTeaPuiJYbywGvvkSezerFeizsbnA06JRHpHimb7NjIWVqbdcrxxJ2SSr+A+WiNic4bvY7QZn5kgqblenLD9c3F7WhycTy+GI8vr69ospC6iq8MWlGvpVQQHSB690Swpn67Tthf/pi45KJiuN381LjwH1ntPU3EzY86p2/Q3j82txX4+r3eNgb7d4kN9d4VYg/31Za2R/eCQXPqNyrPb56D7TW5cIHb3kVrVVt7KEVnrlwgqnK9dv+QkN3ks0RElBS7qaMYd1sp45EV9+i250hRBCzGLNPKXa77Bj2xtdi50ixVUlhFgByn1SqnmloqZT1I6oQ8ctXgS5LSw4T9/sPDQy/iaS5j3otUSm5IRITSuNBXQXxXnQRbzLGKTM0tlHvva5yjRhlhvxJk+q1tE056g97A16exKZcNRY93pJbP6kS3+MX2s4QL93PAASyqZnUH9yeNZDhui6sa1jSo+s4dFMWMG/xdJ2VJx5/pHwS1zk2b8m0Vlshjnxu+CuCNnzTHE8JUf+PsflZQS/YcoyjCzD5KO2004Zvr8YSKt/rfmKqYeDR/oH+R/AFCoFTMvG1h4c8KSLhc5G4MgZdJpc5zck7twK3O4KxatyK5aiAsCk8xUZ9QluW6BYCld/8N9jfXGVX+ sidebar_class_name: "post api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search decision definitions

+ Search decision definitions -## Request - -

Body

- -Search examples - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search.api.mdx index 0bb5e4e40e3..567cbe91ad1 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search.api.mdx @@ -5,56 +5,214 @@ description: "Search variables for process instances" sidebar_label: "Search variables for process instances" hide_title: true hide_table_of_contents: true -api: eJztWFtv2zYU/ivEeXHbqZGcppcYw4A0TYB0Q5PFWfeQ5oGWjm22FKmSlBNP0H8fDinLsq02CTAM2CVPEc+F5/KdC12B4zMLo2v4yI3gE4lwE4Eu0HAntDrLYAQWuUnnEIHBryVa91ZnSxhVkKFNjSiID0Yw9lxs0aixEEGqlUPliJcXhRSp1xl/tiRQgU3nmHP6zy0LhBHoyWdMHURQGLLACbREnQrp0NzP9wWXHSahHM7QQARTbXLuwtGrA6i9XIrWninruErx5wcL2lQXj2BXPMcOq3VGqBkRFlyW/RRnSpVyh1mHOtFaIleejIord5b1yBJVOElHbS7JZPEH3mvui33P6lN4NN2MNjeGLyEC4TC3u1mge6027uESu/lF2edQBNpkG6Y0lAhQlTmB9mh8DBG8Oxkfw003AGMyqO6e/FqiWXbjgnc8L2Sw4EjKXUBfoiuNsoxLuUY1e5LhlJfSMePJTArrGMWYCcuGyVNYJ5euHzfR71e9n3Q0dySbpO0npOLUw59xlbFVnB9i6K1wczbYRfqADQ6T5PXw8HD/5cHrg+Hw8NXAK8aMcZuiyoSascmSefB2bFqXYV/5wLZSaHFx3aYYGp1NXn36ap+4Cz6jzH7TN4V3ruPcVJt+3zY8GNB1gz325FgXS+YdYXrKBmTWR/qyA+Yto9PC4ELo0jKDtpTOPmV/i/NbVXcNNudSQrShcT9Jbmr/R03YFlrZANz9JOnpxGVKFv51DXi7jh9Z3//35d2+3OAjoPBxzdZpx+WDHO3cfBlA3TGAqAd98HnHHWdCLbgU2bcxVBg9kZj/8FgsWcddae81PwykHK3ls/6EiAYk/dnyB99LxYkx2rRheLEbhlNtJiLLUG3G4Fn87J/v7sGuux+0Y6e6VNm/zt2XfSA/ujhjHTgz9AL/AbT7NS8tjXBLP5wmyA2a575HX9/UUQWp1l8E+q+b6J4l3w/ipmuzlY00eXJ0c01Dr9DWh4W7OYwgXgzjVjhuHxYWzQKN9QaVRsIIqhDhehTH1VxbV4+qQhtX+5m8emGMKiBayK7fymAEUqdczsOtm8ZfzZERgbo/TXw3R0Y4CLfv+QHULlgrdW+SN0mvJmL9hpY1OtZ65s4VvXoCc6+mOqwHIVtj4gtOrzK0nhqFoOG3GmxwfnFyeXR18nx8Mh6fnX+geULXNXJ1tJH1VktjojfIjzfPBCvu0xVg3/9+5cFFxXC5fhKehIV6c1vyNyT9kz3pzu2kNb5d8pthvD7ozGBnSuxO3U41hN052V6sKh/M7Z2s1b21klLEptoHpymhc/8mRnZRTqRIKVG76dSM+9WL8dSJBfqdPdUUFdqud+qECcVWaqmQcq2E02SQl3RGl4TzudYuGEndiaceoaFMKGV2FMe3t7d7Kc9LlfG9VOcUBilSVNanownsL81JtCWc6dS20kL779jgFA2qFONGkY39goTGBmeHe8leEmrGupyrzkUP7hIb4Wtx6PDOxYXkwm9W3taqaSDXsBhutIBVlulXi9ALrqGqJtzib0bWNR1/pZcftbO1XGh1MEeeBWwEnMJx6P7Pr8iQNQB3dmdqk0HiKE2xcN/lvel0w4vz8RUVVPMLSq4zkjH8ln5d4bcwgk/wCQiOPii+2v15BZKrWenHAwS9VIK8pKisF9LNivWerVqEWnas/PGtZ2BX+guqnyBqvHH06V9k9Z/w5iYI +api: eJztWFtv2zYU/ivEeXHbqZGcppfoLUsTINvQZHHWPQR5oKVjmy1FqiTl1BP034dDyrJsq00CDAN2yVPEc+G5fOdC1+D43EJ6Cx+5EXwqEe4i0CUa7oRWFzmkYJGbbAERGPxSoXU/6nwFaQ052syIkvgghYnnYstWjYUIMq0cKke8vCylyLzO+JMlgRpstsCC039uVSKkoKefMHMQQWnIAifQEnUmpEPzMN9nXPWYhHI4RwMRzLQpuAtHb46g8XIZWnuhrOMqw58fLWgzXT6BXfECe6zWGaHmRFhyWQ1TnKlUxh3mPepUa4lceTIqrtxFPiBLVOEkHXW5JJPFH/igua8OPatP4clsO9rcGL6CCITDwu5nge612rjHS+znF+WQQxFok2+Z0lIiQFUVBNqTySlE8P5scgp3/QBMyKCmf/JrhWbVjwt+5UUpgwUnUu4D+hpdZZRlXMoNqtmzHGe8ko4ZT2ZSWMcoxkxYNk6ewya5dP2kjf6w6sOkp7kn2SbtMCEV5x7+jKucreP8GEPvhVuw0T7SR2x0nCRvx8fHh6+P3h6Nx8dvRl4x5ozbDFUu1JxNV8yDt2fTpgyHygd2lUKHi9suxdDqbPPq09f4xF3xOWX2m74p/Op6zs20GfZty4MRXTc6YM9Odbli3hGmZ2xEZn2kLzti3jI6LQ0uha4sM2gr6exz9rc4v1N1t2ALLiVEWxoPk+Su8X/UhG2plQ3APUySgU5cZWThX9eAd+v4ifX9f1/e78stPgIKn9ZsnXZcPsrR3s3XAdQ9A4h6NASf99xxJtSSS5F/G0Ol0VOJxQ9PxZJ13FX2QfPDQCrQWj4fTohoQTKcLX/wvVScGaNNF4ZX+2E412Yq8hzVdgxexC/++e4e7bv7QTt2riuV/+vcfT0E8pOrC9aDM0Mv8B9Au1/zssoIt/LDaYrcoHnpe/TtXRPVkGn9WaD/uoseWPL9IG67NlvbSJOnQLfQNPRKbX1YuFtACvFyHHfCcfewsGiWaKw3qDISUqhDhJs0juuFtq5J61Ib1/iZvH5hpDUQLWTXb2WQgtQZl4tw67bxNwtkRKDuTxPfLZARDsLtB34AdQvWWt275F0yqIlYv6Flg46NnoVz5aCewDyoqQnrQcjWhPiC0+sMbaZGKWj4rQcbXF6dXZ/cnL2cnE0mF5cfaJ7Qda1cE21lvdPSmugN8uPNM8Ga+3wN2J9+v/HgomK43jwJz8JCvb0t+RuS4cme9Od20hnfLfntMN4c9GawMxX2p26vGsLunOwuVrUP5u5O1uneWUkpYjPtg9OW0KV/EyO7qqZSZJSo/XRqxv3qxXjmxBL9zp5pigpt13t1woRia7VUSIVWwmkyyEs6oyvC+UJrF4yk7sQzj9BQJpQym8bx/f39QcaLSuX8INMFhUGKDJX16WgD+0t7Eu0I5zqznbTQ/js2OEODKsO4VWRjvyChscHZ8UFykISasa7gqnfRo7vEVvg6HDr86uJScuE3K29r3TaQW1iOt1rAOsv0q0XoBbdQ11Nu8Tcjm4aOv9DLj9rZRi60OlggzwM2Ak7hNHT/lzdkyAaAe7sztckgcZJlWLrv8t71uuHV5eSGCqr9BaXQOckYfk+/rvB7SIGg6APiK92f1SC5mld+NEDQSeXHK4rIZhndrlbv1bo9qFXPwroOHDf6M6qGOmpwxdG3f441fwLNHCaC sidebar_class_name: "post api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search variables for process instances

+ - + Search variables for process instances -## Request - -

Body

- -Search variables - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Forbidden - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx index b378b45273b..d3ae80344bb 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx @@ -5,61 +5,133 @@ description: "Get sequence flows of process instance by key" sidebar_label: "Get sequence flows of process instance by key" hide_title: true hide_table_of_contents: true -api: eJzlVt1v2zYQ/1eIe9o6xnLabCiEYUAKOIXXYQmSFH0I/EBTZ5uNRCrkyZkh6H8fjpSc2Fax7XGoX2R+3O/ufvfFFkitA+QPcOOdxhDmNpCyGmEhwdXoFRln5wXkEPCpQavxqnTP4cPuE+5AQq28qpDQM0YLVlUIOTzGM2Mhh1rRBiQUGLQ3NYNBDp9wJ9xK1EmlMINOCR6fGuOxgJx8gxKC3mClIG+BdjVDG0u4Rg8SVs5XitLWLxfQdQsWD7WzAQNLvJ1O+XOo+q7RrBMkaGcJLfGVN9kb/pwoU96r6AlhFV7tB/LGrqHjn4SLMT1zu1WlKQQ7hIEO9am6Lo2O1Ga1d8sSq5++BpYbMcItv6JmgNpzQMgk7wIpasI/MvPuLXQSKgxBrXHEBQ5Tz/7YYdo4dVwCGSp5a+a98zAw8e6UiSvnl6Yo0P47zv9X7l6cunubAo4c+uAar1FYR2LlGlt8H1nw81g9XN7MxSuHBUaB74CPTkJA3XhDu9gil6g8+jNukfnDopMtaOceDcbV4rhTfkQSQ+MVK+68Y41TLHci9dwKaeO4W68xksPdN4dse571MmeDTMjaR9x12YB+FtGBrfXboZ83voQc2sR+l2dZu3GBurytnacOJGyVN2pZJvL5LEV+pZqSqS6dVmXcPnbsfoOCD3hisEu0QcE5krRPmGXWcQj3fvp+OorEV7+B8pI5LzgbonoUJ10eRYrzZYjkHd9LTg/RexkatUmzsR+G1zez28v72dnd7O5ufv3nMBh7uU4eZMQepTcxGsTrdAmG21dDMv/+5T4mnrErF8X7BLyOsxvFTbMsjWZXTh12QsVhKJQms0WhbCG0q+oSuX0dJxn/EwPsynlROWvIcepHSfKu4UzYOEdcDqm2lY4xTInEToU8y56fnydaVY0t1ES7ikkojUYbIo89b3/0O/JIuHA67KWNi+vM4wo9p3HWA4WMUTmRk7Pnk+lkmrIqUKXsK0X/tcYOWNwHjPAvyupSGctaosltX38PsD1PneqwAkFCniCPinAh+1p6gLZdqoCffdl1vP3UoI+N46X0YqEWJvD/AvKVKgOeGLlvs/DDbf/E+lF8+xk26tOQ33YXC79seAUyvvbSm69bdBI2qAr00ap0cqk11vRKhkc/V9O+WX2c3YME1TBZe0KPMj4Cjprw64d4Qdy7R7S/7Q0iXrJJXfc3GfC7mA== +api: eJzlVktv2zgQ/ivEnHa7jOW06aLQLQWcwtvFJohd7CHwgaZGNhuJVEjKWUPgfy+GlJzYVrG7x6K+yHzMNzPfvNiBFxsH+QPcWSPRubl2XmiJsOJgGrTCK6PnBeTg8KlFLfGmMs/u4/4z7oFDI6yo0aMljA60qBFyeIxnSkMOjfBb4FCgk1Y1BAY5fMY9MyVrkkqmBp0cLD61ymIBubctcnByi7WAvAO/bwhaaY8btMChNLYWPm39fgUhrEjcNUY7dCTxdjqlz7HqRStJJ3CQRnvUnq68yd7Q50yZsFZETzzW7tW+81bpDQT6cbga0zPXO1GpgpFD6PyxPtE0lZKR2qyxZl1h/dtXR3IjRpj1V5QE0FgKiFfJO+eFb92/MvPuLQQONTonNjjiAoWpZ3/sMG2cO87BK1/R1sxaY2Fg4t05EzfGrlVRoP5vnP9Q7l6du3ufAo4UemdaK5Fp41lpWl38HFnwfqweru/m7JXDDKPAT8BH4OBQtlb5fWyRaxQW7QW1yPxhFXgH0phHhXG1Ou2Un9CzofGykjrvWONk6z1LPbdGvzXUrTcYyaHum0O2u8x6mYtBxmXdI+5DNqBfRHQga+1u6OetrSCHLrEf8izrtsb5kHeNsT4Ah52wSqyrRD6dpciXoq2I6spIUcXtU8eWW2R0QBODXPJbZJQjSfuEWCYdx3Afph+mo0h09TsoL5nzgrP1vhnFSZdHkeJ8GSK5oHvJ6SF6L0OjUWk29sPw9m52f72cXSxmi8X89q9hMPZygR9lxAGlNzEaROt0CYbbN0My//H3Miae0qWJ4n0C3sbZjeyuXVdKkivnDhsm4jBkQnq1QyZ0waSpmwqpfZ0mGf1jA2xpLKuNVt5Q6kdJb01LmbA1xlM5pNoWMsYwJRI55fIse35+nkhRt7oQE2lqIqFSErWLPPa8/dnv8BPhwkh3kFYmrjOLJVpK46wHchmhUiInZy8n08k0ZZXztdCvFP3fGjti8RAwj//4rKmE0qQlmtz19fcAu8vUqY4rEDjkCfKkCFe8r6UH6Lq1cPjFViHQ9lOLNjaOl9KLhVooR/8LyEtROTwz8tBm4Zf7/on1K/v+M2zUpyG/9T4WftXSCnh87aU3X1gFDlsUBdpoVTq5lhIb/0qGRj9V06FZfZotgYNoiawDoScZHwFHTei6dGNpHlGHcLDI05psCuEb9aq9Dg== sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

- Get sequence flows of process instance by key -

+ Get sequence flows of process instance by key -## Request - -

Path Parameters

- -Success - -
Schema
  • Array [
  • - -string - -
  • ]
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sidebar.js b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sidebar.js deleted file mode 100644 index 8c5076925df..00000000000 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sidebar.js +++ /dev/null @@ -1,180 +0,0 @@ -module.exports = [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/operate-public-api", - }, - { - type: "category", - label: "ProcessDefinition", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search-2", - label: "Search process definitions", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-key-2", - label: "Get process definition by key", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/xml-by-key", - label: "Get process definition as XML by key", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "DecisionDefinition", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search-7", - label: "Search decision definitions", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-key-6", - label: "Get decision definition by key", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "DecisionInstance", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search-6", - label: "Search decision instances", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-id", - label: "Get decision instance by id", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "FlownodeInstance", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search-4", - label: "Search flownode-instances", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-key-4", - label: "Get flow node instance by key", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Variable", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search", - label: "Search variables for process instances", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-key", - label: "Get variable by key", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "ProcessInstance", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search-1", - label: "Search process instances", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-key-1", - label: "Get process instance by key", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/delete", - label: "Delete process instance and all dependant data by key", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/get-statistics", - label: "Get flow node statistic by process instance id", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/sequence-flows-by-key", - label: "Get sequence flows of process instance by key", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "DecisionRequirements", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search-5", - label: "Search decision requirements", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-key-5", - label: "Get decision requirements by key", - className: "api-method get", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/xml-by-key-1", - label: "Get decision requirements as XML by key", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Incident", - items: [ - { - type: "doc", - id: "apis-tools/operate-api/specifications/search-3", - label: "Search incidents", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/operate-api/specifications/by-key-3", - label: "Get incident by key", - className: "api-method get", - }, - ], - }, -]; diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sidebar.ts b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sidebar.ts new file mode 100644 index 00000000000..c08ec748689 --- /dev/null +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sidebar.ts @@ -0,0 +1,186 @@ +import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; + +const sidebar: SidebarsConfig = { + apisidebar: [ + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/operate-public-api", + }, + { + type: "category", + label: "ProcessDefinition", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/search-2", + label: "Search process definitions", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/by-key-2", + label: "Get process definition by key", + className: "api-method get", + }, + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/xml-by-key", + label: "Get process definition as XML by key", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "DecisionDefinition", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/search-7", + label: "Search decision definitions", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/by-key-6", + label: "Get decision definition by key", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "DecisionInstance", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/search-6", + label: "Search decision instances", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/by-id", + label: "Get decision instance by id", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "FlownodeInstance", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/search-4", + label: "Search flownode-instances", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/by-key-4", + label: "Get flow node instance by key", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Variable", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/search", + label: "Search variables for process instances", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/by-key", + label: "Get variable by key", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "ProcessInstance", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/search-1", + label: "Search process instances", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/by-key-1", + label: "Get process instance by key", + className: "api-method get", + }, + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/delete", + label: "Delete process instance and all dependant data by key", + className: "api-method delete", + }, + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/get-statistics", + label: "Get flow node statistic by process instance id", + className: "api-method get", + }, + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/sequence-flows-by-key", + label: "Get sequence flows of process instance by key", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "DecisionRequirements", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/search-5", + label: "Search decision requirements", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/by-key-5", + label: "Get decision requirements by key", + className: "api-method get", + }, + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/xml-by-key-1", + label: "Get decision requirements as XML by key", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Incident", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/search-3", + label: "Search incidents", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/operate-api/specifications/by-key-3", + label: "Get incident by key", + className: "api-method get", + }, + ], + }, + ], +}; + +export default sidebar.apisidebar; diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx index 434048b7599..403b919a73a 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx @@ -5,56 +5,131 @@ description: "Get decision requirements as XML by key" sidebar_label: "Get decision requirements as XML by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v2zYQ/ivEfVo71nLarCiEYUCKuUWWdgliFy0QGANNnW02EqmSlBND4H8vjpSUONbQfR36SeLLPXf33AuvBS82DvIb+BOlcsroa/zWKIsVau9gycHUaIVXRp8XkMN9Vb7dX+D+nxPgUAsrKvRoCaAFLSqEHG5xDxyUhhxq4bfAoUAnraoJBHK4wD0za1Z0+ph9rJBDtywg97ZBDk5usRKQt+D3NeEr7XGDFjisja2ET1uvTyGEJYm72miHjiReTqf0OdQ/b6RER6qk0R61j9h477P7qqT/I43OW6U3EEIIHE7HMM/1TpSqiL6g84fYoq5LJSOHWW3NqsTq16+O5EZ0mdVXlARQW2Leq+SJ88I37ocsvHoJgUOFzokNjnhAcXFeaDl+mDaO/ebglS9pa2atsQMTr46ZeGfsShUF6kMOnmfP///unh67e50CjhR6ZxorkWnj2do0uvg5suC3sXo4uzpnjxxmGAV+Aj4CB4eyscrvY09cobBoX1BPzG+WgbcgjblVGFfLp63xPfrxvsiEY18+fmCrPUvttUK/NdSQNxhpoUabQ7Y7yQpbZO0t7kNsZ2SO3fUdurEl5NAmekOeZe3WOB/ytjbWB+CwE1aJVZnYpbMU2rVoSuKyNFKUcfup5YstMjqgN4C6u98ioyRI2idEI+k4hHszfTMdRaKr/4LykBoPOFvv61GcdHkUKT4WfajmdC853YdnCLeo1UWkvHveLq9m12eL2Yv5bD4/v/y7f+o6ucAPQj6gdCZGg2idLkF/+12frX99XsTMUnptoniXYZfxFUZ21axKJcmVY4cNE/FlY0J6tUMmdMGkqeoSqT/V1sTDPtXpj/Wwa2NZZbTyhnI7SnprGsqErTGe8j0Vr5AxhimRyCmXZ9nd3d1EiqrRhZhIUxEJpZKoXeSx4+1Dt8OfCBdGukFambjOLK7RopaYdUAuI1RK5OTsyWQ6maascr4S+pGi/15EB/wNoYqjQF0KpQk/Gtt2BXYDO5p7Cku9PU8gVGVL3hXLDbTtSjj8ZMsQaPtbgzaW/kNtxUoslKP/AvK1KB0e2TI0SvilG8iKZ+wHk9Oo/X0W630s77KhFfA4paVZLSwDhy2KAm00LZ2cSYm1fyQzTEhUOEP7eT9bAAfREDsDg0+SO6KO2vH723iBLcwt6j8Gqzwtya4QvgP4oaIs +api: eJzlVm1v2zYQ/ivEfdo61nLabCj0LcPcIku3BLGHFgiMgabOFhuJVEnKiSHwvw9HSkoca+i+Dv0k8eWeu3vuhdeBFzsH+R38hlI5ZfQtfm2VxRq1d7DmYBq0wiujLwvI4bGufj1c4eHvM+DQCCtq9GgJoAMtaoQc7vEAHJSGHBrhS+BQoJNWNQQCOVzhgZktK3p9zD5XyKFfFpB72yIHJ0usBeQd+END+Ep73KEFDltja+HT1i/nEMKaxF1jtENHEm/mc/oc61+2UqIjVdJoj9pHbHz02WNd0f+JRuet0jsIIQQO51OYl3ovKlVEX9D5Y2zRNJWSkcOssWZTYf3TF0dyE7rM5gtKAmgsMe9V8sR54Vv3TRbevoHAoUbnxA4nPKC4OC+0nD5MG6d+c/DKV7S1sNbYkYm3p0y8N3ajigL1MQevslf/f3fPT929TQFHCr0zrZXItPFsa1pdfB9Z8PNUPVzcXLJnDjOMAt8BH4GDQ9la5Q+xJ25QWLSvqSfmd+vAO5DG3CuMq/XL1vgB/XRfZMKxz398ZJsDS+21Rl8aasg7jLRQo80h259lhS2y7h4PIbYzMsfuhw7d2gpy6BK9Ic+yrjTOh7xrjPUBOOyFVWJTJXbpLIV2K9qKuKyMFFXcfmn5qkRGB/QGUHf3JTJKgqR9RjSSjmO4d/N380kkuvovKE+p8YRTet9M4qTLk0jxsRhCtaR7yekhPGO4RaOuIuX983Z9s7i9WC1eLxfL5eX1n8NT18sFfhTyEaU3MRpE63QJhtvvh2z9/dMqZpbSWxPF+wy7jq8wspt2UylJrpw6bJiILxsT0qs9MqELJk3dVEj9qbEmHg6pTn9sgN0ay2qjlTeU21HSW9NSJpTGeMr3VLxCxhimRCKnXJ5lDw8PMynqVhdiJk1NJFRKonaRx563j/0OfyFcGOlGaWXiOrO4RYtaYtYDuYxQKZGTs2ez+Wyessr5Wuhniv57ER3xN4YqjgJNJZQm/Ghs1xfYHexp7iks9fY8gVCVrXlfLHfQdRvh8C9bhUDbX1u0sfSfaitWYqEc/ReQb0Xl8MSWsVHCD/1AVvzIvjE5Tdo/ZLE+xPKuWloBj1NamtXCOnAoURRoo2np5EJKbPwzmXFCosIZ28+HxQo4iJbYGRl8kdwRddKOrks3VuYedQijWZ7WZFgI/wC6/qOi sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get decision requirements as XML by key

+ - + Get decision requirements as XML by key -## Request - -

Path Parameters

- -Success - -
Schema
    - -string - -
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx index a00d32b6d33..97eec2e6283 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx @@ -5,59 +5,131 @@ description: "Get process definition as XML by key" sidebar_label: "Get process definition as XML by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v2zYQ/ivEfdo6xnLabCiEYUCKuUXWbgliDxsQ+ANNnW02EqmSlBND4H8fjpTk2NZevg79JPHlnrt77o0teLFxkD/AnTUSnfsZ10orr4yGJQdToxW0uCkgh+eqfLf/iHvgUAsrKvRoSbYFLSqEHB7jmdKQQy38FjgU6KRVdcTL4SPumVmzOqlixUEXB4tfGmWxgNzbBjk4ucVKQN6C39cErrTHDVrgsDa2Ej5t/XAFISxJ3NVGO3Qk8Xo6pc+x8nkjSStwkEZ71D5i47PPnquS/s80Om+V3kAIIXC4GsO80TtRqoKR8ej8Mbao61LJSF9WW7MqsfrusyO5EV1m9RklAdSWSPcqeeK88I37VxbevIbAoULnxAZHPKCgOC+0HD9MG+d+c/DKl7Q1s9bYgYk350y8N3aligL1MQevslf/f3evzt29TwFHCr0zjZXItPFsbRpdfB1Z8P1YPVzf3bAXDjOMAl8BH4GDQ9lY5fexIa5QWLQX1BDzh2XgLUhjHhXG1fK0L35AP9IUmXDsz18/sdWepcZaod8aasQbjJxQi80h211mnfDFQdhl7SPuQ+xtZJvd9b26sSXk0CauQ55l7dY4H/K2NtYH4LATVolVmaimsxTntWhKIrY0UpRx+9SNxRYZHdA0oD7vt8goI5L2CXFKOo7h3k7fTkeR6OrfoBzy5ICz9b4exUmXR5Hi5OjjNqd7yek+VkPsRa3S3OsG3e3d7P56MbuYz+bzm9vf+qHXyQV+FP8BpTMxGkTrdAn62+/71P3lj0VMM6XXJop36XYbpzGyu2ZVKkmunDtsmIhjjgnp1Q6Z0AWTpqpLpGbVJ1mf9/THeti1sawyWnlDiR4lvTUNZcLWGE/JnypZyBjDlEjklMuz7OnpaSJF1ehCTKSpiIRSSdQu8tjx9qnb4SfChZFukFYmrjOLa7SoJWYdkMsIlRI5OXs5mU6mKaucr4R+oeg/VtQReUOc4qOgLoXSBB4tbbtqe4DdZWpHp/UGHPIESiW35F3lPEDbroTD320ZAm1/adDGpnAotFiWhXL0X0C+FqXDM9uGFgrf3HdPpW/ZPz2oRp3p81nvY6GXDa2Ax5dber+FZeCwRVGgjXalk2spsfYvZIaHE5XQ0Jg+zBbAQTRE1UDnSZpH1FE7fnwXL7CFeUT902CVpyXZFcJfhPioRg== +api: eJzlVt1v2zYQ/1eIe1o7xnLadCj0lmFukbVbgtjDCgR+oKmzzUYiVZJyYgj834cjJTm2tY/XoU8SP+53d7/7YgtebBzkD3BnjUTnfsG10soro2HJwdRoBS1uCsjhuSp/3n/CPXCohRUVerQk24IWFUIOj/FMacihFn4LHAp00qo64uXwCffMrFmdVLHioIuDxW+NslhA7m2DHJzcYiUgb8HvawJX2uMGLXBYG1sJn7Z+uoIQliTuaqMdOpJ4M53S51j5vJGkFThIoz1qH7Hx2WfPVUn/Zxqdt0pvIIQQOFyNYd7onShVwch4dP4YW9R1qWSkL6utWZVY/fjVkdyILrP6ipIAakuke5U8cV74xv0rC2/fQOBQoXNigyMeUFCcF1qOH6aNc785eOVL2ppZa+zAxNtzJj4Yu1JFgfqYg9fZ6/+/u1fn7t6ngCOF3pnGSmTaeLY2jS6+jyx4N1YP13c37IXDDKPAd8BH4OBQNlb5fWyIKxQW7QU1xPxhGXgL0phHhXG1PO2LH9GPNEUmHPvy22e22rPUWCv0W0ONeIORE2qxOWS7y6wTvjgIu6x9xH2IvY1ss7u+Vze2hBzaxHXIs6zdGudD3tbG+gAcdsIqsSoT1XSW4rwWTUnElkaKMm6furHYIqMDmgbU5/0WGWVE0j4hTknHMdz76fvpKBJd/RuUQ54ccLbe16M46fIoUpwcfdzmdC853cdqiL2oVZp73aC7vZvdXy9mF/PZfH5z+3s/9Dq5wI/iP6B0JkaDaJ0uQX/7Q5+6v/65iGmm9NpE8S7dbuM0RnbXrEolyZVzhw0TccwxIb3aIRO6YNJUdYnUrPok6/Oe/lgPuzaWVUYrbyjRo6S3pqFM2BrjKflTJQsZY5gSiZxyeZY9PT1NpKgaXYiJNBWRUCqJ2kUeO94+dzv8RLgw0g3SysR1ZnGNFrXErANyGaFSIidnLyfTyTRllfOV0C8U/ceKOiJviFN8FNSlUJrAo6VtV20PsLtM7ei03oBDnkCp5Ja8q5wHaNuVcPiHLUOg7W8N2tgUDoUWy7JQjv4LyNeidHhm29BC4Yf77qn0iv3Tg2rUmT6f9T4WetnQCnh8uaX3W1gGDlsUBdpoVzq5lhJr/0JmeDhRCQ2N6eNsARxEQ1QNdJ6keUQdtaNt042FeUQdwmCWpzUZFsJfTW+pvA== sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get process definition as XML by key

+ Get process definition as XML by key -## Request - -

Path Parameters

- -Success - -
Schema
    - -string - -
- -Invalid request - -
Schema
- -Forbidden - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx index 14546a99a99..1c871d48400 100644 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx @@ -5,55 +5,290 @@ description: "Assign a task with `taskId` to `assignee` or the active user. Retu sidebar_label: "Assign a task" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" -info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api +info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Assign a task

+ Assign a task with `taskId` to `assignee` or the active user. Returns the task. -## Request + -

Path Parameters

Body

+ -When using REST API with JWT authentication token following request body parameters may be used. + -
- -On success returned. - -
Schema
- -An error is returned when the task is not active (not in the CREATED state).
An error is returned when task was already assigned, except the case when JWT authentication token used and `allowOverrideAssignment = true`. - -
Schema
- -An error is returned when user doesn't have the permission to assign another user to this task. - -
Schema
- -An error is returned when the task with the `taskId` is not found. - -
Schema
+An error is returned when task was already assigned, except the case when JWT authentication token used and `allowOverrideAssignment = true`.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + "403": { + description: + "An error is returned when user doesn't have the permission to assign another user to this task.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + "404": { + description: + "An error is returned when the task with the `taskId` is not found.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + }} +> diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx index 1f4e3b31ea8..cd8e577c555 100644 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx @@ -5,55 +5,297 @@ description: "Complete a task with `taskId` and optional `variables`. Returns th sidebar_label: "Complete a task" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" -info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api +info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Complete a task

+ Complete a task with `taskId` and optional `variables`. Returns the task. -## Request + -

Path Parameters

Body

    variables object[]
    + -Variables to update or add to task during the task completion + -
  • Array [
  • ]
- -On success returned. - -
Schema
- -An error is returned when the task is not active (not in the CREATED state).
An error is returned if the task was not claimed (assigned) before.
An error is returned if the task is not assigned to the current user. - -
Schema
- -User has no permission to access the task (Self-managed only). - -
Schema
- -An error is returned when the task with the `taskId` is not found. - -
Schema
+An error is returned if the task was not claimed (assigned) before.
An error is returned if the task is not assigned to the current user.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + "403": { + description: + "User has no permission to access the task (Self-managed only).", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + "404": { + description: + "An error is returned when the task with the `taskId` is not found.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + }} +>
diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx index 53e956d2823..3a76e41c125 100644 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx @@ -7,38 +7,141 @@ hide_title: true hide_table_of_contents: true api: eJzdV1FvGzcM/iuEXppgFzvtgqHwW7YkndeuLWJnAxYEiHyifWpk6SLxnBrG/feB0p3ti53W6+OeDJ8okvr08SO1EiRnQQxuxZXzc3GXCYUh97ok7awYiHdIQAXC1Pk5KCSpTYDJEu75w1Ddg7QK7kvvcgzhAqfaat75Hpf34PGx0h4VPFbol1BKL+c9GBcI9wv0QTt7v70EOoCLcaWJbnWAKqACZ82SEwCFpXFLVDGbAEd6CjgvaZmBJvBIXuMCQ8y30LMCA0ET6LgnMuFK9JL9D5UYiBlSPHImYnQk9IzDSlg5RzEQ6YAiE5pxKCUV4jk4fJThBbjpGiIO0x5bDMhXmImQFziXYrAStCzZcyCv7UzUdbYOtg/ANnSEaCf2NU7Ro80RyMXwjQtQax8/mkyD2bfj89kbww4A8Jc0+sU766Y0lSbsy0lbwhl6kcVLkJQ+/XIm6vqO94fS2YCBd7w5PeWfbm6fLIQqj2h4pMpbVBw4d5bQEtvLsjQ6j2Tofwm8abWbhpt8wZyYIJ6pQzqF1GoXvn3oVFY/VghaoSU91ehbnHA+QaUaSOBJU6EtOLu+wp6os/2M+G7cDit2GQFHHvmSFfAdLKRBS5zVPVdCbyck1/dUo1HHMSXSZPCws0fTbmHUL5Nvn4eITXNjcXPLyn00eZmaMX1WElsZA9rGhHIZYnLSdu8ig6dCG0xqUnoMaCnJSYfFr8LaPV8cFegh5Gil1y4y/DlrM0FopaXhgcxJ1iwtMgSXa0moIk+6cOpwgQYJt71OnDMo7Y7boVXMdwzwVGDMeOdYjJJKDsF5sI7AWfgHcYKs2jpswIyFy21A4VRWhrLvIdtjgWkJFFvNdVPFoq556ez0bLeOzy2g985zyLaQOX+7aUlrVA5pSEwDRzB1lf2WIJTeTQzOf/qvwhBIUhUOIOg5EycuARVyh2y/j8efITmD3Kl1HSUsWvnrwZXzgF/lvDSYwdnpKej1JUt49atUcI2PFQZ6lbay0VnX6KMjuGI41iYMX3CQusc2kX9+w5ybYwhydoAKnENaSCcsvVtoFWNOvMYpbBl3jxfNXZ5X3rNqM81tIGnzA2JeJrI09nBzM7yIPcg491CVcIS9WS9S1bgZNCcJx11uRh+RlPG0VLhmWIiDAhViIPqL1/3YzfqrRLpaZCKgX7QTROWNGIhV4k096PdXhQtUD1al88TGC+m1nJhEG15L3I+1JAbCuFya+HmfOvACi3iL2/nnIaToqXE4/8zd29O3p3s9sekLXjac3/gpiMq9fpLxXk+xYwfMK69pGcHJnXvQKAa3d5mYoPToTx64td3ebZuO2GXCp92wvn1Z6jQedTP5LdqdTCTPjLKigvtuKuk4WvJEIhdSG0aepW2EZnryp7RyhgpyUwUeAZn2zRw0Ph+9/zAcjU9Gl6PR8NPHdiBqEqq7+a/Ta2CKoERJjkaitb5qa+qPv8eRedpOXdzeMHAsw4PRgeD6cjRmNHcxby00F5RHqZYn5E6qkMDf0jIeA7wstTJL0CwUc+74kypoy5NBI5Ncl8bZWdAKeeT2QDI8BK6UJP+NVso8MivRm48ZBv3+09NTL5fzyirZy92cYTE6R5b2wXqk/NB8yZ5tVi4P693axf993w4x/cZR6HcGALF4nYgeaC7tVhR+rMjYF55Dttpo/f/qSdNQjvAr9UsjtWVgIsSrRq1uGa2k5EFkYtA8a+6yRnduxWrFJXPjTV3z5zTuc6UqHbhUNoP6i5AeXTe4HMOB75K9icc6eukttJCm4i2CXyqHp/bj75RvpLh5IW2yutvI+o+jt/9FuTeTVgxtB5w2w+aa67s6EwVKhT4mlRbP8xxL2tq28xzi06yb37tLFqp/Ab96n4Y= sidebar_class_name: "get api-method" -info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api +info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get a form

+ - + Get the form details by `formId` and `processDefinitionKey` required query param. The `version` query param is optional and is used only for deployed forms (if empty, it retrieves the highest version). -## Request + -

Path Parameters

Query Parameters

+ -On success returned. + -
Schema
- -An error is returned when the form with the `formId` and `processDefinitionKey` is not found. - -
Schema
+ diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx index c9ba57ae4b2..93426becf84 100644 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx @@ -5,44 +5,231 @@ description: "Get one task by id. Returns task or error when task does not exist sidebar_label: "Get a task" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" -info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api +info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get a task

+ - + Get one task by id. Returns task or error when task does not exist. -## Request + -

Path Parameters

+ -On success returned. + -
Schema
- -User has no permission to access the task (Self-managed only). - -
Schema
- -An error is returned when the task with the `taskId` is not found. - -
Schema
+ diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx index 72f7da281e4..85327be002a 100644 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx @@ -7,45 +7,116 @@ hide_title: true hide_table_of_contents: true api: eJyVVttu2zgQ/ZUBX9piZcvt5qHQm7tJut522yJ2usAGBkpLI4sNTSrkyKkh6N8XQ0m+xE7XfbIlnjlz0Znh1ILk0ovkTnyVTsmFRi/mkcjQp06VpKwRiXiPBFQgrDsIZEhSaQ+Lze6dyoYiErZEJ9lskolELJF62nebSSYiUUonV0jo2GctjFyhSERPEiCKXZaSCvE0jlmBMLkEmx9Ew24dPlTKYSYSchVGwqcFrqRIakGbkj14csosRdPMGexLazx6Pn8zGvHPoaPPBnyVpug9OKTKGQzJpdYQGmK8LEut0pBp/N2zUX3s1C6+Y0qcteO6kGpdquw4sPNSFU3Ulewce0aeYlhLXZ1JkVdaQ8CfIsqczOn/833GX9Oc8hg4n3EZCVKkmeKSUb20vgb+JhKERhqanFneFs1Vlt7bVEnCDB4VFU/ybHZue483nYJE0/DxxejiWENjA+icdaB2IoLHAs1hK20dfts1wTe2MZYgt5X5mfJKZxcaV7/9qgI9Sar8Hk4ZwiW6ozqNDXRHQIUkcFg69GjIh5j/nM2+QEsGqc22X6xNvO+zIVxbB/hDrkqNEVyMRqBMxjmgBwkv3skMbvChQk8vWlMGXRyCPlmCay7HFiJNBt6CNVyg3LqVpDaT39+wGFbovVyeofMxtAdthqWza5UFnwunMIc98GF6AW7TtHKOx0PDk8uTNOkZPq9aZXR4uL2dXEJuHWhr76sSXuJwOYxAGdB2CV0m/tXwQIyBIygwZEuF7UZuGLNUiETE69dxLysf1zuFNSISHt26n8OV0yIRdaufJonjurCemqQurSMGb1k4Nz5rBZ/LSnPVtU2lDq9PdRof7A+j8ZcJtN5D2djHId3b0dvRSSaGPsOy0/6OpyAqT/K04JNM4YrwmFZO0SYUJ7X2XqFI7uaRWKB06Ab3yEfzfeiUKdv69AZbFchSfcDNUSR/BNxgIT1mICsq0FDX2jwBrNEbkGupdJgU1sAUdT74Wxq5xAxSXXm+SFn+3T06G08/fJxMZ4Pp1XQ6+fypv027gJrD+LfhdWUKReHnFiR69HXfW3/9MwsKVCa3wbxT4kz6e608wc3VdMbVPK55j1DcWA5lthmQHVS+Lf7eTAOy4GSpMr0BxQNjhYZgUXll+DouneVrmftTW7P0KkOoPI8n6e89d8y/iAvsZ6ZMg7JaeXOaPonjx8fHYSpXlcnkMLUrLotWKfI8T7YrycfuTfTEOLOp31orG55jhzk6NCnGHZGPw0WLzrf5r1+3Qve0kmbPC29Wcv+COyhbvZv7v7KDdV+V8AfFpZbKsO+QRd0NhjsOaL+pI5Hs7WDzqGvxO1HXrM5bp5uGXz9U6DZtJ2yD5hbJlOf/mUhyqT3+JI+XN92q9gqeX+dOZtD3ktmI7Q4jRCSClvdXyGbeRKJAmaELwbWAcZpiSXumRyscd/N2jr6/Yq3/B/Aq1EE= sidebar_class_name: "get api-method" -info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api +info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get a variable

+ Get the variable details by variable id. -## Request + -

Path Parameters

+ -On success returned. + -
Schema
    draft object
    - -The draft value of the variable - -
- -An error is returned when the variable with the `variableId` is not found. - -
Schema
+ diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx index 27e5668f33d..c13b8795bc9 100644 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx @@ -7,53 +7,182 @@ hide_title: true hide_table_of_contents: true api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api +info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Save draft variables

+ This operation performs several actions:
  1. Validates the task and draft variables.
  2. Deletes existing draft variables for the task.
  3. Checks for new draft variables. If a new variable's `name` matches an existing one but the `value` differs, it is saved. In case of duplicate draft variable names, the last variable's value is kept.
NOTE:
  • Invoking this method successively will overwrite all existing draft variables. Only draft variables submitted in the most recent request body will be persisted. Therefore, ensure you include all necessary variables in each request to maintain the intended variable set.
  • The UI does not currently display the values for draft variables that are created via this endpoint.
-## Request - -

Path Parameters

Body

required
    variables object[]
    - -Variables to update or add to the task. - -
  • Array [
  • ]
- -On success returned. - -
Schema
    any
- -An error is returned when the task is not active (not in the `CREATED` state).
An error is returned if the task was not claimed (assigned) before, except the case when JWT authentication token used.
An error is returned if the task is not assigned to the current user, except the case when JWT authentication token used. - -
Schema
- -An error is returned when the task with the `taskId` is not found. - -
Schema
- -An error is returned if an unexpected error occurs while persisting draft task variables. - -
Schema
+ + + + + + +An error is returned if the task was not claimed (assigned) before, except the case when JWT authentication token used.
An error is returned if the task is not assigned to the current user, except the case when JWT authentication token used.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + "404": { + description: + "An error is returned when the task with the `taskId` is not found.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + "500": { + description: + "An error is returned if an unexpected error occurs while persisting draft task variables.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + }} +>
diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx index 2192123cf65..4d33714bd3f 100644 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx @@ -7,49 +7,188 @@ hide_title: true hide_table_of_contents: true api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api +info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search task variables

+ This method returns a list of task variables for the specified `taskId` and `variableName`.
If the request body is not provided or if the `variableNames` parameter in the request is empty, all variables associated with the task will be returned. -## Request + -

Path Parameters

Body

    includeVariables object[]
    + -An array of variable names that should be included in the response. + -
  • Array [
  • ]
- -On success returned. - -
Schema
  • Array [
  • draft object
    - -The draft value of the variable. - -
  • ]
- -An error is returned when the task with the `taskId` is not found. - -
Schema
+ diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx index b4d862e180d..29cd08fb76e 100644 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx @@ -5,72 +5,500 @@ description: "Returns the list of tasks that satisfy search request params.
sidebar_label: "Search tasks" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api +info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Search tasks

+ - + Returns the list of tasks that satisfy search request params.
  • If an empty body is provided, all tasks are returned.
  • Only one of `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` search options must be present in request.
-## Request + -

Body

    followUpDate object
    + -A range of due dates for the tasks to search for. +If defined, the query returns only tasks to which all clauses apply.
    However, it's important to note that this filtering mechanism is
    designed to work exclusively with truncated variables. This means
    variables of a larger size are not compatible with this filter, and
    attempts to use them may result in inaccurate or incomplete query results.", + items: { + type: "object", + properties: { + name: { + type: "string", + description: "The name of the variable.", + }, + value: { + type: "string", + description: + "The value of the variable. When specifying the variable value, it's crucial to maintain consistency with JSON values (serialization for the complex objects such as list) and ensure that strings remain appropriately formatted.", + }, + operator: { + type: "string", + description: + "The comparison operator to use for the variable.
    * `eq`: Equals", + enum: ["eq"], + }, + }, + title: "TaskByVariables", + }, + }, + tenantIds: { + type: "array", + description: + "An array of Tenant IDs to filter tasks. When multi-tenancy is
    enabled, tasks associated with the specified tenant IDs are returned;
    if disabled, this parameter is ignored.", + items: { type: "string" }, + }, + sort: { + type: "array", + description: + "An array of objects specifying the fields to sort the results by.", + items: { + type: "object", + properties: { + field: { + type: "string", + enum: [ + "completionTime", + "creationTime", + "followUpDate", + "dueDate", + "priority", + ], + }, + order: { + type: "string", + description: "* `ASC`: Ascending
    * `DESC`: Descending", + enum: ["ASC", "DESC"], + }, + }, + description: "Sort results by a specific field.", + title: "TaskOrderBy", + }, + }, + searchAfter: { + type: "array", + description: + "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page.
    It enables the API to return a page of tasks that directly follow the task identified by the provided values, with respect to the sorting order.", + items: { type: "string" }, + }, + searchAfterOrEqual: { + type: "array", + description: + "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page.
    It enables the API to return a page of tasks that directly follow or are equal to the task identified by the provided values, with respect to the sorting order.", + items: { type: "string" }, + }, + searchBefore: { + type: "array", + description: + "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page.
    It enables the API to return a page of tasks that directly precede the task identified by the provided values, with respect to the sorting order.", + items: { type: "string" }, + }, + searchBeforeOrEqual: { + type: "array", + description: + "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page.
    It enables the API to return a page of tasks that directly precede or are equal to the task identified by the provided values, with respect to the sorting order.", + items: { type: "string" }, + }, + includeVariables: { + type: "array", + description: + "An array used to specify a list of variable names that should be included in the response when querying tasks.
    This field allows users to selectively retrieve specific variables associated with the tasks returned in the search results.", + items: { + type: "object", + properties: { + name: { + type: "string", + description: "The name of the variable.", + }, + alwaysReturnFullValue: { + type: "boolean", + description: + "Always return the full value of the variable?", + default: false, + }, + }, + title: "IncludeVariable", + }, + }, + implementation: { + type: "string", + enum: ["JOB_WORKER", "ZEEBE_USER_TASK"], + }, + priority: { + description: + "Rules to filter out tasks by their priority. Applicable only for Zeebe user tasks.", + type: "object", + properties: { + eq: { type: "integer", minimum: 0, maximum: 100 }, + gte: { type: "integer", minimum: 0, maximum: 100 }, + gt: { type: "integer", minimum: 0, maximum: 100 }, + lt: { type: "integer", minimum: 0, maximum: 100 }, + lte: { type: "integer", minimum: 0, maximum: 100 }, + }, + }, + }, + description: "Request object to search tasks by provided params.", + title: "TaskSearchRequest", + }, + }, + }, + }} +>
    -
    dueDate object
    - -A range of due dates for the tasks to search for. - -
    taskVariables object[]
    - -An array of filter clauses specifying the variables to filter for.
    If defined, the query returns only tasks to which all clauses apply.
    However, it's important to note that this filtering mechanism is
    designed to work exclusively with truncated variables. This means
    variables of a larger size are not compatible with this filter, and
    attempts to use them may result in inaccurate or incomplete query results. - -
  • Array [
  • * `eq`: Equals","enum":["eq"]}}>
  • ]
  • enabled, tasks associated with the specified tenant IDs are returned;
    if disabled, this parameter is ignored.","items":{"type":"string"}}}>
    sort object[]
    - -An array of objects specifying the fields to sort the results by. - -
  • Array [
  • * `DESC`: Descending","enum":["ASC","DESC"]}}>
  • ]
  • It enables the API to return a page of tasks that directly follow the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly follow or are equal to the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly precede the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly precede or are equal to the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>
    includeVariables object[]
    - -An array used to specify a list of variable names that should be included in the response when querying tasks.
    This field allows users to selectively retrieve specific variables associated with the tasks returned in the search results. - -
  • Array [
  • ]
  • priority object
    - -Rules to filter out tasks by their priority. Applicable only for Zeebe user tasks. - -
- -On success returned. - -
Schema
  • Array [
  • variables object[]
    - -An array of the task's variables. Only variables specified in `TaskSearchRequest.includeVariables` are returned. Note that a variable's draft value is not returned in `TaskSearchResponse`. - -
  • Array [
  • draft object
    - -The draft value of the variable. - -
  • ]
  • ]
- -An error is returned when more than one search parameters among `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` are present in request - -
Schema
+ diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/sidebar.js b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/sidebar.js deleted file mode 100644 index 8c3ec36257d..00000000000 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/sidebar.js +++ /dev/null @@ -1,78 +0,0 @@ -module.exports = [ - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/tasklist-rest-api", - }, - { - type: "category", - label: "Form", - items: [ - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/get-form", - label: "Get a form", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Task", - items: [ - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/save-draft-task-variables", - label: "Save draft variables", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/search-task-variables", - label: "Search task variables", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/search-tasks", - label: "Search tasks", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/unassign-task", - label: "Unassign a task", - className: "api-method patch", - }, - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/complete-task", - label: "Complete a task", - className: "api-method patch", - }, - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/assign-task", - label: "Assign a task", - className: "api-method patch", - }, - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/get-task-by-id", - label: "Get a task", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Variables", - items: [ - { - type: "doc", - id: "apis-tools/tasklist-api-rest/specifications/get-variable-by-id", - label: "Get a variable", - className: "api-method get", - }, - ], - }, -]; diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/sidebar.ts b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/sidebar.ts new file mode 100644 index 00000000000..8f467da6aae --- /dev/null +++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/sidebar.ts @@ -0,0 +1,84 @@ +import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; + +const sidebar: SidebarsConfig = { + apisidebar: [ + { + type: "doc", + id: "version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api", + }, + { + type: "category", + label: "Form", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/tasklist-api-rest/specifications/get-form", + label: "Get a form", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Task", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables", + label: "Save draft variables", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/tasklist-api-rest/specifications/search-task-variables", + label: "Search task variables", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/tasklist-api-rest/specifications/search-tasks", + label: "Search tasks", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/tasklist-api-rest/specifications/unassign-task", + label: "Unassign a task", + className: "api-method patch", + }, + { + type: "doc", + id: "version-8.6/apis-tools/tasklist-api-rest/specifications/complete-task", + label: "Complete a task", + className: "api-method patch", + }, + { + type: "doc", + id: "version-8.6/apis-tools/tasklist-api-rest/specifications/assign-task", + label: "Assign a task", + className: "api-method patch", + }, + { + type: "doc", + id: "version-8.6/apis-tools/tasklist-api-rest/specifications/get-task-by-id", + label: "Get a task", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Variables", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/tasklist-api-rest/specifications/get-variable-by-id", + label: "Get a variable", + className: "api-method get", + }, + ], + }, + ], +}; + +export default sidebar.apisidebar; diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api.info.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api.info.mdx index a8d732b0d7d..50bd714d180 100644 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api.info.mdx +++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api.info.mdx @@ -9,16 +9,78 @@ custom_edit_url: null --- import ApiLogo from "@theme/ApiLogo"; +import Heading from "@theme/Heading"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; import Export from "@theme/ApiExplorer/Export"; -

Tasklist REST API

+ Tasklist is a ready-to-use API application to rapidly implement business processes alongside user tasks in Zeebe. -

Authentication

- -Cookie-based authentication is only available on Self-Managed clusters. - -
Security Scheme Type:apiKey
Header parameter name:TASKLIST-SESSION
Security Scheme Type:http
HTTP Authorization Scheme:bearer
Bearer format:JWT

License

License
+
+ + + + Cookie-based authentication is only available on Self-Managed clusters. +
+ + + + + + + + + + + +
Security Scheme Type:apiKey
Header parameter name:TASKLIST-SESSION
+
+
+ +
+ + + + + + + + + + + + + + + +
Security Scheme Type:http
HTTP Authorization Scheme:bearer
Bearer format:JWT
+
+
+
+
+
+

Contact

+ + URL: [https://www.camunda.com](https://www.camunda.com) +
+
+

License

+ License +
diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx index 2ecc8512e03..02874cb164f 100644 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx @@ -5,47 +5,231 @@ description: "Unassign a task with `taskId`. Returns the task." sidebar_label: "Unassign a task" hide_title: true hide_table_of_contents: true -api: eJztWG1vIjcQ/isjf7mcugGuTasKVa24HGm5lyQC0pMaRXdmPbC+eO2N7SWHEP+9Gnt3gUATcu3HfsKsZ5558bzZS+b5zLHuNRtzd8tuEibQpVYWXhrNuuxKc+fkTAMHz90t3EufwWdaDsTnFgzRl1Y78BmG/RZLmCnQcmIfCNZlZQUQ4BNWcMtz9GhJ5pJpniPrsojHEiZJZsF9xh4qMs4QBm/ATLdkWbwrpUXBut6WmDCXZphz1l0yvygI2Xkr9YytVjdE7AqjHTra/77ToZ9tIRcaXJmm6BzYYBkKkpIa7VF7oudFoWQazGt/ccS03BVqJl8w9WStJWd4GUVKsavYPjNLLe9KBClQezmVaLetXiWV2w7BIsoddlq8wanUsj6mp6CuHFqgI6QzmFqTB8DXlx/OQTRAAbuwhvx3/k0aVswBKLUY3PyG+wOQPmao4Z6vIxECPwo4skgiBFCozLlC7UncZ7KmVQsZyxw/w1SiEi+jdJMXCv+V/IjwpAaNoB0dYuLggX4sHVoS05aC0O8zA9JBhSHAm90YGPmDbCN0R6S72cfFhVaLOvtQlzmVktNhvzfuv2EJO734cPm+X61756f992F51hvQ4maVsKmx+TtcPK3FEKdoUae4aQoQe7CHFodE8g5MLCocBBbKLFBESBhEU+kP+VEb31Ak4DPpoEruRdgulWrU+BOtk7E0VLpI7XGG9mll5pH1P9MoKsR91OGnE1JRujNj834+QSFw02MTYxRyvaPlwK0FY8VG/6JQOobfKuUsRs0C7WNuqhJ9XYSeHwIVxEb9eTzRdkQOxFa2VfsD7TzXKX67QrJCAPlE6j+Q+EAfj5prf0hIU35Gagpm7pxJZSh9oVlvZb0o8bB6RpiiRBCU9vGs13nfxBTtHnuZYwx9pcz9VXG4gMhxXBbPEZNyLSR9+d2asnAbkri1fLFXUMMDs8C0I0p6zN2+sWFDHvXA54qjovwsaZK6QY7ac79dQho31kX27cXrTx8vhu/6Q5awv/r91/1PV6P+8NO4N3oXKmthpbHSL3bHnHFotXE3lpqmv7eANjM5yzDqPOeqxLDa+Fgzt6AX56GJQjBaLYKpfyFOcA3pyOSdQphLLXOypJOwnH+N61edDvlzykvlWffHDnnES6+IlaCG1QTHVivaOtk3w/U0oLXGUr2phzi4p/bcNI2qevLUyznCEa1l3K46V2x3L1u/TGz7172Act0JQ9snjFRxSbl+VDfdlzDBqbH4yAxZWDNRmH/33FmSFCzdAS2mp6HaAp9xDxYLiw61j0X9j/H4EiIYpEY0LT5aXE/MLTgzFvArp+hM4KTTAakF2YAOOLx4zQUM8a5E519EViI62SY6Nx7OTKlFQ8K1AGeAJsftRvXD95TpOTrHZwfUkh7EjWhhYc1ciiBzYiVOYYN427xAbtK0tJYGfUq/qhY/LbMfQ6Ku9VdXNBgbC8qY27KAI2zNWgmFlTIzqCxxVNk3QjpgNLF88k2x3NT4+lJWR/eUXP1/5P0feY9HXrDWZ0bEi3eahUu6z1iXteev2hRUrr2MsbVq17d5ljCHdl5f40urWJctYwituu32MjPOr7rLwli/YgmbcyupSYS4ob0Y61WhZ8qkXIXP+9opbWzeEnuXA4jS4+Bm7AO4nzs/d/YiEek/oKzDf42TeV/svw0F4r1I4aXBYVrG1nu9ZKkxtxJZ9/omYRPkFu3xLQ2X1zebpCOCjP6pGdaTRiFpHH2oyWmgO55whwJ46TN6L4jZTUUg9GM+51JV7RlGqKbHH7jmMxSQqtLROwxlQPUMQ6PD+8FofDzqj0aDi/P6QaZSaLWtf6Ne5abglHCPCESspj6r0+vtx3GccfTUBPaNzq6k8zDsj8bkzV2f1xR0owW6di6OvTkuXXT+RlmjQdzyQgq1gGaWgknppKbZvBq5KUWV0TMnRZzRQi2l0T0OL3XZ5GmIrBjeZKbrttv39/etlOelFpxu7+QWJVOksaTbvGi9r74kD5iFSV3DLU3437b1NaJdAbk2oc7reySbv4qB7nzO9YaUB69zD/22XNf+b3nIq47X41ffLhSXmpQI5iyrEnFNmsW3BMcS1m3e8Zo6cZNU6X7NlkuK1CurViv6fFeiXcSsqKtDSBchHa0F6065cviISUfD6vXvJex/HdxrQJ1TehHqkirpH0tYiOn6JXJFA3SGXKANSsXNXppi4TfYdl4DKaObcnrZG5/+wVarvwHbGGKv +api: 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 sidebar_class_name: "patch api-method" -info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api +info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Unassign a task

+ Unassign a task with `taskId`. Returns the task. -## Request + -

Path Parameters

+ -On success returned. + -
Schema
- -An error is returned when the task is not active (not in the CREATED state).
An error is returned if the task was not claimed (assigned) before. - -
Schema
- -An error is returned when the task with the `taskId` is not found. - -
Schema
+An error is returned if the task was not claimed (assigned) before.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + "404": { + description: + "An error is returned when the task with the `taskId` is not found.", + content: { + "application/problem+json": { + schema: { + type: "object", + properties: { + status: { + type: "integer", + description: + "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.", + format: "int32", + }, + message: { + type: "string", + description: + "A string that provides a brief description of the error that occurred.", + }, + instance: { + type: "string", + description: + "Error instance UUID for lookup (e.g., in log messages).", + }, + }, + title: "Error", + }, + }, + }, + }, + }} +> diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx index 3dd58a62c99..03e51ed86ec 100644 --- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx @@ -5,51 +5,178 @@ description: "Assigns a user task with the given key to the given assignee." sidebar_label: "Assign a user task" hide_title: true hide_table_of_contents: true -api: eJztWNty2zYQ/RUMXppMbVFJ3TTRm+M6rdtcPLbcTmN7xiAJSYhJgAVAySpH/96zAKl7LtPmMckkw8tiz+7inCVWDfdi7Pjgml85aZkX7p7fHvBcusyqyiuj+YAfO6fG2jHB6s6IzZSfMD+RbKymUrN7OWferD0QYY2UPX7AK2FFKb20BNRwjRt4JV9DuPpdzmGjCKgSfoJrK/+ulZU5H3hby+1ohsAgODMKcKuQgB9RCdNlE1kKPmi4n1cEp7SXY2nxamRsKXx89OyILxa3EVI6/9Lkc1qzHUFmsFp7eiWqqlCZoGCSD44ianbBTPpBZp5St6aS1ivpwtq2KHS9m1T3liHAzdR6bON9WTvPtPEslUyWlUctLLvTdVHcUeptDM5bpce4pxciLfBsJAonFwdcFIWZvZtKa1W+J5iXc5bLkagLfxDiCNVVjlnZhpAzNWLKs5kAKQo8zudddHmPXUqPZbDHhtwFyDu6tNLXFsTQDLgIWGnm6mzCMuGkixkGoJAdYDUbKetCkrVeAsNRuixFzsRYKN1jIG+EnNG6uanZRExjAR2rVHaPSrCRNSUbW1NXEQg7jj0nj5WV4KxnVmSSYa9zRZVwvRu9KmdqTCGF3qgnkYPKmcXCbdfxmGXIBaDRgE1FUVOcApVTRRESyTKJXOAthrdic4iIau6wD8vwQ5JS55UBeVHCqYlU7LGzUaAECDfFpuYHYX8Ipd1KyvOmZeAN30htD1NCZkjNK0+3oTuQWGMrKBHaRVQM5EN2CLNCxSLNn/aP9jN8md13rt1C8hRplH9ArUAfDm9H/f6nJBIW7ch/T0fKhG5lkpmyKiT5Z2+MlSiKF6oALK67khEjaX2XC0vRDWKhPqJ/rES1yu93+8A2Ec6jZYvLYn9AOiwaphH9+uLVCXtx9ONPt48m3ldukCSz2axnR9mhBCeN7Rk7TnBL/8jucdANcijFPNApj9QVBVt1HuYqmamRyroO3YbNaPs3iPCRthXfNjt0WTbS2iq+89FgVxdnDHXVXo3mROAd6LAmkBP2IjW1H6SF0Pd8Rbxd0G0UV5elsMvPwSYAHDkvfO0++yH44emObyLcr8PhOYsuwKG8680QYQtESZRKq7Iu+QC8xZ14iHfP+v0F+aQd/4JM0BcfKqQfqLWdDshRrngbElMacensa+2MsWqstnEBtNYEWhL/HDOKwj/6rNb3CZMUT8ocmVp3kn/xH/xgH1rRzqxBIrRTEHttLZIr5t/E/k3s38T+tcSOlzjFT0xOJ3XjAnXowD7gCYn0kETqkmbtXL9IVh9sOpNLO+2GgNqiTLyJIlqA+80ELheDpjLWL5LpE9hPhVV0HAkbSq+j2DoSFTj7FJMYyO5m0guaNChJwd5LCcX8gu4wE/NQUcLZ9Pe8/7y/1xWZdrWKji5OL4fs+PyMxZQi99b6QeeShL3XZTT+nNMwmjiJfqb8/JKWxFqkEq3MHtdU/CUfWqzgORxYgxGexItXHUt++3MYNpr62MVq7Dl9EHRE2hxTViTbGhniWNQdfDuzQNSRCUG1NNpMjTYVDIiL+r0nu3RF+qQ6nNfKWofWC8ouO3/0lhV0VLSkRnRnie5NiO1YGU1O4nqMRq+jBfsj4rInATXSr+u7Y/iv0x5Ak0xgXS6Sf8hNkhYmTUqMGEkL5JL3p6cvTw9P3r15c/X2bPjX4euzk9O3l6eH8NvzDz6UltRRCr0WVTw3r0/Q26k3q+/O/x64W0Z4+eATdBnM1os25aaV7DVfSRYLBpvD+JpqQcCovGveNClGtStbLBb0GMyxGJavb1dCDcrOlaPrvB03P5Hmo4t2zH7Mvmyo35tX+1DoeWgZGLFwh0u42/qVYXEL8wmmVciCIo0WJzGewyH5WXnYmfMXB92KYwxtlf+I7cYxgfS77Jnn7y6HJMf2N4bSkJC4FTP6yQP/D/gN/uLGhFoFpYfnDceXYlyLMdlHv/TnX93IKMU= +api: eJztWNtuGzcQ/ZUBX5qga0lO3TTZN8d1Wre5GLbconEMmMsdSYy55IYXyQth/70YcleyLrmgzWMCGNnLcM7M8JxZjpbM86lj+TW7cmjBc3fHbjJWohNW1l4azXJ27JycagccQm8EC+ln4GcIUzlHDXfYgDcPHvC4BnHAMlZzyyv0aAloyTSvkOWMfI25u/sTG5YxSUA19zOWMYsfg7RYstzbgNvRjGcY4cwkwq1D8qZDJUwnZlhxli+Zb2qCk9rjFC3L2MTYivv06OkRa9ubBInOvzBlQ2u2IxBGe9SeXvG6VlJwCmb4wVFEy10wU3xA4Sl1a2q0XqKLa7ui0PVuUv1bmBi7mdoANt5XwXnQxkOBgFXtGzAWbnVQ6pZS72Jw3ko9ZRmjF7xQyPIJVw7bjHGlzOLtHK2V5Z5gXjRQ4oQH5bMYR6yudGCxC6EEOQHpYcEdcGWRl00fXTmAS/TgZ9LRhtxGyFu6tOiD1cA1oLXGgtTggpiB4A5dyjACxez8DDVMpHUxyaBXwN7Qg9Utn3KpB3DlMEEuaF1jAsz4PBXQQS3FndRTmFhTwdSaUCegjwEDxihri3PUHiwXCMLoUlIl3OC9XpezMEYh1xv1JHJQOUUq3HYdj0EE500FyQDmXAWKk3tYSKViIkKgc7JQmMJbszlGRDV3QflV+DFJ1GVtpPYg9dwkKg7gbBIpUVszlyWWWdwfQum2kvJ83zHwPdtIbQ9TYmZtxrz0dBu7A4k1tYIKtb9IimFtS3YWXW20SzR/Mjraz/BVdj+4bgvJU6JR+SE4j+WAtRk7Go0+J5G4aEf+ezqS4LqTiTBVrZD8w2tjEUr0XCoH3OKqZMRIWt/nAoUpm1SoT+i/tqZQWP242we2iXCeLDtcSP0BuINkWCT064uXJ/D86Odfbh7NvK9dPhwuFouBnYgDLKU3dmDsdGgngv7I7nHUjUWoeBPpVCbqcgXrzgOuRiEnUvQdugsbaPs3iPCJtpXeLnfosmqkwUq289GAq4szkCVqLycNEXgHOq6J5GQ544UJPi8U13dsTbxd0G0UF6qK29XnYBOgzZjz3Af3xQ/BT092fBPhfh+PzyG5AGHKvjdL1wNREpXUsgoVy49Go4xV/D7dPR2NWvJJO/4VmWjA+1pxHam1nY7UUK15GxOT2nmuxbfaGWPlVG7jDtjDJtCR+NeUURL+0Re1vk+YpHhS5sQE3Uv++X/wI10v2oU1ehp3CkEEa1F71XwX+3exfxf7txJ7m7EK/cyUdFI3LlKHDuw5G5JID0ikbrh8cK5vh+sPNp3J0c77ISBYxXK2TCJq8+FwOTPOt/myNta3w/khy9icW0nHkbih9DqJrSeRMoKrWQpkdzPpBU0alCSHd4gFwm/c44I3saKEs+nv2ejZaK8rMu1rlRxdnF6O4fj8DFJKiXsP+kHvkoS912Uy/pLTOJo4FMFK31zSklSLArlFexyo+Cs+dFjRczywRiOWdRcve5b88fc4bjT1sYv12HN6z+mItDmmrEm2NTKksag/+PZmkagTE4PqaLSZGm0qWpcWjQaHu3Q9P4uqE6aqgo6tV0/XnT95E4qOipbUqKRA7WLU3ViZTE7Set/Aq2QBfyVcOIyoiX59351KPwvFQJhqKHgVdMlX/xfKFMOKSz3soNzw3enpi9ODk7evX1+9ORv/c/Dq7OT0zeXpweHgcODvfSwu6aPi+kFc6eT8cIbeTn65/vL875G744THez+sFZea9iYmvexEe83WomUZyzfH8Qe6vck67V2z5bLgDq+salt6/DGgbVh+fbOWatR2KR1dl93A+Zk0H110g/Zj+Lqxfm9e3UOum9g0VKA7lrE7bLZ+Z2hv2ozNkJdoY6TJ4iTFczAmP2sPO5N+m/UrjoXA2n/CduOgQApedc3zt5djEmT3K0NlSErM8gX96MEXKWoT6xR1Hp8tmeJ6GviUbJNP+vcv8esolw== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api +info_path: versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Assign a user task

+ Assigns a user task with the given key to the given assignee. -## Request + -

Path Parameters

Body

required
+ -The user task's assignment was adjusted. + -
- -The assignment of the user task with the given key cannot be completed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key was not found. - -
- -The user task with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx index 76903ffe6b9..d50f3c05387 100644 --- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx @@ -5,55 +5,172 @@ description: "Completes a user task with the given key." sidebar_label: "Complete a user task" hide_title: true hide_table_of_contents: true -api: eJztV8Fy2zYQ/RUMTslUFuXUTRPdHFVp3caJR5bbaWwfIBKSkJAEA4CSVQ7/vW8JUpREe+x2crQ99hDE4i12970lUHAnFpYPr/mVlYY5Yb/y2x6PpA2NypzSKR/ykU6yWDppmWB5Y8bWyi2ZW0q2UCuZsq9y0+c9ngkjEtgaAi14igEQaNUUi/6QG9goAs2EW+LZyG+5MjLiQ2dyeeh5CngAMz2vPLXOnWZhvSvyasOlTAQfFtxtMnKoUicX0mBqrk0inH/1+oSX5a13Kq17p6MNrWn3MBexxSZCjeWpozmRZbEKBe0n+GJpU0XXm559kaGj6I3OpHFKWppdCaPELPYDEUWKUER8sWP0UNDbpbuRHuSACkDBH24izeOY1nr0ssdF6JGLA0enLMyt0wnzBnAa5+REOGDHMZtJzITSWgU0NjewbL1LFN1ZZqTNY6fShZ93S2WZTKNMI91MpSvtc9dnZ3OWaseQoZWKZNRjqvYSybkABAV6w5tQb3j/Jm1js87ARTc2BOeUo2HFX6JYTVb4nPgqo+Rkh41mOrW+GK8GJ910TPezK+w28RGzeZWIOdyD5oA7GQweRegIhIUipSQgsVvoPjvXRiILTqgYCsNzkyPkr1rfbJ3NQFiflwcYipVITvJDl6mHlb/wlrVf5snDELM3nHnv15P3I/b25Kefb18sncvsMAjW63XfzMMjCTpr09dmEWBIf2T3ss+QBMSQiE3Fny3rWasNZjMZqrkKqeYUYL1tRtXeq/sDwvKzRYcdW63nRvFDWZ2yq8kZQ15Tp+YbYmzHdbWmYiPsxUznbjiLRfqVtzzrOj30YvMkEWbbs/YdAMg64XL7aK/68VUHm+j123R6wTwEOBRBltp41dWOKIhEpSrJEz4ESzESd370ejAoCZMq/oRIUibvMoRfUeswHJAjaXlbBaZS7CsNv1dltFELdegXjnY0X5P4Fx+R1/nJE6TdFSapnZQ513ka1QJ/+z9wUIdatGujEQhVCmLPjUFwaB3PYn8W+7PYv5PYMYmj5lJHdJzUtqIOnSqHPCCRHpFIbVDsHD7LINweD+jYKM2qOanmBmnihRdRCe4XS0CWwyLTxpXB6hj2ewc6mvZia0gU47ATL/1GusWkCToOU5CCfZYSivkV3WEt/ImC/OzjvRm8GdwLRaZNrjzQZHw5ZacXZ8yH5Lm30w8aSBL2vZDe+DHQ6vRsJfqZcptLWuJzMZNoZeY0p+Rv+VD7qpBp7I3wxj+8b1jy+1/TqtDUxybtyXx8J6hUhwfpnfNsw7iKjnNdua7Jsh8AlQ519osG/eMuKREkaQvsSPK0arAg5ra/e7QwxmmZ0tDj6MESPZo81jccbzLy692GffAW7E/vlx1XXj3Jmu66AH4+68NpEAqsi0TwD8EEs1jPgkSoNKgd2eDzePxufDT6dH5+9fFs+vfRh7PR+OPl+Ai4fXfnqgSSBhKR7uyqubntXtwOgy/a78t/uunVVXbyzgXoHLjUlXWARS3Da97KEAuG+7fAHSWCVF5N17woZsLKKxOXJb0GGwzuaNe3rfgqtUbK0nN7ZXswpBeT+nb3kj31NnlvZPVLkW6qRoCbEkZ4BODBBbe8hflSighkp716i5Hf0dGUcFqEzv2y7DUrTnHlyNwDtnsff1LlthNefLqcksjqy22C7wbeGrGm2zb+D/kNfjHQVbYq/VbvC47+v8jFguw9Lv38C0iulxI= +api: eJztV9ty2zYQ/ZUdPDVTWpRTN0345rhO6zYXjy230zh+AMGlhBgEGACUzOHw3zsLUKIu8STt5DGe0VgkFnv2cg606Jjnc8eyW3bj0ILn7p7dJaxAJ6ysvTSaZezMVLVCjw44NGszWEm/AL9AmMslarjHdsISVnPLK/RoyWnHNK+QZYx2zbi7/xNbljBJTmvuFyxhFj810mLBMm8b3EeeLZAcgykD0gjuDYghKkJ1YoEVZ1nHfFsToNQe52hZwkpjK+7jq2cnrO/vIig6/9IULe0ZYyi5cpgwYbRH7WmN17WSglM86UdHQXWHaCb/iMJT9tbUaL1ER6tLbiXPVXzgRSHJC1eXW0aPJb3Zup3pXg2oAZT8fhC6UYr2Ru99wriInrs9oFMQjfOmgmgAS64aAuEeVlIpyBG4EOiczBVCaU21hY5L1N6BRdcoL/U8rvuFdIC6qI3UHqRemli7CVyUoI2H2pqlLLBIQA4oBZa8UZ4S/cDWqX5gkw96zM15K/X8MLc+YV56egz8JYoNZJVGX8Uus74nO4uuNtrFZjydnhyWY7ZbXe42hS/ANaEQZaNUO2F9wk6m0y96OBAICK6pCDmOrifwxliEAj2XygG3uKkRSB32r0OH3BRtrMsjDK2tyRVWPx4ydb/zl9FywIVIHuAOomEe0W+vXp3Bi5Off7n7YeF97bI0Xa1WE1uKIyykN3Zi7Dy1paAP2T2ZwGyBFqHibeDPhvUwagNcjUKWUlDPKcEhbKBu7/T9EWHF1e6AHRutN1ayfVmdws3VBcgCtZdlS4w9gA57AhtZxnhuGp/liut7NvLsEHQfxTVVxe3mzNoF6BPmPPeN++JZ9dPTA99Er99ns0uILkCYAqE0NqpuAKIkKqll1VQsO5lOE1bxh/j0bDrtySd1/Csy0YAPteI6UGs/HamhGnkbEpPaea7Ft+qMsXIu93EnbFvzA4l/jRlFnZ98hbQPhUlqJ2WWptHFIPAX/8OPdGvRrqzR89ApBNFYi9qr9rvYv4v9u9i/ldj7hFXoF6agcdK4QB2aKjOWkkiPSKQu7baGzz4Vm/GAxka0y/Wk2ljFMtZFEfVZmnYL43yfdbWxvk+XxyzZHehoOYptTSJlBFeLGMhhM2mBxmFKksN7xBzhN+5xxeNEQTi7/p5Pn08/64pM17WKjq7Or2dwenkBMaXIva3zYO2ShP1Zl9H4S07D9OxQNFb69pq2xFrkyC3a04aKv+HDgBU803M0Ysnw5dWaJX/8PQuNpnPsapzMzx84tWp/kN6aZ9eMC3QsTYAeyLKbALUOrYubppPjQ1JeXgRtCVNVjQ4HrJ6P53v0JlTjPJUhYUoK1C7ENtxwoslZ3O9beB0t4K+IC8cBNZJsfbrOpV80+USYKhW8anTBN/9zZfK04lKnA5RL35+fvzw/Onv35s3N24vZP0evL87O316fHx1Pjif+wYcSkgoqrrfiWt/dtq9u++l34y/Mf7rrDX32+ODTWnGpqRMhxW4Q4i0bhcgSlu3eA7e0eJcMerplXZdzhzdW9T29/tSgbVl2ezfKL+i1kI6+j5e2R1P64Wq43z2Br71Pfjaz4SXXbTgKVENPLGH32O5dcfu7PmEL5AXaEGu0OIsRHc3Iz+jh4IbZJ+sdp0Jg7R+x3fn5J11uzsLLd9czktlwva1MQXstX9F9m69i1CZUKqg3vOuY4nre8DnZRp/09y9+Zpbk sidebar_class_name: "post api-method" -info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api +info_path: versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Complete a user task

+ Completes a user task with the given key. -## Request - -

Path Parameters

Body

    variables objectnullable
    - -The variables to complete the user task with. - -
- -The user task was completed successfully. - -
- -The user task with the given key cannot be completed. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key was not found. - -
- -The user task with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx index c07bf7f8421..07546761dbf 100644 --- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx @@ -5,44 +5,143 @@ description: "Obtains the current topology of the cluster the gateway is part of sidebar_label: "Get cluster topology" hide_title: true hide_table_of_contents: true -api: eJy1Vttu2zgQ/RWCT7uAEzndlyJvqesGXvQSJO4utoEfKHkss6VELUk5dQX/+86QlCXbai5AFzBgiRqeM8M5M8OGO5FbfnnPJ6q2DgxfjPgSbGZk5aQu+SX/lDohS8vcGlhWGwOlY05XWul8y/QqrIfN/jkXDh7ElknLKmEcmpzzETdgK11aQK6GvxqP6e//4Ml06XAnwYuqUjITBJ98tcTRcJutoRCn5HMEbF0kMtFRG/i3BusI3G0rQGOdfoXM4XtldAXGyRBVavQ3MPYU/IopaclBFk3Qf+GYMNB6jgsYRoyuxySMEVt8LWulRKpwyZkaRlw6KAaIbozeSFxislxpU/jQGf5EJGalXsLTgZDVbDl8SHUp8TjYbw8SXSbk6PTvHpvN3jJk9vkJlD02iZnJUWEjHpwLS3+84rsRX2vrhgnpSykK8LgGRIa0+TCBdQa/EVylzU/g6MszoB7zlXImCfLRVHdWrBClyGHJPGvQJL2VIesn3G3SX5zkPSXbZ+dFed/vfyL5mORWsvstzzw7o0nEx9hv/VsKofhvxcoxMmyrPgZBWRMslxsoB3lj+kccyrqglqZALKMfSukH/yhLkTmE4AtSHQjl1k/50zajYN069SwPwhZKZl12z0v0C/nRAUSg8+A3LRin1Q22CBn61WkO4mFEmwH192DfeNsZ6sQvx1K9kz8GckDY6HWK2L1GJct+331Oko+b1UHBTHRd/qQwO+5e5VCLtBWW6pKJzGhrf4E3bQkiwTvUgjbD/uAgWcm8NlipvR1s5bfEJjfYs1/iS5xhfz2W8JjpVndfAFJg12HjkPaOSHpymMeRdhsHHYpiR98LcGuNJc9z8E1BUE3wpJ2AuGTBbPxou294bRR+bcIk3V0mSUMtenfZUGvdJZsLtN8II8kH31a63r4StaLzUDoTyi8fXzYOOr6fw0fxHjT3Fu/1+PV4EMp3+4ODu53ezdnVzYyFkDxg/1LQQq6dqwYhg/FToLvdgk4NW4d02zvaEu8IgJI2V3XoOjF1kcsj03swwpXw8K6V0Z9/z30dU+P322NeD53gvQbCx+cXJ1GQo6TfTBcFdnQSNo5BGhm9kHq6Ru0DqYVuBqLoCCdhv9uy98GCRR2zC88ahELBWVRJjvh1eo6kSSZw31IkPwgmSZVOkwKvfkkkssmX6fTN9Gzy6cOHzx9n83/O3s8m04930zPEPXffnT+EClWCg7Xn1TW47oLYafcg+Ka7IP6iC2fMoYPvLqkUApKifOhNrKR7vvdm0d507nnTpMLCZ6N2O1rGuWq2uL7oiofewpCiKUal9w22lL8sg8r5KlO1vzAcX3RJfPuivp6Sav4D0YQjZg== +api: eJy1Vttu2zgQ/RVinnYBJUq6L4Xe0sQNvOglSNxdbAM/UNJYYiuRCkk59Qr698WQlC3bai5A1y+S6OE5MzxzYQeWFwaSe7isWmNRwzKCHE2mRWOFkpDA59RyIQ2zJbKs1RqlZVY1qlLFhqmVX/eb3XvBLT7yDROGNVxbplanEIFG0yhp0EDSwZuzM3r8HzyZkhalJXjeNJXIOMHH3wxxdGCyEmt+TL4okQ0uEhnfUWt8aNFYArebBiEBlX7DzEIEjVYNait8VKlW31GbY/ALVglDDrJgwmzJLeMaB8+ZLYUZohsxca35BiKQbVXxtEJIrG4xAmGxniC60WotcjRMyJXStQudKcl4IGZS5fh8IGQ1z6cPqZXioUX226OwpSDk4PTvDpvNr9hKeX085YhNSIsFaojAO+eX/ngDfQSlMnaakP6RvEaHq5FnpZDFNIGxWsiC4BqlfwJH/7wA6ilfSTNBkE9KvbNiNZe8wJw5Vp+T9CW96kfcg+ivFnlLybbqvEr37f5nxJ9fbVN2u+WFZ6cVJfEh9pX7StEX/y1fWUaGQ9WHIEg1zgqxRjnJG+SPAGVbU0urkOfBj6pSj+5VSJ5ZsUZYUtYhr2z5nD9DM/LWg1Mv8sBvITFbuXvPkeew7PsIrLB0HnAzgAGtrlEb4fvVsQbhMILNRPaPYN8527lcKbccSvVO/DuhAWHLtk5RjxuVkOO++xKRD5vVXsFcqlb+pDB33KPKoRZpGo08ZzzTyphf4M1QgkLJ9zyzSk/7kym5EkWrMWejHWzltoQmN9mzX+NLmGF/PSV4UHrIu6+IKbJrv3Eq9w5IRumwCCPtNgw66OkXQY22VDkkUKBrCpxqAuJhAkIEBvXajbb7DlpdQQKdn6R9Escdteg+6ai19vH6HCJYcy3IB9dWdr19xduKzqNSGa/c8uFlY6/juzl8EO9ecx/w3p69PZuEct1+7+BuZ3cLdnEzZz4kBzi+FAyQpbXNJKQ3fg6075d0almrhd3c0ZZwR0CuUV+0vusE6QKXQ6ZvbwRReHk/pNGffy9cHVPjd9uDrvtOwKiBwNnp+VEU5Cjlb6bqupUusWXhRsYopFFeVyJDyha6GfB6R3jp99sN++AtWMhjdu5YfaJQcCaJ40LYsk1PM1XHGa9bmfPtM61UGtdcyDhQmfjrbPZudnL5+ePHL5/mi39OPswvZ5/uZifnp+en9od1x9AoY2suR35do91dEXfZuxd+t7si/qIrZ1DR4g8bNxUXknLKBd+FWrqHrTfL4a5zD12XcoNfdNX3tPzQot5Acr/clQ99+TFFc4yK7ztuSMEsw8a6Oqtad2U4vOpS+m3L+npGefMfQ+wkNA== sidebar_class_name: "get api-method" -info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api +info_path: versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Get cluster topology

+ - + Obtains the current topology of the cluster the gateway is part of. -## Request + -
+ -Obtains the current topology of the cluster the gateway is part of. - -
Schema
    brokers object[]nullable
    - -A list of brokers that are part of this cluster. - -
  • Array [
  • partitions object[]
    - -A list of partitions managed or replicated on this broker. - -
  • Array [
  • ]
  • ]
+ diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/sidebar.js b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/sidebar.js deleted file mode 100644 index 25b13ac45ac..00000000000 --- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/sidebar.js +++ /dev/null @@ -1,48 +0,0 @@ -module.exports = [ - { - type: "doc", - id: "apis-tools/zeebe-api-rest/specifications/zeebe-rest-api", - }, - { - type: "category", - label: "Cluster", - items: [ - { - type: "doc", - id: "apis-tools/zeebe-api-rest/specifications/get-cluster-topology", - label: "Get cluster topology", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "User task", - items: [ - { - type: "doc", - id: "apis-tools/zeebe-api-rest/specifications/complete-a-user-task", - label: "Complete a user task", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/zeebe-api-rest/specifications/assign-a-user-task", - label: "Assign a user task", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/zeebe-api-rest/specifications/update-a-user-task", - label: "Update a user task", - className: "api-method patch", - }, - { - type: "doc", - id: "apis-tools/zeebe-api-rest/specifications/unassign-a-user-task", - label: "Unassign a user task", - className: "api-method delete", - }, - ], - }, -]; diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/sidebar.ts b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/sidebar.ts new file mode 100644 index 00000000000..909b802299c --- /dev/null +++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/sidebar.ts @@ -0,0 +1,54 @@ +import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; + +const sidebar: SidebarsConfig = { + apisidebar: [ + { + type: "doc", + id: "version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api", + }, + { + type: "category", + label: "Cluster", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/zeebe-api-rest/specifications/get-cluster-topology", + label: "Get cluster topology", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "User task", + items: [ + { + type: "doc", + id: "version-8.6/apis-tools/zeebe-api-rest/specifications/complete-a-user-task", + label: "Complete a user task", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/zeebe-api-rest/specifications/assign-a-user-task", + label: "Assign a user task", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.6/apis-tools/zeebe-api-rest/specifications/update-a-user-task", + label: "Update a user task", + className: "api-method patch", + }, + { + type: "doc", + id: "version-8.6/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task", + label: "Unassign a user task", + className: "api-method delete", + }, + ], + }, + ], +}; + +export default sidebar.apisidebar; diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx index b9b6246ae24..0f94a3833e8 100644 --- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx @@ -5,51 +5,145 @@ description: "Removes the assignee of a task with the given key." sidebar_label: "Unassign a user task" hide_title: true hide_table_of_contents: true -api: eJztV01z2zYQ/SsYnJKpJcqpmya6qY7SurUTjyy107g6gORKQkwCDD4kqxz+9+4SpL5bdzI5+uAxAe6+t4vdBy1L7sTc8v49n1gwzAn7wKdnPAWbGFk4qRXv8xHkegmWuQUwYa2cKwCmZ0zU9mwl3aJ+N5dLUOwB1l1+xgthRA4ODKGXXOECoTyyjNHpN1ijjST0QrgFPhv44qWBlPed8XAYwhjhEZhYicm3wRKTTRaQC94vuVsXRCKVgzkYfDXTJhcubL2+4FU1JSJbaGXBkser3gX9OybbMLCVsMyrJu+UWZ8kYO3MZxnmWZ3xi17vSYijE2KJUEo7FsMOdpfdaAMsBSdkZpnA58LopUyRVqoaoA2exTpdd/9SmGOiMV3lKAZRFJlMBMUQoWecQf7dZ0sBlTuntB/pgN0Gy4aX6fgzJA4LzYJhHNjvR+8v2duLH36cvlg4V9h+FK1Wq66ZJR1IpdOmq808wiX9kd3LLsNTwBxysaY8RYpmyCkyyqoA4yT2lC0gkTOZMKfrBJuwGZUy5NcUNYRFjbVx3pZ8U3rrjFTz3cp7I/lhNw3YZHTF8FyVk7M1OhxT1z4z4TPCELH2rh9nQj1QxZ102UnSQxbr81yYTdfuEyCQdcJ5+2Tnfv/qCJv665fx+JYFCJboFBj6II+0LRElkUslc5/zPrYprsRjWL3u9SrCpIr/j0wUg8cC069b6zAdbI5827d1YlJhXCr5VpXRRs7lIS8SbWvBmyZ+FzKqqqpW5tPiPlYm6Z2kOdNepY3C334FDtahEe3KaEyEKgUs8cZgcnh3PIv9WezPYv9GYseXOGwsNI4PSJLh3FGPIDhZ9HlEMu2QTG1U7gwgVdQOMzREgFm2s4o3eEy8DCKqsPfLhbau6peFNq6KludovxRGCgyiLii9DmJrmyjTicjq7VPFpBc0EIUh6hMAKuZnvB1WIowUxLOP96b3pncSikzbswpAo+HdmA1ur1hIKfTezn3QQpKwT0IG46dA61nKAt5n0q3vyCWcRQx4lZmBp6Pf9EPDVSPTOhjhTnh433bJr3+M60JLNdO1e1Pw/SDo+LFWIeJe9/y4sTBQ0kei89yr+pLE5trc0QEtybx1lMoZx3sU8J4lxmZODSaXwd+t2XWwYL8HXnZes4ZGaW/IOeL7uIukUSLQLxXR3wQTxZmOo1xIFTVENvo0HP407Fx+vLmZfLga/9m5vrocfrgbdhC36x5dfQgFdkku1E5Uk2ZUxKbZ/PQcJl9ufyO+bnBvSubg0UV4DeCMXjWZlo2i7vlWUejQ3x/qN6LC/gjCuOdlGQsLE5NVFW1/8WDWuD/d6qgWXiotPaOIZyKzhx8Bu5m9GDWfCy/Zf30anMyl2RRqXes487TCRwQ5+EKppmi+AJFir1J8wWKAHwCF2/H9119iksjmWno3vB6Oh1jZfwDR0aEr +api: eJztV01z2zYQ/SuYPSVTmpRTN014cx2ldWunHltup3F1AMGliBgEGHxI5nD43zsAqA9Lbt3J5JiDhiK5eG8X+x657MHShYH8Dm4NamKpuYd5AiUapnlruZKQwzU2aomG2BoJNYYvJCJRFaEhnqy4rcO9BV+iJPfYpZBASzVt0KL26D1I2iDk4AzqGTX3v2EHCXCP3lJbQwIaPzuusYTcaof7Kcxq9MCe1TO5dbKeybAaGwp5D7ZrPQmXFheoIYFK6YbaeOn1CQzD3BOZVkmDxq94NTnxh0OyDQNZUUOcHOsuiXGMoTGVE6JLYUjgZDJ5FuJghwijUipLCtzBTsml0khKtJQLQ6hG0mq15CWWhMsAsE6eFKrs0r8lJMCUtCitz4G2reCM+hyyVqtCYPPdJ+MT6nd26XGmp+QqRo68RBWfkFlCDYmBRWS/u35/Rt6e/PDj/EVtbWvyLFutVqmu2BGW3CqdKr3IdMX8z8e9TMmsRo2koZ2vk5Yl95xU+Kpa1JajIaZFxivOiFWhwDFt4lsZ6xubGtPywtos3rZ803pjNZeL3c47zWFfTafk9vqc8BKl5VXH5eKQOqypqBMegxbK2bwQVN77jltuxZOk+yzGNQ3VG9U+JhgSMJZaZ55V7vevDrC9vn6Zza5IhCBMlUgqpYmtuVkT+SIaLnnjGshPJpMEGvoQz15PJoPH9B3/H5VIgg+toDJIa78cLkmz1W0ojEtjqWRfqzNK8wXf501h2PYCRhG/ixUNwxCc+by5D53p/e6tWSkny9Hhb78Ah5u1aVdayUXoFBLmtEZpRffN7N/M/s3sX8vsQwIN2lqVkEOJAi2GEcTWkEPmbXrkbWqyfmcAGbL1MOOHCNTL9azitIAc+miiIc+yvlbGDnnfKm2HbHkMCSyp5rQQUZf+djTbWkRCMSrC5aea6W/4gSgOUR8RCyQ/U4srGkcKz/MY783kzeRJKB+63qsIdD29mZHTq3MSS4ra23kerCG9sZ+EjMHPgYZZyiBzmtvuxi+Je1Eg1ahPnd/6jR5GroDsz2MQJOOf92uV/PrnLDSay0qF5WPDHyfhtx+1iRlP0uNDYV2dB38w1TROhoekXGyf0RGNCWesLyUBwRlKEwQ8zqkx5Cyutx25iBHkj8hLjgNrFMr6CbngtnZFylSTMdo4WdLNsRCqyBrKZTZSmezjdPrT9Ojs98vL2w/ns7+OLs7Pph9upkfH6XFqH2zYhlYZ21C5k9ftOCwSun357Jffb98SXza6j02z+GCzVlAuvYRCrf3oqTvYegoSyB+P9RtbzZPRGnfQ9wU1eKvFMPjLnx3qDvK7+dZJwXolN/5/CXlFhdn/DNit7MX1+MHwkvzXx8GTtYwXqeyCk4XzZ5DAPXZ73yjDfEigRlqiDvnFiFPGsLU7a//1XexNsnkwvZteTGdTGIZ/AFgoofk= sidebar_class_name: "delete api-method" -info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api +info_path: versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Unassign a user task

+ Removes the assignee of a task with the given key. -## Request + -

Path Parameters

+ -The user task was unassigned successfully. + -
- -The user task with the given key cannot be unassigned. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key was not found. - -
- -The user task with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx index 71af92194c3..3cbf8ae7b3d 100644 --- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx @@ -5,69 +5,211 @@ description: "Update a user task with the given key." sidebar_label: "Update a user task" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" -info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api +info_path: versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api custom_edit_url: null hide_send_button: true --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; -

Update a user task

+ Update a user task with the given key. -## Request - -

Path Parameters

Body

    changeset objectnullable
    - -JSON object with changed task attribute values. - -The following attributes can be adjusted with this endpoint, additional attributes -will be ignored: - -- `candidateGroups` - reset by providing an empty list -- `candidateUsers` - reset by providing an empty list -- `dueDate` - reset by providing an empty String -- `followUpDate` - reset by providing an empty String - -Providing any of those attributes with a `null` value or omitting it preserves -the persisted attribute's value. - -The assignee cannot be adjusted with this endpoint, use the Assign task endpoint. -This ensures correct event emission for assignee changes. - -
- -The user task was updated successfully. - -
- -The user task with the given key cannot be updated. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
- -The user task with the given key was not found. - -
- -The user task with the given key is in the wrong state currently. More details are provided in the response body. - -
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ + + + + + + diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx index 66890419109..171c1bc1269 100644 --- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx +++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx @@ -9,18 +9,26 @@ custom_edit_url: null --- import ApiLogo from "@theme/ApiLogo"; +import Heading from "@theme/Heading"; import SchemaTabs from "@theme/SchemaTabs"; import TabItem from "@theme/TabItem"; import Export from "@theme/ApiExplorer/Export"; -

Zeebe REST API

+ API for communicating with the Zeebe cluster.
-

- Authentication -

+
diff --git a/versions.json b/versions.json index 85dc2d816a2..d2e79fc7b0c 100644 --- a/versions.json +++ b/versions.json @@ -1 +1 @@ -["8.6", "8.5", "8.4", "8.3"] +["8.6"]