diff --git a/.husky/pre-commit b/.husky/pre-commit index 36af219892f..7118cd9ae4f 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1,6 @@ #!/bin/sh +# Before adding version-manager code here, read https://typicode.github.io/husky/how-to.html#solution. + . "$(dirname "$0")/_/husky.sh" npx lint-staged 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..a17dc47527e 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..."); @@ -14,18 +12,20 @@ function preGenerateDocs() { ...redefineCreateProcessInstanceRequest(originalSpec), ...redefineEvaluateDecisionRequest(originalSpec), ...addAlphaAdmonition(), // needs to go before addFrequentlyLinkedDocs - ...addFrequentlyLinkedDocs(), + ...addFrequentlyLinkedDocs(config.version), ]; 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) { @@ -239,9 +239,20 @@ function addAlphaAdmonition() { ]; } -function addFrequentlyLinkedDocs() { +function addFrequentlyLinkedDocs(version) { // This task is inherently repeatable, because the `match` is replaced by something that won't match again. + // The path to the alpha doc varies by version. + const otherAlphaPaths = { + 8.6: "/reference/alpha-features.md", + 8.5: "/reference/alpha-features.md", + 8.4: "/reference/alpha-features.md", + 8.3: "/reference/alpha-features.md", + }; + const alphaPath = + otherAlphaPaths[version] || + "/components/early-access/alpha/alpha-features.md"; + // Adds links to the Camunda Alpha REST API documentation, so that they don't have to live in the upstream spec. return [ { @@ -250,13 +261,12 @@ function addFrequentlyLinkedDocs() { }, { from: /endpoint is an alpha feature/g, - to: "endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md)", + to: `endpoint is an [alpha feature](${alphaPath})`, }, ]; } 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..877b62adbeb --- /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](/reference/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](/reference/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](/reference/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](/reference/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](/reference/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](/reference/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](/reference/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](/reference/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](/reference/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](/reference/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](/reference/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](/reference/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](/reference/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](/reference/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.4/operate-openapi.yaml b/api/operate/version-8.4/operate-openapi.yaml new file mode 100644 index 00000000000..2ef6348a549 --- /dev/null +++ b/api/operate/version-8.4/operate-openapi.yaml @@ -0,0 +1,2000 @@ +--- +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 + required: true + 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 + required: true + 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 + required: true + 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 + required: true + 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 + required: true + 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 + required: true + 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 + required: true + 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 + required: true + 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 + 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 + 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 + 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 + - 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/operate/version-8.5/operate-openapi.yaml b/api/operate/version-8.5/operate-openapi.yaml new file mode 100644 index 00000000000..2ef6348a549 --- /dev/null +++ b/api/operate/version-8.5/operate-openapi.yaml @@ -0,0 +1,2000 @@ +--- +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 + required: true + 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 + required: true + 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 + required: true + 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 + required: true + 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 + required: true + 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 + required: true + 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 + required: true + 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 + required: true + 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 + 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 + 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 + 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 + - 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/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.4/tasklist-openapi.yaml b/api/tasklist/version-8.4/tasklist-openapi.yaml new file mode 100644 index 00000000000..4242c1e1782 --- /dev/null +++ b/api/tasklist/version-8.4/tasklist-openapi.yaml @@ -0,0 +1,1018 @@ +--- +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 + 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 + 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 + 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 + 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/tasklist/version-8.5/tasklist-openapi.yaml b/api/tasklist/version-8.5/tasklist-openapi.yaml new file mode 100644 index 00000000000..4242c1e1782 --- /dev/null +++ b/api/tasklist/version-8.5/tasklist-openapi.yaml @@ -0,0 +1,1018 @@ +--- +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 + 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 + 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 + 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 + 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/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.5/zeebe-openapi.yaml b/api/zeebe/version-8.5/zeebe-openapi.yaml new file mode 100644 index 00000000000..5b09f10b387 --- /dev/null +++ b/api/zeebe/version-8.5/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/zeebe/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/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 1759fe93e0d..3749453db0f 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,494 @@ 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 440c05d841c..fd6a4ec0f9b 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 cf17b4bd9a9..2e6feceecc9 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 2e1c03bfb43..c46a83adafb 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 b2d6aec967b..46d4a401224 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 513bd99b673..fa47a89cb1d 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 62fc0cd28b6..1d2775b699c 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: eJztWFFv2zYQ/ivEPW2YIrld2nV6c9N0S9emQeJuD6kfTtLZYiuRKknFMQz99+FE2ZYtJwuGFdiDAxixrNPdfffdR4q3AodzC/Et3Mi5wgKmAeiKDDqp1UUGMSRGY5aidZ1BABnZ1MiKLSCG1+v7VqCwrU0IARj6VpN1r3W2hHjVXkpDGcTO1BRAqpUj5fgWVlUh0zZg9MWyzxXYNKcS+ZtbVgQx6OQLpQ4CqAyn5yTZ1q6Nd4kl8dVuYpOchMKShJ4Jl1OXm3BabCBxol0A64xUc2gCuEMjMSl8AMwyyf6wuOoF9hiG4boQGw8CuSjvbj5eCg+gF7BD1ATgSKFyXOxDEC7erAF4O+FydEIvlO2hOgCkCXpFv+1XahqAk65gY8/phsJrTxo0jX/cVlpZX4jno9Hh/DrMC7S7df3XDGNRfJxBfLsf7DVaElv6xUwbMcjfZzws837jPF7zrtLb0q97h0s/QDos/IPl9ekxEmimh5v5D1oeTqpW8ltN3yOpunCtRZ+nO5WFKZa1yjDESoZfaWlDVZcJmZ+GHGZUGUrRbQV+ZPU7siqVozkZCGCmTYnO//Ty9ClpPo1pD/sA00de/x9qZZvTh9bkyug7mVEmMnQopBVKO3GHhcweWZkro5OCyoPq7gcYiytvKTJyKItua+O9zhsmlAmpxO312zPx6+mLX6Y/5M5VNo6ixWIRmll6Qpl02oTazCMzS/nDdj+GYpKTIVHiUiQktntvv5FsRamcyZQ3cuextslwCcPP6p97qb272it5T0m1kYOXnLH4dH0hZEbKydlSqvkwdPvMDJmdGDDRtYuTAtVX2JI5DLofxdZliWa57pndAE0A1qGrezAeWAl+fj7wzW3x+2RyJbwLkeqMWlG6XNp1IAZRSiXLuoT4dDQKoMR7f/VyNGrYJzP+BCRK0H1VoGpbax+OVKLUhrr+aYFJZR2q9L9iRhs5l/txwx1hdU38xiNaC+r00ZecTkkzXaujko5KOirpQSW9OLQ1jZXgKhvuQzJGG6HTtDaGMrHIZdG6T8nadezuDOl78ai1o9aOWhtqrQmgJJdrntVU2ratgy6HGCK/a9lo86oJAVgyd2Rs+8ZemwJiWHnJNHEUrXJtXROvKm1cE90xHzvTEL7tpbVumUKnWOQ+7JA6vtEfwZz5Y4Z4Ja7PbybiN3S0wGVbSg656/rV6NXooFc2fcDj+OpCeIS+8XqLwdotq/qgW2/8FMcNnwYspbWRbnnDj/nyJISGzLjm6m8aoovXeudrbwRB9+Xtuk3e/TVpmeaF7Ho7PDu/x7LyMuwPu7Z91idoZ5jUG2lJNdNtSl0XDcGxIzLWV2MUPht27NVFK7xUl2Wt2tVXzcVCulxgr1hpUVvHRQqgkCnxeTNegfI5r83e+zviTx9RPAuZaN+N60V3Ll1eJ2Gqy6g7nG7+J4VOohKliroQNjobf/h0+WZ88v7i7Pzy5vzkWTgK3b2farAoSlS9PDanqe69bh/sarvZPDTe7Mh1dO+iqkCpuMwtglUnv/XIzTLVGwFOg05Et7BaJWjpkymahn/+VpNZQnw73VLKV00AOWFGplXsVz5uwpnP7mTCSbB5UXMygzFbE6yfGKcpVe5R22lvHbn6eDPhtLvhbakzfsbggge7uIAYPsNnAB4Vs4e2+dvfV1Cgmtc4Z3vvl//+BshkxRc= +api: eJztWFFv2zYQ/isEnzZMkdwu7Tq9uWm6peuSIHG3h8wPJ+lssZVIlaTiGIL++3CkZMuWkwXDCuzBAYxY1unuvvvuI8VruIWl4fEdvxVLCQWfB1xVqMEKJS8yHvNEK8hSMLYzCHiGJtWiIgse87f9fcOAGWcT8oBr/FqjsW9VtuZx4y6FxozHVtcY8FRJi9LSLaiqQqQuYPTZkM+GmzTHEuibXVfIY66Sz5haHvBKU3pWoHF2Lt4llEhXu4nNcmQSSmRqwWyOXW7MKraBRIl2AYzVQi55G/B70AKSwgeALBPkD4rrQWCPYRyuC7HxwICK8uH26pJ5AIOAHaI24BYlSEvFPgTh4l0PwNsxm4NlaiXNANUBIG0wKPrdsFLzgFthCzL2nG4ovPGk8bb1j5tKSeML8XIyOZxfh3kFZreu/5phKIqrBY/v9oO9BYNsSz9bKM1G+fuMx2Xeb5yna95Velv6vneo9COk48I/Wl6fHiHh7fxwM/+G68NJ1VJ8rfFbJFUX1lkMebqXWZhCWcsMQqhE+AXXJpR1maD+YcxhhpXGFOxW4EdWvyGrQlpcouYBXyhdgvU/vT59TprPY9rDPsD0kdf/h1rJ5vSxNbnS6l5kmLEMLDBhmFSW3UMhsidW5kqrpMDyoLqHAabs2luyDC2IotvaaK/zhglmTEh2d/P+jP18+uqn+Xe5tZWJo2i1WoV6kZ5gJqzSodLLSC9S+pDd9yGb5aiRlbBmCbLt3jtsJFNhKhYipY3ceqwuGSph+Jf8515yd5u9kg+UVGsxesmZsk83F0xkKK1YrIVcjkO7ZxZA7MQcElXbOClAfuFbMsdB96OYuixBr/ue2Q3QBtxYsPUAxiMrwY8vR76pLX6dza6Zd8FSlaETpc2F6QMRiFJIUdYlj08nk4CX8OCvXk8mLfkkxp+BRDJ8qAqQrrX24QjJSqWx6x8HTEhjQab/FTNKi6XYjxvuCKtr4nceUS+o0ydfcjolLVQtj0o6KumopEeV9OrQ1jSVjKqsqQ9Ra6WZStNaa8zYKheFc5+iMX3s7gzpe/GotaPWjloba60NeIk2VzSrqZRxrQM25zGP/K5los2rJg+4QX2P2rg39loXPOaNl0wbR1GTK2PbuKmUtm10T3zsTEPotpdW3zKFSqHIfdgxdXRjOII588cM9obdnN/O2C9gcQVrV0oKuev6zeTN5KBXMn3E4/T6gnmEvvEGi0HvllR90K03fo7jlk4DBtNaC7u+pcd8eRIEjXpaU/U3DdHFc97p2hvxoPvyvm+TD3/OHNO0kN1sh2fnD1BWXobDYde2z4YE7QyTBiMtIRfKpdR10RgcOUJtfDUm4Ytxx15fOOGlqixr6VZfuWQrYXMGg2KlRW0sFSnghUiRzptxw6XPuTf76O+wP3xE9iIkon039ovuUti8TsJUlVF3ON38TwqVRCUIGXUhTHQ2/f3T5bvpyceLs/PL2/OTF+EktA9+qkGiKEEO8ticprr3un2wzXazeWy82ZFr8cFGVQFCUpkdgqaTXz9yM0T1RoDzoBPRHW+aBAx+0kXb0s9fa9RrHt/Nt5TSVRvwHCFD7RT7hY6b/MxndzKjJMi8qCmZ0ZitDfonpmmKlX3Sdj5YR66vbmeUdje8LVVGz2hY0WAXVjzmnMbE9LRrfPdbwwuQyxqWZOt90t/fxt/EGw== 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 8cfda3cbebb..4b2020d0acf 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: eJztWN9v2zYQ/leIe2oxRXK6tMv0MMBL0y1b2wWOuz0keaClk8WWIlWSimMI+t+HIyXbsWygBfYyIAGMWOLxfn7fmccWHF9aSG/h2ugMrWVCWcdVhnAfga7RcCe0usohhYxey17uahCLIEebGVGTHKRw4aUs48w0Sgm1ZPWe5phNaTmo8+qZUJlscrSs0gaZK7linxvrmCuRGaz0A5dMF/5xXxszaHVjMoz88q7WYYVVpGuBrNbWYR5DBDU3vEKHhmJvQfEKIYX6aWx/4hoiEBRVzV0JERj82giDOaTONLgf+rxE9gXXRz11unePPLBZiRWHtAW3rsm4dUaoJXTdfbCD1v2q8zVJbM0WXFqMINPKoXK0xutaiswHnHy25Ec71q0XnzFzEIFqpOQLiUMAtaEaO4GWpDf1nmGBBqm8absX5JSZYdEHm5XaomKLtY+5sWiofo6thJQ+59w4ygiXkhnMtMktFaaRjrBRGF0xVwrLNrbjO/Whr9cvbMJEQYl8EDnm8Z2CaAhJKIdLNBBBoU3FXXj15gwiqIQSVVNBetp1ETjhKN4emHvwnYVEQ9eRqEFba2VDMl5NzsbRzw/VVdi+roStLoKzyeToTh8Iy7njtE1pxx64FB6TR4paG72QWP0wLu5+Ya6DJMvRcSFZKDrjlgXBBeZMKHY7e3fBfj57/dP9i9K52qZJslqtYlNkJ5gLp02szTIxRUYfknsZs3mJBlnF11QVnueCbHLJtvBhtsZMFCIjlPfo985QuZ4UboPFp9gLq/ts2KluY8So2UzZp9kVEzkqJ4o1AWpk2u8peCNJB1/oxqULydUX2EJjbHTfim2qiptdZu8Y6CKwjrtmJ4wj6Pzx1Ug3weL3+fyaBRUs0zmyQptAit5QvAvqs8kkgoo/hqc3k0lHOqni3xCJYvhYS65Cg9wLR6jQf4M2H9jm1+C/qYw2Yin27cawS9MexG9DRIGXZ99DReJUoRv1zKlnTj1z6iinXh/6kZrSUcyhIRyiMdownWWNMZizVSnkhnCD7f6cErD4zLVnrj1zbcy1LoIKXalphqIJxI8froQUkp5OJ4ObNmnHM0iXhNNlmGpodEDzMEwujZGQQhtI1aVJ0pbaui5ta21clzxQxR64EXTo9wWm5UC+AVRSZ1yWwbFxcWmBxqMh6AteNSrn7JzNLm/m7DfucMXXPtlk8qnq88n55KBWEj2icXp9xUKEAZo77WJQS7w/qDYIf4tiP2ZZzBoj3PqGtoX0LJAbNNOG6rOBTG/Pa6fnIARR/+XdAKQ//pl7LFCrm21HuMtHXtWBqIcmrInHaaG9wc2wsu861RGNDbFO4tMxYq+vPPEyXVWN8t1XLdlKuJLxnVRksrGOUhCBFBkq6/3qB+BB7H1YYX8Hi+w0pjIGrA1Ndylc2SziTFdJFrZt/i+kXiQVFyrpTdjkYvrh08e305P3VxeXH28uT07jSewenU8XkaLi6okfBPjR8W4/5nb7m/M/uXfoAeXw0SW15EIRxH1e274p3MKoKUAE6cGriSd94T7quX0LbbvgFj8Z2XX0+muDZg3p7f22FfjekQtL37fXCkeT+2LW30C8ZN91yXEw3P4lV2vfm2RDTxDBF1wfvoPp7rsISuQ5Gu93ELwI3p3MSd1W0eg+pIuGHdMsw9odkX1yTKHmsOnZ13/dzInr/WVMpXPaa/iKLoT4ClK4gzsKQPvM+Tbi37cguVo2fEnyQS/9/Qtc4sFj +api: eJztWFtv2zYU/isEn1pMkZwu7To9DPDSdMvWdoHjbg9pHmjqyGJLkSovcQxB/304pOSbbKAF9jIgAYxY4uG5ft8xD1vq2NLS/I7eGM3BWiKUdUxxoPcJ1Q0Y5oRW1wXNKcfXspe7HsQSWoDlRjQoR3N6GaQsYcR4pYRakuZAc0qmuBzVBfVEKC59AZbU2gBxFVPks7eOuAqIgVo/MEl0GR4PtREDVnvDIQnLu1qHFVKjrgWQRlsHRUoT2jDDanBgMPaWKlYDzWmzH9ufsKYJFRhVw1xFE2rgqxcGCpo74+Ew9HkF5AusT3rqdO8eemB5BTWjeUvdukHj1hmhlrTr7qMdsO5XXaxRYmu2ZNJCQrlWDpTDNdY0UvAQcPbZoh/tWLdefAbuaEKVl5ItJAwBNAZr7ARYlN7UewYlGMDy5u1BkFNihsUQLK+0BUUW6xCzt2Cwfo6shJQh58w4zAiTkhjg2hQWC+OlQ2yURtfEVcKSje30k3rf1+sXMiGixEQ+iAKK9JOiyRCSUA6WYGhCS21q5uKrVxc0obVQovY1zc+7LqFOOIy3B+YBfGcx0bTrUNSAbbSyMRkvJhfj6OfH6ipsX1fEVpfQi8nk5M4QCCmYY7hNaUcemBQBkyeK2hi9kFD/MC7uYWFuoiQpwDEhSSw6YZZEwQUURChyN3t7SX6+ePnT/bPKucbmWbZarVJT8jMohNMm1WaZmZLjB+Wep2RegQFSszVWhRWFQJtMki18iG2Ai1JwRHmP/uAMlmuvcBss7mMvrh6yYae63ohRs5mSj7NrIgpQTpRrBNTIdNhTMi9RB1to7/KFZOoL3UJjbPTQivV1zcwus3cMdAm1jjm/E8YJdP74YqQbYfH7fH5DogrCdQGk1CaSojeU7oL6YjJJaM0e49OryaRDnVjxb4hEEXhsJFOxQR6EI1Tsv1FbCGzza/DfVEYbsRSHdlO6S9MexG9iRJGXF99DReRUqb164tQTp544dZJTL4/9SE3xKObAIA7BGG2I5twbAwVZVUJuCDfY7s8pEYtPXHvi2hPXxlzrElqDqzTOUDiBhPHDVTSnWU+ns8FNm7XjGaTL4ukyTjU4OoB5GCYXbyTNaRtJ1eVZ1lbaui5vG21clz1gxR6YEXjoDwXG5Ui+AVRScyar6Ni4uLiA49EQ9CWrvSoYeU1mV7dz8htzsGLrkGw0ua/69eT15KhWFD2hcXpzTWKEEZo77WJQi7w/qjYKf4viMGZZ4N4It77FbTE9C2AGzNRjfTaQ6e0F7fgchWjSf3k7AOmPf+YBC9jqZtsR7uqR1U0k6rEJaxJwWupgcDOsHLqOdQRjY6yT9HyM2JvrQDyu69qr0H3VkqyEqwjbSQWX3jpMQUKl4KBs8KsfgAexd3GF/B0tkvMUyxixNjTdpXCVX6Rc1xmP2zb/F1IvspoJlfUmbHY5ff/xw5vp2bvry6sPt1dn5+kkdY8upAtJUTO15wcCfnS8O4y53f7m/E/uHXpAOXh0WSOZUAjxkNe2bwp3dNQUaELzo1cTe33hPum5fUfbdsEsfDSy6/D1Vw9mTfO7+20rCL2jEBa/b68VTib32ay/gXhOvuuS42i4/Uum1qE3SY9PNKFfYH38Dqa77xJaASvABL+j4GX07myO6raKRvchXTLsmHIOjTshu3dMweaw6dk3f93Okev9ZUytC9xr2AovhNgqOq9D1kILCe9aKplaerZE2agT//4Fai3AZw== 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 d2f786710e6..56d2f6afbbf 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. This functionality is currently supported only by user task listeners. - -
    corrections objectnullable
    - -JSON object with attributes that were corrected by the worker. - -The following attributes can be corrected, additional attributes will be ignored: - -- `assignee` - clear by providing an empty String -- `dueDate` - clear by providing an empty String -- `followUpDate` - clear by providing an empty String -- `candidateGroups` - clear by providing an empty list -- `candidateUsers` - clear 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 d8f84b3d7dc..64f893341ac 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/SuYPSVTmlRSp3V4Ux2ndZukHltuD7YPILiSEIMAA4CSNRz+984C1Lc1dTs5yjMai8Ji3368B5LbgucTB/kd3Dq0zHP3CA8JmBot99LoyxJyEKaqFXokkxFZJFCiE1bWZAI5nPcGjnHWLP2wufRT5qfIJnKGmj3iIoUEam55hR4tobageYWQQ9O7/gMXkIAkpzX3U0jA4rdGWiwh97bBXeTRFMkxM+OAtAb3hi3DJlQnplhxyFvwi5oAnbdST6DrHiIEOv+LKRdksUYcc+UwAWG0R+1pjde1kiKUJvvqKIR237cpvqLwlKulQnqJjlZn3EpeqHjBy1KSF66uNowOpbjaupnXTsZUbkp1NwjdKEV7o/cuAS6i53YHaMhE47ypWDRgM64aAuGezaVSrEDGhUDnZKGQja2pNtBxhto7ZtE1yks9iet+Kh1DXdZGas+knplYu5Rdjpk2ntXWzGSJZcJkj1LimDfKU6L3K+bdQ3qv17n1zdvLrUvAS0+XsORqT01p9HXsMnQd2Vl0tdEuNuPt4HS/HKPt6nK3KnzJXBMKMW6UWqTQJXA6GPyrhz05MME1FaHAteuUfTYWWYmeS+UYt7iqEZM67F+GzgpTLmJdDjC0tqZQWP2wz9Tdzl9Fyx6XRfIw7lg0LCL63fXHc/b+9N3PD6+m3tcuz7L5fJ7asTjBUnpjU2MnmR0L+pDd65SNpmiRVXwR+LNiPVtrg7kahRxLQT2nBPuwGXV7q+8HhBVXd6WdwNjYins6XazcO7OG7Pb6kskStZfjBTF2DzrsCWyEHHhhGp8XiutHWPNsH3QXxTVVxe3qhNoG6BJwnvtmIw2Q2uME7Wb8Uvsf3+75Jnr9NhpdseiCCVMiGxsbVdcDURKV1LJqKshPB4MEKv4Ur34aDDrySR1/QSaa4VOtuA7U2k1HalateRsSk9p5rsX36oyxciJ3cVPY1HxP4g8xo6jz0xdIe1+YpHZS5tg0ukyPAjsK7CiwgwJ7/z8EJt3ybja3Rk9ChZGJxlrUXi2Od8GjSI8i/X4ifffc4+lQM6qyJR6itcYyI4ICSzafShXch8f9Hrt/TTpq7ai1o9YOaa1LoEI/NTQ3qY0L1KFBRg4Z3RBP6IbosnZj3tFlYvWOSpMKtLPlcKSxCnJoo4i6PMvaqXG+y9vaWN9lM+rQ1lSBlqPYliRSRnA1jYHsN5MWaAKzTPKcV40uOTtj1xc3I/Yr9zjn8Q2XILddnw3OBs96JdMDHodXlyxmGKm4cTws3ZLOn3UbjV/iOEx1HIrGSr+4oW2xPAVyi3bYUD9WFOnxgne6jkaQ9F8+Lonz+9+j0Hs62q7XE6OLJ07d2x3wbMxZVrMmYujYBOieP/tJUEfRurhxkL7Z5+rVZZCcMFXV6HDu6kl8xOIbRRGqcZ6KkYCSArULEfbTtqXZp7jC/oqI7E1KDY2sWx63E+mnTZEKU2Uiblv9L5QpsopLnfUQLjsffr798mF48uny/OLLzcXJm3SQ+icfCkdyqLjejGM5yVo9K+6m265vNP9pytj31uOTz2rFpabqh8TaXo93sNYjJJBvTyA3JPmQ9LK6g7YtuMNbq7qOfv7WoF1AfvewVmGQbSkdfV8PEA+m9Oq6nzW+Zi+dZD6bWf8j14twIqiGriCBR1zsDFe7hy6BKfISbYg1WpzHiE5G5GftYW/a2SXLHUMhsPYHbLeeAkiLqyPx6s+bEUmrH7VWpqS9ls9p0svnkMM93FPkJlQrqDb83oLietLwCdlHv/T3D6vc4Us= +api: eJztWE1z2zYQ/Ss7OCVTmlRSp014Ux2ndZukHltuD44PILiUEIMAA4CSNRz+984C1Icla+p2cpRnNBaFxb79eA8kt2OeTx3Lb9mNQwueu3t2lzDToOVeGn1RspwJUzcKPZLJhCwSVqITVjZkwnJ2Nhg44NCu/MBC+hn4GcJUzlHDPS5TlrCGW16jR0uoHdO8RpazdnD9By5ZwiQ5bbifsYRZ/NZKiyXLvW1xF3kyQ3IMpgpIG3BvYBU2oToxw5qzvGN+2RCg81bqKev7uwiBzv9iyiVZbBArrhwmTBjtUXta402jpAilyb46CqHb922Kryg85WqpkF6io9U5t5IXKl7wspTkhavLLaNDKa63bue1kzGVm1LdDUK3StHe6L1PGBfRc7cDNAbROm9qiAYw56olEO5hIZWCAoELgc7JQiFU1tRb6DhH7R1YdK3yUk/jup9JB6jLxkjtQeq5ibVL4aICbTw01sxliWUCckApseKt8pTolzXzvrD0i97kNjRvL7c+YV56umQrrg7UlEZfxS6zvic7i64x2sVmvB6d7pdj8ri63K0LX4JrQyGqVqllyvqEnY5G/+phTw4guKYiFLhxncInYxFK9FwqB9ziukYgddi/Ch0KUy5jXQ4wtLGmUFj/sM/U3c5fRssBFyJ5gDuIhkVEv736cAbvTt/8fPdi5n3j8ixbLBaprcQJltIbmxo7zWwl6EN2L1OYzNAi1HwZ+LNmPWy0Aa5BISspqOeU4BA2ULcf9f2AsOLqrrQTVhlbc0+ni5V7Z9YYbq4uQJaovayWxNg96LAnsJHljBem9XmhuL5nG57tg+6iuLauuV2fUI8B+oQ5z327lQaT2uMU7Xb8UvsfX+/5Jnr9NplcQnQBwpQIlbFRdQMQJVFLLeu2ZvnpaJSwmj/Eq59Go558UsefkYkGfGgU14Fau+lIDfWGtyExqZ3nWnyvzhgrp3IXN2Xbmh9I/D5mFHV++gxp7wuT1E7KrEyry/QosKPAjgI7KLB3/0Ng0q3uZgtr9DRUGEG01qL2anm8Cx5FehTp9xPpm6ceT8caqMqWeIjWGgtGBAWWsJhJFdyHx/0Be3hNOmrtqLWj1g5prU9YjX5maG7SGBeoQ4OMnGV0QzyhG6LLuq15R5+J9TsqTSrQzlfDkdYqlrMuiqjPs6ybGef7vGuM9X02pw49mirQchTbikTKCK5mMZD9ZtICTWBWSZ7xutUlh7dwdX49gV+5xwWPb7gE+dj129Hb0ZNeyfSAx/HlBcQMIxW3joeVW9L5k26j8XMch6mOQ9Fa6ZfXtC2Wp0Bu0Y5b6seaIgNe8E7X0Yglw5cPK+L8/vck9J6OtqvNxOj8gVP3dgc8W3OW9ayJGFqZAD3wZz8J6ihaFzeO0lf7XL28CJITpq5bHc5dPY2PWHyrKEK1zlMxEqakQO1ChMO0bWX2Ma7AXxERXqXU0Mi61XE7lX7WFqkwdSbitvX/Qpkiq7nU2QDhsrPxp5vP78cnHy/Ozj9fn5+8Skepf/ChcCSHmuvtOFaTrPWz4m663eZG85+mjENvPT74rFFcaqp+SKwb9HjLNnpkCcsfTyC3JHmXDLK6ZV1XcIc3VvU9/fytRbtk+e3dRoVBtqV09H0zQDyY0ourYdb4Ep47yXwys+FHrpfhRFAtXbGE3eNyZ7ja3/UJmyEv0YZYo8VZjOhkQn42HvamnX2y2jEWAht/wPbRUwBpcX0kXv55PSFpDaPW2pS01/IFTXr5IkZtQqWCYsNvHVNcT1s+Jdvok/7+ATmH4E8= 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 bca4971c318..87305b1edd4 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,59 +5,355 @@ description: "Publishes a message and correlates it to a subscription." sidebar_label: "Correlate 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"; -

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. The message is not buffered. Use the publish message endpoint to send messages that can be buffered. -## 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-authorization.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-authorization.api.mdx index 61e1c54cac6..652ec3ef801 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-authorization.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-authorization.api.mdx @@ -5,57 +5,400 @@ description: "Create the authorization." sidebar_label: "Create authorization" 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"; -

Create authorization

+ - + Create the authorization. -## Request + -

Body

required
+ -The authorization was created successfully. + -
Schema
Schema
Schema
- -The authorization 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}}>
- -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}}>
- -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 33f5d48df41..cb3c188f18f 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,106 +12,903 @@ 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. - -
    resource object
    - -Base properties for DeploymentResource. - -
  • ]
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. - -
    resource object
    - -Base properties for DeploymentResource. - -
  • ]
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. - -
    resource object
    - -Base properties for DeploymentResource. - -
  • ]
- -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 b99bcf23ce6..d5a10806b30 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: 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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"; -

Create document link (alpha)

+ Create a link to a document in the Camunda 8 cluster. @@ -41,14 +41,127 @@ 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 59ec657484e..4a00666afdb 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,209 @@ 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-documents.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-documents.api.mdx index 936df1a4d4c..8ef78aafd0c 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-documents.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-documents.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 multiple documents (alpha)

+ - + Upload multiple documents to the Camunda 8 cluster. @@ -47,50 +50,360 @@ This endpoint is an [alpha feature](/components/early-access/alpha/alpha-feature in future releases. ::: -## Request - -

Query Parameters

Body

required
- -All documents were uploaded successfully. - -
Schema
  • Array [
  • createdDocuments object[]
    - -Documents that were successfully created. - -
  • Array [
  • metadata object
    - -Information about the document. - -
    customProperties object
    - -Custom properties of the document. - -
  • ]
  • failedDocuments object[]
    - -Documents that failed creation. - -
  • Array [
  • ]
  • ]
- -Not all documents were uploaded successfully. More details are provided in the response body. - -
Schema
    createdDocuments object[]
    - -Documents that were successfully created. - -
  • Array [
  • metadata object
    - -Information about the document. - -
    customProperties object
    - -Custom properties of the document. - -
  • ]
  • failedDocuments object[]
    - -Documents that failed creation. - -
  • Array [
  • ]
- -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 d36c22bb2da..9c27f26807e 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: eJztWF9v4zYS/yoDviTBKbaTy/a2Bq6Am6Z36W13g8TbPsQBOpZGFncpUiUpO4YhoF+jX6+fpBhS8n8Dfbinuw0QJCLn//xmhuRKeJw5MXwWd4pK0h6kdh51SuIlEaYii14afZ+JoUgtoaeW7r4l+wmtxKkiJxKRkUutrJhBDMXHKkNPDlAp8AXBvKMEkwNChdbLtFZowaWmIjjPjQV6xbJSlEBlTUrOrc1JIFdmAbRn5QUspC+C/Jmck15rgQw99ib6qaJU5stAsc8MUof1X2jXp//Q8he2D0vyZHsTLRKx/uRgrYTGksRQHDKKREj2vkJfiERY+rWWljIx9Lam/RCNC4LPtOSAHLXPG6hDFPcCmBu2alxIBylqmMb9/ZAF0efowEw9Sk0ZZLWVerYhCBmVRl8kYCxgDOFEt3Yk4Oq0AHSA4MjOJVuE7jOcO6LTgTMxqJ/MFEpyDmd0EUPo0oJKFMOV8MuKo+c8myOa5iUGipz/1mRLptiPW2q0J+15C6tKyTTY3f/kOI6rQ9Fm+olSz3mzDGIvyfHuOoT8sZuLH54+vIfIBpYqS46052jtht4bcOQ75LT+//Hb7y6iuCcSgVkmWSiqhy3l0Y9d85pEKJOiOrTmPg9qvIHAt2cEWoKS7Iwy4BimXi1BaiYuCILErqbQgQsVICmD6fJk1jhFH3xBdiHdUXUcR5yhpyyisqK2bh2gzoKx6AOfqT3Z0jgPRlNvoif6HcUIpUY7mZENZLlRyiw4wG3ND5l0XJCloNAvTKfg7OosKDm7PuOKDp7xmnQR92i5aqLHJg9kwKVFeU6pl/O93sM8nemW1V7BP7+BFUxEbsxEwBCuoZno6251ijasXvHqRI90V5QtZmMLOgwqV87Z9VmypX1byRtokuBWmzDyE93mGxThnFpIBVdrnRaoOeHMgdmn2vn1/vUZ52TH1GSt6A00IQnfLiGjHGvlk2jwWi0z56g47xuFC6kUN5a1xcHgiQ7JXqvdptoKU6z3FutTYxShDvMh6BfDoK3Zmi+PlJMlnjoHlTAC222GhpYWxpHusFy7ACf0a1N4roQJoxRYSo3NHFhytQrFnFtTgufGudbdgx9r55n1GxiAzBnqc5lRtuOF1J5mZEUicmNL9HHpqxuRiFJqWdalGF41zXbHf95qNy+J8NIrlvREvhuajxFAomkip6uMdrE5XQ9uDmMx3inLBZdKhGLW415yMxgc5+k8CkORy0YbD3NUMuN+daK3VtZMFZV/O+yx+wl6iJSQkUepuiaKDiLhlDLul8+P39/C1zdv/vFyXnhfuWG/v1gsejZPLymT3tiesbO+zVP+ZbqLUMXc6nDJ6dn0Vdh09a69pdC2v9Zs4LztZPDESIi7+zNpK821lQdnmxF8fLwHmfGIyJfdlNhRvY13gVNT++FUof7MiWqhcKh0X4uryxLt+oCwq6BJhPPo6y03TsD079cHshkW/x6PHyCKgNRk3JNtLI5WUW8b3TeDQSJKfI1fXw0GDcvkjP8FTzTQa6VQB2jtuyM1lMZSi5/g2PoU+t/JjLFyJvf19kSzyYVoQfxd9ChW5JtjBTXSPGvJMg7JWmPBpGltLWWwKKRan8M63e2UiFj8Umtfau1LrR3WWpOIknxh+J5ZGRegwzeooei3B6vLzkzXXx2etZr+fOsiyreV7qZWWyWGYhUrqhn2+6vCON8MV5WxvunPOV071wLejpXXISqclIpo1WFmeYOvg53Ht1jWOkN4C493T2P4F3pa4DJEmlXuin47eDs4KpVJT0gcPdxD9DDicqtXdGK56I+KjcR/RXC4lTlKayv98onZYnimhJbsqObkrPHS6gvSw5kvEImk/ef7DkU//DwOQOA+97i58d3FG8D+DW1zPYrH06PnxUFAcG6CNS2+Dv3iJJN1MRCD3tUhlh/uQ0mmpixrHfqynsWDMm7FKVW14zcBkQglU9IuGN2+BnRk7+IO/BQ1wlWPcxyB2LXjmfRFPe2lpuynkW39d6rMtF+i1P1Whevfjn78+P670eW7+9u79093l1e9Qc+/+hBLLpcS9ZYd8eXl8DlhfuqtZrWZS/9jzzYtPj29+n6lUGqumJCJVdtgnsVBgxGJGB592dk5z8c+8SxWqyk6+mhV0/DyrzXZpRg+v2zIQx/KpOP/szWYT2bg/LG9QlzA/9cD0dFktYuoYwJUzV8iEZ9pefwBrnlpElEQZmRD4CPhbQzv5ZjFbQQdPCY1SccxSlOq/AnanQMbd8r19Hr48DTmxtc+ZJUmY16LC34NxEU03oS0h34a1lZCoZ7VOGPaKJN//gSLkYbv 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 2d732822449..511afe5850a 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: eJztWFtv2zYU/isEnzZMkZw27TK9eWnaZeslSNztIckDRR5bbChS5SWOYOi/D4eUHSe2sz50wIA5QGBZPDrfuXwfaZ0F9WzmaHlF31kTWnqTUdOCZV4afSZoSbkF5iEtZtTC1wDO/2pER8sF5UZ70B4vWdsqyeNzxRdnNN5zvIaG4ZXvWqAlNdUX4J5mtLWI4iU4XNWsgTUr563UM5pRAY5b2aJPWtJJDURI1yrWEXyCmCnxNRANczLD+HLa9xn10iv0EkM+idFfpKhp36OBBdca7RL0i9EhfmwiRY9kzhxJFRDEBc7BuWlQqstp9r2Sj0B/QLc9jFvolnku4xhyzZ6Ua2fuLigfV9ejvNMi56wJWrCctTK/hc7lOjQV2J82MxDQWuCITktvA2T/dk5Se5iBpRmdGtswn269Pnomy9jTb8szVWxLnv+NTuH60Wj0HC+5CUoQbTypVnD5tf5gLBABnknlCLNAWmvupABBpI6RLblPKiO6/FrvpnFrTaWg2UqG9ZjG5DxZDrgkFY8wR5JhldCvLt6ekF+OXv1880PtfevKopjP57md8gMQ0hubGzsr7JTjP9r9mJNJDRZIwzrMkgkhEZMp8tAW4lrgcio58SYmOIRNsOIpv+d7mlY3t54V7YKVGzvRmHy+OCNSgPZy2kk924SOz0wZNrSkrDLBl5Vi+pY+9P6f9rsxcaFpmF3R6jFAn1HnmQ9raeyQzcsXW/fS3yaTc5JcEG4EkKmxxNfSLYEwiUZq2YSGlkejUUYbdp++vR6NevSJHf+GTDSB+1YxHan1NB2pSfPA25iY1M4zzb9XZ4yVM/kU9/FpMZD4TcpoqcEdZ8NwChLF+K0jd0xJQVjwNaIm+aAmYxBMuWfOir3I9iL734vs5Sbf3xpbSSFAR3qu9CZdPPKYUmYOYq+rva72utqlq1fbfkCONcEqW+QhWGssMZwHa0GQeS1VdI/vOEvsQXj7H4p7re21tktr/VPf6XUuvalhZcDXBkcprXGRV8zXtKRFXHc0ow7sHVgcwixosIqWdJFE1JdFsaiN8325aI31fXGHHbpjVrJKJV7ichLbkkTKcKbqhLXZTFxYn56cpJdjckwuTi8n5B3zMGddLC5CPnZ9PDoebfWKpjs8js/PSMowUXFte1i6RZ1vdZuMv8Vx399gIXmw0neX+FgqTwXMgh0HLPmKIgNe9I7fkxHNhou3S+L8/tck9h63touHydfpPWvaJMw0uVq92CMhpyYiDXTZjBkbCNalJEf54SY1z8+iwrhpmqDjNqtnZC59TdhaDbgKzmPuGVWSAw4/HgJamr1PK+TPhEgOc+xfItlyd51JX4cq56YphknJ6rNSpioaJnUxQLjiZPzh88c344P3ZyenHy9PDw7zUe7v04AJCd4wvR7HYyk8SnTVDg/3vmgVkxorGINbDCq5ooNKbrKB6Vd0saiYg89W9T3e/hrAdrS8unkQBn7rM1oDE2CjrG5xakNP0gl2MEFcNFcB8Temd322fGLMObT+WdubNYWff7qcII2G8WhjBD5j2RxHp2xOS3pNrynFGSt6iAyN9xdUMT0LbIb2yS/+/Q0Krnl9 +api: eJztWFtv2zYU/isEnzZMkZw27Tq9eWnSZeslSNztIc0DRR5bbChS5SWOYOi/D4eUHSe2szx0wIA5QGBZPDzfuXwfZZ0F9WzmaHlF31kTWnqdUdOCZV4afSZoSbkF5iEtZtTCtwDO/2pER8sF5UZ70B4vWdsqyeO+4qszGu85XkPD8Mp3LdCSmuorcE8z2lpE8RIcrmrWwJqV81bqGc2oAMetbNEnLemkBiKkaxXrCO4gZkp8DUTDnMwwvpz2fUa99Aq9xJCPY/QXKWra92hgwbVGuwT9YnSIH5tI0SOZM0dSBQRxgXNwbhqU6nKafa/kI9Af0G0P4wa6ZZ7LOIZcs0fl2pm7C8rH1fUob7XIOWuCFixnrcxvoHO5Dk0F9qfNDAS0Fjii09LbANm/nZPUHmZgaUanxjbMp1uvj57IMvb0eXmmim3J87/RKVw/Go2e4iU3QQmijSfVCi7/oj8YC0SAZ1I5wiyQ1ppbKUAQqWNkS+6Tyogu/6J307i1plLQbCXDekxjcp4sB1ySikeYI8mwSuhXF6fH5JejVz9f/1B737qyKObzeW6n/ACE9Mbmxs4KO+X4j3Y/5mRSgwXSsA6zZEJIxGSK3LeFuBa4nEpOvIkJDmETrHjK7+meptXNo2dFu2Dlxkk0Jp8vzogUoL2cdlLPNqHjninDhpaUVSb4slJM39D73v/TeTcmLjQNsytaPQToM+o882EtjR2yefli61n622RyTpILwo0AMjWW+Fq6JRAm0Ugtm9DQ8mg0ymjD7tK316NRjz6x48/IRBO4axXTkVqP05GaNPe8jYlJ7TzT/Ht1xlg5k49xHz4tBhK/TRktNbjj2TA8BYli/MaRW6akICz4GlGTfFCTMQim3BPPir3I9iL734vs5SbfT42tpBCgIz1XepMuPvKYUmYOYq+rva72utqlq1fbfkCONcEqW+QhWGssMZwHa0GQeS1VdI/vOEvsQXj7H4p7re21tktr/WPf6XUuvalhZcDXBkcprXGRV8zXtKRFXHc0ow7sLVgcwixosIqWdJFE1JdFsaiN8325aI31fXGLHbplVrJKJV7ichLbkkTKcKbqhLXZTFxYn54cp5dj8oZcnFxOyDvmYc66WFyEfOj6zejNaKtXNN3hcXx+RlKGiYprx8PSLep8q9tk/BzHfX+NheTBSt9d4rZUngqYBTsOWPIVRQa86B2/JyOaDRenS+L8/tck9h6Ptov7ydfJHWvaJMw0uVq92CMhpyYiDXTZjBkbCNalJEf54SY1z8+iwrhpmqDjMatnZC59TdhaDbgKzmPuGVWSAw4/7gNamr1PK+TPhEgOc+xfItnydJ1JX4cq56YphknJ6rNSpioaJnUxQLjiePzh88e344P3Z8cnHy9PDg7zUe7v0oAJCd4wvR7HQyk8SHTVDg93vmgVkxorGINbDCq5ooNKrrOB6Vd0saiYg89W9T3e/hbAdrS8ur4XBn7rM1oDE2CjrG5wakOP0xPsYIK4aK4C4m9M7/psuWPMObT+SdvrNYWff7qcII2G8WhjBO6xbI6jUzanJaU4X8XdkZ3x3oIqpmeBzdA2+cS/vwE3oHiB 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 640dedc138f..71a1e8fea7a 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: eJztWcty2zYU/RXMXbVTmpQT51HuFMdp3caJx5bTha0FCF6JiEGAAUDLGg3/vXMJyqIs+dG0m0zlGY/4uLyvcw4AggvwfOogvYQTXlVST5mtFcI4AlOh5V4afZxDCsIi99jZnJFJBDk6YWVFNpDCYWvBONM4Y2XP2ZWGCCx+q9H5dyafQ7oAYbRH7emQV5WSoo2UfHXkagFOFFhyOvLzCiEFk31F4SGCylJeXqJr3Sguy0+8xJ6p81bq6UZ6owKZ5iUyM2G+QNY+yryhVGNoouDrC1f1M53dkOmD3vR3JdW1LYamCS2TFnMCZ1XoWqJdnHEEXnpFgXoIBUDOQuOhaYJPVxntQvdeDPbpZzOlPnpsxh0L6OfM1UKgc5NaqXlMqXwvjFypzxNIL//XAD+CWUDpHXcIzfh+Uzonf+J8O3zXOL9LuwOujygBt571U8nUyrc2fYxvdB4LXtY65zGvZHyNcxfruszQ/rLD/wfBX2qPU7QQwcTYkvtw6fXB89J7HidCZ3ac+FE48Y/GBLI6GAyeMY0IU6ucaeNZdpfCI1NIZU2msNxCm/U4Q3YaLFmOnkvFAmkYdywYZpgzqdnl2YdD9uvBqzfjnwrvK5cmyWw2i+1E7GEuvbGxsdPETgT9k93PMRsVaKmKOaXM81xSTK7YqvPMVSjkRApiAfW2S5tRL+N24fM4l8PdTcbcybG2coNAQ3ZxdsxkjtrLyZw6vBG6fWbCCaQUeGZqn2aK62tYofoUTYfM1WXJ7R1v1gM0ETjPfd0r44Hh5OWLrRL4fTQ6ZcEFEyZHNjGW+UK6ZSAqopRalnUJ6cFgEEHJb8PZ68GgIZ+E+DMq0QxvK8V1S6375UjNSmOx409bmNTOcy3+K2SMlVN5P+663DsSvw8VLXX1cruuurU0cU4sF90bS7YctcQ8vtInq+Ic47ZN4EbmQRa+dRdGFpaZfB5IuxPlTpQ7UW4X5cG/F+VOYTuF7RT2gMJebVtODjWjLlviIVprLDNC1NZizmaFVK172plYxu7UuJvNdlrbae0hrTURlOgLQ/u7lXEtdbgvIIWkm7n2aOZyEIFDe4PWtW/ntVWQwiLIpUmTZFEY55t0URnrm+SGsLjhVvJMBQbS7SCrJV2UEVwVIeQmbHSj/4J8GLYU2Ft2dnQ+Yr9xjzM+b9tIIdddvx28HWz1SqYPeByeHrNQYSBdbyBYuiVFb3UbjJ/juKG3doeittLPz+mx0J4MuUU7rKnzd2To4rXe6TwYQdQdfFhS5I+/Ri3KNIidrfbYj255WQUJ9rZLVhTr73usruo1q5alE9Mm1XFoszzCGq0L/RjE+5t8PT1uZSdMWda6HXv1lM2kLxjvtUuo2nlqUwRKCqTdpXSxTGhp9jHcYV9CRLYfE9SBj8shdyp9UWexMGXSbUXd/WbKZEnJpU66EC45HJ5cfHo/3Pt4fHj06fxobz8exP427HaSJEqu+3mEhV1/WXe/3t6njSe+iHRAe7z1SaW41NTwtpZFJ8NLWJfhOOqkdAmLRcYdXljVNHT5W412DunleKU8OmsiKJDnaFvdXtPeEByG9PZGFJ7MAwc2tu+baPnEUAis/KO2495Icvr5fEQ87b70lCanZyyf0VcgPoMUruAKgD4wkYdWAu31BSiupzWfkn3wS39/AyK5NO0= +api: eJztWU1z2zYQ/SuYPbVTmpQTJ3F5UxyndRs7HltOD44OILgSEYMAA4CWNRr+984SlEVZsuOmvWQqz3jEj8V+vfdAEFyA51MH6TWc8qqSespsrRDGEZgKLffS6JMcUhAWucfO5oJMIsjRCSsrsoEUjloLxpnGGSt7zj5riMDi1xqdf2vyOaQLEEZ71J4OeVUpKdpIyRdHrhbgRIElpyM/rxBSMNkXFB4iqCzl5SW61o3isjzjJfZMnbdSTzfSGxXINC+RmQnzBbJ2KPOGUo2hiYKvT1zVz3R2S6aPetPflVTXthiaJrRMWswJnFWha4l2ccYReOkVBeohFAC5CI2Hpgk+XWW0C917Mdinn82U+uixGXcsoJ8zVwuBzk1qpeYxpfK9MHKlPk4gvf5fA/wEZgGlt9whNOOHTemc/Inz7fDd4Pw+7Q64PqIE3HrW30qmVr616WN8q/NY8LLWOY95JeMbnLtY12WG9pcd/j8I/lJ7nKKFCCbGltyHS68Pnpfe8zgROrPjxI/CiX80J5DVwWDwjMeIMLXKmTaeZfcpPPEIqazJFJZbaLMeZ8jOgyXL0XOpWCAN444FwwxzJjW7vnh/xH49ePVm/FPhfeXSJJnNZrGdiD3MpTc2Nnaa2Imgf7L7OWajAi1VMaeUeZ5LiskVW3WeuQqFnEhBLKDedmkz6mXcLnye5nK4u8mYeznWVm4QaMiuLk6YzFF7OZlThzdCt2MmnEBKgWem9mmmuL6BFarfoumQubosub3nzXqAJgLnua97ZTwynbx8sVUCv49G5yy4YMLkyCbGMl9ItwxERZRSy7IuIT0YDCIo+V04ez0YNOSTEH9GJZrhXaW4bqn1sBypWWksdvxpC5Paea7Ff4WMsXIqH8Zdl3tH4nehoqWuXm7XVbeWJs6J5aJ7Y8mWo5aYx5/16ao4x7htE7iVeZCFb92FmYVlJp8H0u5EuRPlTpTbRXnw70W5U9hOYTuFPaKwV9uWk0PNqMuWeIjWGsuMELW1mLNZIVXrnnYmlrE7Ne6eZjut7bT2mNaaCEr0haH93cq4ljrcF5BC0j259ujJ5SACh/YWrWvfzmurIIVFkEuTJsmiMM436aIy1jfJLWFxy63kmQoMpNtBVku6KCO4KkLITdjoRv8F+ShsKbBDdnF8OWK/cY8zPm/bSCHXXR8ODgdbvZLpIx6H5ycsVBhI15sIlm5J0VvdBuPnOG7ord2hqK3080saFtqTIbdohzV1/p4MXbzWO50HI4i6g/dLivzx16hFmSaxi9Ue+/EdL6sgwd52yYpi/X2P1VW9ZtWydGLapDoObZZHWKN1oR+DeH+Tr+cnreyEKctat3OvnrKZ9AXjvXYJVTtPbYpASYG0u5QulgktzT6EO+xTiMj2Y4I68HE55U6lL+osFqZMuq2o+99MmSwpudRJF8IlR8PTq7N3w70PJ0fHZ5fHe/vxIPZ3YbeTJFFy3c8jLOz6y7qH9fY+bXzji0gHtMc7n1SKS00Nb2tZdDK8hnUZjqNOStewWGTc4ZVVTUOXv9Zo55Bej1fKo7MmggJ5jrbV7Q3tDcFRSG9vROHJPHBgY/u+iZYjhkJg5Z+0HfdmkvOPlyPiafelpzQ5jbF8Rl+B+AxSAPq4RKNb+rfXFqC4ntZ8SrbBJ/39DWH6M/E= 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 7ff90e1b87c..6218cb1d33a 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: 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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"; -

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,63 +39,496 @@ 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
    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, for example, returned for a process in the\ndeploy resources endpoint. Cannot be used together with processDefinitionId.\n", + type: "string", + }, + }, + title: "ProcessInstanceCreationInstruction", + }, + 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: {}, + }, + }, + }, + }, + "application/vnd.camunda.api.keys.number+json": { + schema: { + deprecated: true, + type: "object", + allOf: [ + { + description: "Base properties for CreateProcessInstanceRequest", + type: "object", + 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, + }, + 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: { + processDefinitionKey: { + description: + "The unique key identifying the process definition, for example, returned for a process in the\ndeploy resources endpoint. Cannot be used together with processDefinitionId.\n", + type: "integer", + format: "int64", + }, + }, + title: "CreateProcessInstanceRequest", + }, + }, + "application/vnd.camunda.api.keys.string+json": { + schema: { + type: "object", + allOf: [ + { + description: "Base properties for CreateProcessInstanceRequest", + type: "object", + 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, + }, + 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: { + processDefinitionKey: { + description: + "The unique key identifying the process definition, for example, returned for a process in the\ndeploy resources endpoint. Cannot be used together with processDefinitionId.\n", + type: "string", + }, + }, + title: "ProcessInstanceCreationInstruction", + }, + }, + }, + }} +> -
    = 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 [
  • ]

Body

required
    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 [
  • ]

Body

required
    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 d94da1d9422..99fe6062a56 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/Ss7e2qnNCUnTprypjp26zYfHltpD7YPILgSEYMAA4CWNRr+984S1EciyfUhnelBmtGIJJa7+3bfA8VdYBBTj9kNXllNeJegrcmJoKy5KDBD6UgE6tYSLMhLp2pexAxPuyUQYGgGzmpKbw0m6OhLQz78aos5ZguU1gQygQ9FXWslO9+Dz559LNDLkirBR2FeE2Zo888kAyZYO84kKPK8akRFG1Y+OGWmWymNS4JC+VqLOfAdYCcQSlpniG2bYFBBsxNGFUFcxZyxbXndka+t8THwi+Ex/2zHYX8wEx5iiQrwjZTk/aTReh5L8Z2wc6Q/ab47jXuaL1EuE4lIk29qtQ+5b3ToFjdTfDBFKkXVmEKkolbpPc19apoqJ/fTdvoF1Y4kx8YsuIaS/xaQMoGm5DDBiXWVCPHS65P9ELt2Pg9krNYOkP+DHvHyyXD4BB+lbXQBxgbIV7HSW/PeOoKCglDag3AEtbMPqqAClOnSWlIecls8Td7a2VxTtZMFmymN4DJa9nEhFg6Eh2iYx+g3V+en8MvJq5/vfihDqH02GMxms9RN5BEVKliXWjcduInkL9v9mMK4JEdQiTmjFEWhOKbQsG4J+JqkmigJwXYA+7SB6x3xPd3PuLq936wY1zi1tf2M4NPVBaiCTFCTuTLT7dDdPRPB/cxQ5LYJWa6Fucd15/9tkxuBb6pKuBWnvg7QJuiDCM0GjD2Kefli5wb6+3h8CdEFSFsQTKyDUCq/DMQgKmVU1VSYnQyHCVbiMZ69Hg5b9skdfwYSA/RYa2E6an0LRxmo1rztgCnjgzDye3XGOjVV38b9+hnRk/htRLSU4L5HQnyMgBby3sOD0KoA0YSSo0b5sCa7JIT26UFkB5EdRLZXZC+3+X5uXa6KgkxHz5XelO8eeUJrO6PioKuDrg662qerV7v+P44McJUd85Ccsw6slI1zVMCsVLpzz+82y9i98A5/FA9aO2htn9baBCsKpeUxSm19Rx0RSsxwwO9qHhP05B7I8fhlgY3TmOEiyqTNBoNFaX1os0VtXWgHD9yDB+GUyHVkHi9HOS1poq0UuoyhttvFC5tDkdP46gtv4Orsegy/iUAzMe/KxyG/dv1m+Ga40yub7vE4uryAiDCSbWMDWLplJe90G42f47ht77iQsnEqzK/5tlienIQjN2q44isS9PE673wejTDpD86X1Pjj73HXXd68rtYDrbNHUdVRenEgtXpxZ8pNbBepJ8R2ztxAcj6CHKbH2+S7vOg0JG1VNabbSM0UZiqUIDZqIHXjA2NPUCtJPNpYJ7Q0exdX4K8YEY5T7l8k2XL/nKpQNnkqbTXo5yCr31zbfFAJZQZ9CD84Hb3/9OHt6OjdxenZh+uzo+N0mIbHODtiflfCbOYRp4Nux+RwYyi4b4jYtyvQYxjUWijDFe6SX/QiusEoorukF8INLha58PTJ6bbly18acnPMbu7WuuGzNsGSREGuU909z2zwNOZzNOawbK4bDr81tGuT5R0jKakOT9rebej/8uP1mFnWD0UrW/A9Tsx4YCpmmOEt3iLy9JU9xJESX1+gFmbaiCnbR7/8+Qd3+H77 +api: eJztWE1z2zYQ/Ss7OLVTmpQTN015Ux2ndZukHltpD44PS3AlIgYBBgAtazT8750lqI9EkptDOtODPOMRKSx29+2+B4q7FAFnXuS34tpqEneJsA05DMqay1LkQjrCQP1aIkry0qmGF0UuzvslQDA0B2c1pR+MSISjTy358IstFyJfCmlNIBP4EptGK9n7zj569rEUXlZUI1+FRUMiF7b4SDKIRDSOMwmKPK8arGnLygenzGwnpUlFUCrfaFwA7wA7hVDRJkPRdYkIKmh2wqgiiOuYs+g6XnfkG2t8DPxsdMofu3HYH8zRQyxRCb6VkryftlovYim+EXaO9Act9qdxT4sVylUiEWnyRa0OIfetDv3idooPpkwl1q0pMcVGpfe08Klp64LcD7vpl9Q4khxb5MG1lPy3gJQJNCMnEjG1rsYQv3pxdhhi386vAxmrtQfk/6BHvHw2Gj3BR2lbXYKxAYp1rPSDeWsdQUkBlfaAjqBx9kGVVIIyfVorykNhy6fJ2zhbaKr3smA7pTFcRcshLsTCAXqIhkWMfnv9+hx+Pvvxp7vvqhAan2fZfD5P3VSeUKmCdal1s8xNJf+z3fcpTCpyBDUuGCWWpeKYqGHTEvANSTVVEoLtAQ5pA9c74nu6n3F197xZM651auf4GcP760tQJZmgpgtlZruh+z1T5H7mAgvbhrzQaO7FpvP/dsiNwbd1jW7Nqc8DdInwAUO7BeOAYp4/23uA/jaZXEF0AdKWBFPrIFTKrwIxiFoZVbe1yM9Go0TU+BjvXoxGHfvkjn8FEgP02Gg0PbW+hKMM1Bve9sCU8QGN/FadsU7N1JdxP39GDCR+FRGtJHjokRAfI6BR3nt4QK1KwDZUHDXKhzXZJ4Hap0eRHUV2FNlBkT3f5ftr6wpVlmR6eq71pnz/yEOt7ZzKo66Oujrq6pCuftz3+3FsgKvsmIfknHVgpWydoxLmldK9e363WcUehHf8oXjU2lFrh7TWJaKmUFkeozTW99TBUIlcZPyu5kUiPLkHcjx+WYrWaZGLZZRJl2fZsrI+dPmysS502QP34AGdwkJH5vFylNOKJtpK1FUMtdsuXtgeipzHV194CdcXNxP4FQPNcdGXj0N+7vrl6OVor1c2PeBxfHUJEWEk29YBsHLLSt7rNhp/jeOuu+NCytapsLjhbbE8BaEjN2654msSDPF673wfjUQyXLxeUeP3vyd9d/nwut4MtC4esW6i9OJAav3izpSb2j7SQIjdnLmB5HwEOUpPd8l3ddlrSNq6bk1/kJoZzFWoALdqIHXrA2NPhFaSeLSxSWhl9iauwF8xIpym3L9IstX5OVOhaotU2job5iDrz0LbIqtRmWwI4bPz8dv3716NT95cnl+8u7k4OU1HaXiMsyPmd41mO484HXR7JodbQ8FDQ8ShXYEeQ9ZoVIYr3Ce/HER0K6KI7pJBCLdiuSzQ03unu46//tSSW4j89m6jG77rElERluR61d3zzEacx3xOJhyWzXXL4XeGdl2y2jGWkprwpO3dlv6v/ryZMMuGoWhtS97jcM4DU5yLXAievPLuOE7i75ZCo5m1OGPb6JP//gGO8n3/ 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 67599841cab..e2fba11d876 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,264 @@ description: "Creates a new tenant." sidebar_label: "Create tenant" hide_title: true hide_table_of_contents: true -api: eJztWF1T4zYU/St39NROTRx22Zb6LQW2pd1SBkL7ADzI8k2sXVnySjIhk/F/71zJTgIOlId96oQZJrZ1db/OOYpzV8zzuWPZLZui5tqz+4SZGi330ujzgmVMWOQeu9WEFeiElTUts4ydhEUHHDQuwAejEUuYxa8NOv+LKZYsWzFhtEft6ZLXtZIiuE8/O3KyYk6UWHG68ssaWcZM/hkFRastJeMlurAa/FNWa0vnrdTzQV7TEqHR8muDgI8ereaqyw7OT1mbMM0rfJsbsgQzA1/iusD2meFb/Gw9GbhrY8ekxYKgWNfZ5XmfMC+9ogARh9j2q9hk1j7d722D4YGrjXaxc+/Gh/QxzKpryoI7iEAX4Boh0LlZo9SSsPym4P2By92JdGi5pfNYHcxREwexAKmfw0c5PW13m/yvqbEbe9eoAH2bsKPxeHdTa2seZIEFFNxzkA608fDAlSxeAba2JldY/TAE+GmACVxGSyjQc6kgAg/cdQXlAT64vfp4Aj8fffjp/rvS+9plabpYLEZ2Jg6wkN7YkbHz1M4E/ZPd9yOYlmgRKr6EHIEXhaSYXMGGUuBqFHImBXgTOtalDdTu0Z3ekOQlPobVITwzYyvuWcYaKwdoTeDm6hxkgdrL2VLq+TB02DPjhE7GeG4an+WK6y9sg+R/cWICrqkqbpc9G54GaBPmPPfNVhmMZDJHu52/1P79u518+206vYToAoQpEGbGgi+l6wNREZXUsmoqlh2Nxwmr+GO8+3E8DhQnxN9QiQZ8rBXXfJvcfTlSQ2UsdvwJhUntPNfiWyFjrJzL53Gfqqoj8WmsqBfU+yHfPxqby6JAHegJ3VdcryqulFngXld7Xe119YqujoZ8vzAeZqbRRa8rZxorMLyT6PXaXld7Xe119YKuPux6AZzozcszWmssGCEaa7GARSlVcE8v+n3s7gstcnGvtb3W9lobaq1NWIW+NDQZqY0L1OG+ZBlL4082xxLm0D6gpanKijVWsYytolDaLE1XpXG+zVa1sb5NHwiFB24lz1XkHi1HQfVEUUZwVcZgQ8BoYfuH6AmvGl1wOIars+sp/Mo9LvgyNJBCPnV9PD4e7/RKpi94nFyeQ6ww0m3rCOjdkpZ3uo3Gb3HctvfUSNFY6ZfXtC22J0du0U4a6vmaBl284J3uoxFLuouPPTl+/2ca8KXj62ozojp75FXdiW89R9hwKw4EXqLxZgYh9cwEHx17huUR1mhd3DgeHQ6ZenkeBCdMVTU6nLp6DgvpS+Bb7RKqcZ7alDAlBWoXcu/y7M0+xRX4O0aEwxFBHfnYH7Zz6csmHwlTpSJuW3/myuRpxaVOuxAuPZn8eXNxOjn4dH5ydnF9dnA4Go/8ow8tJTFUXG/nEQYV3STjeaVbM8EXh4gduB4ffVorLjU1OeS/6kTXj8ocjciicG7ZapVzhzdWtS09/tqgXbLs9n6jM7prE1YiL9AGlX6hsRQ7iSkdTCkwmauGEhhMvdqk3zERAmv/qu391olx+df1lFjZjUUrU9Aeyxc0MuULlrE7dscYjWDJQyB8eL5iiut5w+dkH/3S379xRn+o +api: eJztWE1v4zYQ/SsDnlpUsZzdbJvq5uajTbubBonTHtIcKGpscZcitSQVxzD034shJduJnDSHPRUOEFgSh/P13qPlWTHP545ld2yKmmvP7hNmarTcS6MvCpYxYZF77FYTVqATVta0zDJ2EhYdcNC4AB+MRixhFr826PwvpliybMWE0R61p0te10qK4D797MjJijlRYsXpyi9rZBkz+WcUFK22lIyX6MJq8E9ZrS2dt1LPB3lNS4RGy68NAj56tJqrLju4OGVtwjSv8G1uyBLMDHyJ6wLbZ4Zv8bP1ZOCujR2TFguCYl1nl+d9wrz0igJEHGLbr2OTWft0v7cNhgeuNtrFzr0bH9LHMKuuKQvuIAJdgGuEQOdmjVJLwvKbgvcHLncn0qHlls5jdTBHTRzEAqR+Dh/l9LTdbfK/psZu7F2jAvRtwo7G491Nra15kAUWUHDPQTrQxsMDV7J4Bdjamlxh9cMQ4KcBJnAVLaFAz6WCCDxw1xWUB/jg7vr8BH4++vDT/Xel97XL0nSxWIzsTBxgIb2xI2PnqZ0J+ie770cwLdEiVHwJOQIvCkkxuYINpcDVKORMCvAmdKxLG6jdo3/0hiQv8TGsDuGZGVtxzzLWWDlAawK31xcgC9RezpZSz4ehw54ZJ3QyxnPT+CxXXH9hGyT/ixMTcE1Vcbvs2fA0QJsw57lvtspgJJM52u38pfbv3+3k22/T6RVEFyBMgTAzFnwpXR+IiqikllVTsexoPE5YxR/j3Y/jcaA4If6GSjTgY6245tvk7suRGipjseNPKExq57kW3woZY+VcPo/7VFUdiU9jRb2g3g/5fm5sLosCdaAndF9xvaq4UmaBe13tdbXX1Su6Ohry/dJ4mJlGF72unGmswPBOotdre13tdbXX1Qu6+rDrBXCiNy/PaK2xYIRorMUCFqVUwT296Pexuy+0yMW91vZa22ttqLU2YRX60tBkpDYuUIf7kmUsjT/ZHEuYQ/uAlqYqK9ZYxTK2ikJpszRdlcb5NlvVxvo2fSAUHriVPFeRe7QcBdUTRRnBVRmDDQGjhe0foie8anTB4Riuz26m8Cv3uODL0EAK+dT18fh4vNMrmb7gcXJ1AbHCSLetI6B3S1re6TYav8Vx295TI0VjpV/e0LbYnhy5RTtpqOdrGnTxgne6j0Ys6S7Oe3L8/vc04EvH1/VmRHX2yKu6E996jrDhVhwIvETjzQxC6pkJPjr2DMsjrNG6uHE8Ohwy9eoiCE6Yqmp0OHX1HBbSl8C32iVU4zy1KWFKCtQu5N7l2Zt9jCvwV4wIhyOCOvKxP2zn0pdNPhKmSkXctv7MlcnTikuddiFcejL5dHt5Ojn4eHFydnlzdnA4Go/8ow8tJTFUXG/nEQYV3STjeaVbM8EXh4gduB4ffVorLjU1OeS/6kTXj8ocjciicO7YapVzh7dWtS09/tqgXbLs7n6jM7prE1YiL9AGlX6hsRQ7iSkdTCkwmauGEhhMvdqk3zERAmv/qu391olx9efNlFjZjUUrU9Aeyxc0MuULljFG41faHcgenq2Y4nre8DnZRp/09y+FjH6s 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
- -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 219a15b1881..e5d941e0a63 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,383 @@ description: "Create a new user." sidebar_label: "Create user" hide_title: true hide_table_of_contents: true -api: eJztWd9v2zYQ/lcIPm2YIjlt2rV6c9N0y9YfQeJsD0keTtLZYkORKknZMQz978ORUuzEdhMMwzAMCmBE4pF3PH7fR9PHFXcwszy94pcWDb+JuK7RgBNanRY85blBcOhtES/Q5kbUZOQpP/YmBkzhgjUWTcwjbvBbg9a908WSpyuea+VQOXqEupYi956Tr5Y8rLjNS6yAntyyRp5ynX3F3PGI14bm4QRastZg7UKbgp4fTmJSIuutTE+ZK/F+Lp1P64xQM95GnAwKKtztprc+6Wa/i2cNxwqE3D3em55w0EbcCSepiWA5DwvOWzLQ6guDBU+dadA32ForG1bxxehwf+ZsAZYFtAtmmzxHa6eNlMv4WvHo7wMJUn6Z8vTqKYj/j9gEhbwDi7y92ZXw77jcHewWl32oHpMmaPA5Ec/RNtJ54yZYc1XEOVSNKiCGWsS3uLSxaqoMzU/bQBZYG8wpdGBTNED770ArlMOZb5hqU4ELTa+P9oPtJf48uEM6O+AewP0P6ZbMR6PRdoxLBZlE5nTnfp3UtfqkDbICHQhpGRhktdFzUWDBhPL9+i8Dluni+9t6bXQmsdq5K2xOZ8zOQs8uLgskYWBZ6JiF6FfnH47Z26NXP9/8UDpX2zRJFotFbKb5ARbCaRNrM0vMNKcP9fsxZpMSDbIKlixDBkUhKCZItkaD2RpzMRU5rQcl2E2b0VqH/L7P3WBdPcJmQ3eNEVvHnjG7PD9lokDlxHQp1Gw7tB8zBcIy5ZDpxqWZBHXL16hvB30cxTZVBeaeTg8DtBG3DlyzkcaefePliy3fRNRfJ5MzFlywXBfIptowVwrbB6IkKqFE1VQ8PRqNIl7BXXh7PRq15NN1mnsiE8XwrpagPLUepyMUq9a89YkJZR2o/J9CRhsxE4/jxg8U2JH4fciol9+ew1J3wmUS8lvL5iBFwaBxJUUN8iFt+kmAtPEgskFkg8j2iuzlNt8/aJOJokDl6XmvN2GZ0o6BlHqBxaCrQVeDrvbr6u0uvoff+cKV3ttMzFGtT+ggDUKxZHgnrLPD8XBQ2KCw/Qp7tevX2VgxWmVDPERjtGE6zxtjsGCLUkjvnupqfezuq23Q2qC1QWv7tNZGvEJXarqNqLX11AFX8pQn9N1lecQtmjk9UbWqMZKnfBVk0qZJsiq1dW26qrVxbTInDOZgBNVRPGRkDnLqaSJ1DrIMobbhIsNmTeo4lNjYG3Z+cjFhv4DDBSz98lHIh67fjN6Mdnqlrns8js9OWcgwkG1jA+jdkpJ3ug2dn+O4pUqXxbwxwi0vaFhYngzBoBk3tOL3JOjiee/0HjrxqHv40FPjtz8nHl3avM7XN0Mnd1DVQXrrm501s9YlxXXb4/eu4LdRAhRqqv0UOyZtJ0vIo7FhdUbx4TZrz069+HJdVY3yO7CahQMTbCxeLhvrQh1Rihyp9pqu+hn23T4GC/sjRGSHMQEf2NlvvDPhyiaLc10lXaH2/n8mdZZUIFTShbDJ8fjT5ef344OPp8cnny9ODg7jUezuQpmfhFGB2pxHqA82O27uNq7ldl/idSg7vHNJLUEof3lmZACMmHDFg/Zuok4/V3y1ysDipZFtS83fGjRLnl7drOVGb23ES4QCjRfrLdVR+XGYzcGEwlJ32VD4rXumNupHjPMca/fdvjcb28bZl4sJkbO7lKx0QWMMLOjCEhY85df8mnO6+yQPnve+fcUlqFkDM+of/NLfX0tJFHM= +api: eJztWd9v2zYQ/lcIPm2YIjlt2qV6c9N0y9YfQeJsD2keTtLZYkORKknZMQz978ORUuzEdhMMwzAMCmBE4pF3PH7fR9PHFXcwszy95lcWDb+JuK7RgBNanRU85blBcOhtES/Q5kbUZOQpP/EmBkzhgjUWTcwjbvBbg9a91cWSpyuea+VQOXqEupYi956Tr5Y8rLjNS6yAntyyRp5ynX3F3PGI14bm4QRastZg7UKbgp4fTmJSIuutTE+ZK/F+Lp1P64xQM95GnAwKKtztprc+6Wa/i2cNxwqE3D3em55w0EbcCSepiWC5CAvOWzLQ6guDBU+dadA32ForG1bxxehwf+ZsAZYFtAtmmzxHa6eNlMv4i+LR3wcSpPw85en1UxD/H7EJCnkLFnl7syvh33G5O9gtLvtQPSZN0OBzIl6gbaTzxk2w5qqIc6gaVUAMtYhvcWlj1VQZmp+2gSywNphT6MCmaID234FWKIcz3zDVpgIXml4f7QfbS/x5cId0dsA9gPsf0i2Zj0aj7RhXCjKJzOnO/TqpL+qjNsgKdCCkZWCQ1UbPRYEFE8r3678MWKaL72/rtdGZxGrnrrA5nTE7Dz27uCyQhIFloWMWol9fvD9hb45e/XzzQ+lcbdMkWSwWsZnmB1gIp02szSwx05w+1O/HmE1KNMgqWLIMGRSFoJgg2RoNZmvMxVTktB6UYDdtRmsd8vs+d4N19QibDd01Rmwde8bs6uKMiQKVE9OlULPt0H7MFAjLlEOmG5dmEtQtX6O+HfRxFNtUFZh7Oj0M0EbcOnDNRhp79o2XL7Z8E1F/nUzOWXDBcl0gm2rDXClsH4iSqIQSVVPx9Gg0ingFd+Ht9WjUkk/Xae6JTBTDu1qC8tR6nI5QrFrz1icmlHWg8n8KGW3ETDyOGz9QYEfidyGjXn57DkvdCZdJyG8tm4MUBYPGlRQ1yIe06ScB0saDyAaRDSLbK7KX23x/r00migKVp+e93oRlSjsGUuoFFoOuBl0Nutqvqze7+B5+5wtXem8zMUe1PqGDNAjFkuGdsM4Ox8NBYYPC9ivs1a5fZ2PFaJUN8RCN0YbpPG+MwYItSiG9e6qr9bG7r7ZBa4PWBq3t01ob8Qpdqek2otbWUwdcyVOe0HeX5RG3aOb0RNWqxkie8lWQSZsmyarU1rXpqtbGtcmcMJiDEVRH8ZCROcipp4nUOcgyhNqGiwybNamTUGJjx+zi9HLCfgGHC1j65aOQD10fj45HO71S1z0ex+dnLGQYyLaxAfRuSck73YbOz3HcUqXLYt4Y4ZaXNCwsT4Zg0IwbWvF7EnTxvHd6D5141D2876nx258Tjy5tXhfrm6HTO6jqIL31zc6aWeuS4rrt8XtX8NsoAQo11X6KHZO2kyXk0diwOqP4cJu152defLmuqkb5HVjNwoEJNhYvl411oY4oRY5Ue01X/Qz7bh+Chf0RIrLDmIAP7Ow33plwZZPFua6SrlB7/z+TOksqECrpQtjkZPzx6tO78cGHs5PTT5enB4fxKHZ3ocxPwqhAbc4j1AebHTd3G9dyuy/xOpQd3rmkliCUvzwzMgBGTLjmQXs3Uaefa75aZWDxysi2peZvDZolT69v1nKjtzbiJUKBxov1luqo/CTM5mBCYam7bCj81j1TG/UjxnmOtftu35uNbeP88+WEyNldSla6oDEGFnRhCQueck73njTac963rbgENWtgRn2DT/r7CwyBE3c= 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-authorization.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-authorization.api.mdx index af97763b8c7..300bdbb8771 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/delete-authorization.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/delete-authorization.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 authorization

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

Path Parameters

+ -The authorization 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 authorization with the authorizationKey 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-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 f63a4beccdc..e709cb553c6 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 9bf0d3b5c07..59515cf88f5 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 286164203fc..c74e6f5a259 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/leIe2oxRXK6tOv0MMBL0y1b2wWOuz0kAUpLJ4stRaokFUcw9L8PR0ryrxjrw16GJYARSzze8b77vjPJNTi+tJDewAytbkyGcBeBrtFwJ7S6zCGFHCU6HMcjyNFmRtRkACm88cOWcZZjLXWLOTO9bXyr5qWwLOOKLZBxVhudobUsx0IoQQ4ilmMmrNCKGfzaCIMVKrdroQ0rtKm23t2qMVZjhVoyV2IffgxuGaq81kK5mF3XmImi9WbDOGt1w1ZcOeY0CzkyobzJp8Hmd2w/sZobXqFDE98qiGB8JNjWoHiFkMLWDIhAEDA1dyVE0KeVQ+pMg/vozUtkX7Bluthd3LimPQzdxv5xOHcMHsWWwBvsCdudGQdAQwQ2K7HikK7BtTUla50RaglddxfSQ+t+1nlLFptsCy4tRpBp5VA5GuN1LUXmiZV8tpT++tC3XnzGzEEEqpGSLyQOuNWGaOkEWrIeKTrDAg2qDOntLrZTZoZBn2BWaouKLQIPGouUO3dsJaQkbGtunEdBSmYw0ya3VJBGOqJYYXTFHJVijB3fqveNdTT3JzZhoqCK3Isc80CVPiWhHC7RQASELnfh1asziKASSlRNBelp10XghKN8e0kNipsFhKHryMagrbWyAYUXk8lh2vNtHgnb8yiPoYvg7NiEYeEs547TLKUdu+dS5DEcLWJt9EJi9d1hMfcLcRUsWY6OC8lCkRmnxZHhAnPS3s3s7Tn78ezlD3fPSudqmybJarWKTZGdYC6cNrE2y8QUGX3I7nnM5iUaZBVvfYfJc09bLtmGLsx69YuMROVCrn4xVJ6dQo3c2+VaGN1n/1Y1GyMO2uKUfZxdMpGjcqJohx61E9rPKXgjyQdf6MalC8nVF9hQ4TDofhTbVBU3YwPZDdBFYB13zVYaR9j4/YsD30SLX+fzKxZcsEznSP0hiKAPFG+T+GwyiaDiD+Hp1WTSkU+q+Ddkohg+1JIrHvrSbjpCsUob7PnjExPKOt7r/l+ojDZiKfbjxrAty57Eb0JGQY5nk7N/ViBpqdCNetLSk5aetHRUSy8f+3GaKkYoG+IhGqMN01nWGIM5W5VC4rAJGmL3+5HAxSetPWntSWuHWusiqNCVmo53tbaeOnRaSSEZj0/JeutM0yV+F0kLicCiuR+OP42RkMI6KKhLk2Rdauu6dF1r47rknspzz42gnbyvJg0HpQ0MkjrjsgyrOKwkDdAZa8jwnFeNyjl7zWYX13P2C3e44q1HlkLuun49eT151CuZHvE4vbpkIcPAw63eMLglkT/qNhh/i2N/drKYNUa49pqmBXgWyA2aaUPFGPnRx/Pe6TkYQdR/eTuw5re/5r7w1Ndmm3PZxQOv6qDKx45NE0/KQvuAPWUOl051RGNDrpP49JCeV5deZZmuqkb5VquWbCVcyfgWFJlsLJ2lIQIpMlTWr6s/RQ9m78II+zNEZKcxlTFwbeiwS+HKZhFnukqyMG38v5B6kVRcqKQPYZPz6fuPH95MT95dnl98uL44OY0nsXtwHi5SQMXV1jrCAWzcw+3nut78sPzvrj96Sjp8cEktuVAkEl+Zdd9DbsbLEAsRpLs3I2MbuYv6VnAD6/WCW/xoZNfR668NmhbSm7tN5/CtJheWvm+uFo7W5Nmsv4V4zv4L9yuPQtq/5Kr1HVQ29AQRfMF277qpu+siKJHnaDxOweI8oHEyJz8bDwd3MF00zJhmGdbuiO3Olol61/j7cfXH9ZxaUX8BVOnc34fxFd198RWkcAu3tHLtK+W7nH+/BsnVsuFLsg9+6e9vU6MrCQ== +api: eJztWN9v2zYQ/leIe2oxRXK6tOv0MMBL0y1b2wWOuz0kAUpLJ4stRaokFUcw9L8PR0ryrxjrw16GJYARSzze8b77vjPJNTi+tJDewAytbkyGcBeBrtFwJ7S6zCGFHCU6HMcjyNFmRtRkACm88cOWcZZjLXWLOTO9bXyr5qWwLOOKLZBxVhudobUsx0IoQQ4ilmMmrNCKGfzaCIMVKrdroQ0rtKm23t2qMVZjhVoyV2IffgxuGaq81kK5mF3XmImi9WbDOGt1w1ZcOeY0CzkyobzJp8Hmd2w/sZobXqFDE98qiGB8JNjWoHiFkMLWDIhAEDA1dyVE0KeVQ+pMg/vozUtkX7Bluthd3LimPQzdxv5xOHcMHsWWwBvsCdudGQdAQwQ2K7HikK7BtTUla50RaglddxfSQ+t+1nlLFptsCy4tRpBp5VA5GuN1LUXmiZV8tpT++tC3XnzGzEEEqpGSLyQOuNWGaOkEWrIeKTrDAg2qDOntLrZTZoZBn2BWaouKLQIPGouUO3dsJaQkbGtunEdBSmYw0ya3VJBGOqJYYXTFHJVijB3fqveNdTT3JzZhoqCK3Isc80CVPiWhHC7RQASELnfh1asziKASSlRNBelp10XghKN8e0kNipsFhKHryMagrbWyAYUXk8lh2vNtHgnb8yiPoYvg7NiEYeEs547TLKUdu+dS5DEcLWJt9EJi9d1hMfcLcRUsWY6OC8lCkRmnxZHhAnPS3s3s7Tn78ezlD3fPSudqmybJarWKTZGdYC6cNrE2y8QUGX3I7nnM5iUaZBVvfYfJc09bLtmGLsx69YuMROVCrn4xVJ6dQo3c2+VaGN1n/1Y1GyMO2uKUfZxdMpGjcqJohx61E9rPKXgjyQdf6MalC8nVF9hQ4TDofhTbVBU3YwPZDdBFYB13zVYaR9j4/YsD30SLX+fzKxZcsEznSP0hiKAPFG+T+GwyiaDiD+Hp1WTSkU+q+Ddkohg+1JIrHvrSbjpCsUob7PnjExPKOt7r/l+ojDZiKfbjxrAty57Eb0JGQY5nk7N/ViBpqdCNetLSk5aetHRUSy8f+3GaKkYoG+IhGqMN01nWGIM5W5VC4rAJGmL3+5HAxSetPWntSWuHWusiqNCVmo53tbaeOnRaSSEZj0/JeutM0yV+F0kLicCiuR+OP42RkMI6KKhLk2Rdauu6dF1r47rknspzz42gnbyvJg0HpQ0MkjrjsgyrOKwkDdAZa8jwnFeNyjl7zWYX13P2C3e44q1HlkLuun49eT151CuZHvE4vbpkIcPAw63eMLglkT/qNhh/i2N/drKYNUa49pqmBXgWyA2aaUPFGPnRx/Pe6TkYQdR/eTuw5re/5r7w1Ndmm3PZxQOv6qDKx45NE0/KQvuAPWUOl051RGNDrpP49JCeV5deZZmuqkb5VquWbCVcyfgWFJlsLJ2lIQIpMlTWr6s/RQ9m78II+zNEZKcxlTFwbeiwS+HKZhFnukqyMG38v5B6kVRcqKQPYZPz6fuPH95MT95dnl98uL44OY0nsXtwHi5SQMXV1jrCAWzcw+3nut78sPzvrj96Sjp8cEktuVAkEl+Zdd9DbsbLEAsRpLs3I2MbuYv6VnAD6/WCW/xoZNfR668NmhbSm7tN5/CtJheWvm+uFo7W5Nmsv4V4zv4L9yuPQtq/5Kr1HVQ29AQRfMF277qpu+siKJHnaDxOweI8oHEyJz8bDwd3MF00zJhmGdbuiO3Olol61/j7cfXH9ZxaUX8BVOnc34fxFd198VVYtfZV8h3Ov1uD5GrZ8CXZBp/09ze6dCoN 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 686c022948c..c1b87134245 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 98e856d6575..151459fb210 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,45 +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 af00d7f00fd..e51cb374de9 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 f41ff8627e4..c70d0a5b57f 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,46 +37,896 @@ 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
    variables object
    + -The message variables as JSON document. + -

Body

required
    variables object
    - -The message variables as JSON document. - -

Body

required
    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 [
  • ]
Schema
    evaluatedDecisions object[]
    - -Decisions that were evaluated within the requested decision evaluation. - -
  • Array [
  • ]
Schema
    evaluatedDecisions object[]
    - -Decisions that were evaluated within the requested 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 9c448077873..bcd3535ff21 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: eJztWEtz2zYQ/is7uDSZMpLSum3Km+smrdMm8dhOe3B8WJJLETYIsABomaPhf+8sQOptN4ce5RmNSWKxz+9bErsUHudOpDfivcnEbSJMQxa9NPq8EKkoUSpeSERBLrey4RWRig9o78FXBHcmA3TAclR80SIRDVqsyZNlrUuhsSaRijuT/UGdSITk7Q36SiTC0j+ttFSI1NuWdm1cVwT31IEpV5a8CZYmIhEur6hGkS6F7xq24LyVei76/jYqJud/MUXHEms7JSpHiciN9qQ9r2HTKJmHiKd3jg0v93Wb7I5yz8FZzo+X5KJeb4fLfdexNq327P0gtorCVaZVBVT4QKCo9CFtgyWpPc3JikSUxtbo46PvvwsVKLFVXqSzPhFkrbEfyDmc0779Uw0mXKOCOgpBlMiknsOi6lbOxMpN4LqSDqSDBq2XeavQqg5aR2WrQJaAQdi22oFpt6JCXQBqkDqXBWnPOixKR0XCwPCsdnQhRw0VqQbosVEodXBkc+8Cx82TzaQMpU2EbpXCTFEETJ+ECnS/YH7/qSwPlyHD/N6UJXhZE3v+Qmqo3UsojQ050PToQyzd5L/r8OPJbh0e0Er2KIAAi0LGrF9s4OQQtt9fffoIEVXgK/SwkEqB1M6j9hI9Bd9WygF9eKBMjgpcbhraoMU3DtA5k/O+Ajy6+61QVuDdyV6fCC893zL336FUl5E2ou/7kFvXGO1iaN/NTg7nl2EhxwYwEX0iTmazw6KNNQ+yoAIK9MibtPHwgEoO1X6ClY01maL623127oAeLqIkFORRqjG/6EbsUwFSw83luzP4+eSHn25fVN43Lp1OF4vFxJb5KyqkN3Zi7Hxqy5x/LPeS2UGWoMYOMoJ1mWHdD8A1lMtS5tykfIw2OMNVOFyP7WYSV3fb2Qb+Wiv3+vApfL48h0AeWXbM7T3Tm4gVmJnWp5lCfS/W9d83umvFtXWNdtWLtw30iXAefbsRxvN9bBcYv19fX0BUAbkpaCAnd6NoiIOopZZ1W4v0ZDZLRI2P8e7HGdMwVvwrItGx9+gArd1wuDUYSwN+QmCRkvn/VRlj5Vzu2p2ITS4OIP41RhSpePIc+xbSV0HdXD6QhvimHelVmlYf6XWk15Fez9Lr56+m133kltTh2cIaPQ+5Jchba0l71U3gwzpMB2g3Xn3DvvHdCpkpuiM9j/Q80vNpev5w6IPylI8NnizjMByGwOSBgQUsKqmC+pycG20PR8Ij145cO3LtKa71iajJV4ZHP41xATo8qknF9M5kbrqMH5f9lI97rSWew5B9GGc9rVUiFctImz6dTpeVcb5Pl42xvp8+cE22Dsy8HOk1wiaccKtoer98vMADpTGsM6xbXSC8gcu3V9fwG3paYBfSySa3Vb+ZvZkd1MqiT2g8vTiHGGEE30ZDGNUysw+qjcJfozjMrBzlrZW+u+JtMT0ZoSV72nIFVqAY7AXtfB+FRDJcvBuh8v7v61BtbmaX63nY20esm0jF1fhqtjtPWiNve8Ay265fH2BbmuDdAKr9OLnoZF1MzGzyeh/AF+eBh7mp61aHZsxDKv7uwo285ap1nvOVCCVz0i4EMcwXR7E/4wr8FS3C6wnXPAJz7MFz6as2m+SmnuZx2+p/pkw2rVHq6WDCTc9OP3z++Ovpqz/Pz95+vHr76vVkNvGPPuSWOVKj3vCDxyj82bgb5HL9znlueDrU2NOjn4YRGaMueL8cmHjDo1QnEpGuRqojGW+TgVA3YrnM0NFnq/qeH//Tku1EenO7rl8gbCEdX68Ho0/6/OJymKG+hOfnsgcjGB6i7kIHUC3fiUTcU7eeDfe3fSIqwoJscC4unkUXXl2zivXmvbFtn4w7TvOcGv+E7NYrnmm36ncXn66umUXDzLg2Be+1uGAW4EKk4ov4wk7HyWocAPPzpVCo520kTtTLf/8CiT0LjQ== +api: eJztWEtz2zYQ/is7uDSZ0pKSOmmim+MkrdM8PLbTHlwfluRShA0CLABa5mj43zsLkHrbzaFHeUZjkljs8/uWxC6Ex5kT02vxyaTiJhGmJoteGn2Wi6koUCpeSEROLrOy5hUxFV/Q3oEvCW5NCuiA5Sj/W4tE1GixIk+WtS6ExorEVNya9A9qRSIkb6/RlyIRlv5ppKVcTL1taNvGVUlwRy2YYmnJm2BpJBLhspIqFNOF8G3NFpy3Us9E191ExeT8O5O3LLGyU6BylIjMaE/a8xrWtZJZiHh869jwYle3SW8p8xyc5fx4SS7q9ba/3HUdK9Noz973YssoXGkalUOJ9wSKCh/S1luS2tOMrEhEYWyFPj765WWoQIGN8mI66RJB1hr7hZzDGe3aP9FgwjUqqKIQRIlU6hnMy3bpTKzcCK5K6UA6qNF6mTUKrWqhcVQ0CmQBGIRtox2YZiMq1DmgBqkzmZP2rMOidJQnDAzPagcXMtRQkqqBHmqFUgdH1vfOcdg8Wk9KX9pE6EYpTBVFwHRJqED7DrO7b0WxvwwpZnemKMDLitjzZ1JD5Z5DYWzIgaYHH2JpR/9dh9fH23W4RyvZowACzHMZs36+hpN92P50+e0rRFSBL9HDXCoFUjuP2kv0FHxbKgf04YEyGSpwmalpjRY/OUDnTMb7cvDo7jZCWYJ3K3tdIrz0fMvc/4hSXUTaiK7rQm5dbbSLob2cHO/PL8NCDg1gJLpEHE8m+0Vra+5lTjnk6JE3aePhHpXsq/0IK2trUkXVz7vs3AI9nEdJyMmjVEN+0Q3YpxykhuuLj6fw9vjVrzfPSu9rNx2P5/P5yBbZEeXSGzsydja2RcY/lnvO7CBLUGELKcGqzLDqB+BqymQhM25SPkYbnOEq7K/HZjOJq9vtbA1/jZU7ffgEvl+cQSCPLFrm9o7pdcQKTE3jp6lCfSdW9d81um3FNVWFdtmLNw10iXAefbMWxtN9bBsYv19dnUNUAZnJqScnd6NoiIOopJZVU4np8WSSiAof4t3rCdMwVvwHItGx9+gAre1wuDUYSz1+QmCRktn/VRlj5Uxu2x2JdS72IH4fI4pUPH6KfXPpy6BuJu9JQ3zTDvQqTKMP9DrQ60CvJ+n19ofpdRe5JXV4NrdGz0JuCbLGWtJetSP4sgrTAdq1V1+/b3i3Qmry9kDPAz0P9Hycnq/2fVCe8LHBk2UchsMQmCwwMId5KVVQn5Fzg+3+SHjg2oFrB649xrUuERX50vDopzYuQIdHNVMxvjWpGy/ix2U35uNeY4nnMGTvh1lPY5WYikWkTTcdjxelcb6bLmpjfTe+55psHJh5OdJrgE044ZbR9G75eIEHSkNYp1g1Okd4AxcfLq/gN/Q0xzakk01uqn4zeTPZq5VFH9F4cn4GMcIIvrWGMKhlZu9VG4V/RHGYWTnKGit9e8nbYnpSQkv2pOEKLEHR2wva+T4KiaS/+DhA5dNfV6Ha3MwuVvOwDw9Y1ZGKy/HVZHuetELe5oBlslm/LsC2MMG7HlS7cXLRybqYmMnoxS6Az88CDzNTVY0OzZiHVPzdhWt5y1TjPOcrEUpmpF0Iop8vDmKf4wr8GS3CixHXPAJz6MEz6csmHWWmGmdx2/J/qkw6rlDqcW/CjU9Pvnz/+v7k6PPZ6Yevlx+OXowmI//gQ26ZIxXqNT94jMKfjdtBLlbvnKeGp32NPT34cRiRMeqC94ueidc8SnUiEdPlSHUg403SE+paLBYpOvpuVdfx438asq2YXt+s6hcIm0vH16vB6KM+P7voZ6jP4em57N4I+oeo29ABVMN3IhF31K5mw91Nl4iSMCcbnIuLp9GFoytWsdq8M7btkmHHSZZR7R+R3XjFM+2W/e782+UVs6ifGVcm570W58wCnEeH41Q1Dn/52UIo1LMmkibq5L9/AW4NCpE= 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 a06fc7b72f6..117f0921700 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,115 +5,1121 @@ 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. Key attributes as string values. - -

Body

required
    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter objectdeprecated
    - -Authorization search filter. - -

Body

required
    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Authorization search filter. Key attributes as string values. - -
- -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 976e1c49320..11daf844a1a 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,115 +5,998 @@ 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. Key attributes as string values. - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter objectdeprecated
    - -Decision definition search filter. - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Decision definition search filter. Key attributes as string values. - -
- -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 63bc4bfb2cd..7d99c20e5e6 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,163 +5,1580 @@ 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. Key attributes as string values. - -
    decisionDefinitionKey object
    - -The key of the decision. - -
    oneOf
    - -string - -
    evaluationDate object
    - -The evaluation date of the decision instance. - -
    oneOf
    - -string - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter objectdeprecated
    - -Decision instance search filter. - -
    decisionDefinitionKey object
    - -The key of the decision. - -
    oneOf
    - -integer - -
    evaluationDate object
    - -The evaluation date of the decision instance. - -
    oneOf
    - -string - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Decision instance search filter. Key attributes as string values. - -
    decisionDefinitionKey object
    - -The key of the decision. - -
    oneOf
    - -string - -
    evaluationDate object
    - -The evaluation date of the decision instance. - -
    oneOf
    - -string - -
- -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 205b26ca12a..75668033ca9 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,115 +5,951 @@ 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. Key attributes as string values. - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter objectdeprecated
    - -Decision requirements search filter. - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Decision requirements search filter. Key attributes as string values. - -
- -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 b19e22cdf36..8f2b7e94516 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,115 +5,1325 @@ 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. Key attributes as string values. - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter objectdeprecated
    - -Flow node instance filter. - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Flow node instance filter. Key attributes as string values. - -
- -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 11e0194ee2a..0fc054d7fd7 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,112 +5,1212 @@ 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. Key attributes as string values. - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter objectdeprecated
    - -Incident search filter. - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Incident search filter. Key attributes as string values. - -
- -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 eb095e21b7f..8bf932c8f40 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,572 @@ 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
    page object
    - -Pagination criteria. - -
    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • 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 55802b893ec..d16155b694f 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,115 +5,975 @@ 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. Key attributes as string values. - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter objectdeprecated
    - -Process definition search filter. - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Process definition search filter. Key attributes as string values. - -
- -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 e67575ae5a3..db4114ef991 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,415 +5,3346 @@ 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. Key attributes as string values. - -
    processInstanceKey object
    - -The key of this process instance. - -
    oneOf
    - -string - -
    processDefinitionKey object
    - -The process definition key. - -
    oneOf
    - -string - -
    parentProcessInstanceKey object
    - -The parent process instance key. - -
    oneOf
    - -string - -
    parentFlowNodeInstanceKey object
    - -The parent flow node instance key. - -
    oneOf
    - -string - -
    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 - -
    startDate object
    - -The start date. - -
    oneOf
    - -string - -
    endDate object
    - -The end date. - -
    oneOf
    - -string - -
    state object
    - -The process instance state. - -
    oneOf
    - -string - -
    tenantId object
    - -The tenant ID. - -
    oneOf
    - -string - -
    variables object[]
    - -The process instance variables. - -
  • Array [
  • ]

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter objectdeprecated
    - -Process instance search filter. - -
    processInstanceKey object
    - -The key of this process instance. - -
    oneOf
    - -integer - -
    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 - -
    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 - -
    startDate object
    - -The start date. - -
    oneOf
    - -string - -
    endDate object
    - -The end date. - -
    oneOf
    - -string - -
    state object
    - -The process instance state. - -
    oneOf
    - -string - -
    tenantId object
    - -The tenant ID. - -
    oneOf
    - -string - -
    variables object[]
    - -The process instance variables. - -
  • Array [
  • ]

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Process instance search filter. Key attributes as string values. - -
    processInstanceKey object
    - -The key of this process instance. - -
    oneOf
    - -string - -
    processDefinitionKey object
    - -The process definition key. - -
    oneOf
    - -string - -
    parentProcessInstanceKey object
    - -The parent process instance key. - -
    oneOf
    - -string - -
    parentFlowNodeInstanceKey object
    - -The parent flow node instance key. - -
    oneOf
    - -string - -
    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 - -
    startDate object
    - -The start date. - -
    oneOf
    - -string - -
    endDate object
    - -The end date. - -
    oneOf
    - -string - -
    state object
    - -The process instance state. - -
    oneOf
    - -string - -
    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-task-variables.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-user-task-variables.api.mdx index 7ec0f6d09d8..d7632b92508 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,91 +5,623 @@ 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

    page object
    - -Pagination criteria. - -
    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • filter object
    - -The user task variable search filters. - -
    name object
    - -Name of the variable. - -
    oneOf
    - -string - -
- -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 3c778fba2b5..8783d67f163 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,328 +5,3010 @@ 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. Key attributes as string values. - -
    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 - -
    creationDate object
    - -The user task creation date. - -
    oneOf
    - -string - -
    completionDate object
    - -The user task completion date. - -
    oneOf
    - -string - -
    followUpDate object
    - -The user task follow-up date. - -
    oneOf
    - -string - -
    dueDate object
    - -The user task due date. - -
    oneOf
    - -string - -
    processInstanceVariables object[]
    - -Process Instance variables associated with the user task. - -
  • Array [
  • ]
  • localVariables object[]
    - -Local variables associated with the user task. - -
  • Array [
  • ]

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter objectdeprecated
    - -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 - -
    creationDate object
    - -The user task creation date. - -
    oneOf
    - -string - -
    completionDate object
    - -The user task completion date. - -
    oneOf
    - -string - -
    followUpDate object
    - -The user task follow-up date. - -
    oneOf
    - -string - -
    dueDate object
    - -The user task due date. - -
    oneOf
    - -string - -
    processInstanceVariables object[]
    - -Process Instance variables associated with the user task. - -
  • Array [
  • ]
  • localVariables object[]
    - -Local variables associated with the user task. - -
  • Array [
  • ]

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -User task filter request. Key attributes as string values. - -
    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 - -
    creationDate object
    - -The user task creation date. - -
    oneOf
    - -string - -
    completionDate object
    - -The user task completion date. - -
    oneOf
    - -string - -
    followUpDate object
    - -The user task follow-up date. - -
    oneOf
    - -string - -
    dueDate object
    - -The user task due date. - -
    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 9acb90f5a0f..393c9ee6fde 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,587 @@ 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
    page object
    - -Pagination criteria. - -
    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • 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 3df6265b387..554f0c94c54 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,232 +5,1718 @@ 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. Key attributes as string values. - -
    variableKey object
    - -The key for this variable. - -
    oneOf
    - -string - -
    scopeKey object
    - -The key of the scope of this variable. - -
    oneOf
    - -string - -
    processInstanceKey object
    - -The key of the process instance of this variable. - -
    oneOf
    - -string - -
    name object
    - -Name of the variable. - -
    oneOf
    - -string - -
    value object
    - -The value of the variable. - -
    oneOf
    - -string - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter objectdeprecated
    - -Variable filter request. - -
    variableKey object
    - -The key for this variable. - -
    oneOf
    - -integer - -
    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 - -
    name object
    - -Name of the variable. - -
    oneOf
    - -string - -
    value object
    - -The value of the variable. - -
    oneOf
    - -string - -

Body

    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • page object
    - -Pagination criteria. - -
    filter object
    - -Variable filter request. Key attributes as string values. - -
    variableKey object
    - -The key for this variable. - -
    oneOf
    - -string - -
    scopeKey object
    - -The key of the scope of this variable. - -
    oneOf
    - -string - -
    processInstanceKey object
    - -The key of the process instance of this variable. - -
    oneOf
    - -string - -
    name object
    - -Name of the variable. - -
    oneOf
    - -string - -
    value object
    - -The value of the variable. - -
    oneOf
    - -string - -
- -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 b9a14c5e0f7..0d7d00d3a5e 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 bc55d1a65cb..e7eff69172b 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 fc1d3a13df6..832c7e75250 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 582194ad1f0..2478c39662c 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,88 +12,779 @@ 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 [
  • ]
  • ]
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 [
  • ]
  • ]
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 ec67f14fd35..35b252b5ae1 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 79ccbad6685..fe4ee583c6a 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 fd4cbc42a3b..08efcad71dd 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,136 @@ 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 a2f888ee8ed..f8eda8f22ac 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 ff35a21e135..44fc39cdd0c 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 53855fa8962..0e16fce8e3a 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 21709b31332..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 2cf2f047989..3d18861890d 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 4c699ef1a34..5115f52e93c 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 da20365c4c8..7c6e6624cda 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 dd2c24adef9..346bbe1324d 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 f621e65d404..61891f6a16e 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,369 @@ 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 2f6be933b61..431e4ca2fec 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,376 @@ 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 ID. -## 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 aa709dd26af..b2f06f72f3c 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,369 @@ 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 b260a2acf86..c5d3b8bff97 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 0580fe207ef..d0cb9f585cc 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 4f7cd2e94fd..3bfc5314c06 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,34 +40,319 @@ 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[]
    + -Element mappings from the source process instance to the target process instance. + 0 if provided.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + title: "MigrateProcessInstanceRequestBase", + }, + ], + properties: { + targetProcessDefinitionKey: { + description: + "The key of process definition to migrate the process instance to.", + type: "string", + }, + }, + required: ["targetProcessDefinitionKey", "mappingInstructions"], + title: "ProcessInstanceMigrationInstruction", + }, + }, + "application/vnd.camunda.api.keys.number+json": { + schema: { + deprecated: true, + type: "object", + allOf: [ + { + description: "Base properties for MigrateProcessInstanceRequest", + type: "object", + properties: { + mappingInstructions: { + description: + "Element mappings from the source process instance to the target process instance.", + type: "array", + items: { + type: "object", + description: + "The mapping instructions describe how to map elements from the source process definition to the target process definition.\n", + properties: { + sourceElementId: { + description: "The element ID to migrate from.", + type: "string", + }, + targetElementId: { + description: "The element ID to migrate into.", + type: "string", + }, + }, + required: ["sourceElementId", "targetElementId"], + title: "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.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + title: "MigrateProcessInstanceRequestBase", + }, + ], + properties: { + targetProcessDefinitionKey: { + description: + "The key of process definition to migrate the process instance to.", + type: "integer", + format: "int64", + }, + }, + required: ["targetProcessDefinitionKey", "mappingInstructions"], + title: "MigrateProcessInstanceRequest", + }, + }, + "application/vnd.camunda.api.keys.string+json": { + schema: { + type: "object", + allOf: [ + { + description: "Base properties for MigrateProcessInstanceRequest", + type: "object", + properties: { + mappingInstructions: { + description: + "Element mappings from the source process instance to the target process instance.", + type: "array", + items: { + type: "object", + description: + "The mapping instructions describe how to map elements from the source process definition to the target process definition.\n", + properties: { + sourceElementId: { + description: "The element ID to migrate from.", + type: "string", + }, + targetElementId: { + description: "The element ID to migrate into.", + type: "string", + }, + }, + required: ["sourceElementId", "targetElementId"], + title: "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.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + title: "MigrateProcessInstanceRequestBase", + }, + ], + properties: { + targetProcessDefinitionKey: { + description: + "The key of process definition to migrate the process instance to.", + type: "string", + }, + }, + required: ["targetProcessDefinitionKey", "mappingInstructions"], + title: "ProcessInstanceMigrationInstruction", + }, + }, + }, + }} +> -
  • 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}}>

Body

required
    mappingInstructions object[]
    - -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}}>

Body

required
    mappingInstructions object[]
    - -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}}>
+ 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 9579a9e7deb..237980ab303 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: eJztW99v4zYS/lcIvlyLk2Wnl/a2fjjAzWbv3O6PIPG2D3YeaGlssaFIlaTsGIb+98OQki1LcpK93bZ3BwUIEkvkDGfm+2ZGNLWnlq0NHc/pjVYRGEO4NJbJCOh9QFUGmlmu5DSmY5qqmK925bhpNSygMZhI8wzH0TF9h6M4GMKIzqXkck2yhuhwIWcJN0TDbzkYSyImSaSkZVySNBeWZwLcYJ1HKNUQqwiLLN8wC4RJAgJSkJaoFbEJHOQrvZBWEQs65bIc6qbBQTVOOQoIF3IhPxogFpdjFdGQMa4Jay2Z2IRZwg0xNo8eiJIny9DEKvWAl3LJpQUZQ0wyZpNwId8oTeCRpZmAgCwhYrnxNjxa0JIJYnbGQoqypbKEbRgXbCkApcYKjPyLJRpMpmRMmCHwmEFkIQ4XkgY0Y5qlYEFjCPdUshTomGanIfoJdjSgHIODa6IBRcdzDTEdW51DM4KzBMgD7JrePXWFSVQuYrIEkvqAxyENqIkSSBkd76ndZbgUYzWXa1oU914rGPuDinc4orkIRABIi7dYlgkeOeQNfzW4qH1btFr+CpGlAWVCfFg5+0/t+IEZt/oMtEVArpQm77owfOsXRoOW6ONsVHygwy2sQAOif9xUOiG6uumcGCXKgCTLnfNlbkB7/225EOi9jGmHYyYE0RApHSMvDLJArslKq9SD86A7JO9yY3HqP8iI8BVauOFxhYjSAkThGjQN6ErplFl/6btLGtCUS57mKR1fFEVALbcCKtqecQw6kmIET91RMXJaY2rbIfW7xN9aomnbhEdJRSFTw1MlNiZclqNMpDLMKDIuL2yY5kiS+rxIA84Kj05gWjMHfQvpJ6ysxuwG1A9LCxfyJ9gRZq3my9zi2jA1INbJhokcTNiBps8G6qTt8WdBW5qCGbypF4k+fV3x/Fmbj6oqVge0CsTnYOA/DGbT7C+o8tSDh8Ftw368+/CexCrKj55zxPa50nIsQujboz6MLV7RStnDZQ/wcwk3XMipJWnJekacUm92gLg7Cq+SSsqyzPOHYRIaOEiSFTMJJhCXJ1gcczSCiZuasT4Tn3q2wLSuMng5gk5523BA2+EL+RbYBgikmd1hFfY3GvO4dBfWQi2xaD7lsHoiLKGK8FixXGAipJj3jtVnXgvw/TMJ8ec23GnxbBrtoO25lCojMFbp65K0tQre6ftama6m1px+jEdZuVu+JxzhcAcW3T64aDhfwrYtY8ttwn3788iNq1KtMX5JC7kSauvXEz4dk8FFMybHtFWLScOvvtX0fUJXanSBqZrBL1ylDnJ/txz1tFLygvrTXQiew9SzFaHT9EOj1x3GmtKXxXPWEbdTqj0xuQmCej+5kXEYsTSXMQtZxsMH2JlQ5ukS9F/bvWYMmYYIbe1Ojn332Xeff0b36XLJ7w7Nvt/s+82+3+z7zf/xfvOJcvSpHeiL0+T/c+/5B7eWZ8P3ac1mZ+iebzOf7Nle1Fz6lNDRXPatZN9K/vmtZL+R2TeWfWPZN5Z9Y9lvZPYbmf/NG5l+TXgUwHhPfDO67Da99Z09N7Xv6YuAXo5GZ2e6JozEzLLqUMKGCe58dOY7+kyrpYC0c//0tKe88SNJDJZxUSZ/jHmJGp/s57dvrsj3l9/+/f6rxNrMjIfD7XYb6lU0gJhbpUOl10O9ivAXx30dklkCGgvGztWWQ1GotyMmgwhdi9mhTLduMRj5E16f6UD83ebZhlpnmmve4saEfLydEh6DtHy1Q1y3VJ8kdbZUuR0vBZMP9AiSttKmFpOnKdP1Uxs1BVj6LLN5ncvdnfXfvmnJRlj8aza7IV4EiVQMZfnnplIU1hvyy9EooCl79J++G40KlIkRf4ElmI8zwaSDVtMcPCGkNJT4cYYdDix9mcgozde8qTekDcLixdfeIs/Ly0+hInJqpXLZc6rnVM+ps5z6tqtITSRBL7ujc6C10kRFUa41uEdqcSBcpbs8deax2HOt51rPtTbXioCmYBOFx3wz5XYQ3VHRMR2WdBpUyzTDfft8aTFMa10rHgQFvalOpeZa0DHde1IV4+Fwnyhji/E+U9oWww1G7GRrAm978lWgEipiIvELawcXb+DR18roK78DS16R2+u7Gfkns7BlO+dsVHkq+tXo1ahTKg49I3FyMyXeQg/NWrqoxCLvO8X6wS8R7A7NGohyze3uDqd59yyBadCTHONzgEypz0nHz34QDcp/3lRA+vGXmcMCprrb44Hca39C+fxu6PzpZ/rBRVDfoDsiuHtfbX66GVXfmTk8gN2j+WeeeufdT4HHuUHnHvfI0W2lnN9KMrQjgKsGbXzIRuFFm3g3U5c/IpWmuXSgx4ddbhPCahGNRG4sRjKggkcgjXNveUa7GvbW3yE/e43kIkQ0espUtWPNbZIvw0ilw/LLhcPfpVDLYcq4HJYqzPBq8u7j+9eTwdvp1fX7u+vBRTgK7aP/rgK5nTJZW4ff52l1qU2b98fS2Z/w/yNP+Jf0tvBoh5lgXGLCcfDYlyl6TlspmgZ03PkSwEmWvg/KTDun+/2SGfioRVHg5d9y0Ds6nt8f+et3+7nB/2M6XjFhmi8O1DHy1W25d/I1+YzXCTqNr7ao5M6lF5HjJxrQB5cBOswu7ouAJsBi0M4KP/DKr3UwQ3FHQa1XD4qgmjGJIsjsmbEnLSTmn0M9vflwN8M8XL72kKoY52q2xRcx2JaO6YIu0ACVHfb03PU9FUyuc7bG8V4u/vwbj514hA== +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,46 +39,477 @@ 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
    = 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}}>
    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: "ModifyProcessInstanceRequestBase", + }, + ], + properties: { + activateInstructions: { + description: + "Instructions describing which elements should be activated in which scopes and which variables should be created.", + type: "array", + items: { + description: + "Instructions describing an element that should be activated.\nKey attributes as string values.", + type: "object", + allOf: [ + { + description: + "Base properties for ModifyProcessInstanceActivateInstruction", + type: "object", + properties: { + elementId: { + description: + "The ID of the element that should be activated.", + type: "string", + }, + variableInstructions: { + description: + "Instructions describing which variables should be created.", + type: "array", + items: { + 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.\nIt must be a JSON object, as variables will be mapped in a key-value fashion.\n", + additionalProperties: true, + type: "object", + }, + scopeId: { + description: + "The ID of the element in which scope the variables should be created.\nLeave empty to create the variables in the global scope of the process instance\n", + type: "string", + default: "", + }, + }, + required: ["variables"], + title: "ModifyProcessInstanceVariableInstruction", + }, + }, + }, + title: "ModifyProcessInstanceActivateInstructionBase", + }, + ], + properties: { + ancestorElementInstanceKey: { + description: + "The key of the ancestor scope the element instance should be created in.\nSet to -1 to create the new element instance within an existing element instance of the\nflow scope.\n", + type: "string", + default: -1, + }, + }, + required: ["elementId"], + title: "ProcessInstanceModificationActivateInstruction", + }, + }, + terminateInstructions: { + description: + "Instructions describing which elements should be terminated.", + type: "array", + items: { + type: "object", + description: + "Instructions describing which elements should be terminated. Key attributes as string values.", + properties: { + elementInstanceKey: { + description: + "The ID of the element that should be terminated.", + type: "string", + }, + }, + required: ["elementInstanceKey"], + title: "ProcessInstanceModificationTerminateInstruction", + }, + }, + }, + title: "ProcessInstanceModificationInstruction", + }, + }, + "application/vnd.camunda.api.keys.number+json": { + schema: { + deprecated: true, + type: "object", + allOf: [ + { + description: "Base properties for ModifyProcessInstanceRequest", + type: "object", + 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.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + title: "ModifyProcessInstanceRequestBase", + }, + ], + properties: { + activateInstructions: { + description: + "Instructions describing which elements should be activated in which scopes and which variables should be created.", + type: "array", + items: { + description: + "Instructions describing an element that should be activated.\n", + deprecated: true, + type: "object", + allOf: [ + { + description: + "Base properties for ModifyProcessInstanceActivateInstruction", + type: "object", + properties: { + elementId: { + description: + "The ID of the element that should be activated.", + type: "string", + }, + variableInstructions: { + description: + "Instructions describing which variables should be created.", + type: "array", + items: { + 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.\nIt must be a JSON object, as variables will be mapped in a key-value fashion.\n", + additionalProperties: true, + type: "object", + }, + scopeId: { + description: + "The ID of the element in which scope the variables should be created.\nLeave empty to create the variables in the global scope of the process instance\n", + type: "string", + default: "", + }, + }, + required: ["variables"], + title: "ModifyProcessInstanceVariableInstruction", + }, + }, + }, + title: "ModifyProcessInstanceActivateInstructionBase", + }, + ], + properties: { + ancestorElementInstanceKey: { + description: + "The key of the ancestor scope the element instance should be created in.\nSet to -1 to create the new element instance within an existing element instance of the\nflow scope.\n", + type: "integer", + format: "int64", + default: -1, + }, + }, + required: ["elementId"], + title: "ModifyProcessInstanceActivateInstruction", + }, + }, + terminateInstructions: { + description: + "Instructions describing which elements should be terminated.", + type: "array", + items: { + 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"], + title: "ModifyProcessInstanceTerminateInstruction", + }, + }, + }, + title: "ModifyProcessInstanceRequest", + }, + }, + "application/vnd.camunda.api.keys.string+json": { + schema: { + type: "object", + allOf: [ + { + description: "Base properties for ModifyProcessInstanceRequest", + type: "object", + 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.\n", + type: "integer", + format: "int64", + minimum: 1, + }, + }, + title: "ModifyProcessInstanceRequestBase", + }, + ], + properties: { + activateInstructions: { + description: + "Instructions describing which elements should be activated in which scopes and which variables should be created.", + type: "array", + items: { + description: + "Instructions describing an element that should be activated.\nKey attributes as string values.", + type: "object", + allOf: [ + { + description: + "Base properties for ModifyProcessInstanceActivateInstruction", + type: "object", + properties: { + elementId: { + description: + "The ID of the element that should be activated.", + type: "string", + }, + variableInstructions: { + description: + "Instructions describing which variables should be created.", + type: "array", + items: { + 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.\nIt must be a JSON object, as variables will be mapped in a key-value fashion.\n", + additionalProperties: true, + type: "object", + }, + scopeId: { + description: + "The ID of the element in which scope the variables should be created.\nLeave empty to create the variables in the global scope of the process instance\n", + type: "string", + default: "", + }, + }, + required: ["variables"], + title: "ModifyProcessInstanceVariableInstruction", + }, + }, + }, + title: "ModifyProcessInstanceActivateInstructionBase", + }, + ], + properties: { + ancestorElementInstanceKey: { + description: + "The key of the ancestor scope the element instance should be created in.\nSet to -1 to create the new element instance within an existing element instance of the\nflow scope.\n", + type: "string", + default: -1, + }, + }, + required: ["elementId"], + title: "ProcessInstanceModificationActivateInstruction", + }, + }, + terminateInstructions: { + description: + "Instructions describing which elements should be terminated.", + type: "array", + items: { + type: "object", + description: + "Instructions describing which elements should be terminated. Key attributes as string values.", + properties: { + elementInstanceKey: { + description: + "The ID of the element that should be terminated.", + type: "string", + }, + }, + required: ["elementInstanceKey"], + title: "ProcessInstanceModificationTerminateInstruction", + }, + }, + }, + title: "ProcessInstanceModificationInstruction", + }, + }, + }, + }} +> -
  • Array [
  • ]
  • terminateInstructions object[]
    - -Instructions describing which elements should be terminated. - -
  • Array [
  • ]

Body

required
    = 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}}>
    activateInstructions object[]
    - -Instructions describing which elements should be activated in which scopes and which variables should be created. - -
  • Array [
  • ]
  • terminateInstructions object[]
    - -Instructions describing which elements should be terminated. - -
  • Array [
  • ]

Body

required
    = 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}}>
    activateInstructions object[]
    - -Instructions describing which elements should be activated in which scopes and which variables should be created. - -
  • Array [
  • ]
  • terminateInstructions object[]
    - -Instructions describing which elements should be terminated. - -
  • Array [
  • ]
- -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 af74c11caac..906fe1d3819 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,29 +5,32 @@ 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. @@ -35,22 +38,234 @@ Messages can be buffered. 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 dbf265cd5ff..12428752629 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 143b5edbefa..47d0b2e948b 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 048620aa3f7..9a54e8113e8 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 6b1c74999d3..89c08a35848 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: eJztWE1z2zYQ/SuYPSVTWlRSJ014Ux2ntRsnHllpD44OILgSYZMAA4CSNRr+984CpER9OJNDe5NmNBKBxS529z2QfGtwfG4huYdrncI0Al2h4U5qdZVBAgYrbdy1Ti+N0QYiyNAKIysygATGftoyztLaSoXWMiRD9kIOcMCUVmcORa6k4MVL5nLumBaiNpYtc1kgq4wWaK1Uc8bZg04H3xREUHHDS3RoaF9rULxESOBBp3/hCiKQFLniLocIDH6vpcEMEmdq3N/eJEf2iCumZ8zl6ANABFbkWHJI1uBWFXm2zkg1h6aZBodo3e86W5HFvn+hlUPlaIpXVSGFL1X8YCne+tC1Th9QOMrJUGGdREuzvkgXOkO6ONxzqKHQGYaaLWVRsBRZyZ3IMWNL6XLGVWdHowwXqFyo315aUQh3g9by+ZGIo85RGSxCzMrohczQMp5lkix5wXz2T0ejRKDqouBpgaFUTQQLbiQN+Iy3Xm57lTjWtOu7L59ZqFsve6ms48pJ7tD3cuOccecHCi14wazQFXb9PihP8OcH0HoTlxu9bPPfSWvTuL20mj7m7nuNnEbgpCM76OgyDliCpgnLbKWVDeV4PTz/QSOk7TY202YL3SaC8+HwOGTadmUs446TA6UdW/BCZiGtZ4BbGZ0WWP5yCOC9rbHbYMkydFwWXYO4ZcEwxYxJxe7HHy/Y+/M3v01f5M5VNonj5XI5MDNxhpl02gy0mcdmJuhLdi8HbJKjIWyvCOI9tG0pw2yFQs6kYE77crTbZtSs423b5VuY3Sd8BDNtSu4ggdrIg8NtxL6Or5jMUDk5W9EZdRDar5nxuiAfPNW1S9KCq0dqVYuGw6D7UWxdltxsTqndAE0E1nFX99IAqRzO0fT3L5X79fWBbwLGn5PJLQsuwokSICVtF4iSKKWSZV1Ccj4cRlDyp3D1djhsyCd1/CcyUQyfqoIrD639dKRipTbY4scnFjgt/qvOaCPncj/uAJptL6AF8YeQUeDl+TEqTgLnwklL7uZygYqFe1BHr5mu1YleJ3qd6PVDer3/aXo9Bm5J5ceWRqu5ry0yURuDyhWrAbvZpmkZN71bX7uuu9GyVGerEz1P9DzR83l6vjn2QDlSjKpsCIfhidS/tRl69dh/bwuM8w+6J66duHbi2nNcayIo0eWaZJVKWw8dEjESiB90auN1eLhsYmylFotm0WkgtSkggXUgTZPE8TrX1jXJmvSXJl5QR3bet2k6kKsDjX9BzkPgw+bRBAktXVIXvKxVxtk7Nr68m7A/uMMlX/liUshd1++G74ZHvZLpMx5Ht1csZBig1zsOOrfE66Nug/HPOPaajkVRG+lWd7QslCdFbtCMaqr/BhJtPO+droMRRO2fjx1Qrv+Z+F7TUTbe6kWXT7ysAhF7+s4WaLsqzHa837fGg3Wm/a5aKB3mR4vQ2FCQ4eDVIWxvrzz7hC7LWvkjWM1b2ahXL1HU1lGdIiikQGX95lu9rTP7FGbY3yEiezWgXgdAdifvXLq8TgdCl7EIyza/aaHTuORSxW0IG1+Mbr5+/jA6+3R1cfn57vLs1WA4cE/O15SYUXLV20fQGNv7ECX1oNP9hNfbu87/pEm2ECH5K64KLhWB1hdh3dL4nhRKCxEkG6UyMHkatWy8h/U65Ra/mqJpaPh7jWYFyf10CwLP9kxa+p9BMuOF3VfI+sm+GLdi1Et2XOw8uu92kKuVh19R0xVE8IirrdDaTJsIcuQZGr+pMHkRQp9NyMV28YEY2kTdipEQWLlnbHeeCoirmyPy9svdhKjXCrFlIJPhS1J9+RIS+AbfaNPal8Wz2o+voeBqXgeSBb/0+Rfnm+n4 +api: eJztWE1z2zYQ/SuYPSVTWlRSp014Ux2ntZsPjyy3B1cHEFyJsEmAAUDJGg3/e2cBUqI+nPGhvUkzGonAYhe7+x5IvjU4PreQ3MO1TmEaga7QcCe1usogAYOVNu5ap5fGaAMRZGiFkRUZQAJjP20ZZ2ltpUJrGZIheyUHOGBKqzOHIldS8OI1czl3TAtRG8uWuSyQVUYLtFaqOePsQaeDfxREUHHDS3RoaF9rULxESOBBp3/iCiKQFLniLocIDH6vpcEMEmdq3N/eJEf2iCumZ8zl6ANABFbkWHJI1uBWFXm2zkg1h6aZBodo3W86W5HFvn+hlUPlaIpXVSGFL1X8YCne+tC1Th9QOMrJUGGdREuzvkgXOkO6ONxzqKHQGYaaLWVRsBRZyZ3IMWNL6XLGVWdHowwXqFyo315aUQj3Ba3l8yMRR52jMliEmJXRC5mhZTzLJFnygvnsn45GiUDVRcHTAkOpmggW3Ega8Blvvdz0KnGsade3376yULde9lJZx5WT3KHv5cY5484PFFrwglmhK+z6fVCe4M8PoPUmLjd62ea/k9amcXtpNX3M3fcaOY3ASUd20NFlHLAETROW2UorG8rxdnj+g0ZI221sps0Wuk0E58Phcci07cpYxh0nB0o7tuCFzEJazwC3MjotsPzpEMB7W2M3wZJl6LgsugZxy4JhihmTit2PP12wD+fvfp2+yp2rbBLHy+VyYGbiDDPptBloM4/NTNCX7F4P2CRHQ9heEcR7aNtShtkKhZxJwZz25Wi3zahZx9u2y7cwu0/4CGbalNxBArWRB4fbiN2Nr5jMUDk5W9EZdRDar5nxuiAfPNW1S9KCq0dqVYuGw6D7UWxdltxsTqndAE0E1nFX99IAqRzO0fT3L5X7+e2BbwLGH5PJDQsuwokSICVtF4iSKKWSZV1Ccj4cRlDyp3D1y3DYkE/q+AsyUQyfqoIrD639dKRipTbY4scnFjgt/qvOaCPncj/uAJptL6AF8ceQUeDl+TEqTgLnwklL7uZygYqFe1BHr5mu1YleJ3qd6PVDen14Mb0eA7ek8mNLo9Xc1xaZqI1B5YrVgH3ZpmkZN71bX7uuu9GyVGerEz1P9DzR83l6vjv2QDlSjKpsCIfhidS/tRl69dh/bwuM8w+6J66duHbi2nNcayIo0eWaZJVKWw8dEjESiB90auN1eLhsYmylFotm0WkgtSkggXUgTZPE8TrX1jXJmvSXJl5QR3bet2k6kKsDjX9BzkPgw+bRBAktXVIXvKxVxtl7Nr68nbDfucMlX/liUshd1++H74dHvZLpMx5HN1csZBig1zsOOrfE66Nug/FLHHtNx6KojXSrW1oWypMiN2hGNdV/A4k2nvdO18EIovbPpw4o139PfK/pKBtv9aLLJ15WgYg9fWcLtF0VZjve71vjwTrTflctlA7zo0VobCjIcPDmELY3V559QpdlrfwRrOatbNSrlyhq66hOERRSoLJ+863e1pl9DjPsrxCRvRlQrwMgu5N3Ll1epwOhy1iEZZvftNBpXHKp4jaEjS9GX+6+fhydfb66uPx6e3n2ZjAcuCfna0rMKLnq7SNojO19iJJ60Ol+wuvtXed/0iRbiJD8FVcFl4pA64uwbml8TwqlhQiSjVIZmDyNWjbew3qdcot3pmgaGv5eo1lBcj/dgsCzPZOW/meQzHhh9xWyfrKvxq0Y9ZodFzuP7rsd5Grl4VfUdAURPOJqK7Q20yaCHHmGxm8qTF6E0GcTcrFdfCCGNlG3YiQEVu4Z252nAuLq5oi8+XY7Ieq1QmwZyGT4klRfvgwb1r4kntF+bA0FV/M6ECz4pM+/UpLo/A== 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 f5c14962ccf..0a5c82b5122 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 4c333390ce8..6747513d61d 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,565 @@ description: "Search for groups based on given criteria." sidebar_label: "Query groups" hide_title: true hide_table_of_contents: true -api: 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 +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

    page object
    - -Pagination criteria. - -
    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • 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 8b8bc0c2eca..c9ac1a4d2f4 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,540 @@ description: "Search for roles based on given criteria." sidebar_label: "Query roles" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null 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

    page object
    - -Pagination criteria. - -
    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
- -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 384d44e2046..bfa73449463 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,642 @@ 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

    page object
    - -Pagination criteria. - -
    sort object[]
    - -Sort field criteria. - -
  • Array [
  • ]
  • 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 502eecc22e3..00000000000 --- a/docs/apis-tools/camunda-api-rest/specifications/sidebar.js +++ /dev/null @@ -1,696 +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/create-authorization", - label: "Create authorization", - className: "api-method post", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/delete-authorization", - label: "Delete authorization", - className: "api-method delete", - }, - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/find-authorizations", - label: "Query 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/create-documents", - label: "Upload multiple documents (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/get-tenant", - label: "Get tenant", - className: "api-method get", - }, - { - 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/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: "doc", - id: "apis-tools/camunda-api-rest/specifications/update-user", - label: "Update user", - className: "api-method patch", - }, - ], - }, - { - 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..59e1bc7b822 --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/sidebar.ts @@ -0,0 +1,702 @@ +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/create-authorization", + label: "Create authorization", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/delete-authorization", + label: "Delete authorization", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-authorizations", + label: "Query 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/create-documents", + label: "Upload multiple documents (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/get-tenant", + label: "Get tenant", + className: "api-method get", + }, + { + 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/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: "doc", + id: "apis-tools/camunda-api-rest/specifications/update-user", + label: "Update user", + className: "api-method patch", + }, + ], + }, + { + 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 3caa7e31ec8..8ae08e17667 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 7fec04bf03d..cfedf0a64de 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-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-group.api.mdx index 009aebc296c..63766134418 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/isYnJIpLcqp06a8qYqTuE1TjyO3B0eHFbgiEYMAA4CWNRz+984C1FtOfOhRntFY4mLf3weA23IPhePZHX9vTVPzacJNjRa8NPoq5xlv6hw8RmHCc3TCypqkPOO3QcaAFSRmC+lL5ktkhXxAze5xOeAJr8FChR4teWm5hgp5xoPGn7jkCZdkqgZf8oRb/NZIiznPvG1w39+kRLLKzDy6CV69YTFGcuZEiRXwrOV+WZMf563UBe+6aTSOzv9u8iWt2PcljPaoPYmgrpUUoQjpV0e+20PTZvYVhacMLZXMS3QkFSXoAh0GQ4fxO/QUf1yV9zmA91bOGo+OkgCl/p6HYu2qj56j/P3gYvX3q3OszrGmOculqxUsGWnuFH7Auy7hXnpFlgJAxuvUuykJNxW+2yrLdE8rougmNod3XdR0tdEuBv1qeHG8lj3swK2jdY0Q6Ny8UWo54F3CL4bD47q1NQ8ypwTBA5OOaePZAyiZD75o/iQaamtmCqufDlGx36vruJLl6EEqFhvCwLG4cIY5k5rd3bwbs98uXv86fVF6X7ssTReLxcDOxRnm0hs7MLZI7VzQh9a9HLBJiRZZBUs2QwZ5LsknKLZpNXM1CjmXgtjhY7YhGOp7zO/7OInSQ5zMja3A07Zg5QFsRuz25orJHLWX86XUxaHroDOHRpENmJnGZzMF+p5voPQjcI6Ya6oK7Hob2HXQJdx58M1WGlxqjwXa7fil9j+/Ogr8D5PJNYsmmDA5srmxzJfSrRxREpXUsmoqnl0Mhwmv4DH++mU47MgmdfwZmWiGj7UCHaC1n47UrDIWe/yExKR2HrT4vzpjrCzkvt9dWvcgfhszity8GJ4fp1S/vzIF4t5FLjFofEleI32YsBiCABU2qxPJTiQ7kew4yb5/5q2vWv09anWCzU2j8xO1TtQ6Uespar0+diUcaUZVtoRDtNZYZoRorMWcLUqpgnm6Wa5892fd6a544tqJa09xrUt4hb40eXzBF2UYB/iSZzwNB5dL29UB1tHbO9qH1ZygsYpnvI2c6bI0bUvjfJe1tbG+Sx+oIQ9gJcxUhCGJI7dWmFFGgAqPj/WOBNsvtWOoGp0De8NuLj9P2HvwuID4Ekkud02/Gb4ZHrVKS5+wOLq+YjHDiLyt3WBllmh91Gxc/BzDYdLhUDRW+uVnUovlmSFYtKOGqr9GRO8vWKffcRFP+i/vVjj5499JaDXtZDebKcrlI1R15OHO1KOf8axnL4TGuQl+e6wcZkDtROtiysPB+SEur68CvYSpqkaHPVYX8SIEWxURqnGeKpFwJQVqh1sRrZZ9jBL2T/TIzgfUzQi51dZaSF82s4EwVSqi2vr/TJlZWoHUae/CpePRX7ef3o7OPl6NLz99vjw7HwwH/tGH5GvjfAV6K45+cFYcm6q1m+PkeQO2vpceH31aK5Ca0BVyaXu23cVxm+MJz9aDt2nSU+aOt+0MHN5a1XX0+FuDdsmzu+mGYXEaJR19z3k2B+X2p3Pbcb+46Sc/L9mPZ3ZH4+8fgl4GnquGfvGE3+Nye3rYTbuElwg52hBiFI9jIGcTMrJRP5jqdclKYyQE1v6JtTvnONFrvaldjybjD0SXfqRYmZyULSxolgkLnvEv/AvFbUKVAhPD85Yr0EUDBa2PhunvP5L3b04= +api: eJztWEtz2zYQ/isYnJIpLcqp06a8qYqTuE1SjyO3B1eHJbgiEYMAA4CWNRr+984C1FtOfOhRntFY4mLf3weAu+QeSsezO/7emrbh04SbBi14afRVwTPeNgV4jMKEF+iElQ1JecZvg4wBK0nM5tJXzFfISvmAmt3jYsAT3oCFGj1a8rLkGmrkGQ8af+KCJ1ySqQZ8xRNu8VsrLRY887bFfX+TCskqM7PoJnj1hsUYyZkTFdbAsyX3i4b8OG+lLnnXTaNxdP53Uyxoxb4vYbRH7UkETaOkCEVIvzryvTw0bfKvKDxlaKlkXqIjqahAl+gwGDqM36Gn+OOqos8BvLcybz06SgKU+msWirWrPnqO8veDi9Xfr86xOseaFqyQrlGwYKS5U/gB77qEe+kVWQoAGa9T76Yk3FT4bqss0z2tiKKb2BzedVHTNUa7GPSr4cXxWvawA7eO1rVCoHOzVqnFgHcJvxgOj+s21jzIghIED0w6po1nD6BkMfhX8yfR0FiTK6x/OkTFfq+u40pWoAepWGwIA8fiwhwLJjW7u3k3Zr9dvP51+qLyvnFZms7n84GdiTMspDd2YGyZ2pmgD617OWCTCi2yGhYsRwZFIcknKLZpNXMNCjmTgtjhY7YhGOp7zO/7OInSQ5zMjK3B07Zg5QFsRuz25orJArWXs4XU5aHroDODVpENyE3rs1yBvucbKP0InCPm2roGu94Gdh10CXcefLuVBpfaY4l2O36p/c+vjgL/w2RyzaIJJkyBbGYs85V0K0eURC21rNuaZxfDYcJreIy/fhkOO7JJHX9GJprhY6NAB2jtpyM1q43FHj8hMamdBy3+r84YK0u573eX1j2I38aMIjcvhufHKdXvr0yBuHeRSwxaX5HXSB8mLIYgQIXN6kSyE8lOJDtOsu+feeurVn+PWp1gM9Pq4kStE7VO1HqKWq+PXQlHmlGVLeEQrTWWGSFaa7Fg80qqYJ5ulivf/Vl3uiueuHbi2lNc6xJeo69MEV/wRRXGAb7iGU/DweXS5eoA6+jtHe3Dak7QWsUzvoyc6bI0XVbG+S5bNsb6Ln2ghjyAlZCrCEMSR26tMKOMABUeH+sdCbZfasdQt7oA9obdXH6ZsPfgcQ7xJZJc7pp+M3wzPGqVlj5hcXR9xWKGEXlbu8HKLNH6qNm4+DmGw6TDoWit9IsvpBbLkyNYtKOWqr9GRO8vWKffcRFP+i/vVjj5459JaDXtZDebKcrlI9RN5OHO1KOf8axnL4TGmQl+e6wcZkDtROtiysPB+SEur68CvYSp61aHPVaX8SIEWxURqnWeKpFwJQVqh1sRrZZ9jBL2d/TIzgfUzQi51dZaSl+1+UCYOhVRbf0/VyZPa5A67V24dDz6dPv57ejs49X48vOXy7PzwXDgH31IvjHO16C34ugHZ+Wxqdpyc5w8b8DW99Ljo08bBVITukIuy55td3Hc5njCs/XgbZr0lLnjy2UODm+t6jp6/K1Fu+DZ3XTDsDiNko6+FzybgXL707ntuF/c9JOfl+zHM7uj8fcPQS8Cz1VLv3jC73GxPT3spl3CK4QCbQgxiscxkLMJGdmoH0z1umSlMRICG//E2p1znOi13tSuR5PxB6JLP1KsTUHKFuY0y4R5jNmECgUWhmdLrkCXLZS0Nhqlv/8A6KVuUg== 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 7adcd393ac9..852bbd5893d 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 503b282b795..bde035e93b5 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/isYnJIpLcqp06a8qYrTuE1SjyK3B1uHFbgUEYMAA4CWNRr+984C1Ft2fOhRntFYIva93weAu+QeZo5nt3xkFPJJwk2NFrw0+irnGW/qHDyGtYTn6ISVNS3yjN+EJQbMGoVsLn3JfIlsJh9Qs3tc9HjCa7BQoUdLLpZcQ4U846TwFy54wiUZqsGXPOEWvzfSYs4zbxvc9zYukYwyUwQvwac3LMZHrpwosQKeLblf1OTFeSv1jLftJNpG5383+YIk9l0Joz1qT0tQ10qKUID0myPXy0PTZvoNhaf8LJXLS3S0KkrQM3QYDB2G79BT+FEqjymA91ZOG4+OcgCl/i5CpXa1By/QfT60WPn92hwrcqxoznLpagULRprbVe/xtk24l16RIULGcJ12O6G1TXVvt0oy2VWK6BnFvvC2jYquNtrFiN/0L46XMcIN3DpS1wiBzhWNUosebxN+0e8fV62teZA5JQcemHRMG88eQMm8d6f5kziorZkqrH46xMN+m66jJMvRg1QsNoOBY1FwijmTmt2OPgzZbxdvf528Kr2vXZam8/m8Zwtxhrn0xvaMnaW2EPQhudc9Ni7RIqtgwabIIM8l+QTFNm1mrkYhCymIFz5mG4Khnsf8nsdIXD3ESGFsBZ42AysPIDNgN6MrJnPUXhYLqWeHroNOAY0iGzA1jc+mCvQ93+DoR8AcMNdUFdg1/3cdtAl3HnyzlQaX2uMM7Xb8Uvuf3xwF/cfx+JpFE0yYHFlhLPOldCtHlEQltayaimcX/X7CK3iMv37p91uySR1/QSaa4WOtQAdo7acjNauMxQ4/ITGpnQct/q/OGCtnct/vLqc7EL+PGUVqXvTPn2BjZDBTIO5d5BKDxpfkNdKHCYshCFBhozqR7ESyE8mOk+zZI291w+quT6vzqzCNzk/EOhHrRKyniPX22IVwoBlV2RIO0VpjmRGisRZzNi+lCubpXrny3Z10p5viiWsnrj3FtTbhFfrS5PG9XpRhCOBLnvGUzi2XLrvjq6V3drQPq9lAYxXP+DIyps3SdFka59tsWRvr2/SB2vEAVsJURRDScmTWCjHKCFDh8bHO0cL2y+wQqkbnwN6x0eXXMfsDPM4hvkCSy13T7/rv+ketkugTFgfXVyxmGHG3tReszBKpj5qNwi8xHOYbDkVjpV98JbVYnimCRTtoqPZrPHT+gnX6HYV40n35sELJn/+OQ6NpHxttZieXj1DVkYU7s45urrOeuBAWCxP8dkg5zIDaidbFlPu980NUXl8FcglTVY0OO6yexVsQbFVEqMZ5qkTClRSoHW5FtBL7FFfYP9EjO+9RNyPkVhvrTPqymfaEqVIR1db/p8pM0wqkTjsXLh0OPt98eT84+3Q1vPzy9fLsvNfv+Ucfkq+N8xXorTi6WZk9Mkdbbs6SF43Uuk56fPRprUBqwlbIZNkx7TYM2BxPeLaatE2Sji63fLmcgsMbq9qWHn9v0C54djvZsCsOoKSj7znPClBufxy3HfSrUTfvec1+OKQ7Gnz3EPQiUFw19Isn/B4XW8PCdtImvETI0YYA4+owhnE2Jhsb7YMpXpusNAZCYO2fkN05v4lY683sejAefiSidCPEyuRhlAlzGl3CnGf8jt9R2CbUKHAwPF9yBXrWwIzko2H6+w+VPmU3 +api: eJztWEtz2zYQ/isYnJIpLcqp07q8qYrTuE1Tjyy3B1eHJbgSEYMAA4CWNRr+984C1Ft2fOhRntFYIva93weAu+QeZo5n93xkFPJJwk2NFrw0+rrgGW/qAjyGtYQX6ISVNS3yjN+FJQbMGoVsLn3JfIlsJh9Rswdc9HjCa7BQoUdLLpZcQ4U846TwBy54wiUZqsGXPOEWvzXSYsEzbxvc9zYukYwyMw1egk9vWIyPXDlRYgU8W3K/qMmL81bqGW/bSbSNzv9qigVJ7LsSRnvUnpagrpUUoQDpV0eul4emTf4Vhaf8LJXLS3S0KkrQM3QYDB2G79BT+FGqiCmA91bmjUdHOYBSf01DpXa1B6/QfTm0WPn92hwrcqxowQrpagULRprbVe/xtk24l16RIULGcJ12O6G1TXXvt0oy2VWK6BnFvvC2jYquNtrFiN/1L46XMcIN3DpS1wiBzk0bpRY93ib8ot8/rlpb8ygLSg48MOmYNp49gpJF71/Nn8VBbU2usPrhEA/7bbqJkqxAD1Kx2AwGjkXBHAsmNbsffRyyXy7e/zx5U3pfuyxN5/N5z07FGRbSG9szdpbaqaAPyb3tsXGJFlkFC5Yjg6KQ5BMU27SZuRqFnEpBvPAx2xAM9Tzm9zJG4uohRqbGVuBpM7DyADIDdje6ZrJA7eV0IfXs0HXQmUKjyAbkpvFZrkA/8A2OvgfMAXNNVYFd83/XQZtw58E3W2lwqT3O0G7HL7X/8d1R0H8aj29YNMGEKZBNjWW+lG7liJKopJZVU/Hsot9PeAVP8ddP/X5LNqnjr8hEM3yqFegArf10pGaVsdjhJyQmtfOgxf/VGWPlTO773eV0B+IPMaNIzYv++TNsjAxmCsSDi1xi0PiSvEb6MGExBAEqbFQnkp1IdiLZcZK9eOStbljd9Wl1fk1No4sTsU7EOhHrOWK9P3YhHGhGVbaEQ7TWWGaEaKzFgs1LqYJ5uleufHcn3emmeOLaiWvPca1NeIW+NEV8rxdlGAL4kmc8pXPLpcvu+GrpnR3t42o20FjFM76MjGmzNF2Wxvk2W9bG+jZ9pHY8gpWQqwhCWo7MWiFGGQEqPD7WOVrYfpkdQtXoAtglG13djtlv4HEO8QWSXO6avuxf9o9aJdFnLA5urlnMMOJuay9YmSVSHzUbhV9jOMw3HIrGSr+4JbVYnhzBoh00VPs1Hjp/wTr9jkI86b58XKHk93/GodG0j402s5OrJ6jqyMKdWUc311lPXAiLUxP8dkg5zIDaidbFlPu980NU3lwHcglTVY0OO6yexVsQbFVEqMZ5qkTClRSoHW5FtBL7HFfY39EjO+9RNyPkVhvrTPqyyXvCVKmIauv/uTJ5WoHUaefCpcPBn3dfPgzOPl8Pr77cXp2d9/o9/+RD8rVxvgK9FUc3K7NH5mjLzVnyqpFa10mPTz6tFUhN2AqZLDum3YcBm+MJz1aTtknS0eWeL5c5OLyzqm3p8bcG7YJn95MNu+IASjr6XvBsCsrtj+O2g34z6uY9b9l3h3RHg+8egl4EiquGfvGEP+Bia1jYTtqElwgF2hBgXB3GMM7GZGOjfTDFa5OVxkAIrP0zsjvnNxFrvZndDMbDT0SUboRYmSKMMmFOo0uYx5BNqE/gX3i25Ar0rIEZyUaj9PcfE1dkOw== 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 3616a7e6ad4..f2b0f3e8667 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,353 @@ description: "Updates an existing tenant." sidebar_label: "Update tenant" hide_title: true hide_table_of_contents: true -api: eJztWUtz2zYQ/isYnJIpLSmJk6a8KY7TqE1djyO3B0eHFbESkYAAA4CWNRr+984CpEU9/Eib6eQgz3hEEot9fh8ILlbcw9zx9IqPUYP2fJJwU6IFL40eCZ7yqhTgsRlNuECXWVnSME/5ZRh0DDTDG+m81HPmg2iPJ7wECwV6tGRgxTUUyFMex0eCJ1ySjhJ8zhNu8WslLQqeelvhtqFxjqzS8muFTArUXs4kWmZmzOfYseiyHAvg6Yr7ZUnGnLdSz3ldT6IFdP6NEUuSyIz2qD1dQlkqmYWY+58dGVztqjLTz5hRCkpLGfISHY3GqLYN7vNf44KR9Lbb9ZbwY3V1nu6orLsJvYpObuqZJNxLr8hOLG6s5UVMEq83VVBNwgNXGu1i5M8HA/rZdS56wRbgWESPYK7KMnRuVim1pEL96+SDUn/OApw27b4Bh2xdGTYzlm3GFT0n4/cX9BafjypEA0q88Wg1qDb20Vsq6zdg4zvh4gFM7K94zAxlkBNP9qXjd1x+Uz7c0nksjuaoaS1BwaTeTtC9HlXKh+EuOK616GVQVFpAD0rZ+4JL19NVMUX70y5wBJYWM7LdrigHKP2AUCJczNH+ZywlfGZsAT6qfHX8oI+Pg1fMzx54HcD0A4Lp/1qXSOD4rrdfac21FCiYAA9MOqaNZ9egpLjnxVdaM1VY7F3HugaG7DxKMoEepGIRLAxck+JpiIldXbw7Yb8cv/x58iT3vnRpv79YLHp2lh2hkN7YnrHzvp1l9E9yT3tsnKNFVsCSTZGBEJJsguqi15WYyZnMmDehho3bjPLf+6QfxnAY3a3XLXcrK3fKN2SXF6N227cMW8xt02HODKg6KYepqXw6VaC/8HUlHwLJkLmqKMAuW3xuGqgT7jz4yu1du7prz4vnewH4fjw+Z1EFy4zAsBL4XLrWEAVRSC2LquDp8WCQ8AJu4t2rwSCQjir+iEhoM14q0NClWxuO1KwwFhv8hMCkdh509r0qY6ycy227m6xqQPw2RtQS6sUu3t8ZO5VCoA7wZM0WvmUVKGUWeODVgVcHXt3Dq+NdvJ8Zz2am0iLyqvPFpm9HDqw6sOrAqjtY9XLf9m+o1/tJtNZYZrKsshYFW+RSBfXUBmltN6+ziMUD1w5cO3Btl2t1wgv0uRGxV5zlobPsc57yfnxvuf6q/TiuqQmM9rrtOVdW8ZSvImnqtN9f5cb5Ol2Vxvq6f00VuQYrYaoiDmk4kqsFjTIZqPB4X/FooPuRfBI7COw1uzj9OGa/gscFLEMyyeSm6teD14O9Wkn0Do3D8xGLEUbodZaDVi3xeq/aKPwYxaFh7jCrrPTLjzQtpmeKYNEOK0r/LSQae0E73UchnjQX71qg/Pb3ONSalrKLdTP+9AaKMhKxOSK4A75tM59wOTPBgQY1u6FQXdG6OHHQe7aL0PNRIFpmiqLSYbXVc7aQPmfQSU2mKucpJQlXMkNqHK39bMU+xBH2V7TInvWorBF77SI7lz6vpr3MFP2my3T7O1Vm2i9A6n5jwvVPhn9cnr0dHn0YnZyefTw9etYb9PxN7ImWxvkCdMeP2J5odnHbkXZOOh44r2nK6fHG90sFUlOqQxSrhnFXTdvF8YSntw2pSdLQ5oqvVlNweGlVXdPjrxXaJU+vJmuWxR6ZdHQteDoD5bZPe7oeP7loziCeskeeAe2NonkIehkIryq64wn/Qv2jdWutntQJzxEE2uBnHD6J3hyNScl6+s7BRZ20M4ZZhqW/V3bSWdbOh+OT98SX5miqMIImWVjQwRgseMo/8U/krwkpClQMz1dcgZ5XMCf5qJj+/gFLl6k8 +api: eJztWUtz2zYQ/isYnJopLSmJk6a8KY7TuE1TjyO3B1eHJbESkYAAA4CWNRr+984CpEU9/Eib6eQgz3hEEot9fh8ILlbcw9zx9IpPUIP2fJpwU6EFL40+EzzldSXAYzuacIEut7KiYZ7yyzDoGGiGN9J5qefMB9EBT3gFFkr0aMnAimsokac8jp8JnnBJOirwBU+4xS+1tCh46m2N24YmBbJayy81MilQezmTaJmZMV9gz6LLCyyBpyvulxUZc95KPedNM40W0PnXRixJIjfao/Z0CVWlZB5iHn5yZHC1q8pknzCnFFSWMuQlOhqNUW0b3Oe/xgUj6W23my3hx+rqPd1R2fQTehWd3NQzTbiXXpGdWNxYy4uYJN5sqqCahAeuMtrFyJ+NRvSz61z0gi3AsYgewVyd5+jcrFZqSYX618kHpf6YBTht2n0NDtm6MmxmLNuMK3pOxu8v6C0+H1WIFpR449FqUF3sZ2+orF+BjW+Eiwcwsb/iMTOUQU482ZeO33D5VflwS+exPJqjprUEBZN6O0H3elQrH4b74LjWYpBDWWsBA6jk4DMu3UDXZYb2x13gCKws5mS7W1EOUPoOoUS4mKP9z1hK+MzYEnxU+fL4QR8fB6+Ynz3wOoDpOwTT/7UukcDxXW+/ypprKVAwAR6YdEwbz65BSXHPi6+yJlNY7l3H+gbG7DxKMoEepGIRLAxcm+IsxMSuLt6esJ+PX/w0/aHwvnLpcLhYLAZ2lh+hkN7YgbHzoZ3l9E9yTwZsUqBFVsKSZchACEk2QfXR6yrM5UzmzJtQw9ZtRvkf/K0fxnAY3a3XLXdrK3fKN2aXF2fdtm8ZtpjbpsOcGVB1Ug6ZqX2aKdCf+bqSD4FkzFxdlmCXHT43DTQJdx587fauXf215/mzvQB8N5mcs6iC5UZgWAl8IV1niIIopZZlXfL0eDRKeAk38e7laBRIRxV/RCS0Ga8UaOjTrQtHalYaiy1+QmBSOw86/1aVMVbO5bbdTVa1IH4TI+oI9XwX72+NzaQQqAM8WbuF71gFSpkFHnh14NWBV/fw6ngX7x+MZzNTaxF51fti07cjB1YdWHVg1R2serFv+zfW6/0kWmssM3leW4uCLQqpgnpqg3S229dZxOKBaweuHbi2y7Um4SX6wojYK86L0Fn2BU/5ML633HDVfRw31ARGe931nGureMpXkTRNOhyuCuN8k64qY30zvKaKXIOVkKmIQxqO5OpAo0wOKjzeVzwa6H8kn8QOAnvFLk4/Ttgv4HEBy5BMMrmp+tXo1WivVhK9Q+P4/IzFCCP0estBp5Z4vVdtFH6M4tAwd5jXVvrlR5oW05MhWLTjmtJ/C4nWXtBO91GIJ+3F2w4ov/41CbWmpexi3Yw/vYGyikRsjwjugG/XzCdczkxwoEXNbihUV7QuThwNnu4i9PwsEC03ZVnrsNrqOVtIXzDopSZXtfOUkoQrmSM1jtZ+dmLv4wj7M1pkTwdU1oi9bpGdS1/U2SA35bDtMt3+ZspkwxKkHrYm3PBk/Pvlhzfjo/dnJ6cfPp4ePR2MBv4m9kQr43wJuudHbE+0u7jtSHsnHQ+c17Tl9Hjjh5UCqSnVIYpVy7irtu3ieMLT24bUNGlpc8VXqwwcXlrVNPT4S412ydOr6ZplsUcmHV0Lns5Aue3Tnr7HP1y0ZxBP2CPPgPZG0T4EvQyEVzXd8YR/pv7RurXWTJuEFwgCbfAzDp9Eb44mpGQ9fefgokm6GeM8x8rfKzvtLWvn48nJO+JLezRVGkGTLCzoYAwW0VcT0hNoGJ6tuAI9r2FOslEp/f0DuX6oQA== 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 61e05694190..7c32822556f 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/update-user.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-user.api.mdx index ba9f1d5b7f6..0bcc60455a2 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/update-user.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/update-user.api.mdx @@ -5,56 +5,258 @@ description: "Updates a user." sidebar_label: "Update user" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/SsYnJIpLcqJ06a8qYrdOJO6HltuD44PS2IlIgEBBgAtazT8750FSH078aFHeUZjEli8/cB7ILlL7mHmeHbP7xxa/pBwU6MFL42+FDzjTS3AY5hLuEBXWFnTJM/4XZhyDFjj0A6+aJ7wGixU6NES5JJrqJBAHNpwmXBJK2vwJU+4xe+NtCh45m2Du/CTElm/kJkp890984bFqAY84a4osQKeLblf1OTLeSv1jLftQ3SAzv9hxIIsCqM9ak+XUNdKFiHN9Ksjf8t9KJN/xcJTVpaK4iW6AFOCnqHDALQd86fbv69YXMbm0pcs2ooYOHhvZd54ZI+gGnSxZD92Fiu4m92hWmmcs91aDXibcKxAqpdjBPM9kBqcmxsrXo7Tr9iBahPupVcEQKwar4q5OxPpdRO3kLc0vU2YMOBqo10s1Zvh2f6O9Cxic3AdbQRzTVGgc9NGqUXI7mw4PLy0tuZRChRMgAcmHdPG0+5JQeR7hlC1NbnC6pd9Ym07GLHraMkE+lD0yBxwLBrmKJjU7P7mYsx+P3v328Or0vvaZWk6n88HdlqcoJDe2IGxs9ROC/qR3esBm5RokVWwYDkyEEKST1BszS7maizkVBYkKB9zDcHQ9r6EmnF2nw5TYyvwJHsr99gxYnc3l0wK1F5OF1LP9l2HNVNoFGFAbhqf5Qr0N74myM84OGKuqSqwi5582w7ahDsPvtlIg0vtcRZOuVX8Uvu3bw7y++Nkcs0iBCuMQDY1lvlSut4RJVFJLaum4tnZcJjwCp7i3a/DYUuY/kWqHGmGT7UCHai1m47UrDIWO/6ExKR2HnTxf+2MsXImd/1uy7gj8YeYURuUejZ8u8/3C2NzKQTqQE/Wnc69qkApM8ejro66OurqB7r62TOOpDQ1jT4K6Siko5CeFdK7Q298I82oypZ4iNYay0xRNNaiYPNSqgBPL4697+4JFrl41NpRa0et7WutTXiFvjQifvgXZWgT+JJnPKWnlkuX/Wd+Sx/0aB/79kFjFc/4MkqmzdJ0WRrn22xZG+vb9JH24xGshFxFFtJ0lFZPGWUKUGH40NbRxOY38xiqRgtg79nN+e2E/Qke5xA/EcnlNvT74fvhQVQyfQZxdH3JYoaReBuHQQ9Lqj4IG41fAhyaHw6Lxkq/uKVlsTw5gkU7aqj4K0J0/gI63UcjnnQXFz1NPv07CTtNB9nNurFy/gRVHWW41RjpWj8runVdiPXAuqOw7tkQY6cmBNfxaT9N2nO0LtZlODjd5+71ZZBgYaqq0eEc1rPYjoGNshWqcZ7KlXAlC9QON8LuzT7HGfZP9MhOB7TlkZf98TuTvmzyQWGqtIjLVv9zZfK0AqnTzoVLx6O/7q4+jE4+X47Pr27PT04Hw4F/iu2P2jhfgd6IIzZBwtvdbp4b/ayDrbhuez0++bRWIDURLkS+7PR3Hxpzjic8W3XoHpJORPd8uczB4Z1VbUvD3xu0C57dP6w1F0QqpKNrwbMpKLfbxtuM8tVN1795zV7W3DuYQjcIehHUrxq64wn/hovNVmP70Ca8RBBoQ5hxehyDOZkQyHr5XjuwTfoVo6LA2j9ju/VwJ9GtTrrr0WT8kUTU9R4rI2ixhTk1PmHOM/6Ff6G4TahU0GcYX3IFetbAjOwjMP39B76XdQU= +api: eJztWE1z2zYQ/SsYnJIpLcqJ07q8qYrTOJO4HltuD64PS2IlIgEBBgAtazT8750FSH078aFHeUZjEli8/cB7ILlL7mHmeHbP7xxa/pBwU6MFL42+FDzjTS3AY5hLuEBXWFnTJM/4XZhyDFjj0A7+1TzhNVio0KMlyCXXUCGBOLThMuGSVtbgS55wi98baVHwzNsGd+EnJbJ+ITNT5rt75g2LUQ14wl1RYgU8W3K/qMmX81bqGW/bh+gAnf/DiAVZFEZ71J4uoa6VLEKa6VdH/pb7UCb/ioWnrCwVxUt0AaYEPUOHAWg75k+3f12xuIzNpS9ZtBUxcPDeyrzxyB5BNehiyX7sLFZwN7tDtdI4Z7u1GvA24ViBVC/HCOZ7IDU4NzdWvBynX7ED1SbcS68IgFg1XhVzdybS6yZuIW9pepswYcDVRrtYqjfDs/0d6VnE5uA62gjmmqJA56aNUouQ3dlweHhpbc2jFCiYAA9MOqaNp92Tgsj3DKFqa3KF1S/7xNp2MGLX0ZIJ9KHokTngWDTMUTCp2f3NhzH7/ezdbw+vSu9rl6XpfD4f2GlxgkJ6YwfGzlI7LehHdq8HbFKiRVbBguXIQAhJPkGxNbuYq7GQU1mQoHzMNQRD2/sSasbZfTpMja3Ak+yt3GPHiN3dXDIpUHs5XUg923cd1kyhUYQBuWl8livQ3/iaID/j4Ii5pqrALnrybTtoE+48+GYjDS61x1k45VbxS+3fvjnI74+TyTWLEKwwAtnUWOZL6XpHlEQltayaimdnw2HCK3iKd78Ohy1h+hepcqQZPtUKdKDWbjpSs8pY7PgTEpPaedDF/7UzxsqZ3PW7LeOOxO9jRm1Q6tnw7T7fPxibSyFQB3qy7nTuVQVKmTkedXXU1VFXP9DVz55xJKWpafRRSEchHYX0rJDeHXrjG2lGVbbEQ7TWWGaKorEWBZuXUgV4enHsfXdPsMjFo9aOWjtqbV9rbcIr9KUR8cO/KEObwJc84yk9tVy67D/zW/qgR/vYtw8aq3jGl1EybZamy9I432bL2ljfpo+0H49gJeQqspCmo7R6yihTgArDh7aOJja/mcdQNVoAO2c3F7cT9id4nEP8RCSX29Dnw/PhQVQyfQZxdH3JYoaReBuHQQ9Lqj4IG41fAhyaHw6Lxkq/uKVlsTw5gkU7aqj4K0J0/gI63UcjnnQXH3qafPpnEnaaDrKbdWPl4gmqOspwqzHStX5WdOu6EOuBdUdh3bMhxk5NCK7j036atOdoXazLcHC6z93ryyDBwlRVo8M5rGexHQMbZStU4zyVK+FKFqgdboTdm32OM+zv6JGdDmjLIy/743cmfdnkg8JUaRGXrf7nyuRpBVKnnQuXjkdf7q7ej04+X44vrm4vTk4Hw4F/iu2P2jhfgd6IIzZBwtvdbp4b/ayDrbhuez0++bRWIDURLkS+7PR3Hxpzjic8W3XoHpJORPd8uczB4Z1VbUvD3xu0C57dP6w1F0QqpKNrwbMpKLfbxtuM8tVN1795zV7W3DuYQjcIehHUrxq64wn/hovNVmP70Ca8RBBoQ5hxehyDOZkQyHr5XjuwTfoVo6LA2j9ju/VwJ9GtTrrr0WT8kUTU9R4rI2ixhTk1PmEeYzahSkGbYWzJFehZAzOyjaD09x/9aXQJ 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

+ - + Updates a user. -## Request + -

Path Parameters

Body

required
    changeset object
    + -JSON object with changed user attribute values. + -
- -The user 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}}>
- -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 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/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..0e35b45c511 --- /dev/null +++ b/docs/apis-tools/operate-api/specifications/versions.json @@ -0,0 +1,22 @@ +[ + { + "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" + }, + { + "version": "8.5", + "label": "Unused but required field", + "baseUrl": "Unused but required field" + }, + { + "version": "8.4", + "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..5a98c4d7b6e 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..521bd7abd1d 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: 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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"; -

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..f8f3b4c5fe1 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 9a6fa3c735a..0b27e33048f 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: 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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 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 job worker-based user tasks managed by Camunda.", + 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 Camunda 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..d331349c5eb 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..0e35b45c511 --- /dev/null +++ b/docs/apis-tools/tasklist-api-rest/specifications/versions.json @@ -0,0 +1,22 @@ +[ + { + "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" + }, + { + "version": "8.5", + "label": "Unused but required field", + "baseUrl": "Unused but required field" + }, + { + "version": "8.4", + "label": "Unused but required field", + "baseUrl": "Unused but required field" + } +] diff --git a/docs/apis-tools/tasklist-api/tasklist-api-tutorial.md b/docs/apis-tools/tasklist-api/tasklist-api-tutorial.md index 3dad8bb79cd..5ecdd5ba456 100644 --- a/docs/apis-tools/tasklist-api/tasklist-api-tutorial.md +++ b/docs/apis-tools/tasklist-api/tasklist-api-tutorial.md @@ -250,9 +250,8 @@ export class TasklistModule implements OnModuleInit { logger.log("Tasklist credentials fetched"); axiosRef.defaults.baseURL = config.get("TASKLIST_API_ADDRESS"); - axiosRef.defaults.headers[ - "Authorization" - ] = `Bearer ${credentials.access_token}`; + axiosRef.defaults.headers["Authorization"] = + `Bearer ${credentials.access_token}`; axiosRef.defaults.headers["Content-Type"] = "application/json"; setTimeout(this.onModuleInit.bind(this), credentials.expires_in * 1000); // we need convert minutes to milliseconds } diff --git a/docs/apis-tools/zeebe-api-rest/specifications/versions.json b/docs/apis-tools/zeebe-api-rest/specifications/versions.json new file mode 100644 index 00000000000..ced5921e6f7 --- /dev/null +++ b/docs/apis-tools/zeebe-api-rest/specifications/versions.json @@ -0,0 +1,17 @@ +[ + { + "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" + }, + { + "version": "8.5", + "label": "Unused but required field", + "baseUrl": "Unused but required field" + } +] diff --git a/docusaurus.config.js b/docusaurus.config.js index 24d76ac7f22..4d8f6f41abe 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -4,6 +4,7 @@ const { unsupportedVersions } = require("./src/versions"); const latestVersion = require("./src/versions").versionMappings[0].docsVersion; const docsSiteUrl = process.env.DOCS_SITE_URL || "https://docs.camunda.io"; +const { themes } = require("prism-react-renderer"); module.exports = { title: "Camunda 8 Docs", @@ -78,6 +79,32 @@ 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", + }, + 8.5: { + specPath: "api/operate/version-8.5/operate-openapi.yaml", + outputDir: + "versioned_docs/version-8.5/apis-tools/operate-api/specifications", + label: "Unused but required field", + baseUrl: "Unused but required field", + }, + 8.4: { + specPath: "api/operate/version-8.4/operate-openapi.yaml", + outputDir: + "versioned_docs/version-8.4/apis-tools/operate-api/specifications", + label: "Unused but required field", + baseUrl: "Unused but required field", + }, + }, }, }, }, @@ -96,6 +123,32 @@ 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", + }, + 8.5: { + specPath: "api/tasklist/version-8.5/tasklist-openapi.yaml", + outputDir: + "versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications", + label: "Unused but required field", + baseUrl: "Unused but required field", + }, + 8.4: { + specPath: "api/tasklist/version-8.4/tasklist-openapi.yaml", + outputDir: + "versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications", + label: "Unused but required field", + baseUrl: "Unused but required field", + }, + }, }, }, }, @@ -114,6 +167,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 +198,55 @@ 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: "docs/apis-tools/zeebe-api-rest/specifications", + 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", + }, + 8.5: { + specPath: "api/zeebe/version-8.5/zeebe-openapi.yaml", + outputDir: + "versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications", + label: "Unused but required field", + baseUrl: "Unused but required field", + }, + }, }, }, }, @@ -172,8 +287,8 @@ module.exports = { prism: { additionalLanguages: ["java", "protobuf", "csharp"], - theme: require("prism-react-renderer/themes/palenight"), - darkTheme: require("prism-react-renderer/themes/dracula"), + theme: themes.palenight, + darkTheme: themes.dracula, }, navbar: { title: "Camunda 8 Docs", @@ -341,7 +456,7 @@ module.exports = { { highlight: "bash", language: "curl", - logoClass: "bash", + logoClass: "curl", }, { highlight: "java", @@ -414,7 +529,6 @@ module.exports = { banner: "none", }, }, - docLayoutComponent: "@theme/DocPage", docItemComponent: "@theme/ApiItem", }, blog: false, diff --git a/hacks/isolateVersion/assets/theme/DocVersionBanner/index.js b/hacks/isolateVersion/assets/theme/DocVersionBanner/index.js index ff78c428377..1d889c31b4e 100644 --- a/hacks/isolateVersion/assets/theme/DocVersionBanner/index.js +++ b/hacks/isolateVersion/assets/theme/DocVersionBanner/index.js @@ -15,7 +15,7 @@ import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; import Link from "@docusaurus/Link"; import Translate from "@docusaurus/Translate"; import { ThemeClassNames } from "@docusaurus/theme-common"; -import { useDocsVersion } from "@docusaurus/theme-common/internal"; +import { useDocsVersion } from "@docusaurus/plugin-content-docs/client"; function UnmaintainedVersionLabel({ siteTitle, versionMetadata }) { return ( diff --git a/package-lock.json b/package-lock.json index 74a3fb1512f..515b7df01cf 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.7.0", + "@docusaurus/preset-classic": "^3.7.0", + "@docusaurus/theme-mermaid": "^3.7.0", + "@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.9", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.17.9.tgz", + "integrity": "sha512-O7BxrpLDPJWWHv/DLA9DRFWs+iY1uOJZkqUwjS5HSZAGcl0hIVCQ97LTLewiZmZ402JYUrun+8NqFP+hCknlbQ==", "license": "MIT", "dependencies": { - "@algolia/autocomplete-plugin-algolia-insights": "1.9.3", - "@algolia/autocomplete-shared": "1.9.3" + "@algolia/autocomplete-plugin-algolia-insights": "1.17.9", + "@algolia/autocomplete-shared": "1.17.9" } }, "node_modules/@algolia/autocomplete-plugin-algolia-insights": { - "version": "1.9.3", + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.9.tgz", + "integrity": "sha512-u1fEHkCbWF92DBeB/KHeMacsjsoI0wFhjZtlCq2ddZbAehshbZST6Hs0Avkc0s+4UyBGbMDnSuXHLuvRWK5iDQ==", "license": "MIT", "dependencies": { - "@algolia/autocomplete-shared": "1.9.3" + "@algolia/autocomplete-shared": "1.17.9" }, "peerDependencies": { "search-insights": ">= 1 < 3" } }, "node_modules/@algolia/autocomplete-preset-algolia": { - "version": "1.9.3", + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.9.tgz", + "integrity": "sha512-Na1OuceSJeg8j7ZWn5ssMu/Ax3amtOwk76u4h5J4eK2Nx2KB5qt0Z4cOapCsxot9VcEN11ADV5aUSlQF4RhGjQ==", "license": "MIT", "dependencies": { - "@algolia/autocomplete-shared": "1.9.3" + "@algolia/autocomplete-shared": "1.17.9" }, "peerDependencies": { "@algolia/client-search": ">= 4.9.1 < 6", @@ -69,122 +75,206 @@ } }, "node_modules/@algolia/autocomplete-shared": { - "version": "1.9.3", + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.9.tgz", + "integrity": "sha512-iDf05JDQ7I0b7JEA/9IektxN/80a2MZ1ToohfmNS3rfeuQnIKI3IJlIafD0xu4StbtQTghx9T3Maa97ytkXenQ==", "license": "MIT", "peerDependencies": { "@algolia/client-search": ">= 4.9.1 < 6", "algoliasearch": ">= 4.9.1 < 6" } }, - "node_modules/@algolia/cache-browser-local-storage": { - "version": "4.19.1", + "node_modules/@algolia/client-abtesting": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.20.0.tgz", + "integrity": "sha512-YaEoNc1Xf2Yk6oCfXXkZ4+dIPLulCx8Ivqj0OsdkHWnsI3aOJChY5qsfyHhDBNSOhqn2ilgHWxSfyZrjxBcAww==", "license": "MIT", "dependencies": { - "@algolia/cache-common": "4.19.1" + "@algolia/client-common": "5.20.0", + "@algolia/requester-browser-xhr": "5.20.0", + "@algolia/requester-fetch": "5.20.0", + "@algolia/requester-node-http": "5.20.0" + }, + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/@algolia/cache-common": { - "version": "4.19.1", - "license": "MIT" - }, - "node_modules/@algolia/cache-in-memory": { - "version": "4.19.1", + "node_modules/@algolia/client-analytics": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.20.0.tgz", + "integrity": "sha512-CIT9ni0+5sYwqehw+t5cesjho3ugKQjPVy/iPiJvtJX4g8Cdb6je6SPt2uX72cf2ISiXCAX9U3cY0nN0efnRDw==", "license": "MIT", "dependencies": { - "@algolia/cache-common": "4.19.1" + "@algolia/client-common": "5.20.0", + "@algolia/requester-browser-xhr": "5.20.0", + "@algolia/requester-fetch": "5.20.0", + "@algolia/requester-node-http": "5.20.0" + }, + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/@algolia/client-account": { - "version": "4.19.1", + "node_modules/@algolia/client-common": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.20.0.tgz", + "integrity": "sha512-iSTFT3IU8KNpbAHcBUJw2HUrPnMXeXLyGajmCL7gIzWOsYM4GabZDHXOFx93WGiXMti1dymz8k8R+bfHv1YZmA==", "license": "MIT", - "dependencies": { - "@algolia/client-common": "4.19.1", - "@algolia/client-search": "4.19.1", - "@algolia/transporter": "4.19.1" + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/@algolia/client-analytics": { - "version": "4.19.1", + "node_modules/@algolia/client-insights": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.20.0.tgz", + "integrity": "sha512-w9RIojD45z1csvW1vZmAko82fqE/Dm+Ovsy2ElTsjFDB0HMAiLh2FO86hMHbEXDPz6GhHKgGNmBRiRP8dDPgJg==", "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": "5.20.0", + "@algolia/requester-browser-xhr": "5.20.0", + "@algolia/requester-fetch": "5.20.0", + "@algolia/requester-node-http": "5.20.0" + }, + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/@algolia/client-common": { - "version": "4.19.1", + "node_modules/@algolia/client-personalization": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.20.0.tgz", + "integrity": "sha512-p/hftHhrbiHaEcxubYOzqVV4gUqYWLpTwK+nl2xN3eTrSW9SNuFlAvUBFqPXSVBqc6J5XL9dNKn3y8OA1KElSQ==", "license": "MIT", "dependencies": { - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "5.20.0", + "@algolia/requester-browser-xhr": "5.20.0", + "@algolia/requester-fetch": "5.20.0", + "@algolia/requester-node-http": "5.20.0" + }, + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/@algolia/client-personalization": { - "version": "4.19.1", + "node_modules/@algolia/client-query-suggestions": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.20.0.tgz", + "integrity": "sha512-m4aAuis5vZi7P4gTfiEs6YPrk/9hNTESj3gEmGFgfJw3hO2ubdS4jSId1URd6dGdt0ax2QuapXufcrN58hPUcw==", "license": "MIT", "dependencies": { - "@algolia/client-common": "4.19.1", - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "5.20.0", + "@algolia/requester-browser-xhr": "5.20.0", + "@algolia/requester-fetch": "5.20.0", + "@algolia/requester-node-http": "5.20.0" + }, + "engines": { + "node": ">= 14.0.0" } }, "node_modules/@algolia/client-search": { - "version": "4.19.1", + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.20.0.tgz", + "integrity": "sha512-KL1zWTzrlN4MSiaK1ea560iCA/UewMbS4ZsLQRPoDTWyrbDKVbztkPwwv764LAqgXk0fvkNZvJ3IelcK7DqhjQ==", "license": "MIT", "dependencies": { - "@algolia/client-common": "4.19.1", - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "5.20.0", + "@algolia/requester-browser-xhr": "5.20.0", + "@algolia/requester-fetch": "5.20.0", + "@algolia/requester-node-http": "5.20.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/logger-common": { - "version": "4.19.1", - "license": "MIT" + "node_modules/@algolia/ingestion": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.20.0.tgz", + "integrity": "sha512-shj2lTdzl9un4XJblrgqg54DoK6JeKFO8K8qInMu4XhE2JuB8De6PUuXAQwiRigZupbI0xq8aM0LKdc9+qiLQA==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.20.0", + "@algolia/requester-browser-xhr": "5.20.0", + "@algolia/requester-fetch": "5.20.0", + "@algolia/requester-node-http": "5.20.0" + }, + "engines": { + "node": ">= 14.0.0" + } }, - "node_modules/@algolia/logger-console": { - "version": "4.19.1", + "node_modules/@algolia/monitoring": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.20.0.tgz", + "integrity": "sha512-aF9blPwOhKtWvkjyyXh9P5peqmhCA1XxLBRgItT+K6pbT0q4hBDQrCid+pQZJYy4HFUKjB/NDDwyzFhj/rwKhw==", "license": "MIT", "dependencies": { - "@algolia/logger-common": "4.19.1" + "@algolia/client-common": "5.20.0", + "@algolia/requester-browser-xhr": "5.20.0", + "@algolia/requester-fetch": "5.20.0", + "@algolia/requester-node-http": "5.20.0" + }, + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/@algolia/requester-browser-xhr": { - "version": "4.19.1", + "node_modules/@algolia/recommend": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.20.0.tgz", + "integrity": "sha512-T6B/WPdZR3b89/F9Vvk6QCbt/wrLAtrGoL8z4qPXDFApQ8MuTFWbleN/4rHn6APWO3ps+BUePIEbue2rY5MlRw==", "license": "MIT", "dependencies": { - "@algolia/requester-common": "4.19.1" + "@algolia/client-common": "5.20.0", + "@algolia/requester-browser-xhr": "5.20.0", + "@algolia/requester-fetch": "5.20.0", + "@algolia/requester-node-http": "5.20.0" + }, + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/@algolia/requester-common": { - "version": "4.19.1", - "license": "MIT" + "node_modules/@algolia/requester-browser-xhr": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.20.0.tgz", + "integrity": "sha512-t6//lXsq8E85JMenHrI6mhViipUT5riNhEfCcvtRsTV+KIBpC6Od18eK864dmBhoc5MubM0f+sGpKOqJIlBSCg==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.20.0" + }, + "engines": { + "node": ">= 14.0.0" + } }, - "node_modules/@algolia/requester-node-http": { - "version": "4.19.1", + "node_modules/@algolia/requester-fetch": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.20.0.tgz", + "integrity": "sha512-FHxYGqRY+6bgjKsK4aUsTAg6xMs2S21elPe4Y50GB0Y041ihvw41Vlwy2QS6K9ldoftX4JvXodbKTcmuQxywdQ==", "license": "MIT", "dependencies": { - "@algolia/requester-common": "4.19.1" + "@algolia/client-common": "5.20.0" + }, + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/@algolia/transporter": { - "version": "4.19.1", + "node_modules/@algolia/requester-node-http": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.20.0.tgz", + "integrity": "sha512-kmtQClq/w3vtPteDSPvaW9SPZL/xrIgMrxZyAgsFwrJk0vJxqyC5/hwHmrCraDnStnGSADnLpBf4SpZnwnkwWw==", "license": "MIT", "dependencies": { - "@algolia/cache-common": "4.19.1", - "@algolia/logger-common": "4.19.1", - "@algolia/requester-common": "4.19.1" + "@algolia/client-common": "5.20.0" + }, + "engines": { + "node": ">= 14.0.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 +283,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 +326,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 +338,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 +356,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 +368,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 +394,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 +420,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 +435,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 +447,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 +477,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 +503,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 +545,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 +558,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 +572,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 +587,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 +610,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 +643,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 +652,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 +661,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 +684,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,180 +694,194 @@ } }, "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": ">=4" } }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.18.9", + "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-plugin-utils": "^7.18.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", - "@babel/plugin-proposal-optional-chaining": "^7.18.9" - }, + "color-name": "1.1.3" + } + }, + "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/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", "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" + "node": ">=0.8.0" } }, - "node_modules/@babel/plugin-proposal-async-generator-functions": { - "version": "7.20.1", + "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-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" + "node": ">=4" } }, - "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.18.6", + "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-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=4" } }, - "node_modules/@babel/plugin-proposal-class-static-block": { - "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-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-class-static-block": "^7.14.5" + "@babel/types": "^7.26.3" }, - "engines": { - "node": ">=6.9.0" + "bin": { + "parser": "bin/babel-parser.js" }, - "peerDependencies": { - "@babel/core": "^7.12.0" + "engines": { + "node": ">=6.0.0" } }, - "node_modules/@babel/plugin-proposal-dynamic-import": { - "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-dynamic-import": "^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-export-namespace-from": { - "version": "7.18.9", + "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.9", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + "@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-json-strings": { - "version": "7.18.6", + "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/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" + "@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-logical-assignment-operators": { - "version": "7.18.9", + "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.9", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + "@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-nullish-coalescing-operator": { - "version": "7.18.6", + "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.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": { + "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-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" }, "engines": { "node": ">=6.9.0" @@ -804,57 +891,17 @@ } }, "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.20.2", + "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/compat-data": "^7.20.1", - "@babel/helper-compilation-targets": "^7.20.0", + "@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.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.18.9", - "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" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-private-methods": { - "version": "7.18.6", - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/plugin-transform-parameters": "^7.20.7" }, "engines": { "node": ">=6.9.0" @@ -864,14 +911,10 @@ } }, "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.18.6", + "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-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" - }, "engines": { "node": ">=6.9.0" }, @@ -879,22 +922,11 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" @@ -905,6 +937,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 +950,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 +963,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 +979,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 +989,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 +1008,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 +1021,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 +1034,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 +1046,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 +1062,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 +1075,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 +1088,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 +1101,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 +1113,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 +1126,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 +1139,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 +1155,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 +1170,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 +1184,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 +1215,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 +1232,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 +1249,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 +1264,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 +1279,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 +1295,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 +1331,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 +1347,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 +1362,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 +1378,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 +1393,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 +1424,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 +1439,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 +1454,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 +1470,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 +1502,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 +1517,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 +1532,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 +1547,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 +1563,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 +1579,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 +1597,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 +1613,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 +1644,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 +1659,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 +1674,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 +1691,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 +1707,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 +1722,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 +1738,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 +1753,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 +1769,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 +1786,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 +1801,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 +1831,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 +1897,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,113 +1928,499 @@ "@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_modules/@babel/register/node_modules/semver": { - "version": "5.7.1", - "license": "ISC", - "bin": { - "semver": "bin/semver" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/runtime": { - "version": "7.22.11", + "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": { - "regenerator-runtime": "^0.14.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/runtime-corejs3": { - "version": "7.18.9", + "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": { - "core-js-pure": "^3.20.2", - "regenerator-runtime": "^0.13.4" + "@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/runtime/node_modules/regenerator-runtime": { - "version": "0.14.0", - "license": "MIT" + "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.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.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" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime-corejs3": { + "version": "7.26.7", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.26.7.tgz", + "integrity": "sha512-55gRV8vGrCIYZnaQHQrD92Lo/hYE3Sj5tmbuf0hhHR7sj2CWhEhHU89hbq+UVDXvFG1zUVXJhUkEq1eAfqXtFw==", + "license": "MIT", + "dependencies": { + "core-js-pure": "^3.30.2", + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } }, "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 +2431,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 +2449,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 +2463,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 +2488,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 +2497,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 +2518,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 +2528,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 +2562,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 +2586,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 +2607,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 +2626,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 +2636,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 +2647,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/@codemirror/autocomplete": { - "version": "6.18.3", - "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.18.3.tgz", - "integrity": "sha512-1dNIOmiM0z4BIBwxmxEfA1yoxh1MF/6KPBbh20a5vphGV0ictKlgQsbJs6D6SkR6iJpGbpwRsa6PFMNlg9T9pQ==", + "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": { - "@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" + "@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.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" } }, "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 +2717,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 +2726,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 +2743,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 +2754,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,1072 +2762,2007 @@ } }, "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.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.1.tgz", + "integrity": "sha512-rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag==", + "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.7", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.7.tgz", + "integrity": "sha512-nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA==", + "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.1" }, "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.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-4.0.7.tgz", + "integrity": "sha512-aDHYmhNIHR6iLw4ElWhf+tRqqaXwKnMl0YsQ/X105Zc4dQwe6yJpMrTN6BwOoESrkDjOYMOfORviSSLeDTJkdQ==", + "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.7", + "@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.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-3.0.7.tgz", + "integrity": "sha512-e68Nev4CxZYCLcrfWhHH4u/N1YocOfTmw67/kVX5Rb7rnguqqLyxPjhHWjSBX8o4bmyuukmNf3wrUSU3//kT7g==", + "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.7", + "@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.6", + "resolved": "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-2.0.6.tgz", + "integrity": "sha512-IgJA5DQsQLu/upA3HcdvC6xEMR051ufebBTIXZ5E9/9iiaA7juXWz1ceYj814lnDYP/7eWjZnw0grRJlX4eI6g==", + "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.1", + "@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.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-2.0.7.tgz", + "integrity": "sha512-gzFEZPoOkY0HqGdyeBXR3JP218Owr683u7KOZazTK7tQZBE8s2yhg06W1tshOqk7R7SWvw9gkw2TQogKpIW8Xw==", + "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.7", + "@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.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-5.0.7.tgz", + "integrity": "sha512-WgEyBeg6glUeTdS2XT7qeTFBthTJuXlS9GFro/DVomj7W7WMTamAwpoP4oQCq/0Ki2gvfRYFi/uZtmRE14/DFA==", + "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.7", + "@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.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-4.0.7.tgz", + "integrity": "sha512-LKYqjO+wGwDCfNIEllessCBWfR4MS/sS1WXO+j00KKyOjm7jDW2L6jzUmqASEiv/kkJO39GcoIOvTTfB3yeBUA==", + "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.7", + "@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" + "postcss": "^8.4" } }, - "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" + "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/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" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "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.6", + "resolved": "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-2.0.6.tgz", + "integrity": "sha512-J1+4Fr2W3pLZsfxkFazK+9kr96LhEYqoeBszLmFjb6AjYs+g9oDAw3J5oQignLKk3rC9XHW+ebPTZ9FaW5u5pg==", + "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.1", + "@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.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-4.0.7.tgz", + "integrity": "sha512-I6WFQIbEKG2IO3vhaMGZDkucbCaUSXMxvHNzDdnfsTCF5tc0UlV3Oe2AhamatQoKFjBi75dSEMrgWq3+RegsOQ==", + "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.7", + "@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.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-random-function/-/postcss-random-function-1.0.2.tgz", + "integrity": "sha512-vBCT6JvgdEkvRc91NFoNrLjgGtkLWt47GKT6E2UDn3nd8ZkMBiziQ1Md1OiKoSsgzxsSnGKG3RVdhlbdZEkHjA==", + "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.1", + "@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.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-3.0.7.tgz", + "integrity": "sha512-apbT31vsJVd18MabfPOnE977xgct5B1I+Jpf+Munw3n6kKb1MMuUmGGH+PT9Hm/fFs6fe61Q/EWnkrb4bNoNQw==", + "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.7", + "@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.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-sign-functions/-/postcss-sign-functions-1.1.1.tgz", + "integrity": "sha512-MslYkZCeMQDxetNkfmmQYgKCy4c+w9pPDfgOBCJOo/RI1RveEUdZQYtOfrC6cIZB7sD7/PHr2VGOcMXlZawrnA==", + "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.1", + "@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-common/node_modules/clsx": { - "version": "1.2.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/@docusaurus/theme-mermaid": { - "version": "2.4.1", - "license": "MIT", + "node_modules/@csstools/postcss-stepped-value-functions": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-4.0.6.tgz", + "integrity": "sha512-/dwlO9w8vfKgiADxpxUbZOWlL5zKoRIsCymYoh1IPuBsXODKanKnfuZRr32DEqT0//3Av1VjfNZU9yhxtEfIeA==", + "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.1", + "@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" + "postcss": "^8.4" } }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/clsx": { - "version": "1.2.1", - "license": "MIT", + "node_modules/@csstools/postcss-trigonometric-functions": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-4.0.6.tgz", + "integrity": "sha512-c4Y1D2Why/PeccaSouXnTt6WcNHJkoJRidV2VW9s5gJ97cNxnLgQ4Qj8qOqkIR9VmTQKJyNcbF4hy79ZQnWD7A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-calc": "^2.1.1", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3" + }, "engines": { - "node": ">=6" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/theme-translations": { - "version": "2.4.1", - "license": "MIT", - "dependencies": { - "fs-extra": "^10.1.0", - "tslib": "^2.4.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": { + "postcss": "^8.4" + } + }, + "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": { + "postcss": "^8.4" } }, - "node_modules/@docusaurus/types": { - "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", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@docsearch/css": { + "version": "3.8.3", + "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.8.3.tgz", + "integrity": "sha512-1nELpMV40JDLJ6rpVVFX48R1jsBFIQ6RnEQDsLFGmzOjPWTOMlZqUcXcvRx8VmYV/TqnS1l784Ofz+ZEb+wEOQ==", + "license": "MIT" + }, + "node_modules/@docsearch/react": { + "version": "3.8.3", + "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.8.3.tgz", + "integrity": "sha512-6UNrg88K7lJWmuS6zFPL/xgL+n326qXqZ7Ybyy4E8P/6Rcblk3GE8RXxeol4Pd5pFpKMhOhBhzABKKwHtbJCIg==", "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" + "@algolia/autocomplete-core": "1.17.9", + "@algolia/autocomplete-preset-algolia": "1.17.9", + "@docsearch/css": "3.8.3", + "algoliasearch": "^5.14.2" }, "peerDependencies": { - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "@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 + }, + "react-dom": { + "optional": true + }, + "search-insights": { + "optional": true + } } }, - "node_modules/@docusaurus/utils": { - "version": "2.4.1", + "node_modules/@docusaurus/babel": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/babel/-/babel-3.7.0.tgz", + "integrity": "sha512-0H5uoJLm14S/oKV3Keihxvh8RV+vrid+6Gv+2qhuzbqHanawga8tYnsdpjEyt36ucJjqlby2/Md2ObWjA02UXQ==", "license": "MIT", "dependencies": { - "@docusaurus/logger": "2.4.1", - "@svgr/webpack": "^6.2.1", - "escape-string-regexp": "^4.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.7.0", + "@docusaurus/utils": "3.7.0", + "babel-plugin-dynamic-import-node": "^2.3.3", + "fs-extra": "^11.1.1", + "tslib": "^2.6.0" + }, + "engines": { + "node": ">=18.0" + } + }, + "node_modules/@docusaurus/bundler": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/bundler/-/bundler-3.7.0.tgz", + "integrity": "sha512-CUUT9VlSGukrCU5ctZucykvgCISivct+cby28wJwCC/fkQFgAHRp/GKv2tx38ZmXb7nacrKzFTcp++f9txUYGg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.25.9", + "@docusaurus/babel": "3.7.0", + "@docusaurus/cssnano-preset": "3.7.0", + "@docusaurus/logger": "3.7.0", + "@docusaurus/types": "3.7.0", + "@docusaurus/utils": "3.7.0", + "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", - "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", + "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.73.0" + "webpack": "^5.95.0", + "webpackbar": "^6.0.1" }, "engines": { - "node": ">=16.14" + "node": ">=18.0" }, "peerDependencies": { - "@docusaurus/types": "*" + "@docusaurus/faster": "*" }, "peerDependenciesMeta": { - "@docusaurus/types": { + "@docusaurus/faster": { "optional": true } } }, - "node_modules/@docusaurus/utils-common": { - "version": "2.4.1", + "node_modules/@docusaurus/core": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-3.7.0.tgz", + "integrity": "sha512-b0fUmaL+JbzDIQaamzpAFpTviiaU4cX3Qz8cuo14+HGBCwa0evEK0UYCBFY3n4cLzL8Op1BueeroUD2LYAIHbQ==", "license": "MIT", "dependencies": { - "tslib": "^2.4.0" + "@docusaurus/babel": "3.7.0", + "@docusaurus/bundler": "3.7.0", + "@docusaurus/logger": "3.7.0", + "@docusaurus/mdx-loader": "3.7.0", + "@docusaurus/utils": "3.7.0", + "@docusaurus/utils-common": "3.7.0", + "@docusaurus/utils-validation": "3.7.0", + "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": "npm:@slorber/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", + "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": ">=16.14" + "node": ">=18.0" }, "peerDependencies": { - "@docusaurus/types": "*" - }, - "peerDependenciesMeta": { - "@docusaurus/types": { - "optional": true - } + "@mdx-js/react": "^3.0.0", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/utils-validation": { - "version": "2.4.1", + "node_modules/@docusaurus/cssnano-preset": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-3.7.0.tgz", + "integrity": "sha512-X9GYgruZBSOozg4w4dzv9uOz8oK/EpPVQXkp0MM6Tsgp/nRIU9hJzJ0Pxg1aRa3xCeEQTOimZHcocQFlLwYajQ==", "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" + "cssnano-preset-advanced": "^6.1.2", + "postcss": "^8.4.38", + "postcss-sort-media-queries": "^5.2.0", + "tslib": "^2.6.0" }, "engines": { - "node": ">=16.14" + "node": ">=18.0" } }, - "node_modules/@docusaurus/utils/node_modules/escape-string-regexp": { - "version": "4.0.0", + "node_modules/@docusaurus/logger": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.7.0.tgz", + "integrity": "sha512-z7g62X7bYxCYmeNNuO9jmzxLQG95q9QxINCwpboVcNff3SJiHJbGrarxxOVMVmAh1MsrSfxWkVGv4P41ktnFsA==", "license": "MIT", - "engines": { - "node": ">=10" + "dependencies": { + "chalk": "^4.1.2", + "tslib": "^2.6.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=18.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/@docusaurus/mdx-loader": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-3.7.0.tgz", + "integrity": "sha512-OFBG6oMjZzc78/U3WNPSHs2W9ZJ723ewAcvVJaqS0VgyeUfmzUV8f1sv+iUHA0DtwiR5T5FjOxj6nzEE8LY6VA==", + "license": "MIT", "dependencies": { - "@hapi/hoek": "^9.0.0" + "@docusaurus/logger": "3.7.0", + "@docusaurus/utils": "3.7.0", + "@docusaurus/utils-validation": "3.7.0", + "@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": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@hookform/error-message": { - "version": "2.0.1", + "node_modules/@docusaurus/module-type-aliases": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.7.0.tgz", + "integrity": "sha512-g7WdPqDNaqA60CmBrr0cORTrsOit77hbsTj7xE2l71YhBn79sxdm7WMK7wfhcaafkbpIh7jv5ef5TOpf1Xv9Lg==", "license": "MIT", + "dependencies": { + "@docusaurus/types": "3.7.0", + "@types/history": "^4.7.11", + "@types/react": "*", + "@types/react-router-config": "*", + "@types/react-router-dom": "*", + "react-helmet-async": "npm:@slorber/react-helmet-async@*", + "react-loadable": "npm:@docusaurus/react-loadable@6.0.0" + }, "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" + "react": "*", + "react-dom": "*" } }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "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" + "node_modules/@docusaurus/plugin-content-blog": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.7.0.tgz", + "integrity": "sha512-EFLgEz6tGHYWdPU0rK8tSscZwx+AsyuBW/r+tNig2kbccHYGUJmZtYN38GjAa3Fda4NU+6wqUO5kTXQSRBQD3g==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.7.0", + "@docusaurus/logger": "3.7.0", + "@docusaurus/mdx-loader": "3.7.0", + "@docusaurus/theme-common": "3.7.0", + "@docusaurus/types": "3.7.0", + "@docusaurus/utils": "3.7.0", + "@docusaurus/utils-common": "3.7.0", + "@docusaurus/utils-validation": "3.7.0", + "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": ">=12" + "node": ">=18.0" + }, + "peerDependencies": { + "@docusaurus/plugin-content-docs": "*", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "license": "MIT", + "node_modules/@docusaurus/plugin-content-docs": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.7.0.tgz", + "integrity": "sha512-GXg5V7kC9FZE4FkUZA8oo/NrlRb06UwuICzI6tcbzj0+TVgjq/mpUXXzSgKzMS82YByi4dY2Q808njcBCyy6tQ==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.7.0", + "@docusaurus/logger": "3.7.0", + "@docusaurus/mdx-loader": "3.7.0", + "@docusaurus/module-type-aliases": "3.7.0", + "@docusaurus/theme-common": "3.7.0", + "@docusaurus/types": "3.7.0", + "@docusaurus/utils": "3.7.0", + "@docusaurus/utils-common": "3.7.0", + "@docusaurus/utils-validation": "3.7.0", + "@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": ">=12" + "node": ">=18.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@isaacs/cliui/node_modules/ansi-styles": { - "version": "6.2.1", + "node_modules/@docusaurus/plugin-content-pages": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.7.0.tgz", + "integrity": "sha512-YJSU3tjIJf032/Aeao8SZjFOrXJbz/FACMveSMjLyMH4itQyZ2XgUIzt4y+1ISvvk5zrW4DABVT2awTCqBkx0Q==", "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.7.0", + "@docusaurus/mdx-loader": "3.7.0", + "@docusaurus/types": "3.7.0", + "@docusaurus/utils": "3.7.0", + "@docusaurus/utils-validation": "3.7.0", + "fs-extra": "^11.1.1", + "tslib": "^2.6.0", + "webpack": "^5.88.1" + }, "engines": { - "node": ">=12" + "node": ">=18.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.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/plugin-debug": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-3.7.0.tgz", + "integrity": "sha512-Qgg+IjG/z4svtbCNyTocjIwvNTNEwgRjSXXSJkKVG0oWoH0eX/HAPiu+TS1HBwRPQV+tTYPWLrUypYFepfujZA==", "license": "MIT", "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "@docusaurus/core": "3.7.0", + "@docusaurus/types": "3.7.0", + "@docusaurus/utils": "3.7.0", + "fs-extra": "^11.1.1", + "react-json-view-lite": "^1.2.0", + "tslib": "^2.6.0" }, "engines": { - "node": ">=12" + "node": ">=18.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", + "node_modules/@docusaurus/plugin-google-analytics": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.7.0.tgz", + "integrity": "sha512-otIqiRV/jka6Snjf+AqB360XCeSv7lQC+DKYW+EUZf6XbuE8utz5PeUQ8VuOcD8Bk5zvT1MC4JKcd5zPfDuMWA==", "license": "MIT", "dependencies": { - "ansi-regex": "^6.0.1" + "@docusaurus/core": "3.7.0", + "@docusaurus/types": "3.7.0", + "@docusaurus/utils-validation": "3.7.0", + "tslib": "^2.6.0" + }, + "engines": { + "node": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + } + }, + "node_modules/@docusaurus/plugin-google-gtag": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.7.0.tgz", + "integrity": "sha512-M3vrMct1tY65ModbyeDaMoA+fNJTSPe5qmchhAbtqhDD/iALri0g9LrEpIOwNaoLmm6lO88sfBUADQrSRSGSWA==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.7.0", + "@docusaurus/types": "3.7.0", + "@docusaurus/utils-validation": "3.7.0", + "@types/gtag.js": "^0.0.12", + "tslib": "^2.6.0" + }, + "engines": { + "node": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + } + }, + "node_modules/@docusaurus/plugin-google-tag-manager": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.7.0.tgz", + "integrity": "sha512-X8U78nb8eiMiPNg3jb9zDIVuuo/rE1LjGDGu+5m5CX4UBZzjMy+klOY2fNya6x8ACyE/L3K2erO1ErheP55W/w==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.7.0", + "@docusaurus/types": "3.7.0", + "@docusaurus/utils-validation": "3.7.0", + "tslib": "^2.6.0" + }, + "engines": { + "node": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + } + }, + "node_modules/@docusaurus/plugin-sitemap": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.7.0.tgz", + "integrity": "sha512-bTRT9YLZ/8I/wYWKMQke18+PF9MV8Qub34Sku6aw/vlZ/U+kuEuRpQ8bTcNOjaTSfYsWkK4tTwDMHK2p5S86cA==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.7.0", + "@docusaurus/logger": "3.7.0", + "@docusaurus/types": "3.7.0", + "@docusaurus/utils": "3.7.0", + "@docusaurus/utils-common": "3.7.0", + "@docusaurus/utils-validation": "3.7.0", + "fs-extra": "^11.1.1", + "sitemap": "^7.1.1", + "tslib": "^2.6.0" + }, + "engines": { + "node": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + } + }, + "node_modules/@docusaurus/plugin-svgr": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-svgr/-/plugin-svgr-3.7.0.tgz", + "integrity": "sha512-HByXIZTbc4GV5VAUkZ2DXtXv1Qdlnpk3IpuImwSnEzCDBkUMYcec5282hPjn6skZqB25M1TYCmWS91UbhBGxQg==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.7.0", + "@docusaurus/types": "3.7.0", + "@docusaurus/utils": "3.7.0", + "@docusaurus/utils-validation": "3.7.0", + "@svgr/core": "8.1.0", + "@svgr/webpack": "^8.1.0", + "tslib": "^2.6.0", + "webpack": "^5.88.1" + }, + "engines": { + "node": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + } + }, + "node_modules/@docusaurus/preset-classic": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-3.7.0.tgz", + "integrity": "sha512-nPHj8AxDLAaQXs+O6+BwILFuhiWbjfQWrdw2tifOClQoNfuXDjfjogee6zfx6NGHWqshR23LrcN115DmkHC91Q==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.7.0", + "@docusaurus/plugin-content-blog": "3.7.0", + "@docusaurus/plugin-content-docs": "3.7.0", + "@docusaurus/plugin-content-pages": "3.7.0", + "@docusaurus/plugin-debug": "3.7.0", + "@docusaurus/plugin-google-analytics": "3.7.0", + "@docusaurus/plugin-google-gtag": "3.7.0", + "@docusaurus/plugin-google-tag-manager": "3.7.0", + "@docusaurus/plugin-sitemap": "3.7.0", + "@docusaurus/plugin-svgr": "3.7.0", + "@docusaurus/theme-classic": "3.7.0", + "@docusaurus/theme-common": "3.7.0", + "@docusaurus/theme-search-algolia": "3.7.0", + "@docusaurus/types": "3.7.0" + }, + "engines": { + "node": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + } + }, + "node_modules/@docusaurus/theme-classic": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-3.7.0.tgz", + "integrity": "sha512-MnLxG39WcvLCl4eUzHr0gNcpHQfWoGqzADCly54aqCofQX6UozOS9Th4RK3ARbM9m7zIRv3qbhggI53dQtx/hQ==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.7.0", + "@docusaurus/logger": "3.7.0", + "@docusaurus/mdx-loader": "3.7.0", + "@docusaurus/module-type-aliases": "3.7.0", + "@docusaurus/plugin-content-blog": "3.7.0", + "@docusaurus/plugin-content-docs": "3.7.0", + "@docusaurus/plugin-content-pages": "3.7.0", + "@docusaurus/theme-common": "3.7.0", + "@docusaurus/theme-translations": "3.7.0", + "@docusaurus/types": "3.7.0", + "@docusaurus/utils": "3.7.0", + "@docusaurus/utils-common": "3.7.0", + "@docusaurus/utils-validation": "3.7.0", + "@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": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + } + }, + "node_modules/@docusaurus/theme-common": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-3.7.0.tgz", + "integrity": "sha512-8eJ5X0y+gWDsURZnBfH0WabdNm8XMCXHv8ENy/3Z/oQKwaB/EHt5lP9VsTDTf36lKEp0V6DjzjFyFIB+CetL0A==", + "license": "MIT", + "dependencies": { + "@docusaurus/mdx-loader": "3.7.0", + "@docusaurus/module-type-aliases": "3.7.0", + "@docusaurus/utils": "3.7.0", + "@docusaurus/utils-common": "3.7.0", + "@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": ">=18.0" + }, + "peerDependencies": { + "@docusaurus/plugin-content-docs": "*", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + } + }, + "node_modules/@docusaurus/theme-mermaid": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-mermaid/-/theme-mermaid-3.7.0.tgz", + "integrity": "sha512-7kNDvL7hm+tshjxSxIqYMtsLUPsEBYnkevej/ext6ru9xyLgCed+zkvTfGzTWNeq8rJIEe2YSS8/OV5gCVaPCw==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.7.0", + "@docusaurus/module-type-aliases": "3.7.0", + "@docusaurus/theme-common": "3.7.0", + "@docusaurus/types": "3.7.0", + "@docusaurus/utils-validation": "3.7.0", + "mermaid": ">=10.4", + "tslib": "^2.6.0" + }, + "engines": { + "node": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + } + }, + "node_modules/@docusaurus/theme-search-algolia": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.7.0.tgz", + "integrity": "sha512-Al/j5OdzwRU1m3falm+sYy9AaB93S1XF1Lgk9Yc6amp80dNxJVplQdQTR4cYdzkGtuQqbzUA8+kaoYYO0RbK6g==", + "license": "MIT", + "dependencies": { + "@docsearch/react": "^3.8.1", + "@docusaurus/core": "3.7.0", + "@docusaurus/logger": "3.7.0", + "@docusaurus/plugin-content-docs": "3.7.0", + "@docusaurus/theme-common": "3.7.0", + "@docusaurus/theme-translations": "3.7.0", + "@docusaurus/utils": "3.7.0", + "@docusaurus/utils-validation": "3.7.0", + "algoliasearch": "^5.17.1", + "algoliasearch-helper": "^3.22.6", + "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": ">=18.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + } + }, + "node_modules/@docusaurus/theme-translations": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-3.7.0.tgz", + "integrity": "sha512-Ewq3bEraWDmienM6eaNK7fx+/lHMtGDHQyd1O+4+3EsDxxUmrzPkV7Ct3nBWTuE0MsoZr3yNwQVKjllzCMuU3g==", + "license": "MIT", + "dependencies": { + "fs-extra": "^11.1.1", + "tslib": "^2.6.0" + }, + "engines": { + "node": ">=18.0" + } + }, + "node_modules/@docusaurus/types": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.7.0.tgz", + "integrity": "sha512-kOmZg5RRqJfH31m+6ZpnwVbkqMJrPOG5t0IOl4i/+3ruXyNfWzZ0lVtVrD0u4ONc/0NOsS9sWYaxxWNkH1LdLQ==", + "license": "MIT", + "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": "npm:@slorber/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 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + } + }, + "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": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@docusaurus/utils": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.7.0.tgz", + "integrity": "sha512-e7zcB6TPnVzyUaHMJyLSArKa2AG3h9+4CfvKXKKWNx6hRs+p0a+u7HHTJBgo6KW2m+vqDnuIHK4X+bhmoghAFA==", + "license": "MIT", + "dependencies": { + "@docusaurus/logger": "3.7.0", + "@docusaurus/types": "3.7.0", + "@docusaurus/utils-common": "3.7.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": ">=18.0" + } + }, + "node_modules/@docusaurus/utils-common": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.7.0.tgz", + "integrity": "sha512-IZeyIfCfXy0Mevj6bWNg7DG7B8G+S6o6JVpddikZtWyxJguiQ7JYr0SIZ0qWd8pGNuMyVwriWmbWqMnK7Y5PwA==", + "license": "MIT", + "dependencies": { + "@docusaurus/types": "3.7.0", + "tslib": "^2.6.0" + }, + "engines": { + "node": ">=18.0" + } + }, + "node_modules/@docusaurus/utils-validation": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-3.7.0.tgz", + "integrity": "sha512-w8eiKk8mRdN+bNfeZqC4nyFoxNyI1/VExMKAzD9tqpJfLLbsa46Wfn5wcKH761g9WkKh36RtFV49iL9lh1DYBA==", + "license": "MIT", + "dependencies": { + "@docusaurus/logger": "3.7.0", + "@docusaurus/utils": "3.7.0", + "@docusaurus/utils-common": "3.7.0", + "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/strip-ansi?sponsor=1" + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { - "version": "8.1.0", + "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-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" + "ansi-regex": "^6.0.1" }, "engines": { "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "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": { @@ -3356,6 +4778,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": { @@ -3364,6 +4788,8 @@ }, "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": { @@ -3372,6 +4798,8 @@ }, "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": { @@ -3384,6 +4812,8 @@ }, "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": { @@ -3392,6 +4822,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": { @@ -3416,70 +4848,6 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/console/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/console/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/console/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/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", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/console/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/core": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", @@ -3528,86 +4896,6 @@ } } }, - "node_modules/@jest/core/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/core/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/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" - } - ], - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/core/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/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, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/core/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/environment": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", @@ -3729,103 +5017,10 @@ } } }, - "node_modules/@jest/reporters/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/reporters/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/reporters/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/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, + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.27.8" @@ -3836,6 +5031,8 @@ }, "node_modules/@jest/source-map": { "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, "license": "MIT", "dependencies": { @@ -3906,203 +5103,76 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/transform/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.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/transform/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "node_modules/@jridgewell/gen-mapping": { + "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": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=6.0.0" } }, - "node_modules/@jest/transform/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/@jridgewell/resolve-uri": { + "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", - "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, - "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.6.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "engines": { - "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==", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "license": "MIT", - "engines": { - "node": ">=6.0.0" + "node": ">=6.0.0" } }, "node_modules/@jridgewell/set-array": { "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 +5180,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 +5220,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 +5229,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/@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" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/@mdx-js/mdx/node_modules/@babel/core": { - "version": "7.12.9", - "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" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "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/@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/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" + "node_modules/@mdx-js/mdx": { + "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/unist-util-visit-parents": { - "version": "3.1.1", + "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": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0" + "@types/mdx": "^2.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" + "@types/react": ">=16", + "react": ">=16" } }, - "node_modules/@mdx-js/util": { - "version": "1.6.22", + "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", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "dependencies": { + "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 +5318,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 +5337,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 +5346,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,142 +5357,306 @@ "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" - }, - "bin": { - "openapi2postmanv2": "bin/openapi2postmanv2.js" + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/@paloaltonetworks/openapi-to-postmanv2/node_modules/ajv": { - "version": "8.1.0", + "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", - "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": [ + "android" + ], + "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", - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" + "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", + "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-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": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "optional": true, + "os": [ + "darwin" + ], + "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-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", + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=6" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@paloaltonetworks/postman-code-generators/node_modules/async": { - "version": "3.2.5", - "license": "MIT" + "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": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "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_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": ">= 10.0.0" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "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", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=10" + "node": ">= 10.0.0" + }, + "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-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": ">=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-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", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "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": ">=0.10.0" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@paloaltonetworks/postman-collection/node_modules/semver": { - "version": "7.3.5", - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" + "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" }, - "bin": { - "semver": "bin/semver.js" + "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" + "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": { @@ -4477,11 +5664,13 @@ } }, "node_modules/@playwright/test": { - "version": "1.49.0", + "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.0" + "playwright": "1.49.1" }, "bin": { "playwright": "cli.js" @@ -4490,37 +5679,87 @@ "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.21", + "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.0", + "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 +5770,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 +5795,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 +5857,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 +5890,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 +5906,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 +5922,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 +5938,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 +5954,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 +5970,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 +5986,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 +6002,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 +6018,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 +6044,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 +6064,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 +6124,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 +6147,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 +6165,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 +6186,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 +6203,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 +6220,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 +6237,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 +6254,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 +6271,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 +6288,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 +6305,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 +6322,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 +6339,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 +6359,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 +6448,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 +6458,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 +6488,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 +6764,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 +6774,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/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/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 +6840,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 +6857,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 +6873,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 +6935,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 +7050,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 +7059,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 +7071,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 +7082,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 +7362,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 +7374,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 +7385,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 +7438,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 +7453,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,53 +7484,46 @@ } } }, - "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" - } - }, - "node_modules/ajv-formats/node_modules/json-schema-traverse": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "license": "MIT", "peerDependencies": { - "ajv": "^6.9.1" + "ajv": "^8.8.2" } }, "node_modules/algoliasearch": { - "version": "4.19.1", + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.20.0.tgz", + "integrity": "sha512-groO71Fvi5SWpxjI9Ia+chy0QBwT61mg6yxJV27f5YFf+Mw+STT75K6SHySpP8Co5LsCrtsbCH5dJZSRtkSKaQ==", "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/client-abtesting": "5.20.0", + "@algolia/client-analytics": "5.20.0", + "@algolia/client-common": "5.20.0", + "@algolia/client-insights": "5.20.0", + "@algolia/client-personalization": "5.20.0", + "@algolia/client-query-suggestions": "5.20.0", + "@algolia/client-search": "5.20.0", + "@algolia/ingestion": "1.20.0", + "@algolia/monitoring": "1.20.0", + "@algolia/recommend": "5.20.0", + "@algolia/requester-browser-xhr": "5.20.0", + "@algolia/requester-fetch": "5.20.0", + "@algolia/requester-node-http": "5.20.0" + }, + "engines": { + "node": ">= 14.0.0" } }, "node_modules/algoliasearch-helper": { - "version": "3.14.0", + "version": "3.24.1", + "resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.24.1.tgz", + "integrity": "sha512-knYRACqLH9UpeR+WRUrBzBFR2ulGuOjI2b525k4PNeqZxeFMHJE7YcL7s6Jh12Qza0rtHqZdgHMfeuaaAkf4wA==", "license": "MIT", "dependencies": { "@algolia/events": "^4.0.1" @@ -5782,20 +7532,63 @@ "algoliasearch": ">= 3.1 < 6" } }, + "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 +7602,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 +7614,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 +7626,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 +7638,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 +7671,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 +7690,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 +7710,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 +7722,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 +7731,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 +7752,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 +7761,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 +7786,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 +7813,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 +7822,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 +7831,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 +7859,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 +7896,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 +7916,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 +7987,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 +7996,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 +8035,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 +8053,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 +8080,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 +8098,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 +8114,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,154 +8149,44 @@ "@babel/core": "^7.8.0" } }, - "node_modules/babel-jest/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "node_modules/babel-loader": { + "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": { - "color-convert": "^2.0.1" + "find-cache-dir": "^4.0.0", + "schema-utils": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">= 14.15.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "@babel/core": "^7.12.0", + "webpack": ">=5" } }, - "node_modules/babel-jest/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "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": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "object.assign": "^4.1.0" } }, - "node_modules/babel-jest/node_modules/color-convert": { - "version": "2.0.1", + "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": "MIT", + "license": "BSD-3-Clause", "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", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/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" - }, - "peerDependencies": { - "@babel/core": "^7.11.6" - } - }, - "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", - "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", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" }, "engines": { "node": ">=8" @@ -6394,6 +8194,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 +8211,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 +8221,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 +8236,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 +8312,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 +8329,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 +8348,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 +8372,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 +8382,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 +8393,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 +8413,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,704 +8464,968 @@ "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", + "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": { - "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" + "execa": "^0.7.0", + "executable": "^4.1.0" }, "engines": { "node": ">=4" } }, - "node_modules/bin-build/node_modules/get-stream": { - "version": "3.0.0", + "node_modules/bin-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", + "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", "license": "MIT", + "dependencies": { + "execa": "^1.0.0", + "find-versions": "^3.0.0" + }, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/bin-build/node_modules/is-stream": { - "version": "1.1.0", + "node_modules/bin-version-check": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", + "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", "license": "MIT", + "dependencies": { + "bin-version": "^3.0.0", + "semver": "^5.6.0", + "semver-truncate": "^1.1.2" + }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/bin-build/node_modules/lru-cache": { - "version": "4.1.5", + "node_modules/bin-version-check/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": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" + "bin": { + "semver": "bin/semver" } }, - "node_modules/bin-build/node_modules/npm-run-path": { - "version": "2.0.2", + "node_modules/bin-version/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": { - "path-key": "^2.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": ">=4" - } - }, - "node_modules/bin-build/node_modules/path-key": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=4" + "node": ">=4.8" } }, - "node_modules/bin-build/node_modules/shebang-command": { - "version": "1.2.0", + "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": { - "shebang-regex": "^1.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": ">=0.10.0" + "node": ">=6" } }, - "node_modules/bin-build/node_modules/shebang-regex": { - "version": "1.0.0", + "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": { + "pump": "^3.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/bin-build/node_modules/which": { - "version": "1.3.1", + "node_modules/bin-version/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/bin-build/node_modules/yallist": { - "version": "2.1.2", - "license": "ISC" - }, - "node_modules/bin-check": { + "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": { - "execa": "^0.7.0", - "executable": "^4.1.0" + "bin-check": "^4.1.0", + "bin-version-check": "^4.0.0", + "download": "^7.1.0", + "import-lazy": "^3.1.0", + "os-filter-obj": "^2.0.0", + "pify": "^4.0.1" }, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/bin-check/node_modules/cross-spawn": { - "version": "5.1.0", + "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", - "dependencies": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "engines": { + "node": ">=4" } }, - "node_modules/bin-check/node_modules/execa": { - "version": "0.7.0", + "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": { - "cross-spawn": "^5.0.1", + "archive-type": "^4.0.0", + "caw": "^2.0.1", + "content-disposition": "^0.5.2", + "decompress": "^4.2.0", + "ext-name": "^5.0.0", + "file-type": "^8.1.0", + "filenamify": "^2.0.0", "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" + "got": "^8.3.1", + "make-dir": "^1.2.0", + "p-event": "^2.1.0", + "pify": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/bin-check/node_modules/get-stream": { + "node_modules/bin-wrapper/node_modules/download/node_modules/pify": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "license": "MIT", "engines": { "node": ">=4" } }, - "node_modules/bin-check/node_modules/is-stream": { - "version": "1.1.0", - "license": "MIT", + "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": ">=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": ">=6" } }, - "node_modules/bin-check/node_modules/npm-run-path": { - "version": "2.0.2", + "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": { - "path-key": "^2.0.0" + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" }, "engines": { "node": ">=4" } }, - "node_modules/bin-check/node_modules/path-key": { - "version": "2.0.1", + "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-check/node_modules/shebang-command": { - "version": "1.2.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": { - "shebang-regex": "^1.0.0" + "pify": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/bin-check/node_modules/shebang-regex": { - "version": "1.0.0", + "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": ">=0.10.0" + "node": ">=4" } }, - "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-wrapper/node_modules/p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "license": "MIT", + "engines": { + "node": ">=4" } }, - "node_modules/bin-check/node_modules/yallist": { - "version": "2.1.2", - "license": "ISC" - }, - "node_modules/bin-version": { - "version": "3.1.0", + "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": { - "execa": "^1.0.0", - "find-versions": "^3.0.0" + "p-timeout": "^2.0.1" }, "engines": { "node": ">=6" } }, - "node_modules/bin-version-check": { - "version": "4.0.0", + "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": { - "bin-version": "^3.0.0", - "semver": "^5.6.0", - "semver-truncate": "^1.1.2" + "p-finally": "^1.0.0" }, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/bin-version-check/node_modules/semver": { - "version": "5.7.1", - "license": "ISC", - "bin": { - "semver": "bin/semver" + "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-version/node_modules/cross-spawn": { - "version": "6.0.5", + "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": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "prepend-http": "^2.0.0" }, "engines": { - "node": ">=4.8" + "node": ">=4" } }, - "node_modules/bin-version/node_modules/execa": { - "version": "1.0.0", + "node_modules/binary": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz", + "integrity": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==", "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" + "buffers": "~0.1.1", + "chainsaw": "~0.1.0" }, "engines": { - "node": ">=6" + "node": "*" } }, - "node_modules/bin-version/node_modules/is-stream": { - "version": "1.1.0", + "node_modules/binary-extensions": { + "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": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/bin-version/node_modules/npm-run-path": { - "version": "2.0.2", + "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": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" } }, - "node_modules/bin-version/node_modules/path-key": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=4" - } + "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/bin-version/node_modules/semver": { - "version": "5.7.1", - "license": "ISC", - "bin": { - "semver": "bin/semver" + "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", + "raw-body": "~1.1.0", + "safe-json-parse": "~1.0.1" } }, - "node_modules/bin-version/node_modules/shebang-command": { - "version": "1.2.0", + "node_modules/body-parser": { + "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": { - "shebang-regex": "^1.0.0" + "bytes": "3.1.2", + "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.13.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/bin-version/node_modules/shebang-regex": { - "version": "1.0.0", + "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", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/bin-version/node_modules/which": { - "version": "1.3.1", - "license": "ISC", + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/body/node_modules/bytes": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz", + "integrity": "sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ==" + }, + "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": { - "isexe": "^2.0.0" + "bytes": "1", + "string_decoder": "0.10" }, - "bin": { - "which": "bin/which" + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/bin-wrapper": { - "version": "4.1.0", + "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.3.0", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz", + "integrity": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==", "license": "MIT", "dependencies": { - "bin-check": "^4.1.0", - "bin-version-check": "^4.0.0", - "download": "^7.1.0", - "import-lazy": "^3.1.0", - "os-filter-obj": "^2.0.0", - "pify": "^4.0.1" - }, - "engines": { - "node": ">=6" + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" } }, - "node_modules/bin-wrapper/node_modules/@sindresorhus/is": { - "version": "0.7.0", + "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": "6.2.1", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-6.2.1.tgz", + "integrity": "sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==", "license": "MIT", + "dependencies": { + "ansi-align": "^3.0.1", + "camelcase": "^6.2.0", + "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": ">=4" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/bin-wrapper/node_modules/cacheable-request": { - "version": "2.1.4", + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "license": "MIT", "dependencies": { - "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" + "balanced-match": "^1.0.0" } }, - "node_modules/bin-wrapper/node_modules/download": { - "version": "7.1.0", + "node_modules/braces": { + "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": { - "archive-type": "^4.0.0", - "caw": "^2.0.1", - "content-disposition": "^0.5.2", - "decompress": "^4.2.0", - "ext-name": "^5.0.0", - "file-type": "^8.1.0", - "filenamify": "^2.0.0", - "get-stream": "^3.0.0", - "got": "^8.3.1", - "make-dir": "^1.2.0", - "p-event": "^2.1.0", - "pify": "^3.0.0" + "fill-range": "^7.1.1" }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/bin-wrapper/node_modules/download/node_modules/pify": { - "version": "3.0.0", + "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", - "engines": { - "node": ">=4" + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" } }, - "node_modules/bin-wrapper/node_modules/file-type": { - "version": "8.1.0", + "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", - "engines": { - "node": ">=6" + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" } }, - "node_modules/bin-wrapper/node_modules/get-stream": { - "version": "3.0.0", + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", "license": "MIT", - "engines": { - "node": ">=4" + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" } }, - "node_modules/bin-wrapper/node_modules/got": { - "version": "8.3.2", + "node_modules/browserify-rsa": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.1.tgz", + "integrity": "sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==", "license": "MIT", "dependencies": { - "@sindresorhus/is": "^0.7.0", - "cacheable-request": "^2.1.1", - "decompress-response": "^3.3.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "into-stream": "^3.1.0", - "is-retry-allowed": "^1.1.0", - "isurl": "^1.0.0-alpha5", - "lowercase-keys": "^1.0.0", - "mimic-response": "^1.0.0", - "p-cancelable": "^0.4.0", - "p-timeout": "^2.0.1", - "pify": "^3.0.0", - "safe-buffer": "^5.1.1", - "timed-out": "^4.0.1", - "url-parse-lax": "^3.0.0", - "url-to-options": "^1.0.1" + "bn.js": "^5.2.1", + "randombytes": "^2.1.0", + "safe-buffer": "^5.2.1" }, "engines": { - "node": ">=4" + "node": ">= 0.10" } }, - "node_modules/bin-wrapper/node_modules/got/node_modules/pify": { - "version": "3.0.0", - "license": "MIT", + "node_modules/browserify-sign": { + "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.5", + "hash-base": "~3.0", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.7", + "readable-stream": "^2.3.8", + "safe-buffer": "^5.2.1" + }, "engines": { - "node": ">=4" + "node": ">= 0.12" } }, - "node_modules/bin-wrapper/node_modules/http-cache-semantics": { - "version": "3.8.1", - "license": "BSD-2-Clause" + "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/bin-wrapper/node_modules/import-lazy": { - "version": "3.1.0", + "node_modules/browserslist": { + "version": "4.24.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.3.tgz", + "integrity": "sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001688", + "electron-to-chromium": "^1.5.73", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.1" + }, + "bin": { + "browserslist": "cli.js" + }, "engines": { - "node": ">=6" + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/bin-wrapper/node_modules/is-plain-obj": { - "version": "1.1.0", + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "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", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" } }, - "node_modules/bin-wrapper/node_modules/keyv": { - "version": "3.0.0", + "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": { - "json-buffer": "3.0.0" + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" } }, - "node_modules/bin-wrapper/node_modules/lowercase-keys": { - "version": "1.0.0", + "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": ">=0.10.0" + "node": "*" } }, - "node_modules/bin-wrapper/node_modules/make-dir": { - "version": "1.3.0", + "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", - "dependencies": { - "pify": "^3.0.0" - }, "engines": { - "node": ">=4" + "node": ">=0.10" } }, - "node_modules/bin-wrapper/node_modules/make-dir/node_modules/pify": { + "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.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "license": "MIT", "engines": { - "node": ">=4" + "node": ">= 0.8" } }, - "node_modules/bin-wrapper/node_modules/normalize-url": { - "version": "2.0.1", + "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": { - "prepend-http": "^2.0.0", - "query-string": "^5.0.1", - "sort-keys": "^2.0.0" + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" }, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/bin-wrapper/node_modules/p-cancelable": { - "version": "0.4.1", + "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": ">=4" + "node": ">=14.16" } }, - "node_modules/bin-wrapper/node_modules/p-event": { - "version": "2.3.1", + "node_modules/cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==", "license": "MIT", "dependencies": { - "p-timeout": "^2.0.1" - }, + "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": ">=6" + "node": ">=0.10.0" } }, - "node_modules/bin-wrapper/node_modules/p-timeout": { - "version": "2.0.1", + "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": { - "p-finally": "^1.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": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/bin-wrapper/node_modules/sort-keys": { - "version": "2.0.0", + "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": { - "is-plain-obj": "^1.0.0" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" }, "engines": { - "node": ">=4" + "node": ">= 0.4" } }, - "node_modules/binary": { - "version": "0.3.0", + "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": { - "buffers": "~0.1.1", - "chainsaw": "~0.1.0" - } - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "license": "MIT", + "call-bind-apply-helpers": "^1.0.1", + "get-intrinsic": "^1.2.6" + }, "engines": { - "node": ">=8" - } - }, - "node_modules/bl": { - "version": "1.2.3", - "license": "MIT", - "dependencies": { - "readable-stream": "^2.3.5", - "safe-buffer": "^5.1.1" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/bl/node_modules/isarray": { - "version": "1.0.0", + "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/bl/node_modules/readable-stream": { - "version": "2.3.8", + "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": { - "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" + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/bl/node_modules/string_decoder": { - "version": "1.1.1", + "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", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/bluebird": { - "version": "3.4.7", - "license": "MIT" - }, - "node_modules/bn.js": { - "version": "5.2.1", - "license": "MIT" - }, - "node_modules/body": { - "version": "5.1.0", - "dependencies": { - "continuable-cache": "^0.3.1", - "error": "^7.0.0", - "raw-body": "~1.1.0", - "safe-json-parse": "~1.0.1" + "engines": { + "node": ">=4" } }, - "node_modules/body-parser": { - "version": "1.20.0", + "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": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.10.3", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" + "caller-callsite": "^2.0.0" }, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">=4" } }, - "node_modules/body-parser/node_modules/bytes": { - "version": "3.1.2", + "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": ">= 0.8" + "node": ">=6" } }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", + "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": { - "ms": "2.0.0" + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" } }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/body/node_modules/bytes": { - "version": "1.0.0" + "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" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/body/node_modules/raw-body": { - "version": "1.1.7", + "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": { - "bytes": "1", - "string_decoder": "0.10" + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=0.10.0" } }, - "node_modules/body/node_modules/string_decoder": { - "version": "0.10.31", - "license": "MIT" + "node_modules/camelcase-keys/node_modules/camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/bonjour-service": { - "version": "1.0.13", + "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": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" } }, - "node_modules/boolbase": { - "version": "1.0.0", - "license": "ISC" + "node_modules/caniuse-lite": { + "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", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" }, - "node_modules/boxen": { - "version": "5.1.2", + "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": { - "ansi-align": "^3.0.0", - "camelcase": "^6.2.0", - "chalk": "^4.1.0", - "cli-boxes": "^2.2.1", - "string-width": "^4.2.2", - "type-fest": "^0.20.2", - "widest-line": "^3.1.0", - "wrap-ansi": "^7.0.0" + "get-proxy": "^2.0.0", + "isurl": "^1.0.0-alpha5", + "tunnel-agent": "^0.6.0", + "url-to-options": "^1.0.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, - "node_modules/boxen/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/ccount": { + "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", + "url": "https://github.com/sponsors/wooorm" + } + }, + "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": { - "color-convert": "^2.0.1" + "traverse": ">=0.3.0 <0.4" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "*" } }, - "node_modules/boxen/node_modules/chalk": { + "node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", @@ -7334,475 +9438,494 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/boxen/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=10" } }, - "node_modules/boxen/node_modules/color-name": { - "version": "1.1.4", - "license": "MIT" + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } }, - "node_modules/boxen/node_modules/has-flag": { - "version": "4.0.0", + "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", - "engines": { - "node": ">=8" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/boxen/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/character-entities-legacy": { + "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", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/brace-expansion": { - "version": "1.1.11", + "node_modules/character-reference-invalid": { + "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", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/braces": { - "version": "3.0.2", + "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", - "dependencies": { - "fill-range": "^7.0.1" - }, "engines": { - "node": ">=8" + "node": ">=4.0.0" } }, - "node_modules/brorand": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/browserify-aes": { - "version": "1.2.0", + "node_modules/cheerio": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", + "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", "license": "MIT", "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "htmlparser2": "^8.0.1", + "parse5": "^7.0.0", + "parse5-htmlparser2-tree-adapter": "^7.0.0" + }, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/cheeriojs/cheerio?sponsor=1" } }, - "node_modules/browserify-cipher": { - "version": "1.0.1", - "license": "MIT", + "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": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/browserify-des": { - "version": "1.0.2", - "license": "MIT", + "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": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "@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/browserify-rsa": { - "version": "4.1.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": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" + "lodash-es": "^4.17.21" + }, + "peerDependencies": { + "chevrotain": "^11.0.0" } }, - "node_modules/browserify-sign": { - "version": "4.2.2", - "license": "ISC", + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "license": "MIT", "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", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.6", - "readable-stream": "^3.6.2", - "safe-buffer": "^5.2.1" + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" }, "engines": { - "node": ">= 4" + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "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", + "node_modules/chrome-trace-event": { + "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", - "dependencies": { - "pako": "~1.0.5" + "engines": { + "node": ">=6.0" } }, - "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==", + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, { "type": "github", - "url": "https://github.com/sponsors/ai" + "url": "https://github.com/sponsors/sibiraj-s" } ], "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cipher-base": { + "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": { - "caniuse-lite": "^1.0.30001669", - "electron-to-chromium": "^1.5.41", - "node-releases": "^2.0.18", - "update-browserslist-db": "^1.1.1" - }, - "bin": { - "browserslist": "cli.js" + "inherits": "^2.0.4", + "safe-buffer": "^5.2.1" }, "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "node": ">= 0.10" } }, - "node_modules/bser": { - "version": "2.1.1", + "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, - "license": "Apache-2.0", - "dependencies": { - "node-int64": "^0.4.0" - } + "license": "MIT" }, - "node_modules/buffer": { - "version": "5.7.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" - } - ], + "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": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/buffer-alloc": { - "version": "1.2.0", + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "license": "MIT", "dependencies": { - "buffer-alloc-unsafe": "^1.1.0", - "buffer-fill": "^1.0.0" + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/buffer-alloc-unsafe": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/buffer-crc32": { - "version": "0.2.13", + "node_modules/class-utils/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-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, "engines": { - "node": "*" + "node": ">= 0.4" } }, - "node_modules/buffer-fill": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/buffer-from": { - "version": "1.1.2", + "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==", "license": "MIT" }, - "node_modules/buffer-indexof-polyfill": { - "version": "1.0.2", + "node_modules/clean-css": { + "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" + }, "engines": { - "node": ">=0.10" + "node": ">= 10.0" } }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "license": "MIT" - }, - "node_modules/buffers": { - "version": "0.1.1", + "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.2.0" + "node": ">=0.10.0" } }, - "node_modules/builtin-status-codes": { - "version": "3.0.0", - "license": "MIT" + "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/bytes": { + "node_modules/cli-boxes": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", + "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cache-base": { - "version": "1.0.1", + "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": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" + "restore-cursor": "^4.0.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cacheable-request": { - "version": "6.1.0", - "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" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cacheable-request/node_modules/get-stream": { - "version": "5.2.0", + "node_modules/cli-table3": { + "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": { - "pump": "^3.0.0" + "string-width": "^4.2.0" }, "engines": { - "node": ">=8" + "node": "10.* || >= 12.*" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "optionalDependencies": { + "@colors/colors": "1.5.0" } }, - "node_modules/cacheable-request/node_modules/lowercase-keys": { - "version": "2.0.0", + "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-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": ">=8" } }, - "node_modules/cacheable-request/node_modules/normalize-url": { - "version": "4.5.1", + "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": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, "engines": { "node": ">=8" } }, - "node_modules/call-bind": { - "version": "1.0.2", + "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": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "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/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/call-me-maybe": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/caller-callsite": { - "version": "2.0.0", - "license": "MIT", + "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": { - "callsites": "^2.0.0" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/caller-callsite/node_modules/callsites": { - "version": "2.0.0", + "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", "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/caller-path": { - "version": "2.0.0", + "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": { - "caller-callsite": "^2.0.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=4" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "license": "MIT", - "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/camel-case": { - "version": "4.1.2", + "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": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "node_modules/camelcase": { - "version": "6.3.0", - "license": "MIT", + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/camelcase-css": { - "version": "2.0.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": { - "node": ">= 6" + "node": ">=6" } }, - "node_modules/camelcase-keys": { - "version": "2.1.0", + "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": { - "camelcase": "^2.0.0", - "map-obj": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" + "mimic-response": "^1.0.0" } }, - "node_modules/camelcase-keys/node_modules/camelcase": { + "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": ">=0.10.0" + "node": ">=6" } }, - "node_modules/caniuse-api": { - "version": "3.0.0", + "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", - "dependencies": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" } }, - "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==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "CC-BY-4.0" - }, - "node_modules/caseless": { - "version": "0.12.0", - "license": "Apache-2.0" - }, - "node_modules/caw": { - "version": "2.0.1", + "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": { - "get-proxy": "^2.0.0", - "isurl": "^1.0.0-alpha5", - "tunnel-agent": "^0.6.0", - "url-to-options": "^1.0.1" + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" }, "engines": { - "node": ">=4" + "node": ">= 4.0" } }, - "node_modules/ccount": { - "version": "1.1.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", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/chainsaw": { - "version": "0.1.0", - "license": "MIT/X11", "dependencies": { - "traverse": ">=0.3.0 <0.4" + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/chalk": { + "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", @@ -7813,446 +9936,508 @@ "node": ">=4" } }, - "node_modules/char-regex": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/character-entities": { - "version": "1.2.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", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "color-name": "1.1.3" } }, - "node_modules/character-entities-legacy": { - "version": "1.1.4", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } + "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/character-reference-invalid": { - "version": "1.1.4", + "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", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": ">=0.8.0" } }, - "node_modules/charset": { - "version": "1.0.1", + "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.0.0" + "node": ">=4" } }, - "node_modules/cheerio": { - "version": "1.0.0-rc.12", + "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": { - "cheerio-select": "^2.1.0", - "dom-serializer": "^2.0.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "htmlparser2": "^8.0.1", - "parse5": "^7.0.0", - "parse5-htmlparser2-tree-adapter": "^7.0.0" + "has-flag": "^3.0.0" }, "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/cheeriojs/cheerio?sponsor=1" + "node": ">=4" } }, - "node_modules/cheerio-select": { - "version": "2.1.0", - "license": "BSD-2-Clause", + "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": { - "boolbase": "^1.0.0", - "css-select": "^5.1.0", - "css-what": "^6.1.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "@codemirror/autocomplete": "^6.0.0", + "@codemirror/commands": "^6.0.0", + "@codemirror/language": "^6.0.0", + "@codemirror/lint": "^6.0.0", + "@codemirror/search": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0" } }, - "node_modules/cheerio-select/node_modules/css-select": { - "version": "5.1.0", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" + "node_modules/coffee-script": { + "version": "1.12.7", + "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz", + "integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==", + "deprecated": "CoffeeScript on NPM has moved to \"coffeescript\" (no hyphen)", + "license": "MIT", + "bin": { + "cake": "bin/cake", + "coffee": "bin/coffee" }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "engines": { + "node": ">=0.8.0" } }, - "node_modules/cheerio-select/node_modules/dom-serializer": { - "version": "2.0.0", + "node_modules/collapse-white-space": { + "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", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "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/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/cheerio-select/node_modules/domutils": { - "version": "3.0.1", - "license": "BSD-2-Clause", + "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": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.1" + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" }, - "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" + "node": ">=0.10.0" } }, - "node_modules/cheerio/node_modules/dom-serializer": { - "version": "2.0.0", + "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": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + "color-convert": "^1.9.3", + "color-string": "^1.6.0" } }, - "node_modules/cheerio/node_modules/domhandler": { - "version": "5.0.3", - "license": "BSD-2-Clause", + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", "dependencies": { - "domelementtype": "^2.3.0" + "color-name": "~1.1.4" }, "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": ">=7.0.0" } }, - "node_modules/cheerio/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/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" }, - "node_modules/cheerio/node_modules/htmlparser2": { - "version": "8.0.1", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], + "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": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "entities": "^4.3.0" + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" } }, - "node_modules/chokidar": { - "version": "3.5.3", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], + "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": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "color-name": "1.1.3" } }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "license": "MIT", - "engines": { - "node": ">=6.0" - } + "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/ci-info": { - "version": "2.0.0", + "node_modules/colord": { + "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/cipher-base": { - "version": "1.0.4", + "node_modules/colorette": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", + "license": "MIT" + }, + "node_modules/combine-promises": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/combine-promises/-/combine-promises-1.2.0.tgz", + "integrity": "sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ==", "license": "MIT", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "engines": { + "node": ">=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 - }, - "node_modules/class-utils": { - "version": "0.3.6", + "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": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" + "delayed-stream": "~1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/class-utils/node_modules/define-property": { - "version": "0.2.5", + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", "license": "MIT", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/class-utils/node_modules/is-accessor-descriptor": { - "version": "0.1.6", + "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", - "dependencies": { - "kind-of": "^3.0.2" - }, "engines": { - "node": ">=0.10.0" + "node": ">= 6" } }, - "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", + "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.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", + "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/class-utils/node_modules/is-buffer": { - "version": "1.1.6", + "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/class-utils/node_modules/is-data-descriptor": { - "version": "0.1.4", + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "license": "MIT", "dependencies": { - "kind-of": "^3.0.2" + "mime-db": ">= 1.43.0 < 2" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.6" } }, - "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", + "node_modules/compression": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.5.tgz", + "integrity": "sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==", "license": "MIT", "dependencies": { - "is-buffer": "^1.1.5" + "bytes": "3.1.2", + "compressible": "~2.0.18", + "debug": "2.6.9", + "negotiator": "~0.6.4", + "on-headers": "~1.0.2", + "safe-buffer": "5.2.1", + "vary": "~1.1.2" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8.0" } }, - "node_modules/class-utils/node_modules/is-descriptor": { - "version": "0.1.6", + "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": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" + "ms": "2.0.0" } }, - "node_modules/class-utils/node_modules/kind-of": { - "version": "5.1.0", + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/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.10.0" + "node": ">= 0.6" } }, - "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==" + "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", + "validate.io-integer-array": "^1.0.0" + } }, - "node_modules/clean-css": { - "version": "5.3.1", + "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", + "validate.io-function": "^1.0.2", + "validate.io-integer-array": "^1.0.0" + } + }, + "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" + ], "license": "MIT", "dependencies": { - "source-map": "~0.6.0" - }, - "engines": { - "node": ">= 10.0" + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" } }, - "node_modules/clean-css/node_modules/source-map": { + "node_modules/concat-with-sourcemaps": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", + "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", + "license": "ISC", + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/concat-with-sourcemaps/node_modules/source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, - "node_modules/clean-stack": { - "version": "2.2.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", - "engines": { - "node": ">=6" + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" } }, - "node_modules/cli-boxes": { - "version": "2.2.1", - "license": "MIT", + "node_modules/configstore": { + "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": "^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": ">=6" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/yeoman/configstore?sponsor=1" } }, - "node_modules/cli-cursor": { - "version": "4.0.0", - "dev": true, - "license": "MIT", + "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": { - "restore-cursor": "^4.0.0" - }, + "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": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.8" } }, - "node_modules/cli-table3": { - "version": "0.6.2", + "node_modules/consola": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.0.tgz", + "integrity": "sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==", "license": "MIT", - "dependencies": { - "string-width": "^4.2.0" - }, "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" + "node": "^14.18.0 || >=16.10.0" } }, - "node_modules/cli-truncate": { - "version": "3.1.0", - "dev": true, + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "node_modules/console-stream": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/console-stream/-/console-stream-0.1.1.tgz", + "integrity": "sha512-QC/8l9e6ofi6nqZ5PawlDgzmMw3OxIXtvolBzap/F4UDBJlDaZRSNbL/lb41C29FcbSJncBFlJFj2WJoNyZRfQ==" + }, + "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.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "license": "MIT", "dependencies": { - "slice-ansi": "^5.0.0", - "string-width": "^5.0.0" + "safe-buffer": "5.2.1" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6" } }, - "node_modules/cli-truncate/node_modules/ansi-regex": { - "version": "6.0.1", - "dev": true, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "license": "MIT", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "node": ">= 0.6" } }, - "node_modules/cli-truncate/node_modules/emoji-regex": { - "version": "9.2.2", - "dev": true, - "license": "MIT" + "node_modules/continuable-cache": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz", + "integrity": "sha512-TF30kpKhTH8AGCG3dut0rdd/19B7Z+qCnrMoBLpyQu/2drZdNrrpcjPEoJeSVsQM+8KmWG5O56oPDjSSUsuTyA==" }, - "node_modules/cli-truncate/node_modules/string-width": { - "version": "5.1.2", - "dev": true, + "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": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, + "atoa": "1.0.0", + "ticky": "1.0.1" + } + }, + "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==", + "license": "MIT" + }, + "node_modules/cookie": { + "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" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "license": "MIT" + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/copy-text-to-clipboard": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz", + "integrity": "sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==", + "license": "MIT", "engines": { "node": ">=12" }, @@ -8260,3583 +10445,4468 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cli-truncate/node_modules/strip-ansi": { - "version": "7.1.0", - "dev": true, + "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": { - "ansi-regex": "^6.0.1" + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.1", + "globby": "^13.1.1", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" }, "engines": { - "node": ">=12" + "node": ">= 14.15.0" }, "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" } }, - "node_modules/cliui": { - "version": "8.0.1", + "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": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" + "is-glob": "^4.0.3" }, "engines": { - "node": ">=12" + "node": ">=10.13.0" } }, - "node_modules/clone-deep": { - "version": "4.0.1", + "node_modules/copy-webpack-plugin/node_modules/globby": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", "license": "MIT", "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" }, "engines": { - "node": ">=6" - } - }, - "node_modules/clone-response": { - "version": "1.0.2", - "license": "MIT", - "dependencies": { - "mimic-response": "^1.0.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/clsx": { - "version": "2.1.1", + "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": ">=6" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/co": { - "version": "4.6.0", - "dev": true, + "node_modules/core-js": { + "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", - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/coa": { - "version": "2.0.2", + "node_modules/core-js-compat": { + "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": { - "@types/q": "^1.5.1", - "chalk": "^2.4.1", - "q": "^1.1.2" + "browserslist": "^4.24.2" }, - "engines": { - "node": ">= 4.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/codemirror": { - "version": "6.0.1", + "node_modules/core-js-pure": { + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.40.0.tgz", + "integrity": "sha512-AtDzVIgRrmRKQai62yuSIN5vNiQjcJakJb4fbhVw3ehxx7Lohphvw9SGNWKhLFqSxC4ilD0g/L1huAYFQU3Q6A==", + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "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": { - "@codemirror/autocomplete": "^6.0.0", - "@codemirror/commands": "^6.0.0", - "@codemirror/language": "^6.0.0", - "@codemirror/lint": "^6.0.0", - "@codemirror/search": "^6.0.0", - "@codemirror/state": "^6.0.0", - "@codemirror/view": "^6.0.0" + "layout-base": "^1.0.0" } }, - "node_modules/coffee-script": { - "version": "1.12.7", + "node_modules/cosmiconfig": { + "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", - "bin": { - "cake": "bin/cake", - "coffee": "bin/coffee" + "dependencies": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" }, "engines": { - "node": ">=0.8.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/collapse-white-space": { - "version": "1.0.6", + "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", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" } }, - "node_modules/collect-v8-coverage": { - "version": "1.0.2", - "dev": true, + "node_modules/create-ecdh/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/collection-visit": { - "version": "1.0.0", + "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": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" } }, - "node_modules/color": { - "version": "3.2.1", + "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": { - "color-convert": "^1.9.3", - "color-string": "^1.6.0" + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" } }, - "node_modules/color-convert": { - "version": "1.9.3", + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, "license": "MIT", "dependencies": { - "color-name": "1.1.3" + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/color-name": { - "version": "1.1.3", + "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/color-string": { - "version": "1.9.1", + "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": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } }, - "node_modules/colord": { - "version": "2.9.2", - "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": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } }, - "node_modules/colorette": { - "version": "2.0.20", - "license": "MIT" + "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/combine-promises": { - "version": "1.1.0", + "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", - "engines": { - "node": ">=10" + "dependencies": { + "request": "^2.53.0", + "yamljs": "^0.2.1", + "yargs": "^2.3.0" + }, + "bin": { + "crowdin-cli": "bin/crowdin-cli" } }, - "node_modules/combined-stream": { - "version": "1.0.8", + "node_modules/crypto-browserify": { + "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": { - "delayed-stream": "~1.0.0" + "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": ">= 0.8" + "node": ">= 0.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/comma-separated-tokens": { - "version": "1.0.8", + "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": "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": ">=12" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/commander": { - "version": "5.1.0", - "license": "MIT", + "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": ">= 6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/commondir": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/component-emitter": { - "version": "1.3.0", - "license": "MIT" - }, - "node_modules/component-event": { - "version": "0.2.1", - "license": "MIT" - }, - "node_modules/compressible": { - "version": "2.0.18", - "license": "MIT", + "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": { - "mime-db": ">= 1.43.0 < 2" + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": ">= 0.6" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/compression": { - "version": "1.7.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": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">= 0.8.0" + "node": ">=4" } }, - "node_modules/compression/node_modules/debug": { - "version": "2.6.9", + "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", - "dependencies": { - "ms": "2.0.0" + "engines": { + "node": "*" } }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/compute-gcd": { - "version": "1.2.1", - "dependencies": { - "validate.io-array": "^1.0.3", - "validate.io-function": "^1.0.2", - "validate.io-integer-array": "^1.0.0" + "node_modules/css-declaration-sorter": { + "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": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.0.9" } }, - "node_modules/compute-lcm": { - "version": "1.1.2", + "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": { - "compute-gcd": "^1.2.1", - "validate.io-array": "^1.0.3", - "validate.io-function": "^1.0.2", - "validate.io-integer-array": "^1.0.0" + "@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/concat-map": { - "version": "0.0.1", - "license": "MIT" - }, - "node_modules/concat-stream": { - "version": "1.6.2", - "engines": [ - "node >= 0.8" + "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": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" } }, - "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", + "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": { - "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" + "utrie": "^1.0.2" } }, - "node_modules/concat-stream/node_modules/string_decoder": { - "version": "1.1.1", + "node_modules/css-loader": { + "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": { - "safe-buffer": "~5.1.0" + "icss-utils": "^5.1.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.5.4" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "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/concat-with-sourcemaps": { - "version": "1.1.0", - "license": "ISC", + "node_modules/css-minimizer-webpack-plugin": { + "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": { - "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" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "@swc/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "lightningcss": { + "optional": true + } } }, - "node_modules/concat-with-sourcemaps/node_modules/source-map": { - "version": "0.6.1", - "license": "BSD-3-Clause", + "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": ">=0.10.0" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/config-chain": { - "version": "1.1.13", - "license": "MIT", + "node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "license": "BSD-2-Clause", "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" + "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/configstore": { - "version": "5.0.1", - "license": "BSD-2-Clause", + "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": "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": { - "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" + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" }, "engines": { - "node": ">=8" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, - "node_modules/connect-history-api-fallback": { - "version": "2.0.0", - "license": "MIT", + "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": ">=0.8" + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/consola": { - "version": "2.15.3", - "license": "MIT" - }, - "node_modules/console-browserify": { - "version": "1.2.0" - }, - "node_modules/console-stream": { - "version": "0.1.1" - }, - "node_modules/constants-browserify": { - "version": "1.0.0", - "license": "MIT" + "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/content-disposition": { - "version": "0.5.2", + "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" + }, "engines": { - "node": ">= 0.6" + "node": ">=4" } }, - "node_modules/content-type": { - "version": "1.0.4", + "node_modules/cssnano": { + "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": "^6.1.2", + "lilconfig": "^3.1.1" + }, "engines": { - "node": ">= 0.6" + "node": "^14 || ^16 || >=18.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/continuable-cache": { - "version": "0.3.1" - }, - "node_modules/contra": { - "version": "1.9.4", + "node_modules/cssnano-preset-advanced": { + "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": { - "atoa": "1.0.0", - "ticky": "1.0.1" + "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": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/convert-source-map": { - "version": "1.8.0", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.1" + "node_modules/cssnano-preset-default": { + "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/cookie": { - "version": "0.5.0", + "node_modules/cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==", "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=6.9.0" } }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "license": "MIT" - }, - "node_modules/copy-descriptor": { - "version": "0.1.1", + "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": ">=0.10.0" + "node": ">=6.9.0" } }, - "node_modules/copy-text-to-clipboard": { - "version": "3.2.0", + "node_modules/cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", "license": "MIT", - "engines": { - "node": ">=12" + "dependencies": { + "postcss": "^7.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/copy-webpack-plugin": { - "version": "11.0.0", + "node_modules/cssnano-util-raw-cache/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "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": { - "fast-glob": "^3.2.11", - "glob-parent": "^6.0.1", - "globby": "^13.1.1", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { - "node": ">= 14.15.0" + "node": ">=6.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" + "url": "https://opencollective.com/postcss/" } }, - "node_modules/copy-webpack-plugin/node_modules/ajv": { - "version": "8.11.0", + "node_modules/cssnano-util-raw-cache/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", "license": "MIT", - "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" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/copy-webpack-plugin/node_modules/ajv-keywords": { - "version": "5.1.0", + "node_modules/cssnano-utils": { + "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", - "dependencies": { - "fast-deep-equal": "^3.1.3" + "engines": { + "node": "^14 || ^16 || >=18.0" }, "peerDependencies": { - "ajv": "^8.8.2" + "postcss": "^8.4.31" } }, - "node_modules/copy-webpack-plugin/node_modules/glob-parent": { - "version": "6.0.2", - "license": "ISC", + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "license": "MIT", "dependencies": { - "is-glob": "^4.0.3" + "css-tree": "~2.2.0" }, "engines": { - "node": ">=10.13.0" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/copy-webpack-plugin/node_modules/globby": { - "version": "13.1.2", + "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": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/copy-webpack-plugin/node_modules/json-schema-traverse": { - "version": "1.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.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", "license": "MIT" }, - "node_modules/copy-webpack-plugin/node_modules/schema-utils": { - "version": "4.0.0", + "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": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "array-find-index": "^1.0.1" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">=0.10.0" } }, - "node_modules/copy-webpack-plugin/node_modules/slash": { - "version": "4.0.0", + "node_modules/cytoscape": { + "version": "3.30.4", + "resolved": "https://registry.npmjs.org/cytoscape/-/cytoscape-3.30.4.tgz", + "integrity": "sha512-OxtlZwQl1WbwMmLiyPSEBuzeTIQnwZhJYYWFzZ2PhEHVFwpeaqNIkUzSiso00D98qk60l8Gwon2RP304d3BJ1A==", "license": "MIT", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10" } }, - "node_modules/core-js": { - "version": "3.25.1", - "hasInstallScript": true, + "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", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "dependencies": { + "cose-base": "^1.0.0" + }, + "peerDependencies": { + "cytoscape": "^3.2.0" } }, - "node_modules/core-js-compat": { - "version": "3.26.1", + "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": { - "browserslist": "^4.21.4" + "cose-base": "^2.2.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "peerDependencies": { + "cytoscape": "^3.2.0" } }, - "node_modules/core-js-pure": { - "version": "3.24.0", - "hasInstallScript": true, + "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", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "dependencies": { + "layout-base": "^2.0.0" } }, - "node_modules/core-util-is": { - "version": "1.0.3", + "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/cose-base": { - "version": "1.0.3", - "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": { - "layout-base": "^1.0.0" + "d3-array": "3", + "d3-axis": "3", + "d3-brush": "3", + "d3-chord": "3", + "d3-color": "3", + "d3-contour": "4", + "d3-delaunay": "6", + "d3-dispatch": "3", + "d3-drag": "3", + "d3-dsv": "3", + "d3-ease": "3", + "d3-fetch": "3", + "d3-force": "3", + "d3-format": "3", + "d3-geo": "3", + "d3-hierarchy": "3", + "d3-interpolate": "3", + "d3-path": "3", + "d3-polygon": "3", + "d3-quadtree": "3", + "d3-random": "3", + "d3-scale": "4", + "d3-scale-chromatic": "3", + "d3-selection": "3", + "d3-shape": "3", + "d3-time": "3", + "d3-time-format": "4", + "d3-timer": "3", + "d3-transition": "3", + "d3-zoom": "3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/cosmiconfig": { - "version": "7.0.1", - "license": "MIT", + "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": { - "@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" + "internmap": "1 - 2" }, "engines": { - "node": ">=10" + "node": ">=12" } }, - "node_modules/create-ecdh": { - "version": "4.0.4", - "license": "MIT", - "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" + "node_modules/d3-axis": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", + "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", + "license": "ISC", + "engines": { + "node": ">=12" } }, - "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.0", - "license": "MIT" - }, - "node_modules/create-hash": { - "version": "1.2.0", - "license": "MIT", + "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": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "3", + "d3-transition": "3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/create-hmac": { - "version": "1.1.7", - "license": "MIT", + "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": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "d3-path": "1 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/create-jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", - "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", - "dev": true, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-contour": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", + "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", + "license": "ISC", "dependencies": { - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-config": "^29.7.0", - "jest-util": "^29.7.0", - "prompts": "^2.0.1" - }, - "bin": { - "create-jest": "bin/create-jest.js" + "d3-array": "^3.2.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=12" } }, - "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, + "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": { - "color-convert": "^2.0.1" + "delaunator": "5" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=12" } }, - "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, + "node_modules/d3-dispatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", + "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-drag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", + "license": "ISC", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "d3-dispatch": "1 - 3", + "d3-selection": "3" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=12" } }, - "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, + "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": { - "color-name": "~1.1.4" + "commander": "7", + "iconv-lite": "0.6", + "rw": "1" + }, + "bin": { + "csv2json": "bin/dsv2json.js", + "csv2tsv": "bin/dsv2dsv.js", + "dsv2dsv": "bin/dsv2dsv.js", + "dsv2json": "bin/dsv2json.js", + "json2csv": "bin/json2dsv.js", + "json2dsv": "bin/json2dsv.js", + "json2tsv": "bin/json2dsv.js", + "tsv2csv": "bin/dsv2dsv.js", + "tsv2json": "bin/dsv2json.js" }, "engines": { - "node": ">=7.0.0" + "node": ">=12" } }, - "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, + "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": ">=8" + "node": ">= 10" } }, - "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, + "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": { - "has-flag": "^4.0.0" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/crelt": { - "version": "1.0.6", - "license": "MIT" + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12" + } }, - "node_modules/cross-fetch": { - "version": "3.1.8", - "license": "MIT", + "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": { - "node-fetch": "^2.6.12" + "d3-dsv": "1 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "license": "MIT", + "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": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "d3-dispatch": "1 - 3", + "d3-quadtree": "1 - 3", + "d3-timer": "1 - 3" }, "engines": { - "node": ">= 8" + "node": ">=12" } }, - "node_modules/crowdin-cli": { - "version": "0.3.0", - "license": "MIT", + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-geo": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", + "license": "ISC", "dependencies": { - "request": "^2.53.0", - "yamljs": "^0.2.1", - "yargs": "^2.3.0" + "d3-array": "2.5.0 - 3" }, - "bin": { - "crowdin-cli": "bin/crowdin-cli" + "engines": { + "node": ">=12" } }, - "node_modules/crowdin-cli/node_modules/yargs": { - "version": "2.3.0", - "license": "MIT/X11", - "dependencies": { - "wordwrap": "0.0.2" + "node_modules/d3-hierarchy": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", + "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", + "license": "ISC", + "engines": { + "node": ">=12" } }, - "node_modules/crypto-browserify": { - "version": "3.12.0", - "license": "MIT", + "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": { - "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" + "d3-color": "1 - 3" }, "engines": { - "node": "*" + "node": ">=12" } }, - "node_modules/crypto-js": { - "version": "4.2.0", - "license": "MIT" + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } }, - "node_modules/crypto-random-string": { - "version": "2.0.0", - "license": "MIT", + "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": ">=8" + "node": ">=12" } }, - "node_modules/css-color-names": { - "version": "0.0.4", - "license": "MIT", + "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": "*" + "node": ">=12" } }, - "node_modules/css-declaration-sorter": { - "version": "6.3.1", + "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": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.0.9" + "node": ">=12" } }, - "node_modules/css-line-break": { - "version": "2.1.0", - "license": "MIT", + "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": { - "utrie": "^1.0.2" + "d3-array": "1 - 2", + "d3-shape": "^1.2.0" } }, - "node_modules/css-loader": { - "version": "6.7.1", - "license": "MIT", + "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": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.7", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.3.5" + "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", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" + "node": ">=12" } }, - "node_modules/css-minimizer-webpack-plugin": { - "version": "4.0.0", - "license": "MIT", + "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": { - "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" + "d3-color": "1 - 3", + "d3-interpolate": "1 - 3" }, "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@parcel/css": { - "optional": true - }, - "clean-css": { - "optional": true - }, - "csso": { - "optional": true - }, - "esbuild": { - "optional": true - } + "node": ">=12" } }, - "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { - "version": "8.11.0", - "license": "MIT", + "node_modules/d3-selection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "d3-path": "^3.1.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "engines": { + "node": ">=12" } }, - "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { - "version": "5.1.0", - "license": "MIT", + "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": { - "fast-deep-equal": "^3.1.3" + "d3-array": "2 - 3" }, - "peerDependencies": { - "ajv": "^8.8.2" + "engines": { + "node": ">=12" } }, - "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", + "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": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "d3-time": "1 - 3" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">=12" } }, - "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { - "version": "0.6.1", - "license": "BSD-3-Clause", + "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": ">=0.10.0" + "node": ">=12" } }, - "node_modules/css-select": { - "version": "4.3.0", - "license": "BSD-2-Clause", + "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": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" + "d3-color": "1 - 3", + "d3-dispatch": "1 - 3", + "d3-ease": "1 - 3", + "d3-interpolate": "1 - 3", + "d3-timer": "1 - 3" }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "d3-selection": "2 - 3" } }, - "node_modules/css-select-base-adapter": { - "version": "0.1.1", - "license": "MIT" - }, - "node_modules/css-tree": { - "version": "1.1.3", - "license": "MIT", + "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": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "2 - 3", + "d3-transition": "2 - 3" }, "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": ">=12" } }, - "node_modules/css-what": { - "version": "6.1.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "node_modules/dagre-d3-es": { + "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.9.0", + "lodash-es": "^4.17.21" } }, - "node_modules/cssesc": { - "version": "3.0.0", + "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", - "bin": { - "cssesc": "bin/cssesc" + "dependencies": { + "assert-plus": "^1.0.0" }, "engines": { - "node": ">=4" + "node": ">=0.10" } }, - "node_modules/cssnano": { - "version": "5.1.12", + "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": { - "cssnano-preset-default": "^5.2.12", - "lilconfig": "^2.0.3", - "yaml": "^1.10.2" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/cssnano" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cssnano-preset-advanced": { - "version": "5.3.10", + "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": { - "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" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">= 0.4" }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "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" - } - }, - "node_modules/cssnano-util-get-arguments": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/cssnano-util-get-match": { - "version": "4.0.0", - "license": "MIT", - "engines": { - "node": ">=6.9.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cssnano-util-raw-cache": { - "version": "4.0.1", + "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": { - "postcss": "^7.0.0" + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { - "node": ">=6.9.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cssnano-util-raw-cache/node_modules/picocolors": { - "version": "0.2.1", - "license": "ISC" + "node_modules/dayjs": { + "version": "1.11.13", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz", + "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==", + "license": "MIT" }, - "node_modules/cssnano-util-raw-cache/node_modules/postcss": { - "version": "7.0.39", + "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.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": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "ms": "^2.1.3" }, "engines": { - "node": ">=6.0.0" + "node": ">=6.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/cssnano-util-raw-cache/node_modules/source-map": { - "version": "0.6.1", - "license": "BSD-3-Clause", + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/cssnano-util-same-parent": { - "version": "4.0.1", + "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", - "engines": { - "node": ">=6.9.0" + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/cssnano-utils": { - "version": "3.1.0", + "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": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=0.10" } }, - "node_modules/csso": { - "version": "4.2.0", + "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": { - "css-tree": "^1.1.2" - }, - "engines": { - "node": ">=8.0.0" + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/csstype": { - "version": "3.0.10", - "license": "MIT" - }, - "node_modules/currently-unhandled": { - "version": "0.4.1", + "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": { - "array-find-index": "^1.0.1" + "mimic-response": "^1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/cytoscape": { - "version": "3.28.1", + "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": { - "heap": "^0.2.6", - "lodash": "^4.17.21" + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" }, "engines": { - "node": ">=0.10" + "node": ">=4" } }, - "node_modules/cytoscape-cose-bilkent": { - "version": "4.1.0", + "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", - "dependencies": { - "cose-base": "^1.0.0" - }, - "peerDependencies": { - "cytoscape": "^3.2.0" + "engines": { + "node": ">=4" } }, - "node_modules/cytoscape-fcose": { - "version": "2.2.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": { - "cose-base": "^2.2.0" + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" }, - "peerDependencies": { - "cytoscape": "^3.2.0" + "engines": { + "node": ">=4" } }, - "node_modules/cytoscape-fcose/node_modules/cose-base": { - "version": "2.2.0", + "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", - "dependencies": { - "layout-base": "^2.0.0" - } - }, - "node_modules/cytoscape-fcose/node_modules/layout-base": { - "version": "2.0.1", - "license": "MIT" - }, - "node_modules/d3": { - "version": "7.9.0", - "license": "ISC", - "dependencies": { - "d3-array": "3", - "d3-axis": "3", - "d3-brush": "3", - "d3-chord": "3", - "d3-color": "3", - "d3-contour": "4", - "d3-delaunay": "6", - "d3-dispatch": "3", - "d3-drag": "3", - "d3-dsv": "3", - "d3-ease": "3", - "d3-fetch": "3", - "d3-force": "3", - "d3-format": "3", - "d3-geo": "3", - "d3-hierarchy": "3", - "d3-interpolate": "3", - "d3-path": "3", - "d3-polygon": "3", - "d3-quadtree": "3", - "d3-random": "3", - "d3-scale": "4", - "d3-scale-chromatic": "3", - "d3-selection": "3", - "d3-shape": "3", - "d3-time": "3", - "d3-time-format": "4", - "d3-timer": "3", - "d3-transition": "3", - "d3-zoom": "3" - }, "engines": { - "node": ">=12" + "node": ">=4" } }, - "node_modules/d3-array": { - "version": "3.2.4", - "license": "ISC", + "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": { - "internmap": "1 - 2" + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" }, "engines": { - "node": ">=12" + "node": ">=4" } }, - "node_modules/d3-axis": { - "version": "3.0.0", - "license": "ISC", + "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": ">=12" + "node": ">=4" } }, - "node_modules/d3-brush": { - "version": "3.0.0", - "license": "ISC", + "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": { - "d3-dispatch": "1 - 3", - "d3-drag": "2 - 3", - "d3-interpolate": "1 - 3", - "d3-selection": "3", - "d3-transition": "3" + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" }, "engines": { - "node": ">=12" + "node": ">=4" } }, - "node_modules/d3-chord": { - "version": "3.0.1", - "license": "ISC", - "dependencies": { - "d3-path": "1 - 3" - }, + "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": ">=12" + "node": ">=0.10.0" } }, - "node_modules/d3-color": { - "version": "3.1.0", - "license": "ISC", + "node_modules/decompress-unzip/node_modules/get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==", + "license": "MIT", + "dependencies": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + }, "engines": { - "node": ">=12" + "node": ">=0.10.0" } }, - "node_modules/d3-contour": { - "version": "4.0.2", - "license": "ISC", - "dependencies": { - "d3-array": "^3.2.0" - }, + "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": ">=12" + "node": ">=0.10.0" } }, - "node_modules/d3-delaunay": { - "version": "6.0.4", - "license": "ISC", + "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": { - "delaunator": "5" + "pify": "^3.0.0" }, "engines": { - "node": ">=12" + "node": ">=4" } }, - "node_modules/d3-dispatch": { - "version": "3.0.1", - "license": "ISC", + "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": ">=12" + "node": ">=4" } }, - "node_modules/d3-drag": { - "version": "3.0.0", - "license": "ISC", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-selection": "3" - }, + "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": ">=12" + "node": ">=0.10.0" } }, - "node_modules/d3-dsv": { - "version": "3.0.1", - "license": "ISC", - "dependencies": { - "commander": "7", - "iconv-lite": "0.6", - "rw": "1" - }, - "bin": { - "csv2json": "bin/dsv2json.js", - "csv2tsv": "bin/dsv2dsv.js", - "dsv2dsv": "bin/dsv2dsv.js", - "dsv2json": "bin/dsv2json.js", - "json2csv": "bin/json2dsv.js", - "json2dsv": "bin/json2dsv.js", - "json2tsv": "bin/json2dsv.js", - "tsv2csv": "bin/dsv2dsv.js", - "tsv2json": "bin/dsv2json.js" + "node_modules/dedent": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", + "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" }, - "engines": { - "node": ">=12" + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } } }, - "node_modules/d3-dsv/node_modules/commander": { - "version": "7.2.0", + "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": ">= 10" + "node": ">=4.0.0" } }, - "node_modules/d3-dsv/node_modules/iconv-lite": { - "version": "0.6.3", + "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.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", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/d3-ease": { - "version": "3.0.1", - "license": "BSD-3-Clause", + "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" + }, "engines": { - "node": ">=12" + "node": ">= 10" } }, - "node_modules/d3-fetch": { - "version": "3.0.1", - "license": "ISC", + "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": { - "d3-dsv": "1 - 3" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=12" + "node": ">= 8" } }, - "node_modules/d3-force": { - "version": "3.0.0", - "license": "ISC", + "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": { - "d3-dispatch": "1 - 3", - "d3-quadtree": "1 - 3", - "d3-timer": "1 - 3" + "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": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/d3-format": { - "version": "3.1.0", - "license": "ISC", + "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", "engines": { - "node": ">=12" - } - }, - "node_modules/d3-geo": { - "version": "3.1.1", - "license": "ISC", - "dependencies": { - "d3-array": "2.5.0 - 3" + "node": ">=10" }, - "engines": { - "node": ">=12" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/d3-hierarchy": { - "version": "3.1.2", - "license": "ISC", + "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", "engines": { - "node": ">=12" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/d3-interpolate": { - "version": "3.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": { - "d3-color": "1 - 3" + "path-key": "^3.0.0" }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/d3-path": { - "version": "3.1.0", - "license": "ISC", + "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": ">=12" + "node": ">=8" } }, - "node_modules/d3-polygon": { - "version": "3.0.1", - "license": "ISC", + "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": ">=12" + "node": ">=8" } }, - "node_modules/d3-quadtree": { - "version": "3.0.1", - "license": "ISC", + "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": ">=12" + "node": ">=8" } }, - "node_modules/d3-random": { - "version": "3.0.1", + "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": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, "engines": { - "node": ">=12" + "node": ">= 8" } }, - "node_modules/d3-scale": { - "version": "4.0.2", - "license": "ISC", - "dependencies": { - "d3-array": "2.10.0 - 3", - "d3-format": "1 - 3", - "d3-interpolate": "1.2.0 - 3", - "d3-time": "2.1.1 - 3", - "d3-time-format": "2 - 4" - }, + "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": ">=12" + "node": ">=10" } }, - "node_modules/d3-scale-chromatic": { - "version": "3.1.0", - "license": "ISC", + "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": { - "d3-color": "1 - 3", - "d3-interpolate": "1 - 3" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" }, "engines": { - "node": ">=12" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/d3-selection": { - "version": "3.0.0", - "license": "ISC", + "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": ">=12" + "node": ">=8" } }, - "node_modules/d3-shape": { - "version": "3.2.0", - "license": "ISC", + "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": { - "d3-path": "^3.1.0" + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" }, "engines": { - "node": ">=12" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/d3-time": { - "version": "3.1.0", - "license": "ISC", + "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": { - "d3-array": "2 - 3" + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" }, "engines": { - "node": ">=12" + "node": ">=0.10.0" } }, - "node_modules/d3-time-format": { - "version": "4.1.0", - "license": "ISC", + "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": { - "d3-time": "1 - 3" + "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": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/d3-timer": { - "version": "3.0.1", + "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": ">=12" + "node": ">=0.4.0" } }, - "node_modules/d3-transition": { - "version": "3.0.1", - "license": "ISC", - "dependencies": { - "d3-color": "1 - 3", - "d3-dispatch": "1 - 3", - "d3-ease": "1 - 3", - "d3-interpolate": "1 - 3", - "d3-timer": "1 - 3" - }, + "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": ">=12" - }, - "peerDependencies": { - "d3-selection": "2 - 3" + "node": ">= 0.8" } }, - "node_modules/d3-zoom": { - "version": "3.0.0", - "license": "ISC", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-drag": "2 - 3", - "d3-interpolate": "1 - 3", - "d3-selection": "2 - 3", - "d3-transition": "2 - 3" - }, + "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": ">=12" + "node": ">=6" } }, - "node_modules/dagre-d3-es": { - "version": "7.0.9", + "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": { - "d3": "^7.8.2", - "lodash-es": "^4.17.21" + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" } }, - "node_modules/dashdash": { - "version": "1.14.1", + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "license": "MIT", - "dependencies": { - "assert-plus": "^1.0.0" - }, "engines": { - "node": ">=0.10" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/dayjs": { - "version": "1.11.10", + "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" + }, + "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": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "license": "MIT" }, - "node_modules/debug": { - "version": "4.3.4", + "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": { - "ms": "2.1.2" + "execa": "^5.1.1" }, "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "node": ">=12" } }, - "node_modules/decamelize": { - "version": "1.2.0", + "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": ">=0.10.0" + "node": ">= 8" } }, - "node_modules/decode-named-character-reference": { - "version": "1.0.2", + "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": { - "character-entities": "^2.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/decode-named-character-reference/node_modules/character-entities": { - "version": "2.0.2", + "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": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/decode-uri-component": { - "version": "0.2.2", + "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": ">=0.10" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/decompress": { - "version": "4.2.1", + "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": { - "decompress-tar": "^4.0.0", - "decompress-tarbz2": "^4.0.0", - "decompress-targz": "^4.0.0", - "decompress-unzip": "^4.0.1", - "graceful-fs": "^4.1.10", - "make-dir": "^1.0.0", - "pify": "^2.3.0", - "strip-dirs": "^2.0.0" + "path-key": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/decompress-response": { - "version": "3.3.0", + "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", - "dependencies": { - "mimic-response": "^1.0.0" - }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/decompress-tar": { - "version": "4.1.1", + "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": { - "file-type": "^5.2.0", - "is-stream": "^1.1.0", - "tar-stream": "^1.5.2" + "shebang-regex": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/decompress-tar/node_modules/file-type": { - "version": "5.2.0", + "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": ">=4" + "node": ">=8" } }, - "node_modules/decompress-tar/node_modules/is-stream": { - "version": "1.1.0", - "license": "MIT", + "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": ">=0.10.0" + "node": ">= 8" } }, - "node_modules/decompress-tarbz2": { - "version": "4.1.1", + "node_modules/detect-port": { + "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": { - "decompress-tar": "^4.1.0", - "file-type": "^6.1.0", - "is-stream": "^1.1.0", - "seek-bzip": "^1.0.5", - "unbzip2-stream": "^1.0.9" + "address": "^1.0.1", + "debug": "4" + }, + "bin": { + "detect": "bin/detect-port.js", + "detect-port": "bin/detect-port.js" }, "engines": { - "node": ">=4" + "node": ">= 4.0.0" } }, - "node_modules/decompress-tarbz2/node_modules/file-type": { - "version": "6.2.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", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, "engines": { - "node": ">=4" + "node": ">= 4.2.1" } }, - "node_modules/decompress-tarbz2/node_modules/is-stream": { - "version": "1.1.0", + "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", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/decompress-targz": { - "version": "4.1.1", + "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/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": { - "decompress-tar": "^4.1.1", - "file-type": "^5.2.0", - "is-stream": "^1.1.0" + "dequal": "^2.0.0" }, - "engines": { - "node": ">=4" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/decompress-targz/node_modules/file-type": { - "version": "5.2.0", + "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": ">=4" + "node": ">=0.8.0" } }, - "node_modules/decompress-targz/node_modules/is-stream": { - "version": "1.1.0", + "node_modules/didi": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/didi/-/didi-10.2.2.tgz", + "integrity": "sha512-l8NYkYFXV1izHI65EyT8EXOjUZtKmQkHLTT89cSP7HU5J/G7AOj0dXKtLc04EXYlga99PBY18IPjOeZ+c3DI4w==", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 16" } }, - "node_modules/decompress-unzip": { - "version": "4.0.1", - "license": "MIT", - "dependencies": { - "file-type": "^3.8.0", - "get-stream": "^2.2.0", - "pify": "^2.3.0", - "yauzl": "^2.4.2" - }, + "node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "license": "BSD-3-Clause", "engines": { - "node": ">=4" + "node": ">=0.3.1" } }, - "node_modules/decompress-unzip/node_modules/file-type": { - "version": "3.9.0", + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/decompress-unzip/node_modules/get-stream": { - "version": "2.3.1", + "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": { - "object-assign": "^4.0.1", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" } }, - "node_modules/decompress-unzip/node_modules/pify": { - "version": "2.3.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } + "node_modules/diffie-hellman/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/decompress/node_modules/make-dir": { - "version": "1.3.0", + "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": { - "pify": "^3.0.0" + "path-type": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/decompress/node_modules/make-dir/node_modules/pify": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } + "node_modules/discontinuous-range": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", + "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==", + "license": "MIT" }, - "node_modules/decompress/node_modules/pify": { - "version": "2.3.0", + "node_modules/dns-packet": { + "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" + }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/dedent": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", - "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", - "dev": true, + "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", - "peerDependencies": { - "babel-plugin-macros": "^3.1.0" + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", + "@babel/polyfill": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@babel/register": "^7.12.1", + "@babel/traverse": "^7.12.5", + "@babel/types": "^7.12.6", + "autoprefixer": "^9.7.5", + "babylon": "^6.18.0", + "chalk": "^3.0.0", + "classnames": "^2.2.6", + "commander": "^4.0.1", + "crowdin-cli": "^0.3.0", + "cssnano": "^4.1.10", + "enzyme": "^3.10.0", + "enzyme-adapter-react-16": "^1.15.1", + "escape-string-regexp": "^2.0.0", + "express": "^4.17.1", + "feed": "^4.2.1", + "fs-extra": "^9.0.1", + "gaze": "^1.1.3", + "github-slugger": "^1.3.0", + "glob": "^7.1.6", + "highlight.js": "^9.16.2", + "imagemin": "^6.0.0", + "imagemin-gifsicle": "^6.0.1", + "imagemin-jpegtran": "^6.0.0", + "imagemin-optipng": "^6.0.0", + "imagemin-svgo": "^7.0.0", + "lodash": "^4.17.20", + "markdown-toc": "^1.2.0", + "mkdirp": "^0.5.1", + "portfinder": "^1.0.28", + "postcss": "^7.0.23", + "prismjs": "^1.22.0", + "react": "^16.8.4", + "react-dev-utils": "^11.0.1", + "react-dom": "^16.8.4", + "remarkable": "^2.0.0", + "request": "^2.88.0", + "shelljs": "^0.8.4", + "sitemap": "^3.2.2", + "tcp-port-used": "^1.0.1", + "tiny-lr": "^1.1.1", + "tree-node-cli": "^1.2.5", + "truncate-html": "^1.0.3" }, - "peerDependenciesMeta": { - "babel-plugin-macros": { - "optional": true - } - } - }, - "node_modules/deep-extend": { - "version": "0.6.0", - "license": "MIT", - "engines": { - "node": ">=4.0.0" + "bin": { + "docusaurus-build": "lib/build-files.js", + "docusaurus-examples": "lib/copy-examples.js", + "docusaurus-publish": "lib/publish-gh-pages.js", + "docusaurus-rename-version": "lib/rename-version.js", + "docusaurus-start": "lib/start-server.js", + "docusaurus-version": "lib/version.js", + "docusaurus-write-translations": "lib/write-translations.js" } }, - "node_modules/deep-is": { - "version": "0.1.4", - "license": "MIT" - }, - "node_modules/deepmerge": { - "version": "4.2.2", + "node_modules/docusaurus-plugin-openapi-docs": { + "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", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/default-gateway": { - "version": "6.0.3", - "license": "BSD-2-Clause", "dependencies": { - "execa": "^5.0.0" + "@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", + "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" }, "engines": { - "node": ">= 10" + "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/defer-to-connect": { - "version": "1.1.3", - "license": "MIT" - }, - "node_modules/define-lazy-prop": { - "version": "2.0.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", "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/define-properties": { - "version": "1.1.4", + "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": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10" } }, - "node_modules/define-property": { - "version": "2.0.2", + "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": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" + "sass-loader": "^16.0.2" }, - "engines": { - "node": ">=0.10.0" + "peerDependencies": { + "@docusaurus/core": "^2.0.0-beta || ^3.0.0-alpha", + "sass": "^1.30.0" } }, - "node_modules/del": { - "version": "6.1.1", + "node_modules/docusaurus-theme-openapi-docs": { + "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": { - "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" + "@hookform/error-message": "^2.0.1", + "@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", + "file-saver": "^2.0.5", + "lodash": "^4.17.20", + "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", + "react-markdown": "^8.0.1", + "react-modal": "^3.15.1", + "react-redux": "^7.2.0", + "rehype-raw": "^6.1.1", + "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" }, "engines": { - "node": ">=10" + "node": ">=14" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "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/delaunator": { - "version": "5.0.1", - "license": "ISC", + "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": { - "robust-predicates": "^3.0.2" + "@types/unist": "^2" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", + "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", - "engines": { - "node": ">=0.4.0" + "dependencies": { + "@types/unist": "^2" } }, - "node_modules/depd": { - "version": "2.0.0", + "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": ">= 0.8" + "node": ">=6" } }, - "node_modules/dequal": { - "version": "2.0.3", + "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", "engines": { - "node": ">=6" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/des.js": { - "version": "1.1.0", + "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": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.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/unified" } }, - "node_modules/destroy": { - "version": "1.2.0", + "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", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "dependencies": { + "@types/hast": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/detab": { - "version": "2.0.4", + "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": { - "repeat-string": "^1.5.4" + "@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": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/detect-newline": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/detect-node": { - "version": "2.1.0", - "license": "MIT" - }, - "node_modules/detect-port": { - "version": "1.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": { - "address": "^1.0.1", - "debug": "^2.6.0" - }, - "bin": { - "detect": "bin/detect-port", - "detect-port": "bin/detect-port" + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" }, - "engines": { - "node": ">= 4.2.1" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/detect-port-alt": { - "version": "1.1.6", + "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": { - "address": "^1.0.1", - "debug": "^2.6.0" - }, - "bin": { - "detect": "bin/detect-port", - "detect-port": "bin/detect-port" + "@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" }, - "engines": { - "node": ">= 4.2.1" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/detect-port-alt/node_modules/debug": { - "version": "2.6.9", + "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": { - "ms": "2.0.0" + "@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": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/detect-port-alt/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/detect-port/node_modules/debug": { - "version": "2.6.9", + "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": { - "ms": "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", + "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", "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/didi": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/didi/-/didi-10.2.2.tgz", - "integrity": "sha512-l8NYkYFXV1izHI65EyT8EXOjUZtKmQkHLTT89cSP7HU5J/G7AOj0dXKtLc04EXYlga99PBY18IPjOeZ+c3DI4w==", - "engines": { - "node": ">= 16" - } - }, - "node_modules/diff": { - "version": "5.1.0", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/diff-sequences": { - "version": "29.6.3", - "dev": true, + "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", - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "dependencies": { + "@types/mdast": "^3.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/diffie-hellman": { - "version": "5.0.3", + "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": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" + "@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" } }, - "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.0", - "license": "MIT" - }, - "node_modules/dir-glob": { - "version": "3.0.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": { - "path-type": "^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": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/discontinuous-range": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/dns-equal": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/dns-packet": { - "version": "5.4.0", + "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": { - "@leichtgewicht/ip-codec": "^2.0.1" + "@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": ">=6" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus": { - "version": "1.14.7", + "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": { - "@babel/core": "^7.12.3", - "@babel/plugin-proposal-class-properties": "^7.12.1", - "@babel/plugin-proposal-object-rest-spread": "^7.12.1", - "@babel/polyfill": "^7.12.1", - "@babel/preset-env": "^7.12.1", - "@babel/preset-react": "^7.12.5", - "@babel/register": "^7.12.1", - "@babel/traverse": "^7.12.5", - "@babel/types": "^7.12.6", - "autoprefixer": "^9.7.5", - "babylon": "^6.18.0", - "chalk": "^3.0.0", - "classnames": "^2.2.6", - "commander": "^4.0.1", - "crowdin-cli": "^0.3.0", - "cssnano": "^4.1.10", - "enzyme": "^3.10.0", - "enzyme-adapter-react-16": "^1.15.1", - "escape-string-regexp": "^2.0.0", - "express": "^4.17.1", - "feed": "^4.2.1", - "fs-extra": "^9.0.1", - "gaze": "^1.1.3", - "github-slugger": "^1.3.0", - "glob": "^7.1.6", - "highlight.js": "^9.16.2", - "imagemin": "^6.0.0", - "imagemin-gifsicle": "^6.0.1", - "imagemin-jpegtran": "^6.0.0", - "imagemin-optipng": "^6.0.0", - "imagemin-svgo": "^7.0.0", - "lodash": "^4.17.20", - "markdown-toc": "^1.2.0", - "mkdirp": "^0.5.1", - "portfinder": "^1.0.28", - "postcss": "^7.0.23", - "prismjs": "^1.22.0", - "react": "^16.8.4", - "react-dev-utils": "^11.0.1", - "react-dom": "^16.8.4", - "remarkable": "^2.0.0", - "request": "^2.88.0", - "shelljs": "^0.8.4", - "sitemap": "^3.2.2", - "tcp-port-used": "^1.0.1", - "tiny-lr": "^1.1.1", - "tree-node-cli": "^1.2.5", - "truncate-html": "^1.0.3" + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0", + "micromark-util-normalize-identifier": "^1.0.0" }, - "bin": { - "docusaurus-build": "lib/build-files.js", - "docusaurus-examples": "lib/copy-examples.js", - "docusaurus-publish": "lib/publish-gh-pages.js", - "docusaurus-rename-version": "lib/rename-version.js", - "docusaurus-start": "lib/start-server.js", - "docusaurus-version": "lib/version.js", - "docusaurus-write-translations": "lib/write-translations.js" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus-plugin-openapi-docs": { - "version": "2.0.4", + "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": { - "@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", - "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", - "lodash": "^4.17.20", - "mustache": "^4.2.0", - "slugify": "^1.6.5", - "swagger2openapi": "^7.0.8", - "xml-formatter": "^2.6.1" - }, - "engines": { - "node": ">=14" + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0" }, - "peerDependencies": { - "react": "^16.8.4 || ^17.0.0 || ^18.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/ansi-styles": { - "version": "4.3.0", + "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": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "@types/mdast": "^3.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.3.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/chalk": { - "version": "4.1.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": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0" }, "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" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/color-convert": { - "version": "2.0.1", + "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": { - "color-name": "~1.1.4" + "@types/mdast": "^3.0.0", + "unist-util-is": "^5.0.0" }, - "engines": { - "node": ">=7.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "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", + "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": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "@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" }, - "engines": { - "node": ">=10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/has-flag": { - "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", - "engines": { - "node": ">=8" + "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/docusaurus-plugin-openapi-docs/node_modules/supports-color": { - "version": "7.2.0", + "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": { - "has-flag": "^4.0.0" + "@types/mdast": "^3.0.0" }, - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus-theme-openapi-docs": { - "version": "2.0.4", + "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": { - "@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", - "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", - "react-hook-form": "^7.43.8", - "react-live": "^4.0.0", - "react-magic-dropzone": "^1.0.1", - "react-markdown": "^8.0.1", - "react-modal": "^3.15.1", - "react-redux": "^7.2.0", - "rehype-raw": "^6.1.1", - "sass": "^1.58.1", - "sass-loader": "^13.3.2", - "webpack": "^5.61.0", - "xml-formatter": "^2.6.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "react": "^16.8.4 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0" + "@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-theme-openapi-docs/node_modules/clsx": { - "version": "1.2.1", + "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", - "engines": { - "node": ">=6" + "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" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/docusaurus-plugin-sass": { - "version": "0.2.5", + "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": { - "sass-loader": "^10.1.1" + "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" }, - "peerDependencies": { - "@docusaurus/core": "^2.0.0-beta || ^3.0.0-alpha", - "sass": "^1.30.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "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/micromark-extension-gfm-autolink-literal": { + "version": "1.0.5", + "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": { - "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" + "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" }, "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/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": { - "@babel/highlight": "^7.10.4" + "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" + }, + "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/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.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" + "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/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/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": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "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" }, "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/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": { - "sprintf-js": "~1.0.2" + "micromark-util-types": "^1.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/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": { - "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" + "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" }, "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/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": { - "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" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/browserslist": { - "version": "4.14.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": { - "caniuse-lite": "^1.0.30001125", - "electron-to-chromium": "^1.3.564", - "escalade": "^3.0.2", - "node-releases": "^1.1.61" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - }, - "funding": { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" + "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/chalk": { - "version": "3.0.0", + "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": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" + "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/color-convert": { - "version": "2.0.1", + "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": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "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" + "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/cosmiconfig": { - "version": "5.2.1", + "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": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" - }, - "engines": { - "node": ">=4" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/css-declaration-sorter": { - "version": "4.0.1", + "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": { - "postcss": "^7.0.1", - "timsort": "^0.3.0" - }, - "engines": { - "node": ">4" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/css-select": { - "version": "2.1.0", - "license": "BSD-2-Clause", + "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", "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/css-tree": { - "version": "1.0.0-alpha.37", + "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": { - "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" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/cssnano": { - "version": "4.1.11", + "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": { - "cosmiconfig": "^5.0.0", - "cssnano-preset-default": "^4.0.8", - "is-resolvable": "^1.0.0", - "postcss": "^7.0.0" - }, - "engines": { - "node": ">=6.9.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/docusaurus/node_modules/cssnano-preset-default": { - "version": "4.0.8", - "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" - }, - "engines": { - "node": ">=6.9.0" + "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-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": { + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/dom-serializer": { - "version": "0.2.2", + "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": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/domutils": { - "version": "1.7.0", - "license": "BSD-2-Clause", + "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": { - "dom-serializer": "0", - "domelementtype": "1" + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/docusaurus/node_modules/domutils/node_modules/domelementtype": { - "version": "1.3.1", - "license": "BSD-2-Clause" + "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": { + "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/enzyme-adapter-react-16": { - "version": "1.15.7", + "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-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-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": { - "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/hast": "^2.0.0", + "hast-util-raw": "^7.2.0", + "unified": "^10.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/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": { - "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", + "mdast-util-gfm": "^2.0.0", + "micromark-extension-gfm": "^2.0.0", + "unified": "^10.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" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/escape-string-regexp": { - "version": "2.0.0", + "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", - "engines": { - "node": ">=8" - } - }, - "node_modules/docusaurus/node_modules/filesize": { - "version": "6.1.0", - "license": "BSD-3-Clause", - "engines": { - "node": ">= 0.4.0" + "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/docusaurus/node_modules/fill-range": { - "version": "4.0.0", + "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": { - "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" }, - "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/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": { - "@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/unist": "^2.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/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": { - "color-convert": "^1.9.0" + "@types/unist": "^2.0.0" }, - "engines": { - "node": ">=4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { - "version": "2.4.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": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" }, - "engines": { - "node": ">=4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "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/vfile": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", "license": "MIT", "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { - "version": "1.1.3", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/escape-string-regexp": { - "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", - "license": "MIT", - "dependencies": { - "has-flag": "^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": ">=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/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": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "@types/unist": "^2.0.0", + "vfile": "^5.0.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/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": { - "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" + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.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/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": { - "duplexer": "^0.1.1", - "pify": "^4.0.1" - }, - "engines": { - "node": ">=6" + "@babel/highlight": "^7.10.4" } }, - "node_modules/docusaurus/node_modules/has-flag": { - "version": "4.0.0", + "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", "engines": { - "node": ">=8" + "node": ">= 0.12.0" } }, - "node_modules/docusaurus/node_modules/immer": { - "version": "8.0.1", + "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": { + "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" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/immer" + "url": "https://github.com/sponsors/ljharb" + }, + "peerDependencies": { + "react": "^0.14 || ^15.0.0 || ^16.0.0-alpha" } }, - "node_modules/docusaurus/node_modules/import-fresh": { - "version": "2.0.0", + "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": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" - }, - "engines": { - "node": ">=4" + "sprintf-js": "~1.0.2" } }, - "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/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": { - "is-plain-object": "^2.0.4" + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + }, + "node_modules/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": ">=0.10.0" + "node": "*" } }, - "node_modules/docusaurus/node_modules/is-number": { - "version": "3.0.0", + "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": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/docusaurus/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.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": { - "is-buffer": "^1.1.5" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/docusaurus/node_modules/js-yaml": { - "version": "3.14.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": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "caniuse-lite": "^1.0.30001125", + "electron-to-chromium": "^1.3.564", + "escalade": "^3.0.2", + "node-releases": "^1.1.61" }, "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/docusaurus/node_modules/loader-utils": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" + "browserslist": "cli.js" }, "engines": { - "node": ">=8.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/mdn-data": { - "version": "2.0.4", - "license": "CC0-1.0" - }, - "node_modules/docusaurus/node_modules/micromatch": { - "version": "3.1.10", + "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": { - "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" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/docusaurus/node_modules/micromatch/node_modules/extend-shallow": { - "version": "3.0.2", + "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": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" + "color-name": "1.1.3" } }, - "node_modules/docusaurus/node_modules/node-releases": { - "version": "1.1.77", + "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/normalize-url": { - "version": "3.3.0", + "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": ">= 6" } }, - "node_modules/docusaurus/node_modules/nth-check": { - "version": "1.0.2", - "license": "BSD-2-Clause", + "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": { - "boolbase": "~1.0.0" + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/docusaurus/node_modules/open": { - "version": "7.4.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": { - "is-docker": "^2.0.0", - "is-wsl": "^2.1.1" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 8" } }, - "node_modules/docusaurus/node_modules/parse-json": { - "version": "4.0.0", + "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": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "postcss": "^7.0.1", + "timsort": "^0.3.0" }, "engines": { - "node": ">=4" + "node": ">4" } }, - "node_modules/docusaurus/node_modules/picocolors": { - "version": "0.2.1", - "license": "ISC" + "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/postcss": { - "version": "7.0.39", + "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": { - "picocolors": "^0.2.1", + "mdn-data": "2.0.4", "source-map": "^0.6.1" }, "engines": { - "node": ">=6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" + "node": ">=8.0.0" } }, - "node_modules/docusaurus/node_modules/postcss-calc": { - "version": "7.0.5", - "license": "MIT", - "dependencies": { - "postcss": "^7.0.27", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.0.2" + "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-colormin": { - "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": { - "browserslist": "^4.0.0", - "color": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.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-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/node_modules/cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", + "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", "license": "MIT", "dependencies": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", "postcss": "^7.0.0", - "postcss-value-parser": "^3.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/postcss-convert-values/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-discard-comments": { - "version": "4.0.2", + "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": { - "postcss": "^7.0.0" + "css-tree": "^1.1.2" }, "engines": { - "node": ">=6.9.0" + "node": ">=8.0.0" } }, - "node_modules/docusaurus/node_modules/postcss-discard-duplicates": { - "version": "4.0.2", + "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": { - "postcss": "^7.0.0" + "mdn-data": "2.0.14", + "source-map": "^0.6.1" }, "engines": { - "node": ">=6.9.0" + "node": ">=8.0.0" } }, - "node_modules/docusaurus/node_modules/postcss-discard-empty": { - "version": "4.0.1", + "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": { - "postcss": "^7.0.0" - }, - "engines": { - "node": ">=6.9.0" + "domelementtype": "^2.0.1", + "entities": "^2.0.0" } }, - "node_modules/docusaurus/node_modules/postcss-discard-overridden": { - "version": "4.0.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": { - "postcss": "^7.0.0" - }, - "engines": { - "node": ">=6.9.0" + "dom-serializer": "0", + "domelementtype": "1" } }, - "node_modules/docusaurus/node_modules/postcss-merge-longhand": { - "version": "4.0.11", + "node_modules/docusaurus/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "license": "BSD-2-Clause" + }, + "node_modules/docusaurus/node_modules/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": { - "css-color-names": "0.0.4", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "stylehacks": "^4.0.0" + "is-obj": "^2.0.0" }, "engines": { - "node": ">=6.9.0" + "node": ">=8" } }, - "node_modules/docusaurus/node_modules/postcss-merge-longhand/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" + "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/postcss-merge-rules": { - "version": "4.0.3", + "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": { - "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" + "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": ">=6.9.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "peerDependencies": { + "enzyme": "^3.0.0", + "react": "^16.0.0-0", + "react-dom": "^16.0.0-0" } }, - "node_modules/docusaurus/node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { - "version": "3.1.2", + "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": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.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": "0.13.x || 0.14.x || ^15.0.0-0 || ^16.0.0-0" + } + }, + "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.js" + } + }, + "node_modules/docusaurus/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/docusaurus/node_modules/postcss-minify-font-values": { - "version": "4.0.2", + "node_modules/docusaurus/node_modules/filesize": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz", + "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/docusaurus/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", "license": "MIT", "dependencies": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.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": ">=6.9.0" + "node": ">=0.10.0" } }, - "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/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": { - "cssnano-util-get-arguments": "^4.0.0", - "is-color-stop": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" }, "engines": { - "node": ">=6.9.0" + "node": ">=6.11.5", + "yarn": ">=1.0.0" } }, - "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/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": { - "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" + "color-convert": "^1.9.0" }, "engines": { - "node": ">=6.9.0" + "node": ">=4" } }, - "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/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": { - "alphanum-sort": "^1.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": ">=6.9.0" + "node": ">=4" } }, - "node_modules/docusaurus/node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { - "version": "3.1.2", + "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", - "dependencies": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - }, "engines": { - "node": ">=8" + "node": ">=0.8.0" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-charset": { - "version": "4.0.1", + "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": { - "postcss": "^7.0.0" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=6.9.0" + "node": ">=4" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-display-values": { - "version": "4.0.2", + "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": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">=6.9.0" + "node": ">=10" } }, - "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/globby": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", "license": "MIT", "dependencies": { - "cssnano-util-get-arguments": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "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": ">=6.9.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "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/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": { - "cssnano-util-get-arguments": "^4.0.0", - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "duplexer": "^0.1.1", + "pify": "^4.0.1" }, "engines": { - "node": ">=6.9.0" + "node": ">=6" } }, - "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/postcss-normalize-string": { - "version": "4.0.2", + "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": { - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, "engines": { - "node": ">=6.9.0" + "node": ">=4" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-string/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" + "node_modules/docusaurus/node_modules/immer": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz", + "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } }, - "node_modules/docusaurus/node_modules/postcss-normalize-timing-functions": { - "version": "4.0.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": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" }, "engines": { - "node": ">=6.9.0" + "node": ">=4" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-timing-functions/node_modules/postcss-value-parser": { - "version": "3.3.1", + "node_modules/docusaurus/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "license": "MIT" }, - "node_modules/docusaurus/node_modules/postcss-normalize-unicode": { - "version": "4.0.1", + "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": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "is-plain-object": "^2.0.4" }, "engines": { - "node": ">=6.9.0" + "node": ">=0.10.0" } }, - "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/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": { - "is-absolute-url": "^2.0.0", - "normalize-url": "^3.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "kind-of": "^3.0.2" }, "engines": { - "node": ">=6.9.0" + "node": ">=0.10.0" } }, - "node_modules/docusaurus/node_modules/postcss-normalize-url/node_modules/postcss-value-parser": { - "version": "3.3.1", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/postcss-normalize-whitespace": { - "version": "4.0.2", + "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": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "is-buffer": "^1.1.5" }, "engines": { - "node": ">=6.9.0" + "node": ">=0.10.0" } }, - "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/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", - "dependencies": { - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, "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/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": { - "browserslist": "^4.0.0", - "caniuse-api": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "engines": { - "node": ">=6.9.0" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/docusaurus/node_modules/postcss-reduce-transforms": { - "version": "4.0.2", + "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": { - "cssnano-util-get-match": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" }, "engines": { - "node": ">=6.9.0" + "node": ">=8.9.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/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "license": "CC0-1.0" }, - "node_modules/docusaurus/node_modules/postcss-svgo": { - "version": "4.0.3", + "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": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "svgo": "^1.0.0" + "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": ">=6.9.0" + "node": ">=0.10.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/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": { - "alphanum-sort": "^1.0.0", - "postcss": "^7.0.0", - "uniqs": "^2.0.0" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" }, "engines": { - "node": ">=6.9.0" + "node": ">=0.10.0" } }, - "node_modules/docusaurus/node_modules/prompts": { - "version": "2.4.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": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">= 6" + "node": "*" } }, - "node_modules/docusaurus/node_modules/react": { - "version": "16.14.0", + "node_modules/docusaurus/node_modules/node-releases": { + "version": "1.1.77", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz", + "integrity": "sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2" - }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/docusaurus/node_modules/react-dev-utils": { - "version": "11.0.4", - "license": "MIT", + "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": { - "@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" + "boolbase": "~1.0.0" } }, - "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/ansi-styles": { - "version": "3.2.1", + "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": { - "color-convert": "^1.9.0" + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/chalk": { - "version": "2.4.2", + "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": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" }, "engines": { "node": ">=4" } }, - "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/chalk/node_modules/escape-string-regexp": { - "version": "1.0.5", + "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", "engines": { - "node": ">=0.8.0" + "node": ">=8" } }, - "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/color-convert": { - "version": "1.9.3", + "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": { - "color-name": "1.1.3" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" } }, - "node_modules/docusaurus/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", + "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", - "engines": { - "node": ">=4" + "dependencies": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" } }, - "node_modules/docusaurus/node_modules/react-dev-utils/node_modules/supports-color": { - "version": "5.5.0", + "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": { - "has-flag": "^3.0.0" + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/react-dom": { - "version": "16.14.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/docusaurus/node_modules/postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", "license": "MIT", "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.19.1" + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, - "peerDependencies": { - "react": "^16.14.0" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/react-test-renderer": { - "version": "16.14.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/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": { - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "react-is": "^16.8.6", - "scheduler": "^0.19.1" + "postcss": "^7.0.0" }, - "peerDependencies": { - "react": "^16.14.0" - } - }, - "node_modules/docusaurus/node_modules/resolve-from": { - "version": "3.0.0", - "license": "MIT", "engines": { - "node": ">=4" + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/scheduler": { - "version": "0.19.1", + "node_modules/docusaurus/node_modules/postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", "license": "MIT", "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - } - }, - "node_modules/docusaurus/node_modules/semver": { - "version": "5.7.1", - "license": "ISC", - "bin": { - "semver": "bin/semver" + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/shell-quote": { - "version": "1.7.2", - "license": "MIT" - }, - "node_modules/docusaurus/node_modules/sitemap": { - "version": "3.2.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": { - "lodash.chunk": "^4.2.0", - "lodash.padstart": "^4.6.1", - "whatwg-url": "^7.0.0", - "xmlbuilder": "^13.0.0" + "postcss": "^7.0.0" }, "engines": { - "node": ">=6.0.0", - "npm": ">=4.0.0" + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/source-map": { - "version": "0.6.1", - "license": "BSD-3-Clause", + "node_modules/docusaurus/node_modules/postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/strip-ansi": { - "version": "6.0.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": { - "ansi-regex": "^5.0.0" + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/stylehacks": { + "node_modules/docusaurus/node_modules/postcss-merge-longhand/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-merge-rules": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", "license": "MIT", "dependencies": { "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/stylehacks/node_modules/postcss-selector-parser": { + "node_modules/docusaurus/node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", "license": "MIT", "dependencies": { "dot-prop": "^5.2.0", @@ -11847,2350 +14917,2965 @@ "node": ">=8" } }, - "node_modules/docusaurus/node_modules/supports-color": { - "version": "7.2.0", + "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": { - "has-flag": "^4.0.0" + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/svgo": { - "version": "1.3.2", + "node_modules/docusaurus/node_modules/postcss-minify-font-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", "license": "MIT", "dependencies": { - "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" + "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": ">=4.0.0" + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/svgo/node_modules/ansi-styles": { - "version": "3.2.1", + "node_modules/docusaurus/node_modules/postcss-minify-gradients/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", "license": "MIT", "dependencies": { - "color-convert": "^1.9.0" + "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": ">=4" + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/svgo/node_modules/chalk": { - "version": "2.4.2", + "node_modules/docusaurus/node_modules/postcss-minify-params/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", "license": "MIT", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/svgo/node_modules/color-convert": { - "version": "1.9.3", + "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": { - "color-name": "1.1.3" + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" } }, - "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": { - "version": "1.0.5", + "node_modules/docusaurus/node_modules/postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, "engines": { - "node": ">=0.8.0" + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/svgo/node_modules/has-flag": { - "version": "3.0.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" + }, "engines": { - "node": ">=4" + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/svgo/node_modules/supports-color": { - "version": "5.5.0", + "node_modules/docusaurus/node_modules/postcss-normalize-display-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", "license": "MIT", "dependencies": { - "has-flag": "^3.0.0" + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/tapable": { - "version": "1.1.3", + "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": ">=6" + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/to-regex-range": { - "version": "2.1.1", + "node_modules/docusaurus/node_modules/postcss-normalize-repeat-style/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", "license": "MIT", "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/tr46": { - "version": "1.0.1", + "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": { - "punycode": "^2.1.0" + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/docusaurus/node_modules/webidl-conversions": { - "version": "4.0.2", - "license": "BSD-2-Clause" + "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/whatwg-url": { - "version": "7.1.0", + "node_modules/docusaurus/node_modules/postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", "license": "MIT", "dependencies": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/dom-converter": { - "version": "0.2.0", + "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": { - "utila": "~0.4" + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/dom-serializer": { - "version": "1.3.2", + "node_modules/docusaurus/node_modules/postcss-normalize-url/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", "license": "MIT", "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/domain-browser": { - "version": "4.23.0", - "license": "Artistic-2.0", - "engines": { - "node": ">=10" + "node_modules/docusaurus/node_modules/postcss-normalize-whitespace/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" }, - "funding": { - "url": "https://bevry.me/fund" + "engines": { + "node": ">=6.9.0" } }, - "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/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/domhandler": { - "version": "4.3.1", - "license": "BSD-2-Clause", + "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": { - "domelementtype": "^2.2.0" + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" }, "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "node": ">=6.9.0" } }, - "node_modules/domify": { - "version": "1.4.2", + "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", - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/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/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.9.0" } }, - "node_modules/domutils": { - "version": "2.8.0", - "license": "BSD-2-Clause", + "node_modules/docusaurus/node_modules/postcss-svgo/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/docusaurus/node_modules/postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "license": "MIT", "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/dot-case": { - "version": "3.0.4", + "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": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/dot-prop": { - "version": "5.3.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": { - "is-obj": "^2.0.0" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/dot-prop/node_modules/is-obj": { - "version": "2.0.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": { + "@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": ">=8" + "node": ">=10" } }, - "node_modules/download": { - "version": "6.2.5", + "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": { - "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" + "color-convert": "^1.9.0" }, "engines": { "node": ">=4" } }, - "node_modules/download/node_modules/file-type": { - "version": "5.2.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/download/node_modules/get-stream": { - "version": "3.0.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": ">=4" + "node": ">=0.8.0" } }, - "node_modules/download/node_modules/got": { - "version": "7.1.0", + "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": { - "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" + "has-flag": "^3.0.0" }, "engines": { "node": ">=4" } }, - "node_modules/download/node_modules/is-plain-obj": { - "version": "1.1.0", + "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", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "scheduler": "^0.19.1" + }, + "peerDependencies": { + "react": "^16.14.0" } }, - "node_modules/download/node_modules/is-stream": { - "version": "1.1.0", + "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": ">=0.10.0" + "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/download/node_modules/make-dir": { - "version": "1.3.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": { - "pify": "^3.0.0" + "minimatch": "3.0.4" }, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/download/node_modules/p-cancelable": { - "version": "0.3.0", - "license": "MIT", + "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": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": ">=4" + "node": "*" } }, - "node_modules/download/node_modules/pify": { + "node_modules/docusaurus/node_modules/resolve-from": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", "license": "MIT", "engines": { "node": ">=4" } }, - "node_modules/download/node_modules/prepend-http": { - "version": "1.0.4", + "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/download/node_modules/url-parse-lax": { - "version": "1.0.0", + "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", + "bin": { + "semver": "bin/semver" + } + }, + "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": { - "prepend-http": "^1.0.1" + "shebang-regex": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "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", - "dependencies": { - "readable-stream": "^2.0.2" + "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": ">=8" } }, - "node_modules/duplexer2/node_modules/isarray": { - "version": "1.0.0", + "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/duplexer2/node_modules/readable-stream": { - "version": "2.3.8", + "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": { - "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/duplexer2/node_modules/string_decoder": { - "version": "1.1.1", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" + "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/duplexer3": { - "version": "0.1.4", - "license": "BSD-3-Clause" - }, - "node_modules/eastasianwidth": { - "version": "0.2.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/ecc-jsbn": { - "version": "0.1.2", + "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": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" + "ansi-regex": "^5.0.0" + }, + "engines": { + "node": ">=8" } }, - "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/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": { - "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", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.0", - "license": "MIT" - }, - "node_modules/emittery": { - "version": "0.13.1", - "dev": true, + "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", - "engines": { - "node": ">=12" + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" + "engines": { + "node": ">=8" } }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "license": "MIT" - }, - "node_modules/emojis-list": { - "version": "3.0.0", + "node_modules/docusaurus/node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", "license": "MIT", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "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/emoticon": { - "version": "3.2.0", + "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", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/encodeurl": { - "version": "1.0.2", + "node_modules/docusaurus/node_modules/svgo/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, "engines": { - "node": ">= 0.8" + "node": ">=4" } }, - "node_modules/end-of-stream": { - "version": "1.4.4", + "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": { - "once": "^1.4.0" + "engines": { + "node": ">=0.8.0" } }, - "node_modules/enhanced-resolve": { - "version": "5.10.0", + "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": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=10.13.0" + "node": ">=4" } }, - "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/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/enzyme": { - "version": "3.11.0", + "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": { - "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" + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/enzyme-shallow-equal": { - "version": "1.0.5", + "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": { - "has": "^1.0.3", - "object-is": "^1.1.5" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "punycode": "^2.1.0" } }, - "node_modules/error": { - "version": "7.2.1", - "dependencies": { - "string-template": "~0.2.1" - } + "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/error-ex": { - "version": "1.3.2", + "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": { - "is-arrayish": "^0.2.1" + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" } }, - "node_modules/error-ex/node_modules/is-arrayish": { - "version": "0.2.1", - "license": "MIT" - }, - "node_modules/es-abstract": { - "version": "1.21.2", - "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": { - "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" + "isexe": "^2.0.0" }, - "engines": { - "node": ">= 0.4" + "bin": { + "node-which": "bin/node-which" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 8" } }, - "node_modules/es-array-method-boxes-properly": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/es-module-lexer": { - "version": "0.9.3", - "license": "MIT" - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.1", + "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": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "utila": "~0.4" } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "has": "^1.0.3" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", + "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": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es6-promise": { - "version": "3.3.1", - "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==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-goat": { - "version": "2.1.1", - "license": "MIT", - "engines": { - "node": ">=8" + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "node_modules/escape-html": { - "version": "1.0.3", - "license": "MIT" - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "license": "MIT", + "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.8.0" - } - }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "node": ">=10" }, - "engines": { - "node": ">=8.0.0" + "funding": { + "url": "https://bevry.me/fund" } }, - "node_modules/esprima": { - "version": "4.0.1", - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } + "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/esrecurse": { - "version": "4.3.0", + "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": { - "estraverse": "^5.2.0" + "domelementtype": "^2.3.0" }, "engines": { - "node": ">=4.0" + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" + "node_modules/domify": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/domify/-/domify-1.4.2.tgz", + "integrity": "sha512-m4yreHcUWHBncGVV7U+yQzc12vIlq0jMrtHZ5mW6dQMiL/7skSYNVX9wqKwOtyO9SGCgevrAFEgOCAHmamHTUA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/estraverse": { - "version": "4.3.0", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" + "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/esutils": { - "version": "2.0.3", + "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", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eta": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">=6.0.0" + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" }, "funding": { - "url": "https://github.com/eta-dev/eta?sponsor=1" + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/etag": { - "version": "1.8.1", + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/eval": { - "version": "0.1.8", "dependencies": { - "@types/node": "*", - "require-like": ">= 0.1.1" - }, - "engines": { - "node": ">= 0.8" + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "node_modules/event-target-shim": { - "version": "5.0.1", + "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": { + "is-obj": "^2.0.0" + }, "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "license": "MIT" - }, - "node_modules/events": { - "version": "3.3.0", + "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": ">=0.8.x" - } - }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" + "node": ">=8" } }, - "node_modules/exec-buffer": { - "version": "3.2.0", + "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": { - "execa": "^0.7.0", - "p-finally": "^1.0.0", - "pify": "^3.0.0", - "rimraf": "^2.5.4", - "tempfile": "^2.0.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": ">=4" } }, - "node_modules/exec-buffer/node_modules/cross-spawn": { - "version": "5.1.0", + "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": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "engines": { + "node": ">=4" } }, - "node_modules/exec-buffer/node_modules/execa": { - "version": "0.7.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": { - "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" + "pify": "^3.0.0" }, "engines": { "node": ">=4" } }, - "node_modules/exec-buffer/node_modules/get-stream": { + "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/exec-buffer/node_modules/is-stream": { - "version": "1.1.0", + "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/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": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/exec-buffer/node_modules/lru-cache": { - "version": "4.1.5", - "license": "ISC", + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "license": "MIT" + }, + "node_modules/duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", + "license": "BSD-3-Clause", "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" + "readable-stream": "^2.0.2" } }, - "node_modules/exec-buffer/node_modules/npm-run-path": { - "version": "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/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": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" } }, - "node_modules/exec-buffer/node_modules/path-key": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=4" - } + "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/exec-buffer/node_modules/pify": { - "version": "3.0.0", + "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", - "engines": { - "node": ">=4" + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" } }, - "node_modules/exec-buffer/node_modules/rimraf": { - "version": "2.7.1", - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" + "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/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" }, - "bin": { - "rimraf": "bin.js" + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "node_modules/exec-buffer/node_modules/shebang-command": { - "version": "1.2.0", + "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/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "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/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", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "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.10.0" + "node": ">= 0.8" } }, - "node_modules/exec-buffer/node_modules/which": { - "version": "1.3.1", - "license": "ISC", + "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": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" + "once": "^1.4.0" } }, - "node_modules/exec-buffer/node_modules/yallist": { - "version": "2.1.2", - "license": "ISC" - }, - "node_modules/execa": { - "version": "5.1.1", + "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": { - "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" + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": ">=10.13.0" } }, - "node_modules/execa/node_modules/get-stream": { - "version": "6.0.1", - "license": "MIT", + "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": ">=10" + "node": ">=0.12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/executable": { - "version": "4.1.1", + "node_modules/enzyme": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.11.0.tgz", + "integrity": "sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==", "license": "MIT", "dependencies": { - "pify": "^2.2.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": ">=4" - } - }, - "node_modules/executable/node_modules/pify": { - "version": "2.3.0", - "license": "MIT", - "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, - "engines": { - "node": ">= 0.8.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/expand-brackets": { - "version": "2.1.4", + "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": { - "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" + "hasown": "^2.0.0", + "object-is": "^1.1.5" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/expand-brackets/node_modules/debug": { - "version": "2.6.9", - "license": "MIT", + "node_modules/error": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/error/-/error-7.2.1.tgz", + "integrity": "sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==", "dependencies": { - "ms": "2.0.0" + "string-template": "~0.2.1" } }, - "node_modules/expand-brackets/node_modules/define-property": { - "version": "0.2.5", + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "license": "MIT", "dependencies": { - "is-descriptor": "^0.1.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": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { - "version": "0.1.6", + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "license": "MIT" + }, + "node_modules/es-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", - "dependencies": { - "kind-of": "^3.0.2" - }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", + "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", - "dependencies": { - "is-buffer": "^1.1.5" - }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/expand-brackets/node_modules/is-buffer": { - "version": "1.1.6", + "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/expand-brackets/node_modules/is-data-descriptor": { - "version": "0.1.4", + "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": { - "kind-of": "^3.0.2" + "es-errors": "^1.3.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", + "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": { - "is-buffer": "^1.1.5" + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/expand-brackets/node_modules/is-descriptor": { - "version": "0.1.6", + "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", "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" + "hasown": "^2.0.0" } }, - "node_modules/expand-brackets/node_modules/kind-of": { - "version": "5.1.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": { + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/expand-brackets/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/expand-range": { - "version": "1.8.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": { - "fill-range": "^2.1.0" + "@types/estree-jsx": "^1.0.0", + "devlop": "^1.0.0", + "estree-util-visit": "^2.0.0", + "unist-util-position-from-estree": "^2.0.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/expand-range/node_modules/fill-range": { - "version": "2.2.4", + "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": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" + "@types/estree-jsx": "^1.0.0", + "acorn": "^8.0.0", + "esast-util-from-estree": "^2.0.0", + "vfile-message": "^4.0.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/expand-range/node_modules/is-buffer": { - "version": "1.1.6", - "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==", + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "node_modules/expand-range/node_modules/is-number": { - "version": "2.1.0", + "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", - "dependencies": { - "kind-of": "^3.0.2" - }, "engines": { - "node": ">=0.10.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/expand-range/node_modules/isarray": { - "version": "1.0.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/expand-range/node_modules/isobject": { - "version": "2.1.0", + "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", - "dependencies": { - "isarray": "1.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/expand-range/node_modules/kind-of": { - "version": "3.2.2", - "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-buffer": "^1.1.5" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=8.0.0" } }, - "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": { - "@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" + "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": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=4" } }, - "node_modules/express": { - "version": "4.18.1", - "license": "MIT", + "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": { - "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" + "estraverse": "^5.2.0" }, "engines": { - "node": ">= 0.10.0" + "node": ">=4.0" } }, - "node_modules/express/node_modules/array-flatten": { - "version": "1.1.1", - "license": "MIT" + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } }, - "node_modules/express/node_modules/content-disposition": { - "version": "0.5.4", + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/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": { - "safe-buffer": "5.2.1" + "@types/estree": "^1.0.0" }, - "engines": { - "node": ">= 0.6" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", + "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": { - "ms": "2.0.0" + "@types/estree-jsx": "^1.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "estree-walker": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "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", + "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", - "engines": { - "node": ">= 0.6" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "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/ext-list": { - "version": "2.2.2", + "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": { - "mime-db": "^1.28.0" + "@types/estree": "^1.0.0", + "devlop": "^1.0.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/ext-name": { - "version": "5.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": { - "ext-list": "^2.0.0", - "sort-keys-length": "^1.0.0" + "@types/estree-jsx": "^1.0.0", + "astring": "^1.8.0", + "source-map": "^0.7.0" }, - "engines": { - "node": ">=4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/extend": { - "version": "3.0.2", - "license": "MIT" - }, - "node_modules/extend-shallow": { - "version": "2.0.1", + "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": { - "is-extendable": "^0.1.0" + "@types/estree": "^1.0.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/remcohaszing" } }, - "node_modules/extglob": { - "version": "2.0.4", + "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": { - "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" + "@types/estree-jsx": "^1.0.0", + "@types/unist": "^3.0.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/extglob/node_modules/define-property": { - "version": "1.0.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": { - "is-descriptor": "^1.0.0" - }, + "@types/estree": "^1.0.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } }, - "node_modules/extsprintf": { - "version": "1.3.0", - "engines": [ - "node >=0.6.0" - ], - "license": "MIT" + "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", + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "url": "https://github.com/eta-dev/eta?sponsor=1" + } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "license": "MIT" + "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/fast-folder-size": { - "version": "1.6.1", - "hasInstallScript": true, - "license": "ISC", + "node_modules/eval": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/eval/-/eval-0.1.8.tgz", + "integrity": "sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==", "dependencies": { - "unzipper": "^0.10.11" + "@types/node": "*", + "require-like": ">= 0.1.1" }, - "bin": { - "fast-folder-size": "cli.js" + "engines": { + "node": ">= 0.8" } }, - "node_modules/fast-glob": { - "version": "3.2.11", + "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": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, "engines": { - "node": ">=8.6.0" + "node": ">=6" } }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "license": "MIT" - }, - "node_modules/fast-safe-stringify": { - "version": "2.1.1", + "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/fast-url-parser": { - "version": "1.1.3", + "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", - "dependencies": { - "punycode": "^1.3.2" + "engines": { + "node": ">=0.8.x" } }, - "node_modules/fast-url-parser/node_modules/punycode": { - "version": "1.4.1", - "license": "MIT" - }, - "node_modules/fast-xml-parser": { - "version": "4.1.3", + "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": { - "strnum": "^1.0.5" - }, - "bin": { - "fxparser": "src/cli/cli.js" - }, - "funding": { - "type": "paypal", - "url": "https://paypal.me/naturalintelligence" - } - }, - "node_modules/fastq": { - "version": "1.13.0", - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" } }, - "node_modules/faye-websocket": { - "version": "0.11.4", - "license": "Apache-2.0", + "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": { - "websocket-driver": ">=0.5.1" + "execa": "^0.7.0", + "p-finally": "^1.0.0", + "pify": "^3.0.0", + "rimraf": "^2.5.4", + "tempfile": "^2.0.0" }, "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "bser": "2.1.1" + "node": ">=4" } }, - "node_modules/fbemitter": { + "node_modules/exec-buffer/node_modules/pify": { "version": "3.0.0", - "license": "BSD-3-Clause", - "dependencies": { - "fbjs": "^3.0.0" - } - }, - "node_modules/fbjs": { - "version": "3.0.5", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "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" + "engines": { + "node": ">=4" } }, - "node_modules/fbjs-css-vars": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/fd-slicer": { - "version": "1.1.0", - "license": "MIT", + "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": { - "pend": "~1.2.0" + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" } }, - "node_modules/feed": { - "version": "4.2.2", + "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": { - "xml-js": "^1.6.11" + "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.0" + "node": ">=4" } }, - "node_modules/feelers": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/feelers/-/feelers-1.4.0.tgz", - "integrity": "sha512-CGa/7ILuqoqTaeYeoKsg/4tzu2es9sEEJTmSjdu0lousZBw4V9gcYhHYFNmbrSrKmbAVfOzj6/DsymGJWFIOeg==", + "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": { - "@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" + "pify": "^2.2.0" }, "engines": { - "node": "*" + "node": ">=4" } }, - "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/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": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "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" - } + "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/feelin": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/feelin/-/feelin-3.2.0.tgz", - "integrity": "sha512-GFDbHsTYk7YXO1tyw1dOjb7IODeAZvNIosdGZThUwPx5XcD/XhO0hnPZXsIbAzSsIdrgGlTEEdby9fZ2gixysA==", - "dependencies": { - "@lezer/lr": "^1.4.2", - "lezer-feel": "^1.4.0", - "luxon": "^3.5.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, "engines": { - "node": "*" + "node": ">= 0.8.0" } }, - "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/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": { - "escape-string-regexp": "^1.0.5", - "object-assign": "^4.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": ">=0.10.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==", + "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": { - "min-dom": "^4.0.3" + "ms": "2.0.0" } }, - "node_modules/file-loader": { - "version": "6.2.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": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" + "is-descriptor": "^0.1.0" }, "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "node": ">=0.10.0" } }, - "node_modules/file-saver": { - "version": "2.0.5", - "license": "MIT" - }, - "node_modules/file-type": { - "version": "10.11.0", + "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": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, "engines": { - "node": ">=6" + "node": ">= 0.4" } }, - "node_modules/filename-reserved-regex": { + "node_modules/expand-brackets/node_modules/ms": { "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" }, - "node_modules/filenamify": { - "version": "2.1.0", + "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": { - "filename-reserved-regex": "^2.0.0", - "strip-outer": "^1.0.0", - "trim-repeated": "^1.0.0" + "fill-range": "^2.1.0" }, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/filesize": { - "version": "8.0.7", - "license": "BSD-3-Clause", + "node_modules/expand-range/node_modules/fill-range": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", + "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", + "license": "MIT", + "dependencies": { + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" + }, "engines": { - "node": ">= 0.4.0" + "node": ">=0.10.0" } }, - "node_modules/fill-range": { - "version": "7.0.1", + "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": { - "to-regex-range": "^5.0.1" + "isarray": "1.0.0" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/filter-obj": { - "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": { + "@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": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/finalhandler": { - "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": { + "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", - "encodeurl": "~1.0.2", + "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", - "unpipe": "~1.0.0" + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" }, "engines": { - "node": ">= 0.8" + "node": ">= 0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/finalhandler/node_modules/debug": { + "node_modules/express/node_modules/debug": { "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { "ms": "2.0.0" } }, - "node_modules/finalhandler/node_modules/ms": { + "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/find-cache-dir": { - "version": "3.3.2", + "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": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" + "mime-db": "^1.28.0" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" + } + }, + "node_modules/ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "license": "MIT", + "dependencies": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + "engines": { + "node": ">=4" } }, - "node_modules/find-up": { - "version": "4.1.0", + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "license": "MIT" + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "license": "MIT", "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "is-extendable": "^0.1.0" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/find-versions": { - "version": "3.2.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": { - "semver-regex": "^2.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/flatpickr": { - "version": "4.6.13", + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "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/flux": { - "version": "4.0.4", - "license": "BSD-3-Clause", + "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": { - "fbemitter": "^3.0.0", - "fbjs": "^3.0.1" + "unzipper": "^0.10.11" }, - "peerDependencies": { - "react": "^15.0.2 || ^16.0.0 || ^17.0.0" + "bin": { + "fast-folder-size": "cli.js" } }, - "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==", + "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": { - "tabbable": "^6.2.0" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" } }, - "node_modules/follow-redirects": { - "version": "1.14.9", + "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": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" } ], "license": "MIT", - "engines": { - "node": ">=4.0" + "dependencies": { + "strnum": "^1.0.5" }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } + "bin": { + "fxparser": "src/cli/cli.js" } }, - "node_modules/for-each": { - "version": "0.3.3", - "license": "MIT", + "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": { - "is-callable": "^1.1.3" + "reusify": "^1.0.4" } }, - "node_modules/for-in": { - "version": "1.0.2", + "node_modules/fault": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz", + "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==", "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/foreach": { - "version": "2.0.6", - "license": "MIT" - }, - "node_modules/foreground-child": { - "version": "3.1.1", - "license": "ISC", "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" + "format": "^0.2.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "license": "ISC", - "engines": { - "node": ">=14" + "node_modules/faye-websocket": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ==", + "license": "MIT", + "dependencies": { + "websocket-driver": ">=0.5.1" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "engines": { + "node": ">=0.4.0" } }, - "node_modules/forever-agent": { - "version": "0.6.1", + "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", - "engines": { - "node": "*" + "dependencies": { + "bser": "2.1.1" } }, - "node_modules/fork-ts-checker-webpack-plugin": { - "version": "6.5.2", + "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": { - "@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 - } + "pend": "~1.2.0" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { - "version": "4.3.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": { - "color-convert": "^2.0.1" + "xml-js": "^1.6.11" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=0.4.0" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { - "version": "4.1.2", + "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": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.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": ">=10" + "node": "*" + }, + "workspaces": { + "packages": [ + "feelers-playground" + ] + } + }, + "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", + "engines": { + "node": ">=18" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { - "version": "2.0.1", + "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": { - "color-name": "~1.1.4" + "domify": "^2.0.0", + "min-dash": "^4.2.1" + } + }, + "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": { + "@lezer/lr": "^1.4.2", + "lezer-feel": "^1.4.0", + "luxon": "^3.5.0" }, "engines": { - "node": ">=7.0.0" + "node": "*" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { - "version": "1.1.4", + "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/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { - "version": "6.0.0", + "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": { - "@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" + "escape-string-regexp": "^1.0.5", + "object-assign": "^4.1.0" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { - "version": "9.1.0", + "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": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, "engines": { - "node": ">=10" + "node": ">=0.8.0" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { - "version": "4.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", - "engines": { - "node": ">=8" + "dependencies": { + "min-dom": "^4.0.3" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { - "version": "2.7.0", + "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": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" }, "engines": { - "node": ">= 8.9.0" + "node": ">= 10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { - "version": "7.2.0", + "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": { - "has-flag": "^4.0.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" }, - "engines": { - "node": ">=8" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { - "version": "1.1.3", + "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": ">=6" + "peerDependencies": { + "ajv": "^6.9.1" } }, - "node_modules/form-data": { - "version": "2.3.3", + "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": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">= 0.12" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/forwarded": { - "version": "0.2.0", + "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": ">= 0.6" + "node": ">=6" } }, - "node_modules/fraction.js": { - "version": "4.3.4", + "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": "*" - }, - "funding": { - "type": "patreon", - "url": "https://github.com/sponsors/rawify" + "node": ">=4" } }, - "node_modules/fragment-cache": { - "version": "0.2.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": { - "map-cache": "^0.2.2" + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/fresh": { - "version": "0.5.2", - "license": "MIT", + "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.6" + "node": ">= 0.4.0" } }, - "node_modules/from2": { - "version": "2.3.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": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "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/finalhandler": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", "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" + "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.8" } }, - "node_modules/from2/node_modules/string_decoder": { - "version": "1.1.1", + "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": { - "safe-buffer": "~5.1.0" + "ms": "2.0.0" } }, - "node_modules/fs-constants": { - "version": "1.0.0", + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, - "node_modules/fs-extra": { - "version": "10.1.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": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "common-path-prefix": "^3.0.0", + "pkg-dir": "^7.0.0" }, "engines": { - "node": ">=12" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "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", + "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": { - "graceful-fs": "^4.1.2", - "inherits": "~2.0.0", - "mkdirp": ">=0.5 0", - "rimraf": "2" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=0.6" + "node": ">=8" } }, - "node_modules/fstream/node_modules/rimraf": { - "version": "2.7.1", - "license": "ISC", + "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": { - "glob": "^7.1.3" + "semver-regex": "^2.0.0" }, + "engines": { + "node": ">=6" + } + }, + "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": { - "rimraf": "bin.js" + "flat": "cli.js" } }, - "node_modules/function-bind": { - "version": "1.1.1", + "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/function.prototype.name": { - "version": "1.1.5", + "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": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "tabbable": "^6.2.0" } }, - "node_modules/functions-have-names": { - "version": "1.2.3", + "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": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, - "node_modules/gaze": { - "version": "1.1.3", + "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": { - "globule": "^1.0.0" - }, - "engines": { - "node": ">= 4.0.0" + "is-callable": "^1.1.3" } }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", + "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": ">=6.9.0" + "node": ">=0.10.0" } }, - "node_modules/get-caller-file": { - "version": "2.0.5", + "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": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/get-intrinsic": { - "version": "1.2.0", + "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": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 8" } }, - "node_modules/get-own-enumerable-property-symbols": { - "version": "3.0.2", - "license": "ISC" - }, - "node_modules/get-package-type": { - "version": "0.1.0", - "dev": true, + "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", "engines": { - "node": ">=8.0.0" + "node": ">=8" } }, - "node_modules/get-proxy": { - "version": "2.1.0", + "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": { - "npm-conf": "^1.1.0" + "shebang-regex": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/get-stdin": { - "version": "4.0.1", + "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", "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/get-stream": { + "node_modules/foreground-child/node_modules/signal-exit": { "version": "4.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "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": { - "pump": "^3.0.0" + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" }, "engines": { - "node": ">=6" + "node": ">= 8" } }, - "node_modules/get-symbol-description": { - "version": "1.0.0", + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.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": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.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": ">= 0.4" + "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/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": { + "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/get-value": { - "version": "2.0.6", + "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", - "engines": { - "node": ">=0.10.0" + "peerDependencies": { + "ajv": "^6.9.1" } }, - "node_modules/getpass": { - "version": "0.1.7", + "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": { - "assert-plus": "^1.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/gifsicle": { - "version": "4.0.1", - "hasInstallScript": true, + "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": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.0", - "execa": "^1.0.0", - "logalot": "^2.0.0" - }, - "bin": { - "gifsicle": "cli.js" + "@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": ">=6" + "node": ">=8" } }, - "node_modules/gifsicle/node_modules/cross-spawn": { - "version": "6.0.5", + "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": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">=4.8" + "node": ">=10" } }, - "node_modules/gifsicle/node_modules/execa": { - "version": "1.0.0", - "license": "MIT", + "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/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": { - "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" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=6" - } - }, - "node_modules/gifsicle/node_modules/is-stream": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "node": "*" } }, - "node_modules/gifsicle/node_modules/npm-run-path": { - "version": "2.0.2", + "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": { - "path-key": "^2.0.0" + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" }, "engines": { - "node": ">=4" + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/gifsicle/node_modules/path-key": { - "version": "2.0.1", + "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": ">=4" + "node": ">=6" } }, - "node_modules/gifsicle/node_modules/semver": { - "version": "5.7.1", + "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", - "bin": { - "semver": "bin/semver" + "engines": { + "node": ">= 6" } }, - "node_modules/gifsicle/node_modules/shebang-command": { - "version": "1.2.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": { - "shebang-regex": "^1.0.0" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.12" } }, - "node_modules/gifsicle/node_modules/shebang-regex": { - "version": "1.0.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": ">=0.10.0" + "node": ">= 14.17" } }, - "node_modules/gifsicle/node_modules/which": { - "version": "1.3.1", - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" + "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": ">=0.4.x" } }, - "node_modules/github-slugger": { - "version": "1.5.0", - "license": "ISC" + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "node_modules/glob": { - "version": "7.2.0", - "license": "ISC", - "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" - }, + "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", "engines": { "node": "*" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "patreon", + "url": "https://github.com/sponsors/rawify" } }, - "node_modules/glob-parent": { - "version": "5.1.2", - "license": "ISC", + "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": { - "is-glob": "^4.0.1" + "map-cache": "^0.2.2" }, "engines": { - "node": ">= 6" + "node": ">=0.10.0" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "license": "BSD-2-Clause" - }, - "node_modules/global-dirs": { - "version": "3.0.0", + "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": { - "ini": "2.0.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6" } }, - "node_modules/global-dirs/node_modules/ini": { - "version": "2.0.0", - "license": "ISC", - "engines": { - "node": ">=10" + "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/global-modules": { - "version": "2.0.0", + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "license": "MIT" + }, + "node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "license": "MIT", "dependencies": { - "global-prefix": "^3.0.0" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">=6" + "node": ">=14.14" } }, - "node_modules/global-prefix": { - "version": "3.0.0", + "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/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", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "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": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" + "graceful-fs": "^4.1.2", + "inherits": "~2.0.0", + "mkdirp": ">=0.5 0", + "rimraf": "2" }, "engines": { - "node": ">=6" + "node": ">=0.6" } }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", + "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": { - "isexe": "^2.0.0" + "glob": "^7.1.3" }, "bin": { - "which": "bin/which" + "rimraf": "bin.js" } }, - "node_modules/globals": { - "version": "11.12.0", + "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", - "engines": { - "node": ">=4" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/globalthis": { - "version": "1.0.3", + "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": { - "define-properties": "^1.1.3" + "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": ">= 0.4" @@ -14199,1931 +17884,2435 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/globby": { - "version": "11.1.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", - "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" - }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/globule": { - "version": "1.3.4", + "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": { - "glob": "~7.1.1", - "lodash": "^4.17.21", - "minimatch": "~3.0.2" + "globule": "^1.0.0" }, "engines": { - "node": ">= 0.10" + "node": ">= 4.0.0" } }, - "node_modules/globule/node_modules/glob": { - "version": "7.1.7", - "license": "ISC", - "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" - }, + "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": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=6.9.0" } }, - "node_modules/gopd": { - "version": "1.0.1", - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/got": { - "version": "9.6.0", + "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", "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" + "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": ">=8.6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/graceful-fs": { - "version": "4.2.9", + "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/gray-matter": { - "version": "4.0.3", + "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", - "dependencies": { - "js-yaml": "^3.13.1", - "kind-of": "^6.0.2", - "section-matter": "^1.0.0", - "strip-bom-string": "^1.0.0" - }, "engines": { - "node": ">=6.0" + "node": ">=8.0.0" } }, - "node_modules/gray-matter/node_modules/argparse": { - "version": "1.0.10", + "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": { - "sprintf-js": "~1.0.2" + "npm-conf": "^1.1.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/gray-matter/node_modules/js-yaml": { - "version": "3.14.1", + "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", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/gulp-header": { - "version": "1.8.12", + "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", - "dependencies": { - "concat-with-sourcemaps": "*", - "lodash.template": "^4.4.0", - "through2": "^2.0.0" + "engines": { + "node": ">=4" } }, - "node_modules/gzip-size": { - "version": "6.0.0", + "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": { - "duplexer": "^0.1.2" + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/handle-thing": { - "version": "2.0.1", - "license": "MIT" - }, - "node_modules/har-schema": { - "version": "2.0.0", - "license": "ISC", + "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": ">=4" + "node": ">=0.10.0" } }, - "node_modules/har-validator": { - "version": "5.1.5", + "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": { - "ajv": "^6.12.3", - "har-schema": "^2.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/has": { - "version": "1.0.3", + "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": { - "function-bind": "^1.1.1" + "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": ">= 0.4.0" + "node": ">=4.8" } }, - "node_modules/has-ansi": { - "version": "2.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": { - "ansi-regex": "^2.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": ">=0.10.0" + "node": ">=6" } }, - "node_modules/has-ansi/node_modules/ansi-regex": { - "version": "2.1.1", + "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": { + "pump": "^3.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/has-bigints": { - "version": "1.0.2", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "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/has-flag": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } + "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/has-property-descriptors": { - "version": "1.0.0", - "license": "MIT", + "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": { - "get-intrinsic": "^1.1.1" + "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" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.1", - "license": "MIT", "engines": { - "node": ">= 0.4" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/has-symbol-support-x": { - "version": "1.4.2", - "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": { + "is-glob": "^4.0.1" + }, "engines": { - "node": "*" + "node": ">= 6" } }, - "node_modules/has-symbols": { - "version": "1.0.3", + "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", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/has-to-string-tag-x": { - "version": "1.4.1", - "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": { - "has-symbol-support-x": "^1.4.1" + "brace-expansion": "^1.1.7" }, "engines": { "node": "*" } }, - "node_modules/has-tostringtag": { - "version": "1.0.0", + "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": { - "has-symbols": "^1.0.2" + "ini": "2.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/has-value": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - }, + "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": ">=0.10.0" + "node": ">=10" } }, - "node_modules/has-values": { - "version": "1.0.0", + "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": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" + "global-prefix": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/has-values/node_modules/is-buffer": { - "version": "1.1.6", - "license": "MIT" - }, - "node_modules/has-values/node_modules/is-number": { + "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": { - "kind-of": "^3.0.2" - }, + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", + "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", - "dependencies": { - "is-buffer": "^1.1.5" - }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/has-values/node_modules/kind-of": { - "version": "4.0.0", + "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": { - "is-buffer": "^1.1.5" + "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/has-yarn": { - "version": "2.1.0", + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/hash-base": { - "version": "3.1.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": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" + "glob": "~7.1.1", + "lodash": "^4.17.21", + "minimatch": "~3.0.2" }, "engines": { - "node": ">=4" + "node": ">= 0.10" } }, - "node_modules/hash-base/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/hash.js": { - "version": "1.1.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": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/hast-to-hyperscript": { - "version": "9.0.1", - "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": { - "@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" + "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": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/hast-util-from-parse5": { - "version": "6.0.1", - "license": "MIT", + "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": { - "@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" + "brace-expansion": "^1.1.7" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "*" } }, - "node_modules/hast-util-parse-selector": { - "version": "2.2.5", + "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", + "engines": { + "node": ">= 0.4" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hast-util-raw": { - "version": "6.0.1", + "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": { - "@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" + "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" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=4" } }, - "node_modules/hast-util-raw/node_modules/parse5": { - "version": "6.0.1", - "license": "MIT" + "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/hast-util-to-parse5": { - "version": "6.0.0", + "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", + "dependencies": { + "lodash": "^4.17.15" + } + }, + "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": { - "hast-to-hyperscript": "^9.0.0", - "property-information": "^5.0.0", - "web-namespaces": "^1.0.0", - "xtend": "^4.0.0", - "zwitch": "^1.0.0" + "js-yaml": "^3.13.1", + "kind-of": "^6.0.2", + "section-matter": "^1.0.0", + "strip-bom-string": "^1.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=6.0" } }, - "node_modules/hast-util-whitespace": { - "version": "2.0.1", + "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", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "dependencies": { + "sprintf-js": "~1.0.2" } }, - "node_modules/hastscript": { - "version": "6.0.0", + "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": { - "@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" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/he": { - "version": "1.2.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", - "bin": { - "he": "bin/he" + "dependencies": { + "concat-with-sourcemaps": "*", + "lodash.template": "^4.4.0", + "through2": "^2.0.0" } }, - "node_modules/heap": { - "version": "0.2.7", + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "license": "MIT", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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/hex-color-regex": { - "version": "1.1.0", + "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/highlight.js": { - "version": "9.18.5", - "hasInstallScript": true, - "license": "BSD-3-Clause", + "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": "*" + "node": ">=4" } }, - "node_modules/history": { - "version": "4.10.1", + "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": { - "@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" + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" } }, - "node_modules/hmac-drbg": { - "version": "1.0.1", + "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": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^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/hoist-non-react-statics": { - "version": "3.3.2", - "license": "BSD-3-Clause", - "dependencies": { - "react-is": "^16.7.0" - } + "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/hosted-git-info": { - "version": "2.8.9", - "license": "ISC" - }, - "node_modules/hpack.js": { - "version": "2.1.6", + "node_modules/has": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", "license": "MIT", - "dependencies": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" + "engines": { + "node": ">= 0.4.0" } }, - "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/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": { - "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" + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/hpack.js/node_modules/string_decoder": { - "version": "1.1.1", + "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", - "dependencies": { - "safe-buffer": "~5.1.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/hsl-regex": { - "version": "1.0.0", - "license": "MIT" + "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.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/hsla-regex": { - "version": "1.0.0", - "license": "MIT" + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "node_modules/html-element-map": { - "version": "1.3.1", + "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": { - "array.prototype.filter": "^1.0.0", - "call-bind": "^1.0.2" + "es-define-property": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/html-entities": { - "version": "2.3.3", - "license": "MIT" - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/html-minifier-terser": { - "version": "6.1.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": { - "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" + "dunder-proto": "^1.0.0" }, "engines": { - "node": ">=12" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/html-minifier-terser/node_modules/commander": { - "version": "8.3.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": ">= 12" + "node": "*" } }, - "node_modules/html-tags": { - "version": "3.2.0", + "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": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/html-void-elements": { - "version": "1.0.5", + "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", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "has-symbol-support-x": "^1.4.1" + }, + "engines": { + "node": "*" } }, - "node_modules/html-webpack-plugin": { - "version": "5.5.0", + "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": { - "@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" + "has-symbols": "^1.0.3" }, "engines": { - "node": ">=10.13.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/html-webpack-plugin" - }, - "peerDependencies": { - "webpack": "^5.20.0" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/html2canvas": { - "version": "1.4.1", + "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": { - "css-line-break": "^2.1.0", - "text-segmentation": "^1.0.3" + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" }, "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/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": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/http-cache-semantics": { - "version": "4.1.0", - "license": "BSD-2-Clause" - }, - "node_modules/http-deceiver": { - "version": "1.2.7", + "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/http-errors": { - "version": "2.0.0", + "node_modules/has-values/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "license": "MIT", "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "kind-of": "^3.0.2" }, "engines": { - "node": ">= 0.8" + "node": ">=0.10.0" } }, - "node_modules/http-parser-js": { - "version": "0.5.8", - "license": "MIT" - }, - "node_modules/http-proxy": { - "version": "1.18.1", + "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": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" + "is-buffer": "^1.1.5" }, "engines": { - "node": ">=8.0.0" + "node": ">=0.10.0" } }, - "node_modules/http-proxy-middleware": { - "version": "2.0.6", + "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": { - "@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" + "is-buffer": "^1.1.5" }, "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "@types/express": "^4.17.13" - }, - "peerDependenciesMeta": { - "@types/express": { - "optional": true - } + "node": ">=0.10.0" } }, - "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { + "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": ">=10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/http-reasons": { - "version": "0.1.0", - "license": "Apache-2.0" - }, - "node_modules/http-signature": { - "version": "1.2.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": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" + "inherits": "^2.0.4", + "safe-buffer": "^5.2.1" }, "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" + "node": ">= 0.10" } }, - "node_modules/http2-client": { - "version": "1.3.5", - "license": "MIT" + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } }, - "node_modules/https-browserify": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/human-signals": { - "version": "2.1.0", - "license": "Apache-2.0", - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/husky": { - "version": "8.0.3", - "dev": true, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "license": "MIT", - "bin": { - "husky": "lib/bin.js" + "dependencies": { + "function-bind": "^1.1.2" }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/typicode" + "node": ">= 0.4" } }, - "node_modules/iconv-lite": { - "version": "0.4.24", + "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": { - "safer-buffer": ">= 2.1.2 < 3" + "@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" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/icss-utils": { - "version": "5.1.0", - "license": "ISC", - "engines": { - "node": "^10 || ^12 || >= 14" + "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": { + "@types/hast": "^3.0.0" }, - "peerDependencies": { - "postcss": "^8.1.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "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/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", - "engines": { - "node": ">= 4" + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "@ungap/structured-clone": "^1.0.0", + "hast-util-from-parse5": "^8.0.0", + "hast-util-to-parse5": "^8.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "parse5": "^7.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/image-size": { - "version": "1.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": { - "queue": "6.0.2" - }, - "bin": { - "image-size": "bin/image-size.js" + "@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" }, - "engines": { - "node": ">=14.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/imagemin": { - "version": "6.1.0", + "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/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": { - "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" - }, - "engines": { - "node": ">=6" + "inline-style-parser": "0.1.1" } }, - "node_modules/imagemin-gifsicle": { - "version": "6.0.1", + "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": { - "exec-buffer": "^3.0.0", - "gifsicle": "^4.0.0", - "is-gif": "^3.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": ">=6" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/imagemin-jpegtran": { - "version": "6.0.0", + "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": { - "exec-buffer": "^3.0.0", - "is-jpg": "^2.0.0", - "jpegtran-bin": "^4.0.0" + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" }, - "engines": { - "node": ">=6" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/imagemin-optipng": { - "version": "6.0.0", + "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", "dependencies": { - "exec-buffer": "^3.0.0", - "is-png": "^1.0.0", - "optipng-bin": "^5.0.0" + "@types/hast": "^3.0.0" }, - "engines": { - "node": ">=6" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/imagemin-svgo": { - "version": "7.1.0", + "node_modules/hastscript": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.0.tgz", + "integrity": "sha512-jzaLBGavEDKHrc5EfFImKN7nZKKBdSLIdGvCwDZ9TfzbF2ffXiov8CKE445L2Z1Ek2t/m4SKQ2j6Ipv7NyUolw==", "license": "MIT", "dependencies": { - "is-svg": "^4.2.1", - "svgo": "^1.3.2" - }, - "engines": { - "node": ">=6" + "@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/sindresorhus/imagemin-svgo?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/imagemin-svgo/node_modules/argparse": { - "version": "1.0.10", + "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": { - "sprintf-js": "~1.0.2" + "bin": { + "he": "bin/he" } }, - "node_modules/imagemin-svgo/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" - } + "node_modules/hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "license": "MIT" }, - "node_modules/imagemin-svgo/node_modules/css-tree": { - "version": "1.0.0-alpha.37", - "license": "MIT", - "dependencies": { - "mdn-data": "2.0.4", - "source-map": "^0.6.1" - }, + "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": ">=8.0.0" + "node": "*" } }, - "node_modules/imagemin-svgo/node_modules/css-what": { - "version": "3.4.2", - "license": "BSD-2-Clause", - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "node_modules/history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" } }, - "node_modules/imagemin-svgo/node_modules/dom-serializer": { - "version": "0.2.2", + "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": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" } }, - "node_modules/imagemin-svgo/node_modules/domutils": { - "version": "1.7.0", - "license": "BSD-2-Clause", + "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": { - "dom-serializer": "0", - "domelementtype": "1" + "react-is": "^16.7.0" } }, - "node_modules/imagemin-svgo/node_modules/domutils/node_modules/domelementtype": { - "version": "1.3.1", - "license": "BSD-2-Clause" + "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/imagemin-svgo/node_modules/js-yaml": { - "version": "3.14.1", - "license": "MIT", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "license": "ISC" + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" } }, - "node_modules/imagemin-svgo/node_modules/mdn-data": { - "version": "2.0.4", - "license": "CC0-1.0" + "node_modules/hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==", + "license": "MIT" }, - "node_modules/imagemin-svgo/node_modules/nth-check": { - "version": "1.0.2", - "license": "BSD-2-Clause", + "node_modules/hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==", + "license": "MIT" + }, + "node_modules/html-element-map": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/html-element-map/-/html-element-map-1.3.1.tgz", + "integrity": "sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==", + "license": "MIT", "dependencies": { - "boolbase": "~1.0.0" + "array.prototype.filter": "^1.0.0", + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/imagemin-svgo/node_modules/source-map": { - "version": "0.6.1", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } + "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/imagemin-svgo/node_modules/svgo": { - "version": "1.3.2", + "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": { - "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" + "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": { - "svgo": "bin/svgo" + "html-minifier-terser": "cli.js" }, "engines": { - "node": ">=4.0.0" + "node": "^14.13.1 || >=16.0.0" } }, - "node_modules/imagemin/node_modules/@nodelib/fs.stat": { - "version": "1.1.3", + "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": ">= 6" + "node": ">=14" } }, - "node_modules/imagemin/node_modules/array-union": { - "version": "1.0.2", + "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", - "dependencies": { - "array-uniq": "^1.0.1" - }, "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/imagemin/node_modules/braces": { - "version": "2.3.2", + "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", - "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/imagemin/node_modules/dir-glob": { - "version": "2.0.0", + "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": { - "arrify": "^1.0.1", - "path-type": "^3.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": ">=4" + "node": ">=10.13.0" + }, + "funding": { + "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/imagemin/node_modules/fast-glob": { - "version": "2.2.7", + "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": { - "@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" + "node": ">= 12" } }, - "node_modules/imagemin/node_modules/fill-range": { - "version": "4.0.0", + "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": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/imagemin/node_modules/glob-parent": { - "version": "3.1.0", - "license": "ISC", - "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" + "node": ">=12" } }, - "node_modules/imagemin/node_modules/glob-parent/node_modules/is-glob": { - "version": "3.1.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": { - "is-extglob": "^2.1.0" + "css-line-break": "^2.1.0", + "text-segmentation": "^1.0.3" }, "engines": { - "node": ">=0.10.0" + "node": ">=8.0.0" } }, - "node_modules/imagemin/node_modules/globby": { + "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", "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" - }, - "engines": { - "node": ">=4" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "entities": "^4.4.0" } }, - "node_modules/imagemin/node_modules/globby/node_modules/pify": { - "version": "3.0.0", + "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": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, "engines": { - "node": ">=4" + "node": ">= 0.8" } }, - "node_modules/imagemin/node_modules/ignore": { - "version": "3.3.10", - "license": "MIT" - }, - "node_modules/imagemin/node_modules/is-buffer": { - "version": "1.1.6", + "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/imagemin/node_modules/is-extendable": { - "version": "1.0.1", + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "license": "MIT", "dependencies": { - "is-plain-object": "^2.0.4" + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8.0.0" } }, - "node_modules/imagemin/node_modules/is-number": { - "version": "3.0.0", + "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": { - "kind-of": "^3.0.2" + "@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.10.0" + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } } }, - "node_modules/imagemin/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", + "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", - "dependencies": { - "is-buffer": "^1.1.5" - }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/imagemin/node_modules/make-dir": { - "version": "1.3.0", + "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/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": { - "pify": "^3.0.0" + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" }, "engines": { - "node": ">=4" + "node": ">=0.8", + "npm": ">=1.3.7" } }, - "node_modules/imagemin/node_modules/make-dir/node_modules/pify": { - "version": "3.0.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": ">=4" + "node": ">=10.19.0" } }, - "node_modules/imagemin/node_modules/micromatch": { - "version": "3.1.10", + "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": { - "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" + "agent-base": "^7.1.2", + "debug": "4" }, "engines": { - "node": ">=0.10.0" + "node": ">= 14" } }, - "node_modules/imagemin/node_modules/micromatch/node_modules/extend-shallow": { - "version": "3.0.2", + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "dev": true, "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" + "bin": { + "husky": "lib/bin.js" }, "engines": { - "node": ">=0.10.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" } }, - "node_modules/imagemin/node_modules/path-type": { - "version": "3.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": { - "pify": "^3.0.0" + "safer-buffer": ">= 2.1.2 < 3" }, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/imagemin/node_modules/path-type/node_modules/pify": { - "version": "3.0.0", - "license": "MIT", + "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": ">=4" + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/imagemin/node_modules/slash": { - "version": "1.0.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/imagemin/node_modules/to-regex-range": { - "version": "2.1.1", + "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": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" + "queue": "6.0.2" + }, + "bin": { + "image-size": "bin/image-size.js" }, "engines": { - "node": ">=0.10.0" + "node": ">=16.x" } }, - "node_modules/immer": { - "version": "9.0.21", + "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", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/immer" + "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" + }, + "engines": { + "node": ">=6" } }, - "node_modules/immutable": { - "version": "4.3.4", - "license": "MIT" - }, - "node_modules/import-fresh": { - "version": "3.3.0", + "node_modules/imagemin-gifsicle": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-6.0.1.tgz", + "integrity": "sha512-kuu47c6iKDQ6R9J10xCwL0lgs0+sMz3LRHqRcJ2CRBWdcNmo3T5hUaM8hSZfksptZXJLGKk8heSAvwtSdB1Fng==", "license": "MIT", "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "exec-buffer": "^3.0.0", + "gifsicle": "^4.0.0", + "is-gif": "^3.0.0" }, "engines": { "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/import-lazy": { - "version": "2.1.0", + "node_modules/imagemin-jpegtran": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/imagemin-jpegtran/-/imagemin-jpegtran-6.0.0.tgz", + "integrity": "sha512-Ih+NgThzqYfEWv9t58EItncaaXIHR0u9RuhKa8CtVBlMBvY0dCIxgQJQCfwImA4AV1PMfmUKlkyIHJjb7V4z1g==", "license": "MIT", + "dependencies": { + "exec-buffer": "^3.0.0", + "is-jpg": "^2.0.0", + "jpegtran-bin": "^4.0.0" + }, "engines": { - "node": ">=4" + "node": ">=6" } }, - "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/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": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" + "exec-buffer": "^3.0.0", + "is-png": "^1.0.0", + "optipng-bin": "^5.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6" } }, - "node_modules/imurmurhash": { - "version": "0.1.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": { + "is-svg": "^4.2.1", + "svgo": "^1.3.2" + }, "engines": { - "node": ">=0.8.19" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sindresorhus/imagemin-svgo?sponsor=1" } }, - "node_modules/indent-string": { - "version": "4.0.0", + "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": { + "color-convert": "^1.9.0" + }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/indexes-of": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/infima": { - "version": "0.2.0-alpha.43", + "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", - "engines": { - "node": ">=12" + "dependencies": { + "sprintf-js": "~1.0.2" } }, - "node_modules/inflight": { - "version": "1.0.6", - "license": "ISC", + "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": { - "once": "^1.3.0", - "wrappy": "1" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/inherits": { - "version": "2.0.4", - "license": "ISC" - }, - "node_modules/ini": { - "version": "1.3.8", - "license": "ISC" + "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", + "dependencies": { + "color-name": "1.1.3" + } }, - "node_modules/inline-style-parser": { - "version": "0.1.1", + "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/internal-slot": { - "version": "1.0.5", + "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/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": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" + "mdn-data": "2.0.4", + "source-map": "^0.6.1" }, "engines": { - "node": ">= 0.4" + "node": ">=8.0.0" } }, - "node_modules/internmap": { - "version": "2.0.3", - "license": "ISC", + "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": ">=12" + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/interpret": { - "version": "1.4.0", + "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": { + "css-tree": "^1.1.2" + }, "engines": { - "node": ">= 0.10" + "node": ">=8.0.0" } }, - "node_modules/into-stream": { - "version": "3.1.0", + "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": { - "from2": "^2.1.1", - "p-is-promise": "^1.1.0" + "mdn-data": "2.0.14", + "source-map": "^0.6.1" }, "engines": { - "node": ">=4" + "node": ">=8.0.0" } }, - "node_modules/invariant": { - "version": "2.2.4", + "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/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": { - "loose-envify": "^1.0.0" + "domelementtype": "^2.0.1", + "entities": "^2.0.0" } }, - "node_modules/ip-regex": { - "version": "4.3.0", - "license": "MIT", - "engines": { - "node": ">=8" + "node_modules/imagemin-svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" } }, - "node_modules/ipaddr.js": { - "version": "2.0.1", + "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/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": ">= 10" + "node": ">=0.8.0" } }, - "node_modules/is-absolute-url": { - "version": "2.1.0", + "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", "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/is-accessor-descriptor": { - "version": "1.0.0", + "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": { - "kind-of": "^6.0.0" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/imagemin-svgo/node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "license": "CC0-1.0" + }, + "node_modules/imagemin-svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/imagemin-svgo/node_modules/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", + "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/is-alphabetical": { - "version": "1.0.4", + "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", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/is-alphanumerical": { - "version": "1.0.4", + "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": { - "is-alphabetical": "^1.0.0", - "is-decimal": "^1.0.0" + "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" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" } }, - "node_modules/is-arguments": { - "version": "1.1.1", + "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", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 6" } }, - "node_modules/is-array-buffer": { - "version": "3.0.2", + "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": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" + "array-uniq": "^1.0.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/is-arrayish": { - "version": "0.3.2", - "license": "MIT" - }, - "node_modules/is-bigint": { - "version": "1.0.4", + "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": { - "has-bigints": "^1.0.1" + "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" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/is-binary-path": { - "version": "2.1.0", + "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": { - "binary-extensions": "^2.0.0" + "arrify": "^1.0.1", + "path-type": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", + "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": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "@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": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=4.0.0" } }, - "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" - } - ], - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-ci": { - "version": "2.0.0", + "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": { - "ci-info": "^2.0.0" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" }, - "bin": { - "is-ci": "bin.js" - } - }, - "node_modules/is-color-stop": { - "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" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/is-core-module": { - "version": "2.9.0", - "license": "MIT", + "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": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" } }, - "node_modules/is-data-descriptor": { - "version": "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": { - "kind-of": "^6.0.0" + "is-extglob": "^2.1.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-date-object": { - "version": "1.0.5", + "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": { - "has-tostringtag": "^1.0.0" + "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": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=4" } }, - "node_modules/is-decimal": { - "version": "1.0.4", + "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", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": ">=4" } }, - "node_modules/is-descriptor": { - "version": "1.0.2", + "node_modules/imagemin/node_modules/ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", + "license": "MIT" + }, + "node_modules/imagemin/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "license": "MIT" + }, + "node_modules/imagemin/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "license": "MIT", "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" + "is-plain-object": "^2.0.4" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-directory": { - "version": "0.3.1", + "node_modules/imagemin/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-docker": { - "version": "2.2.1", + "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", - "bin": { - "is-docker": "cli.js" + "dependencies": { + "is-buffer": "^1.1.5" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/is-extendable": { - "version": "0.1.1", + "node_modules/imagemin/node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", "license": "MIT", + "dependencies": { + "pify": "^3.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/is-extglob": { - "version": "2.1.1", + "node_modules/imagemin/node_modules/make-dir/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/is-finite": { - "version": "1.1.0", + "node_modules/imagemin/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "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" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", + "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/is-generator-fn": { - "version": "2.1.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": { + "pify": "^3.0.0" + }, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/is-generator-function": { - "version": "1.0.10", + "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": { - "has-tostringtag": "^1.0.0" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=4" } }, - "node_modules/is-gif": { - "version": "3.0.0", + "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": { - "file-type": "^10.4.0" - }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/is-glob": { - "version": "4.0.3", + "node_modules/imagemin/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", "license": "MIT", "dependencies": { - "is-extglob": "^2.1.1" + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/is-hexadecimal": { - "version": "1.0.4", + "node_modules/immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", "license": "MIT", "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/immer" } }, - "node_modules/is-installed-globally": { - "version": "0.4.0", + "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": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-jpg": { - "version": "2.0.0", + "node_modules/import-lazy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", "license": "MIT", "engines": { "node": ">=6" } }, - "node_modules/is-nan": { - "version": "1.3.2", + "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": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" }, "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-natural-number": { - "version": "4.0.1", - "license": "MIT" - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", + "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", - "engines": { - "node": ">= 0.4" + "dependencies": { + "find-up": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-npm": { - "version": "5.0.0", - "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/is-number": { - "version": "7.0.0", + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "license": "MIT", "engines": { - "node": ">=0.12.0" + "node": ">=0.8.19" } }, - "node_modules/is-number-object": { - "version": "1.0.7", + "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": { - "has-tostringtag": "^1.0.0" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/is-obj": { + "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", "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/is-object": { - "version": "1.0.2", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "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/is-path-cwd": { - "version": "2.2.0", + "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": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, "engines": { - "node": ">=6" + "node": ">= 0.4" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "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": ">=8" + "node": ">=12" } }, - "node_modules/is-plain-obj": { - "version": "2.1.0", + "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/is-plain-object": { - "version": "2.0.4", + "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": { - "isobject": "^3.0.1" + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/is-png": { - "version": "1.1.0", + "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", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "loose-envify": "^1.0.0" } }, - "node_modules/is-regex": { - "version": "1.1.4", + "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": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/is-regexp": { - "version": "1.0.0", + "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.0" + "node": ">= 0.10" } }, - "node_modules/is-resolvable": { - "version": "1.1.0", - "license": "ISC" - }, - "node_modules/is-retry-allowed": { - "version": "1.2.0", + "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-root": { - "version": "2.1.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": { + "hasown": "^2.0.0" + }, "engines": { - "node": ">=6" + "node": ">= 0.10" } }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", + "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", - "dependencies": { - "call-bind": "^1.0.2" - }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/is-stream": { + "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", - "engines": { - "node": ">=8" + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/is-string": { - "version": "1.0.7", + "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": { - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -16132,28 +20321,36 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-subset": { - "version": "0.1.1", - "license": "MIT" - }, - "node_modules/is-svg": { - "version": "4.4.0", + "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": { - "fast-xml-parser": "^4.1.3" + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" }, "engines": { - "node": ">=6" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-symbol": { - "version": "1.0.4", + "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/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-symbols": "^1.0.2" + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -16162,15 +20359,13 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-typed-array": { - "version": "1.1.10", + "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": { - "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" + "has-bigints": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -16179,1467 +20374,1574 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "license": "MIT" - }, - "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/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": { - "call-bind": "^1.0.2" + "binary-extensions": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8" } }, - "node_modules/is-whitespace-character": { - "version": "1.0.4", + "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": ">= 0.4" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-windows": { - "version": "1.0.2", + "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", "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/is-word-character": { - "version": "1.0.4", + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "license": "MIT", + "engines": { + "node": ">= 0.4" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-wsl": { - "version": "2.2.0", + "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": { - "is-docker": "^2.0.0" + "ci-info": "^3.2.0" }, - "engines": { - "node": ">=8" + "bin": { + "is-ci": "bin.js" } }, - "node_modules/is-yarn-global": { - "version": "0.3.0", - "license": "MIT" - }, - "node_modules/is2": { - "version": "2.0.9", + "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": { - "deep-is": "^0.1.3", - "ip-regex": "^4.1.0", - "is-url": "^1.2.4" - }, - "engines": { - "node": ">=v0.10.0" + "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/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/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", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isstream": { - "version": "0.1.2", - "license": "MIT" - }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", - "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=8" - } - }, - "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", "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" + "hasown": "^2.0.2" }, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/istanbul-lib-report": { - "version": "3.0.1", - "dev": true, - "license": "BSD-3-Clause", + "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": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" + "hasown": "^2.0.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" } }, - "node_modules/istanbul-lib-report/node_modules/has-flag": { - "version": "4.0.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": { + "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/sponsors/ljharb" } }, - "node_modules/istanbul-lib-report/node_modules/make-dir": { - "version": "4.0.0", - "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": { - "semver": "^7.5.3" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "node_modules/is-decimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "dev": true, - "license": "BSD-3-Clause", + "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": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" }, "engines": { - "node": ">=10" + "node": ">= 0.4" } }, - "node_modules/istanbul-lib-source-maps/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/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", - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/isurl": { - "version": "1.0.0", + "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": { - "has-to-string-tag-x": "^1.2.0", - "is-object": "^1.0.1" - }, "engines": { - "node": ">= 4" + "node": ">=0.10.0" } }, - "node_modules/jackspeak": { - "version": "2.3.6", - "license": "BlueOak-1.0.0", + "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": { - "@isaacs/cliui": "^8.0.2" + "call-bound": "^1.0.3" }, "engines": { - "node": ">=14" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-finite": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", + "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", - "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "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": { - "@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" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + "node": ">=12" }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "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==", + "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", - "dependencies": { - "execa": "^5.0.0", - "jest-util": "^29.7.0", - "p-limit": "^3.1.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=6" } }, - "node_modules/jest-changed-files/node_modules/p-limit": { - "version": "3.1.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": { - "yocto-queue": "^0.1.0" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "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/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/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" + "file-type": "^10.4.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=6" } }, - "node_modules/jest-circus/node_modules/ansi-styles": { - "version": "4.3.0", - "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", "dependencies": { - "color-convert": "^2.0.1" + "is-extglob": "^2.1.1" }, "engines": { - "node": ">=8" - }, + "node": ">=0.10.0" + } + }, + "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", "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/jest-circus/node_modules/chalk": { - "version": "4.1.2", - "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": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-circus/node_modules/color-convert": { - "version": "2.0.1", - "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", + "engines": { + "node": ">=6" + } + }, + "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", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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": { - "color-name": "~1.1.4" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-circus/node_modules/color-name": { - "version": "1.1.4", - "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/jest-circus/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "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", "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-circus/node_modules/p-limit": { - "version": "3.1.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", - "dependencies": { - "yocto-queue": "^0.1.0" - }, "engines": { - "node": ">=10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-circus/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-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/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/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" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-cli/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-cli/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-cli/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-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/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-cli/node_modules/supports-color": { - "version": "7.2.0", - "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": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=0.10.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, + "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": { - "@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" + "isobject": "^3.0.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": ">=0.10.0" } }, - "node_modules/jest-config/node_modules/ansi-styles": { - "version": "4.3.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", - "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/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": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.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/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "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/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": ">=8" + "node": ">=0.10.0" } }, - "node_modules/jest-config/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "license": "ISC" + }, + "node_modules/is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "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/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/jest-config/node_modules/strip-json-comments": { - "version": "3.1.1", - "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", "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-config/node_modules/supports-color": { - "version": "7.2.0", - "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": { - "has-flag": "^4.0.0" + "call-bound": "^1.0.3" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "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/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": { - "chalk": "^4.0.0", - "diff-sequences": "^29.6.3", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" + "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-diff/node_modules/ansi-styles": { - "version": "4.3.0", - "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/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": { - "color-convert": "^2.0.1" + "fast-xml-parser": "^4.1.3" }, "engines": { - "node": ">=8" + "node": ">=6" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "4.1.2", - "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": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "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": { - "color-name": "~1.1.4" + "which-typed-array": "^1.1.16" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "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/jest-diff/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "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", "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.2.0", - "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": { - "has-flag": "^4.0.0" + "call-bound": "^1.0.2" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "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/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": { - "detect-newline": "^3.0.0" + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "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/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", - "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": ">=0.10.0" } }, - "node_modules/jest-each/node_modules/ansi-styles": { - "version": "4.3.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": { - "color-convert": "^2.0.1" + "is-docker": "^2.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-each/node_modules/chalk": { - "version": "4.1.2", - "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": { - "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-each/node_modules/color-convert": { - "version": "2.0.1", - "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-name": "~1.1.4" + "deep-is": "^0.1.3", + "ip-regex": "^4.1.0", + "is-url": "^1.2.4" }, "engines": { - "node": ">=7.0.0" + "node": ">=v0.10.0" } }, - "node_modules/jest-each/node_modules/color-name": { - "version": "1.1.4", - "dev": true, + "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-each/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "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/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/jest-each/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", + "license": "MIT" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, + "license": "BSD-3-Clause", "engines": { "node": ">=8" } }, - "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==", + "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": { - "@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" + "@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": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" } }, - "node_modules/jest-get-type": { - "version": "29.6.3", + "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": { + "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-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==", + "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": { - "@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" + "semver": "^7.5.3" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" }, - "optionalDependencies": { - "fsevents": "^2.3.2" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-haste-map/node_modules/has-flag": { - "version": "4.0.0", + "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": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "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==", + "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", + "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", "dependencies": { - "@types/node": "*", - "jest-util": "^29.7.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-haste-map/node_modules/supports-color": { - "version": "8.1.1", - "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": ">=10" + "node": ">= 4" + } + }, + "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/chalk/supports-color?sponsor=1" + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/jest-leak-detector": { + "node_modules/jest": { "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==", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "license": "MIT", "dependencies": { - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" + "@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" }, "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-matcher-utils": { + "node_modules/jest-changed-files": { "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==", + "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": { - "chalk": "^4.0.0", - "jest-diff": "^29.7.0", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { - "version": "4.3.0", + "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": { - "color-convert": "^2.0.1" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">= 8" } }, - "node_modules/jest-matcher-utils/node_modules/chalk": { - "version": "4.1.2", + "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": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/jest-matcher-utils/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-matcher-utils/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-matcher-utils/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" - } - }, - "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": "^14.15.0 || ^16.10.0 || >=18.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-message-util/node_modules/ansi-styles": { - "version": "4.3.0", + "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": { - "color-convert": "^2.0.1" + "path-key": "^3.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-message-util/node_modules/chalk": { - "version": "4.1.2", + "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", - "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/jest-message-util/node_modules/color-convert": { - "version": "2.0.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": { - "color-name": "~1.1.4" + "shebang-regex": "^3.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "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/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/jest-message-util/node_modules/supports-color": { - "version": "7.2.0", + "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": "MIT", + "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/jest-mock": { + "node_modules/jest-circus": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", - "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "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": "*", - "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" + "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" }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } - } - }, - "node_modules/jest-regex-util": { - "version": "29.6.3", - "dev": true, - "license": "MIT", "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-resolve": { + "node_modules/jest-cli": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", - "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", "dev": true, "license": "MIT", "dependencies": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "jest-pnp-resolver": "^1.2.2", + "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", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" + "yargs": "^17.3.1" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.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": { - "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.7.0" + "bin": { + "jest": "bin/jest.js" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-resolve/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" }, - "engines": { - "node": ">=8" + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/jest-resolve/node_modules/chalk": { - "version": "4.1.2", + "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", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } + "license": "MIT" }, - "node_modules/jest-resolve/node_modules/color-convert": { - "version": "2.0.1", + "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": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "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", + "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": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, "engines": { "node": ">=8" } }, - "node_modules/jest-resolve/node_modules/supports-color": { - "version": "7.2.0", + "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": { - "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/jest-runner": { + "node_modules/jest-config": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", - "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "license": "MIT", "dependencies": { - "@jest/console": "^29.7.0", - "@jest/environment": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", "@jest/types": "^29.6.3", - "@types/node": "*", + "babel-jest": "^29.7.0", "chalk": "^4.0.0", - "emittery": "^0.13.1", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.7.0", + "jest-circus": "^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-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", "jest-resolve": "^29.7.0", - "jest-runtime": "^29.7.0", + "jest-runner": "^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" + "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" - } - }, - "node_modules/jest-runner/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" }, - "engines": { - "node": ">=8" + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } } }, - "node_modules/jest-runner/node_modules/chalk": { - "version": "4.1.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": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "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-runner/node_modules/color-convert": { - "version": "2.0.1", + "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": { - "color-name": "~1.1.4" + "detect-newline": "^3.0.0" }, "engines": { - "node": ">=7.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "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", + "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": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runner/node_modules/jest-worker": { + "node_modules/jest-environment-node": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", - "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "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-util": "^29.7.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runner/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", + "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", - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runner/node_modules/p-limit": { - "version": "3.1.0", - "dev": true, + "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": { - "yocto-queue": "^0.1.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": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-runner/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/jest-runner/node_modules/source-map-support": { - "version": "0.5.13", + "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": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runner/node_modules/supports-color": { - "version": "7.2.0", + "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": { - "has-flag": "^4.0.0" + "chalk": "^4.0.0", + "jest-diff": "^29.7.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/jest-runtime": { + "node_modules/jest-message-util": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", - "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "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": { - "@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", + "@babel/code-frame": "^7.12.13", "@jest/types": "^29.6.3", - "@types/node": "*", + "@types/stack-utils": "^2.0.0", "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", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", "slash": "^3.0.0", - "strip-bom": "^4.0.0" + "stack-utils": "^2.0.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runtime/node_modules/ansi-styles": { - "version": "4.3.0", + "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": { - "color-convert": "^2.0.1" + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.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": ">=6" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } } }, - "node_modules/jest-runtime/node_modules/chalk": { - "version": "4.1.2", + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "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", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "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" }, "engines": { - "node": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.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": { + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runtime/node_modules/color-convert": { - "version": "2.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", "dependencies": { - "color-name": "~1.1.4" + "@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" }, "engines": { - "node": ">=7.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runtime/node_modules/color-name": { - "version": "1.1.4", + "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": "MIT" + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/jest-runtime/node_modules/has-flag": { - "version": "4.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": ">=8" + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "node_modules/jest-runtime/node_modules/supports-color": { - "version": "7.2.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", "dependencies": { - "has-flag": "^4.0.0" + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "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": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-snapshot": { @@ -17674,660 +21976,560 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { - "version": "4.3.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": { - "color-convert": "^2.0.1" + "@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": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-snapshot/node_modules/chalk": { - "version": "4.1.2", + "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", "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-snapshot/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" + "@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" }, "engines": { - "node": ">=7.0.0" - } - }, - "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, - "license": "MIT", - "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-snapshot/node_modules/supports-color": { - "version": "7.2.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", "dependencies": { - "has-flag": "^4.0.0" + "@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" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-util": { + "node_modules/jest-worker": { "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, + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "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" + "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-util/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "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": { - "color-convert": "^2.0.1" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/jest-util/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "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/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": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@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": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "logalot": "^2.0.0" }, - "engines": { - "node": ">=10" + "bin": { + "jpegtran": "cli.js" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "engines": { + "node": ">=6" } }, - "node_modules/jest-util/node_modules/ci-info": { - "version": "3.8.0", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], + "node_modules/js-levenshtein": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", + "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/jest-util/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "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", + "bin": { + "jsesc": "bin/jsesc" }, "engines": { - "node": ">=7.0.0" + "node": ">=6" } }, - "node_modules/jest-util/node_modules/color-name": { - "version": "1.1.4", - "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/jest-util/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "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": ">=8" + "node": ">=14.0.0" } }, - "node_modules/jest-util/node_modules/supports-color": { - "version": "7.2.0", - "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/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "license": "MIT" + }, + "node_modules/json-pointer": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/json-pointer/-/json-pointer-0.6.2.tgz", + "integrity": "sha512-vLWcKbOaXlO+jvRy4qNd+TI1QUPZzfJj1tpJ3vAXDych5XJf93ftpUKe5pKCrzyIIwgBJcOcCVRUfqQP25afBw==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "foreach": "^2.0.4" } }, - "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, + "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": { - "@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" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "lodash": "^4.17.4" } }, - "node_modules/jest-validate/node_modules/ansi-styles": { - "version": "4.3.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": { - "color-convert": "^2.0.1" + "compute-lcm": "^1.1.2", + "json-schema-compare": "^0.2.2", + "lodash": "^4.17.20" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=12.0.0" } }, - "node_modules/jest-validate/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "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/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": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "bin": { + "json5": "lib/cli.js" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=6" } }, - "node_modules/jest-validate/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "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": { - "color-name": "~1.1.4" + "universalify": "^2.0.0" }, - "engines": { - "node": ">=7.0.0" + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "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", - "dev": true, + "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": ">=8" + "node": ">=0.6.0" } }, - "node_modules/jest-validate/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "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": { - "has-flag": "^4.0.0" + "commander": "^8.3.0" }, - "engines": { - "node": ">=8" + "bin": { + "katex": "cli.js" } }, - "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, + "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", - "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" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 12" } }, - "node_modules/jest-watcher/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, + "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": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "json-buffer": "3.0.0" } }, - "node_modules/jest-watcher/node_modules/chalk": { - "version": "4.1.2", - "dev": true, + "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", - "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.0" } }, - "node_modules/jest-watcher/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, + "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", - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=6" } }, - "node_modules/jest-watcher/node_modules/color-name": { - "version": "1.1.4", - "dev": true, + "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/jest-watcher/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, + "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": { + "@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": ">=8" + "node": "*" } }, - "node_modules/jest-watcher/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, + "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": { - "has-flag": "^4.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": ">=8" + "node": ">=16.0.0" } }, - "node_modules/jest-worker": { - "version": "27.5.1", + "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": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "package-json": "^8.1.0" }, "engines": { - "node": ">= 10.13.0" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", + "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", - "engines": { - "node": ">=8" + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" } }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.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": { - "has-flag": "^4.0.0" + "set-getter": "^0.1.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "node": ">=0.10.0" } }, - "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/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/jpegtran-bin": { - "version": "4.0.0", - "hasInstallScript": true, + "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": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.0", - "logalot": "^2.0.0" - }, - "bin": { - "jpegtran": "cli.js" + "@lezer/highlight": "^1.2.1", + "@lezer/lr": "^1.4.2", + "min-dash": "^4.2.1" }, "engines": { - "node": ">=6" + "node": "*" } }, - "node_modules/js-levenshtein": { - "version": "1.1.6", + "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": ">=0.10.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" } }, - "node_modules/js-tokens": { - "version": "4.0.0", + "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/js-yaml": { - "version": "4.1.0", + "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": { - "argparse": "^2.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": { - "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" + "lint-staged": "bin/lint-staged.js" }, "engines": { - "node": ">=6" + "node": "^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" } }, - "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", - "license": "MIT" - }, - "node_modules/json-pointer": { - "version": "0.6.2", + "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": { - "foreach": "^2.0.4" + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "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/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", - "dependencies": { - "lodash": "^4.17.4" + "engines": { + "node": ">=16" } }, - "node_modules/json-schema-merge-allof": { - "version": "0.8.1", + "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": { - "compute-lcm": "^1.1.2", - "json-schema-compare": "^0.2.2", - "lodash": "^4.17.20" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "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" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=6" + "node": ">= 8" } }, - "node_modules/jsonfile": { - "version": "6.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": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsprim": { - "version": "1.4.2", - "license": "MIT", - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/keyv": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "json-buffer": "3.0.0" - } - }, - "node_modules/khroma": { - "version": "2.1.0" - }, - "node_modules/kind-of": { - "version": "6.0.3", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/kleur": { - "version": "3.0.3", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/klona": { - "version": "2.0.5", - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/lang-feel": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/lang-feel/-/lang-feel-2.2.0.tgz", - "integrity": "sha512-Ebo5nftYsMfJzB3Ny8Oy4oaDXZXb5x61qtVVmKv6aImvAZUbT76mD60ZbEilizjZQzsR2CcU1iMK5sacIa1NVA==", - "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" - }, - "engines": { - "node": "*" - } - }, - "node_modules/latest-version": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "package-json": "^6.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/layout-base": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/lazy-cache": { - "version": "2.0.2", - "license": "MIT", - "dependencies": { - "set-getter": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/leven": { - "version": "3.1.0", - "license": "MIT", - "engines": { - "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==", - "dependencies": { - "@lezer/highlight": "^1.2.1", - "@lezer/lr": "^1.4.2", - "min-dash": "^4.2.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/lilconfig": { - "version": "2.1.0", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "license": "MIT" - }, - "node_modules/lint-staged": { - "version": "14.0.1", - "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" + "ms": "2.1.2" }, - "funding": { - "url": "https://opencollective.com/lint-staged" - } - }, - "node_modules/lint-staged/node_modules/chalk": { - "version": "5.3.0", - "dev": true, - "license": "MIT", "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" + "node": ">=6.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" + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, "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": { @@ -18350,6 +22552,8 @@ }, "node_modules/lint-staged/node_modules/get-stream": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "license": "MIT", "engines": { @@ -18361,6 +22565,8 @@ }, "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": { @@ -18369,6 +22575,8 @@ }, "node_modules/lint-staged/node_modules/is-stream": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, "license": "MIT", "engines": { @@ -18378,8 +22586,34 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "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", + "engines": { + "node": ">=10" + } + }, + "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": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, "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": { @@ -18389,8 +22623,17 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "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.1.0", + "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": { @@ -18403,8 +22646,23 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "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": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "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": { @@ -18418,18 +22676,42 @@ } }, "node_modules/lint-staged/node_modules/path-key": { - "version": "4.0.0", + "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": ">=12" + "node": ">=8" + } + }, + "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": { + "shebang-regex": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=8" + } + }, + "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", + "engines": { + "node": ">=8" } }, "node_modules/lint-staged/node_modules/strip-final-newline": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", "dev": true, "license": "MIT", "engines": { @@ -18439,16 +22721,26 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lint-staged/node_modules/yaml": { - "version": "2.3.1", + "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": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, "engines": { - "node": ">= 14" + "node": ">= 8" } }, "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" @@ -18456,6 +22748,8 @@ }, "node_modules/list-item": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz", + "integrity": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==", "license": "MIT", "dependencies": { "expand-range": "^1.8.1", @@ -18467,36 +22761,16 @@ "node": ">=0.10.0" } }, - "node_modules/list-item/node_modules/is-buffer": { - "version": "1.1.6", - "license": "MIT" - }, - "node_modules/list-item/node_modules/is-number": { - "version": "2.1.0", - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/list-item/node_modules/kind-of": { - "version": "3.2.2", - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, "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": { @@ -18519,90 +22793,23 @@ } } }, - "node_modules/listr2/node_modules/ansi-regex": { - "version": "6.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/listr2/node_modules/ansi-styles": { - "version": "6.2.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/listr2/node_modules/emoji-regex": { - "version": "9.2.2", + "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/listr2/node_modules/eventemitter3": { - "version": "5.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/listr2/node_modules/string-width": { - "version": "5.1.2", - "dev": true, - "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" - } - }, - "node_modules/listr2/node_modules/strip-ansi": { - "version": "7.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/listr2/node_modules/wrap-ansi": { - "version": "8.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, "node_modules/livereload-js": { "version": "2.4.0", + "resolved": "https://registry.npmjs.org/livereload-js/-/livereload-js-2.4.0.tgz", + "integrity": "sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw==", "license": "MIT" }, "node_modules/load-json-file": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", "license": "MIT", "dependencies": { "graceful-fs": "^4.1.2", @@ -18617,6 +22824,8 @@ }, "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" @@ -18627,6 +22836,8 @@ }, "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" @@ -18634,6 +22845,8 @@ }, "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" @@ -18644,17 +22857,23 @@ }, "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/loader-runner": { - "version": "4.2.0", + "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", "engines": { "node": ">=6.11.5" } }, "node_modules/loader-utils": { - "version": "2.0.2", + "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": { "big.js": "^5.2.2", @@ -18665,8 +22884,35 @@ "node": ">=8.9.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", + "engines": { + "node": "*" + } + }, + "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": { + "mlly": "^1.7.3", + "pkg-types": "^1.2.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, "node_modules/locate-path": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "license": "MIT", "dependencies": { "p-locate": "^4.1.0" @@ -18677,110 +22923,74 @@ }, "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", - "license": "MIT" - }, - "node_modules/lodash.assignin": { - "version": "4.2.0", - "license": "MIT" - }, - "node_modules/lodash.bind": { - "version": "4.2.1", + "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", - "license": "MIT" - }, - "node_modules/lodash.clonedeep": { - "version": "4.5.0", - "license": "MIT" - }, - "node_modules/lodash.curry": { - "version": "4.1.1", + "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", - "license": "MIT" - }, - "node_modules/lodash.defaults": { - "version": "4.2.0", + "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", - "license": "MIT" - }, - "node_modules/lodash.filter": { - "version": "4.6.0", - "license": "MIT" - }, - "node_modules/lodash.flatten": { - "version": "4.4.0", + "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", - "license": "MIT" - }, - "node_modules/lodash.flow": { - "version": "3.5.0", - "license": "MIT" - }, - "node_modules/lodash.foreach": { - "version": "4.5.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", - "license": "MIT" - }, - "node_modules/lodash.map": { - "version": "4.6.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", - "license": "MIT" - }, - "node_modules/lodash.merge": { - "version": "4.6.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", - "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", + "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": { "lodash._reinterpolate": "^3.0.0", @@ -18789,6 +22999,8 @@ }, "node_modules/lodash.templatesettings": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", "license": "MIT", "dependencies": { "lodash._reinterpolate": "^3.0.0" @@ -18796,10 +23008,14 @@ }, "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": { @@ -18818,6 +23034,8 @@ }, "node_modules/log-update/node_modules/ansi-escapes": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-5.0.0.tgz", + "integrity": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==", "dev": true, "license": "MIT", "dependencies": { @@ -18831,7 +23049,9 @@ } }, "node_modules/log-update/node_modules/ansi-regex": { - "version": "6.0.1", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "dev": true, "license": "MIT", "engines": { @@ -18841,40 +23061,10 @@ "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/log-update/node_modules/ansi-styles": { - "version": "6.2.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/log-update/node_modules/emoji-regex": { - "version": "9.2.2", - "dev": true, - "license": "MIT" - }, - "node_modules/log-update/node_modules/string-width": { - "version": "5.1.2", - "dev": true, - "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" - } - }, "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": { @@ -18889,6 +23079,8 @@ }, "node_modules/log-update/node_modules/type-fest": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { @@ -18898,24 +23090,10 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "8.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, "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", @@ -18927,13 +23105,27 @@ }, "node_modules/longest": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha512-k+yt5n3l48JU4k8ftnKG6V7u32wyH2NfKzeMto9F/QRE0amxy/LayxwlvjjkZEIzqR+19IrtFO8p5kB9QaYUFg==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, + "node_modules/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": { "js-tokens": "^3.0.0 || ^4.0.0" @@ -18944,6 +23136,8 @@ }, "node_modules/loud-rejection": { "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==", "license": "MIT", "dependencies": { "currently-unhandled": "^0.4.1", @@ -18955,6 +23149,8 @@ }, "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" @@ -18962,6 +23158,8 @@ }, "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" @@ -18969,6 +23167,8 @@ }, "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", @@ -18985,6 +23185,8 @@ }, "node_modules/lpad-align/node_modules/indent-string": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==", "license": "MIT", "dependencies": { "repeating": "^2.0.0" @@ -18994,45 +23196,49 @@ } }, "node_modules/lru-cache": { - "version": "6.0.0", + "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": "^4.0.0" - }, - "engines": { - "node": ">=10" + "yallist": "^3.0.2" } }, "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", "engines": { "node": ">=12" } }, "node_modules/make-dir": { - "version": "3.1.0", + "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": { - "semver": "^6.0.0" + "pify": "^4.0.1", + "semver": "^5.6.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6" } }, "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", + "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.js" + "semver": "bin/semver" } }, "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": { @@ -19041,6 +23247,8 @@ }, "node_modules/map-cache": { "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -19048,6 +23256,8 @@ }, "node_modules/map-obj": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -19055,6 +23265,8 @@ }, "node_modules/map-visit": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", "license": "MIT", "dependencies": { "object-visit": "^1.0.0" @@ -19063,23 +23275,41 @@ "node": ">=0.10.0" } }, - "node_modules/markdown-escapes": { - "version": "1.0.4", + "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", + "engines": { + "node": ">=16" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/markdown-link": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/markdown-link/-/markdown-link-0.1.1.tgz", + "integrity": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, + "node_modules/markdown-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", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/markdown-toc": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/markdown-toc/-/markdown-toc-1.2.0.tgz", + "integrity": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==", "license": "MIT", "dependencies": { "concat-stream": "^1.5.2", @@ -19104,6 +23334,8 @@ }, "node_modules/markdown-toc/node_modules/argparse": { "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" @@ -19111,6 +23343,8 @@ }, "node_modules/markdown-toc/node_modules/autolinker": { "version": "0.28.1", + "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-0.28.1.tgz", + "integrity": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==", "license": "MIT", "dependencies": { "gulp-header": "^1.7.1" @@ -19118,6 +23352,8 @@ }, "node_modules/markdown-toc/node_modules/gray-matter": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz", + "integrity": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==", "license": "MIT", "dependencies": { "ansi-red": "^0.1.1", @@ -19132,6 +23368,8 @@ }, "node_modules/markdown-toc/node_modules/js-yaml": { "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "license": "MIT", "dependencies": { "argparse": "^1.0.7", @@ -19143,6 +23381,8 @@ }, "node_modules/markdown-toc/node_modules/remarkable": { "version": "1.7.4", + "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-1.7.4.tgz", + "integrity": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==", "license": "MIT", "dependencies": { "argparse": "^1.0.10", @@ -19156,9 +23396,10 @@ } }, "node_modules/marked": { - "version": "15.0.3", - "resolved": "https://registry.npmjs.org/marked/-/marked-15.0.3.tgz", - "integrity": "sha512-Ai0cepvl2NHnTcO9jYDtcOEtVBNVYR31XnEA3BndO7f5As1wzpcOceSUM8FDkNLJNIODcLpDTWay/qQhqbuMvg==", + "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" }, @@ -19166,12 +23407,25 @@ "node": ">= 18" } }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "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/math-random": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", + "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==", "license": "MIT" }, "node_modules/md5.js": { "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", "license": "MIT", "dependencies": { "hash-base": "^3.0.0", @@ -19179,22 +23433,43 @@ "safe-buffer": "^5.1.2" } }, - "node_modules/mdast-squeeze-paragraphs": { - "version": "4.0.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": { - "unist-util-remove": "^2.0.0" + "@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": { - "version": "4.0.0", + "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": { - "unist-util-visit": "^2.0.0" + "@types/unist": "^2.0.0" }, "funding": { "type": "opencollective", @@ -19202,12 +23477,14 @@ } }, "node_modules/mdast-util-definitions/node_modules/unist-util-visit": { - "version": "2.0.3", + "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": "^4.0.0", - "unist-util-visit-parents": "^3.0.0" + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" }, "funding": { "type": "opencollective", @@ -19215,143 +23492,457 @@ } }, "node_modules/mdast-util-definitions/node_modules/unist-util-visit-parents": { - "version": "3.1.1", + "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": "^4.0.0" + "unist-util-is": "^5.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/mdast-util-from-markdown": { - "version": "1.3.1", + "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": "^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" + "@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-from-markdown/node_modules/mdast-util-to-string": { - "version": "3.2.0", + "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": "^3.0.0" + "@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-from-markdown/node_modules/unist-util-stringify-position": { - "version": "3.0.3", + "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/unist": "^2.0.0" + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, - "node_modules/mdast-util-to-hast": { - "version": "10.0.1", + "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": "^3.0.0", - "@types/unist": "^2.0.0", - "mdast-util-definitions": "^4.0.0", - "mdurl": "^1.0.0", - "unist-builder": "^2.0.0", - "unist-util-generated": "^1.0.0", - "unist-util-position": "^3.0.0", - "unist-util-visit": "^2.0.0" + "@types/mdast": "^4.0.0", + "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-to-hast/node_modules/unist-util-visit": { - "version": "2.0.3", + "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": { - "@types/unist": "^2.0.0", - "unist-util-is": "^4.0.0", - "unist-util-visit-parents": "^3.0.0" + "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-to-hast/node_modules/unist-util-visit-parents": { - "version": "3.1.1", + "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/unist": "^2.0.0", - "unist-util-is": "^4.0.0" + "@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-to-string": { + "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", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "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.14", + "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/mdurl": { - "version": "1.0.1", - "license": "MIT" - }, "node_modules/media-typer": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/memfs": { - "version": "3.4.7", + "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.3" + "fs-monkey": "^1.0.4" }, "engines": { "node": ">= 4.0.0" } }, "node_modules/memoize-one": { - "version": "5.1.1", + "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", @@ -19370,59 +23961,73 @@ } }, "node_modules/merge-descriptors": { - "version": "1.0.1", - "license": "MIT" + "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": "9.4.3", + "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": "^6.0.0", - "cytoscape": "^3.23.0", + "@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.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", + "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", - "non-layered-tidy-tree-layout": "^2.0.2", - "stylis": "^4.1.2", + "marked": "^13.0.2", + "roughjs": "^4.6.6", + "stylis": "^4.3.1", "ts-dedent": "^2.2.0", - "uuid": "^9.0.0", - "web-worker": "^1.2.0" + "uuid": "^9.0.1" } }, - "node_modules/mermaid/node_modules/dompurify": { - "version": "2.4.3", - "license": "(MPL-2.0 OR Apache-2.0)" - }, - "node_modules/mermaid/node_modules/uuid": { - "version": "9.0.1", - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], + "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": { - "uuid": "dist/bin/uuid" + "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" @@ -19430,10 +24035,14 @@ }, "node_modules/microevent.ts": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz", + "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==", "license": "MIT" }, "node_modules/micromark": { - "version": "3.2.0", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.1.tgz", + "integrity": "sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==", "funding": [ { "type": "GitHub Sponsors", @@ -19449,24 +24058,26 @@ "@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" + "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": "1.1.0", + "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", @@ -19480,25 +24091,47 @@ "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" - } + "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-factory-destination": { - "version": "1.1.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", @@ -19511,13 +24144,14 @@ ], "license": "MIT", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark-factory-label": { - "version": "1.1.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", @@ -19528,16 +24162,31 @@ "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": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" + "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-factory-space": { - "version": "1.1.0", + "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", @@ -19550,12 +24199,14 @@ ], "license": "MIT", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-types": "^1.0.0" + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark-factory-title": { - "version": "1.1.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", @@ -19568,14 +24219,14 @@ ], "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" + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark-factory-whitespace": { - "version": "1.1.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", @@ -19586,16 +24237,28 @@ "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": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "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-util-character": { - "version": "1.2.0", + "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", @@ -19608,12 +24271,14 @@ ], "license": "MIT", "dependencies": { - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark-util-chunked": { - "version": "1.1.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", @@ -19624,13 +24289,48 @@ "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-util-symbol": "^1.0.0" + "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-util-classify-character": { - "version": "1.1.0", + "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", @@ -19643,13 +24343,14 @@ ], "license": "MIT", "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark-util-combine-extensions": { - "version": "1.1.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", @@ -19660,14 +24361,32 @@ "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": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-types": "^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-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-util-decode-numeric-character-reference": { - "version": "1.1.0", + "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", @@ -19680,11 +24399,14 @@ ], "license": "MIT", "dependencies": { - "micromark-util-symbol": "^1.0.0" + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark-util-decode-string": { - "version": "1.1.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", @@ -19697,14 +24419,14 @@ ], "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" + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark-util-encode": { - "version": "1.1.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", @@ -19717,8 +24439,28 @@ ], "license": "MIT" }, - "node_modules/micromark-util-html-tag-name": { - "version": "1.2.0", + "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", @@ -19731,8 +24473,27 @@ ], "license": "MIT" }, - "node_modules/micromark-util-normalize-identifier": { - "version": "1.1.0", + "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", @@ -19745,11 +24506,14 @@ ], "license": "MIT", "dependencies": { - "micromark-util-symbol": "^1.0.0" + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark-util-resolve-all": { - "version": "1.1.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", @@ -19762,11 +24526,14 @@ ], "license": "MIT", "dependencies": { - "micromark-util-types": "^1.0.0" + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark-util-sanitize-uri": { - "version": "1.2.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", @@ -19777,15 +24544,42 @@ "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-character": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-symbol": "^1.0.0" + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/micromark-util-subtokenize": { - "version": "1.1.0", + "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", @@ -19798,14 +24592,34 @@ ], "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" + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/micromark-util-symbol": { - "version": "1.1.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", @@ -19818,8 +24632,76 @@ ], "license": "MIT" }, - "node_modules/micromark-util-types": { - "version": "1.1.0", + "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", @@ -19832,1139 +24714,3415 @@ ], "license": "MIT" }, - "node_modules/micromatch": { - "version": "4.0.5", + "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": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" + "@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": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "license": "MIT", + "dependencies": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "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": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/nprogress": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz", + "integrity": "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==", + "license": "MIT" + }, + "node_modules/nth-check": { + "version": "2.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/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": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/null-loader/node_modules/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/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/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", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "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": ">= 6" + } + }, + "node_modules/oas-resolver": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/oas-resolver/-/oas-resolver-2.5.6.tgz", + "integrity": "sha512-Yx5PWQNZomfEhPPOphFbZKi9W93CocQj18NlD2Pa4GWZzdZpSJvYwoiuurRI7m3SpcChrnO08hkuQDL3FGsVFQ==", + "license": "BSD-3-Clause", + "dependencies": { + "node-fetch-h2": "^2.3.0", + "oas-kit-common": "^1.0.8", + "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": { + "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": { + "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": ">=8" + } + }, + "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": ">=8" + } + }, + "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": ">=12" + } + }, + "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/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/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": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "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": { + "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.6" + "node": ">=12" } }, - "node_modules/miller-rabin": { - "version": "4.0.1", - "license": "MIT", + "node_modules/oas-schema-walker": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/oas-schema-walker/-/oas-schema-walker-1.1.5.tgz", + "integrity": "sha512-2yucenq1a9YPmeNExoUa9Qwrt9RFkjqaMAA1X+U7sbb0AqBeTIdMHky9SQQ6iN94bO5NW0W4TRYXerG+BdAvAQ==", + "license": "BSD-3-Clause", + "funding": { + "url": "https://github.com/Mermade/oas-kit?sponsor=1" + } + }, + "node_modules/oas-validator": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/oas-validator/-/oas-validator-5.0.8.tgz", + "integrity": "sha512-cu20/HE5N5HKqVygs3dt94eYJfBi0TsZvPVXDhbXQHiEityDN+RROTleefoKRKKJ9dFAF2JBkDHgvWj0sjKGmw==", + "license": "BSD-3-Clause", "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" + "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" }, - "bin": { - "miller-rabin": "bin/miller-rabin" + "funding": { + "url": "https://github.com/Mermade/oas-kit?sponsor=1" } }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.0", - "license": "MIT" + "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/mime": { - "version": "1.6.0", - "license": "MIT", - "bin": { - "mime": "cli.js" - }, + "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": ">=4" + "node": "*" } }, - "node_modules/mime-db": { - "version": "1.51.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", "engines": { - "node": ">= 0.6" + "node": ">=0.10.0" } }, - "node_modules/mime-format": { - "version": "2.0.1", - "license": "Apache-2.0", + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "license": "MIT", "dependencies": { - "charset": "^1.0.0" + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/mime-types": { - "version": "2.1.34", + "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": { - "mime-db": "1.51.0" + "is-descriptor": "^0.1.0" }, "engines": { - "node": ">= 0.6" + "node": ">=0.10.0" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", + "node_modules/object-copy/node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "license": "MIT" + }, + "node_modules/object-copy/node_modules/is-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-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, "engines": { - "node": ">=6" + "node": ">= 0.4" } }, - "node_modules/mimic-response": { - "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-buffer": "^1.1.5" + }, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "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/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/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/mini-create-react-context": { - "version": "0.4.1", + "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": { - "@babel/runtime": "^7.12.1", - "tiny-warning": "^1.0.3" + "engines": { + "node": ">= 0.4" }, - "peerDependencies": { - "prop-types": "^15.0.0", - "react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mini-css-extract-plugin": { - "version": "2.6.1", + "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": { - "schema-utils": "^4.0.0" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mini-css-extract-plugin/node_modules/ajv": { - "version": "8.11.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", - "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" + "engines": { + "node": ">= 0.4" } }, - "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { - "version": "5.1.0", + "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": { - "fast-deep-equal": "^3.1.3" + "isobject": "^3.0.0" }, - "peerDependencies": { - "ajv": "^8.8.2" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { - "version": "4.0.0", + "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": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "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" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/ljharb" } }, - "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.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", "dependencies": { - "brace-expansion": "^1.1.7" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" }, "engines": { - "node": "*" - } - }, - "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==", - "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">= 0.4" } }, - "node_modules/mitt": { - "version": "3.0.1", - "license": "MIT" - }, - "node_modules/mixin-deep": { - "version": "1.3.2", + "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": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mixin-deep/node_modules/is-extendable": { - "version": "1.0.1", + "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": { - "is-plain-object": "^2.0.4" + "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": ">=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": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mkdirp": { - "version": "0.5.6", + "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": { - "minimist": "^1.2.6" + "isobject": "^3.0.1" }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/moo": { - "version": "0.5.2", - "license": "BSD-3-Clause" - }, - "node_modules/mri": { - "version": "1.2.0", - "license": "MIT", "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/mrmime": { - "version": "1.0.0", + "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": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/ms": { - "version": "2.1.2", + "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/multicast-dns": { - "version": "7.2.5", + "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": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" + "ee-first": "1.1.1" }, - "bin": { - "multicast-dns": "cli.js" + "engines": { + "node": ">= 0.8" } }, - "node_modules/mustache": { - "version": "4.2.0", + "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", - "bin": { - "mustache": "bin/mustache" + "engines": { + "node": ">= 0.8" } }, - "node_modules/mz": { - "version": "2.7.0", - "license": "MIT", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", "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" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "wrappy": "1" } }, - "node_modules/nanomatch": { - "version": "1.2.13", + "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": { - "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" + "mimic-fn": "^2.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/nanomatch/node_modules/extend-shallow": { - "version": "3.0.2", + "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": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/nanomatch/node_modules/is-extendable": { - "version": "1.0.1", - "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": { - "is-plain-object": "^2.0.4" + "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": ">=0.10.0" + "node": ">=8" } }, - "node_modules/natural-compare": { - "version": "1.4.0", - "dev": true, + "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/nearley": { - "version": "2.20.1", + "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/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": { - "commander": "^2.19.0", - "moo": "^0.5.0", - "railroad-diagrams": "^1.0.0", - "randexp": "0.4.6" + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "logalot": "^2.0.0" }, "bin": { - "nearley-railroad": "bin/nearley-railroad.js", - "nearley-test": "bin/nearley-test.js", - "nearley-unparse": "bin/nearley-unparse.js", - "nearleyc": "bin/nearleyc.js" + "optipng": "cli.js" }, - "funding": { - "type": "individual", - "url": "https://nearley.js.org/#give-to-nearley" - } - }, - "node_modules/nearley/node_modules/commander": { - "version": "2.20.3", - "license": "MIT" - }, - "node_modules/negotiator": { - "version": "0.6.3", - "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=6" } }, - "node_modules/neo-async": { - "version": "2.6.2", - "license": "MIT" - }, - "node_modules/nice-try": { - "version": "1.0.5", + "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/no-case": { - "version": "3.0.4", + "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": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" + "arch": "^2.1.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/node-emoji": { - "version": "1.11.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", - "dependencies": { - "lodash": "^4.17.21" + "engines": { + "node": ">=4" } }, - "node_modules/node-fetch": { - "version": "2.7.0", + "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": { - "whatwg-url": "^5.0.0" + "p-timeout": "^1.1.1" }, "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-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", - "dependencies": { - "http2-client": "^1.2.5" - }, "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-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": ">= 6.13.0" + "node": ">=4" } }, - "node_modules/node-int64": { - "version": "0.4.0", - "dev": true, - "license": "MIT" - }, - "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" - } - }, - "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" - } - ], + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "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/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/object.fromentries": { - "version": "2.0.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", - "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": ">=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 +28134,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.7", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.7.tgz", + "integrity": "sha512-EZvAHsvyASX63vXnyXOIynkxhaHRSsdb7z6yiXKIovGXAolW4cMZ3qoh7k3VdTsLBS6VGdksGfIo3r6+waLoOw==", + "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.7", + "@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", + "dependencies": { + "@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": ">=8" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "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==", + "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": { - "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/utilities": "^2.0.0", + "postcss-value-parser": "^4.2.0" }, "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-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": { - "isarray": "0.0.1" + "@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/path-type": { - "version": "4.0.0", + "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": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/path/node_modules/inherits": { - "version": "2.0.3", - "license": "ISC" - }, - "node_modules/path/node_modules/util": { - "version": "0.10.4", - "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": { - "inherits": "2.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-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", "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", + "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": ">=8.6" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pidtree": { - "version": "0.6.0", - "dev": true, + "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", - "bin": { - "pidtree": "bin/pidtree.js" - }, "engines": { - "node": ">=0.10" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pify": { - "version": "4.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", "engines": { - "node": ">=6" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pinkie": { - "version": "2.0.4", + "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": ">=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-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": { - "pinkie": "^2.0.0" + "postcss-selector-parser": "^6.0.16" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pirates": { - "version": "4.0.5", - "license": "MIT", - "engines": { - "node": ">= 6" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/pkg-dir": { - "version": "4.2.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": "^4.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": { - "version": "3.1.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": { - "find-up": "^3.0.0" + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/pkg-up/node_modules/find-up": { - "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": { - "locate-path": "^3.0.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/pkg-up/node_modules/locate-path": { - "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-locate": "^3.0.0", - "path-exists": "^3.0.0" + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": ">=6" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/pkg-up/node_modules/p-locate": { - "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": { - "p-limit": "^2.0.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/pkg-up/node_modules/path-exists": { - "version": "3.0.0", + "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", - "engines": { - "node": ">=4" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "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-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.7", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-7.0.7.tgz", + "integrity": "sha512-+ONj2bpOQfsCKZE2T9VGMyVVdGcGUpr7u3SVfvkJlvhTRmDCfY25k4Jc8fubB9DclAPR4+w8uVtDZmdRgdAHig==", + "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.7", + "@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_modules/portfinder/node_modules/debug": { - "version": "3.2.7", - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/posix-character-classes": { - "version": "0.1.1", + "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": { + "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", + "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": ">=18" + }, + "peerDependencies": { + "postcss-selector-parser": "^7.0.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": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.1.0", - "postcss-selector-parser": "^6.0.5" + "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-font-values": { - "version": "5.1.0", + "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": { "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-gradients": { - "version": "5.1.1", + "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": { - "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-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": { - "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-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-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-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": { + "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-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": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" + "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-scope": { - "version": "3.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": { - "postcss-selector-parser": "^6.0.4" + "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-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": { - "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-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", "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=18" }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.4" } }, - "node_modules/postcss-normalize-display-values": { - "version": "5.1.0", + "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-positions": { - "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-repeat-style": { - "version": "5.1.1", + "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-string": { - "version": "5.1.0", - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.2.0" + "node_modules/postcss-preset-env": { + "version": "10.1.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-10.1.3.tgz", + "integrity": "sha512-9qzVhcMFU/MnwYHyYpJz4JhGku/4+xEiPTmhn0hj3IxnUYlEF9vbh7OC1KoLAnenS6Fgg43TKNp9xcuMeAi4Zw==", + "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.7", + "@csstools/postcss-color-mix-function": "^3.0.7", + "@csstools/postcss-content-alt-text": "^2.0.4", + "@csstools/postcss-exponential-functions": "^2.0.6", + "@csstools/postcss-font-format-keywords": "^4.0.0", + "@csstools/postcss-gamut-mapping": "^2.0.7", + "@csstools/postcss-gradients-interpolation-method": "^5.0.7", + "@csstools/postcss-hwb-function": "^4.0.7", + "@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.6", + "@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.7", + "@csstools/postcss-progressive-custom-properties": "^4.0.0", + "@csstools/postcss-random-function": "^1.0.2", + "@csstools/postcss-relative-color-syntax": "^3.0.7", + "@csstools/postcss-scope-pseudo-class": "^4.0.1", + "@csstools/postcss-sign-functions": "^1.1.1", + "@csstools/postcss-stepped-value-functions": "^4.0.6", + "@csstools/postcss-text-decoration-shorthand": "^4.0.1", + "@csstools/postcss-trigonometric-functions": "^4.0.6", + "@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.7", + "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.7", + "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-timing-functions": { - "version": "5.1.0", - "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": { - "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-unicode": { - "version": "5.1.1", + "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": { - "browserslist": "^4.21.4", - "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-url": { - "version": "5.1.0", + "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": { - "normalize-url": "^6.0.1", "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-whitespace": { - "version": "5.1.1", + "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": { - "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-ordered-values": { - "version": "5.1.3", + "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": { - "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-reduce-idents": { - "version": "5.2.0", + "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", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, "peerDependencies": { - "postcss": "^8.2.15" + "postcss": "^8.0.3" } }, - "node_modules/postcss-reduce-initial": { - "version": "5.1.2", + "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 +29669,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 +29821,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 +29857,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 +29869,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 +29894,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 +29905,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 +29938,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 +29947,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 +29966,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 +29976,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 +30016,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 +30033,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 +30066,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 +30082,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 +30123,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 +30133,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 +30153,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 +30169,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 +30183,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 +30200,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 +30218,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 +30241,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 +30260,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 +30274,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 +30283,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 +30292,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,14 +30301,18 @@ } }, "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", @@ -22437,15 +30324,10 @@ "node": ">= 0.8" } }, - "node_modules/raw-body/node_modules/bytes": { - "version": "3.1.2", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, "node_modules/rc": { "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", "dependencies": { "deep-extend": "^0.6.0", @@ -22457,29 +30339,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 +30395,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 +30425,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 +30436,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 +30449,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 +30464,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 +30552,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 +30606,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 +30630,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 +30646,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 +30681,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", - "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" - } - }, - "node_modules/react-markdown/node_modules/style-to-object": { - "version": "0.4.4", + "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": { - "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", + "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": { - "@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" + "@types/unist": "^2" } }, - "node_modules/react-markdown/node_modules/unist-util-is": { - "version": "5.2.1", - "license": "MIT", - "dependencies": { - "@types/unist": "^2.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-stringify-position": { - "version": "3.0.3", + "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-visit": { - "version": "4.1.2", - "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/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-parents": { - "version": "5.1.3", + "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" + "engines": { + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-markdown/node_modules/vfile": { - "version": "5.3.7", + "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", - "is-buffer": "^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", - "vfile-message": "^3.0.0" + "uvu": "^0.5.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-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", - "unist-util-stringify-position": "^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-modal": { - "version": "3.16.1", + "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": { - "exenv": "^1.2.0", - "prop-types": "^15.7.2", - "react-lifecycles-compat": "^3.0.0", - "warning": "^4.0.3" - }, - "engines": { - "node": ">=8" + "@types/mdast": "^3.0.0" }, - "peerDependencies": { - "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", - "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "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": { + "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": { - "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" + "@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-redux": { - "version": "7.2.9", + "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": { - "@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 + "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-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" } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/react-redux/node_modules/react-is": { - "version": "17.0.2", - "license": "MIT" - }, - "node_modules/react-router": { - "version": "5.3.3", + "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.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", + "uvu": "^0.5.0" } }, - "node_modules/react-router-config": { - "version": "5.1.1", + "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.1.2" - }, - "peerDependencies": { - "react": ">=15", - "react-router": ">=5" + "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-router-dom": { - "version": "5.3.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.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-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": { - "@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-util-symbol": "^1.0.0" } }, - "node_modules/read-pkg": { + "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": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^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": { - "version": "1.0.1", + "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": { - "find-up": "^1.0.0", - "read-pkg": "^1.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/find-up": { - "version": "1.1.2", + "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": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" + "micromark-util-symbol": "^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-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": { - "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/path-type": { + "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/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": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/read-pkg/node_modules/pify": { - "version": "2.3.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", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "micromark-util-types": "^1.0.0" } }, - "node_modules/readable-stream": { - "version": "3.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": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/readdirp": { - "version": "3.6.0", + "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": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.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/reading-time": { - "version": "1.5.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/rechoir": { - "version": "0.6.2", + "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": { - "resolve": "^1.1.6" + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "unified": "^10.0.0" }, - "engines": { - "node": ">= 0.10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/recursive-readdir": { - "version": "2.2.2", + "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": { - "minimatch": "3.0.4" + "@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/redent": { - "version": "1.0.0", + "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": { - "indent-string": "^2.1.0", - "strip-indent": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" + "inline-style-parser": "0.1.1" } }, - "node_modules/redent/node_modules/indent-string": { - "version": "2.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": { - "repeating": "^2.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": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/redux": { - "version": "4.2.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.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", + "@types/unist": "^2.0.0" + }, "funding": { - "url": "https://github.com/Mermade/oas-kit?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/regenerate": { - "version": "1.4.2", - "license": "MIT" - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.0", + "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": { - "regenerate": "^1.4.2" + "@types/unist": "^2.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-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": { - "@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-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": "^3.0.2", - "safe-regex": "^1.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/regex-not/node_modules/extend-shallow": { - "version": "3.0.2", + "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": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" + "@types/unist": "^2.0.0", + "unist-util-is": "^5.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/vfile": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", "license": "MIT", "dependencies": { - "is-plain-object": "^2.0.4" + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" }, - "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/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": { - "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-stringify-position": "^3.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-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": { - "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" + "exenv": "^1.2.0", + "prop-types": "^15.7.2", + "react-lifecycles-compat": "^3.0.0", + "warning": "^4.0.3" }, - "engines": { - "node": ">=4" + "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/registry-auth-token": { - "version": "4.2.1", + "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": { - "rc": "^1.2.8" + "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" }, - "engines": { - "node": ">=6.0.0" + "peerDependencies": { + "react": ">=16.6.0" } }, - "node_modules/registry-url": { - "version": "5.1.0", + "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": { - "rc": "^1.2.8" + "@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" }, - "engines": { - "node": ">=8" + "peerDependencies": { + "react": "^16.8.3 || ^17 || ^18" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } } }, - "node_modules/regjsgen": { - "version": "0.7.1", + "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/regjsparser": { - "version": "0.9.1", - "license": "BSD-2-Clause", + "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", "dependencies": { - "jsesc": "~0.5.0" + "@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" }, - "bin": { - "regjsparser": "bin/parser" + "peerDependencies": { + "react": ">=15" } }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "bin": { - "jsesc": "bin/jsesc" + "node_modules/react-router-config": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/react-router-config/-/react-router-config-5.1.1.tgz", + "integrity": "sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.1.2" + }, + "peerDependencies": { + "react": ">=15", + "react-router": ">=5" } }, - "node_modules/rehype-raw": { - "version": "6.1.1", + "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", - "hast-util-raw": "^7.2.0", - "unified": "^10.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/@types/parse5": { - "version": "6.0.3", + "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/rehype-raw/node_modules/bail": { - "version": "2.0.2", + "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", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "isarray": "0.0.1" } }, - "node_modules/rehype-raw/node_modules/comma-separated-tokens": { - "version": "2.0.3", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } + "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/rehype-raw/node_modules/hast-util-from-parse5": { - "version": "7.1.2", + "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/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" + "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-parse-selector": { - "version": "3.1.1", + "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" + "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/hast-util-raw": { - "version": "7.2.3", + "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", - "@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" + "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/hast-util-to-parse5": { - "version": "7.1.0", + "node_modules/read-pkg-up/node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", "license": "MIT", "dependencies": { - "@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" + "pinkie-promise": "^2.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/node_modules/path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", "license": "MIT", "dependencies": { - "@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" + "graceful-fs": "^4.1.2", + "pify": "^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/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/is-plain-obj": { - "version": "4.1.0", + "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", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "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/parse5": { - "version": "6.0.1", + "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/rehype-raw/node_modules/property-information": { - "version": "6.4.0", + "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/space-separated-tokens": { - "version": "2.0.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", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" } }, - "node_modules/rehype-raw/node_modules/trough": { - "version": "2.1.0", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } + "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/rehype-raw/node_modules/unified": { - "version": "10.1.2", - "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", - "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" + "resolve": "^1.1.6" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">= 0.10" } }, - "node_modules/rehype-raw/node_modules/unist-util-is": { - "version": "5.2.1", + "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-position": { - "version": "4.0.4", + "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-stringify-position": { - "version": "3.0.3", + "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" + "@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": { - "version": "4.1.2", + "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", - "unist-util-visit-parents": "^5.1.1" + "@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/unist-util-visit-parents": { - "version": "5.1.3", + "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", - "unist-util-is": "^5.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": { - "version": "5.3.7", + "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", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^3.0.0", - "vfile-message": "^3.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-location": { - "version": "4.1.0", - "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", - "vfile": "^5.0.0" + "brace-expansion": "^1.1.7" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": "*" } }, - "node_modules/rehype-raw/node_modules/vfile-message": { - "version": "3.1.4", + "node_modules/redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==", "license": "MIT", "dependencies": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^3.0.0" + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/rehype-raw/node_modules/web-namespaces": { - "version": "2.0.1", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "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 +31923,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 +32122,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 +32138,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 +32147,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 +32158,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 +32330,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 +32408,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 +32417,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 +32427,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 +32436,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 +32445,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 +32504,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 +32514,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 +32523,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 +32546,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 +32555,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 +32572,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 +32581,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 +32590,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 +32599,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 +32635,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 +32646,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,103 +32687,46 @@ } }, "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", "nearley": "^2.7.10" } }, - "node_modules/rtl-detect": { - "version": "1.0.4", - "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 +32748,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 +32764,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 +32842,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 +32861,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 +32900,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 +32969,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 +32990,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 +33003,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 +33027,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 +33039,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 +33064,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 +33075,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 +33109,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 +33118,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 +33194,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 +33204,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 +33251,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 +33260,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 +33269,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 +33284,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 +33370,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 +33385,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 +33410,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 +33422,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 +33478,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 +33491,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 +33500,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 +33510,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 +33526,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 +33604,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 +33639,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 +33662,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 +33691,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 +33708,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 +33719,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 +33759,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 +33773,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 +33785,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 +33797,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 +33815,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 +33824,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 +33834,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 +33905,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 +33917,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 +33927,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 +33961,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 +33971,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 +33980,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 +33997,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 +34006,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 +34022,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 +34045,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 +34057,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 +34085,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 +34098,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 +34110,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 +34130,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 +34139,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 +34148,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 +34162,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 +34185,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 +34231,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 +34251,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 +34274,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 +34284,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 +34348,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 +34373,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 +34392,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 +34405,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 +34441,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 +34505,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 +34569,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 +34582,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 +34594,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 +34604,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 +34613,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 +34622,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 +34631,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 +34640,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 +34649,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 +34663,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 +34686,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 +34760,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 +34805,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 +34830,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 +34870,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 +34895,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 +34967,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 +34982,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 +34998,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 +35010,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 +35025,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 +35042,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 +35055,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 +35079,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 +35115,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 +35165,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 +35200,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 +35215,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 +35227,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 +35264,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 +35276,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 +35302,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 +35348,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 +35364,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 +35381,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 +35391,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 +35415,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 +35427,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 +35436,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 +35451,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 +35464,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 +35492,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 +35504,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 +35513,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 +35523,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 +35543,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 +35562,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 +35592,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 +35607,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 +35620,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 +35631,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 +35707,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 +35760,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 +35818,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 +35830,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 +35840,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 +35895,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 +35931,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 +35970,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 +35984,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 +35999,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 +36011,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 +36022,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 +36031,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 +36050,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 +36064,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 +36076,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 +36101,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 +36132,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 +36276,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 +36348,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 +36385,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 +36406,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 +36421,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 +36430,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 +36452,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 +36470,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 +36492,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 +36504,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 +36552,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 +36562,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 +36576,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 +36595,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 +36624,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 +36695,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 +36717,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 +36787,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 +36812,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 +36844,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 +36862,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 +36875,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 +36901,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 +36946,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 +37138,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 +37147,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 +37156,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 +37258,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 +37289,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 +37316,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 +37331,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 +37441,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 +37466,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 +37478,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 +37487,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 +37496,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 +37505,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 +37550,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 +37577,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 +37587,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 +37598,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..d6f9c68d338 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.7.0", + "@docusaurus/preset-classic": "^3.7.0", + "@docusaurus/theme-mermaid": "^3.7.0", + "@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" }, @@ -82,5 +82,8 @@ }, "resolutions": { "react-live": ">=3.1.1 <4.1.0" + }, + "engines": { + "node": ">=18.0" } } diff --git a/src/theme/DocCard/index.js b/src/theme/DocCard/index.js deleted file mode 100644 index b6bc6df942f..00000000000 --- a/src/theme/DocCard/index.js +++ /dev/null @@ -1,88 +0,0 @@ -// Why is this swizzled? -// 1. To eliminate unnecessary text truncation on card descriptions -// 2. To allow for highlighting specific cards with a different color border -// 3. To allow for a custom description on a card -// Swizzled from version 2.3.1. - -import React from "react"; -import clsx from "clsx"; -import Link from "@docusaurus/Link"; -import { - findFirstCategoryLink, - useDocById, -} from "@docusaurus/theme-common/internal"; -import isInternalUrl from "@docusaurus/isInternalUrl"; -import { translate } from "@docusaurus/Translate"; -import styles from "./styles.module.css"; -function CardContainer({ href, children, border }) { - var className = clsx("card padding--lg", styles.cardContainer); - if (border == "highlight") { - className = clsx(className, styles.cardContainerBetaBorder); - } - return ( - - {children} - - ); -} -function CardLayout({ href, icon, title, description, border }) { - return ( - -

- {icon} {title} -

- {description && ( -

- {description} -

- )} -
- ); -} -function CardCategory({ item }) { - const href = findFirstCategoryLink(item); - // Unexpected: categories that don't have a link have been filtered upfront - if (!href) { - return null; - } - return ( - - ); -} -function CardLink({ item }) { - const icon = isInternalUrl(item.href) ? "📄️" : "🔗"; - const doc = useDocById(item.docId ?? undefined); - const description = doc ? doc.description : item.description; - return ( - - ); -} -export default function DocCard({ item }) { - switch (item.type) { - case "link": - return ; - case "category": - return ; - default: - throw new Error(`unknown item type ${JSON.stringify(item)}`); - } -} diff --git a/src/theme/DocCard/index.tsx b/src/theme/DocCard/index.tsx new file mode 100644 index 00000000000..ff046f0fa87 --- /dev/null +++ b/src/theme/DocCard/index.tsx @@ -0,0 +1,130 @@ +// Why is this swizzled? +// 1. To expand the description to two lines before truncation. +// Swizzled from version 3.7.0 +// The only modifications from the original component are in the associated styles.module.css. + +import React, { type ReactNode } from "react"; +import clsx from "clsx"; +import Link from "@docusaurus/Link"; +import { + useDocById, + findFirstSidebarItemLink, +} from "@docusaurus/plugin-content-docs/client"; +import { usePluralForm } from "@docusaurus/theme-common"; +import isInternalUrl from "@docusaurus/isInternalUrl"; +import { translate } from "@docusaurus/Translate"; + +import type { Props } from "@theme/DocCard"; +import Heading from "@theme/Heading"; +import type { + PropSidebarItemCategory, + PropSidebarItemLink, +} from "@docusaurus/plugin-content-docs"; + +import styles from "./styles.module.css"; + +function useCategoryItemsPlural() { + const { selectMessage } = usePluralForm(); + return (count: number) => + selectMessage( + count, + translate( + { + message: "1 item|{count} items", + id: "theme.docs.DocCard.categoryDescription.plurals", + description: + "The default description for a category card in the generated index about how many items this category includes", + }, + { count } + ) + ); +} + +function CardContainer({ + href, + children, +}: { + href: string; + children: ReactNode; +}): ReactNode { + return ( + + {children} + + ); +} + +function CardLayout({ + href, + icon, + title, + description, +}: { + href: string; + icon: ReactNode; + title: string; + description?: string; +}): ReactNode { + return ( + + + {icon} {title} + + {description && ( +

+ {description} +

+ )} +
+ ); +} + +function CardCategory({ item }: { item: PropSidebarItemCategory }): ReactNode { + const href = findFirstSidebarItemLink(item); + const categoryItemsPlural = useCategoryItemsPlural(); + + // Unexpected: categories that don't have a link have been filtered upfront + if (!href) { + return null; + } + + return ( + + ); +} + +function CardLink({ item }: { item: PropSidebarItemLink }): ReactNode { + const icon = isInternalUrl(item.href) ? "📄️" : "🔗"; + const doc = useDocById(item.docId ?? undefined); + return ( + + ); +} + +export default function DocCard({ item }: Props): ReactNode { + switch (item.type) { + case "link": + return ; + case "category": + return ; + default: + throw new Error(`unknown item type ${JSON.stringify(item)}`); + } +} diff --git a/src/theme/DocCard/styles.module.css b/src/theme/DocCard/styles.module.css index dbc94e507eb..9d06e2db5dc 100644 --- a/src/theme/DocCard/styles.module.css +++ b/src/theme/DocCard/styles.module.css @@ -1,7 +1,14 @@ -/* - Why is this swizzled? - See the associated DocCard/index.js for details. There are no customizations in this file. -*/ +/** this is the only class altered during swizzling. **/ + +.cardDescription { + font-size: 0.8rem; + overflow: hidden; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; +} + +/** everything below here is untouched from the original. **/ .cardContainer { --ifm-link-color: var(--ifm-color-emphasis-800); @@ -26,16 +33,3 @@ .cardTitle { font-size: 1.2rem; } - -.cardDescription { - font-size: 0.8rem; - display: -webkit-box; - -webkit-box-orient: vertical; - -webkit-line-clamp: 2; - overflow: hidden; -} - -.cardContainerBetaBorder { - border-color: #14d890; - border-width: 2px; -} diff --git a/src/theme/DocItem/Metadata/determineCanonical.js b/src/theme/DocItem/Metadata/determineCanonical.js index 7e6c8adea71..284f24f6b3e 100644 --- a/src/theme/DocItem/Metadata/determineCanonical.js +++ b/src/theme/DocItem/Metadata/determineCanonical.js @@ -12,7 +12,7 @@ * @property {string=} canonicalId * * @typedef {object} Metadata - * @property {string=} unversionedId + * @property {string=} id * @property {string=} permalink */ @@ -108,13 +108,13 @@ function determineCanonicalFromId(canonicalId, currentPlugin) { */ function determineCanonicalFromDoc(currentDoc, currentPlugin) { const { - metadata: { unversionedId, permalink }, + metadata: { id, permalink }, } = currentDoc; const match = currentPlugin.versions .filter((x) => x.name !== "current") // exclude `next` .flatMap((x) => x.docs) - .find((doc) => doc.id === unversionedId); + .find((doc) => doc.id === id); if (match) { if (/(optimize|docs)\/((next|[0-9\.]+)\/)/.test(match.path)) { diff --git a/src/theme/DocItem/Metadata/determineCanonical.spec.js b/src/theme/DocItem/Metadata/determineCanonical.spec.js index 6239fe86b8c..7c986ec2896 100644 --- a/src/theme/DocItem/Metadata/determineCanonical.spec.js +++ b/src/theme/DocItem/Metadata/determineCanonical.spec.js @@ -185,7 +185,7 @@ describe("determineCanonical", () => { beforeEach(() => { currentDoc = aCurrentDoc({ metadata: { - unversionedId: "components/components-overview", + id: "components/components-overview", }, }); @@ -314,7 +314,7 @@ function aCurrentDoc(specs = {}) { return { frontMatter: {}, metadata: { - unversionedId: "a/doc/id", + id: "a/doc/id", }, ...specs, }; diff --git a/src/theme/DocItem/Metadata/index.js b/src/theme/DocItem/Metadata/index.tsx similarity index 77% rename from src/theme/DocItem/Metadata/index.js rename to src/theme/DocItem/Metadata/index.tsx index c204a2a4d92..c71ecfe09d4 100644 --- a/src/theme/DocItem/Metadata/index.js +++ b/src/theme/DocItem/Metadata/index.tsx @@ -1,24 +1,29 @@ // Why is this swizzled? // To override the `href` of `link rel=canonical`, so that we are properly // canonicalizing our content for search engines. -// Swizzled from version 2.4.1. +// Swizzled from version 3.7.0. + +import React, { type ReactNode } from "react"; +import Metadata from "@theme-original/DocItem/Metadata"; +import type MetadataType from "@theme-original/DocItem/Metadata"; +import type { WrapperProps } from "@docusaurus/types"; -import React from "react"; import Head from "@docusaurus/Head"; import { useAllDocsData } from "@docusaurus/plugin-content-docs/client"; -import { useDoc, useDocsVersion } from "@docusaurus/theme-common/internal"; +import { useDoc, useDocsVersion } from "@docusaurus/plugin-content-docs/client"; import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; -import Metadata from "@theme-original/DocItem/Metadata"; import determineCanonical from "./determineCanonical"; -export default function MetadataWrapper(props) { +type Props = WrapperProps; + +export default function MetadataWrapper(props: Props): ReactNode { // Gather some context... const currentDoc = useDoc(); const currentVersion = useDocsVersion(); const allDocsData = useAllDocsData(); const currentPlugin = allDocsData[currentVersion.pluginId]; const { - siteConfig: { customFields }, + siteConfig: { customFields = {} }, } = useDocusaurusContext(); // From the context, identify the proper canonical diff --git a/versioned_docs/version-8.3/apis-tools/tasklist-api/tasklist-api-tutorial.md b/versioned_docs/version-8.3/apis-tools/tasklist-api/tasklist-api-tutorial.md index 21c5449ffcb..d78fc5907d8 100644 --- a/versioned_docs/version-8.3/apis-tools/tasklist-api/tasklist-api-tutorial.md +++ b/versioned_docs/version-8.3/apis-tools/tasklist-api/tasklist-api-tutorial.md @@ -250,9 +250,8 @@ export class TasklistModule implements OnModuleInit { logger.log("Tasklist credentials fetched"); axiosRef.defaults.baseURL = config.get("TASKLIST_API_ADDRESS"); - axiosRef.defaults.headers[ - "Authorization" - ] = `Bearer ${credentials.access_token}`; + axiosRef.defaults.headers["Authorization"] = + `Bearer ${credentials.access_token}`; axiosRef.defaults.headers["Content-Type"] = "application/json"; setTimeout(this.onModuleInit.bind(this), credentials.expires_in * 1000); // we need convert minutes to milliseconds } diff --git a/versioned_docs/version-8.3/components/best-practices/development/writing-good-workers.md b/versioned_docs/version-8.3/components/best-practices/development/writing-good-workers.md index 148d7adc91e..aa9479890c4 100644 --- a/versioned_docs/version-8.3/components/best-practices/development/writing-good-workers.md +++ b/versioned_docs/version-8.3/components/best-practices/development/writing-good-workers.md @@ -62,7 +62,7 @@ If performance or efficiency matters in your scenario, there are two rules about 1. Minimize what data you read for your job. In your job client, you can define which process variables you will need in your worker, and only these will be read and transferred, saving resources on the broker as well as network bandwidth. 2. Minimize what data you write on job completion. You should explicitly not transmit the input variables of a job upon completion, which might happen easily if you simply reuse the map of variables you received as input for submitting the result. -Not transmitting all variables saves resources and bandwidth, but serves another purpose as well: upon job completion, these variables are written to the process and might overwrite existing variables. If you have parallel paths in your process (e.g. [parallel gateway](/docs/components/modeler/bpmn//parallel-gateways/), [multiple instance](/docs/components/modeler/bpmn/multi-instance/)) this can lead to race conditions that you need to think about. The less data you write, the smaller the problem. +Not transmitting all variables saves resources and bandwidth, but serves another purpose as well: upon job completion, these variables are written to the process and might overwrite existing variables. If you have parallel paths in your process (e.g. [parallel gateway](components/modeler/bpmn/parallel-gateways/parallel-gateways.md), [multiple instance](components/modeler/bpmn/multi-instance/multi-instance.md)) this can lead to race conditions that you need to think about. The less data you write, the smaller the problem. ## Scaling workers diff --git a/versioned_docs/version-8.3/reference/dependencies.md b/versioned_docs/version-8.3/reference/dependencies.md index 3dd66bdb991..b685c1bc2a4 100644 --- a/versioned_docs/version-8.3/reference/dependencies.md +++ b/versioned_docs/version-8.3/reference/dependencies.md @@ -1621,7 +1621,7 @@ All of these libraries are required for core functionality. - [chart.js@4.4.0](https://github.com/chartjs/Chart.js) (MIT) - [chartjs-plugin-datalabels@2.2.0](https://github.com/chartjs/chartjs-plugin-datalabels) (MIT) - [chokidar@3.5.3](https://paulmillr.com) (MIT) -- [chrome-trace-event@1.0.2](https://github.com:samccone/chrome-trace-event) (MIT) +- [chrome-trace-event@1.0.2](https://github.com/samccone/chrome-trace-event) (MIT) - [classnames@2.3.2](https://github.com/JedWatson/classnames) (MIT) - [clsx@1.2.1](https://lukeed.com) (MIT) - [clsx@2.0.0](https://lukeed.com) (MIT) diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-id.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-id.api.mdx index df90b3567c2..b1d11722cbe 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-id.api.mdx +++ b/versioned_docs/version-8.4/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: eJzlV1tv2zYU/isCn7bOiZwuHQpjGOAuSqHVsI3YaQcEQUFLxzEbidRIyqkn6L/vHOpix5a9bE8b+iSS534jPxXM8gfDBnfsCiJhhJKhNJbLCNh9j6kMNLd0GLMBW2zw02MZ1zwFC5rECiZxg0RBJCFxlXG7wnUMJtIiI2k8DGNPLb24tuGJxkiPafgjFxrQgNU59JiJVpByNiiY3WSk2Vgt5AMry3tiNpmSBgzRX/f79HluaJZHERiDiiMlLUhLLDzLEhG5SPwvhviKQztq8QUiSwFqituKygoGduhLjz3CZudcoKkH0Ci8VDrltjr66ZI4MVILhzp6DGSeUuavh+EouMKD4ONwdDucu/Xt+MN48mnsVrNp8Gt4HeL5PeqDNU9yF8tVp+JnLNdcJLnu5sI4KVVXsBRSEPOHF8dUiza98nLBpgPC7qw25K1Pf8M4dt13guEj9qmoKn7SvR9f70rNHevxkl1hQWbhZPx5Pnw3CpAwCufBzXD0Ofh9ehPMiLRXuW1FqYbYx3liT9UO4lBmuTU7PFxrvqEps5Caf9248ljGyG4XBUlW2ISO9u8I56LjaL2e5Pa/4TYmOU/gSPs4kozh64v64kQGqnArFpBc2k6DJxQgkciXXXdZKDE4EXt0RYKxx+80zOAigfSHf3q30dWUmxfORooDzx+6U93e511E2zlMu0kJtFa6zcTFYSZuJc/tSmnxJ8TP0/DKf/X/j/jyMOKbquZA1Tcq1xF4UllvqXIZfxuN8KZrJIbT0NsJ2AMn8A3kg4AERLkWduNg1wK4Bn3mYMgdPikFpkA9CnC7+3349R7sIfjyFhvPwTZEcytFCO8BXCoIwA2Yv77wG5mzRsb4hYhLRs7odQMBc50gf1Eltxz4frFSxpaDIlPaEvOaa8GxEC6jRKsKu+TuEWSJinjijvf9nq/AIwLd/gQgLe6pBSrr5w6KoI3n6t723/Y7NRHrES3bxtjqWVmbdeqpmDs1OZTaFGpGfFXQTXG2r2ImCDU1DxubTBE/zIOzWYseHJiu5dDD3YK3WmoXnUO0r5hYw33d9Opvn+aur4RcKide99fEAXzwpvkCZ4ZCOQxYedxBavxYsQaPy9iLVJolQLdTjQTbpqKV16jFWfFShUBOUWc7SatVTp2wUspWmIpGF1WTW1UjUVAGu+jp6ek84ileePwcDVIS0ElA+E+8dd5G9UlvTzhWkWmlhXJ7X8MSNKCXfq3I+A5CNBiRXZz3z/tVVxmbcrlj6PQIPctZWx4LX62fJRxLWdYOFvV43bH1BdsCzu2A4eEAVWIbVYNyx4piwQ3c6qQs6RjfBe2GfjtXbgpjYWiNc7zkiYEDn9orkn13U/9zfe8d/y/rDKFpXrlhLfJirP4bIuhWErpdAY+xC8mpijDEBsrsjsjBDxmNTXsNvQ/myEsv/k4u91rbae905+d3jsGbq0eQv7TOWdqSf2X5F5kpGoc= +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.4/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
- -Unauthorized - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-1.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-1.api.mdx index 694a04725a1..b39c63b97e6 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-1.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-1.api.mdx @@ -5,55 +5,154 @@ description: "Get process instance by key" sidebar_label: "Get process instance by key" hide_title: true hide_table_of_contents: true -api: eJzlVt1v2zYQ/1cIPrWdY9ldNhTGMMBL1MJLmhix2z0EwUBLZ5uNRGok5cwT9L/vjvqwYyuB9zjUDxY/7vt+x7uCO7GyfHTPp0ZHYO1EWSdUBPyhx3UGRjip1STmI77YXsH2zyHv8UwYkYIDQ4wFV7jB+0fY4p1UuMyEW+M6BhsZmZEEPERuppcsq/Qw2SjqcQN/5dIAKnEmhx630RpSwUcFd9uMREvlYAUGSZfapMJVRz+f87J8IHabaWXBEsf7wYA+z1XP8oh0In+kUZRyRCKyLJGR9y/4ZomuONasF98gcuSzoWg4WWkhX08xz/OR6q8YLFnpeJXpx/fEtMhS1eQj3uOxzki18mKFQTeuTjfD039M9NONjqFJ8un8SG/cpXDQaQ2o+MU75Oy6IaY8JeCNL+aTryEeXNx+nl6H8/CS1uObi/Aalw+7GF7CUipJ+Trdbky2UO7VIB4A38vmkTRRngjz5uD2rRcqXUKSDkumxF+Pn3chcKI2IpExI6iDdS8jEX1dJJD+8F8RSWHO7Yn4StFqserOV1uXXZfVwdHFXkxCY7RpIzE8jsQXJXK31kb+gwX/LAzvgnf/f4/Pjz2+q3IOlH2rcxMBU9qxpc5V/H0A4aeukhhPJ2zPYQae4TuIBz2KEOVGuq3vnwvAd8ic+Z5yj+9dgSHQjxL87uGwjX4Cd9RD2WLLqvaLbXmtqVuvwIeCGvGIB5thUPOcNTw2KJCl5GSM2TS9PDcJ0hdVcMtREBRrbV05KjJtHBFvhJECE+EjSndVYpciTyiSiY5E4o8P7Z6vgdEFTQs0BzjcEwQq7X3/HqOO5+I+DD4MOiUR6QtSdsDYyVk7l3XKqYg7JfnZoknUjOgqp5vktMkWmbzywa8HodtpeDeeh2ezcDab3N40Q1HNR+19L+GtlNpEbxDtKyLeUH9ssPr7H3OPK6mW2rPX+Lr1wxqwab7AmiFXjh3WTPhBCD9OboAJFbNIp1kC9DodoopWrBGLtcJSje1XE7I9pzM6JySstXZVS6fSRdFkVgUkcsoiip6envqRSPHBE31USEFAIwGHNqKt43Zdn/QOmGMd2ZZbar8PDCwBu3cEQS3IBiR108xZfNgf9AcVqqxLhdpT9HoJPYtZmx4Hf7sgSwSmsqwNLOryuuebIW+nlF2B4dmIRCKMqkK550WxEBa+mKQs6Rj7gvFFv6srX4WxtLTGOl6KxMKRTe0Tyd/c1bPzW/byfN3pQgNetfVVneS0w6VHpf8vafZag4gRhmRVdTNGBGVuj+dojqa6ad+hT+Ecaanl7wXzANteeqc9v/zmCdhcP4L6tbXO0ZbsK8t/AczAXW8= +api: eJzlVktv20YQ/ivEnJKUNuXELQLeDJsOVLu2YCnJwRCK1XJkbUzuMrtDuQLB/17M8mFZog31WOQicR/z+uabnamAxIOD+B4m1kh0bqwdCS0R5iGYAq0gZfQ4hRgWmyvc/H0CIRTCihwJLQtWoEWOEMMjbiAEpSGGQtAKQkjRSasK1gAxXOEmMMugaOwEqjMUgsWfpbKYQky2xBCcXGEuIK6ANgWrVprwAS2EsDQ2F9Rs/XEKdT1ncVcY7dCxxMfRiP9emp6Wkm1CCNJoQk18RRRFpqSPL/rh+F61b9ksfqAkjtkyGqQaKxzrIe55OTb9Da1TjY03hT59ZKFFkesuH+mWjCOr9INXKyxqujrcDX//MjNPNybFLsmHyzsSli4E4aA3qNNXzxwNnrBQmTPxzs5n428JhHB++9fkOpklF/x9dnOeXCcXMH/G8AKXSivO1+F+E2qh6U0Qd4jvdYNUVpaZsO92Tt97pYoy1rRbMnVd1yGcDjFwrNciU2nAVEdHrzOxsGaRYf7bf2Ukw1y6A/mVo3PiYThffV0OHTYbewdbmCTWGtsj8WkfiUtjFypNUb/E4EP04f8f7ul+uHdNwpFT70xpJQbaULA0pU5/DRb8PlQPZ5NxsBVwgF7gF8CDX0SUpVW08c1zgcKiPfIN5X5ehxVIYx4V+tV8t4d+QdproMFiEzS9N0daGW7VD+ih4C4cQ7Q+iVqZo07GRdUjbmpgZ+y6a+SlzSCGqgG3jqOoWhlHdVwVxhJfXgurxCJrsOWzJrFLUWaMZGakyPz2rt+zFQZ8wKMCDwG0woAp0Fg/9o+xsTvqPo8+jwY18dVXtDwT41nPiqgY1NNcHtTkB4suUVO+1wTdJadPtijUlQe/nYJuJ8nd2Sw5mibT6fj2ppuIWjnu7VsJ77W0LnqHeN1cgu72ZcfVP7/PPK+UXhov3vLr1k9qGEzKRaYkh7IfsAmEn4ICIUmtMRA6DaTJiwz5ddplFX8FndqlsUFutCLDzPaSZE3JTFgZQ00/59IV0uewIRIH5eIoenp6OpYiL3UqjqXJGYRMSdTO49jidt3uhDvCqZGul1bGryOLS7SoJUatIhex1nU3ZMHJ8eh41LDKUS70lqG3S+gFZn16CP+hqMiE0qzTO1i15XUP6xPoR5TnAoMQYlY5D9tCuYeqWgiHX21W17z9s0Tri/65rnwVpsrxdwrxUmQO93zqn0h4d9cOzu+D14frwRA68uqNr+qs5BWEzVzrf2sevFYoUrTeq+bkTEosaEtmb4jmuunfoS/JDEIQJQPVg7nDba990J+qam7MzCPquu7dI16zg3X9L7FMXXI= sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.4/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
- -Unauthorized - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-2.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-2.api.mdx index 540a4cc736b..67598cdd152 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-2.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-2.api.mdx @@ -5,55 +5,145 @@ description: "Get process definition by key" sidebar_label: "Get process definition by key" hide_title: true hide_table_of_contents: true -api: eJzlVltv0zAU/iuWn7h0TTcGQhVCGqKgAWLTWsTDNCE3OW3MEjvYTkeJ8t85x07SWxjwiHhpY/tcv/MdH1fciaXl42t+aXQM1r6GhVTSSa34zYDrAoygxXnCx3y+fg/rLyd8wAthRA4ODKlWXOECz29hjWdS4WchXIrfCdjYyMKbG3PUZnrBiuCJJRtXA27gWykNoBtnShhwG6eQCz6uuFsXZFwqB0swKLrQJhcubD075XV9Q+q20MqCJY2T0Yj+dp1Py5i8on6s0ZRyJCKKIpOxzzD6akmuOvSs518hdpS1ITycDF4o2z8Jb9DA04laZ6Ra0sEKAZTB671mnpyQ9LzIVVMlKkePPUxLKNd7SKfSZbR1WOm6pvPTPtjO1UpkMmFUH7Du1/AhOPMM8sd/C6N1wpX2DyHIMW6x7AdTKjSl4v7DsHEfKhNjtOmQOD5E4pMSpUu1kT+QpTswPIoe/fsZnx5mfBVqDlR9q0sTA1PasYUuVfJ/EOFpX0ucXZ6zrYQZeIX/AA/ctBCXRrq1v/bnIAyYI38RXt/Ugwoh0LcS/Opm//Z/C67n6mfzNQtzA+dJqmnMLMGDQRNkzKPVcdRoHW20bFShUs0pILNqx1BpMtSoAsD1OIqqVFtXj6tCG0fCK2GkwGJ4VOksFHchyozQzHQsMr+9H/ssBUYHdJPTCHO4JhoE70MCknzsmns+ej7qtUSiv7CyIcfGTupc0WsnCPda8kOxLdaU5ELSbYG6gotCvvfwNzP84nJydTabHE0n0+n5xcd2njd6NIW2it5ZaUL0AdE6CPFW+k3L13efZ55bUi20V284duHfGcAuyzn2DaVymLBmwk9w/HNyBUyohMU6LzKgG6plVkt2+mKtWewXlmukjiZ2e01ndElMSLV2xPjQvmiawgpEoqQssuju7m4YixwvPTFEhwQCBgn42iDZBrcPzc5gTznRse20pfbryMACDGCUUWPIRjvPAX48HA1HgVXW5UJtOfpdG+2g1hXIwXcXFZnAYtZNiFXTYtd8dRwun/0mw90xGUUqhWa55lU1FxY+mayuaRvng/HNv+kt34mJtPSN3bwQmYWDqLqrkj+4ah5+D9l9z8PeNFoKq7Xv7aykFX56bvrfGm8lnoJIkIwUVzg5Qx4Vbkvn4BlI3dPdR28nM5Sl4b8F6B7DvfXeeF688gJspm9Bveyic7Sk+Or6J5i58us= +api: eJzlVt1v2zYQ/1eIe1o7xXLSbCj0FmBukWVYgtjDHgKjoKhzzEYiVfLkzBD0vxdHSnZsq1n3OPTFFnnfv/tiCyQfPWQPcOesQu9/w5U2mrQ1sEzA1ugkH64LyCDf3uD20wUkUEsnKyR0LNqCkRVCBk+4hQS0gQxqSWtIoECvnK6DugxucCvsStTRkij2phJw+KXRDgvIyDWYgFdrrCRkLdC2ZuXaED6igwRW1lWS4tWvl9B1Sxb3tTUePUtcTKf8d2h83ii2CgkoawgNMYus61KrEGH62TNfe2rZ5p9REUftGA/S0QpH+z3uJT08O1ZPTptHJmzQeR2tvqrm3QVz53Vl+ixxOkb0ERppaJTIVE0lX51muuuYfjkG27XZyFIXgvODnr4NX+1sXmL183+F0ZOkxn8nBBV6Lx/HwdTGkzRqnBgvXkNl5px1OyTenSLxwbpcFwWaQwzepm///+FenoZ7HxOOnHpvG6dQGEtiZRtT/BhV8MtYP1zdXYsXAQsMAj8AHl0CHlXjNG3DzM9ROnRnYQo+LLukBWXtk8ZwWh6P/o9II3Nf5FsRl0aFtLa8Yx4xgMHrI4N0c572Umd7KZ+2T7jtgB1ym2EHNa6EDNoIcJelabu2nrqsra0jZt5Ip2VeRnyZFpO7kk3JaJZWyTJcH/u+WKNgAo9x3l+0RsFlEK1PGEi2caju/fT9dFQTs35Dy7449nrWRPWonsg8qilsxCFZc+aLQQ8J2iVc1vomwN8v8Nu72f3VYnY2n83n17d/Dsu8l+MV9CLpOy29i8EhPkcmGLg/DPX6+9+LUFvarGwQ72vsNjwyUNw1eakVh3IasBUyrG8hFekNCmkKoWxVl8gTaqisodj5SwxqV9aJyhpNlqs7SJKzDVfC2lriio/tK1XIYSwkDspnafr8/DxRsmpMISfKVgxCqRUaH3Dscfujv0mOhAur/E5a23BOHa7QoVGY9op8evAWgPPJdDKNVeWpkuaFoX9rowPUdgki/IfSupTasNbgYtu32ANszuPwOW4ySCBjpcukb5YHaNtcevzLlV3H118adKH5970VOrHQnr8LyFay9Hji1W5Uwk/3/avvjXjtbTgaxlDCZht6u2z4BEl8loXfbtklsEZZoAt+RcqVUljTC5mTNyB3z24efZwtIAHZMFg7QI8qPGgf9adtI8fCPqHpup17xGd2sOu+AlAs8u4= sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.4/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
- -Unauthorized - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-3.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-3.api.mdx index e72644d3ef4..74a73c39cd5 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-3.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-3.api.mdx @@ -5,52 +5,168 @@ description: "Get incident by key" sidebar_label: "Get incident by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v2zYQ/iuCPm1dGjltNhTGMMCN2UyNIxt+SYsFgUHL55iJTKok5cwT9N93R73EidW1+Tj0iy0e7/2e413uW35r/O61H8pYLEFa/+bIVyloboWS4dLv+ovdBezmb/0jP+Wab8CCJoncl3jA+3vY4Z2Q+Jlyu8bvJZhYi5Q0IBGlPbXyRG3gyNfwJRMaULnVGRz5Jl7Dhvvd3Le7lFQKaeEWNLKulN5wW5J+O/WL4obETaqkAUMSbzod+ntqcpLFMRiD8rFCVWgUWXiaJiJ2cQV3hvjyQ8tqcQcx+ZhqyoIVpRWK8Xvcc3Jkug8rIQXZunipaCiN5TKG7xcsWRpWY7WQt8gJMttQbWfRZMTOwg8h6yN1Fl1Ew08RfoXD+WVvNAqj8zkbj4djJH0cvp9Hw/mYTcchmyDhbBj1w2k4jBoW9nk67p1N51e9wYw11LPeYMD6czZglyyaNuRZ9Gcv6rsboszZFd4i/ZJNJr1zNp+Ef6GOz2eM9Z1zlZo+ujvZN/pIILO9PYduMAEbTBu/bckB3sUaXM2nYtPOgNm2/5k+DDa8YkgYs8lwcOX8HDFMS3TurN+pxQtqBZJLS4114ArdCpsQqenGoiDyaRvIQ7nliVh61E1g7NfBjrhaJLD55aWgp8Rk5ptxvX3jf6MEokJ062U7ePeTwbRWusnEyWEmZpJndq20+AfflCdpeBW8+v9HfHoY8bisOVD1jcp0DJ5U1lupTC5/DCD82tYSvVHo7QXsgRP4AfJBzxjEmRZ250bzArgG/dqNrWt8o3JMgboX4E43zyf0OdhmPHuLnVdOdJz0a0ULwC24FNBs7/rB9iSoeU2QI2vhk3G9rdeCTCfIl5fJLLpBkK+VsUU3T5W2xLzlWnBMvMsg3ZWFXPEsocwlKuaJIz/3c7oGjy5o8aCVwuKZSl5aP3YzFG08Vfeu867TqolYv6LlEQiPetbWpq16SuZWTW5dqQszIb4y6LoYTXF5Ki5c0qudajhi496UvZ7gmMRRV+9XlRx6uF/gRkvlonOIziWTX3N/qLH58dPU4UjIlXLiFZ6Gbu8Db5QtsEcolMOAlcfdboV/VmzB43LpxWqTJkCvUbXCeDWw6cur1WJveBuFW5EiJDtJq1VGSFgrZcuhS62KqsmtEkgUlEEUPTw8HMd8gw8cP0aDlAR0EnAPJN4qb4OKcvRMeKli00gL5c6BhhVoQC+DSpEJSCsBuQz25Lhz3ClRZeyGyz1D7S3zJFdNWSz8bYM04VjConIsr9rp2t+euOJWDYXfXVKFsCkb49rP8wU3MNNJURAZ333tmvqxj1zXLYWhb+zXFU8MHPjSPIH+T+Nq/f7ZO1zNW12uQSp3rnuTjE746dDnfgvag9bAlwg38qa86SFSUrsnc7CCU38078w5o82QRvle8p5h2Glv9ef3947Bm6p7kH803lk6kn9F8S9GVljK +api: eJzlVt1v2zYQ/1eEe9o6NUqabCj05tlMpiaRDFtJiwWBQUvnmIlEqiSVzhD0vw9HycqH3bV9HPpii8f7/N0d7xqw/M5AeAORzESO0sKtD6pCza1QMsohhOXmHDeLY/Ch4pqXaFGTRAOSlwghPOAGfBASQqi4XYMPOZpMi4o0QAjnuPHUyhNbAz5o/FwLjTmEVtfog8nWWHIIG7CbilQKafEONfiwUrrktiP9cQJte0viplLSoCGJd4eH9PfS5LzOMjQGfMiUtGQ0bIBXVSEyF1dwb4iv2bWslveYkY+VJhSs6KxQjN/jnpMj0xNcCSnI1vmPikbSWC4z/H7BjmVgNVYLeQc+oKxLyu1VPJ+ycXQasQn4cBWfx8nHGHyIksXlaDqN4rMFm82SGfjwIflzESeLGUtnEZuDD+MknkRplMQDC/uUzkbjdHE9urhiA3U8urhgkwW7YJcsTgfyVfzXKJ64G6Is2DWLU/Dhks3nozO2mEd/swX7NGZs4pzr1UzYOJo/N/pEILOjFw6dJrPLRZyki9PkKp7AbetDicbwuz2gtD5kGl0RpKLcz2Ast/+J52icRteMoojOZqPUOT5j8+Ti2n1OWTyJ4jPnyL1a/kAeUXJpqel2vKJbYQsiDZ3atkQ+2dcAkXzkhcg96jQ09uuNUGm1LLD87UcbgjCqzTfjOn4H38iG6Kt97+X+wn4OBtNa6QGJ410kTpVeijxH+RKDN8Gb/3+4J7vhzrqEI6XeqFpn6EllvZWqZf5zVMHv+/phNI28ZwF76AR+AjzoOcOs1sJu3MxeIteo37p5dnPb+g1kSj0IdKfb16P7DO0wt73lxutGfYl2rWgzuEMHAQ39EILHo2DLa4LmATctkHH9uN0Xal1ACE0HZhsGQbNWxrZhUyltifmRa8GXRYcl3XWJXPG6IOQKlfHCkV/7ma7RowvaSGjXsGv0KOWd9QM3XJV+pe794fvDvZqI9StangrhSc/a2mqvno55rya3x2wTMye+LuhtMobk8kqcO9D7ZSuZMpo4b+dsTuNwu3j1cq3/IsGDlt5F5xCdOybYcp9ua/PDx9TVkZAr5cT7ekrcQojetF4WIqNQdgNWHndLl8czKx7R4zL3MlVWBdJr1O823raw6cvbql0p7ZVKCquokp2k1aqmSlgrZbvhS63KM5fDrpAoKBMGwZcvXw4yXtYy5weZKgmEQmQojcOxx+2ip/ivhHOVmUFaKHcONK5Qo8ww6BWZgLRSIXfBHh0cHhx2VWVsyeUzQ/tb5gVWQ1os/mODquBCki7nWNO30w08Hrnk9g0FPoSk6tbvG+MGmmbJDV7pom2J/LlG7Zr6qY9c1+XC0HcO4YoXBnd8GZ5A+GXW7+W/ers7+16Xt0UqN657i5pO4HfrsvttaQlaI89RO2+6m1GWYWWfyezs5tQfwztzxmhl5DUBM4D3qoad9r3+NE3HkaoHlG07uGfpTA627b+EYGBZ sidebar_class_name: "get api-method" info_path: versioned_docs/version-8.4/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
- -Unauthorized - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-4.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-4.api.mdx index b16abfc1b01..11af5e52995 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-4.api.mdx +++ b/versioned_docs/version-8.4/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: eJzlV21v2zYQ/isCP21dEiddNhTGMEC2lVSLI3uSnKwIAoOW6JiNTGoU5cwT9N93R73EjpU2/Tj0i83jvR+fI08F0fQhI/07cpHIJyFj5opMUxExcn9EZMoU1VwKNyZ9sthese38nByRlCq6Zpop1CyIAAL4j2wLPC5gmVK9gnXMskjxFC3AJmhbcmkta0cWbzwdEcX+zrli4EWrnB2RLFqxNSX9guhtira50OyBKRBdSrWmutr69ZyU5T2qZ6kUGctQ4/3pKf7t+w7yKGJZBvqRBFNCowhN04RHJsHe5wzlikPPcvGZRRqTVlgOzSsvmOxbwjN66Lqp69W3Ko7YkguOQb5dFVwpPaKa7chnWnHxgFwm4ld5eDoewiD+ItszR94hwEXEY6jv22OtRF6awijzNQJz5gVTZ+heuM4Idqf+ZOgEAayC2WD+TDk3jhfO9/eC0PbDueEA5Xqh4187I9cOnfnQDocfu1nhR39y27IGk5k3sv1P7Ybjjdp14Pg37hBU7OAKSN8ZOu5NS86A3ayvbW9mjxuq/nP+Go5nAWpcguNb+5MJ5XBvavv2eOyMd7aqdAd24Ix2dgPnz5njQUAX48ktep2NQ3fuelAI3B1MRig1BGNzexi6N26I9AD8eVCxuT8bt8EHQ9+dhi2FWTdpeVfe5NYj9xXOunD0fHjGjYNOJ9fTsROaM8Riu56NxP0OZHbsLKRMGBUGHkxQoTvhiFyuE9y6aGDb3ClliezzrrvAFRua8NjCS4dl+vU7ARpwkbD1T996N2BV8uyr8P/5Pea3hhanD681U51NF7O7b3aL4iglVVuJs8NKzATN9Uoq/i9cvXtleNd79//P+PwwY786c4ann8lcRcwSUltLmYv4+wDCL10tYU9daydhixmF76AeeIexKFdcb80os2BUMXVsXvc7uJwKKIF85MxQ9y8nmkumzThj7c0z1mJrVbMQzEgriaPTAzPFwKmoT3qbs14zBB03SlmvAJ2SYDxq00xWuUpAoajqW/Z7vWIlM132i1QqjcIbqjiFszBFRV51tkuaJ1jMREY0MdsvQw9XzEIGzm44lWmgEQWV9xMzf4CPfXMfTj+cdlpC0VesPGPj2c5K67TTTiXcackMes1ZBShXJd2cT3veNOVXpvr1WDqZOj68NccBPHHuxGtG1FoPItw989ZKHaIJyLxIRog00hcNXP+4DQ20uFhKo15DbGJGZ2ZN8wW0DaZymLC0qJlK4U/zDbOoiK1IrtOE4QVVj38trHBlNWahXay1hLFQIriNplYyRySspNTVI4zdC6YxrApImFQGKHp6ejqJ6BruPHoCDrEIECSDCRpl67qN652jF8qxjLJWm0tD9xRbMsUgyl5tKOuhVQRylezZyenJaYWqTK+p2HH0tS7aq1p7QJr9o3tpQrmZEkyIRd1hd2RzRqpZdb/HYLOPNgFJVa/ckaJY0IzNVFKWuA2vgzKt/9xaphFjnuEaenlJk4wdBNVelOQHv/6W+dH6wgdPZxINgMXWdHaSIwVLg0zzW+K8tGI0BihiWBXHBhSlekfn4MMGe6e9jC4dnF3x5d+duPbxbax3xvPbwAhYoXxk4vc2Oo0kxleW/wHJp8lb +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.4/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
- -Unauthorized - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-5.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-5.api.mdx index 81943d341bf..e191bf600e4 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-5.api.mdx +++ b/versioned_docs/version-8.4/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/lcIPq2dazldOhRGMSDDvMLr0ASxiz0EwUBLZ4uNRGrkyakn6H/fHSk5dqx02ePQF1sk7+d33/HYSFQbL6c38hdItdfWXMNftXZQgkEvb0fSVuAU0sE8k1O52n2A3Z9v5EhWyqkSEBxrN9LQgs7vYEdn2tBnpTCn7wx86nTFFmiTtIVdi6xzJtyht5HsluQJXQ0j6dMcSiWnjcRdxfa1QdiAI9G1daXCuPXjuWzbW1b3lTUePGu8nkz479j/ok5T8OwqtWTKIIuoqip0GpJMPnuWa04929VnSJETdwwJ6uhFZwcyHp02G9mOAg7PiZrxOcV9Pmw0YjxwsKUq6Bj3Vz3+8JqlCSVbuxQ+PmWOcFEGB4PgU40Fbw0Spm1Z5HwI+rnZqkJnoeTg8ekSEMCrAsrv/2spPCqs/TNBKIkFajOcvzZkyqRPgBM2vgbMzDnr9kicnSLxyagac+v038T0IxheJi///xmfn2Z8HWsOXP1IPmEsirWtTfZtEOHNUEtcXM3FQcICgsI3gAdtekhrp3EXpscKlAP3KtyaN7ftqCEI7J2GsLp9PETeAw5PELHaiTiBaDLllgfWBgIePIumMtmeJZnLkoaEWskxuG0/wGpXkEQTMW2nSdLk1mM7bSrrkIW3ymlF+Acg+SzWc63qggEsbKqKsP043GUOgg/4+ubhh7TmykfvY8aOfRybezt5Oxm0xKJPWHngw4OdHLEatBOFBy2FWdrXZ8FyMem+Jvsaq0p/CHB30//yanZ9sZy9WswWi/nlx/4l0OlRhId13lvpQgwB8ToKyV76156iv/2xDHTSZm2Dekery/BCAXFVr6hVOJXThK1QYfDTH+otCGUykdqyKoAvJWqXcNjzm79Eb5ZaRJTWaLRM6KCJztbMhNxaZJLHjiXTHFYkEifliUX39/fjVJV0z6kxOWQQKEigRwrLdrj93u2MHilnNvV7bW3DOnGwBgcUZdIZ8snRG0CejSfjSWSVx1KZA0fP6Jwj4PY1QviCSVUoqmfbRdl0XXUjt2es5/gmn7IRYk/sjxvZNCvl4ZMr2pa3aQq40OIP7RSaL9Oev6lh16rwcBLF/kKU33XPjeyF+Je35GDkPXHNLnR0UfNKdu+18NvS9SNzUBlRkEOLJxfEngoPdE7ejNwz+1vn/WxJsjzlDzB8xOtgfTCedz8HAbG0d2B+2keHvOT42vYfI/AEkw== +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.4/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
- -Unauthorized - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-6.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-6.api.mdx index 259ddb8d279..05b9fbacd72 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-6.api.mdx +++ b/versioned_docs/version-8.4/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: eJzlVt9v2zYQ/lcIPq2dYzldVhTGMCBF3cLL0ASx2z0EwUBLZ4uNRGok5cwT9L/vjpRkOVbS5rHoiy2S9/Pjd7yruBMby6c3/B3E0kqt3sFaKunwi9+OuC7ACFrMEz7lq90F7P5+zUe8EEbk4MCQbsUVLvD8DnZ4JhV+FsKl+J2AjY0svLkpR22m1yxpXOFH52vEDfxTSgPox5kSRtzGKeSCTyvudgVZl8rBBgyKrrXJhQtbr894Xd+Sui20smBJ49VkQn+H3hdlHIO1qB9rNKUciYiiyGTsU4y+WJKrjj3r1ReIHaVtCBAngxeZ9GSsM1JteD3yKHxL1IROAGI+bCigOnCwRdxliPVJL7+86nu5DgDnmLl9xOOQ6MWz0+lrf3wshyHhz8/KC69QKDeYCZ1Kl9HWAK/rmgTOhjgyV1uRyYQRGcG6x7mCTFhlkP/8XM5YJ1xpvzHDHOkqNsP4SYWmVDx8GDaegmVmjDYdEqfHSHxSonSpNvI/LMkDGF5GL7//jM+OM74Odw50+1aXJgamtGNrXarkxyDCr0MlcX41Z72EGXiFHwAP3LQQl0a6nW9yKxAGzIl/3m9u61GFEOg7CX51+7DXfQA31OjYasdCm8T2mWrqqhvwaFDDnPJoexq1aid7NRtVqFVzCsls27ZbmgxVqgBxPY2iKtXW1dOq0MaR8FYYKfA6PK50Fq53LcqM8Mx0LDK//TD6ZQqMDqgFUct2uCYiBO9jgpJ8HJp7M3kzGbREoo9Y2dNjbyd1rhi0E4QHLfkZoL2uBcmFpNsr6q5cFPLC49/MLJdXs+vz5exkMVss5pcf2/ml0cMI+9feWWlC9AHROgjxVvp9y9g//lp6dkm11l69Ydmln6uAXZUrrBxK5ThhzYQfWPDPyS0woRIW67zIgN4orB5/2NKdvlhrFiuG5Rqpo4nfXtMZXRITUq0dcT4UMJqmsAKRKCmLLLq/vx/HIsdnT4zRIYGAQQIOVyTb4PZnszN6oJzo2HbaUvt1ZGANBjDKqDFko4M5hp+OJ+NJYJV1uVA9R18tpAPYuhty8K+LikzgbdZNjFVTZDd8e8r3E0i/zHB7SlaRTKFcbnhVrYSFTyara9rGHmH8A7CvLl+LibT0jQW9FpmFo7C655L/1Iw8yQv25EA8mEjLYrXz5Z2VtOLN0Ol/a3yaeAoiQT5SYOHkHKlUuJ7O0eBLBdS9SR9mS5SlCaAH6QOSe+uD8fz21guwpb4D9XsXnaMlxVfX/wNER0k8 +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.4/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
- -Unauthorized - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key.api.mdx index 7c269251964..4b10307eeb6 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key.api.mdx +++ b/versioned_docs/version-8.4/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: eJzlVt9v2zYQ/lcIPm2dazldNhTGMCADvMLrsASxuz0EeaCls8VGIjXy5NQT9L/vjpQUO1a37HHoiy2S9/O773hsJKqdl/M7+btyWm0KkPcTaStwCrU1y0zO5ebwHg5yIivlVAkIjuUbaWhBpw/hTBv6rBTm9J2BT52uWJ82SVfYrdj35ifSwZ+1dkCm0dUwkT7NoVRy3kg8VGxSG4QdOBLdWlcqjFvfX8q2vWd1X1njwbPGm9mM/05druo0Be9JP7VkyiCLqKoqdBqySj56lmvOPdvNR0iRc3WMAerohXN8SXhBj10vjUdlUnj/YkWfksOXi0fwB1GPTpsdH+xVUY+fENiG8mfch9ONtQUoE47BKIPLbESXTzUWvDWwpG15+3IM/qWhIHQmuM7g8fNlILDIVPnNfy0HYYu1/1ekvn3DeZVUDrUbh0R3ZRrHK2z8ExgL56wbkLg4R+KDUTXm1um/CPUTGF4lr/7/GV+eZ3wbaw5cfW9rl4IwFsXW1ib7Mojw3VhLXN0sxVHCAoLCF4AH32yQ1k7jIQyNDSgH7nW4UO/u20lDENgHDWF1/3x2vAMcBofYHEScNTSDcsuDaQcBAp46c5nsL5Je1icNibaSnbt9P7BqV5BcE8Fs50nS5NZjO28q65CFB3XOjs9iIbeqLhi5wqaqCNvP41znIPiAb2UedkhrLnn0Pg2DgXycmns7ezsbtcSin7HyRIQnOzliNWonCo9aCoO0L8yK5WLSfTGG4qpKx+HfTfvrm8Xt1XrxerVYrZbXv/WTv9OjCI8LPFjpQgwBhbEThGQv/XPPzV/+WAceabO1Qb3j03V4j4C4qTfUI5zKecJWqDD16Q/1HoQymUhtWRXAt1E3l0VPbP4SvVnqDVFao9Eyk4MmOlszE3JrkdkdW5VMc1iRSJyUJxY9Pj5OU1XSBaem5JBBoCCBXigs2+H2a7czeaac2dQP2tqGdeJgCw4oyqQz5JMw2onIMdmL6Ww6i6zyWCpz5Gi8ZU6wGsqC8AmTqlA6PABCYE3XTndyf3HSERM5Z1NEm9gYd7JpNsrDB1e0LW/Tve9CUz9pha7LtOdv6tetKjycxTJcgfKr2+5h+LU4fzSOhtyT1Bzk8PKR9BnYF35bumNkDiojunE08eSKmFLhkc7Z45D7Y7hn3i3WJMuj/PjpdMrhYH00nh9+CgJibR/A/DhEh7zk+Nr2b8xV7kM= +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.4/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
- -Unauthorized - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/delete.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/delete.api.mdx index 1f21f907c39..5784ed2b74b 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/delete.api.mdx +++ b/versioned_docs/version-8.4/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: eJzlVktv4zYQ/isET92tYznbtFgYRYG06wLuLpog9mIPQQ60NLa4kUmVHDl1Bf33zpCSYltOX7diL7ZIzvPjNzOsJaqNl9N7eetsCt7PjUdlUpAPI2lLcAq1NfNMTmUGBSDIkSyVU1v6dKxXS0MLOn6EPZ1pQ5+lwpy+M/Cp0yUboM33sBd2LcroRujOz0g6+K3SDsgHugpG0qc5bJWc1hL3JZvWBmEDjkTX1m0Vxq3vrmTTPLC6L63x4FnjzWTCf8euF1XKPkk/tWTKIIuosix0GtJLPnuWq4ee7eozpMg5OwYDdfSyJWtqAweCHp02G9mMWpiyfxb+SKLGgoV+ypXZwAIVVp4O+OjqXC5zs1OFzgSDBh5fzokiXhWw/frf5uZjCH8X/jdvONm/AqK/4XOHcWNwcADIzDnreiQuh0h8NKrC3Dr9B6F9BMPr5PX/P+OrYcZ38c6Bb9/byqUgjEWxtpXJvgwifHuuJK5v5+IgYQFB4QvAgzY9pJXTuA+deAXKgbvgTjy9f2hGNUFgHzWE1cNpQ34XGtWgIQtlMqGKQmRQgsmUQZEpVGK1F7HFU+vP7clAoH4/lcnuMmmtXXTWfFKTViM5UrfrRkblCpKvI/LNNEnq3HpspnVpHbLwTjmt6JYC3HwWb32tqoJhLmyqirB9mtQyB8EHPJR43CCtmR/R+5gRZh/H5t5O3k7OWmLRF6w8s+bZTo5YnrUThc9aCiOsu8UFy8Wku5vrmaBK/T7g387bm9vZ3fVydrGYLRbzm1+72dvqUYSHbOittCGGgHgdhWQn/XNH5F8+LQPptFnboN6S7yY8CUDcVisqKE5lmLAVKsxb+kO9i4RK7bYMc3HAN/4SnVkqJLG1RqNl2gdNdLZiJuTWIpdCrGsyzWFFInFSnlj09PQ0TtWWuqEak0MGgYIEehuwbIvbh3ZndKKc2dT32tqGdeJgDQ4oyqQ15BO2ykSOyV6OJ+NJZJXHrTIHjv5rfR2h2V8cwu+YlIWiS27a0Ou28O7l7jJ2q+PSo70pmySCxRK6l3W9Uh4+uqJpeJvGiQu94rniQn1m2vM3FflaFR4GMfWdVX511z7eXomXH3hnU+hobfah3ouKV/QZ+Bp+G2phMgeVEUE5qnhyTdwq8UBn8JDjiuqb1LvZh9lyRuL8WDjA84T4wcHZkL7/MQiIpX0E80MfIPKSQ2yaPwFUtd1k +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.4/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
- -Unauthorized - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/get-statistics.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/get-statistics.api.mdx index 55670f12467..18d87cf3669 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/get-statistics.api.mdx +++ b/versioned_docs/version-8.4/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: eJzlV99P5DYQ/lcsP/Wuy2a50uq0OlWiEneiVx2I5dQHxIM3md31kdipPVm6jfK/d8ZOQiBBFbxVxwPE9vz8/I1nqCWqrZfLG3npbArenxuPyqQgb2fSluAUamvOM7mUW8AV0tKjTr2cyVI5VQCCY/VaGlqQ1B0c6Ewb+iwV7ug7A586XbId2vwMB2E3oozehO7czaSDvyrtgFyhq2AmfbqDQsllLfFQsmltELbgSHRjXaEwbv1yIpvmltV9aY0HzxrvFgv+89j1qkrZ51xcAVbOeOH7dARZFLgDsdV7MKPoZmLrbFVCJtYHscntvTCWbFMkqaWgDLIzVZa5TgNeyTfPHutxDso5FQBCKPxg366/QYqMqmPUUcc8VIp6r/HAF9DLenTabEfIXlP4OmNwOZE+ypDa/U6nu7BPMFU5eqEcCLXdOtgqJMybWfQFk3iPHaFFlQtTFWtw7DIq94D5URgTt0bosWwO2SudduovdatNqjO6Nf9Kv71+T5v/SNMWZQ74+jw7/ZclSp5RY87ePpLYF5IaFHDDPzN5MlUp52avcuISlyR4fJ7nxNZ1DsWPz/L9GV5z5VXT8A+z+Okdw1dQKaotjCsgXGX7fkwdxo3RwQCXM+eskx0Sx2MkvhpV4c46/Q/d3iMY3iZv//8Zn4wzvop3Dnz73lYuBeIXEtMrk30fRPh5qiROL8/FIGEBQeE7wIM2PaSVoy4U+vwaqHW4I+7zy5vbZlYTBPZOQ1jdPn3OPgEOWlHfcLmPPm2y1Lwk50Tl1o4bYcigGWIpk/1x0sof9W9gUlMQTeKHQ4kHt+8mksrlpFpH6JtlktQ767FZ1qV12JDwXjmt6JoC3nwWr32jqEOSZm5TlYftqUeaD3jm6V5iJkj0PmeI2cdjc+8X7xeTllj0GSsPtHmws0MsJ+1E4UlLYULqrnHFcjHp7uoe5pNSfw4TXDvOXVyeXZ1enx2tzlar84sv3WjX6lGEQzr0VtoQQ0C8jkKyk/7YMfn3P68D67TZ2KDesu8iDJ4gLqs1VRSnMk7Y0swR+NOOHspkg0b5lFz8JTqz3LULazRa5n3QRJrvmAk7azEOV1zYZJrDikTipDyx6P7+fp6qgp5DNSeHDAIFCTR6smyL2x/tzuyJcmZT32trG9aJgw04oCiT1pBP2CoTOSZ7PF/MF5FVHgtlBo5eXGCPYOxvDOFvTMpc0e02bcx1W3w3cn8c36nH5Ud7yzjtDyqQaBYL6UbW9Vp5+OrypuFt6iouPBkPdReqNNOev6nkNyr3MAqwf2DlD1ftfwhvxPP/RUzm05HbHELV5xWv6DOwNvxu6CWTO1AZ0ZSjiienxLASBzqjGZ/rqn+yPp1dkywPDANkn3A/WJ+M58NvQUBc2zswv/bRIS85vqb5F3sPuO0= +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.4/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
- -Unauthorized - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api.info.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api.info.mdx index 9ea6e3d454d..cabe55b339c 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api.info.mdx +++ b/versioned_docs/version-8.4/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.4/apis-tools/operate-api/specifications/search-1.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-1.api.mdx index 06bdc2d1104..f8197cc5dc5 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-1.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-1.api.mdx @@ -5,59 +5,237 @@ description: "Search process instances" sidebar_label: "Search process instances" hide_title: true hide_table_of_contents: true -api: eJztWF9P4zgQ/yqWX9jdK20KdJdFp5O6UCT2OOBol3so6OQmbuslibO2A/SqfPebsdMmTQJbpHu5uxUSTeyZ8cxv/jpLathM06MxvVLS51qfxdqw2Of0rkVlwhUzQsZnAT2imjPlz//s0hZV/FvKtfkkgwU9WtKAa1+JBCmBbmjpSOLkEZEL1MDny9jw2CAPS5JQ+FZ656tGxiXV/pxHDJ/MIuEgSk6+ct8AIwgDXYwAKbA7FaHh6vt093xRIhJw9gzYWnQqVcSMW3p/QDPLh8recKWF0+VFpv09ZJokUbxCLSjxaKNEPLNimQJzf91eDUt/GsrHCxnwlSu25wd6ZU6Y4Y3a8Dh4dg84m3aQKY0wPPrHo7ObASwcX/52dT4YDU7wuX9xPDiHx7sCwxM+FbFAv26vNwQFi82LIFbC08qmvlB+GjL1prL71goVJkRJ1cBGa8VffEsnu6jvTzcDjinFFkAvDI90PRAzZJTKbM9RD3EeNsMhVbChSt1Tw2N4OxnAz11WwmGICmXlld9TrhYN8PAnFiWhU6QfhvUUv+YmVbEmLAzreU7eBHzK0tAQZclIKLQhCDkRmnS9t6DdAwtT9ABqg3rxgEwWZG1082n1k7RjZdqH2AYUUMhmVhZH5Q4Zr7GlVcocWQtgdldSjcUBSdgMnh6FmZNV9DRrGbEnst+gK8MQIjsTMbthKj92x4qGMkXef+j19j9+PDjoer3e4Qfv+6aR23gkyYwbYuacxPzJWB2JL5OFXbKGEzklOyjrBt/gQAhsCStFVO84wvZtjNYSnXBfTPPKTPRcpmEANhmo6Ci0xLhJuoG0BWi/9VrIK9k2phtg0VYVJOujU9sMci851F52Ts+re6dFpisxgPNmN0AI914XakWDqjaWvXX16XmvxifLbPpi9xUKzTQq5XZBJzLWLmH3PK+hJ6e+g/CfasHVMvbK8vajM//ozA2dOW+brla9rt0aaVi4lVElBa65hj6l63og0UFTIoGbGJQNyHQRPJ9NAPgk5NFPr80q9HWqtwzyCFSGgt/omVVha9x0C7WNEi4DpaRaw9Ctw/AlZqmZSwWVrALDu867f7/FB3WLL6QhpzKN/3vm9privH91RkoRTbhl+B8EvB35/VQJs7CdeQITCVe7tmGNoZguAQJ5L7h9g4ll67tvxCFhsMcnUlsgmJnDW+eh28nJd9fkHTcHUdRFPUDrs6qkCgocXTpss6NOZzkHUdnRMoGamdn5Qwk2yQd33HN+tcM4cIbSZ+Hcnb6p9ggmO9yIWWQnRpz0MALc6W1b6/PrTCHu0Dv0GiUh6TNSirgo5MyNSRrlOOJGSZkbFp2fhkjnjF75pugcicCG1KJoGrxfXg2u+6PB7nAwHJ5dXmBPweNyPhwdSv5eS8lVtArhuyOiK+rTVah+/mNkwwrT4Lr4RjJw96nNydCe4NUHHK82vhQtvzS1eC/OJN7GxFGeGYLqUj5fFGNE87TglWeB8nhih1mvOrovrYOq4+360Mpci16YSgt4npCX9tMTJ1fpBIoMOr8eIpIwO9XCjxEP3F4AfIlI46Rev4GJmKzEQnEhkQTzJCpkOY2SKebOXErjlMRaB6JRLZd6GAYa8u7x8bHtswiaAWvDgQgDKMlhAkfaPNLO85VWhTmQvl5zC2nfO4pP4fIBWnZyQbqDUh9WQUG7ba/tuTzUJmJx6aAXas4GYOtoNnBX7CQhg8jPcu2WeTka04duEQK7ZVl5SQK3usoypsvlhGn+RYVZhsvf8GsClsWiELmSSeecBS4qXNTTY9dFdkeo0PreVL+QYLl1HH3wdGJepL0r1diry+EI0zP/QBlBfsCqYo/48RL+H9Fb+MNAtODY2mHXlzRk8Sy1bYY6uZjQOO2UEKzkv7VsVXDiRUnLnz9ZAjKS9zz+BTacNQZf3YXubzpXX4s= +api: eJztWEtz2zYQ/iuYvThJaYt+5aGba8szbhPbtVT34Gg6ELiSEJMAA4C2VQ3/e2cBSqJExpFnemmbGwnsLhbffvsg5+D4xEL3Dq6NFmjthbKOK4EwjEDnaLiTWl0k0AWL3Ijpn/sQgcGvBVr3s05m0J1DglYYmZMkdKHv5Vge7DFZGbQQgdDKoXKkw/M8lcJb73yxpDgHK6aYcXpysxyhC3r0BYWDCHJDvjiJlnbHMnVovi93j7OakFQOJ2gggrE2GXdh6e0RlF6PnL1FY2Xw5VmlwwNSGuWZWqCW1HSsM1JNvFluULlft3fDy5+n+vFSJ7gIxfb61nHjzrjDVm9QJd/cs651h5SKjOhxcjq4uO1BBKdXn64/9ga9M3o+uTztfeydwXCF4RmOpZIU1+39dqi4cs+CuEFPbxuENKJIuXm1sfvaG5UuJUubxKbbyr9wyyAH1p+M1wnHjeEziEA6zGyTiCUpauO212hSHNN2OLRJ1lxpRqp/ChGc9fqnMCxrOPTJobK+8luBZtYCDz7xLE+DIydp2kzxG3SFUZbxNG3mOXuV4JgXqWPGi7FUWscIciYt249fQwQPPC0oAuQN+YUJG83Y8tLtpzVPskGVW4EqkWpCRtazcnVUFZC7JbawKVkh6wEshzXXuEpYzieYsEfppmzBnnYvM/7EDlt85UQhtjOSk1tuqmN3vOl7nLG3746PDz98ODraj4+P37+Lv3819lkNNJugY26KTOGT8z4yofOZX/IXZ3rMdsjWLb3ZHSaV02ynxuqdILj3WdFtmc1RyHFVmZmd6iJNWMadmHqjNcV10TWkPUCH0Ush38i2O1gDC6JNkHyMzn0zqKIUUHs+OMdxMzoRGy/MjGZsvRsQhAcvo9qqQW02loNl9TmOX4xPWfr0pe4rDV3TmQL9gs21siFhD+K4pScXIkD4T7XgzTL2wvL2ozP/6Mwtnblqm6FWvazdOu14utWlag7coC1SZ5t+kNBRWyKdcceZVA88lcm3syk3epRi9tNLs4piXdgtSZ6htXzSTppFYWvdDAuNjRouPWO0WcJw2IThXJuRTBJU6xi86bz591/3qHndS+3YuS5U8p+77nEbyU+uL1iNzgy9wv+A7X7eF4WRbubb8gi5QbPru9XdsIzmILS+l+jfhtH2H74ZuqmmBp9r64Hgbgpd6Dzsdyrx3aV4JwxBQL6YBzTWu1KYFLowD9iW3U5nPtXWld15ro0r/fBhJB9VUzvthbj6SRy6kGrB02k4fd3twRQZbSie+XGRxjxiQDh9zxf66ltmZe59/D5utUSi37Cy4sXKztS5vNVOEG61VIZJMcSpT3Lh0ovYrNpGLqkbRUBXgy5cXfduTga93X6v37+4uqSGQsdVejQ31OK9tFK56B2i9yAEC+nzBVV/+WPgaUVpcLP6QdILH1PrY6E/IW5ON3Fjdln1+9rIEj87kMRr40Z9YEg2l6rhYjVDtI8KcX0QqM8mfpKNN+f2uQ/Q5my7PHRjqKUojLUHvErIK//fCdl1MUqloOA3KaIZ9yMt48LJB/TTv9CENI3pzc8vqdjC7FgblmklnSaHvKYzuqDcmWrtgpNU67jwrA+pRzSw3U7n8fFxT/CsUAnfEzojGFIpUFkf4oppH6uVaEM50cIutaX27x2DYzSoBHYqQ7ZDVh8WpID9vXgvDnloXcZV7aBnas4aYEs2O3xynTzlUpFB7928Kkd38LC/osBu3VZVkoZRVVnuYD4fcYu/m7Qsafkr/UqgsrgqRKFkwhR5ElgRWA+noYvsDsih5UdT82uEym3QOBECc/es7LBWY6+v+gNKz+rvZKYT0jH8kf5c8kfoApHQA+Prhl+bQ8rVpPAtBoJNSmZeEDJL9DZy399qUWzUrObhfB4kBvoeVUn1OVzF0Xv4lPsbXC1ekg== sidebar_class_name: "post api-method" info_path: versioned_docs/version-8.4/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

required
- -Search process instances - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Unauthorized - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-2.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-2.api.mdx index b27aaa91969..cac14699c93 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-2.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-2.api.mdx @@ -5,59 +5,222 @@ description: "Search process definitions" sidebar_label: "Search process definitions" hide_title: true hide_table_of_contents: true -api: eJzlWFtv2zYU/isEX7J1jm9N2tQYBriJA2Qbmix2twcnGGiJttlIpEpSST3D/33nkLQsS0qaDHtZhwCxSZ4bz+U7h15TyxaGDqb0SquIG3PG50IKK5Skty2qMq4ZLi5iOqCGMx0t/+zTFtX8c86Nfa/iFR2sacxNpEXm2AZ07OgI/8LSLOEGyCMlLZcWSVmWJSJyQjufDNKvqYmWPGX4za4yDhLU7BOPLDBmGk2wAqTA6Vwkluuv093xVYlIgO4FsLXoXOmUWb/15ohuWlSylJdIjdVCLvDgnmsjvHVPinndR+pZlsrgQPRUgzy4PpO28RBPhU1wqx4EODTiL/5MO3yEhvN9LzGt2QroheWpqXsPDTBK2+dz1OPCk+ZrKx3vmRJOWpTLPMW0G45PYXU2go/bsifGaNCmvPNbzvWq0UFFooGeYZLUExI2SeY5iZDGMglfyXcxn7M8sQQdTIQhve73YMs9S3L0N+oe44maE81triWPSSKMfTTh6yqYjAOv40RRTtlxSU+I77HTF8LwAvEYOTJbEZfJZalO1LQIDg0EISLO8ZvbrVIvKiTa87S3vGok5jKGqG6t8Fc1wXVNV2191TqXEBXzMrZ4iXllxxT8EA0DITe7SLTJjSQTRRbcErvkRPIv1pNGKlu5LWc+chygzN9xZQ5Ak1Wws6u4A0/YvpHOZJPxSMwD1BGzVHkSE6hXMBaFlhj3Sf+Rv3w0KwAwpacsSSBrQ9UAfb9/3Hv77t1J7/Wbk7f9k54vunOHq7t0qns5UIA7AzDu5d4+/JXs3wF2gae9AtGOuw33qoqqpquDBOw+QnOgtzrnbsNkShoPAf1utyFN8ii44F/qRVVofCFkfkstKvQPXxgv6ztWWZY8yxElE659DTdZgmRHTfE/Y5ZByUJmivjxJIAYzRKe/vDSZADMsbl5ZiRSMDpAWS0GW/hqDpDbeCo4I62VLtzQq7vho2S5XSoNBVhxw6vOq//+jY/qN/6gLDlXufz2rnvclOfDqwtSymjCHcP/IOHd9BvlWtiVaygz6IRcHzqcnd5uWmtwgboT3K2gUz45RcQFpmDHSDmUDDanTBnnCmaXsOrc9zqB4bDE0PE9mKI9GjHamZNrgDm69v7dDDqd9RKEbQbrDJBz43qmFmwWplg887F1EypwJipiydLr3zd9AsMEHrg5B4YUHC4wC7z2NvoxK8bKrbiT7km3URKSPiJllxs7OUtrs0Y5nrhR0sYPKj5WY6Tzl97GZ9c/MvELxwbiWyC9vBpdDyejw/FoPL64/ICdBdUFPuxxpZgXUoKJziBceyK6pT7fpuvPf0xcamEpXO+etyP/uNifZpyGbmFY8aopWnK31nB3RLs+W0p1PxJ1qxPc2vmqOiQVoirTETpkrtzdQ31cugc8J1f5DGoe41CPliLMzUbwYcW9n5UjhZe2MDvWXx1Ckq1YqHWSKkh8hQY5TqtVjmm8VMp6IxF6QDSa5asAI2KgBB4eHtoRSwGbWRsUohvASA5zHNIG3/4adloV5lhFpuAWyq07ms+55mBlJwgynb1Jifba3XbXl4SxKZMlRU9CwJ7LitSy8FboZAkT7hnq7FsHdJjS+55HzSo+0G2M8QcWX+hTul7PmOEfdbLZ4PZnfOsiUu1wwaMYXXIW+8zwSUhPPbAfTtCkYvSuj7aIgJ5jCNHO7JO0tyXQu7ocT7Bawk89qYqRR7MH/BkI/g/oDfxhMmb+fkDk9tc0YXKRO+SnXi7WFw4gJR9WytHdbFv/clWy8sf3jgDeandc/gQH/jYWl/5p8DfgHXAF +api: eJzlWFFz2zYM/is8vGTrFMtOmzbVm5emd912TVZ720Oa29ESbLOlSJWkkno6//cdSFqWbTVNdntZ92aRAAh+AD6AbsDxhYXsGq6MztHaVzgXSjihFdwkoCs0nD7eFJCBRW7y5Z8nkIDBTzVa96MuVpA1UKDNjai8WgYTL8fwMy8riRYSyLVyqByJ8qqSIvdG0w+W5Buw+RJLTr/cqkLIQM8+YO4ggcqQC06gpd25kA7N1+U+4qojJJTDBRpIYK5NyV1Yev4M1gkoXmJH1Doj1II2btFYEby718zTE5KeVaWKABJSPfYcKq5c7ybtCidp6TAI6wSs+Asf6EeI0Hi+ixI3hq8gAeGwtIfokQNWG/dwjcO4oOy/tjbFjitxJwFUdUlpN56cQwKvLibncNNFYkIOrbsrv9ZoVr0AtYmWNTCW8jAhx1KyKmgyoazjKkfLvitwzmvpGAHMhGWj4feQwC2XNeFNZ09oR8+ZQVcbhQWTwrovJvzhEVwVUddrkil/2GnnnBjfU39eDMMjzFPk2GzFfCZ3rXpT121wIArEiHjg1zebQ4OpmGgPOz0JR5MwqkKoxcaLcFUboeu7avJV73xC7LlX8cVj3OsC0+ozg7aWzm4jMWDvFZtqtkDH3BKZws8uiOa6Wvkl7z5pHJHN3+nLHjGhnGZHnYo7CoKD98q7bCvMxTxSHbNLXcuCldzlS2+0o7gr+o/wCtHcI4BrOOdSYsFi1UACJyenoxcvX56Nnj4/e3FyNgpF99rz6jadDlGOErMVi8S4k3u79Nfxf0vYLZ+OWkY7Hfbca9/Ufrp6SqDuIwwWkDlTo1+wlVY2UMDJcNiTJnUeIfiXetE+NT6SMr+lFhX7RyiMx/Udpx2XDwKi48K7UMN9npDYs774v+KOM6FuuRTFl5OgMnomsfzhsclgHXe1fWAkSrQ2UtlBDDb01R8gv3BfcC6M0aaF4WlPHWszE0WBaheDJ+mT//51nx1e96127LWuVfHNXfe0L8nHV29YJ50ZeoX/Qbb70TevjXAr301myA2aY0+y1zfrpIFc648C/ddNcv8IUbSEQu2iRLfU1JkqbT0U3C0hg/R2lEaF445CGhowkD+GCNq7UxsJGTQB33WWps1SW7fOmkobt/YN0wg+iyMs7YXY+vEUMpA653IZzt91fbpERht+yNFzP1lQFoTTB4Rj1c6UG3Nnw7NhryUS/YKVbW5s7Sydq3rtBOFeS+swpYRYTUguXHoTn23zqMTPSN0j9D+4vLp4N55eHE8uJpM3l2+prdBxUY8aXCfmrZXooneIvoMQbKRfb9L1pz+mPrWoFN5t37YX4WWxO8r4E4atY+2Tpu3Hw4NuuxXaNtlOqod5aLg/vjUeq/0JqTW1NxoRIHPt7x7r49K/3pFd1TMpcorDYbQ0434wYjx34jYMyrmmSzssep4cQrGN2bk2rNRKOE0OeU1ndE1pvNTaBSeJenjuEzBUAUXEZml6d3c3yHlZq4IPcl0SDFLkqKxHO2L7S1xJ9pQLndtWW2j/nRqco0GVYxoN2XRnTILRYDgYhpKwruSqc9C9FLADWZtaDj+7tJJc+Deo96+J7HANt6PAmvv8AJsY078rodCvoWlm3OJvRq7XtPyJHrrEVFteCCwGS+RFyIyQhHAeiP14Si61c/fhXEsMGDTGeY6Vu1f2pkN6V5eTKVVL/J+n1AXpGH5H/wHxO8iAErEKd8uasNaA5GpRe9aHYJNqi9eETYvfXin6W21qX606HjZNkJjqj6jWRJfhKo6+w6Pgb83Jbww= sidebar_class_name: "post api-method" info_path: versioned_docs/version-8.4/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

required
- -Search examples - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Unauthorized - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-3.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-3.api.mdx index 6dbe883788b..dc952681464 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-3.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-3.api.mdx @@ -5,56 +5,281 @@ 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.4/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

required
+ -Search incidents - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Unauthorized - -
Schema
- -Not Found - -
Schema
- -API application error + -
Schema
+ diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-4.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-4.api.mdx index b1db620a2d2..e0ba5380990 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-4.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-4.api.mdx @@ -5,59 +5,306 @@ 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.4/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

required
+ -Search flownode-instances - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Unauthorized - -
Schema
- -Not Found - -
Schema
- -API application error + -
Schema
+ diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-5.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-5.api.mdx index 606a29cc195..c47d0a61c03 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-5.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-5.api.mdx @@ -5,56 +5,228 @@ description: "Search decision requirements" sidebar_label: "Search decision requirements" hide_title: true hide_table_of_contents: true -api: eJztWNtu4zYQ/RWCL2m3ii/ZOM0aRQFnkwBpiySNve2D1yhoiba5kUQtSTnrCv73zpC62ZaTeNGXXhAgtsiZ4eFczoycUcPmmvbH9JL7QgsZP/DPqVA84rHRdOJRmXDFDGzcBLRPNWfKX/zRox5VIMi1uZDBivYzGnDtK5GgJMgNrRzhX1iUhFyDuC9jAzZRlCVJKHxrtP1Jo3xGtb/gEcNvZpVwsCCnn7hvQDFRCMEIsAK7MxEarl6WE0FNRhsl4jlde/SRr2rrAiDNwZpHZ1JFzLils1OUDBr8cdNsNGYRb9xYcqWFu9+zJ749QWnFtUyVz2/3mQP/sdg0gsBdYUJcagwk7GvxJ38lEhflwWzT00wptgJ5YXikdyOAGLRU5vUau7HlYbOHpQo2oOQ7HuVxGmH2Dobv4enyCj4mdWcMEdC6vvJrytVqn4/KfIWjBmG4m9ewSIrMIKqmTb4J+IyloSHoZyI06Xa+BUhLFqbodoQwxB05Az2TqpgHJBTa7K2d5mNYHOT6VhvN2QN7tbPyUPfsmXlEDjwCA0mY9nkcgKPJdEVsktfPsIbHZdRoLpCHykZkPSkgOKN5Br4ei+eAoMImEu8gR3gvorWZswU3YfOvg7vjtw20aLZC2/oYjySZc0PMgpOYfzFWwCO+TFZ2zV4GFY7Q+G/4pI8I1KqElapQj5wg2LMX0AkAnOUsS/RCpmFAoMwBOhqtKW6Ktr7KfS7YW8QxpjfxUgqfk4tUi5hrTYq6w4ZwctLrfv/u3Xn37dn5Wa/XcYV7bfm9ysHdAOQS4NqcXithWNtD27VLVR2kpOduSY+9TsNl99rcznVLNHlCgKJRKXe8nsCVHaucdDoNOZX6Prjn7+uS24R7IBH/3zw3G0Pe2VztHdYRjTQsfJXXaigeuIZOoveAQcnTpjS6ZIYBMUCmi2B/LkGopyGPvjs0p7RhJtWvDEcE6ZzT504kRAymYn9PmOzCcyG6Ukqq0g3dXTd8iFlqFlJBQW+54U37zT//xqe7N76VhlzLNP73XbfXlOeD+xtSy2jCrcJ/IOHtaO6nSpiVbVBTaLdcHVteHk/WXgYukI+C26eJd8DkQvEGUDTY7hKprTOYWcBTe9ltBypou9ZOEYFCarYAUgXcRjPn0XW/3c4WoLzuZwnQ5dp2XSXYNJ+occ9F007KoBlKn4ULd94m2BEMKbiB7QGHHxxaMO7u9BZ6LilH28Lceee802gJRfdYqbKhsrMwJmm044QbLa3d/OOiM0Q5d+kiIlXTSMTPHLuG63z07v7qYTC6Oh5eDYc3d7fYTvC4XA8Q1qNcWskhWkD47IRoIX1dJOhPv49sMmHyP1Rv7FfuRWdzHhJB/dXKntfZ38sryfwi5XPZuTvbfbmSqdpxrRbcDNbZniMz69rtqaw0tTWFof9m0roqL6A7+xMGJ/fpFEgBw7YbXEmYncHgw4gltzOlL9FHBl7UgBjsZlHJ+I0UZoEMSCRjYSQCsppGyRSzfiGlcSCRm8A0wnJFgwHUUDFPT08tn0VA3qwFB6IbACSHeRFlc9f+kq94W8qB9HWpLaR9bis+44oDynZuSLc35inabXVaHVdB2kQsrh30AkdsOK3MRQNvLe0kZJC36xxhltPHmC67qKcCWkQVf1RyTDCmWTZlmn9Q4XqNy5/x3RzJqyIOR2x0wVngcsHlJX3vuP54hBDK6X53aEZSdBoDiG9inpWd1Fjw/m44wnLKf96KZIA6ij3hT1/wv08/wh+mn3WHrXW7ntGQxfPUNgPq7GIB4kxS89lWvdqbFQQRr2oof7iwAmQkH3n8Y1GXMFfCo3vp+Auafcng +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+rnuiqRMigdiZAgOv51rZwCqng0FHThVCoP0bu+Q+4T6SiP9vnruNoe5sofYe1xGddjx9kNdaKG7QFqmzR8CQ5FlXGr3mjjOpVjyVyfFcyo2epZj98Nicso67wj4wHBlaW9PnQSSkso4rcSRMfuFLIbowRpvGDc86CEKbmUwSVLs+eNJ/8s+/7tnhdd9px97oQiX/uuuOupJ8fH3JWunM0Cv8B7Ldz+WiMNKtfXeaITdonnpSvr2rohKE1h8l+re76BFjC9AN3FJTr8u19c7gbgkx9FfDfmKSfujrQAgM8bIHUJgUYiiDR6u43y+X2roqLnNtXOVbrpF8Vo/TtBei6cdkiCHVgqfLcN4u2OkSGW1Qb6DJhyYWins4vUeey5u5dmPufHA+6LREokesbLNha2fpXN5pJwh3WqrC8BOiMyG5cOlNRLYdI5c/I7WM0Pbg6vriZjy9eDq5mEwur95RL6Hjar0q2olyY6WG6AHRexCCjfSbTYL+9PvUJxMl/832c/0ifOXsDkMyaX9X+fMGxxv5VrK+SPPetO3BflPeymx7casWwgA22B8iS+/a/ZGsMbU3gpH/5tq7qi6gK///Atl1MUuloLAdBlcz7gcwxoWTK/QDpdDkI4cJy432m5tKpie2MTvXhmVaSacJkNd0RheU9UutXQBJ3MSFz9dQNBRAG/f79/f3PcGzQiW8J3RGbkilQGV9cGrXvq1Xoj3lRAvbaEvt3/sG52hQCezXhmx/Z5iCYW/QG4QKsi7jqnXQVzhix2lNLjr87Pp5yqUiox5hWdPHLayGpGcS2ESV/igFJriFspxxi7+atKpo+RN9mBN5bYkjEBsskSchF0JewqvA9U+nBKEZ7Q8nZiLFoDEWAnP3Rdm7FgteX02mVE71v61MJ6Rj+D399+L3EAOlnneFr3O/VkLK1aLwjQCCTSo+XpAvGn/t1aq/1YYc1LqFsCyDxFR/RFVVm6IER+/hc+MvYKjI5w== sidebar_class_name: "post api-method" info_path: versioned_docs/version-8.4/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

required
- -Search examples - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Unauthorized - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-6.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-6.api.mdx index 9b8f3e0dbf6..e7ca4ee36a6 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-6.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-6.api.mdx @@ -5,59 +5,318 @@ 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.4/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

required
+ -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
- -Unauthorized - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-7.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-7.api.mdx index 1252bbfe30c..136cdf72b27 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-7.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search-7.api.mdx @@ -5,59 +5,243 @@ description: "Search decision definitions" sidebar_label: "Search decision definitions" hide_title: true hide_table_of_contents: true -api: eJztWFtv2zYU/isEX7J1ii2ncZoawwC3cYB0Q5LFbveQGgMt0RYbSVRJKqln+L/vHFKSZVtO7WIv3YYAsUiey8dzlxbUsJmmvXt6wQOhhUwv+FSkwsATHXtUZlwxXFyFtEc1ZyqI/nxFPar455xr80aGc9pb0JDrQInMsvXo0NIR/oUlWcw1kAcyNTw1SMqyLBaBFdr+pJF+QXUQ8YThk5lnHCTIySceGGDMFEIwAqTA6VTEhquv04mwRqONEumMLj36wOe1fQGQZiDNo1OpEmbc1tkpUoaFNa6aBaUs4Y0Hj1xp4e70rJaXJ3Utd2BMoXgCFtI7NDaR/nrwderc17vu0ET84aB7gatZahpvgqfCxLjVEHFwqsVffE81Lhz70/WQYEqxOdALwxO9HSqIQEtl9ufYDkIeNztJqnANSnHiUZ7mCSZZf/gWVhcD+BnXTTFEQMv6zu85V/NmC1VpBYr6cbydfrBJSifCQ8mryQ+wYHlsCBqZCE06/o+A55HFOdoc9Q/xRE6J4iZXKQ9JLLTZmeGNWlgaFuyWGaVZfd2aqsLNXauy8MZhGtCHhOmApyHYmEzmxCZlXYWVe185jBYEhZesM5bjEoETWgTf3lA8hwPp14F4B5nB+ypYGzMbaDM2+ya0W1ZbA4tSV2BbH9ORJDNuiIk4SfkXYwk8EshsbvfsXZDhCIV/wJU+IpCkEnZWGXrkCEGexa8zwDct+gDRkczjkEB+A3IUWmNcJ219k/Wcqzcqhut5IbcKL4SOgOHkpNt59fr1eefl2flZt+u7NL20bWcVdttGLyjAnkUHWBHDXq2b1NCvmlnVNTpVAez6Dbdak7MZxrZ8KFezgdionNsNnYHnXbU48f2GeMmDgOt/sElvltEDy+v/vfs77d1FY3UV4LCGbKRh8V72qGG44xp6mW6EgnSnTdF+wQyD4gRJKMLdIQ8ROYl58tOhoa8NM7ne09IJZF1Rwbf8KFIQlQbNh27jOfcMlJKqMkNn2wzvU5abSCqoNRtmeNF+8f3f+HT7xtfSkEuZp/++63ab4rx/e0VqEU24ZfgPBLx9LwhyJczc9s4JtHyujm37uB8vvQWYQD4Ibldjb//hieIFIGewEWdSW1swE8Gq/dhplxzHNY62GzcoIlLYXSygXEGlowtn4WWv3V5EIG3ZW2RQPJd2QFCCTYoBH8+cd+3kDpyxDFgcOQDr4Ecwx+ABdjgcyHCuwThw2ltoyayatUtx5/653ygJSXdIWUXHSk5kTNYoxxE3Slq6mcx5a4h07tKlh1YtJBPYMMvmTW9uB3f90eB4OBgOr26usbmguoIPENa9XkkpIFpAuHZEtKS+LAP23R8jG1yYDHer7xwD9961PrqJsP6eZ/X56yPI6rQAX62rgcPfPU6sqHdOETu4rze0PTsa+PXGX8s8N4z6m5PzwjpuczytVG2MpuidqbSOKNL1xn5W4uQ2n0AJwqDYDh1JmB1M4ceIR24H6kCiBwy8lkIZsodl3cAnUoqF0kMSCVkoEZDlNErmmFORlMaBxEoIohGWS0kMDw35+PT01ApYAq2CtUAhmgFAchiikbZw4m/FjrfBHMpAV9xC2nVb8SlXHFC2C0G6vTZw0k7Lb/kuP7VJWFpT9HxFWrNZFegGXtPaWcyE/V5gAS6KYnVPHzu1YDheF1cULHCuqzv3dLGYMM3fq3i5xO3P+FkCS+eqTLmySiPOQhcbLgvoW9dpjkeIqXrt2X6zwJLsOPrg78w8SzuuFeHbm+EIk7f4BJnIEHkUe8LPk/C/Rz/CH4Zj5u4HRHZ/QWOWznLbiqiTi+mOE1HNiBvVwd6sLEfpvIby5zeWgIzkA09/KasAzLSwdG9mfwMt8lzC +api: eJztWEtz2zYQ/iuYvbhNaUl2osThTY2dGbcZ27XU9OBoOhC5kpCQAAOAdlQO/3tnAYoiJcqxMr2k7Y0E9vHte8kCLF8YCO/gHCNhhJLnOBdSWKEkTANQGWpOL5cxhGCQ62j55ysIQOPnHI39WcUrCAuI0URaZI4thLGjY/iFp1mCBgKIlLQoLZHyLEtE5IT2PxqiL8BES0w5PdlVhhCCmn3EyEIAmSYIVqCh27lILOqv04m4QWOsFnIBZQCfcNU4F9LiAjUEMFc65dYfvXxBlHHljctuQZKn2Hlxj9oIb9OjWp6fNrXc4udcaExRWrNHYxfprweb0+S+2mdDF/H7g+yyKLm0nZbQrbAJHXVkXBmAEX/hE9X4dBzN2ynBteYrCEBYTM1uqhACo7R9OsduEmLSHSSl4xaU6iYAlHlKRTYav4EAzi/Gb2DadMWYAJXNk99y1KtuD9VlFRYwSpLd8hslCVsHkcU1r2E/xDjneWIZOZkJw04GP0IA9zzJyeekf0w3as402lxLjFkijN1b4Z1auIwrdsdM0py+YUNVFeahU1lF4zANFEPGTYQyFnLBZivmirKpwsm9qwMGFUEVJReMcrpG4IVWyfdkKIHHQfRtIMFBbgi+CtblzBbajC++Ce2O11pgSeoGbO+DnCi2QMvsEpnEL9YRBCxS2cqdOVuI4YiEv6c3c8SEtIodNSr0yBP2PkiH32QYiXk1B5hZqjyJWcpttHRCG4xt0t43ec+Heqtj+JkXo1N4LswSAjg9HZ68ev367OT5y7OXw+HAl+lbN3Y2abfr9IpitmLVBNgQz1asMU0a6DfDrJ4aJ3UDHA46rGrJ2U5j1z6079kxhFbn6A5MpqTx3eJ0MOjIlzyK0PyDQ3q7jR7YXv+f3d/p7K4Gq+8Ahw1kqyxPnuSPBoZbNHliTScUonvRle3n3HIm5D1PRLw/5TOtZgmmPx2a+sZym5snejpFY6oOvhNHIY3lMuq+9AePhedCa6VrNzzv6FdKz0Qco2z74Fn/2fdv7otdc6+UZW9VLuN/nbnDriQf3VyyRjozdAz/gWx3HwVRroVducE5Q65RH7vZcTctgwIipT4JdG/T4OmbE5ABdqloCmfKOF9wu4QQ+vcn/TXHcYOj73cNIESaRosDlOsEQii8h8uw3y+WytgyLDKlbem2Ay34rNru6c5H163tEEKiIp4sPYA2+MkSGV3QeKNtjJYaygOvvUeezOpFey3ubHA26JREpHukbLJjI2dpbdYpxxN3Sir9QuajNSY6b/Q6Qpv5kQmaluvJDdc3F7ejycXx+GI8vry+oslC6iq+MmhFvZZSQXSA6N0TwZr67Tphf/lj4pKLiuF285Pjwn90tfc2ETc/8py+QXv/2NxW4Ov3etsY7N8lNtR7V4g93Fdb2h7dCwbNqd+oPL+JDrbX5sIFbns3rVVt7aUUnblygajK9dr9U0J2k88SEVFS7KaOYtxtpYxHVtyj26YjRRGwGLNMK3e57hv0xNZi50qzVElhFQFynFarnGpqqZT1IKkT8shVgy9JSg8T9vsPDw+9iKe5jHkvUim5IRERSuNCXwXxXXUSbDHHKjI1t1Duva9xjhplhP1KkOm3tk046Q16A1+fxqZcNhQ93pFaPqsT3eIX288SLtzPAgewqJrVHdyfNJLhuC2ualjToOo7d1AUM27wd52UJR1/pn8S1Do3bcq3VVgij31u+CqAN37SHE8IU/3Ns/tZQS3Zc4yiCDP7KO200YRvrscTKt7q/2OqYuLR/IH+TfIHCIFSMfO2hYU/KyDhcpG7MQReJpU6z8k5tQO3OoOzat2K5KqBsCg8xUR9QlmW6xYAlt79N9nfWsZbyQ== sidebar_class_name: "post api-method" info_path: versioned_docs/version-8.4/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

required
- -Search examples - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Unauthorized - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search.api.mdx index 99f26033be7..e9e3959100b 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/search.api.mdx @@ -5,56 +5,215 @@ description: "Search variables for process instances" sidebar_label: "Search variables for process instances" hide_title: true hide_table_of_contents: true -api: eJztWOtvIjcQ/1csf+HuSmBJc4+gqlIul0hpq0sauOsHmg9m1wRfdu0920uOIv73zoyXZYFNQqSqUh+KFLA9M57Hbx5mwb24dbw/4p+FVWKcSn7T5iaXVnhl9EXC+9xJYeMpb3MrvxbS+fcmmfP+gifSxVblSAdUA6Jis1KMA/rYaC+1R1qR56mKSWb3i0OGBXfxVGYCv/l5LkGEGX+RsQfG3KIGXoEUOJ2o1Ev7NN2dnNeIFNx9C2xtPjE2Ez5svTniS+KLpXMX2nmhY/nz3owuhgv3J9cikzVS563St3gwE2nRfOJtocFPMqmdjo1JpdB0LLXQ/iJp4MVT5VPcqmKJKqs/5JPqfn9IpBTCk8mmt4W1Yg70ysvM7UYB73XG+v05duMr0yaDAIc22VClPGlzqYsMQXsyOIXVhzP4uKk7YIAKLes7vxbSzut+kd9ElqdBg5M03QX0tfSF1Y6JNF2jmr1I5EQUqWeWjlmqnGfoY6Yc60Uv+Tq4eP2g9H6z6MOoJrnGWQbtMEIR5wR/JnTCVn7eR9F75aestYv0FmsdR9Hb3vHx4eujt0e93vGbFgmWCRMuljoBF7PxnBF4azqt07Apffi2UF7hYlSFmJcyy7hS+JYUuCtxi5F90DYtv/macYDdZts2LGjhda0Oe3Fq8jkjQ5iZsBaq9RlXrsVIM9zNrZwpUzgIrIP4upfsbzF+K+tG3GUQR97ekHgYReAlwjPWYGWxPEClkLThcqNdADIQNlTmIkaN/7qCvJ3Xz8z3/+v0bp0u8RJQ+bzi640X6V6G1m6+DiCvKYCnR03w+SC8YEqDK1TyMIYgVCAn++65WILI+sI9qX5oUBmAQdw2B0SVIGmOFm08Fooza42t3NDbdcMnLQo/NRYq85YbXnVf/fMtPtq1+KPx7NwU+t9n7usmnJ9cXbAaopkkhv8A4Gnyiwur/Jz61RgakrQHVKZHN8v2Alxg7pSkFTSsx+d+6s1l4WYrHbH5ZBLSB/tgbhy5RfgprLqzXrdi7lZvDSftTFpHChUW6htfBA8v+93uYgoilv1FDiVzSW169egAk/EsRJcGNeBMTSzSabh1U/nhVDI8wAaAQ4CHNeIg3N6hHlTNXCtx76J3UaMkJH1AyhodazlT7/NGOYG4UdIyTAwhWgOkC0avIrRuHLnC/rfqbfzy6uz6ZHh2MDgbDC4uP2JLwetKPtCwHvVKSqkiKUQdjoj4ivp8BdiffhsSuDAZrtevxLMwY28OUHRD1Nzco3rrjirlq7m/7MfrjVobxnmo3nhr2RDG6Wh71lqQM7fHtEr21pSKHpsYck6ZQpf0TJbsqhhDWcBA7YbTMEHTF3x4NZM0xscGvYID906ewDe2EouJlBmtvEGFiNNbUyDOp8b4oCRWJxCNaoU0wZA5yJH7+/tOLDIo36IDF6IbQEkJkyLSlo79pdxpbzEnJnYVtzK07lo5kVaClt1SkOvSjARpGoztdaJOFHLG+Uzo2kV7V4kN91U49DD+d/NUKBquSNdFWUBGfNbbKAGrKOMPGaEWjPhiMRZOfrLpconbX/ExiOVszRdKHZ9KkQRsBJzy01D9D4aoyBqAO+MzlsnAcQLxzv2jtDe1anh1ORhiQpU/qmQmQR4r7vEHF/jf57/DH8KRnELZTvsLngp9W1B74EEupiBOKfWZdDNjybJVidDzmpY/vCcCNjR3Uv8IB8Eaj0t6pC3/BA4rLUY= +api: eJztWFtv2zYU/ivEeXHbqZGcppfoLUsTINvQZHHWPQR5oKVjmy1FqiTl1BP034dDyrJsq00CDAN2ebN4LjyX71zoGhyfW0hv4SM3gk8lwl0EukTDndDqIocULHKTLSACg18qtO5Hna8grSFHmxlREh+kMPFcbNmqsRBBppVD5YiXl6UUmdcZf7IkUIPNFlhw+uVWJUIKevoJMwcRlIYscAItUWdCOjQP833GVY9JKIdzNBDBTJuCu3D05ggaL5ehtRfKOq4y/PnRgjbT5RPYFS+wx2qdEWpOhCWX1TDFmUpl3GHeo061lsiVJ6Piyl3kA7JEFU7SUZdLMln8gQ+a++rQs/oUnsy2o82N4SuIQDgs7H4W6F6rjXu8xH5+UQ45FIE2+ZYpLSUCVFVBoD2ZnEIE788mp3DXD8CEDGr6J79WaFb9uOBXXpQyWHAi5T6gr9FVRlnGpdygmj3LccYr6ZjxZCaFdYxizIRl4+Q5bJJL10/a6A+rPkx6mnuSbdIOE1Jx7uHPuMrZOs6PMfReuAUb7SN9xEbHSfJ2fHx8+Pro7dF4fPxm5BVjzrjNUOVCzdl0xTx4ezZtynCofGBXKXS4uO1SDK3ONq8+fY1P3BWfU2a/6ZvCr67n3EybYd+2PBjRdaMD9uxUlyvmHWF6xkZk1kf6siPmLaPT0uBS6Moyg7aSzj5nf4vzO1V3C7bgUkK0pfEwSe6axuOZerAw1B6cqdAf2FIrG4B8mCQDnbnKyOK/riHv1vUT6/3/Pr3fp1u8BFQ+rfk67bh8lKO9m68DyHsGEPVoCD7vueNMqCWXIv82hkqjpxKLH56KJeu4q+yD5ocBVaC1fD6cENGCZDhb/uB7qTgzRpsuDK/2w3CuzVTkOartGLyIX/zz3T3ad/eDduxcVyr/17n7egjkJ1cXrAdnhl7gP4B2v/ZllRFu5YfVFLlB89L36Nu7Jqoh0/qzQP91Fz2w9PvB3HZttraRJk+BbqFpCJba+rBwt4AU4uU47oTj7qFh0SzRWG9QZSSkUIcIN2kc1wttXZPWpTau8TN6/eJIayBayK7f0iAFqTMuF+HWbeNvFsiIQN2fNgC3QEY4CLcf+AHULVxrde+Sd8mgJmL9hpYNOjZ6Fs6Vg3oC86CmJqwLIVsT4gtOrzO0mRqloOG3HmxweXV2fXJz9nJyNplcXH6geULXtXJNtJX1TktrojfIjzfPBGvu8zVgf/r9xoOLiuF680Q8Cwv29vbkb0iGJ3vSn9tJZ3y39LfDeHPQm8G0DPWnbq8awi6d7C5atQ/m7o7W6d5ZUSliM+2D05bQpX8jI7uqplJklKj9dGrG/erFeObEEv0On2mKCm3be3XChGJrtVRIhVbCaTLISzqjK8L5QmsXjKTuxDOP0FAmlDKbxvH9/f1BxotK5fwg0wWFQYoMlfXpaAP7S3sS7QjnOrOdtND+OzY4Q4Mqw7hVZGO/IKGxwdnxQXKQhJqxruCqd9Gju8RW+DocOvzq4lJy4Tcrb2vdNpBbWI63WsA6y/QvRugFt1DXU27xNyObho6/0EuQ2tlGLrQ6WCDPAzYCTuE0dP+XN2TIBoB7uzO1ySBxkmVYuu/y3vW64dXl5IYKqv1HpdA5yRh+T/+28HtIgaDoA+Ir3Z/VILmaV340QNBJ5ccrishmGd2uVu/Vuj2oVc/Cug4cN/ozqoY6anDF0bd/njV/AnuTLE0= sidebar_class_name: "post api-method" info_path: versioned_docs/version-8.4/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

required
- -Search variables - -
    filter object
    sort object[]
  • Array [
  • ]
- -Success - -
Schema
    items object[]
  • Array [
  • ]
- -Data invalid - -
Schema
- -Unauthorized - -
Schema
- -Not Found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx index be9702fae42..22521123f49 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx +++ b/versioned_docs/version-8.4/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: eJzlVktv2zgQ/isET9vWsZw2XRTGokAKuIV3i00QO+ghyIGWxxYbiVTJkVNX0H/fGVJy/FCx7bGoD5Y4nPd8M6Naolp7Ob6T186m4P3UeFQmBXk/kLYEp1BbM13KsfTwpQK6eZ/bR/9u+w9s5UCWyqkCEBzrqKWhA7E+hDtt6LVUmNH7EnzqdMnKiEiywq5EGU0K3dkcSEdGtAOyh66CgfRpBoWS41ritmTV2iCswRHryrpCYST9eSGb5p7FfWmNB88SL0cjfhyanlUp2yT51JIqg8zyPHnOjxNjyjkVIkEo/B7do9NmTSbpN5AXfXamZqNyvRQcEHg8tKfKMtdpSG1CSVjkULz47Fmuxwm7+AwpKyBOKgjqGB2lDCv/v5l59VKSiwWFrNbQEwKXqc1+32UknAZONxpzJk2cs052mTg/zcStURVm1ulvVNYfSvsvFfHFacQ3sebA1fe2cikIY1GsbGWWvwcQXve1xOX1VOwFLCAI/Ab5IKKHtHIat2FKLkA5cGc8Jcd3982gphTYBw3hdH88LD8Aim72ihUP377ZKRZbEccujePM8sBeQ0gOD+CxTDbnSStz1sn4pCaRJum0nwXtkr11m26kVy4n8TpmvxknSZ1Zj824Lq3Dhpg3ymlFlQop57tY+ZWqck51blOVB/JxYPMMBF/w0uCQkM6MkWh9yFlmG4fq3ozejHo1Met3tDwh50lPhlj26onMvZrCiukqOWO+GHRXvae9Ueq4Htt9eHU9ubmcT85mk9lsevVvtxtbOfJwHxE7La2LwSE+RybZcb/vwPz3p3kAnjYrG8RbAF6F9Q3iulpQU3EopwFbocI+pAfqDQhlliK1RZkDj69jkPGb6NRSM4nCGo2WoR8k0dmKkZBZi9wOsbdJNbsVgcRBeULR4+PjMFUFTUQ1JIOcBHISaHczb5u3jy1lcCS8tKnfSWsbzomDFTiGcdIq8glrZSDHYM+Ho+EoospjocyeoZ/tsYMs7gqG8BWTMldU3KZ1uW77705uzuOkOuxAoo2jyqMmJKTFXrqTdb1QHm5d3jRMJjYXBsdT64VGXWrP79T5K5V7OHFyN2blHzftV9Yz8f0vsd6YOnybbWj8vOITvQbghv+G5pnMQC0JqexVvLkkkJW4J8Orn7tpN6w+TOZ0zV8Kewk9QnxQ2OvCX+8Cg5jbBzBvdw4hH9mlpvkP5a+9Cw== +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.4/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
- -Unauthorized - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/sidebar.js b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/sidebar.js deleted file mode 100644 index ea231cae0c3..00000000000 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/sidebar.js +++ /dev/null @@ -1,180 +0,0 @@ -module.exports = [ - { - type: "doc", - id: "version-8.4/apis-tools/operate-api/specifications/operate-public-api", - }, - { - type: "category", - label: "ProcessDefinition", - items: [ - { - type: "doc", - id: "version-8.4/apis-tools/operate-api/specifications/search-2", - label: "Search process definitions", - className: "api-method post", - }, - { - type: "doc", - id: "version-8.4/apis-tools/operate-api/specifications/by-key-2", - label: "Get process definition by key", - className: "api-method get", - }, - { - type: "doc", - id: "version-8.4/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.4/apis-tools/operate-api/specifications/search-7", - label: "Search decision definitions", - className: "api-method post", - }, - { - type: "doc", - id: "version-8.4/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.4/apis-tools/operate-api/specifications/search-6", - label: "Search decision instances", - className: "api-method post", - }, - { - type: "doc", - id: "version-8.4/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.4/apis-tools/operate-api/specifications/search-4", - label: "Search flownode-instances", - className: "api-method post", - }, - { - type: "doc", - id: "version-8.4/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.4/apis-tools/operate-api/specifications/search", - label: "Search variables for process instances", - className: "api-method post", - }, - { - type: "doc", - id: "version-8.4/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.4/apis-tools/operate-api/specifications/search-1", - label: "Search process instances", - className: "api-method post", - }, - { - type: "doc", - id: "version-8.4/apis-tools/operate-api/specifications/by-key-1", - label: "Get process instance by key", - className: "api-method get", - }, - { - type: "doc", - id: "version-8.4/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.4/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.4/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.4/apis-tools/operate-api/specifications/search-5", - label: "Search decision requirements", - className: "api-method post", - }, - { - type: "doc", - id: "version-8.4/apis-tools/operate-api/specifications/by-key-5", - label: "Get decision requirements by key", - className: "api-method get", - }, - { - type: "doc", - id: "version-8.4/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.4/apis-tools/operate-api/specifications/search-3", - label: "Search incidents", - className: "api-method post", - }, - { - type: "doc", - id: "version-8.4/apis-tools/operate-api/specifications/by-key-3", - label: "Get incident by key", - className: "api-method get", - }, - ], - }, -]; diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/sidebar.ts b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/sidebar.ts new file mode 100644 index 00000000000..a04011b6305 --- /dev/null +++ b/versioned_docs/version-8.4/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.4/apis-tools/operate-api/specifications/operate-public-api", + }, + { + type: "category", + label: "ProcessDefinition", + items: [ + { + type: "doc", + id: "version-8.4/apis-tools/operate-api/specifications/search-2", + label: "Search process definitions", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.4/apis-tools/operate-api/specifications/by-key-2", + label: "Get process definition by key", + className: "api-method get", + }, + { + type: "doc", + id: "version-8.4/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.4/apis-tools/operate-api/specifications/search-7", + label: "Search decision definitions", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.4/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.4/apis-tools/operate-api/specifications/search-6", + label: "Search decision instances", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.4/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.4/apis-tools/operate-api/specifications/search-4", + label: "Search flownode-instances", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.4/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.4/apis-tools/operate-api/specifications/search", + label: "Search variables for process instances", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.4/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.4/apis-tools/operate-api/specifications/search-1", + label: "Search process instances", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.4/apis-tools/operate-api/specifications/by-key-1", + label: "Get process instance by key", + className: "api-method get", + }, + { + type: "doc", + id: "version-8.4/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.4/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.4/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.4/apis-tools/operate-api/specifications/search-5", + label: "Search decision requirements", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.4/apis-tools/operate-api/specifications/by-key-5", + label: "Get decision requirements by key", + className: "api-method get", + }, + { + type: "doc", + id: "version-8.4/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.4/apis-tools/operate-api/specifications/search-3", + label: "Search incidents", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.4/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.4/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx index 228679c300d..4d986173a6a 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx +++ b/versioned_docs/version-8.4/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/isEP22dazldNhTGMCBFvSJrtwSxiw0IgoKWzhYbidTIk1NP0H/fHSkpdqyh/Vr0i82Xu+fenjuqkai2Xs5v5WtItdfW3MA/tXZQgkEv7ybSVuAU0sVlJufyU1m82r+F/YczOZGVcqoEBMcAjTS0IZF72NOdNrSsFOa0zsCnTlcMQoekLexGZJ094Q4NTmS3JWPoaphIn+ZQKjlvJO4rxtcGYQuORDfWlQrj0c/nsm3vWN1X1njwrPFiNuO/Y/vLOk3Bs6nUEpTBgA2fMKHgeH1i0aPTZkv4bTuR52OYl2anCp2FWMDjMbaqqkKnIYdJ5ey6gPKHj571RmzZ9UdIGYAkKfOoYyQeFdb+s1n48YUkF0sKT21hJAKuC0GZdPwyHpzGTTcaCz5aOGfdkImz00y8N6rG3Dr9L5XwKA3Pkmdff8TnpxHfxJoDV9/b2qUgjEWxsbXJvg0i/DTWEhfXl+IgYAFB4RvIBx16SGuncR/G4hqUA/ecx+L89q6dNJQCe68h7O6eTsc3gOOjUSgv/v7jnVjvRZywNHlzyzN5CyEtPGvnMtmdJZnLkoaE2jDR2B2364d07WjGySamt50nSZNbj+28qazDloR3ymlFpQg55btY2o2qC85lYVNVhOOnnq9yEHzBzwAPeKQ9kyBan3Ia2cYx3MvZy9koEov+D8ojNR5xcsRqFCcKjyKF96Iv1ZLlYtB9eYZyq0q/DSnvXrir68XNxWrxfLlYLi+v/uxfu06PPDws+YDSuRgc4n0Ukr30bz1bf/9rFZilzcYG9Y5hV+EhBnFdr6lrOJTTgK1Q4XGjP9Q7EMpkIrVlVQDPJ+qccNlTnVeih6VuEaU1Gi1zO2iiszUzIbcWme+xeQma3YpE4qA8sejh4WGaqpJGnpqSQU4COQn0ELNsl7d33cnkiXJmUz9oaxv2iYMNOCAvkw7IJ4zKRI7Bnk1n01lklcdSmQNDX95ER/kbShW+BqpCUVnbztmma7BbueNPH2ox+p1HEO4yolJsllvZNGvl4b0r2paP6XVwofUfeyt0YqY9r6mDN6rwcOLLMCjld903Wfa9+MzH06j/PYvNPrR3UfOOloGe4belsSRzUBnxkV2LNxdEpQoPdIaPJG6cYfy8WaxIhl/9gww+IXdAHfXjl1dBQKzsPZhfB6+Qt+xX2/4Hak+jnw== +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.4/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
- -Unauthorized - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/xml-by-key.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/xml-by-key.api.mdx index 99132022d14..0ab292f3e47 100644 --- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/xml-by-key.api.mdx +++ b/versioned_docs/version-8.4/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/isEP3WZYzltNgTCUCDFvCBrtgSxgw0I8oGWzhYbiVRJyokn6L/vjpTkN23t16JfbL7cPff23FE1d2JlefzI74xOwNpfYSmVdFIr/jTiugQjaHOd8pi/FvmHzUfY8BEvhREFODCkW3OFGxR49ndS4bIULsN1CjYxsvR4MUddppesDKZYurU14gY+V9IA2nGmghG3SQaF4HHN3aYkcKkcrMCg6FKbQrhw9PM5b5onUrelVhYsabydTOhv3/isSsgq6icaoZTz2PDqIoyL1kcWrTNSrRC/aUb8fAjzWq1FLlNGzoN1+9iiLHOZ+PRFGPIih+LHT5b0BmzpxSdICAAlMelOhkisE66yX8zCu7ccXSwwPLGCgQioKAilkuHLcHAcN95Il9PR1Bht+kycHWfiQYnKZdrIf7CEe2k4iU6+/YjPjyO+DzUHqr7VlUmAKe3YUlcq/T6I8NNQS1zeXbOdgBl4he8gH3hoIamMdBs/ExcgDJhTmonx41MzqjEF+lmC3z0djsYrcANzkQnL/v7jhi02LMxWnLmZplm8Ap8TmrIxj9ZnUat8ulW2UY1KjR9v5JtZd+O6MjjweB1y3cRRVGfauiauS21cg8JrYaTAuvgE012o81JUOSU214nI/fFhGPMMGF3Qg0Cj3uGeGBGsjymnZGMf7mJyMRlEItH/QNnyZIuTOVcO4gThQST/eHR1m5FcCLqrVV97Ucrw9LVv3e3d9P5yPj2dTWez69s/u3ev1UMPd+vfo7QueodoH4R4J/1bR93f/5p7mkm11F69pdutf5CB3VULbCEK5ThgzYR/6fDPyTUwoVKW6KLMgYZVR7KO97RiHSy2Dis00kcT0b2mM7oiJmRaOyJ/6GSEJrcCkSgoiyx6eXkZJ6LA+SfGaJCSgE4Cvsok2+btpj0ZHSinOrG9ttR+HxlYggH0MmqBbESoROQQ7Nl4Mp4EVllXCLVj6Cs7ai95fZ38d0GZC6xp03pat932yNdnYRwd9huexgGUWg55FTrnkdf1Qlh4MHnT0DG+G8YPhW2j+bZMpaU1tvdS5BaOfOtHKH9z334t/cD+75tqMJiOz2rjGz2vaIdLT1T/2+C04hmIFJlJfoWbSyRV6XZ0+m8naqF+MF1N5yhDHwM76TyguUcd9OOXD16AzfUzqPe9V4625FfT/AsOj6m5 +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.4/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
- -Unauthorized - -
Schema
- -Requested resource not found - -
Schema
- -API application error - -
Schema
+ + + + + + + diff --git a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx index ddc276e8766..22d0bbbfa21 100644 --- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx @@ -5,55 +5,282 @@ 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: versioned_docs/version-8.4/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.4/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx index b8d1f2fd781..e67e4158f0a 100644 --- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx @@ -5,51 +5,289 @@ 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: versioned_docs/version-8.4/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
- -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.4/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx index 1bc09cf2927..a5e7c09c591 100644 --- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx @@ -5,40 +5,143 @@ description: "Get the form details by `formId` and `processDefinitionKey` requir sidebar_label: "Get a form" hide_title: true hide_table_of_contents: true -api: eJzdV9tuGzcQ/RWCL7XR1SWpEQR6Uxs7VZMmgSW3QB0DonZHEmOK3JBcKYKgf+8MuStprbWt+rFPtpbDuRyeORxuuBczx3u3/MrYBb9LeAYutTL30mje4+/BMz8HNsVVloEXUjk2WbMxfRhkYyZ0xsa5NSk49w6mUkva+QHWY2bheyEtZOx7AXbNcmHFos1G6G28BOvQbHy4xKRjJsQVKrjF34XD7UarNSWA8XNl1viFgjt2JqcMFrlfJ0x6jOathCW4kO9czubgPCsDnbd5wk0OVpD/QYaVzcCHkhMeooNHS8RhwzX+wPVYIH8ICKU/eMfMdAcLuZa0lAs/x/+rsnnP2wIS7tI5LATvbbhf5+TZYaJ6xrfbZBesCcCj0NcwBQs6BeZNiF7uQlyqbbtcAq4vTKbErLH0cq1WP/tLKPnoMT2R0lQo15ST1B5mYNGWPAgfP725wCzvaL/LjXbgaMfrbpf+1BP9rJkr0gANsqKwGjLKIjXoV3uyF3muZBrI0PnmaNPmOA0z+QapJ4JYoo6XMaTMjuFrgqrQEktmMsOYcirBVqDBYgJZVuLDVtLPJQKqd+fZ5tukmRHPxq1R5Jge7AwX8ZAzRmewFApTo6zG1Anto5DU35i4ys5DSl56BafVHkzrTbJ9nHxNHgI25YmFzRUrT6DJU8QN9ZC06EIphsBThqlwIVuh64eTsNVcYiFBXnIkHiYT9aXG8Z/czj2dJK5b5lJE2koTTxOrENoPTmROtCaZEc6ZVAqPgYgndTglHpVC3Tr0OjFGgTju3YHOiO+ojqs5hASPqiBQsuiQYRdrg9TQ7B+ACZBq4+oOu9C4dA0gtUShfPIckG0SmIpA4aq5LrsYF2jpontx3Md99GIt5iL3jUz56/2VVENlkCWsqW+ScJ1UdwuqlMshpZbM9ufmQsFTU+intAK9TxQsfv6vmuG88IV7lru/vD46uD5xKthimeKIh7+PRl9Y9I7dku16LuJWSWWbIeQMfohFriBhF90uOq0IIdhX/qvI2DVqAl6ZX3ncTGYXD8w+IURXBNHeiJB1htHVg8e4QOjF7ASR6LO4EItCsJaokxRkgpf4lB0Y1ysK5iZNC2tJ1KkLNJaPivd8zMvIpdKe3dxgg9F9pYy5L3J2BrM28ViZGSvrcOd14gYPgbGhVj835SQRpgi8/Xu8s3zVCfdeZxMpucU1B3ZZjReFVWi2iczZ9jqdzdw4v+1tcmM9GS9RNgSyLNCF1mJjhEbDncqkQoXPTdJBC6TwFWr9LwMWo8dbBWPU3b3tvu02eiLTR7zsWb/3M/c+b/QTjRs9hevcAR6m9OsATopHIRHpW1yYgLBgW/d0793eHZoOyWXEp9qwO3uRyzg7lcPMqD/88HEwHLWGl8Ph4POnahopNz7M+LfwuTURNHiKAlPGyzs2f5hPacYRS5yC6YRIH4egpq0/hUa2ZCxVhaM5MqB0mP8uvRKmAErQ62DEK+urSgz++HsUmCf11ITtJQNHwt0riYPt9eVwRGgeY15ZSGonCyJbt7xp4SQdwD9QM5oRLOKVYU2SlGFB48CkcFLT2FAqKXWlMnrmsEFpHscexAiOOiXeDaVaijQwK9KbynTI7dVq1U7FAhVDtFOzIFgwOpDu93bz5sfyS/Jgc2ZSt9stTfjdsdWE0ykduU5tOuDLV5Hozi+EPohCLxkRromHkG32av+/eu+UlPPww3dyJZD22xLiTalWt4RWvIIc/u2Vbx5stag7t3yzoVa4sWq7pc9xhqdOzaSjFthP8Y9CenZd4nLOTnzBNCYe+uixhxKOsgVt4fSMOT21l79onkhx/3zaZ3W3l/WXo9f89GzMpBJDXQOnyrA85u0dWs5RIFCAKKm42MeHU+4Pth29laia3eX3/pKE6l9fSKq9 +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: versioned_docs/version-8.4/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, processDefinitionKey, and optionally specified version is not found. - -
Schema
+ diff --git a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx index b54a0fce3df..8be7ef70aed 100644 --- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx @@ -5,40 +5,223 @@ 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: versioned_docs/version-8.4/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
- -An error is returned when the task with the `taskId` is not found. - -
Schema
+ diff --git a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx index 7fa58a63366..568113514d3 100644 --- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx @@ -5,47 +5,118 @@ description: "Get the variable details by variable id." sidebar_label: "Get a variable" hide_title: true hide_table_of_contents: true -api: eJyVVtty2zYQ/RUMnpKpbkn9kNGb0tipmjTJWHI6U8czgcilhBgCWACUouHw37MLkBRlya78JBE4ezs4u0DJvVg6Pr7lX4WVYqHA8bseT8ElVuZeGs3H/D145lfANjWEpeCFVI4tdvs1mQ54j5scrCCzaYqGS/CN27c7XOnxXFixBg+WYpZc4wfiGicBchh7jnGn75jJDjKgUJK2c+FX+N/Cf4W0gDG9LaDHXbKCteDjkvtdThGct1IveVXdEdjlRjusFPdfj0b0cxj0s2auSBJwjlnwhdUQikuM9qA94UWeK5mESoc/HBmVx0HN4gcknqq2xIuXMaRMjxM7t+yqV3N2jgNCnnSxEao400dWKMUC/qSn1IrMHxNIlmHrMdPe/3D0jAwfSw6z89Irsn5HqTRK/Bpc0y5oof30zNOIaDoU4ZxJpPCQsq30qyfiNiGva8XhJm1fjC6OKZtoBtYay+RedGy7An3Yem3E7/um+U422niWmUI/pVTkGA3Wvz1Xsc4LX7gOTqL7JVgEZsauhY9Lv78+Yg6rqrGYtPBYWY7th6m5UMSf8/kXFr2zxKTtMUYmmkYdsCv8gp9inSvosYvRCJ2mVBQ4Jtg3/lak7BpHADj/jUdjgl08gH1Ciq6Ioj1I6JQ5w4wOal5jx4vlGbqbsLgRi0KyNjINQRZWQsY64MOKAtwkSWEtjZSKphiWr5MzYl5GddR4dnODUkT2mTLmvsjZC1gOcBc/l6yuw708lGPwEDQYavUrUw/pMJhxkI75cPNq2AjLDcu9xirEOLCbZnIXViG8jAqqxsNhuTLOV+MyN9YTuPVCldFelHwmCkVyUSYRKiyfajba6E6vyZcpi9EDaRTj0N2b0ZvRSU8EfcTLXv17Pyvv85N+Ivikp3CpOMBDlX4XyEnwSCQyfosbCxAWbP8eaOuuC52Ry8hPY9BqQOTyA1o0057PJ7MPH6ezeX92OZtNP39q7r/a8GHGf4Tl/kI4HCKiwJS1r4cAzQqj1Y6JDd7hYabg4gxU1v9baFRNyhJVOLqiA0vd/Nv0apoCKfQdQbxBXzVD4a9/5kGBUmcmmNdKnAt3r6Tz7PpyNic2jzlvEJLayoJId31v+oWL5HemGvOGWeQrxZokTYg1FssWhZOaLnBsTrrIqTuV0UuHjcrQC/YiRnDUMf8CLKCZmiIJyorypjIdanu73Q4SscbJIQaJWRMtGB1ooo/bR8zHeqX3wDg1iWutpQnfQwsZWMA+HtaO3DBczMh6rH/zKgrd+bXQnSj0FhPtdfCQtnI/+Z/zaqtP1cNPP8yVQGVVdRVlPRhuKaFuU/f4uPNqQ1XHFr/lZUmqu7GqqmgZh7LdxU5ok6YWSaWj/ziAMqEcPFHHi+v6cfeSPf4YPFlB00t6x9s3D8e/QcvdR2d1h+gVagw1TMlFwARfgLnvmB49+qib2zn6/pK0/guNJuUD +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: versioned_docs/version-8.4/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.4/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx index a3c3947691f..65c27d552a8 100644 --- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx @@ -1,59 +1,188 @@ --- id: save-draft-task-variables title: "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:
  • 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.
" +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:
  • 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.
" sidebar_label: "Save draft 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: versioned_docs/version-8.4/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. - -
- -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
+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.
+ + + + + + + +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.4/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx index 3b3b3a713f5..05d37a8a59d 100644 --- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx @@ -5,51 +5,190 @@ description: "This method returns a list of task variables for the specified `ta sidebar_label: "Search 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: versioned_docs/version-8.4/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.4/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx index 689a774a8b7..d74819a2278 100644 --- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx @@ -1,75 +1,483 @@ --- id: search-tasks title: "Search tasks" -description: "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.
" +description: "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.
" 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: versioned_docs/version-8.4/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.
+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 follow-up 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", + ], + }, + 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"], + }, + }, + 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 [
  • ]
  • sort object[]
    - -An array of objects specifying the fields to sort the results by. - -
  • Array [
  • ]
  • 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 [
  • ]
- -On success returned. - -
Schema
  • Array [
  • variables object[]
    - -An array of the task's variables. Only variables specified in `TaskSearchRequest.includeVariables` are returned. - -
  • Array [
  • ]
  • ]
- -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.4/apis-tools/tasklist-api-rest/specifications/sidebar.js b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/sidebar.js deleted file mode 100644 index e4da18f0217..00000000000 --- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/sidebar.js +++ /dev/null @@ -1,78 +0,0 @@ -module.exports = [ - { - type: "doc", - id: "version-8.4/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api", - }, - { - type: "category", - label: "Form", - items: [ - { - type: "doc", - id: "version-8.4/apis-tools/tasklist-api-rest/specifications/get-form", - label: "Get a form", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Variables", - items: [ - { - type: "doc", - id: "version-8.4/apis-tools/tasklist-api-rest/specifications/get-variable-by-id", - label: "Get a variable", - className: "api-method get", - }, - ], - }, - { - type: "category", - label: "Task", - items: [ - { - type: "doc", - id: "version-8.4/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables", - label: "Save draft variables", - className: "api-method post", - }, - { - type: "doc", - id: "version-8.4/apis-tools/tasklist-api-rest/specifications/search-task-variables", - label: "Search task variables", - className: "api-method post", - }, - { - type: "doc", - id: "version-8.4/apis-tools/tasklist-api-rest/specifications/search-tasks", - label: "Search tasks", - className: "api-method post", - }, - { - type: "doc", - id: "version-8.4/apis-tools/tasklist-api-rest/specifications/unassign-task", - label: "Unassign a task", - className: "api-method patch", - }, - { - type: "doc", - id: "version-8.4/apis-tools/tasklist-api-rest/specifications/complete-task", - label: "Complete a task", - className: "api-method patch", - }, - { - type: "doc", - id: "version-8.4/apis-tools/tasklist-api-rest/specifications/assign-task", - label: "Assign a task", - className: "api-method patch", - }, - { - type: "doc", - id: "version-8.4/apis-tools/tasklist-api-rest/specifications/get-task-by-id", - label: "Get a task", - className: "api-method get", - }, - ], - }, -]; diff --git a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/sidebar.ts b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/sidebar.ts new file mode 100644 index 00000000000..a5475af9533 --- /dev/null +++ b/versioned_docs/version-8.4/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.4/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api", + }, + { + type: "category", + label: "Form", + items: [ + { + type: "doc", + id: "version-8.4/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.4/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables", + label: "Save draft variables", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.4/apis-tools/tasklist-api-rest/specifications/search-task-variables", + label: "Search task variables", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.4/apis-tools/tasklist-api-rest/specifications/search-tasks", + label: "Search tasks", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.4/apis-tools/tasklist-api-rest/specifications/unassign-task", + label: "Unassign a task", + className: "api-method patch", + }, + { + type: "doc", + id: "version-8.4/apis-tools/tasklist-api-rest/specifications/complete-task", + label: "Complete a task", + className: "api-method patch", + }, + { + type: "doc", + id: "version-8.4/apis-tools/tasklist-api-rest/specifications/assign-task", + label: "Assign a task", + className: "api-method patch", + }, + { + type: "doc", + id: "version-8.4/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.4/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.4/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api.info.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api.info.mdx index a8d732b0d7d..50bd714d180 100644 --- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api.info.mdx +++ b/versioned_docs/version-8.4/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.4/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx index cbc08aa0846..6d5012e4f13 100644 --- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx +++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx @@ -5,47 +5,223 @@ 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: versioned_docs/version-8.4/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.4/apis-tools/tasklist-api/tasklist-api-tutorial.md b/versioned_docs/version-8.4/apis-tools/tasklist-api/tasklist-api-tutorial.md index 3dad8bb79cd..5ecdd5ba456 100644 --- a/versioned_docs/version-8.4/apis-tools/tasklist-api/tasklist-api-tutorial.md +++ b/versioned_docs/version-8.4/apis-tools/tasklist-api/tasklist-api-tutorial.md @@ -250,9 +250,8 @@ export class TasklistModule implements OnModuleInit { logger.log("Tasklist credentials fetched"); axiosRef.defaults.baseURL = config.get("TASKLIST_API_ADDRESS"); - axiosRef.defaults.headers[ - "Authorization" - ] = `Bearer ${credentials.access_token}`; + axiosRef.defaults.headers["Authorization"] = + `Bearer ${credentials.access_token}`; axiosRef.defaults.headers["Content-Type"] = "application/json"; setTimeout(this.onModuleInit.bind(this), credentials.expires_in * 1000); // we need convert minutes to milliseconds } diff --git a/versioned_docs/version-8.4/components/best-practices/development/writing-good-workers.md b/versioned_docs/version-8.4/components/best-practices/development/writing-good-workers.md index b00e9731c2b..a0a4079432a 100644 --- a/versioned_docs/version-8.4/components/best-practices/development/writing-good-workers.md +++ b/versioned_docs/version-8.4/components/best-practices/development/writing-good-workers.md @@ -62,7 +62,7 @@ If performance or efficiency matters in your scenario, there are two rules about 1. Minimize what data you read for your job. In your job client, you can define which process variables you will need in your worker, and only these will be read and transferred, saving resources on the broker as well as network bandwidth. 2. Minimize what data you write on job completion. You should explicitly not transmit the input variables of a job upon completion, which might happen easily if you simply reuse the map of variables you received as input for submitting the result. -Not transmitting all variables saves resources and bandwidth, but serves another purpose as well: upon job completion, these variables are written to the process and might overwrite existing variables. If you have parallel paths in your process (e.g. [parallel gateway](/docs/components/modeler/bpmn//parallel-gateways/), [multiple instance](/docs/components/modeler/bpmn/multi-instance/)) this can lead to race conditions that you need to think about. The less data you write, the smaller the problem. +Not transmitting all variables saves resources and bandwidth, but serves another purpose as well: upon job completion, these variables are written to the process and might overwrite existing variables. If you have parallel paths in your process (e.g. [parallel gateway](components/modeler/bpmn/parallel-gateways/parallel-gateways.md), [multiple instance](components/modeler/bpmn/multi-instance/multi-instance.md)) this can lead to race conditions that you need to think about. The less data you write, the smaller the problem. ## Scaling workers diff --git a/versioned_docs/version-8.4/components/tasklist/introduction-to-tasklist.md b/versioned_docs/version-8.4/components/tasklist/introduction-to-tasklist.md index a899d3d613c..8dd56ec035b 100644 --- a/versioned_docs/version-8.4/components/tasklist/introduction-to-tasklist.md +++ b/versioned_docs/version-8.4/components/tasklist/introduction-to-tasklist.md @@ -4,7 +4,7 @@ title: Introduction description: "Tasklist is a tool to work with user tasks in Zeebe." --- -Tasklist is a ready-to-use application to rapidly implement business processes alongside [user tasks](/components/modeler/bpmn/user-tasks/user-tasks.md) in [Zeebe](/components/zeebe/zeebe-overview.md/). +Tasklist is a ready-to-use application to rapidly implement business processes alongside [user tasks](/components/modeler/bpmn/user-tasks/user-tasks.md) in [Zeebe](/components/zeebe/zeebe-overview.md). With Tasklist, orchestrate human workflows critical to your business and reduce time-to-value for your process orchestration projects with an interface for manual work. diff --git a/versioned_docs/version-8.5/apis-tools/frontend-development/01-task-applications/02-user-task-lifecycle.md b/versioned_docs/version-8.5/apis-tools/frontend-development/01-task-applications/02-user-task-lifecycle.md index cabf0ea6826..4538d006ee9 100644 --- a/versioned_docs/version-8.5/apis-tools/frontend-development/01-task-applications/02-user-task-lifecycle.md +++ b/versioned_docs/version-8.5/apis-tools/frontend-development/01-task-applications/02-user-task-lifecycle.md @@ -5,7 +5,6 @@ description: "Understand and decide on the life cycle of user tasks in your appl --- import GHIcon from "@site/src/mdx/GitHubInlineIcon"; -import TaskLifecycleUI from "./img/task-lifecycle-ui.png"; The task life cycle defines how users can interact with tasks and how work on these tasks is performed. It defines the core actions of your task application, so you should define it before implementing your logic and user interface. diff --git a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-id.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-id.api.mdx index eef02cea212..4b331752e6d 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-id.api.mdx +++ b/versioned_docs/version-8.5/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: eJzlV1tv2zYU/isCn7bOiZw2HQpjGOAuSqHVsI3YaQcEQUFLxzEbidRIyqkh6L/vHOpix5a9bE8b+iSK537Vp4JZ/mDY4I5dQSSMUDKUxnIZAbvvMZWB5pYuYzZgiw0+eizjmqdgQZNYwSS+IFEQSUg8Zdyu8ByDibTISBovw9hTSy+ubXiiMdJjGv7MhQY0YHUOPWaiFaScDQpmNxlpNlYL+cDK8p6YTaakAUP01/0+PZ4bmuVRBMag4khJC9ISC8+yREQuEv+rIb7i0I5afIXIUoCa4raisoKBHfrSY4+w2bkXaOoBNAovlU65ra5+viROjNTCoY4eA5mnlPnrYTgKrvAi+DQc3Q7n7nw7/jiefB6702wa/BZeh3h/j/pgzZPcxXLVqfgZyzUXSa67uTBOStUVLIUUxPzxxTHVok2vvFyw6YCwO6sNeevT3zCOXfedYPiEfSqqip90783rXam5Yz1esissyCycjL/Mh+9HARJG4Ty4GY6+BH9Mb4IZkfYqt60o1RD7OE/sqdpBHMost2aHh2vNNzRlFlLzrxtXHssY2e2iIMkKm9DV/o5wLjqO1utJbv8bbmOS8wSOtI8jyRi+vagvTmSgCrdiAcml7TR4QgESiXzZtctCicGJ2KMVCcYe32mYwUUC6U//dLfRasrNC2cjxYHnD92pbvd5F9F2DtNuUgKtlW4z8eYwE9dKL0Qcg3yeg1f+q/9/uJeH4d5UBQcqvVG5jsCTynpLlcv4++iCt13zMJyG3k7AHjiB7yAfhCIgyrWwG4e5FsA16DOHQe7we1JgCtSjAPd2v4+9PoA9RF7eYuM5zIZQbqUI3j2ASwWhtwHz1xd+I3PWyBi/EHHJyBm9bvBfrhPkL6rklgPfL1bK2HJQZEpbYl5zLTgWwmWUaFVhl9x9AVmiIp64632/5yvwiECrn9CjxXdqgcr6ucMhaOO5unf9d/1OTcR6RMu2MbZ6VtZmnXoq5k5NDqI2hZoRXxV0U5ztJzETBJmarxqbTBE8zIOzWQsdHJKu5dDD3YK3WmoXnUP0XjGxhvu66dXfP89dXwm5VE687q+JQ/fgTfMFzgyFchiw8rjD0/iwYg0el7EXqTRLgLZTDQPbpqKT16jFWfFShShOUWc7SatVTp2wUspWgIpGF1WTW1UjUVAGu+jp6ek84ikuPH6OBikJ6CQg9ifeOm+j+qa3JxyryLTSQrl3X8MSNKCXfq3I+A4/NACRXZz3z/tVVxmbcrlj6PQIPctZWx4L36yfJRxLWdYOFvV43bH1Bduize2A4eUAVWIbVYNyx4piwQ3c6qQs6Rq/C9oN/Xau3BTGwtAZ53jJEwMHPrUrkv1wU/9w/egd/ynrDKFpXrlhLexirP4VItxWErRdAY+xC8mpijDEBsrsjsjB3xiNTbuGPgRz5OU55anN5V5rO+2d7vzy3jF4c/UI8tfWOUuv5F9Z/gXHqxkU +api: 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 +info_path: versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/by-key-1.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-1.api.mdx index 79260b9703a..2064069d31a 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-1.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-1.api.mdx @@ -5,55 +5,154 @@ description: "Get process instance by key" sidebar_label: "Get process instance by key" hide_title: true hide_table_of_contents: true -api: eJzlVllv4zYQ/isEn/ZwLGc3LRZGsYA3cRZu0sSI3e1DEBSUNLa5kUiVpJwagv57Z6jDjq0E3sdi/WDxmHu+4UzBnVhaPrznU6MjsHairBMqAv7Q4zoDI5zUahLzIQ83V7D5+5T3eCaMSMGBIcaCK9zg/SNs8E4qXGbCrXAdg42MzEgCHiI30wuWVXqYbBT1uIF/cmkAlTiTQ4/baAWp4MOCu01GoqVysASDpAttUuGqo1/PeFk+ELvNtLJgiePDYECf56pneUQ6kT/SKEo5IhFZlsjI+xd8t0RXHGrW4XeIHPlsKBpOVlrI12PM83yk+hsGS1Y6XmX6+IGYwixVTT7iHR7rjFRLL1YYdOPqeDM8/WWin250DE2Sj+dHeuMuhINOa0DFL94hZ9cNMeUpAW90Pp98G+PB+e0f0+vxfHxB69HN+fgalw/bGF7AQipJ+Trebky2UO7VIO4B38vmkTRRngjzZu/2rRcqXUKS9kumxF+Pn3UhcKLWIpExI6iDdS8jEX0NE0jf/ygiKcy5PRJfKVotlt35auuy67I6OLjYicnYGG3aSHw8jMSlNqGMY1DPY/AuePf/d/fs0N27KuFAqbc6NxEwpR1b6FzFPwcKfumqh9F0wnYcZuAZfoJ40IsIUW6k2/jmGQI+QubEN5R7fOwKDIF+lOB3D/s99Cu4gwbKwg2rei/25JWmVr0EHwrqwkMerE+Dmuek4bFBgSwlJ2PMumnkuUmQvqiCWw6DoFhp68phkWnjiHgtjBSYCB9RuqsSuxB5QpFMdCQSf7xv93wFjC5oVKAhwOGeIFBp7/vHGHU8F/dp8GnQKYlIX5CyBcZWzsq5rFNORdwpyQ8WTaJmRFc53SSnTbbI5JUPfj0F3U7Hd6P5+GQ2ns0mtzfNRFTzUW/fSXgrpTbRG0T7iog31JcNVn//a+5xJdVCe/YaX7d+UgM2zUOsGXLl0GHNhJ+C8OPkGphQMYt0miVAr9M+qmjFGrFYKyzV2Hs1IdtzOqNzQsJKa1f1cypdFE1mVUAipyyi6OnpqR+JFB880UeFFAQ0EnBiI9o6btf1SW+POdaRbbml9vvAwAKwdUcQ1IJsQFLXzZDFT/uD/qBClXWpUDuKXi+hZzFr0+PgXxdkicBUlrWBRV1e93x9ytsRZVtgeDYkkQijqlDueVGEwsKfJilLOsa+YHzRb+vKV2EsLa2xjhcisXBgU/tE8jd39eD8lr08XHe60IBXbXxVJzntcOlR6f9LGrxWIGKEIVlV3YwQQZnb4TkYoqlu2nfo63iOtCKnQLXB3MO2l95pz29fPAGb60dQn1vrHG3JvrL8DzUuW/w= +api: eJzlVktv20YQ/ivEnJKUNuXELQLeDJsOVLu2YCnJwRCK1XJkbUzuMrtDuQLB/17M8mFZog31WOQicR/z+uabnamAxIOD+B4m1kh0bqwdCS0R5iGYAq0gZfQ4hRgWmyvc/H0CIRTCihwJLQtWoEWOEMMjbiAEpSGGQtAKQkjRSasK1gAxXOEmMMugaOwEqjMUgsWfpbKYQky2xBCcXGEuIK6ANgWrVprwAS2EsDQ2F9Rs/XEKdT1ncVcY7dCxxMfRiP9emp6Wkm1CCNJoQk18RRRFpqSPL/rh+F61b9ksfqAkjtkyGqQaKxzrIe55OTb9Da1TjY03hT59ZKFFkesuH+mWjCOr9INXKyxqujrcDX//MjNPNybFLsmHyzsSli4E4aA3qNNXzxwNnrBQmTPxzs5n428JhHB++9fkOpklF/x9dnOeXCcXMH/G8AKXSivO1+F+E2qh6U0Qd4jvdYNUVpaZsO92Tt97pYoy1rRbMnVd1yGcDjFwrNciU2nAVEdHrzOxsGaRYf7bf2Ukw1y6A/mVo3PiYThffV0OHTYbewdbmCTWGtsj8WkfiUtjFypNUb/E4EP04f8f7ul+uHdNwpFT70xpJQbaULA0pU5/DRb8PlQPZ5NxsBVwgF7gF8CDX0SUpVW08c1zgcKiPfIN5X5ehxVIYx4V+tV8t4d+QdproMFiEzS9N0daGW7VD+ih4C4cQ7Q+iVqZo07GRdUjbmpgZ+y6a+SlzSCGqgG3jqOoWhlHdVwVxhJfXgurxCJrsOWzJrFLUWaMZGakyPz2rt+zFQZ8wKMCDwG0woAp0Fg/9o+xsTvqPo8+jwY18dVXtDwT41nPiqgY1NNcHtTkB4suUVO+1wTdJadPtijUlQe/nYJuJ8nd2Sw5mibT6fj2ppuIWjnu7VsJ77W0LnqHeN1cgu72ZcfVP7/PPK+UXhov3vLr1k9qGEzKRaYkh7IfsAmEn4ICIUmtMRA6DaTJiwz5ddplFX8FndqlsUFutCLDzPaSZE3JTFgZQ00/59IV0uewIRIH5eIoenp6OpYiL3UqjqXJGYRMSdTO49jidt3uhDvCqZGul1bGryOLS7SoJUatIhex1nU3ZMHJ8eh41LDKUS70lqG3S+gFZn16CP+hqMiE0qzTO1i15XUP6xPoR5TnAoMQYlY5D9tCuYeqWgiHX21W17z9s0Tri/65rnwVpsrxdwrxUmQO93zqn0h4d9cOzu+D14frwRA68uqNr+qs5BWEzVzrf2sevFYoUrTeq+bkTEosaEtmb4jmuunfoS/JDEIQJQPVg7nDba990J+qam7MzCPquu7dI16zg3X9L7FMXXI= sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/by-key-2.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-2.api.mdx index e2d2de91467..4b03663b7c0 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-2.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-2.api.mdx @@ -5,55 +5,145 @@ description: "Get process definition by key" sidebar_label: "Get process definition by key" hide_title: true hide_table_of_contents: true -api: eJzlVltv0zAU/iuWn7h0TTcGmiqENESHBohNaxEP04Sc5LT1ltjBdjqqKP+dc+wkXdsw4BHx0sY+9+/cXHEnFpaPr/ml0QlY+w7mUkknteI3A64LMIIO5ykf83j9EdbfjviAF8KIHBwYEq24wgPS72CNNKnwsxBuid8p2MTIwqsbc5Rmes6KYImlG1MDbuB7KQ2gGWdKGHCbLCEXfFxxty5IuVQOFmCQda5NLly4enXM6/qGxG2hlQVLEkejEf1tG5+WCVlF+USjKuWIRRRFJhMfYXRria/at6zjW0gcRW0IDyeDFYr2T9wbNPB0rNYZqRZEWCGAMlh9VM2LI+KOi1w1WaJ09OjDsIRyvUSiSpfR1X6m65rox32wnauVyGTKKD9g3a/hQ3DiDPLnfwujdcKV9g8hyNFvsegHUypUpZJ+Yrh4DJWJMdp0SLzYR+JMm1imKahtDJ5Fz/79cI/3w70KCQdKvdWlSYAp7dhclyr9P6rgZV8/nF6eswcBM/AC/wEeeGkhKY10az/zYxAGzIGfgtc39aBCCPSdBH+62R3978H1zH0Wr1lYGrhMlpp2zAI8GLQ+xjxaHUaN1MFGykYVCtWcHDKrdgeVJkOJKgBcj6OoWmrr6nFVaOOIeSWMFJgMjyrRQnLnoswIzUwnIvPXu77PlsCIQGOc9pfDM5VBsD4kIMnGtrqT0cmoVxOx/kLLpjg2epbOFb16AnOvJr8R22RNiS8E3SaoS7go5EcPf7PALy4nV6ezycF0Mp2eX3xul3kjRyvoQdI7LY2L3iE6Bybecp+19frh68zXllRz7cWbGrvwjwxgl2WMfUOh7AesmfDrG/+cXAETKmWJzosMaEK1ldUWO32xVi32C8s1lo6m6vaSzuiSKmGptaOKD+2LqsmtUEgUlMUqur+/HyYix6EnhmiQQEAnAZ8axNvg9qm5GewIpzqxnbTU/hwZmIMB9DJqFNlo6y3AD4ej4ShUlXW5UA8M/a6NtlDrEuTgh4uKTGAy68bFqmmxa746DMNnt8nwdkxKsZRCs1zzqoqFhS8mq2u6xv1gfPNvest3YiotfWM3z0VmYc+rblTyJ1fNq+8pe+xt2BtGW8Jq7Xs7K+mEn742/W+NU4kvQaRYjORXoJxiHRXugczeG5C6p5tH7ycz5BUlgdUBulPhXnuvP6/fegY203eg3nTeOTqSf3X9Ez6D8Xg= +api: eJzlVt1v2zYQ/1eIe1o7xXLSbCj0FmBukWVYgtjDHgKjoKhzzEYiVfLkzBD0vxdHSnZsq1n3OPTFFnnfv/tiCyQfPWQPcOesQu9/w5U2mrQ1sEzA1ugkH64LyCDf3uD20wUkUEsnKyR0LNqCkRVCBk+4hQS0gQxqSWtIoECvnK6DugxucCvsStTRkij2phJw+KXRDgvIyDWYgFdrrCRkLdC2ZuXaED6igwRW1lWS4tWvl9B1Sxb3tTUePUtcTKf8d2h83ii2CgkoawgNMYus61KrEGH62TNfe2rZ5p9REUftGA/S0QpH+z3uJT08O1ZPTptHJmzQeR2tvqrm3QVz53Vl+ixxOkb0ERppaJTIVE0lX51muuuYfjkG27XZyFIXgvODnr4NX+1sXmL183+F0ZOkxn8nBBV6Lx/HwdTGkzRqnBgvXkNl5px1OyTenSLxwbpcFwWaQwzepm///+FenoZ7HxOOnHpvG6dQGEtiZRtT/BhV8MtYP1zdXYsXAQsMAj8AHl0CHlXjNG3DzM9ROnRnYQo+LLukBWXtk8ZwWh6P/o9II3Nf5FsRl0aFtLa8Yx4xgMHrI4N0c572Umd7KZ+2T7jtgB1ym2EHNa6EDNoIcJelabu2nrqsra0jZt5Ip2VeRnyZFpO7kk3JaJZWyTJcH/u+WKNgAo9x3l+0RsFlEK1PGEi2caju/fT9dFQTs35Dy7449nrWRPWonsg8qilsxCFZc+aLQQ8J2iVc1vomwN8v8Nu72f3VYnY2n83n17d/Dsu8l+MV9CLpOy29i8EhPkcmGLg/DPX6+9+LUFvarGwQ72vsNjwyUNw1eakVh3IasBUyrG8hFekNCmkKoWxVl8gTaqisodj5SwxqV9aJyhpNlqs7SJKzDVfC2lriio/tK1XIYSwkDspnafr8/DxRsmpMISfKVgxCqRUaH3Dscfujv0mOhAur/E5a23BOHa7QoVGY9op8evAWgPPJdDKNVeWpkuaFoX9rowPUdgki/IfSupTasNbgYtu32ANszuPwOW4ySCBjpcukb5YHaNtcevzLlV3H118adKH5970VOrHQnr8LyFay9Hji1W5Uwk/3/avvjXjtbTgaxlDCZht6u2z4BEl8loXfbtklsEZZoAt+RcqVUljTC5mTNyB3z24efZwtIAHZMFg7QI8qPGgf9adtI8fCPqHpup17xGd2sOu+AlAs8u4= sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/by-key-3.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-3.api.mdx index 15e65cd3da4..895cda5cc6a 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-3.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-3.api.mdx @@ -5,52 +5,168 @@ description: "Get incident by key" sidebar_label: "Get incident by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v2zYQ/isCP61dGjtNNhTGMMCNFU+NIxmynRYLAoOWzzETWdRIypkh6L/3jnqJE6tr83HoF5s63utzd7zLmeF3mvVumJdEYgmJYbdHTKaguBEy8Zasxxa7S9jNT9kRS7niGzCgSCJnCX7g/QPs8E4keEy5WeN5CTpSIiUNSERpR64cURs4Ygr+yYQCVG5UBkdMR2vYcNbLmdmlpFIkBu5AIetKqg03Jen3M1YUtySuU5lo0CTxvtulv+cmJ1kUgdYoH0lUhUaRhadpLCIbV+deE19+aFku7iEiH1NFKBhRWqEYf8Q9K0emB7ASiSBbl68V9RJteBLBjwuWLA2rNkokd8gJSbah3M78ydg99y48d4DUmX/pB599PHnB/Ko/Hnv+cO6GYRAi6VPwce4H89Cdhp47QcJ54A+8qRf4DYv7ZRr2z6fz6/5o5jbU8/5o5A7m7si9cv1pQ575f/X9gb0hyty9xlukX7mTSX/ozife36jjy7nrDqxzlZoBujvZN/pEILP9Zw5dBOEVOj2dXwQzf8BuEZEN4sjvWkDBu0iBLYKp2LQzIPzmP/HE6L1rl6LwhmF/ah0P3UkwurbHsYuQ+UPryL1cvCKPkPDEUNMdeEW3wsREajq1KIh81tYAXrLlsVg61GmgzbcbAWtuEcPm19c2BGGU6e/GdfqefScboqr21sv2wt4Hw1VKqgaJ00MkLqRaiCXi9RyDt523//9wzw7DDcuEA6Vey0xF4CTSOCuZJcufowp+a+uH/thz9gJ2wAr8BHjQcwZRpoTZ2Zm9AK5AvbPz7AYfqBwhkA8C7Nfty9E9BNPMbWexc8pRjyvAWtJmcAcWAhr6PdbZnnRqXt3JkbVgZFxt630hUzHy5SWYRa/TyddSm6KXp1IZYt5yJTgCbxGkuzKRK57FhFwsIx5b8ks/p2tw6II2Eto1DH5Tykvrx3a4oo3n6j50P3RbNRHrN7Q8FcKTnrUxaauekrlVk91j6sRMiK8Muk5Gk1yeiksLerVsBWOXJs67Cc5PnIH14lXJoYf7CW60VC5ah+i7ZGI190Vdm58+T20diWQlrXhVT4FdCMEZZwvsEQrlMGDpcLt04Z8RW3B4snQiuUljoNeo2m2curDp5NRqsTecjcR1SVIlW0mjZEaVsJbSlMOXWhVVk1tlIVFQGqvo8fHxOOIbfOD4MRokENBJwAWReCvcRhXl6IXwUka6kRbSfncUrEABetmpFOkOaaVCLoM9Oe4ed8uq0mbDkz1D7S3zDKsmLQb+NZ005pjConIsr9rphm1PbHKrhsJzj1Rh2ZSNccPyfME1zFRcFETGd1/Zpn7qI9t1S6HpjP264rGGA1+aJ5D9ElZ7+RvncGdvdbku0mRnuzfO6AuPtvrsb0FL0Br4EsuNvClv+lgpqdmTOdjNqT+ad2bo0srIMwKmAe9FDVvtrf788dEyOFP5AMmfjXeGPsm/ovgKBVte4w== +api: eJzlVt1v2zYQ/1eEe9o6NUqabCj05tlMpiaRDFtJiwWBQUvnmIlEqiSVzhD0vw9HycqH3bV9HPpii8f7/N0d7xqw/M5AeAORzESO0sKtD6pCza1QMsohhOXmHDeLY/Ch4pqXaFGTRAOSlwghPOAGfBASQqi4XYMPOZpMi4o0QAjnuPHUyhNbAz5o/FwLjTmEVtfog8nWWHIIG7CbilQKafEONfiwUrrktiP9cQJte0viplLSoCGJd4eH9PfS5LzOMjQGfMiUtGQ0bIBXVSEyF1dwb4iv2bWslveYkY+VJhSs6KxQjN/jnpMj0xNcCSnI1vmPikbSWC4z/H7BjmVgNVYLeQc+oKxLyu1VPJ+ycXQasQn4cBWfx8nHGHyIksXlaDqN4rMFm82SGfjwIflzESeLGUtnEZuDD+MknkRplMQDC/uUzkbjdHE9urhiA3U8urhgkwW7YJcsTgfyVfzXKJ64G6Is2DWLU/Dhks3nozO2mEd/swX7NGZs4pzr1UzYOJo/N/pEILOjFw6dJrPLRZyki9PkKp7AbetDicbwuz2gtD5kGl0RpKLcz2Ast/+J52icRteMoojOZqPUOT5j8+Ti2n1OWTyJ4jPnyL1a/kAeUXJpqel2vKJbYQsiDZ3atkQ+2dcAkXzkhcg96jQ09uuNUGm1LLD87UcbgjCqzTfjOn4H38iG6Kt97+X+wn4OBtNa6QGJ410kTpVeijxH+RKDN8Gb/3+4J7vhzrqEI6XeqFpn6EllvZWqZf5zVMHv+/phNI28ZwF76AR+AjzoOcOs1sJu3MxeIteo37p5dnPb+g1kSj0IdKfb16P7DO0wt73lxutGfYl2rWgzuEMHAQ39EILHo2DLa4LmATctkHH9uN0Xal1ACE0HZhsGQbNWxrZhUyltifmRa8GXRYcl3XWJXPG6IOQKlfHCkV/7ma7RowvaSGjXsGv0KOWd9QM3XJV+pe794fvDvZqI9StangrhSc/a2mqvno55rya3x2wTMye+LuhtMobk8kqcO9D7ZSuZMpo4b+dsTuNwu3j1cq3/IsGDlt5F5xCdOybYcp9ua/PDx9TVkZAr5cT7ekrcQojetF4WIqNQdgNWHndLl8czKx7R4zL3MlVWBdJr1O823raw6cvbql0p7ZVKCquokp2k1aqmSlgrZbvhS63KM5fDrpAoKBMGwZcvXw4yXtYy5weZKgmEQmQojcOxx+2ip/ivhHOVmUFaKHcONK5Qo8ww6BWZgLRSIXfBHh0cHhx2VWVsyeUzQ/tb5gVWQ1os/mODquBCki7nWNO30w08Hrnk9g0FPoSk6tbvG+MGmmbJDV7pom2J/LlG7Zr6qY9c1+XC0HcO4YoXBnd8GZ5A+GXW7+W/ers7+16Xt0UqN657i5pO4HfrsvttaQlaI89RO2+6m1GWYWWfyezs5tQfwztzxmhl5DUBM4D3qoad9r3+NE3HkaoHlG07uGfpTA627b+EYGBZ sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/by-key-4.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-4.api.mdx index 2d0d3a29525..deb3ceda6cb 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-4.api.mdx +++ b/versioned_docs/version-8.5/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: eJzlV1tv4kYU/iuWn9ptEshuWq1QVcmAyboQQ22TdBVFaLCHMBsz447HpMjyf+854wsQnN3sY7UvyZz7Zb4zPuSmIo+p2bs3R7F45iKiDk8V4SE1H85MkVBJFBPcicyeudyN6W5xZZ6ZCZFkQxWVaJmbHAiQP9EdyBiHY0LUGs4RTUPJEvQATLA2xMpYVYEMVkc6MyX9J2OSQhQlM3pmpuGabojZy021S9A344o+UgmqKyE3RJWs367MonhA8zQRPKUpWrzvdvHfcWw/C0OapmAfCnDFFaqQJIlZqAvsfElRLz+NLJZfaKiwaIntUKyMgsW+JT1th6Hrvo6/13BIV4wzTPLtphBKqiFR9EA/VZLxR5RSHr0qw9txEQbRV8WuvvIWBcZDFkF/355rqfLSFWaZbRCYc9ef2QNn5NhD4M686cD2fTj58/5iT9m3thssjnl+YHnBQkuActzA9m7soWMF9mJgBYNP7aLgkze9a0T96dwdWt7nhmG7w+bs296tMwATyx8D6dkD27ltyDmI6/ON5c6tSU1V/+y/B5O5jxbXEPjO+qxTOeXNLM+aTOzJAasst2/59vCA69t/zW0XEhpNpncYdT4JnIXjQiOQ258OUWsAzhbWIHBunQDpPsRzoWMLbz5pkvcHnjMLGgqrrstyx+70zjUfSpy14Wh/eTqMjUGnN7OJHeg7xGY7roXEwwFkDvwshYgp4RoelBOuWuGIUqZiZI1q2NZvSlGg+KrtLXD4lsQsMvDRoal6/U2AAVzGdPPL974N2JUs/Sb8P7zH+jYw4uTxtWGqqmkTts/NYVNsKYVsOvHhtBMjIZcsgt4f9+Bd593/v9yr03K98sIpXn0qMhlSgwtlrETGox8DBb+2zYM1c4yDgg2qDX6AfuADRsNMMrXTe8ySEknluf6038PLlEMLxBOjmnp4uc5cU6V3GeNomTGWO6NchGBBWgvcmx6pbgauRD2zs73s1BvQeW2UdnKwKUzMR27rtSqTMRjkZX+LXqeTr0Wqil6eCKlQeUskI3AXuqkoK+92RbIYmxmLkMSa/TL1YE0NFODihiuZAhpRUEa/0MsHxDh297H7sdvqCVVf8bLHxt7PWqmk1U+p3OpJb3n1XfmoVxZd309z3yRhY939aiedzmwPPjTnPnzfnKlb76eVHWR4eOeNlypFnZD+HGkls9Ye1XD98y7Q0GJ8JbR5BbGp3pupMcuWMDZYymnBwiB6JYV/im2pQXhkhGKTxBQfqGr3a2CFJ6N2C+NibATshALBrS2VFBkiYS2EKr/AOL3gGtMqgYRFpYCi5+fni5Bs4M0jFxAQmwBJUlifUbfq26TinL0wjkSYNtZMaLoj6YpKCll2KkdpB70ikMtiLy+6F90SVanaEH4Q6FtTdNS15oIU/Vd1kpgwvSLoFPNqwu7N7aVZLqrHMwbMHvoEJJWzcm/m+ZKkdC7jokA2fB2kHv39aOlBjFiKZ5jlFYlTepJU81CaP3nVD5mfja/82mktogYw3+nJjjOk4KiRqf8WuCytKYkAiphWKbEARYk6sDn5VYOz0zxG1zYuriTDVu3XrWN8a++t+fze1wpGIJ4o/6PJTiGJ+RXFf+pfx+g= +api: eJzlV1tv2zYU/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 +info_path: versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/by-key-5.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-5.api.mdx index 3782eb8c1bf..7e328c1de11 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-5.api.mdx +++ b/versioned_docs/version-8.5/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/lcIPq2dazltOhRGMSDD3MLr0ASxhz0EwUBLZ5uNRGrkyakh6H/fHSkpdqx02ePQF1sk7+d33/FYS1QbL6c38ldItdfWXMPflXZQgEEvb0fSluAU0sE8k1O52n+C/V9v5UiWyqkCEBxr19LQgs7vYE9n2tBnqXBL3xn41OmSLdAmaQu7FlnrTLhDbyPZLskTugpG0qdbKJSc1hL3JdvXBmEDjkTX1hUK49ZP57Jpblndl9Z48KzxejLhv2P/iypNwbOr1JIpgyyiyjLXaUgy+eJZrj71bFdfIEVO3DEkqKMXnR3IeHTabGQzCjg8J2rG5xT3+bDRiPHAwY6qoGPc3/T45jVLE0q2cil8fsoc4aIMDgbBpxpz3hokTNOwyPkQ9HOzU7nOQsnB49MlIIBXORQ//tdSeFRY+WeCUBAL1GY4f23IlEmfACdsfAuYmXPW9Ui8OUXig3UrnWVgjjF4mbz8/6d7fprudSw4cOkj84SxKNa2Mtn3wYK3Q/1wcTUXBwkLCArfAR606SGtnMZ9GB0rUA7cq3Bl3tw2o5ogsHcawur28QT5CDg8PsRqL+L4obG0tTytNhDw4EE0lcnuLMlcltQk1EiOwe266VW5nCTqiGkzTZJ6az0207q0Dll4p5xWhH8Aks9iPdeqyhnA3KYqD9uPw11uQfAB3908+ZDWXPnofczYsY9jc+8m7yaDllj0CSsPfHiws0UsB+1E4UFLYZB29VmwXEy6q0lfY1XqTwHudvRfXs2uL5azV4vZYjG//Nw9A1o9ivCwzr2VNsQQEK+jkOykP3QU/e3PZaCTNmsb1FtaXYbnCYirakWtwqmcJmyFClOf/lDvQCiTidQWZQ58KVG7hMOO3/wlOrPUIqKwRqNlQgdNdLZiJmytRSZ57FgyzWFFInFSnlh0f38/TlVB95wak0MGgYIEeqGwbIvb7+3O6JFyZlPfa2sb1omDNTigKJPWkE+OHgDybDwZTyKrPBbKHDh6RuccAdfXCOErJmWuqJ5NG2XddtWN3J2xnuObfMpGiD2xP25kXa+Uhz9c3jS8TVPAhRZ/aKfQfJn2/E0Nu1a5h5Mo+gtR/tC+NbIX4l8ekoORd8Q1+9DRecUr2T7Wwm9D14/cgsqIghxaPLkg9pR4oHPyYOSe6W+dj7MlyaqK8ekxfMTrYH0wnve/BAGxtHdgfu6jQ15yfE3zD5p7AyA= +api: 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 +info_path: versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/by-key-6.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-6.api.mdx index fc0487f647b..178c9a9edb0 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-6.api.mdx +++ b/versioned_docs/version-8.5/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: eJzlVt9v0zAQ/lcsP8Homg4GQhVCGqKgMsSmtcDDNCE3ubZmiR1sp6OK8r9zZydpu2aDPaK9tLF9Pz9/57uSO7GwfHjJ30MsrdTqPcylkg6/+FWP6xyMoMU44UM+W5/C+scr3uO5MCIDB4Z0S65wgefXsMYzqfAzF26J3wnY2Mjcmxty1GZ6zpLaFX60vnrcwK9CGkA/zhTQ4zZeQib4sORunZN1qRwswKDoXJtMuLD16phX1RWp21wrC5Y0ng8G9LfrfVLEMViL+rFGU8qRiMjzVMY+xeinJbly37Oe/YTYUdqGAHEyeJHJlox1RqoFr3oehX+JmtAJQIy7DQVUOw5WiLsMsd7r5cXzbS8XAeAMM7d3eOwSPX1wOtvaX+7KoUv424PywisUynVmQqfSpbTVweuqIoHjLo6M1UqkMmFERrDubq4gE2YpZM8eyhnrhCvsP2aYIV3Fohs/qdCUirsPw8Z9sIyM0aZF4sU+Eh+0mckkAbWLwUF08P+ne7yf7kW4cKCrt7owMTClHZvrQiWPgwUvu+rh5HzMthJm4BUeAR64aSEujHRr3+FmIAyYQ/+2X15VvRIh0NcS/OrqdqP7CK6ry7HZmoUeib1zqamlLsCjQd1yyKPVUdSoHW7UbFSiVsUpJLNqem5hUlQpA8TVMIrKpbauGpa5No6EV8JIgdfhcaWzcL1zUaSEZ6pjkfrt29FPl8DogPoP9WuHayJC8N4nKMnHrrnXg9eDTkskeoeVDT02dpbO5Z12gnCnJT8ANNc1IbmQdHNF7ZWLXJ56/OuB5ex8dHEyHR1ORpPJ+OxLM7zUehjh9rW3VuoQfUC0DkK8kf7QMPbT96lnl1Rz7dVrlp35oQrYeTHDyqFU9hPWTPhpBf+cXAETKmGxzvIU6I3C6vGHDd3pizVmsWJYppE6mvjtNZ3RBTFhqbUjzocCRtMUViASJWWRRTc3N/1YZPjsiT46JBAwSMDJimRr3D7XO71byomObasttV9HBuZgAKOMakM22hli+FF/0B8EVlmXCbXl6K+FtANbe0MOfrsoTwXeZlXHWNZFdslXR3wzfmyXGW4PySqSKZTLJS/LmbDw1aRVRdvYI4x/ADbV5WsxkZa+saDnIrWwF1b7XPIn9byTPGX3TsOdiTQsVmtf3mlBK15PnP63wqeJL0EkyEcKLJycIJVyt6WzN/VSAbVv0sfRFGVFQXC1kN4iubfeGc+bd16ATfU1qLdtdI6WFF9V/QHkj0fJ +api: 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 +info_path: versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/by-key.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key.api.mdx index 06dc3839efd..94fa55bd366 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key.api.mdx +++ b/versioned_docs/version-8.5/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: eJzlVt9v2zYQ/lcIPq2dazltNhRGMSAD3MLrsASxtz0EeaCks81GIjXy5NQQ9L/vjpSUOFbb7HHoiy2S9/O773hsJKqtl/Mb+ZdyWqUFyNuJtBU4hdqaZS7nMj18hIOcyEo5VQKCY/lGGlrQ6V0404Y+K4U7+s7BZ05XrE+bpCvsRux78xPp4J9aOyDT6GqYSJ/toFRy3kg8VGxSG4QtOBLdWFcqjFs/n8u2vWV1X1njwbPG69mM/45druosA+9JP7NkyiCLqKoqdBaySj55lmtOPdv0E2TIuTrGAHX0wjk+J7ygx66XxqMyGXx8tqLPyOHzxSP4g6hHp82WD/aqqMdPCGxD+TPuw2lqbQHKhGMwyuAyH9HlU40Fbw0saVvePh+Df2koCJ0LrjN4/HIZCCwyVf74X8tB2GLtv4nUm9ecV0nlUNtxSHRXpnG8wsbXwFg4Z92AxJtTJN5bl+o8B3OMwcvk5f8/3fPTdK9jwYFL723tMhDGotjY2uTfBwt+GuuHi6uleJSwgKDwHeDB1xpktdN4CBMjBeXAvQq36c1tO2kIAnunIaxunw6OD4DD1BDpQcRBQwNoZ3kqbSFAwCNnLpP9WdLL+qQh0Vayc7fvp1XtCpJrIpjtPEmanfXYzpvKOmThQZ2z47NYyI2qC0ausJkqwvbTONc7EHzAVzJPOqQ1lzx6n4apQD6Ozb2dvZ2NWmLRL1h5IMKDnR1iNWonCo9aClO0L8yK5WLSfTGG4qpKx8nfjfrLq8X1xXrxarVYrZaXf/Rjv9OjCB8XeLDShRgCCjMnCMle+n3Pzd/+XgceabOxQb3j02V4jIC4qlPqEU7lNGErVBj59Id6D0KZXGS2rArg26gbyqInNn+J3iz1hiit0WiZyUETna2ZCTtrkdkdW5VMc1iRSJyUJxbd399PM1XSBaem5JBBoCCBnics2+H2e7czeaKc28wP2tqGdeJgAw4oyqQz5JMw14nIMdmz6Ww6i6zyWCrzyNF4yxxhNZQF4TMmVaF0mP4hsKZrpxu5PzvqiImcsymiTWyMG9k0qfLwpyvalrfp3nehqR+0Qtfl2vM39etGFR5OYhmuQPnDdfcqfCFOX4yjIfckNQc5PHskfQb2hd+W7hi5A5UT3TiaeHJBTKnwkc7Jy5D7Y7hnPizWJKtqBubh3XTM4WB9NJ53vwYBsbZ3YH4ZokNecnxt+y+MIezQ +api: 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 +info_path: versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/delete.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/delete.api.mdx index 87a0f9a05dd..6c5c54f8d5d 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/delete.api.mdx +++ b/versioned_docs/version-8.5/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: eJzlVktv20YQ/iuLPTWpLMqJWwRCUcBtFEBNUBuWihwMH1bkSNyY2mV3h3IFgv+9M7skLYlyX7ciF2kf8/z2mxnWEtXGy+m9vHU2Be/nxqMyKciHkbQlOIXamnkmpzKDAhDkSJbKqS0tHevV0tCGrh9hT3fa0LJUmNM6A586XbIBOvwIe2HXooxuhO78jKSD3yvtgHygq2AkfZrDVslpLXFfsmltEDbgSHRt3VZhPPr+SjbNA6v70hoPnjXeTCb8d+x6UaXsk/RTS6YMsogqy0KnIb3ki2e5eujZrr5AipyzYzBQRy9bsqY2cCDo0Wmzkc2ohSn7Z+GPJGosWOjnXJkNLFBh5emCr67O5TI3O1XoTDBo4PHlnCjiVQHbb/9tbj6G8Hfhv33Dyf4VEP0Ln7uMB4OLA0BmzlnXI/F2iMQH61Y6y8AcY/A6ef3/T/dqmO5dfHDgp/e2cikIY1GsbWWyr4MF352rh+vbuThIWEBQ+ArwoEMPaeU07kMbXoFy4C64DU/vH5pRTRDYRw1h93Dajd+HLjXoxkKZTKiiEBmUYDJlUGQKlVjtRezv1PdzezINqNlPZbK7TFprF501n9Sk1UiO1O26eVG5guTriHwzTZI6tx6baV1ahyy8U04reqUAN9/FV1+rqmCYC5uqIhyfJrXMQfAFTySeNUh75kf0PmaE2cexuXeTd5Ozllj0BSvPrHm2kyOWZ+1E4bOWwvzqXnHBcjHp7uV6JqhSfwz4t8P25nZ2d72cXSxmi8X85tdu8LZ6FOEhG3orbYghIN5HIdlJf+iI/MvnZSCdNmsb1Fvy3YTvARC31YoKilMZJmyFCsOW/lDvIqFSuy3DUBzwjVeiM0uFJLbWaLRM+6CJzlbMhNxa5FKIdU2mOaxIJE7KE4uenp7GqdpSN1RjcsggUJBAHwYs2+L2qT0ZnShnNvW9trZhnzhYgwOKMmkN+YStMpFjspfjyXgSWeVxq8yBo/9aX0do9g+H8AcmZaHokZs29LotvHu5u4zd6rj06GzKJolgsYTuZV2vlIffXNE0fEzjxIVe8VxxoT4z7XlNRb5WhYdBTH1nld/ctV9ur8TLX3dnU+hobfah3ouKd7QMfA2/DbUwmYPKiKAcVby5Jm6VeKAz+Irjiuqb1PvZp9lyRuKqYqx6PE+IHxycDemHn4KAWNpHMD/2ASJvOcSm+RMnstvx +api: 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 +info_path: versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/get-statistics.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/get-statistics.api.mdx index c3098e28e3c..f767ed90bee 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/get-statistics.api.mdx +++ b/versioned_docs/version-8.5/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: eJzlV99P5DYQ/lcsP7XXZbPc0eq0qipRCU70qgOxVH1APHiT2V0fiZ3ak+VWUf73zthJCCSogrfqeIDYnp+fv/EMtUS19XJ5K6+cTcH7C+NRmRTk3UzaEpxCbc1FJpdyC7hCWnrUqZczWSqnCkBwrF5LQwuSuocDnWlDn6XCHX1n4FOnS7ZDm5/hIOxGlNGb0J27mXTwT6UdkCt0FcykT3dQKLmsJR5KNq0NwhYciW6sKxTGrV9OZNPcsbovrfHgWeP9YsF/nrpeVSn7nItrwMoZL3yfjiCLAncgtnoPZhTdTGydrUrIxPogNrl9EMaSbYoktRSUQXamyjLXacAr+erZYz3OQTmnAkAIhR/s2/VXSJFRdYw66piHSlHvNR74AnpZj06b7QjZGwpfZwwuJ9JHGVJ72Ol0F/YJpipHL5QDobZbB1uFhHkzi75gEu+xI7SocmGqYg2OXUblHjA/CmPi1gg9ls0he6PTTv21brVJdUa35t/ot9fvafMfadqizAHfnmen/7pEyTNqzNnbOYl9IalBATf8M5MnU5VyYfYqJy5xSYLHl3lObF3nUPz0It9f4DVXXjUN/zCLD+8ZvoJKUW1hXAHhKtv3Y+owbowOBricOWed7JD4MEbi3Lq1zuiyn2LwLnn3/0/3ZJzudbxw4Kv3tnIpELmQaF6Z7Ptgwc9T9XB6dSEGCQsICt8BHrTpIa0ctaDQ5NdAfcMdcZNf3t41s5ogsPcawuru+Vv2CXDQh/puy030eYelziU5J9zZdtYIEwYNEEuZ7I+TVv6ofwCTmoJoEj+cSDy4fTeOVC4n1TpC3yyTpN5Zj82yLq3DhoT3ymlF1xTw5rN47RtF7ZE0c5uqPGxPvdB8wANP9wwzQaL3OUPMPp6a+7j4uJi0xKIvWHmkzaOdHWI5aScKT1oK41F3jSuWi0l3V/c4nJT6cxjf2lnu8urs+vTm7Gh1tlpdXH7p5rpWjyIc0qG30oYYAuJ1FJKd9HnH5D/+vgms02Zjg3rLvsswdYK4qtZUUZzKOGFLA0fgTzt3KJMNuuRzcvGX6Mxyyy6s0WiZ90ETabhjJuysxThZcWGTaQ4rEomT8sSih4eHeaoKeg7VnBwyCBQk0NzJsi1uf7Y7s2fKmU19r61tWCcONuCAokxaQz5hq0zkmOzxfDFfRFZ5LJQZOHp1gT2Bsb8xhG+YlLmi223amOu2+G7l/ji+U0/Lj/aWcdQfVCDRLBbSrazrtfLwl8ubhrepq7jwZDzWXajSTHv+ppLfqNzDKMD+gZU/XLf/HvwoXv4XYjKfjtzmEKo+r3hFn4G14XdDL5ncgcqIphxVPDklhpU40BkN+FxX/ZP16eyGZFXFqPXIPuN+sD4Zz6+/BwFxY+/B/NZHh7zk+JrmX71Gt3o= +api: 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 +info_path: versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/operate-public-api.info.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api.info.mdx index 9ea6e3d454d..cabe55b339c 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api.info.mdx +++ b/versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/search-1.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-1.api.mdx index 58f971eb4ff..ab5af906015 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-1.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-1.api.mdx @@ -5,59 +5,237 @@ description: "Search process instances" sidebar_label: "Search process instances" hide_title: true hide_table_of_contents: true -api: eJztWF9v2zYQ/yoEX9J2TiwncZsGwwA3cYBsWZLFXvaQBAMt0TZbSVRJyoln6LvvjpQtWVJcG9jLtiJALJF3x7vf/aUW1LCJpqcP9FZJn2t9GWvDYp/TpxaVCVfMCBlfBvSUas6UP/2zQ1tU8a8p1+aTDOb0dEEDrn0lEqQEuoGlI4mTR0QuUAOfL2PDY4M8LElC4Vvp7c8aGRdU+1MeMXwy84SDKDn6zH0DjCAMdDECpMDuWISGq2/TfeHzEpGAsyfA1qJjqSJm3NL7Y5pZPlT2nistnC4bmY4OkWmURPEStaDEo40S8cSKZQrM/WV7NSz9RSifr2XAl67Ynh/olTlnhjdqw+Pg1T3gbNpBpjTC8OidDS/v+7BwdvPr7VV/2D/H5971Wf8KHp8KDM/5WMQC/bq93hAULDYbQayEp5VNfaH8NGTqTWX3rRUqTIiSqoGN1oq/+JZOdlHfG68HHFOKzYFeGB7peiBmyCiV2Z6jHuI8bIZDqmBNlbqnBmfwdt6Hn6eshMMAFcrKK7+lXM0b4OEvLEpCp0gvDOspfsdNqmJNWBjW85y8CfiYpaEhypKRUGhDEHIiNOl4b0G7GQtT9ABqg3rxgIzmZGV082n1k7RjZdqH2AYUUMh6VhZH5Q55WGFLq5Q5shbA7KmkGosDkrAJPD0LMyXL6GnWMmIv5KhBV4YhRPZGYnLPVH7snhUNZYq8/9DtHn38eHzc8brdkw/et00jj/FQkgk3xEw5ifmLsToSXyZzu2QNJ3JM9lDWPb7BgRDYElaKqN5zhAePMVpLdMJ9Mc4rM9FTmYYB2GSgoqPQEuM66RrSFqCj1q6QV7Ltga6BRVtVkKyPLmwzyL3kUNvsnK5X906LjJdiAOf1boAQHu4WakWDqjaWw1X16Xo745NlNn2x+wqFZhqVcrugExlrl7CHntfQk1PfQfhPteBqGduxvH3vzN87c0Nnztumq1W7tVsjDQu3MqqkwB3X0Kd0XQ8kOm5KJHATg7IBmS6C17MJAB+FPPph16xCX6d6yyCPQGUo+I2eWRa2xk23UNso4dJXSqoVDEd1GC6kGokg4PE6Bu/a7/795h7Xzb2WhlzINA7+c+Z2m4K8d3tJSuFMuGX4H0S7nff9VAkzt215BOMIV/u2Wz1AJV0ABPKL4PYNxpWtL74RN1OJDT6R2gLBzBTe2rNOOyffX5G33RBEURc1g75nVUkVVDe6cNhmp+32YgqistNFAgUzs8OHEmyUT+245/xqJ3HgDKXPwqk7fV3tIYx1uBGzyI6LOOZhBLjTD2yhz+8yhbgT78RrlISkr0gp4qKQMzUmaZTjiBslZW5SdH4aIJ0zeumbom0kArtRi6Jp8H5z27/rDfv7g/5gcHlzjQ0Fj8v5cG4o+XslJVfRKoTvjoguqS+WofrzH0MbVpgGd8UHkr67TK2PhfYErz7deLXZpej3pZHF2ziQeGvjRnlgCKpL+XBRzBDNo4JXHgTKs4mdZL3q3L6wDqrOtqtDK0MtemEsLeB5Qt7Y706c3KYjKDLo/HqISMLsSAs/Rsy4nf59iUjjmF6/fomYLMVCcSGRBPMkKmQ5jZIp5s5USuOUxFoHolEtl3oYBhry7vn5+cBnETQDdgAHIgygJIfxG2nzSLvKV1oV5kD6esUtpH1vKz6Gmwdo2c4F6TZKnS2DgnYOvAPP5aE2EYtLB22oOWuAraLZwEWxnYQMIj/LtVvk5eiBzjpFCOyXZeUlCdzqKssDXSxGTPPfVZhluPwVPyVgWSwKkSuZdMpZ4KLCRT09c11kf4gKrS5N9dsIllvH0QNPJ2Yj7VOpxt7eDIaYnvnXyQjyA1YVe8Yvl/D/lD7CHwaiBcfWDru+oCGLJ6ltM9TJxYRmKaKzQrCS/9ayZcGJ5yUtf/xkCchQfuHxT7DhrDH46m5zfwMoNl4Y +api: eJztWEtz2zYQ/iuYvThJaYt+5aGba8szbhPbtVT34Gg6ELiSEJMAA4C2VQ3/e2cBSqJExpFnemmbGwnsLhbffvsg5+D4xEL3Dq6NFmjthbKOK4EwjEDnaLiTWl0k0AWL3Ijpn/sQgcGvBVr3s05m0J1DglYYmZMkdKHv5Vge7DFZGbQQgdDKoXKkw/M8lcJb73yxpDgHK6aYcXpysxyhC3r0BYWDCHJDvjiJlnbHMnVovi93j7OakFQOJ2gggrE2GXdh6e0RlF6PnL1FY2Xw5VmlwwNSGuWZWqCW1HSsM1JNvFluULlft3fDy5+n+vFSJ7gIxfb61nHjzrjDVm9QJd/cs651h5SKjOhxcjq4uO1BBKdXn64/9ga9M3o+uTztfeydwXCF4RmOpZIU1+39dqi4cs+CuEFPbxuENKJIuXm1sfvaG5UuJUubxKbbyr9wyyAH1p+M1wnHjeEziEA6zGyTiCUpauO212hSHNN2OLRJ1lxpRqp/ChGc9fqnMCxrOPTJobK+8luBZtYCDz7xLE+DIydp2kzxG3SFUZbxNG3mOXuV4JgXqWPGi7FUWscIciYt249fQwQPPC0oAuQN+YUJG83Y8tLtpzVPskGVW4EqkWpCRtazcnVUFZC7JbawKVkh6wEshzXXuEpYzieYsEfppmzBnnYvM/7EDlt85UQhtjOSk1tuqmN3vOl7nLG3746PDz98ODraj4+P37+Lv3819lkNNJugY26KTOGT8z4yofOZX/IXZ3rMdsjWLb3ZHSaV02ynxuqdILj3WdFtmc1RyHFVmZmd6iJNWMadmHqjNcV10TWkPUCH0Ush38i2O1gDC6JNkHyMzn0zqKIUUHs+OMdxMzoRGy/MjGZsvRsQhAcvo9qqQW02loNl9TmOX4xPWfr0pe4rDV3TmQL9gs21siFhD+K4pScXIkD4T7XgzTL2wvL2ozP/6Mwtnblqm6FWvazdOu14utWlag7coC1SZ5t+kNBRWyKdcceZVA88lcm3syk3epRi9tNLs4piXdgtSZ6htXzSTppFYWvdDAuNjRouPWO0WcJw2IThXJuRTBJU6xi86bz591/3qHndS+3YuS5U8p+77nEbyU+uL1iNzgy9wv+A7X7eF4WRbubb8gi5QbPru9XdsIzmILS+l+jfhtH2H74ZuqmmBp9r64Hgbgpd6Dzsdyrx3aV4JwxBQL6YBzTWu1KYFLowD9iW3U5nPtXWld15ro0r/fBhJB9VUzvthbj6SRy6kGrB02k4fd3twRQZbSie+XGRxjxiQDh9zxf66ltmZe59/D5utUSi37Cy4sXKztS5vNVOEG61VIZJMcSpT3Lh0ovYrNpGLqkbRUBXgy5cXfduTga93X6v37+4uqSGQsdVejQ31OK9tFK56B2i9yAEC+nzBVV/+WPgaUVpcLP6QdILH1PrY6E/IW5ON3Fjdln1+9rIEj87kMRr40Z9YEg2l6rhYjVDtI8KcX0QqM8mfpKNN+f2uQ/Q5my7PHRjqKUojLUHvErIK//fCdl1MUqloOA3KaIZ9yMt48LJB/TTv9CENI3pzc8vqdjC7FgblmklnSaHvKYzuqDcmWrtgpNU67jwrA+pRzSw3U7n8fFxT/CsUAnfEzojGFIpUFkf4oppH6uVaEM50cIutaX27x2DYzSoBHYqQ7ZDVh8WpID9vXgvDnloXcZV7aBnas4aYEs2O3xynTzlUpFB7928Kkd38LC/osBu3VZVkoZRVVnuYD4fcYu/m7Qsafkr/UqgsrgqRKFkwhR5ElgRWA+noYvsDsih5UdT82uEym3QOBECc/es7LBWY6+v+gNKz+rvZKYT0jH8kf5c8kfoApHQA+Prhl+bQ8rVpPAtBoJNSmZeEDJL9DZy399qUWzUrObhfB4kBvoeVUn1OVzF0Xv4lPsbXC1ekg== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.5/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

required
- -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.5/apis-tools/operate-api/specifications/search-2.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-2.api.mdx index 6dd740755aa..fae1c143ed5 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-2.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-2.api.mdx @@ -5,59 +5,222 @@ description: "Search process definitions" sidebar_label: "Search process definitions" hide_title: true hide_table_of_contents: true -api: eJzlWFtv2zYU/isEX7J1jm9N2tQYBriJA6Qbmiz2tgcnGGiJttlIpEpSST3B/33nkLQsW0qaDHtZhwCxSZ4bz+U7hy6oZQtDB1N6pVXEjTnjcyGFFUrS2xZVGdcMFxcxHVDDmY6Wf/Zpi2r+OefGvlfxig4KGnMTaZE5tgEdOzrCv7A0S7gB8khJy6VFUpZliYic0M4ng/QFNdGSpwy/2VXGQYKafeKRBcZMowlWgBQ4nYvEcv11uju+qhAJ0L0AthadK50y67feHNF1i0qW8gqpsVrIBR7cc22Et+5JMa/7SD3LUhkciJ5qkAfXZ9I2HuKpsAlu1YMAh0b8xZ9ph4/QcL7rJaY1WwG9sDw1de+hAUZp+3yOelx40nxtpeMdU8JJi3KZp5h2w/EprM5G8HFb9cQYDVpXd37NuV41OqhMNNAzTJJ6QsImyTwnEdJYJuEr+S7mc5YnlqCDiTCk1/0ebLlnSY7+Rt1jPFFzornNteQxSYSxjyZ8XQWTceB1nCjKKTuu6AnxPXb6QhheIB4jR2Yr4jK5KtWJmpbBoYEgRMQ5fn27UepFhUR7nvaWV43EXMYQ1Y0V/qomuK7pqq2vWucSYs+8jC1eYl7VMSU/RMNAyM02Em1yI8lEkQW3xC45kfyL9aSRylZuy5mPHAco83dcmQPQZBXsbCvuwBO2b6Qz2WQ8EvMAdcQsVZ7EBOoVjEWhFcZd0n/kLx/NPQCY0lOWJJC1oWqAvt8/7r199+6k9/rNydv+Sc8X3bnD1W061b0cKMCdARh3cm8X/ir2bwG7xNNeiWjH3YZ77YvaT1cHCdh9hOZAb3XO3YbJlDQeAvrdbkOa5FFwwb/Ui/ah8YWQ+S21qNA/fGG8rO9YZVnyLEdUTLj2NdxkCZIdNcX/jFkGJQuZKeLHkwBiNEt4+sNLkwEwx+bmmZFIwegAZbUYbOCrOUBu46ngjLRWunTD64Y6Vnom4pjLXR+86rz671/3qH7dj8qSc5XL+Ju77nFTkg+vLkglnQl3DP+DbHejb5RrYVeum8ygDXJ96EB2ertuFeACdSe4W0GbfHKEiEtAwXaRcrtU2JkyZZwrmF3CqnPf6wSGwwpDxzdgivZoBGhnTq4B42jh/bsedDrFEoStB0UGsLl2DVMLNgsjLJ752LrxFDgTFbFk6fXvmj6BSQIP3JADEwpOFpgFXnsb/ZiVM+VG3En3pNsoCUkfkbLNja2cpbVZoxxP3Chp7acUH6sx0vlLb+KzbR6Z+Jlj9/D9j15eja6Hk9HheDQeX1x+xLaC6gIfNrhKzEspwURnEK49Ed1Qn2/S9cMfE5daWArX27ftyL8sdkcZp6FbGlY+acp+3K112y3RtslWUt3PQ9398a1wvtqfkEpRe6MROmSu3N1DfVy61zsnV/kMah7jUI+WIswNRvBhxb0flCOFl7YwONafHEKSjViodZIqSHyFBjlOq1WOabxUynojEXpANJrlqwAjYqAEHh4e2hFLAZtZGxSiG8BIDkMc0gbf/hJ2WnvMsYpMyS2UW3c0n3PNwcpOEGQ6O2MS7bW77a4vCWNTJiuKnoSAHZeVqWXhodDJEibcG9TZVwR0mNL7nkfNfXygmxjjryu+0Ke0KGbM8N90sl7j9md86CJSbXHBoxhdchb7zPBJSE89sB9O0KRy7q7PtYiAnmMI0c7sk7S3FdC7uhxPsFrC7zypipFHswf8DQj+D+gN/GEyZv5+QOT2C5owucgd8lMvF+uL5eif0od75ehutql/uapY+eN7RwAPtTsuf4IDfxuLS/8u+BvLQG6S +api: eJzlWFFz2zYM/is8vGTrFMtOmzbVm5emd912TVZ720Oa29ESbLOlSJWkkno6//cdSFqWbTVNdntZ92aRAAh+AD6AbsDxhYXsGq6MztHaVzgXSjihFdwkoCs0nD7eFJCBRW7y5Z8nkIDBTzVa96MuVpA1UKDNjai8WgYTL8fwMy8riRYSyLVyqByJ8qqSIvdG0w+W5Buw+RJLTr/cqkLIQM8+YO4ggcqQC06gpd25kA7N1+U+4qojJJTDBRpIYK5NyV1Yev4M1gkoXmJH1Doj1II2btFYEby718zTE5KeVaWKABJSPfYcKq5c7ybtCidp6TAI6wSs+Asf6EeI0Hi+ixI3hq8gAeGwtIfokQNWG/dwjcO4oOy/tjbFjitxJwFUdUlpN56cQwKvLibncNNFYkIOrbsrv9ZoVr0AtYmWNTCW8jAhx1KyKmgyoazjKkfLvitwzmvpGAHMhGWj4feQwC2XNeFNZ09oR8+ZQVcbhQWTwrovJvzhEVwVUddrkil/2GnnnBjfU39eDMMjzFPk2GzFfCZ3rXpT121wIArEiHjg1zebQ4OpmGgPOz0JR5MwqkKoxcaLcFUboeu7avJV73xC7LlX8cVj3OsC0+ozg7aWzm4jMWDvFZtqtkDH3BKZws8uiOa6Wvkl7z5pHJHN3+nLHjGhnGZHnYo7CoKD98q7bCvMxTxSHbNLXcuCldzlS2+0o7gr+o/wCtHcI4BrOOdSYsFi1UACJyenoxcvX56Nnj4/e3FyNgpF99rz6jadDlGOErMVi8S4k3u79Nfxf0vYLZ+OWkY7Hfbca9/Ufrp6SqDuIwwWkDlTo1+wlVY2UMDJcNiTJnUeIfiXetE+NT6SMr+lFhX7RyiMx/Udpx2XDwKi48K7UMN9npDYs774v+KOM6FuuRTFl5OgMnomsfzhsclgHXe1fWAkSrQ2UtlBDDb01R8gv3BfcC6M0aaF4WlPHWszE0WBaheDJ+mT//51nx1e96127LWuVfHNXfe0L8nHV29YJ50ZeoX/Qbb70TevjXAr301myA2aY0+y1zfrpIFc648C/ddNcv8IUbSEQu2iRLfU1JkqbT0U3C0hg/R2lEaF445CGhowkD+GCNq7UxsJGTQB33WWps1SW7fOmkobt/YN0wg+iyMs7YXY+vEUMpA653IZzt91fbpERht+yNFzP1lQFoTTB4Rj1c6UG3Nnw7NhryUS/YKVbW5s7Sydq3rtBOFeS+swpYRYTUguXHoTn23zqMTPSN0j9D+4vLp4N55eHE8uJpM3l2+prdBxUY8aXCfmrZXooneIvoMQbKRfb9L1pz+mPrWoFN5t37YX4WWxO8r4E4atY+2Tpu3Hw4NuuxXaNtlOqod5aLg/vjUeq/0JqTW1NxoRIHPt7x7r49K/3pFd1TMpcorDYbQ0434wYjx34jYMyrmmSzssep4cQrGN2bk2rNRKOE0OeU1ndE1pvNTaBSeJenjuEzBUAUXEZml6d3c3yHlZq4IPcl0SDFLkqKxHO2L7S1xJ9pQLndtWW2j/nRqco0GVYxoN2XRnTILRYDgYhpKwruSqc9C9FLADWZtaDj+7tJJc+Deo96+J7HANt6PAmvv8AJsY078rodCvoWlm3OJvRq7XtPyJHrrEVFteCCwGS+RFyIyQhHAeiP14Si61c/fhXEsMGDTGeY6Vu1f2pkN6V5eTKVVL/J+n1AXpGH5H/wHxO8iAErEKd8uasNaA5GpRe9aHYJNqi9eETYvfXin6W21qX606HjZNkJjqj6jWRJfhKo6+w6Pgb83Jbww= sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.5/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

required
- -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.5/apis-tools/operate-api/specifications/search-3.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-3.api.mdx index dd38bd07ef8..98e30710298 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-3.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-3.api.mdx @@ -5,56 +5,281 @@ description: "Search incidents" sidebar_label: "Search incidents" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.5/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

required
+ -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.5/apis-tools/operate-api/specifications/search-4.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-4.api.mdx index 86413414c9d..507da4c37ed 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-4.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-4.api.mdx @@ -5,59 +5,306 @@ description: "Search flownode-instances" sidebar_label: "Search flownode-instances" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.5/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

required
+ -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.5/apis-tools/operate-api/specifications/search-5.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-5.api.mdx index 6fc8223eeaa..adf5e6ebef2 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-5.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-5.api.mdx @@ -5,56 +5,228 @@ description: "Search decision requirements" sidebar_label: "Search decision requirements" hide_title: true hide_table_of_contents: true -api: eJztWFlv4zYQ/isEX9JuHR/ZOM0GRQFnkwDZFkkau+1DNihoaWxzI4laknLWNfzfO0Pqsi3nWPSlBwLEFjkz/DjHNyMvuRVTw0/u+BkE0kiV3MLnTGqIIbGG37e4SkELixuXIT/hBoQOZn/0eYtrFARjT1W44CdLHoIJtExJEuWGTo7BFxGnERgUD1Ri0SaJijSNZOCMdj4Zkl9yE8wgFvTNLlJAC2r8CQKLiqkmCFaiFdydyMiCfl5OhjUZY7VMpnzV4g+wqK1LhDRFay0+UToW1i8dHZJk2OCPy2ajiYihcWMO2kh/vydPfHtA0hqMynQAV7vMof9EYhtB0K60ES01BhL3jfwTXojER3kwWfe00FosUF5aiM12BAiDUdq+XGM7thA1e1jpcA1KvtPikGQxZe9g+B6fzs7x477ujCEBWtVXfslAL3b5qMxXPGoQRdt5jYusyAyma9rsmxAmIossIz8zaViv+y1CmosoI7cThCHtqAnq2UwnELJIGruzdpqPEUmY6zttMucO7NfOykPdd2fmEXnlERRIJkwASYiOZuMFc0leP8MZviujxnOBPFQuIqv7AoI3mmfgy7G0PBBSWEfSepUjWs+idZmzATcV06+Du+W3NbRktkLb/piMFJuCZXYGLIEv1gm0WKDShVtzlyGFPTL+Gz2ZPYa1qnClKtQ9L4j23AVMigAnOcsyM1NZFDIsc4RORmuK66Ltr3KfD/YGcdzxy2SuZADsNDMyAWNYUXfUEA4O+r3v37077r09Oj7q97u+cC8cv1c5uB2AXAJdm9NrJYxrO2i7dqmqg5T03Cvpsd9tuOxOm5u57ogmTwhUtDoDz+spXtmzykG325BTWRCge/6+LrlJuK8k4v+b53pjyDubr73XdUSrrIhe5LUailsw2EnMDjAkediURmfCCiQGzHQZ7s4lDPU4gvi71+aUscJm5oXhiDGdc/rcioRM0FQS7AiTW3gqROdaK1264W0DQSg9lmEIyboP3nTe/POve7h93Stl2YXKkvBfd91+U5IPbi5ZLZ0ZOIX/QLa7uTzItLQL153G2GtB7ztSvrtftZboAvUgwT3dt14xtnC6gZ0p6nWpMs4Zws7wqTPvdUIddnxf54RAEy87AJlGYuNL79HVSaeznKHy6mSZIleuXMvVUozzcZr2fDTdmIyakQpENPPnrYMd4YRCG9QbaPKhiYXi7k9vk+fScq4tzB13j7uNlkh0h5UqGyo7M2vTRjteuNHSyg8/PjpDkvOXLiJSdYxU/gTUMnzb49c357eD0fn+8Hw4vLy+ol5Cx+V6iLAe5dJKDtEBomcvxAvpiyJBP/w+cslEyX9bva6f+7ec9WFIhvX3Knded3cjryTzi5TPZdvubjblSqbqxbVa8ANYd3OIXDrXbo5kpamNEYz8N1HOVXkBXbvfL4DdZGMkBQrbdnAVE24Aww8r5+AGykCRjyy+pSExuM2ikukbK8wiGbBYJdIqAuQ0rVYZZf1MKetBEjehaYLli4YCaLBiHh8f24GIkbxFGw8kNyBIwGGRZHPX/pyvtDaUQxWYUlsq99zRMAENiLKTGzKdtWGK99rddtdXkLGxSGoHPcMRa04rc9HiK0snjQTm7SpHuMzp447Pe6SnQ15ElX5R8kxwx5fLsTDwq45WK1r+TC/mRF4VcXhi4zMQoc8Fn5f8vef6/RFBKEf77YmZSNFrDDC+qX1S9r7GgjfXwxGVU/7bVqxC0tHikX73wv8n/CP+Ufo5d7had+tLHolkmrlmwL1dKkCRkT9Kn23Uq7tZQRDJoobyh1MnwEbqAZIfi7rEoRIf/RvHX2u/yG0= +api: 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+rnuiqRMigdiZAgOv51rZwCqng0FHThVCoP0bu+Q+4T6SiP9vnruNoe5sofYe1xGddjx9kNdaKG7QFqmzR8CQ5FlXGr3mjjOpVjyVyfFcyo2epZj98Nicso67wj4wHBlaW9PnQSSkso4rcSRMfuFLIbowRpvGDc86CEKbmUwSVLs+eNJ/8s+/7tnhdd9px97oQiX/uuuOupJ8fH3JWunM0Cv8B7Ldz+WiMNKtfXeaITdonnpSvr2rohKE1h8l+re76BFjC9AN3FJTr8u19c7gbgkx9FfDfmKSfujrQAgM8bIHUJgUYiiDR6u43y+X2roqLnNtXOVbrpF8Vo/TtBei6cdkiCHVgqfLcN4u2OkSGW1Qb6DJhyYWins4vUeey5u5dmPufHA+6LREokesbLNha2fpXN5pJwh3WqrC8BOiMyG5cOlNRLYdI5c/I7WM0Pbg6vriZjy9eDq5mEwur95RL6Hjar0q2olyY6WG6AHRexCCjfSbTYL+9PvUJxMl/832c/0ifOXsDkMyaX9X+fMGxxv5VrK+SPPetO3BflPeymx7casWwgA22B8iS+/a/ZGsMbU3gpH/5tq7qi6gK///Atl1MUuloLAdBlcz7gcwxoWTK/QDpdDkI4cJy432m5tKpie2MTvXhmVaSacJkNd0RheU9UutXQBJ3MSFz9dQNBRAG/f79/f3PcGzQiW8J3RGbkilQGV9cGrXvq1Xoj3lRAvbaEvt3/sG52hQCezXhmx/Z5iCYW/QG4QKsi7jqnXQVzhix2lNLjr87Pp5yqUiox5hWdPHLayGpGcS2ESV/igFJriFspxxi7+atKpo+RN9mBN5bYkjEBsskSchF0JewqvA9U+nBKEZ7Q8nZiLFoDEWAnP3Rdm7FgteX02mVE71v61MJ6Rj+D399+L3EAOlnneFr3O/VkLK1aLwjQCCTSo+XpAvGn/t1aq/1YYc1LqFsCyDxFR/RFVVm6IER+/hc+MvYKjI5w== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.5/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

required
- -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.5/apis-tools/operate-api/specifications/search-6.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-6.api.mdx index 84f7b4a4691..71151e56b9d 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-6.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-6.api.mdx @@ -5,59 +5,318 @@ description: "Search decision instances" sidebar_label: "Search decision instances" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztWW1TGzkM/isefeGutySBFo7mW0rCTO4Y4Eja3gzNdMyuQtxu7K3tBXKZ/Pcb2fuWzUJD2w/3wrfEliVZeiw9SpZg+Y2B7hX0MRRGKDmUxnIZIkwCUAlqbmkxgi4Y5DqcfTyEADR+SdHYNypaQHcJEZpQi4QkoQsjJ8fwns+TGA0EECppUVoS5UkSi9ApbX8yJL8EE85wzumTXSQIXVDXnzC0EECiyQUr0NDuVMQW9dflRFSRMVYLeQOrAD7jorIupMUb1BDAVOk5t37p8BVJGsstbuoIAGU6p2Cd9Iangz4EMHjXO33bG7vPb89+Pzt/f+Y+jS4Gx8OT4aAPk1UAeMvj1N2536h4TeSEizjVzVKJViEa08epkIKEf9/6TtnRPL3bH4xyYDRHNd8uffqK4BmfN18uF3iH2giPjEfde7lfPTV2og+nrD84Ho6G52cfx703pwMI4HQ4Hlz2Tj8O/ry4HIxoq5a5MqOUQ40mje1jucNoKJPUmooM15ovIABhcW6+GbjyoYiR3aadVQBW2JiW6s/auegkCq/PU/vPcDsAncb4AHzclozwfitcPBIBf10vgpJL22jwEQWuQoi/cEuA+rLZm66Xrq+EmOwbpe23J2UqMG6OpNLRmisbT6U3OoYA+oPRMUyqgRiRQ6vqyh8p6kVTfIri311CL443m0Qvjln+dJnIThr2U4RTnsaWUYCZMGyv8zOUiCHbI9pRU6bRplpixGJh7INdqMEGl1F22B0lXc7aQcVQluADZzDLw1P0U+4YNyHKSMgbdr1ga+WvashpvyoSBjXBLFsuKatJ7o83koFwS8cC7xVJN7sVPCk0wdauOyTVfE/4zTf4/mBE11wn3aXrrQ9yrNgNWmZnyCTeWycQsFAlC7fmbkYHdsjIO/pmdpiQVrGdyuvd8YKtD9LdwiQYimnGZZiZqTSO2JzbcOaUVg6ui7a+K5YeBrWqcgVDeatEiOw45sYUpiCA/f2DvV9fvz7ae3l4dHhw0PEv+sQxqRKpm5nIJCphztpyeaiyN4yqlyp52kZL3ytq50HnkUs7fXXku8pDzFNojKBrdYq+LydKGl9q9judBlClITGfH8dD6xX4x7TLZ3r6TE+f6ekzPf1+eppxR9/InsY5rbI83urlVTy4dNgzDY6Q1KummtznljMhb3ksoocLc6LVdYzzX55aoKlApmbLFzpHYzIyspHVnH80btrGJ10NzEBrpYswvGzoskpfiyhCuR6DF+0X//7rvtq87pmy7ESlMvrPXfegCeS9iyGrwJmhO/A/QLubesNUC7tw9O4auUa96xjO1WQVLCFU6rNA920SbDsEALlvZ4qYYqKMiwS3M+hC+3avncvvFvJtT5KBvNG3qI1zJtUxdGHpo7vqttvLmTJ21V0mStuV47Fa8OtseKU9n1k3l0IXYhXyeObNrzs+niGjDeosNE7QGEAY8NZbjuYUs2Su7qhz1GnURKIPaCmRUeqZWZs06vHCjZpWfpLwmRqRnL90np2ycySCGFneNOH8YnDZGw92RwUzEWQuO7cK1jJeaMlcdA7Rdy8EufRJDtbf3o8dsOghXJa/NA/8bwrrE4aIqmzK2esUDLkkwnWKWyFgm8y23GwmtJ1mutpZJ6OllmYOurnvqefmesE4O3U+uUkbcx64ccGS/l3VoyZrdjMCVLzxSRMbe6qWkj3VVjxp6pCVkvBUCo8fFzv1kXfpsFsfIAvVteGRADpVDotZtTp3/20gu0ivYxHSu9h8PYpxNzoyHlpxi270DRWB0GLEMgxUfvkRkuVqp0qzuZLCKnLInbRapVRWZkpZ7yQ1Ah66guCrEr0Q02237+7uWiGfpzLirVDNKQyxCFEah/4s0qfZSlA7HKnQFKeFct/bGqeoUYbYzhSZtuO6ObRgr9VpdXyJMnbOZcXQYwV5LWLFS7d4b9tJzIUkjc69ZVarr+B2r4Lt3aqyrF5PgqzsXsFyec0NvtXxakXLX+j3RuoaZZX2HQVmyCOPC18E4Ng32V33UEo0bsz91I38iV4YYmIflZ1UOtDF+WhMtSv7D2yuIjqj+R0Bm99BFwiGLjKuqLq1JcRc3qSuA4PXSZWOpxSaIny1wuhulVdiuah4uFx6ibH6jHK1yisgWPrufzT5G5Z6hyA= sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.5/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

required
+ -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.5/apis-tools/operate-api/specifications/search-7.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-7.api.mdx index cec8aac2145..db11afa826c 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-7.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search-7.api.mdx @@ -5,59 +5,243 @@ description: "Search decision definitions" sidebar_label: "Search decision definitions" hide_title: true hide_table_of_contents: true -api: eJztWFtv2zYU/isEX7J1ji0ncZoawwC3cYBsQ5LFXveQGgMt0TYbSVRJKqkn+L/vHFKSJVtO7WIv3YYAsUiey8dzlzJq2FzT/gO95L7QQsaXfCZiYeCJTlpUJlwxXFwHtE81Z8pf/Pmatqjin1KuzVsZLGk/owHXvhKJZevTkaUj/DOLkpBrIPdlbHhskJQlSSh8K7TzUSN9RrW/4BHDJ7NMOEiQ04/cN8CYKIRgBEiB05kIDVdfphNBhUYbJeI5XbXoI19W9gVAmoO0Fp1JFTHjts7PkDLIrXHdLChmEW88eOJKC3enF7WcnlS13IMxheIRWEjv0NhE+svB16ly3+y6QxPx+4PuBa5msWm8CZ4KE+JWQ8TBqRZ/8T3VuHAczOohwZRiS6AXhkd6O1QQgZbK7M+xHYQ8bHaSVEENSn7SojxOI0yywegdrC6H8DOpmmKEgFbVnd9SrpbNFirTChQNwnA7/WCTFE6Eh4JXk+9gwdLQEDQyEZp0ve8BzxMLU7Q56h/hiZwRxU2qYh6QUGizM8MbtbA4yNktM0qz+noVVbmbe1Zl7o3DNKAPCdM+jwOwMZkuiU3Kqgor96F0GM0Jci9ZZ6wmBQInNA++vaG0HA6krwNpHWSG1hfB2pjZQJuw+Veh3bJaDSxKXYNtf4jHksy5IWbBScw/G0vQIr5MlnbP3gUZjlD4e1zpIwJJKmFnnaFHjhDkWfw6AXyzvA8QvZBpGBDIb0COQiuMddL2V1nPuXqjYrieF3Cr8FLoBTCcnPS6r9+8ueienl+c93qeS9Mr23bWYbdt9JwC7Jl3gDUx7FW6SQX9upmVXaNbFsCe13CrmpzNMLblQ7maDcRGpdxu6AQ876rFiec1xEvq+1z/g016s4weWF7/793faO/OG6urAIc1ZCMNC/eyRwXDPdfQy3QjFKQ7a4r2S2YYFCdIQhHsDnmIyGnIox8ODX1tmEn1npaOIOvyCr7lRxGDqNhvPnQbL7lnqJRUpRlOG+qVVFMRBDyu2+BV59W3f92z7eveSEOuZBoH/7rr9pqCfHB3TSrhTLhl+A9Eu30p8FMlzNI2zin0e66Obe94mKxaGZhAPgpuV5PW/pMTxQuYhcQunEhtbcHMAladp26n4DiucHTcrEERkcLWYgGlCsoczZyFV/1OJ1uAtFU/S6Byrux0oASb5tM9njnv2rEdOEPps3DhANTBj2GIwQNsbziN4VCDceC0t9GSSTloF+IuvAuvURKS7pCyjo61nIUxSaMcR9woaeUGMuetEdK5SxceWvePRGC3LDo3vb0b3g/Gw+PRcDS6vr3BzoLqcj5AWPV6KSWHaAHh2hHRgvqqCNif/xjb4MJkuF9/5Bi6l6763CaC6kue1efV54/1aQ6+XJfThrd7llhT7xwhdnDfbGh7cS7wql2/knluEvU2x+bMOm5zNi1Vbcyl6J2ZtI7I0/XWflPi5C6dQgnCoNgOHUmYnUrhx4gnbqdpX6IHDLyTQhmyh0XdwCdSiIXSQyIJWSgRkOU0SqaYUwspjQOJlRBEIyyXkhgeGvLx+fm57bMIWgVrg0I0A4DkMEEjbe7EX/Od1gZzIH1dcgtp1x3FZ1xxQNnJBelObdqk3bbX9lx+ahOxuKLo5YpUs1kZ6Abe0TpJyIT9WGABZnmxeqBP3UowHNfF5QULnOvqzgPNsinT/HcVrla4/Qm/SWDpXJcpV1bpgrPAxYbLAvrOdZrjMWIq33m2XyuwJDuOAfg7MS/STipF+O52NMbkzb8/RjJAHsWe8dsk/O/TD/CH4Zi4+wGR3c9oyOJ5alsRdXIx3VmKBiqNuFEd7M2KchQvKyh/fGsJyFg+8vinogrAQAtL91r2Nx50W08= +api: eJztWEtz2zYQ/iuYvbhNaUl2osThTY2dGbcZ27XU9OBoOhC5kpCQAAOAdlQO/3tnAYoiJcqxMr2k7Y0E9vHte8kCLF8YCO/gHCNhhJLnOBdSWKEkTANQGWpOL5cxhGCQ62j55ysIQOPnHI39WcUrCAuI0URaZI4thLGjY/iFp1mCBgKIlLQoLZHyLEtE5IT2PxqiL8BES0w5PdlVhhCCmn3EyEIAmSYIVqCh27lILOqv04m4QWOsFnIBZQCfcNU4F9LiAjUEMFc65dYfvXxBlHHljctuQZKn2Hlxj9oIb9OjWp6fNrXc4udcaExRWrNHYxfprweb0+S+2mdDF/H7g+yyKLm0nZbQrbAJHXVkXBmAEX/hE9X4dBzN2ynBteYrCEBYTM1uqhACo7R9OsduEmLSHSSl4xaU6iYAlHlKRTYav4EAzi/Gb2DadMWYAJXNk99y1KtuD9VlFRYwSpLd8hslCVsHkcU1r2E/xDjneWIZOZkJw04GP0IA9zzJyeekf0w3as402lxLjFkijN1b4Z1auIwrdsdM0py+YUNVFeahU1lF4zANFEPGTYQyFnLBZivmirKpwsm9qwMGFUEVJReMcrpG4IVWyfdkKIHHQfRtIMFBbgi+CtblzBbajC++Ce2O11pgSeoGbO+DnCi2QMvsEpnEL9YRBCxS2cqdOVuI4YiEv6c3c8SEtIodNSr0yBP2PkiH32QYiXk1B5hZqjyJWcpttHRCG4xt0t43ec+Heqtj+JkXo1N4LswSAjg9HZ68ev367OT5y7OXw+HAl+lbN3Y2abfr9IpitmLVBNgQz1asMU0a6DfDrJ4aJ3UDHA46rGrJ2U5j1z6079kxhFbn6A5MpqTx3eJ0MOjIlzyK0PyDQ3q7jR7YXv+f3d/p7K4Gq+8Ahw1kqyxPnuSPBoZbNHliTScUonvRle3n3HIm5D1PRLw/5TOtZgmmPx2a+sZym5snejpFY6oOvhNHIY3lMuq+9AePhedCa6VrNzzv6FdKz0Qco2z74Fn/2fdv7otdc6+UZW9VLuN/nbnDriQf3VyyRjozdAz/gWx3HwVRroVducE5Q65RH7vZcTctgwIipT4JdG/T4OmbE5ABdqloCmfKOF9wu4QQ+vcn/TXHcYOj73cNIESaRosDlOsEQii8h8uw3y+WytgyLDKlbem2Ay34rNru6c5H163tEEKiIp4sPYA2+MkSGV3QeKNtjJYaygOvvUeezOpFey3ubHA26JREpHukbLJjI2dpbdYpxxN3Sir9QuajNSY6b/Q6Qpv5kQmaluvJDdc3F7ejycXx+GI8vry+oslC6iq+MmhFvZZSQXSA6N0TwZr67Tphf/lj4pKLiuF285Pjwn90tfc2ETc/8py+QXv/2NxW4Ov3etsY7N8lNtR7V4g93Fdb2h7dCwbNqd+oPL+JDrbX5sIFbns3rVVt7aUUnblygajK9dr9U0J2k88SEVFS7KaOYtxtpYxHVtyj26YjRRGwGLNMK3e57hv0xNZi50qzVElhFQFynFarnGpqqZT1IKkT8shVgy9JSg8T9vsPDw+9iKe5jHkvUim5IRERSuNCXwXxXXUSbDHHKjI1t1Duva9xjhplhP1KkOm3tk046Q16A1+fxqZcNhQ93pFaPqsT3eIX288SLtzPAgewqJrVHdyfNJLhuC2ualjToOo7d1AUM27wd52UJR1/pn8S1Do3bcq3VVgij31u+CqAN37SHE8IU/3Ns/tZQS3Zc4yiCDP7KO200YRvrscTKt7q/2OqYuLR/IH+TfIHCIFSMfO2hYU/KyDhcpG7MQReJpU6z8k5tQO3OoOzat2K5KqBsCg8xUR9QlmW6xYAlt79N9nfWsZbyQ== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.5/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

required
- -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.5/apis-tools/operate-api/specifications/search.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search.api.mdx index 4abf8ac4b93..096f45ab912 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/search.api.mdx @@ -5,56 +5,215 @@ description: "Search variables for process instances" sidebar_label: "Search variables for process instances" hide_title: true hide_table_of_contents: true -api: eJztWOtv2zYQ/1cIfnHbObGcpo8Ew4A0TYBsQ5PFWffBywdaom02EqmSlFNP8P++u6Msy7aSOMAwYA8EiE3y7niP3z3oknsxcfx4yD8Lq8Qolfy2y00urfDK6IuEH3MnhY2nvMut/FpI5z+YZM6PS55IF1uVIx1QDYiKzSoxDuhjo73UHmlFnqcqJpm9Lw4ZSu7iqcwEfvPzXIIIM/oiYw+MuUUNvAIpcDpWqZf2abo7OW8QKbh7AmxdPjY2Ez5svT3kC+KLpXMX2nmhY/nTzowuhgt3J9cikw1S563SEzyYibRoP/G20OAnmTROR8akUmg6llpof5G08OKp8ilu1bFEldUf8kl1Xx8QKYXwZLzubWGtmAO98jJz21HAe52xfneO7fjKtM0gwKFN1lSpTrpc6iJD0J4MTmH18Qw+bpsOGKBCi+bOL4W086Zf5DeR5WnQ4CRNtwF9LX1htWMiTVeoZi8SORZF6pmlY5Yq5xn6mCnH+tFLvgouXj+ovN8u+iBqSG5wVkE7iFDEOcGfCZ2wpZ93UfRe+SnrbCO9wzpHUfSuf3R08Obw3WG/f/S2Q4JlwoSLpU7AxWw0ZwTehk6rNGxLH74plNe4GNYh5pXMKq4UvgUF7kpMMLIP2qblN98wDrDbbtuaBR28rrPPXpyafM7IEGbGrINqfcaV6zDSDHdzK2fKFA4C6yC+7iX7W4zfyLohdxnEkXfXJB5EEXiJ8Iw1WFksD1ApJG243GgXgAyELZW5iFHjv64gb+b1M/P9/zq9XacrvARUPq/4euNFupOhjZuvA8gbCuDpYRt8PgovmNLgCpU8jCEIFcjJvnsuliCyvnBPqh8aVAZgEJP2gKgKJO3Roo3HQnFmrbG1G15vu+Hc2JFKEqnXffCq9+qfb+7htrmfjGfnptDJv87cN20gP7m6YA04M0kM/wG009gXF1b5OTWrEXQjafeoRg9vF90SXGDulKQVdKvHh35qzFXVZksdsfNk0k8NNsHcOHKL8FNY9Wb9Xs3cqx8aTtqZtI4UKiwUN14GDy+Oe71yCiIWx2UO9XJBPXr54gCT8SxEl6Y04ExNLNJpuHVd+ZupZHiA1R8nAA9rxEG4fZ8aUD1wLcW9j95HrZKQ9AEpK3Ss5Ey9z1vlBOJWSYswLoRoDZAuGL2M0Kpr5Aqb37Kx8curs+uTm7O9wdlgcHH5CfsJXlfxgYbNqNdSKhVJIWpvRMSX1OdLwP742w2BC5PhevVEPAsD9vr0RDdE7Z09avbtqFa+HvqrZrzaaPRgHIaaXbeRDWGWjjYHrZKcuTmj1bI3RlT02NiQc6oUuqQ3smRXxQjKAgZqO5yGCRq94MOrmaQZPjboFZy2t/IEvrGlWEykzGjlDSpEnN6aAnE+NcYHJbE6gWhUK6QJhsxBjtzf3+/HIoPyLfbhQnQDKClhTETayrE/VzvdDebExK7mVobWPSvH0krQslcJcj0akCBNg7H9/Wg/CjnjfCZ046Kdq8Sa+2ocepj9e3kqFE1WpGtZFZAhn/XXSsAyyvgrRqgFQ16WI+HkrzZdLHD7K74EsZyt+EKp41MpkoCNgFN+Gqr/3g0qsgLg1uyMZTJwnEC8c/8o7W2jGl5dDm4woapfVDKTII8V9/hrC/w/5r/DH8KRnELZTvslT4WeFNQeeJCLKSgK9MpqIF3PWLJsWSL0vKHl9x+IgN2YO6l/gINgjcclvdAWfwKwvivT +api: eJztWFtv2zYU/ivEeXHbqZGcppfoLUsTINvQZHHWPQR5oKVjmy1FqiTl1BP034dDyrJsq00CDAN2ebN4LjyX71zoGhyfW0hv4SM3gk8lwl0EukTDndDqIocULHKTLSACg18qtO5Hna8grSFHmxlREh+kMPFcbNmqsRBBppVD5YiXl6UUmdcZf7IkUIPNFlhw+uVWJUIKevoJMwcRlIYscAItUWdCOjQP833GVY9JKIdzNBDBTJuCu3D05ggaL5ehtRfKOq4y/PnRgjbT5RPYFS+wx2qdEWpOhCWX1TDFmUpl3GHeo061lsiVJ6Piyl3kA7JEFU7SUZdLMln8gQ+a++rQs/oUnsy2o82N4SuIQDgs7H4W6F6rjXu8xH5+UQ45FIE2+ZYpLSUCVFVBoD2ZnEIE788mp3DXD8CEDGr6J79WaFb9uOBXXpQyWHAi5T6gr9FVRlnGpdygmj3LccYr6ZjxZCaFdYxizIRl4+Q5bJJL10/a6A+rPkx6mnuSbdIOE1Jx7uHPuMrZOs6PMfReuAUb7SN9xEbHSfJ2fHx8+Pro7dF4fPxm5BVjzrjNUOVCzdl0xTx4ezZtynCofGBXKXS4uO1SDK3ONq8+fY1P3BWfU2a/6ZvCr67n3EybYd+2PBjRdaMD9uxUlyvmHWF6xkZk1kf6siPmLaPT0uBS6Moyg7aSzj5nf4vzO1V3C7bgUkK0pfEwSe6axuOZerAw1B6cqdAf2FIrG4B8mCQDnbnKyOK/riHv1vUT6/3/Pr3fp1u8BFQ+rfk67bh8lKO9m68DyHsGEPVoCD7vueNMqCWXIv82hkqjpxKLH56KJeu4q+yD5ocBVaC1fD6cENGCZDhb/uB7qTgzRpsuDK/2w3CuzVTkOartGLyIX/zz3T3ad/eDduxcVyr/17n7egjkJ1cXrAdnhl7gP4B2v/ZllRFu5YfVFLlB89L36Nu7Jqoh0/qzQP91Fz2w9PvB3HZttraRJk+BbqFpCJba+rBwt4AU4uU47oTj7qFh0SzRWG9QZSSkUIcIN2kc1wttXZPWpTau8TN6/eJIayBayK7f0iAFqTMuF+HWbeNvFsiIQN2fNgC3QEY4CLcf+AHULVxrde+Sd8mgJmL9hpYNOjZ6Fs6Vg3oC86CmJqwLIVsT4gtOrzO0mRqloOG3HmxweXV2fXJz9nJyNplcXH6geULXtXJNtJX1TktrojfIjzfPBGvu8zVgf/r9xoOLiuF680Q8Cwv29vbkb0iGJ3vSn9tJZ3y39LfDeHPQm8G0DPWnbq8awi6d7C5atQ/m7o7W6d5ZUSliM+2D05bQpX8jI7uqplJklKj9dGrG/erFeObEEv0On2mKCm3be3XChGJrtVRIhVbCaTLISzqjK8L5QmsXjKTuxDOP0FAmlDKbxvH9/f1BxotK5fwg0wWFQYoMlfXpaAP7S3sS7QjnOrOdtND+OzY4Q4Mqw7hVZGO/IKGxwdnxQXKQhJqxruCqd9Gju8RW+DocOvzq4lJy4Tcrb2vdNpBbWI63WsA6y/QvRugFt1DXU27xNyObho6/0EuQ2tlGLrQ6WCDPAzYCTuE0dP+XN2TIBoB7uzO1ySBxkmVYuu/y3vW64dXl5IYKqv1HpdA5yRh+T/+28HtIgaDoA+Ir3Z/VILmaV340QNBJ5ccrishmGd2uVu/Vuj2oVc/Cug4cN/ozqoY6anDF0bd/njV/AnuTLE0= sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.5/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

required
- -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.5/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx index 6d1356d49e5..e21da80dbfd 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx +++ b/versioned_docs/version-8.5/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: eJzlVktv2zgQ/isET93WsZw2WwTGokAKOIXbogliFz0EOdDS2GYjkSo5ctYQ9N87Q0qOHyp297hoDhE5nPd8M+Naolp5Ob6Xt86m4P3UeFQmBfkwkLYEp1BbM83kWHr4UQG9XOf2yb/ffoKtHMhSOVUAgmMdtTR0IdbH8KYNHUuFazpn4FOnS1ZGRJIVdinKaFLozuZAOjKiHZA9dBUMpE/XUCg5riVuS1atDcIKHLEurSsURtLbC9k0DyzuS2s8eJZ4PRrx59D0rErZJsmnllQZZJaXyUv+nBhTzqkQCULh9+genTYrMkl/A3nRZ2dqNirXmeCAwOOhPVWWuU5DahNKwiKH4tV3z3I9TtjFd0hZAXFSQVDH6ChlWPl/zMyb15JcLChktYKeELhMbfb7HiPhNHB60ZgzaeKcdbLLxJvTTFxbt9BZBubf5fx/Fe7Fabh3seDApfe2cikIY1EsbWWy3wMFf/b1w9XtVOwFLCAI/Ab5IKKHtHIat2FELkA5cGc8Isf3D82gphTYRw3h9nA8KT8Aim7wiiVP3r7BKRZbEWcuzeK15Wm9gpAcnr5jmWzOk1bmrJPxSU0iTdJpPwvaJXvrNt08r1xO4nXMfjNOknptPTbjurQOG2LeKKcVVSqknN9i5ZeqyjnVuU1VHsjHgc3XIPiBNwaHhHRnjETrQ84y2zhUdzm6HPVqYtZfaHlGzrOeNWLZqycy92oK+6Wr5Iz5YtBd9Z6XRqnjbmyX4c3t5O5qPjmbTWaz6c2XbjG2cuThPiJ2WloXg0N8j0yy477uwPzx2zwAT5ulDeItAG/C7gZxWy2oqTiU04CtUGEZ0gf1BoQymUhtUebA4+sYZHwSnVpqJlFYo9Ey9IMkOlsxEtbWIrdD7G1SzW5FIHFQnlD09PQ0TFVBE1ENySAngZwEWtzM2+btc0sZHAlnNvU7aW3DPXGwBMcwTlpFPmGtDOQY7PlwNBxFVHkslNkz9F977CCLu4Ih/I1JmSsqbtO6XLf9dy8353FSHXYg0cZR5VETEtJiL93Lul4oD19d3jRMJjYXBsdz64VGzbTnM3X+UuUeTpzcjVn54q79ifWH+PXPsN6YOnybbWj8vOIbHQNww/+G5plcg8oIqexVfLkikJW4J8Orn7tpN6w+TOb0rCpO1i6hR4gPCntd+Ot9YBBz+wjm3c4h5Cu71DQ/ARnwu5g= +api: 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 +info_path: versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/sidebar.js b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/sidebar.js deleted file mode 100644 index 8c5076925df..00000000000 --- a/versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/sidebar.ts b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/sidebar.ts new file mode 100644 index 00000000000..1dbd9157075 --- /dev/null +++ b/versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/operate-public-api", + }, + { + type: "category", + label: "ProcessDefinition", + items: [ + { + type: "doc", + id: "version-8.5/apis-tools/operate-api/specifications/search-2", + label: "Search process definitions", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.5/apis-tools/operate-api/specifications/by-key-2", + label: "Get process definition by key", + className: "api-method get", + }, + { + type: "doc", + id: "version-8.5/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.5/apis-tools/operate-api/specifications/search-7", + label: "Search decision definitions", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.5/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.5/apis-tools/operate-api/specifications/search-6", + label: "Search decision instances", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.5/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.5/apis-tools/operate-api/specifications/search-4", + label: "Search flownode-instances", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.5/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.5/apis-tools/operate-api/specifications/search", + label: "Search variables for process instances", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.5/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.5/apis-tools/operate-api/specifications/search-1", + label: "Search process instances", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.5/apis-tools/operate-api/specifications/by-key-1", + label: "Get process instance by key", + className: "api-method get", + }, + { + type: "doc", + id: "version-8.5/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.5/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.5/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.5/apis-tools/operate-api/specifications/search-5", + label: "Search decision requirements", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.5/apis-tools/operate-api/specifications/by-key-5", + label: "Get decision requirements by key", + className: "api-method get", + }, + { + type: "doc", + id: "version-8.5/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.5/apis-tools/operate-api/specifications/search-3", + label: "Search incidents", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.5/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.5/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx index e9df1fff308..066eb451fc1 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx +++ b/versioned_docs/version-8.5/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: eJzlVm1v0zAQ/iuWP/FSmu4FhCqEtIluKhtsWotAqibkJtfWW2IH2+moovx37uwka9cg+Ir40vrl7rm3584puRNLy4cz/gFiaaVWN/CjkAYyUM7y2x7XORjh8GKc8CH/maWnmwvYfD/gPZ4LIzJwYAig5Ao3KHIPG7yTCpe5cCtcJ2BjI3MCwUPUZnrBktoeM9sGe7zeojFnCuhxG68gE3xYcrfJCV8qB0swKLrQJhMuHL055lV1S+o218qCJY3DwYD+du1PijgGS6ZijVDKeWz46SIMjtZ7Fq0zUi0Rv6p6/LgLc6zWIpWJjwWs28UWeZ7K2Ocwyo2ep5C9vLOk12FLz+8gJgCUxMw7GSKxTrjC/jELR4ccXcwwPLGEjgioLgil4u7LcLAfN95Il9LRyBht2kwc7WfiTJu5TBJQuzl4Eb3498M93g/3JhQcqPRWFyYGprRjC12o5P9gweuufji5HrOtgBl4hf8gH3hoIS6MdBs/E+cgDJhXNBOHs9uqV2IK9L0Ev7t9OhrPwXXPRSYs+/bpks03LIxXHLsrTQN5CT4tNGiHPFofRIlJohKFKj/OyB2zbiZ0YXDA8TKktxpGUbnS1lXDMtfGVSi8FkYKLIXPKd2F0i5EkVIuUx2L1B8/9Xy6AkYX9AbQdHe4JxIE631KI9nYhXs7eDvoRCLR36A8UuMRZ+Vc3okThDuR/GPRlGpCciHopjxtuUUuL3zK6+ft6np0czIdvZqMJpPx1efmqav10MPtkrcotYveIdoHId5InzVs/fh16pkl1UJ79ZphV/4VBnZdzLFrKJT9gDUT/mXDPyfXwIRKWKyzPAWaT9g5/rKhOq1YA4vdwjKtpNPEba/pjC6ICSutHfE9NC9Ck1uBSBSURRY9PDz0Y5HhyBN9NEhJQCcBX2GSrfN2WZ/0nignOratttR+HxlYgAH0MqqBbESoROQQ7EF/0B8EVlmXCbVl6O+baCd/ban8p0CeCixrVTtb1g0242v67sEWw99hAKEuQyqFZpnxspwLC19MWlV0jK+D8a3/2Fu+ExNpaY0dvBCphT1f2kHJn9UfZMlz9ocvp07/GxarjW/vtKAdLj09/W+FY4mvQCTIR3It3JwglXK3pdN+IVHjtOPnfDRFGVFQdtoMPiG3R+30492pF2BTfQ/qfeuVoy35VVW/APihoiw= +api: eJzlVm1v2zYQ/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 +info_path: versioned_docs/version-8.5/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.5/apis-tools/operate-api/specifications/xml-by-key.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/xml-by-key.api.mdx index a4d4935afc8..c10c1821917 100644 --- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/xml-by-key.api.mdx +++ b/versioned_docs/version-8.5/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: eJzlVltv0zAU/iuWn7h0TccGQhFCGqJDg8GmtQikaQ9uctp6S+xgO92qKP+dc+wkXdtweUW8tL6c853bd45TcScWlsfX/NLoBKx9D3OppJNa8ZsB1wUYQZuzlMf8Ic/erT/Bmg94IYzIwYEh3Yor3KDAnb+TCpeFcEtcp2ATIwuPF3PUZXrOimCKpRtbA27gRykNoB1nShhwmywhFzyuuFsXBC6VgwUYFJ1rkwsXjl4d87q+IXVbaGXBksaL0Yj+to1PyoSson6iEUo5jw0PLsK4aL1n0Toj1QLx63rAj/swz9RKZDJl5DxYt40tiiKTiU9fhCHPMsif31rS67GlZ7eQEABKYtKdDJFYJ1xp/5iFoxccXcwxPLGAngioKAilkv7LcLAfN95Il9HR2Bhtukwc7WfiVJuZTFNQ2zl4Fj3798M93g/3KhQcqPRWlyYBprRjc12q9P9gwcu+fji5PGOPAmbgFf6DfOChhaQ00q39QJyBMGAOaCDG1zf1oMIU6DsJfnezOxc/gOsZikxY9v3zOZutWRisOHCXmgbxAnxOaMTGPFodRo3ywUbZRhUq1X62kW9m1c7q0uC041XIdR1HUbXU1tVxVWjjahReCSMF1sUnmO5CneeizCixmU5E5o93w5gugdEFvQY05x3uiRHB+pBySja24V6PXo96kUj0Fygbnmxwls4VvThBuBfJvxxt3SYkF4Jua9XVXhQyvHvNQ3dxOb46mY4PJuPJ5OziS/voNXro4eP6dyiNi94h2gch3kqfttT9+G3qaSbVXHv1hm4X/jUGdlnOsIUolP2ANRP+mcM/J1fAhEpZovMiAxpWLcla3tOKtbDYOizXSB9NRPeazuiSmLDU2hH5QycjNLkViERBWWTR/f39MBE5zj8xRIOUBHQS8Ekm2SZv583JYEc51YnttKX2+8jAHAygl1EDZCNCJSKHYA+Ho+EosMq6XKhHhv6yo7aS19XJfxQUmcCa1o2nVdNt13x1GMbRbr/haRxAqeWQV6FzrnlVzYSFryarazrGd8P4obBpNN+WqbS0xvaei8zCnm/dCOVPrppPpafsdx9UvcG0fFZr3+hZSTtceqL63xqnFV+CSJGZ5Fe4OUFSFe6RTvfhRC3UDaYP4ynKiJJS1aVzh+YetdePN++8AJvqO1BvO68cbcmvuv4JhPioRg== +api: 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 +info_path: versioned_docs/version-8.5/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.5/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx index f15363d6c21..d242b135561 100644 --- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx @@ -5,55 +5,282 @@ 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: eJztWetv2zgS/1cG/NIWp9jZ3WKxMO4BJ3Vv3UcSOM4V2DRoaHFsc0ORKknZNQz/74chKfmVh9Pb+1Z/kqV5a+Y3w9GSeT5xrHPNhtzdsZuMCXS5laWXRrMO6zonJxo4eO7uYC79FG7psi9uwRu45eE54i0YC36KwHMvZwiVQ9uCAfrKahceEFeLZcyUaDlJ7wvWYZE/6M5YyS0v0KMlg5ZM8wJZh0V1LGOSDCq5n7JdK4dThP4bMOMtTRa/VtKiYB1vK8yYy6dYcNZZMr8oSbLzVuoJW61uIjE6f2LEgii25X+aoobKST2BQe9yCN2LfozFu09D4JWfovYyD16BN3eoYWyUMnNiSIJhZMQC1h5CwRcwCoESZGxutEftSTcvS5Wktf90ZMBy33Yz+hNzT0GzFFEv0QXe9D72vdyN2YZPPPgRDM/iS0xS1vaCdHB2PgQT2LmCObHnXCkUIKTF3KsFjK0pgoDuRb/1WdNrcQvnsYC5VAq08eQyHymk5BHoMffbChsJ2xZZHBuLD9mmEYUjiSP8rPEbRU+SOSV3DgVIDX4qHUjtPNc5ttgqY5zez/kMrZUCY5YXKf4pbiNjFHJ9f+BuKaVum3QDP+WeYsSVRS4WtZWifs3Nfz7hUrfgnJyaS4eNiM+6qFyIz1ha56HSax4twGi1IFq9KyrYN+aV8jHPV6tdgwcpA0PAXMg4ClaUs+GCWcfWWMgra1H7WMksY156RWGhWo3xSnLZakU6LbrSaBfT8Ofj4/0qOtfgqjxH58AGYPhLM1+Kp3OeErLS8muFIAXV7Fii3YaNVZZw5xBZRLnHThdvcCy1rFHuKVFXDi1QXAnEmgo4ufh4BqIRFGSX1lD8zr7LwsQcBOUWQ5jfcH8oVsz5Gsgh8KOAlxZJhQDC2hlXlDFmDLfkTatWMpQF3sJYohKvonZTlAr/J/1RwpMWNIr2bDgcKUPWOLSkpi0FSZ9PTaj2uhS92c+BS3+QbwEkiXS/fXFxrtWibl+oq4Ia9emg1x323rCMnZ5/vPjQS9fds9Peh3D5ttuni5tVxsbGFu9x8bQVAxyjRZ3jpitA7MEfujgkk/fExK7MQWCpzAJFFAn96Cr9oThSY6gpsgjWqbgX4XGlVGPGf9A6GaEh2SK1xwnap42ZRda/zKJoEPfRhl9fk4nSvTW26BUjFALFAe2k79aKMbHRv6iUXsO/knEWo2WB9rEwpUJfg9DzUyCJ2MCfxwttTyUNiBvVlp73Uwv+foPqJg7yidLf0bhjj0fNtT8kpak+IzUlM3fO5DJAXxgAt6peVHgYnpFMUSEIKvtxmpzrum9yip4eeVlgTH0aWK7KwxVEjqOqfI6anGsh6c6/ralKt6GJW8sX9ypqeGASmPZUSY+Fu2/u3tBHPfC56giUn6VNUjegMY/7bQhpwliD7Lvzky+fzgfvewOWsT96vZPel6vL3uDLsHv5nt2QrM15aJBmnzQKvb5v+ulqQGtNmKTr8SdO0Q3cJtxJR6iXdC3j44T5sVG8av19ZNv/fERgOKvx/Wk0A/yWYxln7pw7jPQPnmLCqEjT5+0D4zL8A8Ig/MgcV1ozUlj87bnzHLlauQNgvqshPYpTuMXSokPtI7D+PhxeQBQGuRFNm42xq6fWFrw1FvAbpwzJ4PXxMUgtyAd0wOHFCReQ5t0XkZWIXm8TnRkPb02lRUNCsXMGjN5tFr/8TNVWoHN8ckA9dyE+iB6W1sykCDpHVuIYNoi33QvkJg+zvAgYVePn0zp7MblqvL26ouHUWFDG3FUlvMTWpJVRgiozgeSJI3TdKI4go6mKX55TFVTcIAw6/cLDlM/iSalEW0jnYorWRxiuDbXHyBJ6feqcP9LyR1o+nZavvwusm/bf7MMSfI8p1D8y70fmPZ55wVs/NSIuNfNpWID6Keuw9uynNiWVay9jbq3aEelYxhzaWb0graxiHbaMCbTqtNvLqXF+1VmWxvoVy9iMW0nbtpA19CxmetoWMWVyrsLt++YserC5PqClZ9QeJ3pjd8T9dvzb8b2SiPQBKevkX8uZel/ef0wOxPdKCjtch3llpV+E4OTG3ElkneubjI2QW7RHd3TquL7ZJL0kkTE+NcN6BC0lnVN2LTkNdEcjHoaj7bFJurio4zMuVdhzGg2XqMZHH7nmExSQq8rR/pfyPy24aab80L8cHl32Li/752f1qjsZtNq2vzEvhSkEJRwwAxGrqd/WxfXu0zCkIOHNYL3l7sXS3l4ar1P/wf1o2DGShWMTjNkYg5V0vlmQ77/BmoIWJxAG0yNvjioXX+UGRFIPt7yUQi2gGdlhRMtqOgKmkx2VuzJ64qTA1PqpZqgA/0AcYQ3BPA95GouFguY67fZ8Pm/lvKi04LQkoiArmSPN8J3my8OHdCfbYRYmdw23NOF/29an1XYS5NokdVavK9jsp1g2zhdcb2jZ+sSyG7Xluov8H77FpEzy+M23S8WlJguDr8uERddkdtxnOZaxTvMxJgHSTZZw5Zotl1QSV1atVnT7a4V2EcuvhqFQl0I6uhasM+bK4SP+vhykDziv4P4PPPeaXxevXgQAVBX9YxkLxVN/TFrRcmyKXKANRsWHp1H10ZBErJn3ttKrrObo5nScepT2ZgPnL7rD09+pQtNXpsIIYrJ8Tvs+Po+Wxm8sAZPCvSVTXE+q0BdZFEq//wJraqXG sidebar_class_name: "patch api-method" -info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api +info_path: versioned_docs/version-8.5/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.5/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx index edc7d6ed531..5d9f747a1a4 100644 --- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx @@ -5,55 +5,289 @@ 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.5/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.5/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx index f9c4e68b88a..5f6f6b313f6 100644 --- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx @@ -5,40 +5,143 @@ description: "Get the form details by `formId` and `processDefinitionKey` requir sidebar_label: "Get a form" hide_title: true hide_table_of_contents: true -api: eJzdV99v2zYQ/lcIvSTB/KtdMBR+89ak89q1RexswIIApqWzzYYmVZKyawj633dHSrIVK4mXxz0Z1h3vjh+/+3jMI8eXNhreRdfarKP7TpSAjY1IndAqGkYfwDG3ArZAK0vAcSEtm+/YjD6MkxnjKmGz1OgYrH0PC6EErfwIuxkz8D0TBhL2PQOzYyk3fN1jU4w224Cx6DY7NDFhmfZ5ufRh8X9mcblWckcFYP5U6h1+oeSWnYsFg3Xqdh0mHGZzRsAGrK93JZYrsI6ViS56USfSKRhO8ccJ7mwJzm+5E/ns4NATccgjhX/QHjaIZkE4pNytosfg0FbG75le1BBRmmrb0dCZDDqRjVew5tEwj9wupcgWC1XLqCg6dbI2AKvUHqKj3DewAAMqBua0T1+GQJCqGK8tpsTs+fy099KxAQD7i0vx5Jk1S1pwadtqEsrBEgz60iLuwqdfLrHKe1pvU60sWFrxdjCgn2ZtXxSzWezRQFZkRkFCiWONcZUjf56mUsSeDP1vlhblx2Xo+TeIHRHEEHWcCClFcgxfGzqZEggdEwnmFAsBpsIJ1nNIkhISthVuJRBDVR9hLyo67Yx4MW+DFceMYOdoxENOGJ3BhkssjaqaUSf0jlJSf2PhMrnwJTnhJJy2d+/abIziafK1RfDYlCfmF1esbKPJ09T05ZOSqExKhjhTQTG3vjiummfRYduVwLq9mqTIM8wd5KTB4jNbh6eDQ7thNkZgjdCe4Y9Zi9ChVbnxicwJ3iQt3FodC+4wM/GkCafAo5KoW4dR51pL4Ooo7FglxHdUx+0KfMVH2yKUkhCQYeMqjdRQ7B+AOZBqo7UG0zcuXQNILZ5J13kJ2R4JTEUgf9XclF2MBjJdDi6P+3iEUYzBWsS+kal+tb+SalROuZCIBrirhc7Uc4KAi+cS1j/9V2GwjrvMnkDQERHHm7B0fkS236fTrywEww5I6j4KWFTy12MII4MffJ1K6LDLwQCDVofM2dmvPGE32OZ4C56FpeR02XT6jHBcExy1C8FnNQu3xyGRf35LnFsjqnx5ggqMWDCEHSJQGxRCyjnHW3rBDpyb2/PuOo4zY0i1ieYKsUBJeznnVSBL6c9ub7GD6A6SWj9kKTuH3rLnqSr1kpU7sRdNbvoYnpR+t26ly2HBDwo4BAyj/uZN399m/TyQrkCbBbOpJojMSHTLA2+KYb+fr7R1xTBPtXHkvEGp4MgxTxayBe77XsKVUsdc+s9t6kAGEvEKt9HXMQvZw8WBOZrh3g3eDVojkesTUfac38dZOZe2xgnOrZH8jW0Bj1O4nQcnxsMQiPQdGubADZjuA11td/eHrhMKGfCpFtSnz1MRxqNmJb95v+6c08zIMywF793Q0n60pImEb3CAJeRJ2iYgF90/uUIWJCyWmaURkGhfzkHT0eTjp/Fk2p1cTSbjL5+rgagsqGjWX5dXwuRB8ZLsnaLK+7rqqT/+nnrmCbXQfnnJwCm3D1Lg7HpzNZkSmseYVx6CGsoAT3Zdp7s4LHvwD7SMxgCDeCW4d0FCsaYbf55ZoWgyKGWS+lJqtbTYojRyYxdiBkudEuS/1Eoee2YFetM2LXJ7u932Yr5GDeG9WK8JFswOJO3DeqT8VH7pPFqc6NjWq4X2//umGmL6ZSDbbwwA0eZNILp1a64OstBjhft74TFk+V7r/1dPmpJyDn64fio50rMoIc5LtbojtIKSW/wdls8abLWgO3dRnlPL3BpZFPQ5jPvUqYmw1Cr7Qf1JSM9vSlwu2InvktbCfR899RbCaTWjJRG9VE4v7fXvlGdK3L+Q9lXd72X99ei1vyhbK6nEUDXAqSosj7m4R88VCgQKEBUVjCN8G6XuYNnRc4h2U19+H65IqP4Fv3qfhg== +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.5/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.5/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx index 5d51ab695e2..6a2f88362b7 100644 --- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx @@ -5,44 +5,223 @@ 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.5/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.5/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx index 1d421cdf7e3..535fc434463 100644 --- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx @@ -5,47 +5,118 @@ description: "Get the variable details by variable id." sidebar_label: "Get a variable" hide_title: true hide_table_of_contents: true -api: eJyVVttu2zgQ/RWCL22xvrWbh8Jv6Tbpettti9jpAhsEKC2NbDYUqSUpu4agf+8MKcly7HTdJ1vkmdvhmSEr7sXK8ekd/yKsFEsFjt8PeAousbLw0mg+5e/AM78GtmkgLAUvpHJsuduvyXTEB9wUYAWZzVI0XIFv3b7Z4cqAF8KKHDxYillxjR+Ia50EiKSQhfBr/jiPBeYwe8tMdpANhbXwXyktYExvSxhwl6whF3xacb8rKILzVuoVr+t7ArvCaIeV4v6ryYR+DgN90syVSQLOMQu+tBpCcYnRHrQnvCgKJZNQ6fibI6PqOKhZfoPEU9WWePEyhpTpcWLnlcrrQUPZOfaEPOVhI1R5pousVIoF/ClHqRWZ//96n4hX16ciBp9PhBxwL70iF28J1UrrS/CP3vBwhPazM+mNaGJZOGcSKTykbCv9+lGd9T5sG/GmURBu0vbF5OJYQ5eagbXGMrkXEduuQR+2Uhfw674JvpKNNp5lptQ/Ux7yjAb5b7+qQOeFL10PJ9H9CuwRT1hEs4U5Co+FFNg9mIkLOf+5WHxm0RlLTNqdWCy87bMRu8Yv+C7yQsGAXUwm6DSlGsAxwZ69ESm7wQYG559FUwJdHII+Ih3XREcHETplzjCjiaDM2Fz4WMnvr0gMOXavWJ2h80sWN2KFSNRGpiHm0krIWA98WF6AmyQpraXxUNPkQi50ckbMq6iMBs9ub1GFWAJTxjyUBXsOo9VogPu4sGJNJe7F6ECMwUdQYKjWr00zcsOYxfE55ePNy3ErKzeu9gqrEePAbto5XFqF8Crqp56Ox9XaOF9Pq8JYT+DOC9VGe1HwmSgVsa5MIlRYPtVptNEfRpefZyxGD7RRjEN3ryevJyc9EfQJL3vt7/2svS9O+ongk57CFeEAj1X6XSAnwUORyPgdbixBWLDDB6Ct+z50Ti4jP61BpwJRyPdo8TiTPwJuuBQOR4MoMRXtm9amCWC02jGxwZs2TApcnIPKhn8LjWpIWaJKRxcpyb+5RxeX8/cfZvPFcH41n88+fWxv0yah+jD/Lr2GpkAKfUcQb9HXbW/99c8iKFDqzATzRokL4R6UdJ7dXM0XxOYx5y1CUmNZEOlu6M2wdJH83kxj3jCLfKVYu6SBkSMpbFk6qek6xvaka5n6Uxm9ctiqDL1gN2IERx3zL8AS2pkpkqCsKG8q06G2t9vtKBE5zhIxSkxOtGB0oHk+7Z4kH5qVwSPj1CSus5YmfI8tZGABO3ncOHLjcNHi6cT6Ny+j0J3Phe5FoZeV6F9wB7RV+7n/K2+w5lQ9fPfjQglUQN1UUTWD4Y4S6jf1gE97bzBUdWzxO15VpM5bq+qalnFI213shC5papFUOvqPAygTysFP6nh+0zzVXrCnn3MnK2h7Se9494bh+Ddouf+ErO8RvUaNoYYpuQi4xPdc4XumR0846uZujr67Iq3/APAq1EE= +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.5/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.5/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx index dad5d5ad71a..049d9d276bb 100644 --- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx @@ -5,55 +5,184 @@ description: "This operation performs several actions:
  1. Validates th sidebar_label: "Save draft variables" hide_title: true hide_table_of_contents: true -api: eJztWG1vGzcM/ivCfWnSOXbadUBhBAHSJsXcdkkROy2wrEDkOzpWcz7dJJ0dz/B/30Pp3mynbbbPaYDalihSfMSHIrWKnLy1Uf86Gkl7F33tRAnZ2KjcKZ1F/Wg0VVbonIzkAYEvE21mVliaYywVMuZx2xdHY9M7PtLp8VGqjj/LVCXSkRVuSsJBs5BZIhIjJ07MpVFynJLtHvUgy/KnlBJL072yTmW325ICRmtVzbK3U4rvwmRGix31YjAR0s9UY8+suMnkjG7ETLp4CsUya4zqjMS4cN7QzVymBeQSNZmQsR2hnAASVs4pgeJMxNKS0BORFHmqYvi6ZV6wHaxjZam0rr0Hr5vV3VHuSnd6DN34+PxidNY/6o2Pj4oA5SCb6zveneOTmJGb6kTYIo7JWjWndCkWKk2FxnEsjMI2JH59D8euuMiwYhtdW4xnyjlKhMr8hmcaGzYUU8YffxeEn2OdlLbGxHFgYYKxGE3JEI6AOoIyWxgSS11AUZwWSdhNRrxZaZYtkzBEMp7W2p3GkajMyXIH+EpZgh3VeFpyzcnDqLgaiERDVaadiAtjsFn2Tdk8lUuvxOMc4mPbZTeVTkhsNjYk2fO5kgFimM01zFfngnOIOlFNgUECVnAYnLJGJs3nSinEcmlw7A7ogFKriGMA4hy1WNeJFFMql24a7fKMxOCUA6oOc8gwOsoQTDpTUCeyiNmZjPqryC1z1mydwTFH6/XXIAwo3+CcWCLWDKHjrzIPMQpTvW+W7a12VenxN4od+2DYWafgEGZryFqi0hi53HHhcwOuFkXO/BdAXiYJD7TdQpjO7M9NB/S2fX0IOZassKs23I3WnchHwON0BFJuKxFfppQJm1OsJstAw2Y2rOHcAFLHpogVMmI7knEGniZZzNRxU/F+eHFeheWeJahJ1T8htVYpLtazPKV7EUBhcoIm0ooUivZ9Gi1p5kM4OGTBIzYqcNKAEGodZwZO1ZJ5DSwAhlMupdZBDbK8cKejC0y2ZoeI7fooL0NMBYnNaPQDNoeH4bReHr7ij01gL7IqV2GHrjAZ76XTjs3nvef48PpfHR7uajhBojAG2KhGhVjwodRXiwo5gK+iOYk9/l5mkZu3l2cno7PTG+AESPa7/pZ6UKVqmCcWsswqqVQzzO1J5NpbSO0j95Wp7j5G7g4HxjeB39H7LyMhC4xlrqQbouEOE4WF34+zXTlTWqyoUyY41mT+l/VN1NsZARGDo5798l8zA0NatGnMOfuWzA674HM5FWLWUI7IwU5CefD7aPRJBGUI/qTmYMCpirGueIdfdC+ZHR2BWIHSxN+8uMXFszcyEWW0PgtLWejVptA5kH2niyypRZhPVuPqZ4ACX4Inv77k/DHji+v2ERnkpGRi8BBAzVXibY6NIlQJjfCme15cx/54E5+yVAYssvgRNs9CIJXy4uoKFwhnkVTruyIXe9S97XaYCqm+FaUndn8zF3gdTG/PvwcY/Aj++czm6RYuupsqiCcM9VPkPUXezyLvt0dnfqRKlOxFRve4krluCyLeD4u4VGldnDb1r4/Spgh+CsingPxhQHpvudHiah2tkC/sUbT3o978RY+jyfZWIdete/NW+Y/LeV7V/oVJsWAVQmjd7/VWU6ha91e5Nm4ddTYra54LFJjIImXgUx3LdBqs71arPNGuek8+DUSw7pFjG5vqXh++PnxQE4t+R0sT/o2eqXP5g3qC8IOafHtiCSer3NKDE+NcFEC/xsSY0IeZgzviqa9t0SGrDPhUC5oeJFcfaLcJeevlDsaoipLtaohfMrj9lXOpUl+/Y3BI6eTgD5khIBIUfIXl5o0ZUPZuo5Phh4+D4ehgeDYcDi7Oqy6u3NB6c//19kqYPCj8OwhFlfS7il4o2nwQcsa5bBq4s0DurQas6ShrGpQNTt0IfvW0mWi/lTKwuUnl7kFcng1HfDK751dJKOYpOuJkeeD0AQpHf5CtFMn1qAH2CXBUvMUZV6XjwqqMi3ywnYt9pnuq0ZeA+b5k9SnYd/1/Eo2pSsEo2XmjgSoMmQVPFotFN5YzpCbZRTPEEMM6mh5qmsLoYznS2Vqc6NjWq5X2v3uGJoTqOaZeqcj2fHPI94T3f/4ikMa6mcxaVrgX2n462Aav1Wk/vZY9vZY9vZaBIGUSdHTvetCPhLkuiboqb9Jr5lzHv4wxo/r1E1nDM1wE4Va8jlYrTuhXJl2veRggmGW4PCpxnxzhDX/HtT2RqaUfEHXvsnzL2BcPv7w96EF19WTLVubFV5/6q1c+n4KnSKFI97ypMPk2mD4YsYpm8c7L3LpTrTiJucdvyfJLCd+OdWny6WI44hulfPCboWDEqJELfjnE//3oL/z5x0ufdljIj6+iVGa3ha/momCW//0LZLhrHA== +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.5/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.5/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx index 8712c24311a..1190ca267df 100644 --- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx @@ -5,51 +5,190 @@ description: "This method returns a list of task variables for the specified `ta sidebar_label: "Search 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/tasklist-api-rest/specifications/tasklist-rest-api +info_path: versioned_docs/version-8.5/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.5/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx index 8787494856b..8eb0b26fcbe 100644 --- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx @@ -5,64 +5,479 @@ 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.5/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", + ], + }, + 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"], + }, + }, + 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 [
    • ]
    - -On success returned. - -
    Schema
    • Array [
    • variables object[]
      - -An array of the task's variables. Only variables specified in `TaskSearchRequest.includeVariables` are returned. - -
    • Array [
    • ]
    • ]
    - -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.5/apis-tools/tasklist-api-rest/specifications/sidebar.js b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/sidebar.js deleted file mode 100644 index 8c3ec36257d..00000000000 --- a/versioned_docs/version-8.5/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.5/apis-tools/tasklist-api-rest/specifications/sidebar.ts b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/sidebar.ts new file mode 100644 index 00000000000..e5a69086c8a --- /dev/null +++ b/versioned_docs/version-8.5/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.5/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api", + }, + { + type: "category", + label: "Form", + items: [ + { + type: "doc", + id: "version-8.5/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.5/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables", + label: "Save draft variables", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.5/apis-tools/tasklist-api-rest/specifications/search-task-variables", + label: "Search task variables", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.5/apis-tools/tasklist-api-rest/specifications/search-tasks", + label: "Search tasks", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.5/apis-tools/tasklist-api-rest/specifications/unassign-task", + label: "Unassign a task", + className: "api-method patch", + }, + { + type: "doc", + id: "version-8.5/apis-tools/tasklist-api-rest/specifications/complete-task", + label: "Complete a task", + className: "api-method patch", + }, + { + type: "doc", + id: "version-8.5/apis-tools/tasklist-api-rest/specifications/assign-task", + label: "Assign a task", + className: "api-method patch", + }, + { + type: "doc", + id: "version-8.5/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.5/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.5/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api.info.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api.info.mdx index a8d732b0d7d..50bd714d180 100644 --- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api.info.mdx +++ b/versioned_docs/version-8.5/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.5/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx index 0f0e9a2a65a..990075db9b4 100644 --- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx +++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx @@ -5,47 +5,223 @@ 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 +info_path: versioned_docs/version-8.5/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.5/apis-tools/tasklist-api/tasklist-api-tutorial.md b/versioned_docs/version-8.5/apis-tools/tasklist-api/tasklist-api-tutorial.md index 3dad8bb79cd..5ecdd5ba456 100644 --- a/versioned_docs/version-8.5/apis-tools/tasklist-api/tasklist-api-tutorial.md +++ b/versioned_docs/version-8.5/apis-tools/tasklist-api/tasklist-api-tutorial.md @@ -250,9 +250,8 @@ export class TasklistModule implements OnModuleInit { logger.log("Tasklist credentials fetched"); axiosRef.defaults.baseURL = config.get("TASKLIST_API_ADDRESS"); - axiosRef.defaults.headers[ - "Authorization" - ] = `Bearer ${credentials.access_token}`; + axiosRef.defaults.headers["Authorization"] = + `Bearer ${credentials.access_token}`; axiosRef.defaults.headers["Content-Type"] = "application/json"; setTimeout(this.onModuleInit.bind(this), credentials.expires_in * 1000); // we need convert minutes to milliseconds } diff --git a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx index 3dd58a62c99..90de6fb8e7f 100644 --- a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx +++ b/versioned_docs/version-8.5/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/ZUBX5qga63cummyb47rtG5zMWy5ReMYMMUdSYy55IYXyVth/70YcleyLrmgzWMMGNjLcM7M8JxZjpbM86ljxTW7cmjBc3fHbjJWohNW1l4azQp27JycagccQm8EC+ln4GcIUzlHDXfYgDcPHvC4BnHAMlZzyyv0aAloyTSvkBWMfI24u/sDG5YxSUA19zOWMYsfgrRYssLbgNvRjGYY4cwkwq1D8qZDJUwnZlhxViyZb2qCk9rjFC3L2MTYivv06MkRa9ubBInOPzdlQ2u2IxBGe9SeXvG6VlJwCiZ/7yii5S6YGb9H4Sl1a2q0XqKLa7ui0PVuUv1bmBi7mdoANt5XwXnQxsMYAavaN2As3Oqg1C2l3sXgvJV6yjJGL/hYISsmXDlsM8aVMos3c7RWlnuCed5AiRMelM9iHLG60oHFLoQS5ASkhwV3wJVFXjZ9dOUALtGDn0lHG3IbIW/p0qIPVgPXgNYaC1KDC2IGgjt0KcMIFLPzM9QwkdbFJINeAXtDD1a3fMqlHsCVwwS5oHWNCTDj81RAB7UUd1JPYWJNBVNrQp2APgQMGKOsLc5Re7BcIAijS0mVcIN3el3OsTEKud6oJ5GDyilS4bbreAwiOG8qSAYw5ypQnNzDQioVExECnZNjhSm8NZtjRFRzF5RfhR+TRF3WRmoPUs9NouIAziaRErU1c1limcX9IZRuKynPdx0D37GN1PYwJWbWZsxLT7exO5BYUyuoUPuLpBjWtmRn0dVGu0TzH4ZH+xm+yu47120heUo0Kt8H57EcsDZjR8PhpyQSF+3If09HElx3MhGmqhWSf3hlLEKJnkvlgFtclYwYSev7XGBsyiYV6iP6r60ZK6y+3+0D20Q4T5YdLqT+ANxBMhwn9OuLFyfw7Oinn28ezbyvXZHni8ViYCfiAEvpjR0YO83tRNA/2T2OurEIFW8incpEXa5g3XnA1SjkRIq+Q3dhA23/BhE+0rbS2+UOXVaNNFjJdj4acHVxBrJE7eWkIQLvQMc1kZysYHxsgi/Gius7tibeLug2igtVxe3qc7AJ0GbMee6D++yH4McfdnwT4X4bjc4huQBhyr43S9cDURKV1LIKFSuOhsOMVfw+3T0ZDlvySTv+BZlowPtacR2ptZ2O1FCteRsTk9p5rsXX2hlj5VRu4w7YwybQkfiXlFES/tFntb5PmKR4UubEBN1L/tl/8CNdL9qFNXoadwpBBGtRe9V8E/s3sX8T+9cSe5uxCv3MlHRSNy5Shw7sBctJpAckUpcvH5zr23z9waYzOdp5PwQEq1jBlklEbZHny5lxvi2WtbG+zeeHLGNzbiUdR+KG0usktp5EygiuZimQ3c2kFzRpUJIc3iKOEX7lHhe8iRUlnE1/T4dPh3tdkWlfq+To4vRyBMfnZ5BSStx70A96lyTsvS6T8eecxtHEoQhW+uaSlqRajJFbtMeBir/iQ4cVPccDazRiWXfxomfJ73+N4kZTH7tYjz2n95yOSJtjyppkWyNDGov6g29vFok6MTGojkabqdGmonVp0XBwuEvX87OoOmGqKujYevV03fmTN6HoqGhJjUoK1C5G3Y2VyeQkrfcNvEwW8GfChcOImujX992p9LMwHghT5YJXQZc8/4fc5GNlxnnFpc47IJe/PT19fnpw8ubVq6vXZ6O/D16enZy+vjw9OBwcDvy9j6UldVRcP4gqnZsfTtDbqS/X353/PXB3jPB47/NacalpZ2LKy06y12wtWZaxYnMYf6Dam6xT3jVbLsfc4ZVVbUuPPwS0DSuub9ZCjcoupaPrshs3P5Hmo4tuzH4MXzbU782re8h1E1uGCnTHMnaHzdavDO1Nm7EZ8hJtjDRZnKR4DkbkZ+1hZ85vs37FsRBY+4/YbhwTSL+rnnn+5nJEcux+Y6gMCYlZvqCfPPgiRW1inaLK47MlU1xPA5+SbfJJf/8CTbgnyQ== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api +info_path: versioned_docs/version-8.5/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.5/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx index 76903ffe6b9..6bd2731a3ee 100644 --- a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx +++ b/versioned_docs/version-8.5/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: eJztV11v2zYU/SsXfGoxxXK6rGv1lmbulq1pg8TZsKZ5oKgrmw1FqiRlxxP034dLypY/GrQb+lgDBizx8p77cQ592TLPZ45lt+zGoQXP3T27S1iBTlhZe2k0y9iZqWqFHh1waNZmsJR+Dn6OMJML1HCPqxFLWM0tr9CjJact07xCljHaNeXu/g9csYRJclpzP2cJs/ipkRYLlnnb4D7ydI7kGEwZkAZwb0D0URGqE3OsOMta5lc1AUrtcYaWJaw0tuI+vnp+wrruLoKi869MsaI9QwwlVw4TJoz2qD2t8bpWUnCKJ/3oKKj2EM3kH1F4yt6aGq2X6Gh1wa3kuYoPvCgkeeHqcsvosaQ3W7cz3asBNYCS3w9CN0rR3ui9SxgX0XO7B3QKonHeVBANYMFVQyDcw1IqBTkCFwKdk7lCKK2pttBxgdo7sOga5aWexXU/lw5QF7WR2oPUCxNrN4LzErTxUFuzkAUWCcgepcCSN8pToh/YOtUPbPRBD7k5b6WeHebWJcxLT4+Bv0SxnqzS6KvYZdZ1ZGfR1Ua72Ixn45PDckx3q8vdpvAFuCYUomyUWo1Yl7CT8fiLHg4EAoJrKkKOg+sRXBiLUKDnUjngFjc1AqnD/nXokJtiFevyCENra3KF1Q+HTN3v/GW07HEhkge4g2iYR/Tbq9dn8PLkp5/vnsy9r12WpsvlcmRLcYSF9MaOjJ2lthT0JbunI5jO0SJUfBX4s2E9DNoAV6OQpRTUc0qwDxuo2zt9f0RYcbU9YMdG642VbF9Wp3BzdQ6yQO1luSLGHkCHPYGNLGM8N43PcsX1PRt4dgi6j+KaquJ2c2btAnQJc577xn3xrPrx2YFvotdv0+klRBcgTIFQGhtV1wNREpXUsmoqlp2Mxwmr+EN8ej4ed+STOv4VmWjAh1pxHai1n47UUA28DYlJ7TzX4lt1xlg5k/u4I7at+Z7Ev8SMos5PvkLah8IktZMyS9Poohf4y//hR7q1aJfW6FnoFIJorEXt1eq72L+L/bvYv5XYu4RV6OemoHHSuEAdmiozlpJIj0ikLm23hs8uFZvxgMZGtIv1pNpYxTLWRhF1WZq2c+N8l7W1sb5LF8cs2R3oaDmKbU0iZQRX8xjIYTNpgcZhSpLDe8Qc4VfuccnjREE4u/5ejF+MP+uKTNe1io6uJtdTOL08h5hS5N7WebB2ScL+rMto/CWnYXp2KBor/eqatsRa5Mgt2tOGir/hQ48VPNNzNGJJ/+P1miW//zUNjaZz7GqYzCcPnFq1P0hvzbNrxgU6liZA92TZTYBah9bFTePR8SEpL8+DtoSpqkaHA1bPhvM9ehOqcZ7KkDAlBWoXYutvONHkLO73K3gTLeDPiAvHATWSbH26zqSfN/lImCoVvGp0wdN/yE2aK5OnFZc67YFc+n4yeTU5Ont3cXHz9nz699Gb87PJ2+vJ0fHoeOQffCggaaDieiuq9c1t++K2n3w7/L/8p5te32WPDz6tFZea+hASbHsZ3rJBhixh2e4tcEuJd0mvplvWtjl3eGNV19HrTw3aFctu7wbxBbUW0tHv4cr2aEpPrvrb3VP42tvkZzPrX3K9CgeBauiJJeweV3sX3O6uS9gceYE2xBotzmJER1PyM3g4uF92yXrHqRBY+0dsd/78SZWbk/Dy3fWURNZfbitT0F7Ll3Tb5ssYtQmVCtoN71qmuJ41fEa20Sd9/gX/PZYW sidebar_class_name: "post api-method" -info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api +info_path: versioned_docs/version-8.5/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.5/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx index c07bf7f8421..a8d3d916097 100644 --- a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx +++ b/versioned_docs/version-8.5/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: eJy1Vk1v2zgQ/SvEnLaAEsXdS6FbmriBF/0IknQXbeADJY0lthKpkJRTV9B/L4akbNlR8wF0fbFEDd+b4ZsZTgeWFwaSWzirWmNRwzKCHE2mRWOFkpDAp9RyIQ2zJbKs1RqlZVY1qlLFhqmVX/eb3XPBLd7zDROGNVxbplbHEIFG0yhp0EDSweuTE/r7P3gyJS1KS/C8aSqRcYKPvxni6MBkJdb8IflNiWxwkcj4jlrjXYvGErjdNAgJqPQbZhYiaLRqUFvho0q1+o7aPAQ/ZZUw5CALJsyW3DKucfCc2VKYIboRE9eabyAC2VYVTyuExOoWIxAW6wmiS63WIkfDhFwpXbvQmZKMB2ImVY5PB0JWi3z6kFop7lpkf90LWwpCDk6/cthscc5WyuvjKUdsQlosUEME3jm/9Pdr6CMolbHThPRF8hodrkaelUIW0wTGaiELgmuU/g0cfXkG1GO+kmaCIB+VemfFai55gTlzrD4n6U161R9wD6K/WOQtJduq8yLdt/ufEH9xvk3Z7ZZnnp1WlMSH2OfuLUVf/Fd8ZRkZDlUfgiDVOCvEGuUkb5A/ApRtTS2tQp4HP6pK3btHIXlmxRphSVmHvLLlU/4MzchbD049ywO/hcRs5e45R57Dsu8jsMLSecDlAAa0ukZthO9XDzUIhxFsJrJ/BPvW2S7kSrnlUKrX4ueEBoQt2zpFPW5UQo777nNEPmxWewVzplr5m8LccY8qh1qkaTTynPFMK2P+gDdDCQol3/HMKj3tT6bkShStxpyNdrCV2xKa3GTPfokv4Q779zHBg9JD3n1FTJFd+I1TuXdAMkqHm3ClXYWLDnr6RVCjLVUOCRTomgKnmoB4uAEhAoN67a622w5aXUECnb9J+ySOO2rRfdJRa+3j9QwiWHMtyAfXVna9fcXbis6jUhmv3PLhsLHX8d09fBDvXnMf8N6cvDmZhHLdfu/grubXN+z0csF8SA5wPBQMkKW1zSSkN34KtO+XdGpZq4XdXNOWMCMg16hPW991gnSByyHTuzeCKDy8G9Lon/9uXB1T43fbg677TsCogcDJ8exBFOQo5W+m6rqVLrFl4a6MUUijvK5EhpQtNBnwekd45vfbDXvvLVjIYzZzrD5RKDiTxHEhbNmmx5mq44zXrcx5/JNg4rRSaVxzIeNAZOKv8/nb+dHZpw8fPn9c3Hw5er84m3+8nh/NjmfH9od1h9AoY2suR15doN0NiLvc3Qu+2w2If2jgDBpa/GHjpuJCUka50LtQSbew9WY5TDq30HUpN/hZV31Py3ct6g0kt8td8dCbv6ToFqPS+44b0i/LsLGuyqrWDQyHgy4l37aoL+aUNb8A0YQjZg== sidebar_class_name: "get api-method" -info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api +info_path: versioned_docs/version-8.5/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.5/apis-tools/zeebe-api-rest/specifications/sidebar.js b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/sidebar.js deleted file mode 100644 index 25b13ac45ac..00000000000 --- a/versioned_docs/version-8.5/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.5/apis-tools/zeebe-api-rest/specifications/sidebar.ts b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/sidebar.ts new file mode 100644 index 00000000000..a1342368b7a --- /dev/null +++ b/versioned_docs/version-8.5/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.5/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api", + }, + { + type: "category", + label: "Cluster", + items: [ + { + type: "doc", + id: "version-8.5/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.5/apis-tools/zeebe-api-rest/specifications/complete-a-user-task", + label: "Complete a user task", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.5/apis-tools/zeebe-api-rest/specifications/assign-a-user-task", + label: "Assign a user task", + className: "api-method post", + }, + { + type: "doc", + id: "version-8.5/apis-tools/zeebe-api-rest/specifications/update-a-user-task", + label: "Update a user task", + className: "api-method patch", + }, + { + type: "doc", + id: "version-8.5/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.5/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx index b9b6246ae24..a4c82e74fcc 100644 --- a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx +++ b/versioned_docs/version-8.5/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: eJztV01T3EYQ/StTfbIrQloc4ti6EbxOSMCmYEkqJhxGUms1RpqR52MXRaX/nuoZ7Qe7JKRcPnKgWEk973VPvzdq9WD53EB6A9cGNbPc3MFtBAWaXIvWCiUhhUts1AINsxUyboyYS0SmSsZ9PFsKW/lnc7FAye6wiyGClmveoEVN6D1I3iCk4AzqGTd3v2EHEQhCb7mtIAKNX5zQWEBqtcPdFGYVEjCxEpNbJUtMJq+w4ZD2YLuWSIS0OEcNEZRKN9yGW6+PYBhuici0Sho0tOLV5Ij+7ZOtGdiSG+bkWHfBjMtzNKZ0dd3FMERwNJk8CbG3QyznUirLMtzCjtm50sgKtFzUhnGNrNVqIQosmJAeYJU8y1TRxX9JiCBX0qK0lANv21rknHJIWq2yGpvvPhtKqN/apYeZHrOLEDnyMpV9xtwyblgIzAL7zeX7E/b26Icfb19U1rYmTZLlchnrMj/AQlilY6XniS5z+qO4lzGbVaiRNbyjOnlRCOLkNVXVorYCDTMt5qIUObPKFzimzaiVob6xqSEtEtZ68abl69Ybq4Wcb3feaQG7ajpm15enTBQorSg7Ief71H5NyV1NGDxTzqZZzeUdddwKWz9KustiXNNwvVbtQ4IhAmO5deZJ5X7/ag+b9PXLbHbBAgTLVYGsVJrZSpgVERXRCCka10B6NJlE0PD7cPV6MhkIkzr+PyqRDO/bmksvrd1yhGTNRre+MCGN5TL/Vp1RWszFLm8Mw6YXMIr4XahoGAbvzKfNve9M8jtZs1ROFqPD334FjjAr0y61knPfKWS50xqlrbtnsz+b/dns38rsQwQN2koVkEKBNVr0I4itIIWEbHpANjVJvzWADMlqmKEhAvViNas4XUMKfTDRkCZJXyljh7RvlbZDsjiECBZcC57VQZf0OJhtJaJa5bz2tx9rJj2ggSgMUZ8QM2Q/c4tLHkYK4nmI92byZvIoFIWu9ioAXU6vZuz44pSFkoL2ts6DFSQZ+1HIEPwUqJ+lDOZOC9td0ZKwFxlyjfrY0dav9TByeWS6DkEQjT/er1Ty6x8z32ghS+WXjw1/mARtP2oTMp7Eh/vCujj1/shV0zjpD0k535zRAS2vnbFUSgS1yFEaL+BxTg0hJ2G97dhZiGC/B1526FmDUFYn5FzYymVxrpok542TBU/+Jpgkq1WWNFzIZCQyyafp9KfpwcnH8/PrD6ezPw/OTk+mH66mB4fxYWzvrd+EVhnbcLmV1fU4KjK+efXsFt9v3hFfN7iPLbN4b5O25kKSgHyl/eioG9g4CiJIHw71a1PdRqMxbqDvM27wWtfDQLe/ONQdpDe3Gx954xXC0O8C0pLXZvcjYLuyF5fj58JL9l+fBo/WMt7ksvM+rh1dQQR32O18oQy3QwQV8gK1zy9EHOc5tnZr7b++icki62Pp3fRsOpvCMPwD0dGhKw== sidebar_class_name: "delete api-method" -info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api +info_path: versioned_docs/version-8.5/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.5/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx index 71af92194c3..8d7ae58e90c 100644 --- a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx +++ b/versioned_docs/version-8.5/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.5/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.5/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx index 66890419109..c6c9d707bbc 100644 --- a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx +++ b/versioned_docs/version-8.5/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 -

    +
    @@ -48,7 +56,7 @@ API for communicating with the Zeebe cluster.

    License

    Zeebe Community License Version 1.1 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 -

    +

    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..653f241b3dd 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: eJzlV21v2zYQ/isEPyWYLNlZuqT65iXp5qHtgsTdgCX+QEsniy1fVJKKIxj678ORkl9iJ82GYl8WILBlHu+eu+fetKKOLSxN7+ilzmoJylk6i2gONjO8clwrmtILA8wBYURw9YU4TRjJO2nCFXElkAsma5Uzck4yUVsHJr5X9ypNU6Ud3KtpyS0BlVea4x1LmCJ3TFQlIwUwVxuYHSUGCjCgMkj8yaA7sbHMj2MycSSrjQHlREO0Eg2xdVVp47wyrgYSpDbNBpl12kB0r5Ylz0q0qbQjEphypNCGVEbndYYektpC7MHeKxrRihkmwYHBsKyoYhJoSnu1k5xGlGNUKuZKGlEDX2tuIKepMzU8Dd20BDK5JLrwUVpjc9rHMqYRtVkJktF0RV1ToSXrDFcL2rbR2rh3ZWP5aw2m2TFdMGFfa9sr6xHsHhVGy5cxzYJVsO5nnTcosQci08qBcnjGqkrwjCGe5LNFUKt93Xr+GTKHgTe6AuM4WDyFx4obsGO3DyOihTaSOaSFORg4LoEe8j73aatyghJkWUJIVu94px/dVbUQbC4gUNi2EXXc4eO6KN5z9eUm+E3bFiUM2EorG7CeDEf4cQBAH1lvcsksyXwt5cTWWQbWFrUQDWL4TlGrjTgUr31kfSlv8x/TNvrv4v5cnLsAnw6Hr4mpjycWccG4gDwmHzC7c3CMC0uYASz0B55D3reqnjky13kT+5J/JviV0XMB8od9EnZRjcl1kOzskkAOYZYEwXmwfnfz7oK8PX1zNjsqnatsmiTL5TI2RTaAnDttYm0WiSky/Ee545hMSzBAJGvIHAjLc442mSAb2omtIOMFz3o6O9gEyQv+vZwz4fQFsmvD92gek083E8JzUI4XDVeLfdP+TsFqgTrYXNcunQuGBK+J/1amjomtpWSm6bvYroE2otYxV2+5QblysACzjZ8r9+PJwUT9dTq9JkEFyXQOfjI4HFadIXRCcsVlLWl6OhxGVLLH8PTTcNiiTmT8FZ4ozHzBVMjWJ+5wReQmb71jXFnHVPa9mNGGL/hTu7tF2CXxZfCoDWUowZU6x3GnrU8dnHopTfoqTFabydgmWJIWBwiYh36A+pZEV6F42jRJVqW2rk1XOLzb5AGZeWCGYwf2ROJxKLI+eYTOmCgDgH0S8QAHZe/cZhe5ubqdkl+YgyVrfFDR5K7q8+H58KBWFH1G4/h6QoKHIQW32kKvFuv7oNog/BrFfthayGrDXXOL10J45sAMmHGNPKxTo7PnteNzEKJR9+VdnzC//Tn1nGNLu9kM8qtHJqtQkFv9n54MT04Hw7PBydvp6E36ZpSenMfDs9FfIT8L7QF02bPvCvIKxgbfh/FoP1OvJ77gMi1lrXzXVQuy5K4k7MBGSSMqeAbKepzdatSLvQ8n5I9gkYxipDXkXt9sF9yV9TzOtEyycG39ORd6nkjGVdKZsMnF+MOnj5fjwfvJxdXH26vBKB7G7tH58GExSKa2cYQdeXc4HflF9vip46vNwPmf7dZdtjp4dEklGFeYSd3OEjrL3XrTphFNd7bu0FxmUdcg7uhqNWcWPhnRtvhzWIux5eTcYjd5ZjHeDv+/35EPuvIFmp11/YGJGqUo1nLf5P4hxKObbsM+Jt9+mziIqvuRqWYbUo92K8btrI1oCSwH40EGgYsAZTBFNRsFe2sqvrCEG+Msg8q9KDvbGi3Xv99OsVV1bxRS53jHsCW+47BlAKt9aHwH9L+tqGBqUbMFygad+Pc3kcQc/w== 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](/reference/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..ecca649ce3b 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/SsYnOwpTSqp06a8aWynVSfNeBylPdg+QOBSRIIPBlhY1mj43zsLkpJsy6077a05aCQRi/d28XaXiw1HsQy8vObnTkYDFgO/zXgFQXrVonKWl/wcNCAwwarBhtXeGYYNsDNhoq0Ee8ukjgHB5zf2xpZlaR3CjZ03KjCwVeuURaYCE5ZdC902gtUgMHq4PSo81ODBSijSysmwEnJTHedshkxG78GiXjNn9ZqF2LbOYwJT9sSAcX698y2g85Dd2FWjZEOc1iEzIMht51nrXRUlRcZigDw5e2N5xlvhhQEET8ex4VYY4CUfYWcVz7ii02gFNjzjHr5G5aHiJfoIj49s3gCbnTNXp1Pa+oaOVekwc57xIBswgpcbjuuWuAJ6ZZe867ItfQpmx/01gl8/IK+FDi9lT2A7Hx4ukqR/7dUt8YbW2QCB1l9PJvT1lHqLuRJh4KpYiFJCCHXUep3zLuOnk9O/266wSU4u1R1YiogASc7aRVvlSTbpLIJFghJtq5UUBFW03i00mO8+B8Ld7IX1kHDKLntLVgEKpZlbfAaJLHlOhguomLLs+urdGfvp9M2Pt0cNYhvKolitVrmv5QlUCp3PnV8Wvpb0IbvjnM0b8MCMWLMFMFFVijiFphRswaOCwEILUtVKkioU6eA2o7Pv4xtU6N2iNN1u3mn0WKuM184bgbzk0Sv+OD2m7NPVjKkKLKp6rezyKXXaU4uoCUMsXMRyoYX9QsKhQn2Q9DFLiMYIvx7z8CFBl/GAAuNeGFxZhCX4ff+Vxe9fP8GmNPllPr9kPQSTroJU3UgNZyCiIIyyykTDy9PJJONG3Pf/fphMOsIkxV8QiWVw32phU2o9DkdZZqiuerQUmLIBhZX/lTLOq6V6zJtTnxi14EMSn/cRdR2tvTlUn1PqmQie8hC8d545mfprxVaN0gme6nTkpk4DAb/V2rda+1Zrz9Val3ED2LiKBob0vkvzBDa85MX4OgvFZjdMdPSmBX83ThvRa17yTV85XVkUm8YF7MoNTTpdcUey3AmvxEL3yUjLfYWNmaOdFDo9PqQgLdBMMUa2G9yuLj7O2c8CYSX6FzNRPoR+O3k7OYhKps8gTi9nrI+wz7+9njDCUnEfhO2NXwKcppIAMnqF64+0rT+eBQgPfhpJgm1eDHwJnf73Rjwbfrwbs+XXP+ZJcGVrl7YPwj91hFQBH3rPJ/mrp0l2OUu1Ip0x0aaGaZf9YCMODM8841pJsCGl8zADjmbv+xX2e8/IXuUkSp85Y59cKmziIpfOFLLftv1eaLcojFC2GChCcTb97dOH8+nJ+9nZxYePFyev8kmO95iCb11AI+yeH8M1YDueHaVx/fhxzJvda+J/cnMY0gvhHotWC2Up4ZMum6ELXG/vEYFnvNy7VNxmQylf881mIQJ88rrr6HE/61NzqFSgun9m2t8/738z+B+M4gusH9xC7oSOZMWp7saG9A+dPLoabi/H7CXXpIN+DQ+FXe87Nfq7d77dbZfxBkQFPrnZG0ylhBb3tj47zlCc295+fvH+Yn7Bu+5PDQFBcg== 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](/reference/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: 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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"; -

    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..75c52ed9519 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: eJztV0tz2zYQ/isYnOwpTSqp06a8aWwnVSfNeGylPdg+gOBSRIIHAywtczT8750FSVm25dSd9tYcNJKIxX7fPrm74ShWgedX/NTJ1oDFwG8SXkKQXjWonOU5P3Vrq50omWDlKMUq7wzDGtiJMK0tBXvLpG4Dgk+v7bXN89w6hGu7rFVgYMvGKYtMBSYsuxK6qQWrQGDr4eYg81CBByshiydH40lITXmYsgUy2XoPFnXHnNUdC23TOI9RmbJHBozz3T23gM5Dcm3XtZI1YVqHzIAg2s6zxruylWQbawOkkey15QlvhBcGEDw5ZMOtMMBzPqldlDzhivzRCKx5wj18bZWHkufoW3jstGUNbHHKXBW9tOWGjpWjO1Oe8CBrMILnG45dQ2gBvbIr3vfJlkA05x79awu+ewBfCR1eih+V7bJ4eExh/TavG0IOjbMBAp2/ns3o6yn4VudahC0alCy0UkIIVat1R1DSWQSLpEQ0jVZSkJLMSQQ8CuhBGDp7jlHCK+eNQJ7zQlnhO973fZ/w49nx3/FSWEfrV+oWLDmLmFKuVK61ZRpz4hl2jXeFBvPD50B6d9k9BJyz80GSlYBCaeaKzyCRkUuiYAElU5ZdXbw7Yb8cv/n55qBGbEKeZev1OvWVPIJSofOp86vMV5I+JHeYsmUNHpgRHSuAibJUhCk05XcDHhUEFhqQqlKSAk6WjrQZuXCwb3TmQItqYHv53tXfcHnrFX+ceXP26WLBVAkWVdUpu3oKHe9UotWkQxSuxbzQwn7hfcJRod4L+hgltMYI300p/hCgT3hAge2OGVxZhBX4Xf7K4o+vn+imNPl1uTxngwomXQmxdSB1sxGIjDDKKtManh/PZgk34m7499Ns1pNOivgLLLEM7hotbEytx+YoywyV7KAtGqZsQGHlfxUZ59VKPcZNqQVNseBjEp8OFg0F9mZf4c+pISN4ykPw3nnmZGzeJVvXSkf1VP0TNjUxCPi91r7X2vdae67W+oQbwNqVPOcriJlDE0jOs+ldFrLN/ZjS0/sb/O00x7Re85xvhrLp8yzb1C5gn29ohuqzW4rJrfBKFHrIRDoeymtKG+2k0PHxvvDRAc0qk1n3I+HF2eWSvRcIa9FFdxLkQ9VvZ29ne7WS6DMa5+cLNlg4JN9OQ5jUUmXvVTsIv0RxnHUCyNYr7C7p2uCeAoQHP28pBNukGPGidvo/CPFk/PFuSpXf/lzGaCtbuXh9jPpTIhQV8GFgPktfPc2w80UsFOmMaW3slnY1TDViz1jOE66VBBtiLo+z5ST2YThhfwyI7FVKQRkyZ2qSK4V1W6TSmUwO17bfhXZFZoSy2QgRspP5758+ns6PPixOzj5enh29Smcp3mE0vnEBjbA7PLYrxnY6O4irwOFjqzf3b4n/zV4yphjCHWaNFspS0sfYbMZOcLXdUgJPeL6zstwkYzlf8c2mEAE+ed339HjYI6hBlCpQ7T+zSex6/N8tFXvt+ALdgx3nVuiWpDhV39SW/iHNg4txNzpkL1vD9jIbHwrb7dKaGO/4uL/pE16DKMFHooPAXEpocOfqs9sNWbpt8O/PqEH8BQ2vZac= 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](/reference/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..7053a3ba79f 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: eJztWU1z2zYQ/SsY9GJPKVFOnDTlTXHs1m2auLacHmQdIHIpIgUBBljaVjX8750FKOuDcmJn2ps847FI7AeweA+Q3y44ipnjyZhfO7B8EvEMXGplhdJonvArEDYtWG4sqx1Yx6bCQcaMZjN5C5qlViJYKfo3+kYnSaINwo0eFdIx0FllpEYmHROajYWqCsFyEFhbmBzEFnKwoFOI/UivHXH9MjtkQmdMG2SgxVSFhCeirHUmWKpqhzQVUyMzOcMC2NTc92/0FYB/Gi9N37DL06sRG16cM3ML9lbC3eQgFpV0PTRGuTgNhj1RyZ4Fh50XvaVfv8x++FKDndPQ4Y2miuS1xQIsywCFVK7vK3CjecRNBVZQCc8znvBc6myoFFXY8Yhb+FKDw7cmm/NkwVOjETTSR1FVSqbeMf7saAMW3KUFlMKPKvUx58l4wXFeAU+4mX6GFHnEK0sJUYLzHsb6aK2VsFbMecQlQumeEyeXoLK1QA6t1DPeRNzYDGx3hMCTi1ohZXUpb5qwWGkhI4iFgJOIo0QFD+j6k8p6ZSxehsLwZkKelZjBs6ZrTbk2J6kRZmB5xHNjS4Hh1csXNH8lS4lPtHV+jsMcN1bcKerm3JoHx7eQGwvP8Wx21udCzGBVn2hHvh1Ojzt091q1C3xquek40KKEnQB5dABKIdWOkbX5E03O/HQ28bA+vmuNm2hDW4N/4SqjXZjyi8GA/myecB9/59HTObhdk6dW67lgRoNCnW9BZDdMXx9TYXNpHRKJPglVg3seVJX4Xt+vgTVU/jloXfPYLMd2/m/Mq+OePbGKf8P8iZb/K/xXldgN/PXxJuLHu3D9VmSsvWkeB3hlzVRB+WMX6JvBhuwiWLZ3HQuFZsKxYDiFjEnNxpdnJ+zn41c/TQ4KxMolcXx3d9e3edqDTKKxfWNnsc1T+iW7wz4bFWCBlWLOpsBElknKKRRbbSFzFaQylylD4y/4dtqMqtj3F+432ORHu9fVw7bWVvLtrz5Ddn15zmQGGmU+l3rWTb15401NjclUCf03X+3arjtyM4ury1LY+fKrzGYCukdQYP3tY+Dli07sUQHs19HogoUQLDUZ+K9ySN/P2kS0iFJqWdYlT44Hg4iX4j48vR4MGoqJO0HbWYlmcF8poT20tpcjNSuNhRY/fmFSOxQ6/a92xlg5k9t5+xvcakH8LqxoSZ6jLt6vtaixMFb+A9mePXv27NnzKHtedvF+ZuxUZhnoPXX21NlT51HqHHfx/sEgy02t97fOnjp76jxGnVe7/uE510j/kinmwN6CZWCtsXsa7Wm0p9FOGjURLwELQwp1ZbxKUAkseMJjL/XHQcDkpGQSoZyXrWqreMIXgS1NEseLwjhskkVlLDbxLW3FrbCSZHu/czQcWLVEizKpUEXI2N01GiD9ZLmaLS3/F4FwJ+a+ilUrdK9Cvxm8GeyMSqaPRKTuQFhhwNzaObAMS4TeGTYYPyVwQ6KWg7S2EudX5BbKMwVhwQ5rKvwDFtp8Pjo9ByMetR/Olgj57a+R32Q6wy5XXYXTe1FWgYErXXclWK2gtv3cylNrglXoJYwfmgEr27YHEIT+yUquDzL84EFkH2xJ6ONFqMS6OE7vGk+L3PgytKDtFpTQBdaFHRj0j7oEuTj3PE9NWdbaH/Z6xu4kFkysbVDbRKITQMkUSEtLFst6LM3ehxH2KWRkR30CV2DA8oyfSSzqaT815bJ39PB3qsw0LoXUcZvCxSfDP64/vBv23p+fnH64Ou0d9Qd9vA+KKHGwFHptHl4VbftuB75Jdri93rX20b5X9329upZzCPcYV0pI7eVdq4JsT7wce/I4voQttbDCsTbmiwVV+dqqpqHXPi1PxpPVKUhPTcQLEFnAf1CZ+UnYuN6I8pO5qr20vd1/aKKlxzBNocKv2k7WDvWLj1cjOjPaPmNpMvKx4o56kOKOJ9x3KsnbH0X+3YIroWe1JzMPMennX4MCaGE= 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](/reference/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..2931a312a5e 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: eJztWF9v2zYQ/yoH7iXBZMnp0q7Tm5GkXbakCBJ3K+D4gaJOFluJVEnKjmHouxdHSbZjO1sHFHvygyGTPN7f3x15XDHHZ5bFE3aJQlqpFaSYSSWd1IpNA5aiFUZWfhize3S1URbSfWLgFj7d3oSP6lHFcay0w0c1zqUFVGmlpXIgLXAFE15UOYcMuasNTk8igxkaVAIjvzLoVmxYpqfAVQpKO0DFkwJT0AoueFmrlIMoauvQWNC1A52ByxES/RQ+qgdEP5r0pG/h/uphDKO7a9BzNHOJi+lJxCtpB07rwkaiJRzwSg4MWrc3Mej3hWX609cazZKWTh9Vpg1ktXE5GkjRcVnY0HvgUbGAVdzwEklLFk9WTPESWcx6912uvfcnLlnAJPm44i5nATP4tZYGUxY7U+NuIMY5ArdWzhSm8AWXvf0HAhPAIpciBy6cpSBxqJX8WiPIFJWTmUQDZISjWPX7QxYwK3IsOYtXzC0rUlsqhzM0LGCZNiV37dSbc9Y0U1LYVlpZtLTj1XBIn32lP93e/IOuBBFbC4HWZnVRLMF4wGEaem8KrRwq51XCJxc9lQX931PUOiPVjDVN0wTs/CVV1ojfhAHeo/MqZlwWmIZwqw32YQVuECqj5zLFFKTyRvRWQ6LT5Z6WvKoKKTixjiqjkwLLnz9b0mBb6+eqjeCupezkgk4+o3AUupYwaaVP7t9dwG/nr3+dnuTOVTaOosViEZpMDDCVTptQm1lkMkE/ojsNYZyjQSj5EhIEnqbeaF6QVRUaJ9GCrVDITApw2hvYqQ3k2ta+zsmtWoTx9eZNCHZDsQWZ2ki2C+cRfLy/7gG5lGq2L9rvyXhdEA+e6NrFScHVF9YEzElXHBS6K8XWZcnNOlueC2gCZh13tf1XyP/yao83Aer38fgOWhYgdIqbtOoEkRGlVLKsSxafD4cBK/lTO3ozHDbEkyL+HZYowKeq4MpDa9ccqaDc4NYbJpV1XIkfFRlt5Ezuyg1Zs4kF60B82VrUp+L54VRcl4KFdLnnOZNzVL6yLbj1J0Cma3XMyGNGHjPyB2bk60OH40gBedkQDtEYbUALURuDKV0lCs+ejuheNl1V0Lpjrh1z7ZhrL+VaE7ASXa5TFrMZeuTQRT9mUX/4DTb3YButDvYIjb/yBsyimfc9RW0KFrNVm1BNHEWrXFvXxKtKG9dEc4rWnBtJ/ZMPLi23idcDqtCCF376UGBpgRqX3uCdpuo9d7jgS+9oEvmc9dvh2+FBrkT6Akdq01oLW1hulYqeLeX8QbYt8fcw9k2LRVEb6ZYPtK11T4LcoBnVFJw1XDp5njuNWyIWdH/e9SD64++xx4FUmfbbOzzsK0JRQWNbzYfh2T727q59CgldlrXydVTN2gsS3zKs64IpuQopUFmP8q7R7Mlu2hX4q5UIZyEFpUVOXz5n0uV1Egpd9s3v+psUOolKLlXUibDRxej244fL0eDm+uLqw8PV4Cwchu7JeeMrbV3J1ZYe1FYdaveo1TrxXf/prv2rzUlyfHb4r88OHWp9k1wVXCrKIx/uVVd2JuxQ2WEBi196nKDKMw266jFhq1XCLX40RdPQtNeNxZPpptj46pRK6z3I4owXdvcdYzvIJ/fdi8cp/B+vGwdd1E1ytfRFs6hpxAL2BZcvPts00yZgOfIUjbe4pR0JgZXb4rJ+sKCysz4J3l9RvfgGwa7HxQ== 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](/reference/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..2b408c1ea20 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](/reference/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: eJztWEtz2zYQ/isYXppMLUpJnTTVoTOq7bRu49Qjy+1B9gEilyJiEmAAULKGo//eXYCSaJGK08elM3LGDkkA+/y+BbBVYPncBMNpcK1VBMYwIY3lMoLg/iSIwURaFFYoGQyDKzHX3IJhnBV7k5lV+FXCcjsSQyKkoJXhnZykwjANn0swlkVcskhJy4VkeZlZUWTAcl4UQs6dQF1GtM6QUCdmNzwDuwSQzKbAOM5awJ3ct+UbwyCDHKRFS2XMLNdzsB2GbaehhXfy1qAXZCdqLQv0NIYvOroAbUiIShrTlMYJd5KzWCQJaBTeofeEQTgPSdIDQMFWqtRMl1Ju/Cc9Bm3oWdWLMeBsKWxKLt/JjOK/kylyfFpsnQhOgoJrnoNF2zCnVSDxBTNXz7+shf8GK5wqKKcFtyk+U26EhjgYYvRhP/ETjPYDrMhVCnw7Jim3zKSqzGLMEMs9TuIQBZsohZwHwyqwq4JMEdLCHDQOJUrn3PpPb0+D9fre24EO/qTiFa3ZN4tgg77SEAIiExEnC/ufDJlZtZWp2SeILIVFqwK0FWDcqENEDfjzbV4oLDh60PcOBGEOa28PREZREJ51/SSoAX7ZgH/DD641dymzkJsu/9o2dxLKT8MUpWrpbOfFjiuJVrnzwiAgIzjgLk04yKgag0+C7aVdeC2XcXeEayPY5XkzpGRRI37oCHpE0fIG/COZGHHVIXPd5MC0ZXRbJYLVCpvBri5ePyXZVSujTguFxqF2DK5AYKFtWT/CWlkPOuxFqTJY9GYrF/3SgPaUW4osI8Ih6a2rQ/iqIVI6pmprqLYiAuq8YmXb6g7ZVYllBJf+yAZMOGgvRIyUdQl8Dq8IV0x4XubB8NV+5L7ArW6UPxvIsa8JGD2vyxS4zGPr9eC0O/ctIqL3u7KEYk4Hg4MrXSQYVl5Oy6SybMEz4crZgQKEi2aIjG/bhWg/sdd+JnIG97+MeQIzvqNmjDaz6fj9Gfvh9M339y9Sawsz7PeXy2Wok6gHsbBKh0rP+/hKvzTvZcjQeE20X1FaeRy7sPOM7djITAGRSES04XFtNqN8P8n8obrpRqs97jTgUWrRKkYjdju+ZBhSaUWyIkC2VLs1CUe8Uq2bqdIOZxmXD47qHhttpftaTJnnXDc3qYYCFIRAsKV5dif67nVnOf1lMrlmXgQeXvBokNBWT6SqFYVNViC6COyP/u3tYLAmmZTxr/AEzyWPBbrvoLXvDp2ZFObZS3OObQ9s/01mlBZzsa83dLVrw9MaxOfeI8/L079DReJUokp55NSRU0dOHeTUm65NCn2hKGvCIWiNIVNRVGrcftkyFdmWcBvd9ZH6yLQj045M62Ya3b/ApiqmC7EyDjp0Lx4G/ZpMve29vF+1L9Prvj9bkmGYKtCLzf271BizoPKMWiMRKjzK2/WwKpS26/6C0rXgWnC0yGWXhj3zNojKVMSz1FvVziwN0CV/4/EZz3Fb5ewdG1/cTNjPeOBd8pWLNKl8Kvrd4N2gUypNPSBxdH3JvIcel41asRFLpO8U6yd/jWDXDDCAdU3Y1Q0t8+GZAdegRyUlZ4uXWp+TTu9+En7xD+83KPr1z4kDAtW58a7RcPHI86Jm6RcaA4MDl/RpxxV3B+HWTXV747zvvgsOHCcS5cypEduOFMHG959weBC+arMDo0kkj1SOa12lR4a4RhJvRD7K8B5IET8JcDsAvFeR3rprtJn2wY+wP+qO16uQUOOhvSnwc5RczkJU14/8su3/s0zN+jkXsl+rMP2z0dXtx/NR78Pl2cXHm4seSgzto3XZIQLmXDbsqK+FrZPkvtPVboM79ir/B73Kmr4WHm0ftwwhqaA4WFV1/Z0GrfqL64ad7cxdCUZm+TI6Dapqxg3c6my9ps+YVI1Unt7vqq4jcCwMPSM9E56Z/f5nE1cvxnWv4yX7F13RTs83vT65cptCVtIbPj5Q9elq4a7vcVUKmHztvPATz7ytvQmJ2wlq9UvXJ5sVoyiCwh6Y++RwSEVru1Ne/34zoSJb92pzPFfgV82X1E/Gv8PgDv8FVOa2/Uz3vQrwfDAv+Zzme7n08xddWKFG +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: 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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"; -

    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..612da39f2df 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](/reference/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..5678c6c973f 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](/reference/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..dfa6e8eee43 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: eJztWE1v2zgQ/SsE95IAsuR2i0WhW5qki+y2aRun3YPjAy2NLLYUqZKUHUPQf18MKdmKLcdJUWAP21wcifPFNzOPHNXUsoWh8ZReQMINV5Jo+F5xDQVIa+gsoCmYRPPSciVpTCfAdJKTTGmSDmmQOTOQEiXJgi9BkkRzC5qz8E7eyTiOpbJwJ29zbgjItFRcWsINYZJMmShzRjJgttIwO4k0ZKBBJhC5lVG7YsIiPSVMpkQqS0CyufAOz1lRyZSRRFTGgjZEVZaojNgcyFzdh3dyAuCepp3oa3JzObklZx+viFqCXnJYzU4iVnIzskoJEyVecMRKPtJg7N6LUacXFulv3yvQa1w6vZOIUFZpmwMiZRkXJnQI3EkaUIQMjH2j0jWNa9oimNI4Y8JAQBMlLUiLa6wsBU8Y4h99NZiEmpokh4K5VSE+ZDSe1tSuS6AxVfOvkFga0FKrErTlYJyG0s5aK8W0ZmsaUG6hMM+xk3EQac+QsZrLBW0CqnQKen8FCyhjlbDo1SS0aYLedqetwVlALbcCNhX2CaGcKG1vPFK0maFmyRbwrHC1KnoxcWlhAZoGNFO6YNa/+v0lxi94we0TZY2L8SyzD3a8B+rD2JqN4hvIlIbnaDaD+HxkC9jiEwz4G1A6rLCfa9Fu8Klwd5Rw02OEv2F9FNU/XtFdornNgTBj+EJCSr7BOiCrnCc5YYk1hBnCSCX59woIT0FannHQjpUsUssgNYWYuaEIr1kBw4W7G9DF+2siWQEdrRz2swRtuG/WY/X06M5bO8cdDm3saqBTd73Zdls8Pe7DgmTSPsUq7sFLk6uLY4Z7dXoxsIu3rgwf8sBj8kO13njaMaWSxpfqy/HYV+xu2MPHmm9cYqokAWOySpDOWugI/acT9nOZzirLxNUOfxzstiagGdfGIsN+YaIC8zweE+xHdR9jMg/oc6jsoMYuPLvxHInzF7H9r4hNg1GVTuDpgPXB6rQJ3jbabB7OFlkxQ0qmDaT/IakiUzzsxqNU2vWa03r1Q/TpLsgkY1xAGpL3SkN3NyZMAym1WvIUUsJlB6zzSeYqXSPPoucCbK5SGtNSGdeozOY0plHneNR3HHnHFG9eGkvOMWmlBY1p7Um5iaOozpWxTVyXStsmWmLpLpnmOFq49sdlv93uKitUwkTuI9gHARf6FbIzb/zJLKzY2qW/bC/mW9Ovx6/Hg1ZR9IBFnGD8Dp3R7XGzNZtbWw6a9cJPMdwgzxpIKs3teoJqHp45MA36rMJEbIq49ees47MXokH7z9uOK/7659blFY/Km+1YdHnPilLAw3voQRoeP0aA237akNcBeezCrfS2M3tjjh+kpptJaCveDkB+ypltZxU/g4w3E8Z4Z36Y1h7W/mSA7xAULjPlMG2bdD87/V3RcfhiL8WYQTw/ElUUlXQXE7kgK25zwnrZbqfmkGKcCWCnxzWVHsBO7J1fIV9a8n4RYqX6dsJ8mziKFtzm1TxMVNENy5vfuVDzqGBcRq0LE52fvf98fXE2end1fnk9uRy9CMehvfcnPjZ4wWQvDsdEByjmxH0lON3df729mv36ePFzPl60DW7h3kalYFxiX7giqFs2ntJBNqZdmeO87zl1SusaUf+sRdPgaxcGjaezLQXjUxPQHFjq+4V+w56n5z6xo1uMB8VF5a52u/fvJug0zpIESvuo7Kx3wnz8MLlFwmq/0hQqRR3NVvgFh61oTLHtXaE5HnTvaiqYXFSu+am3iX//AsBa030= 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](/reference/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..5215fcbd148 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](/reference/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..a30fe58055e 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: eJztWltz27YS/isYnJdkDkXJjtOkfFMk2mVrSzqS7HYqezQQuRSRkAADgJZ1NPrvHQCk7o7lNA+dqTzjsYnL7mLx7YXLXWBFphJ7IxywkEbAFH5wcAQyFDRXlDPs4QEQESYo5gLRcpFEEyIhQpyhKX0EhkJBFQhK3Ht2zzzPY1zBPRsmVCJgUc4pU4hKRBgakTRPCIqBqELAw5u6gBgEsBDqZqZWzkg3i94iwiLEuELAyCS1DFskK1hEUJgWUoGQiBcK8RipBNCEP7n3bABgnkbV0o+o7w+GqNkLEH8E8Uhh9vCmTnIqa4rzVNZDu7BGcloTINXeQK3a52bRf74WIOZ66u0901qJC6ESECgCRWgqXaOBe4YdLOBrAVJ94tEcewvzSAVE2ItJKsHBIWdK69xbYJLnKQ2J1nn9s9SKX2AZJpARM5um3Rh7owVW8xywh/nkM4QKOzgXPAehKEizgwtDrVxFhCBz7GCqIJOvoRNTSKMNQlIJyqZ46WAuIhD7Mxo0MSlSpbnKEC+XzsZxRyXBBwcrqlJYoep/WpUDLlTfagovH/TOnEzhVeIKnm3IRJmCKQjs4JiLjCg79O5cy5/SjKoj10ojYzNWWyfeU+q2bMvVxk8QcwGv2bk8qJ8emcJaP84Bfgc2Pb9h/67T8oDHqvsLzF/U4E8XeNeRDBNAREo6ZRChLzB30CyhYYJIqCQiEhFUMPq1AGR8DI0pCON1lHYjletx9cXkgocgZRtiyqim/tv3S1TSQtGKmJZNC8pDShRESPFjRAgO2MshfpM8YyumNDqWUcCkIiyEH3BSWpI66pwgBBdDw+2l01UhBJk9SC9GM6oSRKxyIUISjK9+JGkB0sUOBlZk2j/cdgY9vxVcBn4bO/i281un+3sHOzjojm+avV7QuRr7/X63jx38a/fTuNMd9/1hP/AH2MGtbqcdDINuZ7XE/2PYb7aG47vm9a2/Gm01r6/99ti/9m/8znA1fNv5pdlpmxk9Mvbv/M4QO/jGHwyaV/54EPzpj/0/Wr7fNsKVZNp+KxhsMl0PaLbNLYEuu/2bcac7HF92bztt/FAp9gakLH3dt3XrG5VmdnlpN3bFBKSJdlbplKGMCyhjkbnBOOWzDo/gWIDq9YjxCI5B54r434fnBt/XADQUYKLmkGZH6LFNFGgEViRQtd3dFDIiCmpKE9TOXBF1BOWBKklviXi0ATRbw+DO17ALrvrNoUFa3x90r+/Mvz2/0w46VwY5n/nkb6j5M59Y50tjBE9UKuls6tjIu69lJQB6RCXHQSgnKkE6KO/7nEdKthAmTY53+O4lSoFElE0P37wCRpiysN6Xwc5qDJfJ4Xqvs5vWbITQyoldmqi4nZbsrjkUbpc285E5Z9JGy/NG47CEK4zYdAHJItS6iosUVQRck0b+8DTxtfmV4oqkwU7W8izqtFugQiqd190ZoL8ue0rJ9+79Vv5kFfqaBOrZHbvq2ZXnBTlP6dQpnTqlU6d06pRO/dPTqR+SPR2Kj/+6dEonD9sB+mASVYVcs/Li2MTJFORQTGgKkYtu1gYrERHGUT/SCCJtzVryKrlCEx7NdYZleJ3t87plpFAJF/T/ED2fhuWCT1LI/rufjm1Ta6KeXVkKh2w6oEN15XqMiKP+ZQv9fPH+w8ObRKlcevX6bDZzRRzWIKKKC5eLaV3Eof7V6966aJiAAJSROZoAIlFkQihJ0TrRQDKHkMY0tJdvtGKE0Xdn08wXcsBngtYK3IWge+htott+UCUgcwO9XdbbpcMJL5Q3SQn7gtdYeclGmkgWWUbEvMLmNoPS6RQvJ6/vzg/a3y/DYQ9ZEijUVrVKo0pG+hAZZTTTzuei0XBwRp7s00+NxlLT1Dd+xEkYgqc8JcxAa/c4B6JRZd8/6Ga4oFO6y9fdsugSxG17ospS3+3j/ZKLCY0i+MYbzMl0Tqbzrzedi328d7hCMS/YKeqcTOdkOs+ZzvtD+WHAFAgNQgniEYR9jzuZ0cmMTmZ00IyWDs5AJTzCHs65NNAxL6a4vur2qNv3LKw/bGujkqZkXIgUe3hhLWbp1euLhEu19BY5F2pZf9TX8UgE1Z0b5vb0tLWsCjEpD0maWK77N6cnGMmgOtFOO8cVUTAjc1vVK/se1qQ/Nj42Dr9Mc6GeoagbROwJLe42fEFFVhv1QbJ28TGEl7qgLCEsBFXzgd5m1TMBIkA0i62qQMnPUNfPdhF2yn8uK5T8+vvQXLT2Y/1114n/RLLcWuH6M7+pNzeeK/semtBFgTU0D5VQG1ulzWeLettVug20bxTVDozucNquUeHzxvlFrfGhdv7z8Oy99/7MO//oNj6c/YlXxaZ1Oagq9jQ2azBrjusayEbLi22qGa26YtbLy2YY2/HysO5bsf0ojVW3SWOnl2S0sBjY7BLRY0vjFGJuAFCa7D6UtF2BkBZ7Dfds3z30AuPlQp5lBTOhjk2r0tmaXtlBpf1fSkPQhRdvgbXFbbC9tjPoznJEZ642K2v7VYSbUpUUEzfkWdU4tfo7SfmknhHK6iULWW81b2477WbtOmj5nYFfO3Mbrnqy32G0B8oI25DDFIY2Gs/emC6xt7tnXqwD/Klh7fsb1kqvo+BJ1fOUUFMbM5e9KMPCCK90iisI674u69xHeLHQmr4V6XKphw1r7I0e1rFAPy0dnACJrC1Yh4Rb9gJrxoXo5WlhPqbtfvFcOtWOZhhCrr659mEjvPW6A/0hYlJ242U80nsEmelOPTLDHtYmbQBlHLIZW+CUsGlh/ZWlqX/+Ap4UJvw= 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](/reference/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..16e1b3a41e1 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: eJztWV9z4jgS/yoq3ctMnTEkO7Mz6zcGyI5vEuCAZGuXUClht0G7tuSV5BCK4rtfSbKxAZPA3dQ9zVRNBUvdrVb/+bXU2mBFFhJ7UzwUPAApEWVSERYAnjk4BBkImirKGfbwGIgIlijiAqUHxBLNiYQQcYYW9BkYCgRVIChxH9kj8zyPcQWPbLKkEgELU06ZQlQiwtCUxOmSoAiIygTM3jUFRCCABdA0M418RrpJ+B4RFiLGFQJG5rFdsEOSjIUEBXEmFQiJeKYQj5BaAprzF/eRjQHM17Qg/YxGvfEEtYc+4s8gnimsZu+aJKWyoTiPZTOwhA2S0oYAqY4GGgWfm4T/+DsDsdZT7x+Ztk6UCbUEgUJQhMbSNRZ4ZNjBAv7OQKovPFxjb2M+qYAQexGJJTg44EwBU3qOpGlMA6Jt3/xTagdssAyWkBAzG8eDCHvTDVbrFLCH+fxPCBR2cCp4CkJRkIaDCyMtpyJCkDV2MFWQyEvkRBTisCJIKkHZAm8dzEUI4nhGB09EsljpVWWAt1unst1pLnDmYEVVDLvo+rc25ZgLNbKWwtuZ5kzJAi5SV/CkohNlChYgsIMjLhKi7NBP11r/mCZUnUkrjY7tSO3t+Mio+7ptd4xfIOICLuHc1tpnSBZQ2sepWa+G6TTDsa/jfIPnmltkjGmnlzuYcx4DYdpoJFD0GernKAtoCEzJ+umIMiqXENbPBjxJY1AnpzUwxadmBShBQd5CpOoJQAgu7kDKPPSOAt/si6q1X58XUhGhukTVMFdCKyQKGoomYJZk4WUM8zRhOW7XaXEI4BONiGnCdvDtd10tJv/sgra3pn0AIamFnDOy4pkIqtH4kohhJKm36jOJM5Bn5EjBUg33whZ5VXrIFbsxAV1BFAfPiQqWgxSEAdgTLkyJAKYOhH6D9Zt2+fmDZlfACFO1sk/rfKTradK65N5anJUpZ9Ka8brV0n+OI6Eo+IU4lNd3mQV6PMpiVAhyTfH67sXpUlRXXJHYP4iD1zwQUSGVriYP50ZVBUNj8t/yvoba1qCXwPZJjkPzHOrzhp6H7H+dHdhHeNGvzeY6+CmQR+f/98CeNxBwl8TnZ62lv4n5qs9DuDzr/x+4L9UJcmBZok9X7c7Ef+hhB/v9jt/t9SfYwZ3B3fC2N+l19e92v9O7NT/v+9/6g9/65td42Ov4N36vi2eV4lxfH5dEtk1l36FoPd2Rg78LgDpYcK4K75wg4YVmr2bFfpCicjtv5lv9qmeVFjtw2oGj3nhw+9B7qvrP+OxpOBp0euPxk98fT/QIdnC3p/1aN9Pudp8e2iO//eVWf94Pu+1JrzpyN+j6N7+/IrTb6/hjf9B/6vZu/L4/8Qf94xX35u78X0ftOnVm50TuuPO11723oXk76HwzP8bWAjdt306UoTw756S2OyhekmUVOC6dqSAxMwGJ468UhIbp9fnBdXjHRru7LqoSvhl4r4f9UcadS1cP46+cQEaF+rlhTlO+SVBb8gzDh0sPMEYIigiNIXTRHRdQ3MQREaYEPdMQQkSZ6QoUhxw05+H61ZNOKvg8huSfxyeefeXaWjVNma+LrB8Rkbmb53b16eimg3758PHT7N1SqVR6zeZqtXJFFDQgpIoLl4tFU0SB/q/p3rtosgQBKCFrNAdEwtA4jsSojBAkUwhoRAOkuNlgrjbSbrX7e+OYdQKbdlmSCXpU3NvofuQjUy9otKZscbz0fk9gzjPlzWPC/sJlVLx1hGgjmSUJEeuiwbO/QA4w2dvnw5+ua48nXyeTIbIiUMBDMM0upbtW+UJ6EwllNNFo9aHVcnBCXuzXz63WVsvUHj9jJwzBSxoTZkLrcDuUoaSMW9delfO+3PfxDBd0QQ/XdQ+TXQ927Y5sMn6sS8Y2Q9rKQsehAWPEgyATAkK0WtJ4d+or1s67YD9y7Ueu/ci1U7m2dXACaslD7OGUSxM6RC2xh5t5OjV23fem7S9i3WgUzyCkuUxnIsYe3tjM2XrN5mbJpdp6m5QLtW0+a7cUvRvjRT1tM6yInJgHJF7a1Y89qCf0Ra7Y2UF7/VeiYEXW9pqX96FL0Z9bn1v1V0Qu1AmJumFvd2jjr4IJhVid3LViLfE5grf6qi0hyARV67Fms+aZAxEg2pl2wi4u8vWMdHPzMUTYyX/cFNHyr98mxuEaz0blK0Dvheiz6X7bdddOVSKDsoFqvyotUztQNkntd6Utmg/sGqH2e6/1aYf2j9BlsFd7nOVo5YqLr1vXHxqtT43rXyZXH72PV971Z7f16eoPXLnWvkZ0cIEvFzndGGjttxxtK7FkLDqI02Kovt9XWelkm69VvYNWe7smmqe7Z5FSVv4aYp88ZuXDhX2QaO2eG1oHjwnTjQ266jOBHtsaNIq4ibgcK45jV++6sA5uuVfHuDT0DbwGPEkyZmosW6AVVUtEKrmQP6Fp4I1pAPoMXhq4ILu1Myj3B7pydR5bsClK64KqZTZ3A54UL2e7v/OYz5sJoayZLyGbnfbdfb/bbtz6nV5/3GtcuS1XvdiWmIa+hLCKHvZ4f/wC+c48F74/3PumPGH8eMH8318wc9hT8KKaaUyo6fEY52/y+jTFR/UJF6GtH/xslZnizUZb/F7E260eNipgbzqrZvdU5+4SSGhzxPYoccc6tDHRuuQJr3PusCm9dQqOdhBAql6lnVXq7XAw1v2Gef5Mm/BQ8wiy0k+4ZIU9rFM93bWWzNgGx4QtMougVqb+9x/zScoh 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](/reference/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..7ee15ea88d5 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/isY9BJPJZJJkzTlTXGS1n3FteX0IOsAkUsRDQiwAGhZo+F/7yxAipREO1KbmV6cGU9EYneBfX2LXW6oZUtD4xm9MaCJZeYznY9oCibRvLRcSRrTa2A6yUmmNKlaKkMWzEBKlCRLfgeSJJpb0JwFt/JWxnEslYVbOc25ISDTUnFpCTeESTJjoswZyYDZSsP8WaghAw0ygdCtjJsVExTpGWEyJVJZApIthN/wnBWVTBlJRGUsaENUZYnKiM2BLNR9cCuvAdzTrCV9Q67eX0/J5PKCqDvQdxxW82chK7kZW6WECRNPOGYlH2sw9uDFuOULivSbvyvQa1w6u5VolqzSNgdNUrCMCxM4C9xKOqIa/q7A2LcqXdN44x65hpTGGRMGRjRR0oK0uMbKUvCEodHDvwxafkNNkkPB3KoQHzMazzbUrkugMVWLvyCxdERLrUrQloNxHEo7aQ0V05qt6YhyC4U5RU7GQaQ9QcZqLpe0HlGlU9CHKxg1GauExV1NQut61FN31gicj6jlVsA2rP5AU14rba+8pWg9R86SLeGk42pV9M7EpYUlaDqimdIFs/7Vdy/w/IIX3B5Ja9wZJ5nd0fjAqLtnq7eMbyFTGk7hrAftc8mW0NlnNLDfAFOfYTeht7lO/DGJi2fSxGpA9zc4jA3RGOQhuZ7ieImfYf1Fj7x+6TximYXBuGTG8KWE4UUQUIC0F8MhnTCZ8pRZ+FGrqnycBJUcpCi1SsCYd5BxydEivxytVMN6IY1lMoHjGS1IhlqZ4070gPp3THNEV3N8pO47ULJi2PB3TFRDK72YRYtOmfn8qTnGBxc82/AdIt0nOaQYSoTaY5IplTT+2C+i6DCMpzl0ha5NEVMlaMusEqSVEDiE/+oIfir0WWWZuNhz02NBk3FtLELuJ/TNCU5H8wn2b3kfgzZv0FOwrcdxJLg1TvsiFu0rcGIm/M9Q1q6eDCUPYuBD+vcy+SFwPIL1WIz6P9AV35xgQA0u9d8NerXHgYYaW16A41JFKeB0vkwJoVY35WlcaQWnMTxeYODegpZMfFC6uGpv8ce57xNowz1EHnEPSypjVfETsBT0YA6yNHVimbjcBceBgONKczvs1cNC0JJjg8G6shAQXMz5Eq/92Gq4Oud+9V62zAg6BZe8qAoaRyNasHv/+3kU9e7Nr6KhSobQPlwFBwHRUb48uq55dMwYF5AG5Deloe1iCNOogbrjKaSES6dRC6NkodL1owWw1GohoPj2sBDunmpCLj1lsy/xPiXMEE+48LvPrj6ckx9evvp+/iy3tjRxGK5Wq0BnyRhSbpUOlF6GOkvwD+nOnI80kIKtyQJIFyKkQ2xiSkh4xhNiVeMyfxgMDa/fF6qvW30knSrNDwJrQm6uLghPQVqerblcHm69208tVGXjhWDyM+3iYKgD293FVEXB9Lptjnc3aCpQ9eVrw3cvBlPjp+n0kngRJFEpuAmBxY6/2Wgn7F9G/cB/HUUIR87jR2giCdyXgkkXWvvqcEmKLm6dYrzB+q/kGaX5ku/vG+xcTpogfuc18ln4aigLJ5KglRE2CWitNFFJUmkNKVnlXDjxCJXt3m0P9ZRrT7n2lGsP5Fo9ogXYXKU0pqUyLnSYzWlMQ6x4YzeyDH3Jozid0XfuIjHb0EoLGtONT5k6DsNNroyt402ptK3DO/THToOMyz612pARKmEi99seug4XsD1uVdqbSf7ILKzY2pmybIZ3neg30Zto+F6itH1AIk45vYY+8Hpg0IrFrB4U64mPEVxj62UgqfCCc41s3jwLYBr0pELrbwOi2c9Jx2dPREfNjw9tmPz859R5GoHsqhudvr9neEvenT25RivatlFd0HXdU/eu1zR1L/dbnoEV39B0C8NtSDTcZEQ79+dHhOweqxdts3ay0l91A5XtlXaOLnZxM9tObTvqZljrJ7Lzbq7q56XRdhoa7c06Zxvv3v4UE9/VLuEz5XzbpONhlOAx2/s9jYLnh6l/eeEQLFFFUUlXxuSSrLjNCetFXTPhR2wTPAG8325nTdttf/UrpOkoyPMAM8andVu9ltzm1SJIVNEO9rf/L4RahAXjMmy2MOH55Leb399Nxr9enL///fr9+HkQBfbeDyMQXQome+dw9+/+l5Fn7jPG2b7Sm656P31S+Q+fVBpIsXBvw1IwLhHknLs3DejPaAf6tI1i/PTgoXtGNxs09Y0WdY2v3d40ns273MOnekRz13G61HJwQ8+9C8dTPESXjAeTv3rUckySBEr7KO28V70uP15PERebD0aFSpFHsxV+TGIrGlPMahdSDm7duw0VTC4rl9vUy8R//wARiapY 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](/reference/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: 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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 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..b0357085bc7 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/isYnJIpRcppmqa8qXbSqpOkHltuD7YPELESkYAAAywtsxr9984CpN5O3DSHTlvPeEQJi29f3y6wXHIUc8/za35mi6YCg57fJlyCL5yqUVnDc35VayskE0x2MgwtwxLYqagaIwV7yQrdeASX3pgbk+e5sQg3ZlIqz8DI2iqDTHkmDLsWui4Fm4HAxsHtk8zBDByYArKwMuhWfFrJpykbIysa58Cgbpk1umW+qWvrMIApM6igsq7dWObROkhuzKJURUk6jUVWgTDIZtax2lnZFOQXazykwdgbwxNeCycqQHAUjCU3ogKe84A2ljzhigLxsQHX8oQ7+NgoB5LnM6E97MdrUgIbnzE7C0HaNY1C18R47iyiTXnCfVFCJXi+5NjW0QCnzJyvVsnapn7L1zJrbVDKxrMQrtrZOyVBJkwwAwvatFBasymwORhwAkGm7LKGQs1aZeaUCrhXHum5F3bgG41MmbDqnHVM7WkW2oGQbdzr05CHhyNwGx0Ejz9a2ZLExl90DSS8sAbBIC1VjUZVC4fZzLpqIAUGzAN0O30PBVL+na3BoQJPqzOl4dCGhBOYQJ7zqTLCtXyV8ApQ9PD7oEJKRcEX+nwLPhq7q7AzfRIADvUeJrLbwEhyP6Up2UUuvAuMeQwccauHoZ0BAu5r5cCP8JOhkAJhgKqCo8C0yoSRjCTYogSzy4FOR9Dn1R/b5iqDMAe3rUsZfPH8qB7ae0BtZdi0xYC+SjgqpKyuO93bPnO0uOHSdcz+LQXAFFaSu8SorTzvZIuLutaqEGRM9t5bw1f0R5C+tsbHBD8bntDHkQD1xi6E7woRJPNNUYD3s0brlhrDFrUP1P0FXvfKHsezPlBMKvq5UkagdSkb6YVoPfMQmscNL+IxcMPJUjBNRUHsfgxx7Nvoo6j4UOcMFNlqfl8Ilv5ftP+aot1fvOjvEjxW4PPh8DNF1x3FM6E0nWlv6YSWgEJpz4SD9VFIVpGVfU2zqZVtPLEeKM3a2amG6pvDEt01Z8TOo2Snl0UiMuFZFJxG7dcXr0/ZD8+/+/72SYlY+zzLFotF6mbFAKSiurRunrlZQf8k9zRlkxIcsEq0dHRveM02NGY+nOKq6K90ndmBotG/T3cUfID86+w3Th3kfsSuLsZMSTDY3SAOVIc9M9FowhBT22A+1cJ84Ju0f65ERsw3VSVc21NsV0HoSwIb/1n2fvvsKHt/nkzOWYRghZUQLphId95OETlRKaMq6ojPh8OEV+I+fnsxHFI3Cxl/hCd0v6q1MIFa++4ow6oNb4NjyngUVAdfJzPWqbna17tbnx2Jz6JH3QlYAZZW8pzX1gfqCCx5zjO5njUS7sHd9bfuxmme82UslVWeZcvSelzlS7rxr7I7ysOdcEpMdWQfLceS6qmibSF0GdUdpowWtrvmZoC5eHU5YT8JhIVoQwhJ5S70y+HL4VFUEn0AcXQ+ZtHDSLitJtDDUjUf745B+DHA4XLsoWicwvaStsXwTEE4cKOGor4mQqcvoNP3KMST7uF1T49ffp+EDCszs2F7l+lDQygr4Hy0fJieHLLqfByKo7BV1ZjQIc2cLRSWTBwZInnCtSrA+MDfbuzpxd7EFfZb1MhOUkpKZE7fGOcKy2aaFrbKumvI+nOq7TSrhDJZp8Jnp6O3V+/ORoM349NX7y5fDU7SYYr3GJwn4lbCbNnRDcPrE+RJGFuf7vu83JwL/4n5uSMXwj1mtRbKEN1DVpZd2V9zuf2KIZbuNV8up8LDldOrFf0cZ1lqBlJ5qvMHptnt+H75vH3U6g/Q7oz+d0I3JMVpCP/bVv2zxu1PBGDnPcMmBrebFszza7rdlyAkuJCzuPM0xmAQLsabvcdmcgpp3DQqCqhxS/xwrLrdOlHOf72cUM/qXgVUVtIeAg64yeaRjFyt/gRT45EZ 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](/reference/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: 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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"; -

    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/tasklist-api/tasklist-api-tutorial.md b/versioned_docs/version-8.6/apis-tools/tasklist-api/tasklist-api-tutorial.md index 3dad8bb79cd..5ecdd5ba456 100644 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api/tasklist-api-tutorial.md +++ b/versioned_docs/version-8.6/apis-tools/tasklist-api/tasklist-api-tutorial.md @@ -250,9 +250,8 @@ export class TasklistModule implements OnModuleInit { logger.log("Tasklist credentials fetched"); axiosRef.defaults.baseURL = config.get("TASKLIST_API_ADDRESS"); - axiosRef.defaults.headers[ - "Authorization" - ] = `Bearer ${credentials.access_token}`; + axiosRef.defaults.headers["Authorization"] = + `Bearer ${credentials.access_token}`; axiosRef.defaults.headers["Content-Type"] = "application/json"; setTimeout(this.onModuleInit.bind(this), credentials.expires_in * 1000); // we need convert minutes to milliseconds } 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: eJztWFlz2zYQ/isYvjRprcOOkyZ6UxQldZrDI0vtNJZnDJKghIQEWACUrGr037uLpUTqcOym6Uwf7DgeksDe+y0Wuwwcn9igcxmMrDDMcfsluDoKYmEjI3MntQo6wSiPuROMs2K9h82lmzI3FWwiZ0KxL2LRDI6CnBueCScMclwGCl6AHKmGQPSrWMAeiRxz7qbwbMSfhTQiDjrOFGJX7BDYA2OmEy+pEu40K7xKKNNGU5HxoLMM3CJHcVI5MREGlhJtMu7o07PTYLW6IpHCupc6XiBNpUHCUwsqRBrIlcM1nuepjDhq0/psUaXlvjQdfhaRQ9uNzoVxUlhcjaZcTYQVxChNPybeI9sGvr34+IERA3IoUcVkJXfOyLAAx894Cjo3x2qs0CeJTlM9l2pSbbEs4oqFEKP4c2EdsCgDJC0TKs41eOAIFmOJonlaoxyruUxTpJUTpcEVHZTzI7sGjrFEL78xusjtNWswgxaxcMHA2JmMvQqKiSx3C5ZK67bpMKPuTxYX4hUQ3bX/AvRWE09Bfhjl/4RsrM5ri2VuaSvqrvSu4+xaFWl6Tc5n2jCdSeeQTjqQALLMDL2HqQmBt9K7fcPmB0uUm6hxa8HBQmCklHZ3BgvS3ad919NRSqxXm8jS77aFweBrYzCJBGAR/mYSaLSCRDE1sZSRQArJupu8VWac19KYQLmd2GWYagiw3rV1uGHwG04C+A9BGjgwX09KXKNlTTa4M3gIdgwJD1NBuq1QZpUD/0InYtMo8u+n2TYMarpxY/jioBaIBZS9IfU1z95fHWSAykgnMrvvjtXX1CSUf6OeE0/8HyoKX5x0+Br0NqV1tXdSPVTUh4r6/6ioe0DjEeXobhPQZRGorDNGG0rvuCnHDKY04lEkQChwY4mBnVUn5NWzGKci9Z7061t2M6lmmrqYJjtLGHqKwiniI/S8lxKLhAMLbK3GATVX42DLsk1JvR2Zo7LRo35xQJ0WtF24B1TMtbJ0iJy0T/cdMdzq8ebclk1ezGzhHZCAYGgzgdlpu30n/V6DWkuTknGTvQd4gu2Oy9QyDs9rz4DXPPVabRZCw0j+uKVDBEpwSvbTfqe4G+9z2lnKXZcrsJc2hiT9cvC6x16cPv356tHUudx2Wq35fN40SdQQUHS0aWozacEr/sd9j5sMXAA2ZHxBWNjUpuoIZzYXkUxkhJH2QCuVwSgfzuTt859Wv3LQFkbuHRpdNhqcMfCrcjJZYJ7uifY0Pgfx6Al14TphytWXoMqvfaG7UmyRZdxsbgzbAoCRddwV9s67wpOTg8feL8PhOSMWUB9i4auBx1opCI3IpJJZkQUdyFF44zf09qzdXiFPjPg9LIEie5OD+T61ds2B5MiqvPWGSQV6qeh7RUYbOZG7ckFQDetlEr8iiwjjp/eA9T4sEemIy0QXKi7h/eIb+EAcStDOjQZDMFJQpAso5MpB4XgA+wPYH8D+ncAOi5mAPi+mYU409dMfN4XXFqK0gSi1rWVt9rPCYQ22eOV0qDDgnGBJ0FlBxi+hbXSrzjLXxq1as2PYP+NGYq/hw4jLBLF16qTQ2KT+86EQ4gKOoNA0zj4JATh5AzVhzqmLQDnb/J63n7cPssKtaw8Ro0H/Ysi652eMTKKMq1WBNUuE80GWtPkupn5mZQVUMekWF0hCvggFFDDTLdDjmywoZXnO+E6b4As9vF7nxtvfhz68WL0G1Tysf8OznLC3Nb7aXPmhbzs5bbTh98nwpN05OekcP28+aT/9FOxexL+2c/difLnO3qsDt9FqsdZC166JUiXae6DM1G0/YgbhRcITtZvH+4gAXyOwI51lhfLVHVCxOVyIW5TincIg4OEAgBuCd1E53KQtPaKHa9E72sF+I7ns2EulXF+X9gnwL8ImCG1FHOhi3voL2bTCVIetjEvVKgXZ1qd+/2W/0fv4/v3ow9nwj8a7s17/w0W/AXyb7sb5OOaQ6BlXNa32J7a7pi+ro+3+890yz5y4cS2oWFJhCLxtyxL9l0GFfiDo1Ge/EF+C8GWwXIbcipFJVyv8DCloFvD9qkI8jUulxedqOnurCY8G5SD3Mbvf2PigKevJh1r42gMXMXiDR2C3M8deYT5OBY8BX6gp7eiRPo0h8qk47A2SV0drii7cbHJ3y96tLgMLwabknneHvV8Q2OUYO4MTCj4bPsepOvztBGP4By/aO8vXDP99GcBJMyn4BPcTY/z5G77OagE= +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 -

    +