diff --git a/api/camunda/camunda-openapi.yaml b/api/camunda/camunda-openapi.yaml index 576639f483..dad36c860a 100644 --- a/api/camunda/camunda-openapi.yaml +++ b/api/camunda/camunda-openapi.yaml @@ -48,6 +48,7 @@ tags: - name: User - name: User task - name: Variable + - name: Mapping Rule paths: /topology: @@ -369,11 +370,7 @@ paths: schema: $ref: "#/components/schemas/ProblemDetail" "403": - description: Forbidden. The request is not allowed. - content: - application/problem+json: - schema: - $ref: "#/components/schemas/ProblemDetail" + $ref: "#/components/responses/Forbidden" "404": description: Not found. The resource was not found. content: @@ -418,13 +415,49 @@ paths: schema: $ref: "#/components/schemas/ProblemDetail" "403": - description: Forbidden. The request is not allowed. + $ref: "#/components/responses/Forbidden" + "404": + description: Not found. The tenant was not found. content: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + + get: + tags: + - Tenant + operationId: getTenant + summary: Get tenant + description: Retrieves a single tenant by tenant Key. + parameters: + - name: tenantKey + in: path + required: true + description: The unique identifier of the tenant. + schema: + type: integer + format: int64 + responses: + "200": + description: The tenant was retrieved successfully. + content: + application/json: + schema: + $ref: "#/components/schemas/TenantItem" + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": - description: Not found. The tenant was not found. + description: Tenant not found. content: application/problem+json: schema: @@ -456,13 +489,48 @@ paths: schema: $ref: "#/components/schemas/ProblemDetail" "403": - description: Forbidden. The request is not allowed. + $ref: "#/components/responses/Forbidden" + "404": + description: Not found. The tenant was not found. content: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + + /tenants/search: + post: + tags: + - Tenant + operationId: searchTenants + summary: Query tenants + description: Retrieves a filtered and sorted list of tenants. + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/TenantSearchQueryRequest" + responses: + "200": + description: The tenants search result + content: + application/json: + schema: + $ref: "#/components/schemas/TenantSearchQueryResponse" + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": - description: Not found. The tenant was not found. + description: Not found content: application/problem+json: schema: @@ -609,6 +677,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: The user task with the given key was not found. content: @@ -710,6 +782,8 @@ paths: $ref: "#/components/schemas/ProblemDetail" "401": $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: "Not found" content: @@ -799,6 +873,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "500": $ref: "#/components/responses/InternalServerError" @@ -889,6 +967,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "500": $ref: "#/components/responses/InternalServerError" @@ -932,6 +1014,8 @@ paths: $ref: "#/components/schemas/ProblemDetail" "401": $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: "Not found" content: @@ -1034,6 +1118,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "500": $ref: "#/components/responses/InternalServerError" @@ -1077,6 +1165,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: > The process definition with the given key was not found. @@ -1135,6 +1227,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: > The decision with the given key was not found. @@ -1190,6 +1286,8 @@ paths: $ref: "#/components/schemas/ProblemDetail" "401": $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: "Not found" content: @@ -1281,6 +1379,8 @@ paths: $ref: "#/components/schemas/ProblemDetail" "401": $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: The process instance with the given key was not found. content: @@ -1327,6 +1427,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "500": $ref: "#/components/responses/InternalServerError" @@ -1336,7 +1440,7 @@ paths: - Process instance operationId: cancelProcessInstance summary: Cancel process instance - description: Cancels a running process instance. + description: 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. parameters: - name: processInstanceKey in: path @@ -1498,6 +1602,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "500": $ref: "#/components/responses/InternalServerError" @@ -1541,6 +1649,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: > The flow node instance with the given key was not found. @@ -1590,6 +1702,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "500": $ref: "#/components/responses/InternalServerError" @@ -1633,6 +1749,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: > The decision with the given key was not found. @@ -1684,6 +1804,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: > The decision with the given key was not found. @@ -1733,6 +1857,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "500": $ref: "#/components/responses/InternalServerError" @@ -1776,6 +1904,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: > The decision requirements with the given key was not found. @@ -1827,6 +1959,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: > The decision requirements with the given key was not found. @@ -1876,6 +2012,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "500": $ref: "#/components/responses/InternalServerError" @@ -1918,6 +2058,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: > The decision instance with the given ID was not found. @@ -2015,13 +2159,7 @@ paths: "401": $ref: "#/components/responses/Unauthorized" "403": - description: | - The request to patch an authorization was denied. - More details are provided in the response body. - content: - application/problem+json: - schema: - $ref: "#/components/schemas/ProblemDetail" + $ref: "#/components/responses/Forbidden" "404": description: | The owner was not found. @@ -2035,7 +2173,6 @@ paths: More details are provided in the response body. "500": $ref: "#/components/responses/InternalServerError" - /authorizations/search: post: tags: @@ -2073,6 +2210,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "500": $ref: "#/components/responses/InternalServerError" @@ -2083,7 +2224,7 @@ paths: operationId: createRole summary: Create role description: | - Create a new role + Create a new role. requestBody: content: application/json: @@ -2108,16 +2249,9 @@ paths: "401": $ref: "#/components/responses/Unauthorized" "403": - description: | - The request to create a role was denied. - More details are provided in the response body. - content: - application/problem+json: - schema: - $ref: "#/components/schemas/ProblemDetail" + $ref: "#/components/responses/Forbidden" "500": $ref: "#/components/responses/InternalServerError" - /roles/{roleKey}: get: tags: @@ -2125,7 +2259,7 @@ paths: operationId: getRole summary: Get role description: | - Get a role by its key + Get a role by its key. parameters: - name: roleKey in: path @@ -2143,6 +2277,8 @@ paths: $ref: "#/components/schemas/RoleItem" "401": $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: The role with the given key was not found. content: @@ -2247,12 +2383,60 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "500": description: An internal error occurred while processing the request. content: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + + /mapping-rules: + post: + tags: + - Mapping Rule + operationId: createMappingRule + summary: Create mapping rule + description: | + Create a new mapping rule + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/MappingRuleCreateRequest" + responses: + "201": + description: The mapping rule was created successfully. + content: + application/json: + schema: + $ref: "#/components/schemas/MappingRuleCreateResponse" + "400": + description: The mapping rule could not be created. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "403": + description: | + The request to create a mapping rule was denied. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "404": + description: The request to create a mapping rule was denied. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + /messages/publication: post: tags: @@ -2315,11 +2499,7 @@ paths: schema: $ref: "#/components/schemas/ProblemDetail" "403": - description: Unauthorized - content: - application/problem+json: - schema: - $ref: "#/components/schemas/ProblemDetail" + $ref: "#/components/responses/Forbidden" "404": description: Not found content: @@ -2531,6 +2711,7 @@ paths: - User operationId: createUser summary: Create user + description: Create a new user. requestBody: content: application/json: @@ -2556,9 +2737,10 @@ paths: "401": $ref: "#/components/responses/Unauthorized" "403": + $ref: "#/components/responses/Forbidden" + "409": description: | - The request to create a user was denied. - More details are provided in the response body. + A user with the given username already exists. content: application/problem+json: schema: @@ -2603,6 +2785,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "500": $ref: "#/components/responses/InternalServerError" @@ -2651,6 +2837,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "500": $ref: "#/components/responses/InternalServerError" @@ -2722,6 +2912,10 @@ paths: description: > The incident search query failed. More details are provided in the response body. + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "500": $ref: "#/components/responses/InternalServerError" @@ -2765,6 +2959,10 @@ paths: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": description: > The incident with the given key was not found. @@ -2970,7 +3168,7 @@ components: TenantUpdateResponse: type: object properties: - key: + tenantKey: type: integer description: The unique system-generated internal tenant ID format: int64 @@ -2981,6 +3179,61 @@ components: type: string description: The name of the tenant. + TenantItem: + description: Tenant search response item. + type: object + properties: + tenantKey: + type: integer + description: The unique system-generated internal tenant ID. + format: int64 + name: + type: string + description: The tenant name. + tenantId: + type: string + description: The unique external tenant ID. + assignedMemberKeys: + type: array + description: The set of keys of members assigned to the tenant. + items: + type: integer + format: int64 + + TenantSearchQueryRequest: + description: Tenant search request + type: object + allOf: + - $ref: "#/components/schemas/SearchQueryRequest" + properties: + filter: + description: The tenant search filters. + allOf: + - $ref: "#/components/schemas/TenantFilterRequest" + + TenantFilterRequest: + description: Tenant filter request + type: object + properties: + tenantId: + type: string + description: The ID of the tenant. + name: + type: string + description: The name of the tenant. + + TenantSearchQueryResponse: + description: Tenant search response. + allOf: + - $ref: "#/components/schemas/SearchQueryResponse" + type: object + properties: + items: + description: The matching tenants. + type: array + items: + $ref: "#/components/schemas/TenantItem" + UserTaskSearchQueryRequest: allOf: - $ref: "#/components/schemas/SearchQueryRequest" @@ -2988,7 +3241,9 @@ components: type: object properties: filter: - $ref: "#/components/schemas/UserTaskFilterRequest" + description: The user task search filters. + allOf: + - $ref: "#/components/schemas/UserTaskFilterRequest" UserTaskVariableSearchQueryRequest: allOf: - $ref: "#/components/schemas/SearchQueryRequest" @@ -3001,6 +3256,7 @@ components: type: object properties: items: + description: The matching user tasks. type: array items: $ref: "#/components/schemas/UserTaskItem" @@ -3053,8 +3309,13 @@ components: processDefinitionId: type: string description: The ID of the process definition. + elementInstanceKey: + type: integer + description: The key of the element instance. + format: int64 variables: type: array + description: Variables associated with the user task. items: $ref: "#/components/schemas/UserTaskVariableFilterRequest" UserTaskVariableFilterRequest: @@ -3070,8 +3331,8 @@ components: type: object properties: userTaskKey: + description: The key of the user task. type: integer - description: The key for this user task. format: int64 state: type: string @@ -3082,8 +3343,8 @@ components: - CANCELED - FAILED assignee: - type: string description: The assignee of the user task. + type: string elementId: type: string description: The element ID of the user task. @@ -3160,7 +3421,9 @@ components: type: object properties: filter: - $ref: "#/components/schemas/VariableFilterRequest" + description: The variable search filters. + allOf: + - $ref: "#/components/schemas/VariableFilterRequest" VariableFilterRequest: description: Variable filter request. type: object @@ -3198,6 +3461,7 @@ components: type: object properties: items: + description: The matching variables. type: array items: $ref: "#/components/schemas/VariableItem" @@ -3238,9 +3502,11 @@ components: type: object properties: filter: + description: The process definition search filters. allOf: - $ref: "#/components/schemas/ProcessDefinitionFilterRequest" ProcessDefinitionFilterRequest: + description: Process definition search filter. type: object properties: processDefinitionKey: @@ -3272,6 +3538,7 @@ components: type: object properties: items: + description: The matching process definitions. type: array items: $ref: "#/components/schemas/ProcessDefinitionItem" @@ -3308,6 +3575,7 @@ components: type: object properties: filter: + description: The process instance search filters. allOf: - $ref: "#/components/schemas/ProcessInstanceFilterRequest" AdvancedIntegerFilter: @@ -3593,6 +3861,7 @@ components: type: object properties: items: + description: The matching process instances. type: array items: $ref: "#/components/schemas/ProcessInstanceItem" @@ -3673,9 +3942,11 @@ components: type: object properties: filter: + description: The flow node instance search filters. allOf: - $ref: "#/components/schemas/FlowNodeInstanceFilterRequest" FlowNodeInstanceFilterRequest: + description: Flow node instance filter. type: object properties: flowNodeInstanceKey: @@ -3754,6 +4025,7 @@ components: type: object properties: items: + description: The matching flow node instances. type: array items: $ref: "#/components/schemas/FlowNodeInstanceItem" @@ -3841,9 +4113,11 @@ components: type: object properties: filter: + description: The decision definition search filters. allOf: - $ref: "#/components/schemas/DecisionDefinitionFilterRequest" DecisionDefinitionFilterRequest: + description: Decision definition search filter. type: object properties: decisionDefinitionKey: @@ -3876,9 +4150,11 @@ components: type: object properties: filter: + description: The incident search filters. allOf: - $ref: "#/components/schemas/IncidentFilterRequest" IncidentFilterRequest: + description: Incident search filter. type: object properties: incidentKey: @@ -3950,6 +4226,7 @@ components: type: object properties: items: + description: The matching incidents. type: array items: $ref: "#/components/schemas/IncidentItem" @@ -3979,6 +4256,7 @@ components: - UNKNOWN - IO_MAPPING_ERROR - JOB_NO_RETRIES + - EXECUTION_LISTENER_NO_RETRIES - CONDITION_ERROR - EXTRACT_VALUE_ERROR - CALLED_ELEMENT_ERROR @@ -4019,55 +4297,13 @@ components: 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: + description: The matching decision definitions. type: array items: $ref: "#/components/schemas/DecisionDefinitionItem" @@ -4107,6 +4343,7 @@ components: - READ - READ_PROCESS_INSTANCE - READ_USER_TASK + - READ_DECISION_INSTANCE - UPDATE - UPDATE_PROCESS_INSTANCE - UPDATE_USER_TASK @@ -4114,6 +4351,7 @@ components: - DELETE_PROCESS - DELETE_DRD - DELETE_FORM + - DELETE_PROCESS_INSTANCE ResourceTypeEnum: description: The type of resource to add/remove permissions to/from. enum: @@ -4178,9 +4416,11 @@ components: type: object properties: filter: + description: The authorization search filters. allOf: - $ref: "#/components/schemas/AuthorizationFilterRequest" AuthorizationFilterRequest: + description: Authorization search filter. type: object properties: ownerType: @@ -4220,6 +4460,7 @@ components: - $ref: "#/components/schemas/SearchQueryResponse" properties: items: + description: The matching authorizations. type: array items: $ref: "#/components/schemas/AuthorizationResponse" @@ -4227,12 +4468,16 @@ components: type: "object" properties: password: + description: The password of the user. type: "string" username: + description: The username of the user. type: "string" name: + description: The name of the user. type: "string" email: + description: The email of the user. type: "string" UserCreateResponse: type: "object" @@ -4247,31 +4492,41 @@ components: type: object properties: filter: + description: The user search filters. allOf: - $ref: "#/components/schemas/UserFilterRequest" UserFilterRequest: + description: User search filter. type: object properties: username: + description: The username of the user. type: "string" name: + description: The name of the user. type: "string" email: + description: The email of the user. type: "string" UserResponse: type: "object" properties: id: + description: The ID of the user. type: "integer" format: "int64" key: + description: The key of the user. type: "integer" format: "int64" username: + description: The username of the user. type: "string" name: + description: The name of the user. type: "string" email: + description: The email of the user. type: "string" UserSearchResponse: type: object @@ -4279,30 +4534,53 @@ components: - $ref: "#/components/schemas/SearchQueryResponse" properties: items: + description: The matching users. type: array items: $ref: "#/components/schemas/UserResponse" + UserUpdateRequest: + type: object + properties: + changeset: + $ref: "#/components/schemas/UserChangeset" + UserChangeset: + description: | + JSON object with changed user attribute values. + type: object + properties: + name: + type: string + description: The new name of the user. + email: + type: string + description: The new email of the user. + password: + type: string + description: The new password of the user. RoleCreateRequest: type: "object" properties: name: type: "string" - description: The display name of the new role + description: The display name of the new role. RoleCreateResponse: type: "object" properties: roleKey: - description: The key of the created role + description: The key of the created role. type: "integer" format: "int64" RoleUpdateRequest: type: object properties: changeset: - $ref: "#/components/schemas/RoleChangeset" + description: The set of changed role attributes. + allOf: + - $ref: "#/components/schemas/RoleChangeset" required: - changeset RoleChangeset: + description: A set of changed role attributes. type: object properties: name: @@ -4337,9 +4615,36 @@ components: type: object properties: items: + description: The matching roles. type: array items: $ref: "#/components/schemas/RoleItem" + MappingRuleCreateRequest: + type: object + properties: + claimName: + type: string + description: The name of the claim to map. + claimValue: + type: string + description: The value of the claim to map. + required: + - claimName + - claimValue + MappingRuleCreateResponse: + type: object + properties: + mappingKey: + description: The key of the created mapping rule. + type: integer + format: int64 + claimName: + type: string + description: The name of the claim to map. + claimValue: + type: string + description: The value of the claim to map. + TopologyResponse: description: The response of a topology request. type: object @@ -4595,6 +4900,7 @@ components: type: object properties: jobs: + description: The activated jobs. type: array items: $ref: "#/components/schemas/ActivatedJob" @@ -4791,11 +5097,13 @@ components: type: object properties: sort: + description: Sort field criteria. type: array items: allOf: - $ref: "#/components/schemas/SearchQuerySortRequest" page: + description: Pagination criteria. allOf: - $ref: "#/components/schemas/SearchQueryPageRequest" type: object @@ -4803,16 +5111,20 @@ components: type: object properties: from: + description: The index of items to start searching from. type: integer format: int32 limit: + description: The maximum number of items to return in one request. type: integer format: int32 searchAfter: + description: Items to search after. Correlates to the `lastSortValues` property of a previous search response. type: array items: type: object searchBefore: + description: Items to search before. Correlates to the `firstSortValues` property of a previous search response. type: array items: type: object @@ -4820,8 +5132,10 @@ components: type: object properties: field: + description: The field to sort by. type: string order: + description: The order in which to sort the field. type: string default: asc required: @@ -4830,49 +5144,38 @@ components: type: object properties: page: + description: Pagination information about the search results. allOf: - $ref: "#/components/schemas/SearchQueryPageResponse" - type: object SearchQueryPageResponse: + description: Pagination information about the search results. type: object properties: totalItems: + description: Total items matching the criteria. type: integer format: int64 firstSortValues: + description: The sort values of the first item in the result set. Use this in the `searchBefore` field of an ensuing request. type: array items: type: object lastSortValues: + description: The sort values of the last item in the result set. Use this in the `searchAfter` field of an ensuing request. 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: + description: The decision definition search filters. allOf: - $ref: "#/components/schemas/DecisionRequirementsFilterRequest" DecisionRequirementsFilterRequest: + description: Decision requirements search filter. type: object properties: decisionRequirementsKey: @@ -4898,6 +5201,7 @@ components: type: object properties: items: + description: The matching decision requirements. type: array items: $ref: "#/components/schemas/DecisionRequirementsItem" @@ -5003,12 +5307,13 @@ components: type: integer format: int64 evaluatedDecisions: + description: Decisions that were evaluated within the requested decision evaluation. type: array items: $ref: "#/components/schemas/EvaluatedDecisionItem" EvaluatedDecisionItem: type: object - description: List of decisions that were evaluated within the requested decision evaluation. + description: A decision that was evaluated. properties: decisionDefinitionKey: description: The unique key identifying the decision which was evaluate. @@ -5035,16 +5340,18 @@ components: description: The tenant ID of the evaluated decision. type: string matchedRules: + description: The decision rules that matched within this decision evaluation. type: array items: $ref: "#/components/schemas/MatchedDecisionRuleItem" evaluatedInputs: + description: The decision inputs that were evaluated within this decision evaluation. type: array items: $ref: "#/components/schemas/EvaluatedDecisionInputItem" MatchedDecisionRuleItem: type: object - description: The decision rules that matched within this decision evaluation. + description: A decision rule that matched within this decision evaluation. properties: ruleId: description: The ID of the matched rule. @@ -5054,12 +5361,13 @@ components: type: integer format: int32 evaluatedOutputs: + description: The evaluated decision outputs. type: array items: $ref: "#/components/schemas/EvaluatedDecisionOutputItem" EvaluatedDecisionInputItem: type: object - description: The decision inputs that were evaluated within this decision evaluation. + description: A decision input that was evaluated within this decision evaluation. properties: inputId: description: The ID of the evaluated decision input. @@ -5089,9 +5397,11 @@ components: type: object properties: filter: + description: The decision instance search filters. allOf: - $ref: "#/components/schemas/DecisionInstanceFilterRequest" DecisionInstanceFilterRequest: + description: Decision instance search filter. type: object properties: decisionInstanceKey: @@ -5144,6 +5454,7 @@ components: type: object properties: items: + description: The matching decision instances. type: array items: $ref: "#/components/schemas/DecisionInstanceItem" @@ -5330,6 +5641,7 @@ components: metadata: $ref: "#/components/schemas/DocumentMetadata" DocumentMetadata: + description: Information about the document. type: object properties: contentType: @@ -5378,10 +5690,12 @@ components: format: int64 description: The unique key identifying the deployment. deployments: + description: Items deployed by the request. type: array items: $ref: "#/components/schemas/DeploymentMetadata" tenantId: + description: The tenant ID associated with the deployment. type: string DeploymentMetadata: type: object @@ -5395,6 +5709,7 @@ components: form: $ref: "#/components/schemas/DeploymentForm" DeploymentProcess: + description: A deployed process. type: object properties: processDefinitionId: @@ -5417,6 +5732,7 @@ components: type: string description: The tenant ID of the deployed process. DeploymentDecision: + description: A deployed decision. type: object properties: decisionDefinitionId: @@ -5449,6 +5765,7 @@ components: description: | The assigned key of the decision requirements graph that this decision is part of. DeploymentDecisionRequirements: + description: Deployed decision requirements. type: object properties: decisionRequirementsId: @@ -5474,6 +5791,7 @@ components: type: string description: The resource name from which this decision requirements was parsed. DeploymentForm: + description: A deployed form. type: object properties: formId: @@ -5625,6 +5943,7 @@ components: type: integer format: int64 mappingInstructions: + description: Element mappings from the source process instance to the target process instance. type: array items: $ref: "#/components/schemas/MigrateProcessInstanceMappingInstruction" @@ -5656,10 +5975,12 @@ components: type: object properties: activateInstructions: + description: Instructions describing which elements should be activated in which scopes and which variables should be created. type: array items: $ref: "#/components/schemas/ModifyProcessInstanceActivateInstruction" terminateInstructions: + description: Instructions describing which elements should be terminated. type: array items: $ref: "#/components/schemas/ModifyProcessInstanceTerminateInstruction" @@ -5673,7 +5994,7 @@ components: ModifyProcessInstanceActivateInstruction: type: object description: | - Instructions describing which elements should be activated in which scopes and which variables should be created. + Instructions describing an element that should be activated. properties: elementId: description: The ID of the element that should be activated. @@ -5687,6 +6008,7 @@ components: format: int64 default: -1 variableInstructions: + description: Instructions describing which variables should be created. type: array items: $ref: "#/components/schemas/ModifyProcessInstanceVariableInstruction" @@ -5828,6 +6150,12 @@ components: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" + Forbidden: + description: Forbidden. The request is not allowed. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" securitySchemes: bearerAuth: diff --git a/api/operate/operate-openapi.yaml b/api/operate/operate-openapi.yaml index 2ef6348a54..823e724801 100644 --- a/api/operate/operate-openapi.yaml +++ b/api/operate/operate-openapi.yaml @@ -84,7 +84,6 @@ paths: searchAfter: - small - 9007199254741200 - required: true responses: "200": description: Success @@ -168,7 +167,6 @@ paths: sort: - field: bpmnProcessId order: ASC - required: true responses: "200": description: Success @@ -261,7 +259,6 @@ paths: sort: - field: bpmnProcessId order: ASC - required: true responses: "200": description: Success @@ -362,7 +359,6 @@ paths: searchAfter: - 1646904085499 - 9007199254743288 - required: true responses: "200": description: Success @@ -459,7 +455,6 @@ paths: searchAfter: - 1646904085499 - 9007199254743288 - required: true responses: "200": description: Success @@ -553,7 +548,6 @@ paths: sort: - field: decisionRequirementsId order: ASC - required: true responses: "200": description: Success @@ -645,7 +639,6 @@ paths: sort: - field: decisionId order: ASC - required: true responses: "200": description: Success @@ -737,7 +730,6 @@ paths: sort: - field: decisionId order: ASC - required: true responses: "200": description: Success @@ -1483,6 +1475,8 @@ components: processVersion: type: integer format: int32 + processVersionTag: + type: string bpmnProcessId: type: string parentKey: @@ -1501,6 +1495,8 @@ components: - ACTIVE - COMPLETED - CANCELED + incident: + type: boolean processDefinitionKey: type: integer format: int64 @@ -1549,6 +1545,8 @@ components: version: type: integer format: int32 + versionTag: + type: string bpmnProcessId: type: string tenantId: @@ -1602,6 +1600,7 @@ components: - UNKNOWN - IO_MAPPING_ERROR - JOB_NO_RETRIES + - EXECUTION_LISTENER_NO_RETRIES - CONDITION_ERROR - EXTRACT_VALUE_ERROR - CALLED_ELEMENT_ERROR diff --git a/docs/apis-tools/camunda-api-rest/specifications/activate-jobs.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/activate-jobs.api.mdx index 85415e7aa9..888d6b44c4 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,7 +5,7 @@ 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 @@ -37,7 +37,11 @@ Iterate through all known partitions and activate jobs up to the requested maxim The list of activated jobs. -
Schema
    jobs object[]
  • Array [
  • customHeaders object
    +
    Schema
      jobs object[]
      + +The activated jobs. + +
    • Array [
    • customHeaders object
      a set of custom headers defined during modelling; returned as a serialized JSON document 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 db1832a72f..831d4748c8 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 @@ -1,11 +1,11 @@ --- id: cancel-process-instance title: "Cancel process instance" -description: "Cancels a running process instance." +description: "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." sidebar_label: "Cancel process instance" hide_title: true hide_table_of_contents: true -api: eJztWE1v3DYQ/SvEnBJUluTUSVMdCmwdp3XzUWO9aQ+2D1xptGJCkQpJeb0Q9N+LIbWfWiMJ0KMNLLwShzOcee9xOezA8YWF7AaujM7RWiaUdVzlCHcR6AYNd0KrywIyyOm1HOwu12YRFGhzIxqygwzOvZVlnJlWKaEWrDnwHEMEDTe8RoeGYnegeI2QQbPv+x2uIAJBXhvuKojA4NdWGCwgc6bFw9CzCtkXXDFdMlfhKC5zmoUcaAU2r7DmkHXgVg0FF8rhAg1EUGpTcxdevTqDvr8LkdG633WxojnbhZRcWowg18qhcjTGm0aK3Nct+WxpZd04mp5/xtxBBKqVks8lrlNqDFXdCbRkvUFgiiUapIJn3UHaE2bWgz79vNIWFZuvfBVai4a5iju2FFKyObKGG0c14lIyg7k2hWUGbSsdoVUaXTNXCcs2seNb9aG1jub+xlImSirtvSiwiG8VRN8sYAS1UKJua8hO+z4CJxzlO1DlgFDTUGjoezI1aButbCjGi/RsnP3sGNLCDkhjEUMfwVmaPjrTJ8IK7jhNU9qxey5FQRx5BNTG6LnE+qcxuIfAXAVLVqDjQrIAOuOWBcM5FkwodjN9e85+PXv5y92zyrnGZkmyXC5jU+YnWAinTazNIjFlTh+yex6zWYUGWc1XhAovCkExuWRb+jDbYC5KkRPvBz34xRBce8BtuLjPvTC6Yax1RqjFLrqtESP5T9in6SUTBSonyhURahTazyl5K8kHn+vWZXPJ1RfYUmMc9DCKbeuam12t7wToI7COu9Z+U94/vxj5Jlr8OZtdseCC5bpAVmoTRDEEindJfZamEdT8ITy9StOefBLi35GJYvjQSK48tQ7TEYrV2uDAH5/YZn/+f5DRRizEYdwYdmU6kPhNyCjo8uxHpEiaKnWrnjT1pKknTT2qqZfHfqQmilGVDfEQjdGG6TxvjcGCLSshN4Jbxx7OKYGLT1p70tqT1sZa6yOo0VWauppGW08dajAySAY5nayXaZNu3JX0SThdSp80NRNo7te9TGskZNAFUfVZknSVtq7PukYb1yf3hNg9N4IO/R5gGg7iW5NK6pzLKixsDC4NUMO0Tvqc160qOHvNphfXM/YHd7jkK19sCrnv+nX6Oj3qlUwf8Ti5umQhw0DNne1i7ZZ0f9RtMP4ex77Nspi3RrjVNU0L5ZkjN2gmLeGzocwQz3un52AE0fDl7ZpIf/0781ygrW66beEuHnjdBKEe67BSz9NS+4CbZuVw6YQjGhtyTePTMWOvLr3wcl3XrfK7r1qwpXAV4zulyGVrHZUgAilyVNava2iJ12bvwwj7J0RkpzHBGLi23nQXwlXtPM51neRh2ub/XOp5UnOhkiGETc4nHz59fDM5eX95fvHx+uLkNE5j9+B8uUgUNVd76yDCj453hzl329+c77wJGAB1+OCSRnKhiGI+r24Q5Q2MRAkRZEcvC/Z0eRcN2rqBrptzi5+M7Ht6/bVFs4Ls5m4rRa/dQlj6vm3rH03u2XS4AXjOfuja4Wi6w0uuVn5vkC09QQRfcHX8VqS/6yOokBdo/LqD4XlY3cmM3G0dje4j+mg9Y5Ln2LhHbPeOCSTOzZ559ff1jLQ2XIbUuqC5hi/pioYvIYNbuKUEtK+cl7F/34HkatHyBdkHv/T3H+x/aGw= +api: eJztWN1v2zYQ/1eIe2oxRXK6tOv0MMBL0y1b2wWOuz0keaClk8WWIlWSimMI+t+HIyV/yUFbYC8DEsCIJR7v8/c789iC40sL6Q1cGZ2htUwo67jKEO4i0DUa7oRWlzmkkNFr2ctdDmIR5GgzI2qSgxTOvZRlnJlGKaGWrD7QHLMpLQd1Xj0TKpNNjpZV2iBzJVfsU2MdcyUyg5W+55Lpwj8eamMGrW5MhpFf3tU6rLCKdC2Q1do6zGOIoOaGV+jQUOwtKF4hpFDvx/YnriECQVHV3JUQgcEvjTCYQ+pMg4ehz0tkn3H9qKdO9+6RBzYrseKQtuDWNRkXyuESDURQaFNxF169OoOuuwuW0bpfdb6mPVtHCi4tRpBp5VA5WuN1LUXmU5B8suRZO7amF58wcxCBaqTkC4lDSLWhqjuBlqQ3CJhhgQap4Gl7EPaUmWHRh5+V2qJii7XPQmPRUEUdWwkpfRW4cZQjLiUzmGmTWypVIx2hpTC6Yq4Ulm1sx7fqfV/BX9iEiYJSey9yzONbBdFXExhBJZSomgrS066LwAlH8fZQPQD0LCQauo5EDdpaKxuS8WJyNo5+fqzSwvaVJrR1EZxNJo/u9IGwnDtO25R27J5L4VH6SFFroxcSqx/GxT0szFWQZDk6LiQLRWfcsiC4wJwJxW5mb8/Zz2cvf7p7VjpX2zRJVqtVbIrsBHPhtIm1WSamyOhDcs9jNi/RIKv4mqrC81yQTS7ZFj7M1piJQmSE+54P3hkq117hNljcx15Y3SDWOiPUcre6jRGj9jNlH2eXTOSonCjWBKiRab+n4I0kHXyhG5cuJFefYQuNsdFDK7apKm52ub5joIvAOu4a+1V6//hipJtg8ft8fsWCCpbpHFmhTSBFbyjeBfXZZBJBxR/C06vJpCOdVPFviEQxfKglV6FlHoQjVOjIQZsPbPP78N9URhuxFId2Y9ilaQ/iNyGiwMuz76EicarQjXri1BOnnjj1KKdeHvuRmtLhzKEhHKIx2jCdZY0xmLNVKeSGcIPt/pwSsPjEtSeuPXFtzLUuggpdqWmqopnEDySuhBSSnk4ng5s2acdTSZeE02WYc2iYQHM/zDKNkZBCG0jVpUnSltq6Lm1rbVyX3FPF7rkRdOj3BablQL4BVFJnXJbBsXFxaYEGpiHoc141KufsNZtdXM/Zb9zhiq99ssnkvurXk9eTo1pJ9BGN06tLFiIM0NxpF4Na4v1RtUH4WxT7Mcti1hjh1te0LaRngdygmTZUnw1kenteOz0HIYj6L28HIP3xz9xjgVrdbDvCXTzwqg5EPTZhTTxOC+0NboaVQ9epjmhsiHUSn44Re3XpiZfpqmqU775qyVbClYzvpCKTjXWUggikyFBZ71c/Eg9i78IK+ztYZKcxlTFgbWi6S+HKZhFnukqysG3zfyH1Iqm4UElvwibn0/cfP7yZnry7PL/4cH1xchpPYvfgfLqIFBVXe34Q4EfHu8OY2+1vzv/kJqIHlMMHl9SSC0UQ93lt+6ZwA6OmABGkRy8r9vrCXdRz+wbadsEtfjSy6+j1lwbNGtKbu20r8L0jF5a+b68VHk3us1l/A/Gcfde1x9Fw+5dcrX1vkg09QQSfcX38Vqa76yIokedovN9B8Dx4dzIndVtFo/uQLhp2TLMMa/eI7N4xhZrDpmdf/XU9J673lzGVzmmv4Su6IuIrSOEWbikA7TPn24h/34LkatnwJckHvfT3L0h9xuY= sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -32,7 +32,7 @@ import TabItem from "@theme/TabItem"; path={"/process-instances/{processInstanceKey}/cancellation"} > -Cancels a running 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 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 ce7ab9fac4..7833cf500b 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,7 +5,7 @@ description: "Publishes a message and correlates it to a subscription." sidebar_label: "Correlate message" hide_title: true hide_table_of_contents: true -api: eJztWE1v20YQ/SuLObUoLSqJm6a8KY7TKk0cwZbbg+3DkhyJmyx3mf2wrAr878VwSYmSLMcFeikgAwZF7uzMzpv3RuKswPG5heQGPqG1fI5wF4Gu0HAntBrnkECmjUHJHXYWEeRoMyMqMoEEJj6VwhZoGWdlsGFc5Wy90TLhmNOMM+vT9c7BrRrP1kZCKyYssz7L0NqZl7RnIaRkBp03irkC2UwY61hlNNkwoazjKkP2FZfNchd8HThnC+GKwa2CCAx+82jdW50vIVk1t8JgDokzHiPItHKoHC3xqpIia44Uf7GU4gpsVmDJ6ZNbVggJ6PQLZg4iqAzB5QRaWlW8RLpuIzTtHY4sGLcsx5lQmDMRUns7+XTRZdact41jnRFqDnUEPaT+wOXjQfpoEip61gdmzytVcsa9dJAAhbjnRvBUhlQOp7A2ozw+XH2+YLnOfEnwRcDzXNAeLic9ZALIu9gpLyU5Cut1BA4VV45otxuf0girbKYNWxQiK7aKLiyrWiLmjyS6E4piCUe3HfHPNtBdBqpAXZOdQVtpZQMoL4fDp7ERtk8/p5lWyLRhpTa4x1wL/4J4h2P2Kt2L3a5GVKQFSknX74hIuFv1qHieJn0b6SArnzzfxrtQDudoIIKZNiV34dHrU3iSGNMNMcbvnhNmo6gWg3ELwXPOfwC8J7rPc/L7DhsD/1o6nh5iYGX0vcgxZzl3nHiotGP3XIr8MMsqo1OJ5U/fY9uITYIly9FxIVlgQuhjZJiGTnZz+f6M/Xr68y93PxTOVTaJ48ViMTCz7ARz4bQZaDOPzSyjf7L7ccCmBRpkJV+yFNmme7ANx5itMBMzkZGeXEi1OQwB+xyChtXVXlNY18Ebsfe1NmLXl2MmclROzJZCzfdDbzVQnmrvklRy9RU2Bd0PuhvF+rLkZs2w7QB1BNZx53tpHODRq5d7vokVv0+nExZcsEzn2HRPV1C3DIEoiVIoUfoSktPhMIKSP4S718NhTT6p4s/IRDF8qCRX4etnJx2hQgsM3prEOvX8R5XRRszFbtzBlrhaEr8LGXV6erXP92vFvSu0EX/jUT1H9RzVc1g9p/t8v9D0I82ro3SO0jlK55B0fn7sh9xIMULZEA/RGG2YzjJvDP2YLIRcv0J0sdu32sDFo9aOWjtqbV9rdQQlukLTNKvStqEOdwUkELcvbTbuTU4gAovmHg3NxVbgjYQEVkE1dRLHq0JbVyerShtXx/dUkq3BCS0HdXWskTrjsgiR96tHC81UqM3qjJde5Zy9YZfnV1P2G3e44MsGTQq57frN8M3wUa9kesDjaDJmIcPAvV4/6NySsB91G4yf47iu7wjIzBvhlle0LcCTIjdoRp4KsOZEG6/xTvfBCKL2w/uOKR/+mjbFpl52uZnonT/wsgpKDBO4Dcl2x2ablX7RtkYMvRGBUDPdHLMl137C5AiNDQgNBy/2iTwZN3rMdFl61TRlNW9GA4z3AMykt46Ai0CKDOmFf5NNZ/YxrLA/Q0T2YkDFDwztevFcuMKng0yXcRa2ra+p1GlccqHiNoSNz0afri/ejU4+js/OL67OT14MhgP34BqQSSslV/1zdLON3lhlK9vV5kvofzIXbgno8MHFleRCUdkbRFdtl7jpBlx2m040Kg9av4HVKuUWr42sa3r8zaNZQnJzt2EZ3dURFMhzNE1j+drQ8SzgdTKlc5C59HSevVlgHXU7RlmGlXvS9q7X8Safr6YkpHbwXeqc9hi+oKE4X0ACt3ALQGN/8tBotHm+AsnV3FOVEwh+6e8f0mxqQQ== +api: eJztWVFv2zYQ/ivEPW2YYrlt2nV6c9N0c9ekRuJuD0keKOlssaVIlaTiGIb++3CiZMlWnGbAXgY4QGDLPN7xvvu+k3zegONLC9ENXKC1fIlwF4Au0HAntJqmEEGijUHJHbYWAaRoEyMKMoEIZmUshc3QMs5yb8O4Stl2o2XCMacZZ7aMtztHt2q62BoJrZiwzJZJgtYuSkl7VkJKZtCVRjGXIVsIYx0rjCYbJpR1XCXIvuG6Xm6DbwOnbCVcNrpVEIDB7yVa906na4g29aUwmELkTIkBJFo5VI6WeFFIkdRHCr9aSnEDNskw5/TOrQuECHT8FRMHARSG4HICLa0qniO97iI07x2OLBi3LMWFUJgy4VN7N7u4bDOrz9vEsc4ItYQqgB5Sf+L68SB9NAkVvegDM/BKlVzwUjqIgELccyN4LH0qh1PYmlEeH68/X7JUJ2VO8AXA01TQHi5nPWQ8yPvYqVJKcuTXqwAcKq4c0W4/PqXhV9lCG7bKRJLtFF1YVjRETB9JdC8UxRKOLlvin3XQXXmqQFWRnUFbaGU9KC/H46exEbZPP6eZVsi0Ybk2OGCuhX9BvMMxe5XuxW5WAyrSCqWk1x+ISLhb9ah4niZ9E+kgK588X+ddKIdLNBDAQpucO//Rm1N4khjzjhjT988J0ymqwWDaQPCc8x8A74nu85z8fsBGz7+GjqeHGFgYfS9STFnKHSceKu3YPZciPcyywuhYYv7Lj9g2YTNvyVJ0XEjmmeD7GBnGvpPdXH04Y7+dvv717qfMucJGYbharUZmkZxgKpw2I22WoVkk9E92P4/YPEODLOdrFiPrugfrOMZsgYlYiIT05Hyq9WEI2OcQ1K9uBk1hW4fSiMFtbcK+XE2ZSFE5sVgLtRyG3mmgPNali2LJ1TfoCjoMuh/FlnnOzZZhuwGqAKzjruylcYBHr14OfBMr/pjPZ8y7YIlOse6eLqNu6QNRErlQIi9ziE7H4wBy/uCv3ozHFfmkij8jE8XwoZBc+dvPXjpC+RbovdWJter5jyqjjViK/bijHXE1JH7vM2r19GrI9w/axCJNUdX0ZM2zQysqLqVeYTo66uqoq6OuDurqdMj3S02Pb6U63pKO0jlK55B0Xj/2iDdRjFA2xEM0Rhumk6Q0hh4zMyG3Xy7a2M09y3PxqLWj1o5aG2qtCiBHl2macxXa1tThLoMIwubrnA17MxUIwKK5R0MTsw2URkIEG6+aKgrDTaatq6JNoY2rwnsqyc5IhZa9ulrWSJ1wmfnIw+rRQj0varI643mpUs7esqvz6zn7nTtc8XWNJoXcdf12/Hb8qFcyPeBxMpsyn6HnXq8ftG5J2I+69cbPcVxVdwRkUhrh1te0zcMTIzdoJiUVYMuJJl7tna69EQTNmw8tUz7+Pa+LTb3sqpv1nT/wvPBK9LO5jmT7A7VupV+0neFDb3gg1ELXx2zINUyYHKGxHqHx6MWQyLNprcdE53mp6qaslvXQgPEegIksrSPgApAiQRoFdNm0Zp/8CvvLR2QvRlR8z9C2Fy+Fy8p4lOg8TPy27WssdRzmXKiwCWHDs8nFl8v3k5NP07Pzy+vzkxej8cg9uBpk0krOVf8c7dSjN3DZyXbT3YT+JxPjhoAOH1xYSC4Ulb1GdNN0iZt29GV36URDdK/1G9hsYm7xi5FVRR9/L9GsIbq561hGV1UAGfIUTd1YvtV0PPN4nczpHGQuSzrPYEpYBe2OSZJg4Z60vet1vNnn6zkJqRmJ5zqlPYavaFzOVxDBLdwC0A8C5KHWaP35BiRXy5KqHIH3S3//ADwPcwc= sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,7 +48,7 @@ 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 +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}}>
      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 cbd4b7f1cd..5b9de891e8 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 @@ -5,7 +5,7 @@ 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 custom_edit_url: null @@ -38,7 +38,27 @@ This is an atomic call, i.e. either all resources are deployed or none of them a The resources are deployed. -
      Schema
        deployments object[]
      • Array [
      • processDefinition object
        decisionDefinition object
        decisionRequirements object
        form object
      • ]
      +
      Schema
        deployments object[]
        + +Items deployed by the request. + +
      • Array [
      • processDefinition object
        + +A deployed process. + +
        decisionDefinition object
        + +A deployed decision. + +
        decisionRequirements object
        + +Deployed decision requirements. + +
        form object
        + +A deployed form. + +
      • ]
      The document upload failed. More details are provided in the response body. 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 9e00ccdf49..5906d194dc 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 @@ -47,7 +47,7 @@ in future releases. The document link was created successfully. -
      Schema
      +
      Schema
      The document link creation failed. More details are provided in the response body. diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-document.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-document.api.mdx index 0c617fb846..2470adde4e 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 @@ -5,7 +5,7 @@ description: "Upload a document to the Camunda 8 cluster." sidebar_label: "Upload document (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 @@ -40,7 +40,11 @@ in future releases. ## Request -

      Query Parameters

      Body

      required
        metadata object
        customProperties object
        +

        Query Parameters

        Body

        required
          metadata object
          + +Information about the document. + +
          customProperties object
          Custom properties of the document. @@ -48,11 +52,15 @@ Custom properties of the document. The document was uploaded successfully. -
          Schema
            metadata object
            customProperties object
            +
            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. 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 new file mode 100644 index 0000000000..8ae0509807 --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/create-mapping-rule.api.mdx @@ -0,0 +1,57 @@ +--- +id: create-mapping-rule +title: "Create mapping rule" +description: "Create a new mapping rule" +sidebar_label: "Create mapping rule" +hide_title: true +hide_table_of_contents: true +api: eJztWE1z2zYQ/SuYPbVTWpQTJ015Ux2ndRs7HllJD7YOILgSkYAAA4CWNRr+984ClERHsuOZ5tCDNKMRPxb79d4DqV2B53MH2Q1c8LqWes7GjUKYJmBqtNxLo88LyEBY5B47m2CSQIFOWFmTDWRwGiwYZxoXrOqc2UbhrYYELH5t0PnfTbGEbAXCaI/a0yGvayVFiJR+duRqBU6UWHE68ssaIQOTf0bhIYHaUl5eogtuFJfVJa+wZ+q8lXq+k96kRKZ5hczMmC+RhaXMG0p1AG0SfX3iqnmmszsyfcRbGwuWFgtq7TbNB2GmCXjpFcXpNTb2cRz7BW0bnbnaaBeLfjE8pp/djPpNZwvuWAStYK4RAp2bNUotB5TDj+l+F+9vXO7P5wsuN/3pMumnSJl0AaT2OEcLCcyMrbiPl16fbHD5f2L8BHoRrw6+k+HwGYgJ06iCaeNZvmnYE2jV1uQKq192UXsYZ8SuoiUr0HOpWESTcceiYY4Fk5rdjN+dst9OXv06/an0vnZZmi4Wi4GdiSMspDd2YOw8tTNBX7L7ecAmJVqqYkkp86KQFJMrtuUJczUKOZOCGkdd7NJm1PxB2BqeJlm8uwvWhiiNlTvYjdjH8TmTBWovZ0vq8E7osGbGG0U+eG4an+WK6y+wxfV7DBkx11QVtxuWPwzQJuA8902vjEeI/vLFXvb9OZlcseiCCVMgmxnLfCndOhAVUUktq6aC7GQ4TKDi9/Hs9XDYkk9C/BmVaIb3teI6UOvbcqRmlbHY8ScUJrXzXIsfhYyxci6/jftQYx2J38aK1rp6uV9X3dOGOCfWj6Wd3bFALbEY3OqLbXGOcRsSuJNFlIUP7qKcWW6KZSTtQZQHUR5EuV+UJ/9dlAeFHRR2UNgjCnu173VypBl12RIP0VpjmRGisRYLtiilCu7pT8A6dqfGw9PsoLWD1h7TWptAhb40NAGpjQvU4b6EDNLuyXVETy4HCTi0d2hpkrKCxirIYBXl0mZpuiqN8222qo31bXpHWNxxK3muIgPpdpTVmi7KCK7KGHIXNrrR/6N7yqtGF5y9YeOz6wn7g3tc8GVoI4V86PrN8M1wr1cyfcTj6OqcxQoj6XobwdotKXqv22j8HMdtO6VGisZKv7ymZbE9OXKLdtRQ5zdk6OIF73QejSDpDt6tKfLXP5OAMm1i4+0U6uyeV3WUYG/CsKVYf1SwvhpYOTMhiY4zu+UQtmhdrH84ON7l59V5kJkwVdXosNfqOVtIXzLea49QjfPUlgSUFEjThGwFOqa5Nnsf77BPMSI7HhC0kX/rLXYufdnkA2GqVMRlm99cmTytuNRpF8Klp6OLj5dvR0fvz0/PLq/Pjo4Hw4G/96GFJIGK634e8UWu/xr3bb29Yd93ZoQdsB7vfVorLjU1PNSy6mR3Aw9lN0066dzAapVzhx+talu6/LVBu4TsZrpVGp21CZTIC7RBp19ocgWnMb2jCYUn84j5zmSsTdYrRkJg7Z+0nfZ2jqsP1xPiZTf7rExBayxf0FyULyCDW7gFoJEreQiUD9dXoLieN3xO9tEvff4FdUl8Zg== +sidebar_class_name: "post api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

          Create mapping rule

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

          Body

          + +The mapping rule was created successfully. + +
          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-role.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-role.api.mdx index 7bd120f706..a3d6a91807 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 @@ -1,11 +1,11 @@ --- id: create-role title: "Create role" -description: "Create a new role" +description: "Create a new role." sidebar_label: "Create role" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/Ss7e2qntCg7TprypjpO6zYfHltpD7YPILgSEYMAA4CWNRr+984SpCVHlpuDj9KMRiSx2Lcf75HUrjCIucfsCi+sJrxJ0NbkRFDWnBWYoXQkAnVrCRbkpVM1L2KGJ90SCDC0AGc1XRtM0NG3hnz43RZLzFYorQlkAh+KutZKdq7Tr55drNDLkirBR2FZE2Zo868kAyZYOw4kKPK8akRFG1Y+OGXmWxFNS4JC+VqLJfAOsDMIJT0EiG2bYFBBsw/OKaZwEUPGtuV1R762xkfco/ER/2zDsDtYCA+xQAX4RkryftZovRx1lXih1Bnpb1o+HcYtLYckh0Bc7FXvVJlAc3KY4My6SoR46c3xzlLE5PtaHI/Hz6QvbaMLMDZA/gA/ujYfrSMoKAilPQhHUDt7pwoqQJku0qHCkNvi+VrVzuaaql+2a/Y4pAmcR8seF2ItQXiIhnlEv7p4fwK/Hb/+9eanMoTaZ2m6WCxGbiYPqFDBupF189TNJH/Z7ucRTEtyBJVYcpaiKBRjCg3rLoGvSaqZkhBsl2AfNnAPYn7PtziubrP7oWWNU1tkn8CXizNQBZmgZktl5tvQ3Z6ZaDT7ELltQpZrYW5x3fv/k9QEfFNVwj3Q7DFAm6APIjQbaeyg3KujJ+X653R6DtEFSFsQzKyDUCo/AHESlTKqairMjsfjBCtxH8/ejMct++SO/0AmBui+1sJ01Po+HWWgWvO2S0wZH4SRL9UZ69RcfY87eqTDnsTvYkaDBA93SDDetUALeevhTmhVgGhCyahRPqzJLgih/Wgvsr3I9iLbKbJXz4ss2P4BB2L96C/IqP0Tby/GvRhfVIyvn3rpnBjgKjvmITlnHVgpG+eogEWpdOee378H7F64e63ttbbX2i6ttQlWFErLf/Rr6zvqiFBihik/5Dwm6MndkeMBwQobpzHDVZRJm6XpqrQ+tNmqti606R334E44JXIdmcfLUU4DTbSVQpcRartdvLD5v/1EVI0pBLyFi9PLKfwhAi3EsisfQz52/Xb8dvykVzbd4XFyfgYxw0i2jRvA4JaV/KTbaPwjjtv2hgspG6fC8pK3xfLkJBy5ScMVfyBBj9d55/NohEl/8H6gxl//Trvu8s3rYj1zOb0XVR2lF2cmA6s6ys1sh9QTYjtmbiA5H5Mcjw63yXd+1mlI2qpqTHcjNXNYqFCC2KiB1I0PnHuCWknigcI6oMHsQ1yBfyIiHI64f5Fkw/1zrkLZ5CNpq1TGbQ+/ubZ5Wgll0h7CpyeTj18+vZscfDg7Of10eXpwOBqPwn3o6sT8roTZjCO+0LknZlsbc6sdY66+W4HuQ1proQwXuIt91WvoCqOGbpJeB1e4WuXC0xen25Yvf2vILTG7ulnLhs/aBEsSBblOdLc8+sGTGM7BlGHZXDcMvzVXapNhx0RKqsOztjcb8j//fDllkvVju8oWvMeJBY/0xAIzvMZrRB4Psoc4meLrK9TCzBsxZ/volz//ATzbA7I= +api: eJztWE1z2zYQ/Ss7e2qntCg7Tprypjp26zYfHltpD7YPILgSEYMAA4CWNRr+984SpCVHlptDjvKMR6Sw2Lcf70HkrjCIucfsGi+tJrxN0NbkRFDWnBeYoXQkAnVrCRbkpVM1L2KGJ90SCDC0AGc1jW4MJujoa0M+/G6LJWYrlNYEMoEvRV1rJTvf6RfPPlboZUmV4KuwrAkztPkXkgETrB1HEhR5XjWiog0rH5wy862QpiVBoXytxRJ4B9gZhJLWEWLbJhhU0OyEs4pJXMaYsW153ZGvrfER+Gh8xB/bOOwPFsJDLFEBvpGSvJ81Wi9jKX5Q7oz0Ny2fD+OOlkOWQyAx02TwqkygOTlMcGZdJUL86s3xzlrE7PtiHI/HL+QvbaMLMDZA/og/ujEfrCMoKAilPQhHUDt7rwoqQJku1KHEkNvi5WLVzuaaql+2i/Y0pAlcRMseF2IxQXiIhnlEv748O4Hfjl//evtTGULtszRdLBYjN5MHVKhg3ci6eepmkv/Z7ucRTEtyBJVYcpaiKBRjCg3rNoGvSaqZkhBsl2AfNnAPYn4v9ziubvP7sWWNU1t0n8Dny3NQBZmgZktl5tvQ3Z6ZaDT7ELltQpZrYe5w3fv/E9UEfFNVwj3y7ClAm6APIjQbaeyg3KujZwX753R6AdEFSFsQzKyDUCo/AHESlTKqairMjsfjBCvxEO/ejMct++SOf0cmBuih1sJ01Po2HWWgWvO2S0wZH4SRP6oz1qm5+hb36ZnUk/hdzGiQ4OEOCcZjC7SQdx7uhVYFiCaUjBrlw5rsghDaj/Yi24tsL7KdInu1zfcz63JVFGQ6ej7qTfnuJ09obRdU7HW119VeV7t09fq558eJAa6yYx6Sc9aBlbJxjgpYlEp37vlZesDuhbd/UNxrba+1XVprE6wolJZf22vrO+qIUGKGKb+reUzQk7snx6/7K2ycxgxXUSZtlqar0vrQZqvautCm99yDe+GUyHVkHi9HOQ000VYKXUao7XbxwuZL+ImoGlMIeAuXp1dT+EMEWohlVz6GfOr67fjt+FmvbLrD4+TiHGKGkWwbB8DglpX8rNto/D2O2/aWCykbp8LyirfF8uQkHLlJwxV/JEGP13nn+2iESX9xNlDjr3+nXXf58LpcD1BOH0RVR+nFAcjAqo5yM9sh9YTYjpkbSM7HJMejw23yXZx3GpK2qhrTHaRmDgsVShAbNZC68YFzT1ArSTwbWAc0mL2PK/BPRITDEfcvkmw4P+cqlE0+krZKZdz2+Jlrm6eVUCbtIXx6Mvnw+eO7ycH785PTj1enB4ej8Sg8hK5OzO9KmM044jTKPTOp2hhC7Rpa9e0K9BDSWgtluMJd8KteRNcYRXSb9EK4xtUqF54+O922/PXXhtwSs+vbtW74rk2wJFGQ61R3x3McPInxHEwZls11w/BbQ6I2GXZMpKQ6vGh7u6H/i09XU2ZZP4SrbMF7nFjwgE4sMMMbvEHkaR97iGMm/n6FWph5I+ZsH/3y339FdfDo sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -29,15 +29,15 @@ import TabItem from "@theme/TabItem"; -Create a new role +Create a new role. ## Request -

          Body

          +

          Body

          The role was created successfully. -
          Schema
          +
          Schema
          The role could not be created. More details are provided in the response body. @@ -48,8 +48,7 @@ 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 request to create a role was denied. -More details are provided in the response body. +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}}>
          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 6c7ad07066..6725a1a765 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 @@ -1,11 +1,11 @@ --- id: create-user title: "Create user" -description: "Create user" +description: "Create a new user." sidebar_label: "Create user" hide_title: true hide_table_of_contents: true -api: eJztWEtv4zYQ/isETy2qWE42u011c7PZNu0+AsdpD04OI2pscUORWpKKYxj678WQUuzYTtBDjjZgWOIM55vXR1mz4h7mjmdTfuPQ8ruEmxoteGn0ZcEzLiyCxyBLuMUfDTr/uymWPFtxYbRH7ekS6lpJEbal353RtOZEiRXQlV/WyDNu8u8oPE94bQnES3QkrcG5hbHFhqbzVuo5bxPeOLQaKtwrfFGAFUi1R9Im3EuvaIlCGsd4eEsCCk5aLHjmbYNhwdVGu+jkyfCEfgp0wsqa4uQZn5TIyEG2AMdipgrmGiHQuVmj1HJwq3nyVnkipL9xud+Ne1wyM2O+xCdHmli0zqjUHudhYWZsBT4ufTjdScp52D7ugqfctAk/HQ53cW805AqZNx1kQCfUwa3+YiyyAj1I5RhYZLU1D7LAgkkd9PrsstwUr+eptiZXWP2ym6/n7ozYVdTscFnMIwPHomIe0afjT+fst9P3v979VHpfuyxNF4vFwM7EERbSGzswdp7amaAv6f08YJMSLbIKlixHBkUhCRMUW1eIuRqFnElB+aAAO7cZ5T/G93p5o3S7ZTfK1VjJk52Yb8aXTBaovZwtpZ7vQoc9M2gU2YDcND7LFeh7vq77Lug2imuqCuxTiz0HaBPuPPhmI4wX2u3dyY5tat4/J5MrFk0wYQpkM2OZL6XrgSiISmpZNRXPTofDhFfwGO8+DIct2fR7Gb8TiWb4WCvQobW2w5GaVeu+DYFJ7Txo8VaVMVbO5Tbu4BkHuyb+GCPq6Xe8n/bdicwUiHvHHkDJgkHjS0KN9CFuBidAucGBZAeSHUj2IsnevU6y9YMO1o/9ArXE4vDEO5DxQMY3JOP7fX84R5pRli31IVprLDNCNNZiwRalVME8/ffusTviHrh24NqBay9xrd22HV8A+9fHCn1paBJQGxfaCnzJM56S2PGEO7QPdJVNV7yximd8FSnUZmm6Ko3zbbaqjfVt+kD1eQAr6bUxlJPEkWp9CykjQJURareUJKCX/j7Ec6gaXQA7Y+OL6wn7AzwuYBlSS5DPTZ8Nz4Z7rZLqCxZHV5csRhgbceNw6M0Sy/eajcr/x3Db3lEiRWOlX17TtpieHMGiHTWU8acG6fCCdbqPSjzpLj71bfPXv5NQeTrYxuvBzcUjVHWk5Xrwsu669bxlvbZ9301XNuYtUs9McLHrst1gqfJoXczOcHC829FXl4GYwlRVo8PprOdsIX3JYCN5QjXOU9ISrqRAmlBkq97DXu1zlLB/IiI7HlDhY3f2h/Jc+rLJB8JUqYjbnn5zZfK0AqnTDsKl56MvN18/jo4+X55ffL2+ODoeDAf+0YcEEzEq0Jt+PGPQszifyujx0ae1AqnDmMuqWBEq9ZRHct0lHUGmfLXKweGNVW1Lyz8atEueTe/WfKK7NuElQoE2sPGeZkX8PD72jiYES+qqIfidQVSb9DtGQmDtX9W92zgXrr5dT6j7uqFgZQraY2FBA0NY8Izf8lvOabBIFkJjh/UVV6DnDcxJP9qlz394Kxhg +api: eJztWUtT4zgQ/isqnXZrTRwYZpbxLcswu+zOg4KwewAObbkTa5AljyQnpFL+71st2SSQBOYwx1CVwla3+vl9stNZcg9Tx7Mbfu3Q8ruEmxoteGn0ecEzLiyCxyBLeIFOWFmTkGf8NIgYMI1z1ji0A55wi98bdP4PUyx4tuTCaI/a0yXUtZIiWE6/ObKw5E6UWAFd+UWNPOMm/4bC84TXluLwEh1Ja3BubmxB10+DGJfIeikzE+ZLfIyls+m8lXrK24STQEOF28300lfN7DbxQ9uxAqm27w+iVwy0CffSK1qitlzGgvOWBFR9abHgmbcNhgVXG+1iFY+GR7szZ3NwLHa7YK4RAp2bNEotBreaJz+rkeTpH1xsD+MeF33ufSBNBF5nVGqP07AwMbYCH5feHW8UJULzskueatMm/Hg43PR7rSFXyLzpXK4qf6s/G4usQA9SOQYWWW3NTBZYMKmDXl9dlpvi5TrV1uQKq9826/U0nBG7iJqdXxbryMCxqJhH7zeXH0/Z++O3v9/9UnpfuyxN5/P5wE7EARbSGzswdpraiaAP6f06YOMSLbIKFixHBkUhyScotuoQczUKOZGC6kEJdmEzqn/M7+X2RunyGWTX2tVYuXGOjNj15TmTBWovJwupp5uuw54JNIpsQG4an+UK9D1f9X3T6XMvrqkqsI8Qe+qgTbjz4Ju1NHbA7c3Rhm0C71/j8QWLJpgwBbKJscyX0vWOKIlKalk1Fc+Oh8OEV/AQ794Nhy3Z9N3B8EommuFDrUAHaD1PR2pWrXAbEpPaedDiZ3XGWDmVz/0OnnCwA/GHmFFPv8PttO8eGUyBuHdsBkoWDBpfktdIH+JmCAKUG+xJtifZnmQ7SfZmE+8fjc1lUaAO8Hzkm3RMG89AKTPHYs+rPa/2vNrNq/fb8B5fnKUvg7WpnKFefY0AZRGKBcMH6bzbvx7uGbZn2G6Gvd327WykGVXZEg7RWmOZEaKxFgs2L6UK5umLau+7e7Ttubbn2p5ru7jWJrxCXxoa79XGBeiAL3nGU3p2OZ5wh3ZGV9nNkjdW8YwvI03aLE2XpXG+zZa1sb5NZ9SDGVhJc5TQMhJHOvUwUUaAKqOrzXaRYH1wdgpVowtgJ+zy7GrM/gSPc1iE8pHLp6ZPhifDrVZJdYfF0cU5ixlGsK0dAL1ZYvJWs1H5Rwy37R0VUjRW+sUVbYvlyREs2lFDFX8EQecvWKf7qMST7uJjD42//xuH7tLhdbkatZ49QFVH6q1GpStkreaeq7Xn991Ucm1OKfXEhBA7JG0mS51H62J1hoPDTdRenAfyCVNVjQ4nsJ7GFyZYK55QjfNx2KmkQBrZZcs+wl7tU5Swf6NHdjigxkd09gfvVPqyyQfCVKmI2x7/58rkaQVSp50Ll56OPl9/+TA6+HR+evbl6uzgcDAc+AcfCkzEqECvxxHng82WUfjanHv7VLzrsscHn9YKpA7TaKtiwwgJNzxy7y7p+HPDl8scHF5b1ba0/L1Bu+DZzd2KbnTXJrxEKNAGst7TbJWfxmgOxuSW1FVD7jcGt23S7xgJgbV/Ufdu7di4+Ho1JnB2U/7KFLTHwpx+AYA5z/gtv+WcfkwgCwH3YX3JFehpA1PSj3bp73/+dXQS sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -29,11 +29,11 @@ import TabItem from "@theme/TabItem"; -Create user +Create a new user. ## Request -

          Body

          required
          +

          Body

          required
          The user was created successfully. @@ -48,8 +48,11 @@ 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 request to create a user was denied. -More details are provided in the response body. +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}}>
          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 fa20b5da36..4d4319dccb 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,7 +5,7 @@ description: "Evaluates a decision." sidebar_label: "Evaluate decision" hide_title: true hide_table_of_contents: true -api: eJztWtty2zYQ/RUMnpopLSmJcynfHMtp1ebisZ1kOrYfIHIlIiEBBpfIHA3/vbMAKVImJTly2jzUnvHYJBa7i91zFjcuqWFzTcNLOoaIay4FiWHGBTdcCnodUJmDYvgwiWlI4RtLLTNQC9OAxqAjxXMnH9KTSkATRuJKaHAl/paW6BwiPiuISWDVRIwktU4C3CSgyLQgVnMxJ9xoYgX/aoF8gYL8wjRRYKwSEJNpcSXGkKeyOAMtrYrgUUCkqnqumZiMB+RTAqK/LXAvUnTZkNhphPhKfAPlBORsvQPXxGqIB1c4dAVfLWjzSsYFDZfukSuIaWiUhYBGUhgQBptYnqc8cnEcftYYqSXVUQIZw/9MkQMNqZx+hsjQgEoB72c0vOy2GG5SaIW5zsNZ5UnxFxS0DPboOIlpeb1TjpYBhRuW5Slo9PxV0YSmwQ2my43QZhlTRUvdejCnTe/xqvNfUAxoQLEDoJJeCRo+fvL08BmKKc6m3puyLINNHk3Gezs0iXf445iB/hw8e/7iJe04VTrHFOhcCu3j9mQ08rra3Llou7JgesUM58DeaMoVcthwb3lDOPt8aXGPxyAMnxUdAi0SHiVdZysfuDAwB0UDOpMqY8a/en6IMOqPY58fk3GHhtvNaqO4mPcbeccy6DcjWAY/0NBHX0H6bW0qL/uE8+mTtgNnvghlIIz+joCqVjcyVyxPiEmY2ekdFsScKUPkbGtc2m7dC3A/1tFtAJXW5NZ0Pf3z/P07EsvIog/e+IKnKeFCGyYMr6uKAm1Tc6cUu9mkE7sZ4ynE4/vzxCsisUXNtVmcmDdZtQregtZs3kOVqoH4t1PUuEiK3fH3TvSaNCCYMJuG5Vtbo2t0rlYY26A3cXmJ4Pthx3UzpN6obYPPyss6gbpVnJlSrKAB5QYy3Ve01718w7UDUu2NrmAHqh2NBTcJFxX23HTdCtGtAfzHk8LDnPAz54TGgQvXqZdlRb7/SH96qfx3KkjGTJRAfGar1e5+5F1b1inU5SNRaW9ou7ncrLMVdezmRa0epXtH59SIGG76NXFs2qFsG/hWMX7vwHHPAHYzRjzodDc+vmF3hDbq3ILxu5WKfTR/bDYYncqATfvoLrsbutV05NMyMZDRsi341qd6tfFDlHihVk4n4v4pbfbUTtn2Ke2u3HC69kq969mbH9eyd+J36L1H2jdp3pZ1l7hu0rtyG0WaEwG/n6V+e3u4aUebK/mNx+g3MwxX4UIaHBrftqvNlZymkP3a3d2uGzgip16SxGAYT4nHG2G6Xp/iyl+Qy7PXx+S3w2cvrn9JjMl1OBwuFouBmkUHEHMj1UCq+VDNIvxFuUcDcpEgFjNWkCkQFsduAmUpaQBXHWnxCI+xjB+rcwYTsjZTbdiMm2o6Xk9gq5paxTvcOSIfziadxdeaaddnxmyKOthUWhNOUya+0CafXaO3rVSHJTUA1w2UAdWGGdvm+sbZoI/9f1xcnBKvgkQyBjKTyvO8MoSDyLjgmc1oeDga4XR845+ej0ZudYMZv8NIBIGbPGXCQev2cLggmVRQ4Wfgeek3DD8oM1LxOb9td7BG0wrEYz+imlCHO46IKi7NpBUPXHrg0gOXNnLpWd/kdIQzqAGFOASlpCIyiqxSuOxIeOrUR6BXlwbVntpj8YFrD1x74FqXa7hrBpNIvBLJpXbQYSahIR3W89ZBcy2jh81angZUg8JDEHfzZVVKQ7r0BCrD4XCZSG3KcJlLZcrhtye37lkoNnui1QBKZcTSxDvRTSQ2tJfuxyyzImbkJTk7Ob8gvzMDC1a4wKLJddUvRy9HvVpRdIPGo9MJ8SP0MGyVhlotcrxXrRe+i+ISb/E0RFZxU5xjNx+eKTAF6shiLlbwqOw57fjshWhQ/fO6Bs2fny5c3rGsnTWXnif+JnDLCeLo1mVY+6RmbSc0k86tClfdAWK268MzOho87mL4dOKoGMkss8LVYzyZ5iYhrBWwKLXaYKACmvIIcP8SLqlwm7uV2Te+hVTHdeTxAJPtEVmX4Tk3iZ0OIpkNI99t9XeayukwY1wMKxN6eHz09sO78dHBm8nxybvzk4PHg9HA3BgXVKRJxkTLj9XlZB3V26NdNvPP/+vGvcKtgRszzFPGBaLHJWZZ1ZlL2ldn6OrsovqswVeLS7pcTpmGDyotS3z91QJeD19eN7jFpzKgCbAYlCtN7nabHvsMHLgj1dX9cPduFm/jfY+jKILcbJW9bpXP0/fnF0jF6uuCTMbYR7EFfnnAFjSkV/SK4ucCuamvF9z7JU2ZmFt3e0O9Xvz5BwTz6SM= +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 @@ -51,7 +51,23 @@ The message variables as JSON document. The decision was evaluated. -
          Schema
            evaluatedDecisions object[]
          • Array [
          • matchedRules object[]
          • Array [
          • evaluatedOutputs object[]
          • Array [
          • ]
          • ]
          • evaluatedInputs object[]
          • Array [
          • ]
          • ]
          +
          Schema
            evaluatedDecisions object[]
            + +Decisions that were evaluated within the requested decision evaluation. + +
          • Array [
          • matchedRules object[]
            + +The decision rules that matched within this decision evaluation. + +
          • Array [
          • evaluatedOutputs object[]
            + +The evaluated decision outputs. + +
          • Array [
          • ]
          • ]
          • evaluatedInputs object[]
            + +The decision inputs that were evaluated within this decision evaluation. + +
          • Array [
          • ]
          • ]
          The provided data is not valid. 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 6ce6c12d26..2bdc49497e 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-authorizations.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-authorizations.api.mdx @@ -5,7 +5,7 @@ description: "Search for authorizations based on given criteria." sidebar_label: "Query authorizations (alpha)" hide_title: true hide_table_of_contents: true -api: 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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 @@ -44,18 +44,46 @@ in future releases. ## Request -

          Body

          required
            sort object[]
          • Array [
          • ]
          • page object
            filter object
          +

          Body

          required
            sort object[]
            + +Sort field criteria. + +
          • Array [
          • ]
          • page object
            + +Pagination criteria. + +
            filter object
            + +Authorization search filter. + +
          The authorization search result. -
          Schema
            page object
            items object[]
          • Array [
          • permissions object[]
            +
            Schema
              page object
              + +Pagination information about the search results. + +
              items object[]
              + +The matching authorizations. + +
            • Array [
            • permissions object[]
              The permissions. -
            • Array [
            • ]
            • ]
            +
          • 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. 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 8495ec6c6c..b84fee47c5 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-decision-definitions.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-decision-definitions.api.mdx @@ -5,7 +5,7 @@ description: "Search for decision definitions based on given criteria." sidebar_label: "Query decision definitions (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -44,14 +44,42 @@ in future releases. ## Request -

          Body

            sort object[]
          • Array [
          • ]
          • page object
            filter object
          +

          Body

            sort object[]
            + +Sort field criteria. + +
          • Array [
          • ]
          • page object
            + +Pagination criteria. + +
            filter object
            + +Decision definition search filter. + +
          The decision definition search result. -
          Schema
            page object
            items object[]
          • 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. 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 197d0e7672..538b3bfcf7 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-decision-instances.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-decision-instances.api.mdx @@ -5,7 +5,7 @@ description: "Search for decision instances based on given criteria." sidebar_label: "Query decision instances (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -44,7 +44,19 @@ in future releases. ## Request -

          Body

            sort object[]
          • Array [
          • ]
          • page object
            filter object
            evaluationDate object
            +

            Body

              sort object[]
              + +Sort field criteria. + +
            • Array [
            • ]
            • page object
              + +Pagination criteria. + +
              filter object
              + +Decision instance search filter. + +
              evaluationDate object
              The evaluation date of the decision instance. @@ -64,10 +76,26 @@ integer The decision instance search result. -
              Schema
                page object
                items object[]
              • 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. 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 762b3f5674..49aa7db729 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-decision-requirements.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-decision-requirements.api.mdx @@ -5,7 +5,7 @@ description: "Search for decision requirements based on given criteria." sidebar_label: "Query decision requirements (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -44,14 +44,42 @@ in future releases. ## Request -

              Body

                sort object[]
              • Array [
              • ]
              • page object
                filter object
              +

              Body

                sort object[]
                + +Sort field criteria. + +
              • Array [
              • ]
              • page object
                + +Pagination criteria. + +
                filter object
                + +Decision requirements search filter. + +
              The decision requirements search result. -
              Schema
                page object
                items object[]
              • 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. 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 126a149ba6..76a380cf05 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-flow-node-instances.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-flow-node-instances.api.mdx @@ -5,7 +5,7 @@ description: "Search for flow node instances based on given criteria." sidebar_label: "Query flow node instances (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -44,14 +44,42 @@ in future releases. ## Request -

              Body

                sort object[]
              • Array [
              • ]
              • page object
                filter object
              +

              Body

                sort object[]
                + +Sort field criteria. + +
              • Array [
              • ]
              • page object
                + +Pagination criteria. + +
                filter object
                + +Flow node instance filter. + +
              The flow node instance search result. -
              Schema
                page object
                items object[]
              • 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. 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 9a7a45e4f3..4fb6bad69d 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-incidents.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-incidents.api.mdx @@ -5,7 +5,7 @@ description: "Search for incidents based on given criteria." sidebar_label: "Query incidents (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -41,15 +41,43 @@ in future releases. ## Request -

              Body

                sort object[]
              • Array [
              • ]
              • page object
                filter object
              +

              Body

                sort object[]
                + +Sort field criteria. + +
              • Array [
              • ]
              • page object
                + +Pagination criteria. + +
                filter object
                + +Incident search filter. + +
              The incident search result. -
              Schema
                page object
                items object[]
              • 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. 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 ceb9b2c81d..5f8c735330 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-process-definitions.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-process-definitions.api.mdx @@ -5,7 +5,7 @@ description: "Search for process definitions based on given criteria." sidebar_label: "Query process definitions (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -44,14 +44,42 @@ in future releases. ## Request -

              Body

                sort object[]
              • Array [
              • ]
              • page object
                filter object
              +

              Body

                sort object[]
                + +Sort field criteria. + +
              • Array [
              • ]
              • page object
                + +Pagination criteria. + +
                filter object
                + +Process definition search filter. + +
              The process definition search result. -
              Schema
                page object
                items object[]
              • 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. 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 8d049337f2..d104169914 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-process-instances.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-process-instances.api.mdx @@ -5,7 +5,7 @@ description: "Search for process instances based on given criteria." sidebar_label: "Query process instances (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -44,7 +44,15 @@ in future releases. ## Request -

              Body

                sort object[]
              • Array [
              • ]
              • page object
                filter object
                +

                Body

                  sort object[]
                  + +Sort field criteria. + +
                • Array [
                • ]
                • page object
                  + +Pagination criteria. + +
                  filter object
                  Process instance search filter. @@ -152,10 +160,26 @@ string The process instance search result. -
                  Schema
                    page object
                    items object[]
                  • 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. diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-user-authorizations.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-user-authorizations.api.mdx index 8edb35f7cb..d0b37938e6 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-user-authorizations.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-user-authorizations.api.mdx @@ -5,7 +5,7 @@ description: "Search for user authorizations based on given criteria." sidebar_label: "Query user authorizations (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -44,18 +44,46 @@ in future releases. ## Request -

                  Path Parameters

                  Body

                  required
                    sort object[]
                  • Array [
                  • ]
                  • page object
                    filter object
                  +

                  Path Parameters

                  Body

                  required
                    sort object[]
                    + +Sort field criteria. + +
                  • Array [
                  • ]
                  • page object
                    + +Pagination criteria. + +
                    filter object
                    + +Authorization search filter. + +
                  The user authorization search result. -
                  Schema
                    page object
                    items object[]
                  • Array [
                  • permissions object[]
                    +
                    Schema
                      page object
                      + +Pagination information about the search results. + +
                      items object[]
                      + +The matching authorizations. + +
                    • Array [
                    • permissions object[]
                      The permissions. -
                    • Array [
                    • ]
                    • ]
                    +
                  • Array [
                  • ]
                  • ]
                  The user authorization search query failed. More details are provided in the response body. +
                  Schema
                    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
                  + +The request lacks valid authentication credentials. + +
                  Schema
                    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
                  + +Forbidden. The request is not allowed. +
                  Schema
                    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
                  An internal error occurred while processing the request. 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 97af6579f0..52838c9c0d 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-user-task-variables.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-user-task-variables.api.mdx @@ -5,7 +5,7 @@ description: "Search for user task variables based on given criteria." sidebar_label: "Query user task variables (alpha)" hide_title: true hide_table_of_contents: true -api: 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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 @@ -44,11 +44,27 @@ in future releases. ## Request -

                  Path Parameters

                  Body

                    sort object[]
                  • Array [
                  • ]
                  • page object
                  +

                  Path Parameters

                  Body

                    sort object[]
                    + +Sort field criteria. + +
                  • Array [
                  • ]
                  • page object
                    + +Pagination criteria. + +
                  The user task variables search response. -
                  Schema
                    page object
                    items object[]
                  • 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. 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 37c6248c03..448146f37b 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-user-tasks.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-user-tasks.api.mdx @@ -5,7 +5,7 @@ description: "Search for user tasks based on given criteria." sidebar_label: "Query user tasks (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWllz2zgS/iso7DzYtboym8xm+aaxnYxmc3h9ZB9kP0BkU8QYBBgAtKxS6b9vNcBTomwpcXarduyqODTR6G4AXx9o9opaNjc0mNJrA5pYZu7obY+qDDSzXMlJRAMacxnh8BUzd4b2aAQm1DzDcRrQS2A6TEisNMlLHobMmIGIKEnm/B4kCTW3oDkb3Mgb+UlZIDZhltiEGwIyyhSXlnBDmCRTJrKEkRiYzTXcHg1DlWZKgrRmCEyLZZ+FIRgzdHT+d7+gNoM0OiZMRkQqS0CymfBanLA0lxEjociNBW2Iyi1RMbEJkJl6GNzIqwTItCR7S8bnE3J0cXZ5dUw+34O+57AgGZujPizjpm+VEmYYevo+y3hfg7FbL/qqmDxIo798zUEvceiYZFrd8wgMiXNtE9AkAsu4MG5/giCQygLq9KO2J2VLMgNi8tkfEFpiFQkTJudwI7kkcY7ERIMAZgB1CoLgRtIe1fA1B2N/VdGSBiv3J9cQ0SBmwkCPhkpakBbHWJYJHjoQDf8wiJQVNWECKXOjQnyOaTBdUbvMgAZUOUVoj2YawWc5GDdDacetoGJasyXtUW4hNYfwiTmIqMHIWM3lnK57VOkI9PYIojxmubAo1YR0ve41ljstGN72qOVWQGUG/8IjvlTaXvidoutbnInIOUhdrdKGTlxamIOmPRornTLrX/3tZ9Rf8JTbPWmN03Ec29aKtza1rdu6mvgrxErDITPXnftzzuZQ70+vQ17HpOaEtgOqPBfxahJnZ6TA6oBuCtjGhig2ZBdfT7E/x7xwlv+EZefJtOWg57mDpfOgziFWbnSwcYq/vHanaJmFbsRusnWkpZ9rsQWZp4jjk4uz8dXZKe3Rk88fzz+cFc/jTydnH9zju/EEH27XPcqM4XMJsL1VKKsc7RRXA38jeDjdSbF9S7LgNiFxLgRh0T2TIUTloYYsYzMuOO5x1wkoCW3Tqkx8U+a44uyF+9N9+lR/gq/bKz9JILwz7uzga84ELxeBW1B4+YjcM5FDQ0Ltfn6ST3Dl8tv4wgM31uxkzf0hhbnWIG19AH5ag+VMKQFMOp5cPsWv4pMyGyaAEWtZAqKtdVPGLj9SLgdlC37XAbwnpLfEIodix27kZZ5lSluIyIKLKGQ6wgioWeiygwgykC5xcJukZMznuW6AUXCQduBi4raupfcqgeZB/s67mXUzZjQGzgvdMWIg8rjS3C67Ta0cPcjUJt79bNjad5vZI/Fmp+EVc8iRozz+X1jgY2HyeW3yUUk/wkrndpvfew0MQ5hNmCSYMTLNjZLfq/7cdthkS1Z5Ks8oVHSs74NaPP/qRNfqGpJ+wNr+2x52tzJdjqxwIR2erDXSdmUgIAVpJx3pd1fKUpCTyWmHd1v3aMhkxCNm4b1WedbtHysaMkeiHZnVS07ykpO85CT75ySVVeHF6CnDc5b2Yncvdvdid99/F1BY0DuFmEuOaz2srFDvOHIhUcWmu7pQ0E2ksajwd8niBZNuSRYk2zMvcJRVStB2KF07tG+yUScZXduz7tF7pjkWkZtIfKLqtekqJEv3qNZ8YmlVOSmFFhqIfM9qjyPtYNKAYVnG/1KMerxVtbUu0k2SbYquKt3aF0xNpqTx+/DzaNQdNPLN+p0Gk4vCop69onxoKdYqy8Rkr7TZwzrm2lgsAX9xru2wQqtg3zr3sVKrP4VDaq2NGXsWW/2MpyPn5gIOtKY/QWn1admPlFqf/8JVsvuegFDKeDwgtK92XSB58qpndhz1I9lEK609VCgK+QaZPy5g/b8mC/jmm9jjxB1wwzoVV/J0b5svZ5CosH22w6HgeN/yFJwclWYCDpRUzTlMVqyEUIvrbH9JfsZhUqIc9hcQ5XAY9+fLC+HBgpZMvFM6vYAYNMhwT63LqQ4/RJeTu23sC2jDfUKyBzjvPfX+tuZrg2FurEp/Axa13VQVKDduQ46cJJ6+cFGbnwqiyAlk4ryd83Q4rPp7xB5LbH6gaJ45wcGEzxPQRZKKGattvywno4YplzzFcDrq0ZQ9+OdXo1Hj8/ybUVdOihlbdz7bmec4ytd7Z6g+6YkZFxANyEeloWzgIEw3rpncXxrL7IjMVLR8NK/NtJoJSP+6nd9u1C3Iuacs5BKPAsIQR0g489KnF+9OyD9ev/n77VFibWaC4XCxWAx0HPYh4lbpgdLzoY5D/Id0x+6MNJQdIjVESJ2IEZNByGMeYuNIgWGnDEKjdRPelVS70W07rFCfa74FrDG5vpgQHoG0PF5itWZLdLttY6ZyG8wEk3e0xsFTxj8mJk9TppvxqSGgSBLzvYroXabx29XVOfEsSKgiqJOHQlAL9q9HTeD/Mhqh93UnvsdKJIGHTDDpY9bGcrgkaY1bt7AyAj/TySjN53xTbvs6WoD41K/IW+GbLiscS/fR0Hlk0FppokJXr4rIIuGi8qKl7LJV48XWXmztxdZ22Nq6R1OwicIez0wZBx1mExrQIUa8vuvkHPqQR7EJTN+71GO6orkWNKArbzLrYDhcJcrYdbDCQup6eI/n0aqd4bA3rRIyQoVMJF7s9tHhgGzUxOrOTGzKJO+ZhQVb+nSs6BGsWb8dvR115yVK2x0cseHTr9ADr+EMSrZo1d21AEe8D+M1VlQMhDkmOJc4zW/PDJgGPc5x9ytAFPIcd1d+d0S0Vzy8K2Hy+7+v3EmjI7uoOzTPHhheItotbq36yaiqeDSKFXUpokZknf6NWvWFmmLzs2zHiP9s1GTadVUddd8qR817wSM82sMNCE7LSmxz1JVWqzwXCzG+4XRadYzW1EWjqO8Gva17On2v5qjqxBxt9FlOV/7Mmx2U+G7tvECs3IEXNroNHVSzvF3Q0eDVtj84nzi3Fqo0zaWLbXJe9PY0oFg0PqPDEzwETHqr2nQl9oMfIcV9hrwaoBl5Wy9D2pzbJJ8NQpWWzc7V/zOhZsOUcTksRJjhyfjj9afTcf/D5OTs0+VZ/9VgNLAPvvCILidlsqGHS8qbXeRHrn35eHPRqzqkv7Sf/4nazwu/aOHBDjPBuPsS6eC5KiLXlNaRi5ZWh23aPv5M6WqF0LjWYr3G125PaDC9rX0F/rXuUX9xdq7gDh0QPfGQ61+hErXz2PoqgR+Z/YxxGEJmH6W9bYTg88+XV+jci+b6VEU4R7MFNt6zBQ3oDb2h6ImcGbi44d6vqGBynjt/RD1f/PkP0xhetQ== +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 @@ -41,54 +41,82 @@ in future releases. ## Request -

                  Body

                    sort object[]
                  • Array [
                  • ]
                  • page object
                    filter object
                    +

                    Body

                      sort object[]
                      + +Sort field criteria. + +
                    • Array [
                    • ]
                    • page object
                      + +Pagination criteria. + +
                      filter object
                      User task filter request. -
                      assignee object
                      +
                      assignee object
                      -String property with full advanced search capabilities. +The assignee of the user task. -
                      oneOf
                      +
                      oneOf
                      string -
                      priority object
                      +
                      priority object
                      -Integer property with advanced search capabilities. +The priority of the user task. -
                      oneOf
                      +
                      oneOf
                      integer -
                      candidateGroup object
                      +
                      candidateGroup object
                      -String property with full advanced search capabilities. +The candidate group for this user task. -
                      oneOf
                      +
                      oneOf
                      string -
                      candidateUser object
                      +
                      candidateUser object
                      -String property with full advanced search capabilities. +The candidate user for this user task. -
                      oneOf
                      +
                      oneOf
                      string -
                      variables object[]
                    • Array [
                    • ]
                    +
                    variables object[]
                    + +Variables associated with the user task. + +
                  • Array [
                  • ]
                The user task search result. -
                Schema
                  page object
                  items object[]
                • Array [
                • customHeaders object
                  +
                  Schema
                    page object
                    + +Pagination information about the search results. + +
                    items object[]
                    + +The matching user tasks. + +
                  • Array [
                  • customHeaders object
                    Custom headers for the user task. -
                  • ]
                  +
                • ]
                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. 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 a328be99c7..3c0e52b3a1 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-users.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-users.api.mdx @@ -5,7 +5,7 @@ description: "Search for users based on given criteria." sidebar_label: "Query users (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -41,14 +41,42 @@ in future releases. ## Request -

                Body

                required
                  sort object[]
                • Array [
                • ]
                • page object
                  filter object
                +

                Body

                required
                  sort object[]
                  + +Sort field criteria. + +
                • Array [
                • ]
                • page object
                  + +Pagination criteria. + +
                  filter object
                  + +User search filter. + +
                The user search result. -
                Schema
                  page object
                  items object[]
                • 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. 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 53d2294834..6146a0b84c 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-variables.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-variables.api.mdx @@ -5,7 +5,7 @@ description: "Search for process and local variables based on given criteria." sidebar_label: "Query variables (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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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 @@ -41,58 +41,82 @@ in future releases. ## Request -

                Body

                  sort object[]
                • Array [
                • ]
                • page object
                  filter object
                  +

                  Body

                    sort object[]
                    + +Sort field criteria. + +
                  • Array [
                  • ]
                  • page object
                    + +Pagination criteria. + +
                    filter object
                    Variable filter request. -
                    variableKey object
                    +
                    variableKey object
                    -Long property with full advanced search capabilities. +The key for this variable. -
                    oneOf
                    +
                    oneOf
                    integer -
                    name object
                    +
                    name object
                    -String property with full advanced search capabilities. +Name of the variable. -
                    oneOf
                    +
                    oneOf
                    string -
                    value object
                    +
                    value object
                    -String property with full advanced search capabilities. +The value of the variable. -
                    oneOf
                    +
                    oneOf
                    string -
                    scopeKey object
                    +
                    scopeKey object
                    -Long property with full advanced search capabilities. +The key of the scope of this variable. -
                    oneOf
                    +
                    oneOf
                    integer -
                    processInstanceKey object
                    +
                    processInstanceKey object
                    -Long property with full advanced search capabilities. +The key of the process instance of this variable. -
                    oneOf
                    +
                    oneOf
                    integer -
                  +
              The variable search result. -
              Schema
                page object
                items object[]
              • 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. 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 28eb31068b..4bfab0807f 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 @@ -5,7 +5,7 @@ description: "Returns decision definition as XML." sidebar_label: "Get decision definition XML (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWEtv20YQ/iuD7cVGKVJJnTTlTbCd1K2dGo7TBpB9GJFDcRNyl9mHZUHgfy9mSVqKJDc5pD0UPuhBcnae3zfL2ZVwOLcinYoTyqSVWkFOhVTSSa3EbSR0Qwb54iwXqZiTG+ROHsQ+XJyLSORkMyObsC4VV+S8URbyXa2AFj5cnMc36ka91Y7AlejAldICqbzRUjmQFlDBFKumRCgInTd0e5Bkum60IuVsQmiq5QizjKxNglz3PeqlbVznh4AqB6UdkMJZRTloBcdYe5UjZJW3jowF7R3oAlxJMNP38Y26Lgmmg9grmFyewcHV6bvrQ/jjjsydpAU0OGd/sJF25LSubJJ18iNs5MiQdTs3RrpfHNf5D589mSU/OoTG6DuZk4XCG1eSgZwcysqG/KRpqrQj9unfSk+NS5gRWD/7SJkDpyErUc3pRkkFhWdhMFQRWmKf0jS9USISDRqsiRMo0ulKKKxJpCLfAcfvtBSRkIyJBl0pImHos5eGcpE642kbOJx8tFbOFeXwiZZDafYAKYJFKbMSMHOWQYXglfzsCWROyslCkoFCmw5aw/pYRMJmJdUo0pVwy4bdlsrRnIyIRKFNja679fJItO0tO2wbrSxZXvF8POafXac/XJz/g69cMutDOQpfVUswgSCUxyGbmVaOlAsu0b1L7uuK/+84ap2Rai7atm0jcfSYK/vsc9bJOihQVpTHcKENDVADNDTgMAepQhBD1DDT+XLHS2yaSmahMSSN0bOK6h8/WvZg0+svXZvAZSfZ2wXdQQ65Oiw466xPr14fwy9HL36+PSida2yaJIvFIjZFNqJcOm1ibeaJKTL+sNxhDNclGRqwjHkegsaKo2rIOEkWbEOZLGTGEOcAe7eBU9vF1ye5c4sx/rB4XYLtUmxAxhu50wcn8P7qbADkUqr5rumwpkBfsQ6cae/SWYXqk2gj4aSr9hrdtmJ9XaN5YMuXBtpIWIfO269C/qfnO7oZUL9eX19CpwIyndOaVr0hDqKWSta+FunReByJGu+7q5fjccs6ueLfEIkCum8qVAFa2+FIBfUatyEwqaxDlX2vymgj53LbbizadS1ED+KTLqKBikdfoeJCujLonMs7UqGzLdCGzanQXj0x8omRT4z8jox8sW9znCjgLBvGIRmjDegs88ZQzq8SVVDPW/Rgu980n7j2xLUnrj3GtTYSNblS9/NhmA1cKVKRDJvfaP0eapPV3hmhDa+8kbBk7oaZwptKpGLVEapNk2RVauvadNVo49rkjqt1h0byaBeKy4874g2AqnSGVbi9r7D8gAeXIeD1zMfjHrxBRwtchkSzyS9Vvxq/Gu/VyqKPaORRsouwg+VGqxjUMuf3qu2Ev0VxGFosZd5It3zHy7r0zAgNmYnn4jzApbcXtPN1JySi/s/rAUS//XUdcCBVocPyHg+7jnBVyNjO83H8bBd7l2eBQpmua69CH1Xz7gUJNwLrB3QmVyUzUjagvB80B7Hz7gn82VmEZzEXpUPO0D7n0pV+Fme6Hobyh99ZpWdJjVIlvQmbHE8u3r89mYzOz45P3747HT2Lx7G7dyH4RltXo9rw4w25veMWT4MHYeI+3I5/td5Jno5J/u/HJD3LwlDfVCgV8z7Ac9W3yanY1yZFJNLHDlO4U95GfbebitVqhpbem6pt+XbImUint+vmGLppLm0orkgLrOz2ucsmKA+u+hOaQ/gvTmP2pqi/iWoZmnzl+UpE4hMtHz1mam/bSJSEOZkQcSc7yTJq3IaWhwMWbpMPO9ebU+5vfwOMXllU +api: eJztWUtz2zYQ/is76MWeUqScOmnKm8Z2Urd26nGcNjOyD0twKSIGAQYAJWs0/O8dgKTkWHKTQ9pDRwc9SC72+X1LcrFiDmeWpVN2SlxYoRXkVAglnNCK3UVM12TQH5znLGUzcoPc6Vrs4+UFi1hOlhtRh3UpuybXGGUh39YKaOHj5UV8q27VO+0IXIkOXCkskMprLZQDYQEVTFHWJUJB6BpDdwcJ11WtFSlnE0IjlyPknKxNglz3PeqlbVzlh4AqB6UdkMJMUg5awQlWjcoRuGysI2NBNw50Aa4kyPRDfKtuSoLpIPYaJlfncHB99v7mEP6Yk5kLWkCNM+8P1sKOnNbSJryTH2EtRoas2zox0v3iuMp/+NyQWfpLh1AbPRc5WSga40oykJNDIW3IT5qmSjvyPv1b6alwCRmBbbJPxB04DbxENaNbJRQUjRcGQ5LQkvcpTdNbxSJWo8GKfAJZOl0xhRWxlOVb4PidlixiwmOiRleyiBn63AhDOUudaegpcHzy0VoxU5TDPS2H0uwAUgSLUvASkDvrQYXQKPG5IRA5KScKQQYKbTpoDetjFjHLS6qQpSvmlrV3WyhHMzIsYoU2Fbru1Ktj1rZ33mFba2XJ+hUvxmP/s+30x8uLf/DVl8w2oRxFI+USTCAI5XHIJtfKkXLBJXpwyUMl/f8tR60zQs1Y27ZtxI6fc2WXfZ91sg4KFJLyGC61oQFqgIYGHOYgVAhiiBoynS+3vMS6loKHxpDURmeSqh8/We/BY6+/dG0CV51kbxd0Bzn01fGCWWd9ev3mBH45fvnz3UHpXG3TJFksFrEp+Ihy4bSJtZklpuD+4+UOY7gpydCAZczzEDRKH1VNxgmyYGviohDcQ9wH2LsNPrVdfH2SO7c8xteLNyV4WopHkGmM2OqDE/hwfT4AcinUbNt0WFNgI70OzHTj0kyiumdtxJxwcqfRp1ZsU1Vo1mz50kAbMevQNfarkP/pxZZuD6hfb26uoFMBXOe0oVVvyAdRCSWqpmLp8XgcsQofuqNX43HrdfqKf0MkCuihlqgCtJ6GIxRUG9yGwISyDhX/XpXRRszEU7sxaze1YD2IT7uIBioe7abiQDuJ/N7CHKXIARtXeqsdfYAbCk6gtPGeZHuS7Un2LMl+2sb7G20ykeekAjzXfBM2PPehlHpB+Z5Xe17tefU8r46/8hy5EK4MOmdiTio8li+wY1ihG7V/nNwzcs/I78jIl7ve7CYKfJaNxyEZow1ozhtjKPfvwTKo9++Xg+3+Vrjn2p5re649x7U2YhW5UvfDzTDYciVLWTLc/EabIYpNVjsHXG2Y10TMkpkPA7HGSJayVUeoNk2SVamta9NVrY1rk7mv1hyN8HPJUFx/uSPeACipOcpweldh/QU/dRsC3gws/awS3qKjBS5Dor3JL1W/Hr8e79TqRZ/R6OegXYQdLB+1ikGt5/xOtZ3wtygOEzdLvDHCLd/7ZV16MkJDZtL44qzh0tsL2v1xJ8Si/s+bAUS//XUTcCBUocPyHg/bjviqkLGd5+P4aBt7V+eBQlxXVaNCH1Wz7gEJHwXWT5c9uaTgpGxAeT8lHcQuuivwZ2cRjmJflA45Q/ucCVc2Wcx1NUyU17+Z1FlSoVBJb8ImJ5PLD+9OJ6OL85Ozd+/PRkfxOHYPLgRfa+sqVI/8eEtu56zQjzIPwrj48Gn8q82dZD/j/7/P+HuWhYl0LVEoz/sAz1XfJqdsV5tkEUuf2wnwnfIu6rvdlK1WGVr6YGTb+tMhZyyd3m2aY+imubChuCwtUNqnmwaPQXlw3W8vHMJ/sZWwM0X9SVTL0ORl449YxO5p+eweSXvXRqwkzMmEiDvZCedUu0da1rsDvk2u71xvz3x/+xujVa4S sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -56,6 +56,14 @@ 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. 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 e1b6ba8e99..9896230081 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 @@ -5,7 +5,7 @@ description: "Returns a decision definition by key." sidebar_label: "Get decision definition (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zYQ/is76MWeUqSSOmnKm8ZOUreJ63Gc9iD7AJJLEQkJMMBSskbD/95ZkLRkS3404/bQ8cEPksvFPr7vA7ErQXLmRDwVR5gqp4yGDHOlFSmjxWUgTI1W8sVxJmIxQxrsjtZmgcjQpVbV/ioWZ0iN1Q4kZNtOIVnCV1yGF/pCnxhCoEISUKEcoM5qozSBciA1TGVZFxJylNRYvNyLUlPVRqMmF6G05XIk0xSdi7xd93vUW7uwyvZB6gy0IUAtkxIzMBoOZdXoTEJaNo7QOjANgcmBCoTEXIUX+rxAmA5mb2Byegx7Z28/ne/DH3O0c4ULqOWM45G1ciMypnRR2tmPZK1GFh1t3RiZ/uWwyn741qBd8qN9qK2Zqwwd5I2lAi1kSFKVztcnjmNtCDmmf6s8lVxCguCa5AumBGQgLaSe4YVWGvKGjcFiidIhxxTH8QU3vJZWVsgFFPF0JbSsUMQi28LG77gUgVCMilpSIQJh8VujLGYiJtvgbehw8aVzaqYxY5gMrdkBpAAWhUoLkCk5kIy2RqtvDYLKUJPKFVrIje2gNbwfikC4tMBKinglaFlz2EoTztCKQOTGVpK6W68PRNtecsCuNtqh4zdejsf8ZzvoXUhXDlzje5A3ZbkE63mBWehLmBpNqIndybouVeppFn1x7HO1HaXxHeLaWyYlqS6i3TV/RHIPlf676ruRfijaYEd0rCPXwTmySs92hnL08QSOj+7pv/ffAe+x/tj6IY9ztE51Lbi3gj+9vL+CvZ+Hlhvun3W0qJi+jykR3V0iu+EKZlbWxaCxd8K0lpZV8M6InghSTx0qoZaaHouozvpBULFfRSU7297rjgkr0bZsdPBPpIATRUeQS1ViFsJHY3GQepAWh30gA6V9bIPqQGKy5b2CUVuTlFj9uC0cN0ObwGln2a8LnaAwtTvDpFt9evbuEH45ePXz5V5BVLs4ihaLRWjzdISZImNDY2eRzVP+Ybv9EM4LtDjsJTLLfNKyhLVUgasxVblKeYvhBPuwgfvW5Xe/znVPt/t8DcHGqq22T+Dz2fEgWEulZ9tL+3dy2ZTsQyamoTgppf4q1jh4CFwTcE1VSXuN75sLtIFwJKlx36spv56fn0LnAlKT4Vp2+4U4iUppVTWViA/G40BU8qq7ej0ee05zxx+RiQa8qkupPbRup6M0VGvc+sSUdiR1+lSdMVbN1O11b3KyB/FRl9FAxYMHqLhQVHifMzVH7bVoIZ3/OMxNo58Z+czIZ0Y+ISNf7docJxq4ypZxiNYaCyZNG2sx40/N0rvnr+Vh7X7TfObaM9eeuXYX19pAVEiF6ccz/mxOhYhFNGx+o/V3qItWO8+LLR+L0c6H83xjSxGLVUemNo6iVWEctfGqNpbaaM6dmkureKziG8uPO9INYCpNKkt/e1dT+cHmaWw9b+FRC7yXhAu59EXmJW+6fjN+M97plU3v8MhjnC7DDpIbMjG4Zb7vdNsZP8axHxg4TBuraPmJX+vKk6C0aCcNN+YaKv163jtfd0Yi6P95NwDot7/OPQaUzo1/vcfCdiBi4/gqxuGLbdydHnv6pKaqGu01VM+6jyO5kVg/HGNilSpF7TzC+yHPYPahewJ/9gfdFyE3pUPOIJ0zRUWThKmphoHY9d+kNElUSaWjfgkXHU4+fj45mow+HB++Pfn0dvQiHId0RT752jiqpN6I4z3SzqPWnp907d/OfbXeQZ4HlP//AWXPMcIriupSKs2s9+Bc9QI5FbsEUgQi3j1Suwx6lZuK1SqRDj/bsm35tq+WiKeXa1H0Kpop59sq4lyW7vascxOQe/2wJduH/2ICurM4/U2pl17cy4avRCC+8uznjjFje9kGokCZofUZd7aTNMWaNrxszTdZJq93rfdvWd/+BlFZln4= +api: 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 sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -52,6 +52,14 @@ The decision definition is successfully returned. 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. 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 744cba5e06..047899aa9b 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 @@ -5,7 +5,7 @@ description: "Returns a decision instance." sidebar_label: "Get decision instance (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -56,10 +56,22 @@ The evaluated inputs of the decision instance. The matched rules of the decision instance. -
            • Array [
            • evaluatedOutputs object[]
            • Array [
            • ]
            • ]
            +
          • 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. 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 e42c7256e9..ea5803ea52 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 @@ -5,7 +5,7 @@ description: "Returns decision requirements as XML." sidebar_label: "Get decision requirements XML (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWEtv20YQ/iuD7cVGKVJJnTTlTXCc1K2dGI7TBpB1GJFDcRNyl9mHZUHgfy9mSdqKJKcpkPZQ+KAHydl5ft8sZ9fC4cKKdCpeUiat1AoMffbSUE3KWTGLhG7IoJNaneYiFQtyg+TlhuCH8zMRiZxsZmTDwiIVl+S8URbyfZoBLXw4P4uv1bV6ox2BK9GBK6UFUnmjpXIgLaCCKVZNiVAQOm9odpBkum60YiUJoalWI8wysjYJct33qJe2cZ0fAqoclHZACucV5aAVHGPtVY6QVd46Mha0d6ALcCXBXN/G1+qqJJgOYi9gcnEKB5cn764O4e0NmRtJS2hwwf5gI+3IaV3ZJOvkR9jIkSHrdm6MdL84rvMfPnsyK350CI3RNzInC4U3riQDOTmUlQ35SdNUaUfs07+VnhpXMCewfv6RMgdOQ1aiWtC1kgoKz8JgqCK0xD6laXqtRCQaNFgTJ1Ck07VQWJNIRb4HIL/TSkRCMi4adKWIRI+GXKTOeNoGD6cfrZULRTl8otVQnL1gimBZyqwEzDpgIXglP3sCmZNyspBkoNCmg9egIRaRsFlJNYp0LdyqYdelcrQgIyJRaFOj6249PxJtO2OXbaOVJcsrno7H/LPr9ofzs696y4WzPhSl8FW1AhOIQnkccppp5Ui54BTduuS2rvj/jqvWGakWom3bNhJHDzmz3wO+IOugQFlRHsO5NjRADtDQgMccpAqBDJHDXOerHT+xaSqZhSaRNEbPK6p//GjZh02/v3RuAhedZG8XdAc95Aqx4LyzPr18dQy/HD37eXZQOtfYNEmWy2VsimxEuXTaxNosElNk/GG5wxiuSjI0YBrzXLJNrDiqhoyTZME2lMlCZgx1DrB3Gzi5XXx9mju3GOt3i++LsF2MDdh4I3c64gTeX54OoFxJtdg1HdYU6CvWgXPtXTqvUH0SbSScdNVeo9tWrK9rNHec+dJAGwnr0Hn7t7D/6emObobUr1dXF9CpgEzndE+t3hAHUUsla1+L9Gg8jkSNt93V8/G4ZZ1c8W+IRAHdNhWqAK3tcKSC+h63ITCprEOVfa/KaCMXcttuLNr7WogexC+7iAYyHv0TMi6lK4OBhbwhFZrdEm3YsQrt1SM9H+n5SM/vSM9n+/bKiQLOsmEckjHagM4ybwzl/G5RBfW8Yw+2+x30kWuPXHvk2kNcayNRkyt1PziGgcGVIhXJsBOONnfCZP3A5NCGl+BIWDI3w6zhTSVSse441aZJsi61dW26brRxbXLDBbtBI3nkC/Xlxx33BkxVOsMq3N5XW37AA80Q8/0syGMgvEZHS1yFXLPJL1W/GL8Y79XKog9o5BGzi7BD5ka3GNQy7feq7YS/RXEYZCxl3ki3esfLuvTMCQ2Zief63CGmtxe083UnJKL+z6sBR7/9eRWgIFWhw/IeEruOcFXI2M7zcfxkF34Xp4FFma5rr0IrVYvuHQk3AusHd+ZXJTNSNgC9H0AHsbPuCfzRWYQnMRelQ87QQRfSlX4eZ7oehvW733ml50mNUiW9CZscT87fv3k5GZ2dHp+8eXcyehKPY3frQvCNtq5GteHHa3IPvPPxjHgQZvHD7Qys77eTxyOU//8RSs+0MOo3FUrF3A8QXffdcir2dksRifThkxZumLOob3pTsV7P0dJ7U7Ut3w5pE+l0dt8jQ1PNpQ31FWmBld0+lNlE5kFvMj+E/+aoZm+e+puoVqHbV56vRCQ+0eor51DtrI1ESZiTCVF30pMso8Zt6Lk7feGOebePvT7hVvcXDPJsZw== +api: eJztWd1v2zYQ/1cO3EuCyZLTpl2nNyNNu2xJF6TpVsDJw4k6WWwoUiUpO4ah/30gJSVubHcd0O1h8IM/JB3v8/c7UacVczizLJ2y18SFFVqBoc+NMFSRcpbdRkzXZNAJrc5ylrIZuUHyak3w48U5i1hOlhtRe2GWsityjVEW8m2aAS18vDiPb9SNeqcdgSvRgSuFBVJ5rYVyICygginKukQoCF1j6PYg4bqqtfJKEkIjlyPknKxNglz3PeqlbVzlh4AqB6UdkMJMUg5awQlWjcoRuGysI2NBNw50Aa4kyPR9fKOuS4LpIPYKJpdncHB1+v76EH6fk5kLWkCNM+8P1sKOnNbSJryTH2EtRoas2zgx0v3iuMp/+NyQWfpLh1AbPRc5WSga40oykJNDIW3IT5qmSjvyPv1b6alwCRmBbbJPxB04DbxENaMbJRQUjRcGQ5LQkvcpTdMbxSJWo8GKfAJZOl0xhRWxlOVbAPIbLVnEhMdFja5kEevRkLPUmYaegsenH60VM0U53NFyKM5WMEWwKAUvAXkHLIRGic8NgchJOVEIMlBo08Fr0BCziFleUoUsXTG3rL3rQjmakWERK7Sp0HWnXh6ztr31LttaK0vWr3g2HvufTbc/Xpx/1VtfONuEohSNlEswgSiUxyGnXCtHygWn6N4l95X0/zdctc4INWNt27YRO97lzHYP/AFZBwUKSXkMF9rQADlAQwMecxAqBDJEDpnOlxt+Yl1LwUOTSGqjM0nVj5+s92Hd7y+dm8BlJ9nbBd1BD32FvGDWWZ9evTmBn49f/HR7UDpX2zRJFotFbAo+olw4bWJtZokpuP94ucMYrksyNGAa81x4myh9VDUZJ8iCrYmLQnAPdR9g7zb45Hbx9Wnu3PJYf1j8WISnxViDTWPERkecwIerswGUS6Fmm6bDmgIb6XVgphuXZhLVHWsj5oSTW40+tWKbqkLzwJkvDbQRsw5dY/8W9s+fbej2kPrl+voSOhXAdU6P1OoN+SAqoUTVVCw9Ho8jVuF9d/RyPG69Tl/xb4hEAd3XElWA1tNwhILqEbchMKGsQ8W/V2W0ETPx1G7M2sdasB7Er7uIBjIebSfjQDuJ/M7CHKXIARtXeqsdfYAbCk6gtPGeZHuS7Um2k2TPN/H+RptM5DmpAM8Hvgkb9n8opV5QvufVnld7Xu3m1fE/2UkuhCuDgZmYkwo79QV2dCt0o/Z7yz099/T8jvR8se1Bb6LAZ9l4HJIx2oDmvDGGcv9gLIN6/7g52O7vi3uu7bm259ourrURq8iVup96hmmXK1nKkuFOOFq/EyarHWOvNkxwImbJzIdBWWMkS9mq41SbJsmq1Na16arWxrXJ3Bdsjkb4eWWor7/ccW/AlNQcZTi9rbb+gp/GDTE/DjL9DBPeoqMFLkOuvckvVb8avxpv1epFd2j089Euwg6Za91iUOtpv1VtJ/wtisMUzhJvjHDL935Zl56M0JCZNL4+D4jp7QXt/rgTYlH/582Ao1//vA5QEKrQYXkPiU1HfFXI2M7zcXy0Cb/Ls8AirquqUaGVqlm3R8K1wPqps+eXFJyUDUDvp6eD2Hl3Bf7oLMJR7IvSIWfooDPhyiaLua6GSfPDbyZ1llQoVNKbsMnJ5OLDu9eT0fnZyem796ejo3gcu3sXgq+1dRWqNT/ektux5/MDzoMwSD58moHV4+1kP////8//e6aFOXUtUSjP/QDRVd8tp2xrt2QRS3e/JvAN8zbqm96UrVYZWvpgZNv60yFtLJ3ePvbI0FRzYUN9WVqgtE/fKKwj86A3mR/Cf/OeYWue+pOolqHby8YfsYjd0fIrL1Ha2zZiJWFOJkTdSU84p9qt6Xl4deA75sN97O2pb3V/AVZVwSU= sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -56,6 +56,14 @@ 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. 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 946825aa9e..e6d261065a 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 @@ -5,7 +5,7 @@ description: "Returns Decision Requirements as JSON." sidebar_label: "Get decision requirements (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zYQ/is76MWeUqSSOmnKm8Z2UqeJ47Gd9iD7AIFLEQkJMHhI1mj43zsLkrJsSbbTSaeH+qAHycU+v29B7JI5PrUsHbMjFNJKrcDgNy8NVqicZdcR0zUa7qRWJxlL2RRdL3m+LhixDK0wsiZJlrJzdN4oCyu169LALby/+HQaX6krdaodgiu4A1dIC6iyWkvlQFrgCsa8rAsOOXLnDV7vJUJXtVakJUFuysWAC4HWJkGu/R500jausn3gKgOlHaDikxIz0AoOeeVVxkGU3jo0FrR3oHNwBcJE38RX6rJAGPdib2B0dgJ758cXl/vwaYZmJnEONZ+SP7yWduC0Lm0iWvkBr+XAoHUbNwa6WxxX2U/fPJoFPdqH2uiZzNBC7o0r0ECGjsvShvykaaq0Q/Lp30pPxRcwQbB+8gWFA6dBFFxN8UpJBbknYTBYIrdIPqVpeqVYxGpueIWUQJaOl0zxClnKsi3w+AMXLGKSgFFzV7CIdSjLWOqMx/voofRza+VUYQZfcdEXJ9sG0gjmhRQFcNEii4NX8ptHkBkqJ3OJBnJtWnht1RCziFlRYMVZumRuUVMcUjmcomERy7WpuGtvvT5gTXNN/ttaK4uWVrwcDulnM4at1qh01oey5L4sF2ACVzCLQ1aFVg6VI4W8rkspAvmSL5a0Ljf91KFoVA5DVHWy9WlXGZ4Q4GPV+BEJb6IOLyt3rDNSTbcaP/p4CiT9IAyCzhkaK9tEPRjlLy8fjrLT87jBbWmmRvnUsE6OHrdh0GpvBJ4+OWHryepXQ2501VVud2Vgzi3U3FjMgm2Hiiv31Iha6ScERZqlK0ndtu3kxGHFmobEDr6PW3SB1kHOZYlZDB+1wb6dAjfY99oMpOrTE4gME50tHmRgbfSkxOrnTSbedW4EZ61kZxdahhJTWsFJa318/vYQfjt49ev1XuFcbdMkmc/nscnFADPptIm1mSYmF/Qhuf0YLgs02PdrnmWSbPISbrkPtkYhcymojVOAndtA1Wvje7hxtE83q72ijzdyo/gj+Hx+0vN/IdV003RYk3Nfkg4+0d6lk5Krr+wWC49BbATWVxU3q/3groEmYtZx5+0/pf/vl5dn0KoAoTO87WKdIQqikkpWvmLpwXAYsYrftFevh8PQDqjiT4hEAd7UJVcBWvfDkQqqW9yGwKSyjivxoyqjjZzK+3bv8rID8VEbUU/Gg+8h41y6IhiYyhmqsJFTe6G3sVx79UzPZ3o+0/MH0vPVtr1ypICybAiHaIw2oIXwxmBGLwNlUE/vor3tbgd95toz1565totrTcQqdIXuRiLhMOwKlrKk3wkH6zthstxxHGvo5Ilm1p+hvSlZypYtn5o0SZaFtq5Jl7U2rklmVKwZN5JGGaG29LjlXY+nUgtehtvb6koP1k8HtzMOGm/AO+5wzhchz2Tyruo3wzfDrVpJdIdGGp20EbaoXOsUvVqi/Fa1rfBTFIczuUXhjXSLC1rWpmeC3KAZearNCi2dvaCdrlshFnV/3vYYev/XZYCBVLkOyzs4bDrC1k6ebBi/2ITe2UlgkNBV5VVoo2ravh/xtcC6gRRxq5QClQ0g7wYrvdiH9gn82Z1RX8RUlBY5ffecSlf4SSx01Q+hVr+TUk+SikuVdCZscjj6+Pn0aDT4cHJ4fHpxPHgRD2N340Lwtbau4mrNj3fodrzv7YX50v796Je328jzXPB/MBfsaObwxiV1yaUi4gd8Lrs2OWZb2ySLWLprbnUddb1uzJbLCbf42ZRNQ7dDwlg6vr5tjaGXZtKGyrI056W9P2NcB+VeZyzbh/9g8rg1Xd1Nrhah45eerljEvtIIb+dwr7luIlYgz9CEFLTSIyGwdmt6NuaK1D1X+9m7Y2p7fwPxHXVS +api: eJztWd9T20YQ/ld2ri8wlS2TkDTVmwdISpsQBkj7ADyspZV14XSn3J1sPB7/7509SWCwDaSTTh/qB35I2tu93f2+PWl3LjyOnUguxSGl0kmjwdK3WloqSXsnriNhKrLopdHHmUjEmHwnebYsGImMXGplxZIiEWfka6sd3KldlgZ08Pv555P+lb7SJ8YT+AI9+EI6IJ1VRmoP0gFquERVFQg5oa8tXe/EqSkro1lLTGjVrIdpSs7FQa753WulXb/MdgF1Btp4II0jRRkYDQdY1jpDSFXtPFkHpvZgcvAFwcjc9q/0RUFw2Ym9g+HpMeycHZ1f7MLnCdmJpClUOOb9YCVdzxujXJw28j2sZM+S8ys3eqZd3C+zn77VZGf8aBcqayYyIwd5bX1BFjLyKJUL8UmSRBtPvKd/KzwlzmBE4OrRV0o9eANpgXpMV1pqyGsWBkuK0BHvKUmSKy0iUaHFkjiAIrmcC40liURka+DxB81EJCQDo0JfiEi0KMtE4m1Nj9HD4Ufn5FhTBjc065KTrQNpBNNCpgVg2iALodbyW00gM9Je5pIs5MY28FqroS8i4dKCShTJXPhZxX5I7WlMVkQiN7ZE39x6uy8Wi2vev6uMduR4xavBgP+s+rDWGqfO1SEtea3UDGzgCmX9ENXUaE/as0KsKiXTQL74q2Ot89V9mpA0TodlqnrZ7GlTGl7g4HPZ+BEBX0QtXu6247yVerzW+OGnE2DpJ2EQdE7IOtkE6kkvX7962stWz/MG14WZC+VL3To+fN6GJWdqm9LJiwO2HKxuNeTWlG3mNmcGpuigQusoC7Y9adT+pR410i9wijVLr1jduuPk2FMpFgsW2/8+bvEFOQ85SkVZHz4ZS105BbTU1doMpO7CE4gMI5PNnmRgZc1IUfnzKhMfbm4Ip41kaxcahjJTGsFRY/3y7P0B/Lr/5pfrncL7yiVxPJ1O+zZPe5RJb2zf2HFs85R/WG63DxcFWerqNWaZZJuo4J774CpKZS5TLuPsYLtt4Ow1/j1dOJqnq9m+o09t5Uryh/Dl7Ljj/0zq8arpsCbHWrEOHJnaJyOF+kbcY+E5iA3B1WWJ9u48eGhgEQnn0dfun9L/t4uLU2hUQGoyuq9irSF2opRalnUpkv3BIBIl3jZXbweDUA444y/wRAPdVgp1gNZjd6SG8h63wTGpnUed/qjMGCvH8rHdh7xsQXzYeNSRcW89GTvaKUxvHExQyQyw9gVbbegDqaWwCVThvN2SbEuyLcnWk+z1Kt7fGzuSWUY6wPOOb9KFbxtUykz5xN7yasurLa828Wr/e94kp9IXwcBYTkiHr1B+N2a65abW23fLLT239PyB9Hyz7kNvqIGjbBmHZK2xYNK0tpYy/pJVQT03Ujrb7bm45dqWa1uubeLaIhIl+cK0/fzQyfWFSETcnYS95ZMwnm/oJS64bUp20jWAa6tEIuYNnxZJHM8L4/wimVfG+kU84WRN0Eruw4fc8uOGdx2elElRhdvr8soPlltb9w167s3DB/Q0xVmIM5t8qPrd4N1grVYW3aCR+/6Nhw0qlypFp5Ypv1ZtI/wSxaGh7CitrfSzc17WhGdEaMkOa87NHVpae0E7XzdCImr/ed9h6Pe/LgIMpM5NWN7CYXUjYqltKgb9vVXonR4HBqWmLGsdyqgeN+9HuORYO01hbimZknYB5O1UoBP72DyBP9sG616fk9Igp6ueY+mLetRPTdlNUO7+jpQZxSVKHbcmXHww/PTl5HDY+3h8cHRyftTb6w/6/tYH5yvjfIl6aR8fyG9439sJw5Hdx97P74+R7VDrfzDUamnm6dbHlUKpmfgBn/O2TF6KtWVSRCLZNHS5jtpadynm8xE6+mLVYsG3Q8BEcnl9XxpDLc2kC5kVSY7KPR6QLYNypzWW7cJ/MDZbG672JupZqPiq5isRiRueP22cTC2uF5EoCDOyIQSN9DBNqfJLelaGYlw9786zD0dc9v4GrlXKEA== sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -52,6 +52,14 @@ The decision requirements is successfully returned. 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. 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 6e96281cab..e96f253323 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-flow-node-instance.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-flow-node-instance.api.mdx @@ -5,7 +5,7 @@ description: "Returns flow node instance as JSON." sidebar_label: "Get flow node instance (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,10 +48,18 @@ in future releases. The flow node instance is successfully returned. -
          Schema
          +
          Schema
          The flow node instance request failed. More details are provided in the response body. +
          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. 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 fcedf23cbd..7b3afbc717 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-incident.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-incident.api.mdx @@ -5,7 +5,7 @@ description: "Returns incident as JSON." sidebar_label: "Get incident (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,10 +48,18 @@ in future releases. The incident is successfully returned. -
          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. 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 ef4bfd03d5..ea6d1e2875 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-license.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-license.api.mdx @@ -37,7 +37,7 @@ Obtains the status of the current Camunda license Obtains the current status of the Camunda license -
          Schema
          +
          Schema
          An internal error occurred while processing the request. diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-process-definition-xml.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-process-definition-xml.api.mdx index 6275737c95..8d306e5da2 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 @@ -5,7 +5,7 @@ description: "Returns process definition as XML." sidebar_label: "Get process definition XML (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWEtv20YQ/iuD7cVGKVJJnTTlTXCc1K2dGo7TBpB9GJJDcRtyl9mHbEHgfy9mSdqKJCM5JJfCBz1Izs7z+2Y5uxYOF1akc3FhdE7WQkGlVNJJrcRNJHRLBvnitBCpWJAbxF7fS308PxORKMjmRrZhWSouyXmjLLQ7OgEtfDw/i6/VtXqnHYGr0IGrpAVSRaulciAtoII51m2FUBI6b+jmIMl102pFytmE0NSrCeasPAly/fdkkLZxUxwCqgKUdkAKs5oK0AqOsfGqQMhrbx0ZC9o70CW4iiDTd/G1uqoI5qPYK5hdnMLB5cn7q0P4a0lmKekWWlywP9hKO3Fa1zbJe/kJtnJiyLqdGxM9LI6b4qfPnsyKHx1ygpayIAulN64iAwU5lLUN+UnTVGlH7NOPSk+DK8gIrM/+pdyB05BXqBZ0raSC0rMwGKoJLbFPaZpeKxGJFg02xAkU6XwtFDYkUtFuQ+NPWolISEZEi64SkTD02UtDhUid8bQNG849WisXigr4RKuxMrswiuC2knkFmDvLkELwSn72BLIg5WQpyUCpTQ+sYXksImHzihoU6Vq4Vcs+S+VoQUZEotSmQdffenkkuu6G3bWtVpYsr3g+nfLPrssfz88e95TLZX0oRenregUmcIOKOGQy18qRcsEjunPJXVPz/x0/rTNSLUTXdV0knk+P9nuyx/wtWii1VwVk3kGhyQZOVLikgYh7vGhr5Kp9zY+jxzKyxw+uPFkHJcqaihjOtaER7YCGRioUIFVI5Zh7yHSx2nET27aWeehMSWt0VlPz879Wbzn9pWczuOglB7uge9QjO8qCWW99fvnmGH47evHrzUHlXGvTJLm9vY1NmU+okE6bWJtFYsqcPyx3GMNVRYZGOmFRhKCx5qhaMk6SBdtSLkuZM8sGrARnOLN9fEOOe7eYZveLHyqwXYkN4HojdzrxDD5cno6sWEm12DUd1pToa9aBmfYuzWpUn0QXCSddvdfothXrmwbNJmM3DHSRsA6dt18l3i/Pd3Qznn6/urqAXgXkuqAvuM2GOIhGKtn4RqRH02kkGrzrr15Opx3r5Ip/QyQK6K6tUQVobYcjFTQPuA2BSWUdqvx7VUYbuZDbdmPRPdRCDCB+3Uc0MvGRjlBQLm3oA9JVQedCLkmF7sqtgXtBaA9PjHxi5BMjvx8jX+zbG2cKOMuGcUjGaAM6z70xVPD7TH2/cY62h03ziWtPXHvi2mNc6yLRkKv0MKCG8cRVIhXJwKbJw2uoTdb7ppQuvHdHwpJZjkONN7VIxbqnU5cmybrS1nXputXGdcmSa7VEI3m2DKXlxz3tRjjVOsc63N5XVn7Ak9MY7sPQyfMmvEVHt7gKaWaTX6p+NX013auVRR/RyLNsH2EPyo1GMaplxu9V2wt/i+IwOFnKvZFu9Z6X9enJCA2ZmefS3INlsBe083UvJKLhz5sRQn/8cxVQIFWpw/IBDbuOcFXI2N7zafxsF3kXp4FAuW4ar0IXVYv+9Qg3AhtOCJhatcxJ2YDxYdIdxc76J/B3bxGexVyUHjlj81xIV/ksznUzngrc/2a1zpIGpUoGEzY5np1/ePd6Njk7PT559/5k8iyexu7OheBbbV2DasOPt+T2zVo8kB6Eif9wO/z1wzbydErzPz+lGTi2MdF3AzjXQ4uciz0tUkQifeQoh7vkTTR0urlYrzO09MHUXce3Q8ZEOr95aIyhkxbShtKKtMTabp/6bCLy4HI4HzqEH38WtDc9w01Uq9Dea89XIhKfaPXYCVd300WiIizIhHB70VmeU+s2lNwf73B/vN+w3p5wY/sPJMiDdA== +api: eJztWUtz2zYQ/is76MWeUqScOGnKm8ZxUrd26nGcNjOyD0tiKSIBAQYAZWs0/O8dgKSs6DHJIbl0dNCD5GKf37ckF0vmcGZZOmXXRudkLXAqhBJOaMXuI6ZrMugPLjhL2YxcL/Z6JfXx6pJFjJPNjajDspTdkGuMslBv6QS08PHqMr5Td+qddgSuRAeuFBZI8VoL5UBYQAVTlHWJUBC6xtD9UZLrqtaKlLMJoZGLEeZeeRLkuu9RL23jih8DKg5KOyCFmSQOWsEZVo3iCLlsrCNjQTcOdAGuJMj0Y3ynbkuC6SD2CibXF3B0c/7+9hj+npOZC3qAGmfeH6yFHTmtpU3yTn6EtRgZsm7rxEj3i+OK//KlIbPwl459guaCk4WiMa4kA5wcCmlDftI0VdqR9+lnpafCBWQEtsk+Ue7AachLVDO6U0JB0XhhMCQJLXmf0jS9UyxiNRqsyCeQpdMlU1gRS1m9CY2/aMEiJjwianQli5ihL40wxFnqTEObsPG5R2vFTBGHz7QYKrMNowgeSpGXgLmzHlIIjRJfGgLBSTlRCDJQaNMBq18es4jZvKQKWbpkblF7n4VyNCPDIlZoU6HrTr08ZW177921tVaWrF/xbDz2P9suf7y63O+pL5dtQimKRsoFmMAN4nHIZK6VI+WCR/ToksdK+v9bflpnhJqxtm3biD0bn+72ZIf5B7RQ6EZxyBoHXJMNnChxTj0Rd3hRS/RV+5Yfp/syssMPX3myDgoUkngMV9rQgHZAQwMVOAgVUjnkHjLNF1tuYl1LkYfOlNRGZ5KqXz9ZveH0155N4LqT7O2C7lCP3lEvmHXWpzdvzuD30xe/3R+VztU2TZKHh4fYFPmIuHDaxNrMElPk/uPljmO4LcnQQCfkPASN0kdVk3GCLNiaclGI3LOsx0pwxme2i6/PceeWp9lq8VMFNiuxBtzGiK1OPIEPNxcDKxZCzbZNhzUFNtLrwEw3Ls0kqs+sjZgTTu40umnFNlWFZp2xawbaiFmHrrHfJN7zZ1u6PZ7+uL29hk4F5JrTV9z2hnwQlVCiaiqWno7HEavwsTt6OR63Xqev+HdEooAea4kqQGszHKGgesJtCEwo61DlP6oy2oiZ2LQbs/apFqwH8esuooGJJ7uZONBOYv7Zwhyl4ICNK73Vjj6QGwpOoAwt8kCyA8kOJNtNsufbeH+jTSY4JxXgueKb6G6zKKV+IH7g1YFXB17t59Wex1lOubDhIVa4MuiciTmp8Grgn2s9w8Kz7eFx8sDIAyN/HCNf7HqxmyjwWTYeh2SMNqDzvDGGuH8Zl6u3vsF2fys8cO3AtQPX9nGtjVhFrtT9dDXM1lzJUpb0bBo9zVBsstw1YmvD0Chilsx8mMg1RrKULTs6tWmSLEttXZsua21cm8x9reZohB+MhtL6yx3tBjhJnaMMp3eV1V/wY78h3KeJqR+Wwlt09ICLkGZv8mvVr8avxju1etE9Gv0gtouwA+VaoxjUesbvVNsJf4/iMPWzlDdGuMV7v6xLT0ZoyEwaX5oVWHp7Qbs/7oRY1P95M0Doz39vAwqEKnRY3qNh2xFfFTK283wcn2wj7/oiECjXVdWo0EXVrHs8wrXA+vG2p5YUOSkbMN6PaQexy+4K/NNZhJPYF6VDztA8Z8KVTRbnuhpG2qvfTOosqVCopDdhk7PJ1Yd3ryejy4uz83fvz0cn8Th2jy4EX2vrKlRrfrwlt2tQ6KepR2FcfbwZ/vLpNnLYYvifbzH0HFsbR7c9OJd9i5yyHS2SRSzdsw/hu+R91He6KVsuM7T0wci29adDxlg6vX9qjKGTcmFDaVlaoLSbWxbriDy66Tc3juHnb2TsTE9/EtUitHfZ+CMWsc+02Lc90963ESsJOZkQbic6yXOq3ZqS1d6E74+rG9bbc9/Y/gPjIdgy sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -64,6 +64,14 @@ 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. 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 103e1125f7..857ffa83c6 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 @@ -5,7 +5,7 @@ description: "Returns process definition as JSON." sidebar_label: "Get process definition (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zYQ/is76MWeUqSSOGnKm8ZOUqeJ47GV9iD7AJFLEQkJMHhI1mj43zsLkpYsMrE9k/bQ8cEPEotvn9+C2A2zfGFYPGPnWiVoDKSYCSmsUJJdB0xVqDk9nKYsZgu0rdjJVipgKZpEi8o/xewCrdPSQNUDBG7g/eWns/BKXskzZRFszi3YXBhAmVZKSAvCAJcw40WVc8iQW6fx+iBKVFkpidKaCLku1iOeEHrk5Zrfo1bahGV6CFymIJUFlHxeYApKwjEvnUw5JIUzFrUB5SyoDGyOMFc34ZWc5gizTuw1TM5P4eDizeX0ED4tUS8FrqDiC7KHV8KMrFKFiZJGfsQrMdJobO/FSLWbwzL95ZtDvaalQ4rQUqRoIHPa5qghRctFYXx84jiWyiLZ9G+Fp+RrmCMYN/+CiQWrIMm5XOCVFBIyR8KgsUBukGyK4/iK0l1xzUukALJ4tmGSl8hiVu0Xxp+4ZgETVBIVtzkLmMZvTmhMWWy1w/26odhzY8RCYgpfcd1lpl9HAaxykeTAE2uopjg4Kb45BJGitCITqCFTuims/vaQBcwkOZacxRtm1xWZL6TFBWoWsEzpktvm1asjVtfXZLmplDRoaMfz8Zj+9K0fqHhhwDifiswVxRq0JwemoY9koqRFaQmNV1UhEk+16IshyE3fSOUTRSnQREwrGoMGQz9oIYX1nsjcG4+gzfg+/hkvscnZfdjGaiEXhKTRKKcTPBtEvGhXgRQ+0O4t9hK1EU0g78L+1Sw8zNbhOLx4vqNhyhffV2L54rFB6aWTeu8+fr9dw+nJYzVZlFzaIfipX3k0JGEKW+DWwB0vLJasrknm6BEMoqaBxkLGRYFpCB+Vxq5RAtfYddEUhPT9ouMqzFW6/iHPKq3mBZa/9vl217IJnDeSrV5oeEitpxGcN9pnF2+P4fejl79dH+TWViaOotVqFeosGWEqrNKh0otIZwn9kNxhCNMcNXadmKepd5oXsGU4mAoTkYmEGnTbEL0xFPvGvx+3h2Z1s5ernYJ2WvRO8Ql8vjjtGupayEVftd+TcVcQBp8rZ+N5weVXtq2CvtJ9LcaVJde7zX5HQR0wY7l15t5G/eJ5D5vq6Y/p9BwaCEhUereJkCJyohRSlK5k8dF4HLCS3zRPr8bjmjAp4w/wRALeVAWXvrT23RESym3deseENJbL5GdlRmmxEPt6w31G0suTxqOOiUcPZuJK2NyjL8QSpT9LVtz4j6xMOfnEzSduPnHzJ3Lz5dApOZFAUdZUh6i10qCSxGmNKX0UF7fE7XS3x+cT15649sS173GtDliJNlftjMPfcW3OYha1bBptj0ETbYbuWzVdKlEvu1ux0wWL2aahUh1H0SZXxtbxplLa1tGS8rTkWtBwwqeVlhvKdaVUqIQX/vVQSmlB3l65ELZTCxpYwDtuccXXPsSk8i706/Hr8SAqiX4HkYYhjYdNQe40iQ6W2D4I2wg/BNhftw0mTgu7vqRtTXjmyDXqiaO03BZKq8+j03MjxIL2n7dd+bz/e+orQMhM+e1tJfQNYTv3RjYOn/Wr7vzUkydRZemk76By0Xwa8R3H2hET0aoQCUrj67sdlXRiH5oV6O6Kz0JKSlM5XeNcCJu7eZioshsr3f6dF2oelVzIqFVhouPJx89nJ5PRh9PjN2eXb0bPwnFob6x3vlLGllzu2PEO7dB33oEfFx3uu77ZHh9PM77/+4yvJZjFGxtVBReSKO8rc9P2xhkb6I0sYPHgNOo6aBvcjG02c27wsy7qml77WLF4dr3th76BpsL4pLI444XZnxbuFuPBRTtXPIT/dIY4GKP2JZdr3+ALR08sYF9pJDc8qauv64DlyFPU3vNGdJIkWNkdkN6EkDrl7bH17g21uH8A3rdW7A== +api: eJztWd9T20YQ/ld2ri8wtSWTkDTVGwMkJU0IA6R9AB7W0sq6IN0pdycbj8f/e2dPEjaWCDCT9qHjB7Cl2/v257eS9xbC4cSK6EqcGR2TtZBQKpV0UitxMxC6JIN8cZKISEzINWJHK6mBSMjGRpb+KhLn5CqjLJQdQEALHy++nAbX6lqdakfgMnTgMmmBVFJqqRxIC6jgCvMyQ0gJXWXoZieMdVFqRcrZkNDk8yHGjB56ufr/sJG2QZHsAqoElHZACsc5JaAVHGJRqQQhzivryFjQlQOdgssIxvouuFaXGcFVK/YODs5OYOf8+OJyF75MyUwlzaDECduDpbRDp3Vuw7iWH2Iph4as69wY6mZzUCS/fK/IzHlplyM0lQlZSCvjMjKQkEOZWx+fKIqUdsQ2/VvhKXAOYwJbjb9R7MBpiDNUE7pWUkFasTAYygktsU1RFF1zuks0WBAHUERXC6GwIBGJcrMw/qS5GAjJJVGiy8RAGPpeSUOJiJypaLNuOPZorZwoSuCW5m1munU0gFkm4wwwdpZrCqFS8ntFIBNSTqaSDKTa1IXV3R6IgbBxRgWKaCHcvGTzpXI0ISMGItWmQFffersvlssbttyWWlmyvOPVaMQfXet7Kl5asJVPRVrl+RyMJwclgY9krJUj5RgNyzKXsada+M0y5KJrpPaJ4hQYJqaTtUG9oe+1kMP6RGSejMegyfgm/ikWVOfsKWzrjFQTRjJkdWViOu1FPG9WgRU+0+4V9pSMlXUgH8L+VS88z9b+OLx+tabhEiePK3E4eWlQOunk3ruJ323XcHL0Uk2OFCrXB3/pV14MyZjS5bQycM0LR4VYLllm/wUM4qZB1kGKMqckgM/aUNsoAQ21XTQBqXy/aLkKY53Mf8iz0uhxTsWvXb49tOwAzmrJRi/UPOTWUwuOa+1X5+8P4ff9N7/d7GTOlTYKw9lsFpg0HlIinTaBNpPQpDH/sdxuAJcZGWo7MSaJdxpzWDEcbEmxTGXMDbppiN4Yjn3t34/bQ7262MjVWkFXRnae4gfw9fykbahzqSZd1X5PilXOGDjWlYvGOapbsaqCrtJNLbYqCjTrzX5NwXIgrENX2Scb9etXHWyupz8uL8+ghoBYJw+bCCtiJwqpZFEVItofjQaiwLv66u1otGRMzvgzPFFAd2WOypfWpjtSQbGqW++YVNahin9WZrSRE7mpN9hkJN88qj1qmbjXz8SWdjnGtxammMsEsHIZa63pA7EhbwTmNtiSbEuyLckeJdnrbr2/12Ysk4SUL897vknrf7VgnusZJVtebXm15dXjvNp/9mvkTLrMo0/klJT/ITTDmmuprtT2xXLLzS03fyI33/T9xDtQwFE2XIdkjDag47gyhhKe6OT3xG11Nw/FLde2XNty7TGuLQeiIJfpZkDvB7QuE5EIGzYNV49BGy76hoVLnoiSmbYj3crkIhKLmkrLKAwXmbZuGS1KbdwynHKepmgkT9Z9Wnm5plxbSrmOMfe3+1LKC+p+XkiwGrnztB0+oKMZzn2IWeVD6Hejd6NeVBZ9BJEn+bWHdUGuNYkWltneC1sLPwfYz4otxZWRbn7B2+rwjAkNmYOK03JfKI0+j87XtZAYNF/et+Xz8e9LXwFSpdpvbyqha4hYG3qKUbDXrbqzE0+eWBdFpXwHVZP61QjXHGvOR5hWuYxJWV/fzZy/FftUr0A76NwLOCl15bSNcyJdVo2DWBftmcj95zjX47BAqcJGhQ0PDz5/PT06GH46OTw+vTge7gWjwN0573yprStQrdnxgVzfe96OP+vY3XR9sXp8bA+o/u8HVA3BHN25sMxRKqa8r8xF0xuvRE9vFAMR9R6l3AyaBnclFosxWvpq8uWSb/tYiejqZtUPfQNNpPVJFVGKud086lovxp3z5lBsF/7TA7DeGDU3Uc19g88rvhIDccvnSf3HTMub5UBkhAkZ73ktehDHVLo1kM7xFnfK+8fWh2Nucf8AmTarqg== sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -52,6 +52,14 @@ The process definition is successfully returned. 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. 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 f642831e18..f6a66b8c97 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-process-instance.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-process-instance.api.mdx @@ -5,7 +5,7 @@ description: "Get the process instance by the process instance key." sidebar_label: "Get process instance (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,7 +48,7 @@ in future releases. The process instance is successfully returned. -
          Schema
          +
          Schema
          The provided data is not valid. @@ -56,6 +56,10 @@ The provided data is not valid. 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. 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 2b9cd9e37e..7e5d0769e9 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 @@ -1,11 +1,11 @@ --- id: get-role title: "Get role" -description: "Get a role by its key" +description: "Get a role by its key." sidebar_label: "Get role" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zYQ/is7OCVTRpRTJ0150zhO6uYxHttpD64PILgSEYMAAyxtczT8750FSFuxZCeH3uqDhiKx++3rWxDLtSC5CqI4FyfOoLjIhGvRS9LOHlWiECukuJCJCoPyuuUVUYj3SCDBO4NQ9qApwCX2/1iRiVZ62SChZ9S1sLJBUQiW/IC9yIRm9VZSLTLh8VunPVaiIN/hfRtnNSYLl9jPRCaCqrGRolgL6lsG1ZZwhV5kYul8Iyk9er0vhuGCwUPrbMDAGi/nc748YEAHCJ1SGMKyM6YHj9R5ixVbVc4SWmJt2bZGq5ic/GtgiPWGU99jc9YgoPSqhskT0IQNY47+u/IrKuKcec466eTrJfY7g3w8O/dTkI2pvwUK5LVdPYzD4jPWkyHolcXqEzYl+g/Yhw0U6b3sd4IEJHBLdifwtYnaASY0IAc02mJ/ORfh54o5ZII0GRzTekTY8NMhE/vzvQfKit86DARGqssAV9LoCmRHNVoaKwjKY8W30oRH6tx6VxpsfvlRvRdwnCShQpLaQCouyABJsMQKtIXzk3cH8Pv+q98untVEbSjy/Pr6euaX6gVWmpyfOb/K/VLxj+Wez+CsRo/QyB5KBFlVmm1KA3e0gdCi0kutpiyPbgMndxb78nHOpdVtrtzWovN6q+oL+HJyBDpmcdlru9o2HXWWsjOMIUvXUVEaaS/FXU1/RNAFhK5ppO+ZVdsGhkwEktT9mEu/vtzJ2z/Ozo4hQYByFcLSeaBah8kQB9Foq5uuEcX+fJ6JRt6ku9fz+cCYXPGfiMQC3rRG2kTAe+FoC43zOPInBqZtIGnVf1UZ5/VK37c7E5v9NZL4bYpoarL9R/bOa011xFvpK7Tc/nAtA1hHsHSdfWwPfeqtp976n/fWq13nkoUFzrJnHqL3zoNTqvMeK7iutYnwfFiZbI8vu8TFp1576rWnXtvutSETDVLtxqkmTipUi0Lk/BoL+XocUQaeNNBfTQNM540oxDr1y1Dk+bp2gYZi3TpPQ37FxbiSXsvSJArycuqriS/GKWni41114wU+e0/xHMims5WEN3ByeHoG7yXhtexjHtnk99Bv5m/mO1FZ9AHExfERpAgT6zZ2ggmWW3r3IT8K/wxwnMECqs5r6k9ZLaWnROnRLzrO/S0bRnsRne+TkMjGP+8mjvz591kss7ZLF9XHcm87wlVBH5Ln89neNrWOj2KHKNc0nY3bpF2l04zcCEyZLhAHlAmjFdoQSTxOtZPYx7QCfyWLsDfjoiTmTLvjSlPdlTPlmlwltdtraVyZN1LbfDQR8oPFpy+f3y5efDw6OPx8evhibzaf0Q3F4FsXqJF2ww+exv2OMX199zZ4ZGIfa0B4Q3lrpLbMiuj8euyR8zi/B5GJYhrkL7KR6OdivS5lwC/eDAM//tah70VxfnHXF7GRKh34fyWKpTTh/rS/6eqzk/G7wHO4P+Xu9HUaTW0fe9F0fCeyNEjffnoYLoZM1Cgr9NGftLpQClva0Nsa8pnHtzvH+0Mm4L/i2+bS +api: eJztWE1z2zYQ/Ss7OCVTRpQTJ0150zh26uZjPI7THlwfQHAlIgYBBlha5mj43zNLkLJiyY4PvVUHDUUCePv1HkjsSpBcBJFdinNnUFwlwtXoJWlnTwuRiQVSP5CIAoPyuuYRkYn3SCDBO4OQt6ApwDW2k3+tSEQtvayQ0DPsSlhZocgET/2ArUiE5vW1pFIkwuP3RnssREa+wftGLkqMJhhbJCKoEispspWgtmZQbQkX6EUi5s5XkuKjN4ei664YPNTOBgy84uV0ypcHDOgAoVEKQ5g3xrTgkRpvsWCryllCS7xa1rXRqs9O+i0wxGrDqZ+xOW0QUHpVwugJaMKKMQf/Xf4NFXHOPKeddPT1GtudQT6enfspSIbUr4ECeW0XD+Pw9AmvkyHohcXiE1Y5+g/Yhg0U6b1sd4IEJHBzdifwtepXBxjRgBzQYIv95VyEpxWzSwRpMjik9ZSw4qddIg6nBw+UFb83GAiMVNcBbqTRBciGSrQ0VBCUx4JvpQmP1Ln2LjdY/fares/gLM6EAklqA7G4IAPEiTkWoC1cnp8cwR+Hr3+/elYS1SFL0+VyOfFz9QILTc5PnF+kfq74x/OeT+CiRI9QyRZyBFkUmm1KA3e0gVCj0nOtxiwPbgMnN+rycc7F0W2urGvReL1V9Rl8PT8F3Wdx3mq72Dbdr5nLxjCGzF1DWW6kvRZ3Nf0VQWcQmqqSvmVWbRvoEhFIUvNrLr16uZO3f15cnEGEAOUKhLnzQKUOoyEOotJWV00lssPpNBGVvI13b6bTjjG54k+IxALe1kbaSMB74WgLlfM48KcPTNtA0qr/qjLO64W+b3ciNvU1kPhdjGgU2attvp84n+uiQNvTc603HcA6AmmMWz66f+51tdfV/15Xh498kyw1lT3eQt+g5dcqLGVU19w1dq+tvbb22npQW693fe/PLHCWPfMQvXcenFKN91jAstSmh+dDwGh7eKlFLu61ttfaXmvbWusSUSGVbmgX9B0AKkUmUn6NhXQ1HP07PsGjvxkbA403IhOrqJcuS9NV6QJ12ap2nrr0hotxI72WuYkU5OGoq5Evxilp+se76sYDfKYd4zmSVWMLCW/h/PjLBbyXhEvZ9nlkkz9Dv52+ne5E5akPIM7OTiFGGFm3sROMsCzp3YfnfvJTgPveRkDVeE3tF14W05Oj9OhnDed+zYbBXo/O93GSSIY/JyNH/vrnoi+ztnPXLx/Kve0IVwV9iJ5PJwfb1Do77RWiXFU1tt8m7SJ+zciNwJRpAnFAiTBaoQ09iYdu0TjtYxyBv6NFOJhwUSJzxt1xoals8olyVarisvU1Ny5PK6ltOpgI6dHs09fP72YvPp4eHX/+cvziYDKd0C31wdcuUCXthh/c5vI7+l+ru7fBY62woQiEt5TWRmrLtOi9Xw0iuewbY0EkIhs7ZFfJwPRLsVrlMuBXb7qOH39v0Lciu7y6E0avpEIH/l+IbC5NuN9G2/T12fnQcHsO99tHO30dez627cVoGr4TSexQrXt63VWXiBJlgb73J47OlMKaNtZtdc+YyOut4/0xM/AHOuUOvw== sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -29,7 +29,7 @@ import TabItem from "@theme/TabItem"; -Get a role by its key +Get a role by its key. ## Request @@ -41,6 +41,10 @@ The role is successfully returned. 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. 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 10d5c3985b..121501c86d 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 @@ -5,7 +5,7 @@ description: "Get the start form of a process." sidebar_label: "Get process start form (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/Ss76MWeUqScOmnKm+KP1G3iemynPcg+gORSREwCLLCUrNHwv3cWpGRbH0k6k56qgy0RWOxiF+8txLcQJCdOxGNxZU2KzkGGudKKlNHiPhCmRiv54SITsZgg3ZC01NueG1uJQGToUqtqvyQW75GACgTHhpAbW4HJQULdrQnv9J2+NIRAhWRL5QB1VhulCWaqLMHocg4WqbEaSqUfMPNeXAi3L4wzgw60IXBNXRtLgFWCWbYyv9PnjaUCbWUsBmuRlAOpYSzLupCQo6TG4v1BlJqqNho1uQilLecDmfKmI2/X/R/01i6sskOQOvN7QC2TEjMwGk5k1ehMQlo2jtA6MA1xCbgoiXkM7/RtgTBemr2F0dUFHFyf3dwewh9TtFOFM6jlhPcja+UGZEzporSzH8haDSw62hgYmH5xWGU//N2gnfPUIRd+qjJ0kHflgAxJqrI7iTiOtSHkPf1X5ankHBIE1ySfMSUgA2kh9QTvtNKQN2wMFkuUDnlPcRzfaRGIWlpZIRdQxOOF0LJCEYseRacrkLrfcS4CoRh6taRCBMLi342ymImYbIPr+OTi917gAeehCIRLC6ykiBeC5jVHUZpwglYEgqEkqRt6cyza9p79u9poh45XvBoO+WMzhke+cuAaX6O8KVewxiz0KaZGE2ri9bKuS5V6pkWfHTtZbG7L+ApybSzzklS3BY7EVdi6jQecL8HHdpzuV5MMBKGWmpjz23x2s3BxusOzI6v0hP0kdaV3eXl39fHyW3w8lWHTRze3w0VfrjYQU7ROdUXd9NFP/usqcZkUlWzEjfCCsBJty8OvhsfbQy1xN5MOctPoLICkIdBmhRbpnEmVJMxgpqgARQyVNhDH23D2TmbAaEdHu+FUW5OUWP24CauXzkZw1Vn2DQK6+oHkO4ENE8xAaRhfn5/AL8evf74/KIhqF0fRbDYLbZ4OMFNkbGjsJLJ5yn9sd8idGy0uO4HMMk9dWcITkMHVmKpcpdwgqKuV3wyfQ0eXL7Ogm12s4efZsTVWbVxWI/h0fQEqQ00qnys92Qzt1+SyKdmHTExDcVJK/SCezn8z6HoU11SVtCsmvgzAGCdJjftqB/rp1YZvhtWvt7dX0LmA1GQew9191wfiJCqlVdVUIj4eDgNRycfu6c1w2LJPPvFvyEQDPtal1B5a6+koDXzX9vjxiSntSOr0e52MsWqi1uOGL7jYg/i0y6gj5PHwaDshe/JAKdMHB1NZqgxkQwVH7egDqUW/CVm6cE+yPcn2JNtJsi233qWh7qbbU2dPnT11dlDn9bYfdyMNXGXLOERrjQWTpo21/NOwUOXq1+Qydn+XffHVYs+1Pdf+11xrA1EhFaZXs7zOQIWIRdSzafCkf7losVVuaKO8E74c2ulSn2hsKWKx6AjVxlG0KIyjNl6wNNVGUz6tqbSKZSJ/uDzdEW8JqNKksvTD2w6WJ1gEWSb8pB+xdATvJeFMzn2hOeRL12+Hb4dbvXrhbLtHlqW6DMP11/ClW+b8Vrcv38u/5NgrKg7Txiqa3/CyrjwJSot21PDhrODSx/Pe+bkzEkH/5XwJot/+uvU4UDo3fnmPh82NiGfigBiGR5vYu7rwFEpNVTXa91E96d7N5bPEerGPyVWqFLXzKO9Fq6XZh24G/uwVh6OQD6VDzrJ9ThQVTRKmploKfKvPpDRJVEmloz6Ei05GHz9dno4GHy5Ozi5vzgZH4TCkR/LJ18ZRJfWzfbA0u5QgnsmzB164O1xPffF0iexF3b2o+11E3Z7HhI8U1aVUXtryBFj0jXgstjRiEYh4l/Lre/F90PfTsVgsEunwky3blod9zUQ8vn9qv75fZ8r5wxVxLku3rhI/x/7Bda8nH8IW7XhrRv2g1HPf9cuGn0QgHlil3aFht/dtIAqUGVq/wc52lKZY0zMvG0Ix98/Vlfb+jBvfPyUz/SQ= +api: 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 sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -61,6 +61,10 @@ Bad request 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 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 new file mode 100644 index 0000000000..5edc09947f --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/get-tenant.api.mdx @@ -0,0 +1,60 @@ +--- +id: get-tenant +title: "Get tenant" +description: "Retrieves a single tenant by tenant Key." +sidebar_label: "Get tenant" +hide_title: true +hide_table_of_contents: true +api: eJztWMtu2zgU/ZULrlqMYjlt2uloZ6Rpx9MHgtSdWWSyoKhriw1FqiQVRzD078UlJdu1nSYDzNILQ5bI+z6Hgs6Keb5wLLtmM9Rce3aTMFOj5V4aPS1Yxhbo+6WEFeiElTWtsYxdobcS79ABByf1QiH4sBPydvj3AdsRS1jNLa/Qo6VQK6Z5hSxjcc8HbFnCJHmsuS9Zwix+b6TFgmXeNrgbdlYiNFp+bxBkgdrLuUQLZg6+HBKgkE6UWHGWrZhva4omtccFWpawubEV9/HR6zPWdTcU09VGO3Rk8WI8pst+3L6qJXdg++oLcI0Q6Ny8USoUK4z2qD154HWtpAjNTL85crPaSmzHf/TtkFtRwpAPSI8Vee2rMPk3FDSL2tKcvIwZb1p5qOAHG+ha57E6WaCmkWMBZGM1V0Ol07ejAw1L+gmuQzlvpV4cjNQ7IoMRWcZ7gtZTrPs88X4/rS5h3Dm50Fh8wipH+wFbt+WVW8vbg04desLLLbaOrlWwdjB4A292sEQzcE+DElUovcL1QKceK3reJezsIVjV1tzJAgsouOcgHWjj4Y4rWfwCT7U1ucLqt8dwNYHLuBMK9FwqiBAC7iBuzMPc4frq3Tn8cfbq95tnpfe1y9J0uVyO7FycYCG9sSNjF6mdC/rRvucjmJVoESreQo7Ai0JSTK5gA05wNQo5l2Loap82UCtH/+rHkR1W97Gy7nxj5d6UJ/D1ajocD63Ui/3QwWbOG0U+eG4an+WK61u2meBjAJ2Aa6qK23Y4fX4O0CXMee6bx5Hz8sVBnP45m11CdAHCFAhzY8GX0g2BqIhKalk1FcvOxuOEVfw+3r0ejzvySRN/QiUa8L5WXAdo7ZYjNVTGYo+fUJjUznMt/q/JGCsXcjfuiG2zqQfx21jRQKjTw4SiNwg6D4qLWxeZBLzxJUWN9AFhMSTBlTuS7EiyI8keJtnLfby/MzaXRYE6wHPNt/7VxZUySzy+vI68OvLqF7w6e/AjgEg0N40+UuhIoSOFHqTQq0MfVBO9+YpFa40FI0RjLRawLKUK7ul7fYjdv7siFo9cO3LtyLV9rnUJq9CXplcEg6TnS5axNKokLl2tJaiO1De0d4Pa11jFMraKnOmyNF2VxvkuW9XG+i69o4HccSt5riIMaTlya8CMMoKr8PjQ7GiB9KWhpnNeNbrg8AauLr7M4D33uORt6CWF/Nn1m/Gb8UGvtPUBj5PLKcQKI/K2ToPBLdH6sPgUNj/FcdAlHYrGSt9+IbPYnhy5RTtpqP9rRPTxgne6j5tY0v95N+Dkr39mYdRSz00w70e+nwhNBa2LmY9Hp/vwupwGlghTVY0OR6VewFL6EvhWYUI1zlNBCVNSoHYByL0EPGz7GFfg7xgRTkc0lIic4YRcSF82+UiYKhXRbH3NlcnTikud9iFcej759PXz28nJx+n5xecvFyeno/HI3/tQfG2cr7jeyuM9+l7v2y1ztXkn/BfFux+Lx3uf1opLTUAJ9ax66lz3UqhjCcs2+u1N0uP/mq1WOXf41aquo8ffG7Qty65vNnQJ/Cqko/8Fy+ZcuV29fDv/Z1e9sv4cnqiiHyxjEFh1G5irGrpjCbsl+XlLiu5uuoSVyAu0IdG4PhECa79luSeSE+7Xp837CwLsD/VPf2s= +sidebar_class_name: "get api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

          Get tenant

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

          Path Parameters

          + +The tenant was retrieved 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}}>
          + +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-user-task-form.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-user-task-form.api.mdx index dcab849405..70c3381a9b 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 @@ -5,7 +5,7 @@ description: "Get the form of a user task." sidebar_label: "Get user task form (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zYQ/is76MWeUqScOmnKm+LYqZvE9Th2e5B9AMmViAgEGDwkazT8750FKcl6OEmn7ak6+CFisYvd/b6F+C2Y42PL0iG7s2jAcTthDxHTNRruhFaXBUvZGB2t3nI7udCmYhEr0OZG1GTBUvYOHbgSYaRNBXoEHPzSWXyv7tWVdgiu5GQlLKAqai2Ug5mQErSSczDovFEghZpgEfzYGG43jAuNFpR2YH1da+MAqwyLYmV+ry68cSWaShuMtiIJC1zBkMu65DBC7rzBh6Mk11WtFSpnE+RGzns8z9HaJNi1v3udtY2r4hi4KsIZUPFMYgFawRmvvCo45NJbh8aC9o6KQAXJ9GN8r25LhOHS7DUMri/h6Ob80+0x/D5FMxU4g5qP6Ty8FrbntJY2yVv7Hq9Fz6B1Ow96utscV8UPXzyaOS0dQ230VBRoYdSWAwp0XEgbOpGmqdIO6Uz/VXkqPocMwfrsM+YOnIa85GqM90ooGHkyBoMSuUU6U5qm94pFrOaGV0gFZOlwwRSvkKXMd7B7j3MWMUFgq7krWcQMfvHCYMFSZzxuI5JKvsIgTHAes4jZvMSKs3TB3Lwm70I5HKNhESMIcdc+enXKmuaBIthaK4uWdrzo9+nPbpSAeWHB+lCbkZcrOGMRh9RyrRwqR/t5XUuRB2Ylny05WeweS4fKUU0M8dCJ9ggUieqw9xgTnC9BR3aU7jeTjJhDxZUjju/z2a7C5dtnPFtnhBqTn6yu1HNe3lx/vPoeH+sy7Ppo155x0ZWridgUjRVtUXd9dIt/u0pUJuEkGdHwu3RYsaahxy/6p/tDrZE34xZG2qsigsw7UHqFF26tzgV3WMBMuBKEI7A0ETvdh7Q3vABCPFr3PKBqozOJ1Y+7wNp0NoDr1rIbDdBWELiF1jDDAoSC4c3FGfxy+vLnh6PSudqmSTKbzWIzyntYCKdNrM04MaOcfsjumGY2GlzOAF4UgmJyCWsog60xFyOR02igTnTHBupES5iv86BdXWwh6EnjvBE7V9QA7m4uQRSonBjNhRrvhg57RtxL8sEz7V2aSa4mbI2A3aDbUayvKm5WXNwMQCh33Hn7zRn004sd3wSsX29vr6F1AbkuAorbm64LRElUQonKVyw97fcjVvHH9tOrfr8hn9Tx78hEAT7WkqsAre10hAK6ZTv8hMSEso6r/N/qjDZiLLbjxhts7ED8ts2opeRp/2Q/JTvygOT5xMKUS1EA966kqC19IDcYDsGljQ8kO5DsQLJnSbbn3rvSrr3pDtQ5UOdAnWeo83Lfl7uBAqqyIRyiMdqAznNvDH01LIUM7undYhm7u8u++nJx4NqBa/9rrjURq9CVutOvgsLgSpayhN7OevR2ZpPFE32hSUattmXRTJcyhDeSpWzRsqdJk2RRauuadEEKVJNMqTVTbgSpQaGTtNyybIkeqXMuw+N9XaQF0jqW2a1lIlKI4B13OOPzUFUKuen6df91f6/XoI/t90jqU5thvP3WvXRLBN/rdvM1/GuOg4BiMfdGuPkn2taWJ0Nu0Aw8dWKFjS5e8E6fWyMWdf9cLBHz25+3oelCjXTY3jV/9yDsiRbA+vHJLtCuLwNfcl1VXoWhqcbtizh/klin6RGTpMhR2QDpTptamn1oV+CPTmA4iakpLXKWs3IsXOmzONfVUsdb/c2kzpKKC5V0IWxyNvh4d/V20PtweXZ+9em8dxL3Y/foQvK1tq7i6sk5SH1dKw5BXzgK2tzxdtqL9W1x0GwPmu0/1mw7/jp8dEktuQj6VQD+opu2Q7aetixi6aaeGwbuQ9QNzSFbLDJu8c7IpqHHoUAsHT6sZ2wYyoWwoZMsHXFpt7XfpyA/uulU4mPYqwjvTaB7yNU8DHfp6ROL2IS01w1FunloIlYiL9CEg7UWgzzH2j3ZuyP60nBcXU7vzmmq/QXGSdwr +api: eJztWUtz2zYQ/is76MWeUqScOGnKm+LYqdvE9Th2e5B9AMmViAgEGDwkazT8750FKcl6OEmn7ak6+CFiuYvd/b6l+GHBHB9blg7ZnUUDjtsJe4iYrtFwJ7S6LFjKxuho9ZbbyYU2FYtYgTY3oiYLlrL36MCVCCNtKtAj4OCXzuJ7da+utENwJScrYQFVUWuhHMyElKCVnINB540CKdQEi+DHxnC7YVxotKC0A+vrWhsHWGVYFCvze3XhjSvRVNpgtBVJWOAKhlzWJYcRcucNPhwlua5qrVA5myA3ct7jeY7WJsGu/d3rrG1cFcfAVRH2gIpnEgvQCs545VXBIZfeOjQWtHdUBCpIph/je3VbIgyXZm9gcH0JRzfnn26P4fcpmqnAGdR8TPvhtbA9p7W0Sd7a93gtegat27nQ093NcVX88MWjmdPSMdRGT0WBFkZtOaBAx4W0oRNpmirtkPb0X5Wn4nPIEKzPPmPuwGnIS67GeK+EgpEnYzAokVukPaVpeq9YxGpueIVUQJYOF0zxClnKfAe733DOIiYIbDV3JYuYwS9eGCxY6ozHbURSyVcYhAnOYxYxm5dYcZYumJvX5F0oh2M0LGIEIe7aS69PWdM8UARba2XR0h0v+n36sxslYF5YsD7UZuTlCs5YxCG1XCuHytH9vK6lyAOzks+WnCx2t6VD5agmhnjoRLsFikR12LuNCc6XoCM7SvebSUbMoeLKEcf3+WxX4fLdM56tM0KNyU9WV+o5L2+vP159j491GXZ9tGvPuOjK1URsisaKtqi7PrrFv10lKpNwkoxo+F06rFjT0OUX/dP9odbIm3ELI+1VEUHmHSi9wgu3VueCOyxgJlwJwhFYmoid7kPaW14AIR6tex5QtdGZxOrHXWBtOhvAdWvZjQZoKwjcQmuYYQFCwfDm4gx+Pn3108NR6Vxt0ySZzWaxGeU9LITTJtZmnJhRTj9kd0wzGw0uZwAvCkExuYQ1lMHWmIuRyGk0UCe6bQN1oiXM13nQri62EPSkcd6InUfUAO5uLkEUqJwYzYUa74YO94y4l+SDZ9q7NJNcTdgaAbtBt6NYX1XcrLi4GYBQ7rjz9psz6OWLHd8ErF9ub6+hdQG5LgKK2yddF4iSqIQSla9YetrvR6zij+2n1/1+Qz6p49+RiQJ8rCVXAVrb6QgF9JTt8BMSE8o6rvJ/qzPaiLHYjhtvsLED8bs2o5aSp/2T/ZTsyAOS5xMLUy5FAdy7kqK29IHcYNgElzY+kOxAsgPJniXZy128X2iTiaJAFeC54ptov7NzKfUMiwOvDrw68Op5Xu35PnmlXfsN8kCdA3UO1HmGOq/2vTQNFFCVDeEQjdEGdJ57Y+iVqxQyuKd39mXs7pn11Zf2A9cOXPtfc62JWIWu1J0uHJQ7V7KUJaR69Ej1sMniiW7XJKNWM7Zopkt5zxvJUrZo2dOkSbIotXVNuiBlt0mm1JopN4JU1tBJWm5ZtkSP1DmX4fK+LtICaYjL7NbyKymv8J47nPF5qCqF3HT9pv+mv9dr0J33eyRVt80w3lazlm6J4HvdbspbX3MchEmLuTfCzT/RbW15MuQGzcBTJ1bY6OIF7/S5NWJR98/FEjG//nkbmi7USIfbu+bvboQ90dhYPz7ZBdr1ZeBLrqvKqzA01bgVuPiTxDqtnJgkRY7KBkh3mu/S7EO7An90wt1JTE1pkbOclWPhSp/Fua6W+vjqbyZ1llRcqKQLYZOzwce7q3eD3ofLs/OrT+e9k7gfu0cXkq+1dRVXT/ZBpxprJS/odkdB8z7eTnuxfloczkIOZyH/+Cyk46/DR5fUkougCwfgL7ppO2Tracsilm6ek4SB+xB1Q3PIFouMW7wzsmnocigQS4cP6xkbhnIhbOgkS0dc2u0zlacgP7rpTl+OYe9Jy94EuotczcNwl54+sYhN6Exj46SneWgiViIv0ISNtRaDPMfaPbl35zCFhuPq4fT+nKbaX2puA7w= sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -61,6 +61,10 @@ Bad request 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 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 1c72e1d10c..11fb14b29a 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-user-task.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-user-task.api.mdx @@ -5,7 +5,7 @@ description: "Get the user task by the user task key." sidebar_label: "Get user task (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,14 +48,22 @@ in future releases. The user task is successfully returned. -
          Schema
            customHeaders object
            +
            Schema
              customHeaders object
              Custom headers for the user task. -
            +
          The provided data is not valid. More details are provided in the response body. +
          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. 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 4a62be5bcb..496ec60376 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 @@ -5,7 +5,7 @@ description: "Get the variable by the variable key." sidebar_label: "Get variable (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWFFz2kYQ/is71xd7CginTprqjTpOSpu6Hoc4D9gPh7Sgi0936t0KzDD8986eJCwDdjyd9qXlwQZ0e9/u7e63kr6VIDnzIh6La+mUnGgUtx1hC3SSlDXDVMRihrRZ7IgUfeJUwasiFh+QgDKEeW0Ak+Xj33e47N2YG3NhCYEyyebKA5q0sMoQKA/SwFjqIpMwRUmlw9ujKLF5YQ0a8hFKp5ddmSTofRTsqv/d2tr38vQYpEnBWAI07DYFa+BM5qVJJSS69ITOgy0J7DTEN7H3vRszyhDGjdlbGFwO4ejq/NPoGP6Yo5srXEAhZxyPLJTvkrXaR0ll35WF6jr0tHOha+vNvTz97s8S3ZKXjqFwdq5S9DAtHWXoIEWSSvuQnziOjSXkmP6t9ORyCRMEX06+YkJAFpJMmhneGGVgWrIxONQoPXJMcRzfGNERhXQyR06giMcrYWSOIhZNgX/DpegIxb1QSMpERzj8s1QOUxGTK3G7YUbbzSE6wicZ5lLEK0HLgsGVIZyhEx0xtS6XVF16cyrW61t24AtrPHre8arf549nnCgPvgzpmZZaL8Ehlc5g2gunS6whNMQYsii0SkLfR189A61aoT320BACPEqXZNDEBIow5zPVJ7Eh15xFx6QiVUXdzt7e6O9wCVPrKrI01i3cpzPUqSu0jXohc6y6fz+iJ6fMjPfPpS73AFzz5ZchcKKv96O8L7WG+cuhfGKL59NUMzoYPof5XMoKZ7lBhsaTNMmL/NVbQNV7/q5rQiMN8aDdcRhWYPjuZZlSfuRKk0jCPVhfMgwjp5rNnH3lgRp7sI6HZwt2Yq1GacSaI1SksdXzQ8JcrNe8dLqPfT/LFHgIoKenCVY4O9GYf/8tog3gsrKspyVUjALpoTKcYArKwPjq/Rn8dPr6x9ujjKjwcRQtFouemyZdTBVZ17NuFrlpwn9sd9yDUYYOm7Eo01SxT6nhgavgC0zUVCU8Leuqh2A4TdUAeZ7o1epqq1qtPiid2rmpDuDz1RBUiobUdKnMbNd12DOVpWYMObElxRMtzZ14qNeu020vvsxz6dod3XLA3CNJpf/mXP7h1Q42c+WX0egSKghIbIoP86x2xIfIlVF5mYv4tN/viFzeV7/e9PtrxuSKv+AkBvC+0NKE1to+jjKQW4d1/4SDNZz9hypjnZqpbb+9R9ypm/hddaKGPCf7p0xNHtAyuWPSa5WCLCljrxV9IHEYgpDa9w4kO5DsQLInSXa651nIEkxtadIDdQ7UOVDnCeq83vdwNzDAWXbch+icdWCTpHQOU1hkSm+eixvf9b3s2ZetA9cOXPtfc23dETlSZmu1LYgulIlYRM0bn49WLc1gzaIJunmjyZROi1isKt6s4yhaZdbTOl4V1tE6mnNRNkh8UF6u+NX0jbaJ1OHyvvrxgtkICAgPmhnLZfBBEi7kMuSTXT6Gftt/29+LyqZPILIUV52w6r7WRGhgmdp7YSvjlwAHOcljUjpFy0+8rUrPBKVDNyi5BpuuqP0F9PCKHIxEp/7yvumVX7+MQrmVmdqwvS77biBcFXS+irzfO9ltscthYEpi87w0YVyaGSwUZSBbB6sFTuaQVgkaH5q5Fuoas4/VClxXHuGkx0WpOqeZkjNFWTnpJTZvRM3N50TbSZRLZaLahY/OBr9/vng36H4cnp1ffDrvnvT6PbqncPjCesqlacXBSvFGkzsKEuXx9oFXD3eIg7L831eWa2IR3lNUaKkMUz105KoegOPW2OqIuC2b3nbqKTYWq9VEevzs9HrNl0NiRDy+fRh6YUqmyocKingqtd9Wptu9d3RVa9jHsE+v3ht3fVGapdhIqEJ0xB1riY8E3/XtuiMylCm6EFdlMUgSLKi1d0eO5mG1uU18OOcp8xcQ+e54 +api: eJztWUtz2zYQ/is76MWeSqKcOGnKm+o8qjZ1PY7iHGQfQHAlIgYBBgAlazT6750FSZmWaMfTaS+tDrYsYPHt81uaizXzfO5YPGVX3EqeKGQ3PWYKtNxLo8cpi9kc/Xazx1J0wsqCdlnMPqAHnyEsagFIVg+/3+JqcK2v9bnxCD7jJC4doE4LI7UH6YBrmHJVZBxmyH1p8eYoEiYvjEbtXYTcqlWfC4HORUGu+t2vpd0gT4+B6xS08YCa1KZgNJzxvNQpB6FK59E6MKUHMwv2JeZucK0nGcK0EXsDo4sxHF2++zQ5hj8XaBcSl1DwOdnDC+n63hjlIlHJ93kh+xad31vom/rwIE9/+FaiXdHWMRTWLGSKDmal9RlaSNFzqVyITxzH2ngkm/6t8OR8BQmCK5OvKDx4AyLjeo7XWmqYlSQMFhVyh2RTHMfXmvVYwS3PkQLI4umaaZ4ji1mT4N9xxXpMUi0U3Gesxyx+K6XFlMXelrhbMJPd4mA95kSGOWfxmvlVQeBSe5yjZT02Mzbnvlp6fco2mxtS4AqjHTo68WI4pI8nlEgHrgzhmZVKrcCiL63GdBC8E0Z71J4weFEoKULdR18dAa1bpj3U0BACHHIrMmhsAukxJ59qT0yINUXREqm8rKxuR6/T+ltcwczYiiyNdAv38Qj16gztop7zHKvq70Z03ko9p/MLrsoOgCtafh4CBfqqG+V9qRQsng/lhCmeDlPN6CD4FOZTISusoQIZa+e5Fs/SVx8BWZ/5u6o9aq49Ndo9hWEHxm+fFynpJrbUgnvswPqSYWg5VW+m6EsHvpEHY6l5tmATYxRyzTZkofQKWzU/9pizzYa2TrvY9wtPgZoAOv84wQprEoX5j98j2gguKsm6W0LFKOAOKsEEU5Aappfvz+Dn01c/3Rxl3hcujqLlcjmwM9HHVHpjB8bOIzsT9ENyxwOYZGixaYs8TSXp5AruuQquQCFnUlC3rLMejKEwVQ3kaaJXu+udbLXqoLRy76E6gs+XY5Apai9nK6nn+6rDmRkvFWHwxJQ+ThTXt+w+X/tKd7W4Ms+5bVd0SwFxz3Nfuu/25Zcv9rCJK79OJhdQQYAwKd73s1oROZFLLfMyZ/HpcNhjOb+rvr0eDjeESRl/hica8K5QXIfS2nVHasiNxbp+gmMNZ/+hzBgr53JX7+ABd+oiflt51JDnpLvL1OQBxcUtkV7JFHjpM9Ja0QeExWAEV25wINmBZAeSPUqylx3/hBibyDRFHcpzyzfpwisEV8osMT3w6sCrA68e59VpxzuG8TAzpU4P1DlQ50CdR6jzquulaaSBomypDtFaY8EIUVqLKSwzqbbvm43u+pn15BDjwLUD1/7XXNv0WI4+M/UUOwwzfcZiFjWTFBetW7O4DQ0j0S6aWWdpFYvZuuLNJo6idWac38Trwli/iRaUlC0SOUrbFb+aulFGcBWWu/JHG3o7mEO4n0XTGBo+cI9LvgrxJJUPod8M3ww7UUn0EUQacVceVtXX6ggNLFG7E7YSfg5wGNM6FKWVfvWJjlXhSZBbtKOScrCtilpfQA+jpyDEevUf75ta+e3LJKRb6pkJx+u07xtCWUHrKsuHg5P9ErsYB6YIk+elDu1Sz2EpfQa85Vh9cUAcUlKgdqGY6wF4I/ax2oGrSiOcDCgpVeU0XXIufVYmA2Hy5rJg+5kok0Q5lzqqVbjobPTH5/O3o/7H8dm780/v+ieD4cDf+eB8YZzPuW7ZQTcw21n3URj9H+86vL5/QhxubP77NzY1sTze+ahQXGqieqjIdd0Ap6221WNx+zripld3sSlbrxPu8LNVmw0th8CweHpz3/RCl0ylCxlk8Ywrt3vj0669o8v6bugYuu6BOu2uF7lese3VBGM9dksz+gcXKZubTY9lyFO0wa5KYiQEFr51du+ah5rV9jHx4R11mb8AWyYWCQ== sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -56,6 +56,10 @@ Bad request 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 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 3701d431c8..62f988d0fc 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,7 +5,7 @@ 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 @@ -42,7 +42,11 @@ 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}}>
          +

          Path Parameters

          Body

          required
            mappingInstructions object[]required
            + +Element mappings from the source process instance to the target process instance. + +
          • Array [
          • ]
          • = 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
          The process instance is migrated. 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 e31d813ffd..0828b8177d 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,7 +5,7 @@ description: "Modifies a running process instance." sidebar_label: "Modify process instance" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -41,12 +41,24 @@ For example, because an external system is not available or doesn't respond as e ## Request -

          Path Parameters

          Body

          required
            activateInstructions object[]
          • Array [
          • variableInstructions object[]
          • Array [
          • variables objectrequired
            +

            Path Parameters

            Body

            required
              activateInstructions object[]
              + +Instructions describing which elements should be activated in which scopes and which variables should be created. + +
            • Array [
            • variableInstructions object[]
              + +Instructions describing which variables should be created. + +
            • Array [
            • variables objectrequired
              JSON document that will instantiate the variables for the root variable scope of the process instance. It must be a JSON object, as variables will be mapped in a key-value fashion. -
            • ]
            • ]
            • terminateInstructions object[]
            • 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}}>
            +
          • ]
          • ]
          • terminateInstructions object[]
            + +Instructions describing which elements should be terminated. + +
          • Array [
          • ]
          • = 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
          The process instance is modified. 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 5b17737132..efbd41a62a 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/search-roles.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/search-roles.api.mdx @@ -5,7 +5,7 @@ description: "Search for roles based on given criteria." sidebar_label: "Query roles" hide_title: true hide_table_of_contents: true -api: eJztWFlz2zYQ/iuYfWqnNKkkzlG+KY7Tus3h2kr6oOgBIpcSEhBgANCyhsP/3lmAOizSVyeP0YxGIrD3fgvssgHHFxbSKVxoiTCLQFdouBNaneWQgkVusiXtWYggR5sZUdEupHDp91ihDTNEwObcYs60YgtxhYplRjg0gsdfFERg8HuN1r3W+RrSxj8KgzmkBZcWI8i0cqgc7fGqkiLzRiRfLelqwGZLLDn9u2kEmcaClaxTEUMEXMqPBaTTBty6QkhBz79i5iCCypCHTqD1YrXxKjsqbgxfQwTCYen3HyqnECjzPUHWGaEW0EagTY6mv0PBLHgtHWm1GbRttBeTaSdwFoETTuI22v/UaNaX2riL4Cu0M+Ks+AIfZa7R5Z5NQjlcoIEICm1K7sLSs6dkvxSlcA+kDXkYF+6Gx72g3rSt3TK+xkIbfAxnOxifc77AXXyiAX0DTLcz7MgJbEMsbcierbSyIcBPR6M+VidL7CplC1hbS4/XH4L+oP8x8H8sbpx2XJ4dZGMYES+OCRGFMNYRXj9zWaN9HCok/7+8d+EiROkxwLiV4zA8h/b07Lw/e4xoKYV3a/qG68EMDAOOfcN1PJgfxUscPpwG5RB5THzcWrFQmL/Hco7mb1wPud0XYtExXZA5ln5Lz23ZRhpzmrlOVzyQ39uRtp87CithtL86mFVPdXxXvW5y9J0YWcGFxDxm77VBlqPjQlrGDbLK6CuRY86ECl5sUjrX+TpcgreUeWX0XGL5233lPmbngbLTywI6GLcsEM6D9unF2xP2+/Hzl7Nfls5VNk2S1WoVmyI7wlw4bWJtFokpMvoS3a8xmyzRICv5ms2R8TwXpJNLtsMdsxVmohDZJk2d2YyyE/y75/Twu32wbZNZG9GDzZh9ujhjIkflRLEWatFXffMynevapXPJ1TfYpf8+hI+ZrcuSmzXBsq+ArijHXX0/GJ89HQT+n5PJOQsiWKZz9F2TWwq7UUROlEKJsi4hPR6NIij5dXh6MRq1JJMy/gBPFMPrSnLloXXojlCs3OHWOyaUdVxlPyoz2oiFONQb3zhcOxC/CR6FAnw+VIBjxSjKhnCIxmjDdJbVxmDOVkshvfgMrd3o3msAf1baz0r7WWn9SmsjKNEtNQ13lbYeOtwtIYXEt6ZJuOuAenJzhcb6rrA2ElJoQrW0aZI0S21dmzaVNq5NrigVV9wIPpcBgLQdqmqDFqkzLpdBYz9rtEHNxcabE17WKufsFbs4vZywP7jDFV/7KFbdyLYT/Wr0ajQolUhvkTg+P2PBw4C5vXNgI5YKeriL8cQPEdxSz2gxq41w60tiC+GZIzdoxjUFfouFTp+XTs+BCKLuz9sNQv76d+KTTGfYxW6qPr3mZRUqMEy10+1YuoNZN42GkXO2GxzDQDjajnujg2Fu2gRP9sc0Wms9rAvt3ehA1w8IoQONDREcxU/6AD8/83Wa6bKslT+s1YKthFsyvhfgTNbWUWDJzgypfUubrofdqn0XdtjnoJE9iQkcAcGbM3oh3LKex5kukyywbX/nUs+TkguVdCpscjJ+/+nDm/HRu7OT0w+Xp0dP4lHsrsPAQDVUcrVnh28vw5x36Gezu5Ye+fakg4jDa5dUkgtFoPU+NV39TmGjsqvgWdRV4RSahoR/MrJtadn3sZBOZ7uipac2giXyPKQ7TBhwEuw9mpB+Ipe17/APZ9Q22nCMswwrdyftbO8MOv94OSGId6+FSp0Tj+EremXEV5DCF/gChFwfQ189fr0BydWi9viFIJc+/wESYHl7 +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 @@ -33,14 +33,38 @@ Search for roles based on given criteria. ## Request -

          Body

            sort object[]
          • Array [
          • ]
          • page object
          +

          Body

            sort object[]
            + +Sort field criteria. + +
          • Array [
          • ]
          • page object
            + +Pagination criteria. + +
          The roles search result. -
          Schema
            page object
            items object[]
          • 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. 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 new file mode 100644 index 0000000000..e149378817 --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/search-tenants.api.mdx @@ -0,0 +1,80 @@ +--- +id: search-tenants +title: "Query tenants" +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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 +sidebar_class_name: "post api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

          Query tenants

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

          Body

            sort object[]
            + +Sort field criteria. + +
          • Array [
          • ]
          • page object
            + +Pagination criteria. + +
            filter object
            + +Tenant filter request + +
          + +The tenants search result + +
          Schema
            page object
            + +Pagination information about the search results. + +
            items object[]
            + +The matching tenants. + +
          • Array [
          • ]
          + +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 index 3e64cb7189..3c02469b5c 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/sidebar.js +++ b/docs/apis-tools/camunda-api-rest/specifications/sidebar.js @@ -433,12 +433,24 @@ module.exports = [ label: "Update tenant", className: "api-method patch", }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-tenant", + label: "Get tenant", + className: "api-method get", + }, { type: "doc", id: "apis-tools/camunda-api-rest/specifications/delete-tenant", label: "Delete tenant", className: "api-method delete", }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/search-tenants", + label: "Query tenants", + className: "api-method post", + }, ], }, { @@ -537,4 +549,16 @@ module.exports = [ }, ], }, + { + type: "category", + label: "Mapping Rule", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/create-mapping-rule", + label: "Create mapping rule", + className: "api-method post", + }, + ], + }, ]; diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-authorization.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-authorization.api.mdx index 5e85d926cc..c371eeb494 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/update-authorization.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/update-authorization.api.mdx @@ -5,7 +5,7 @@ description: "Manage the permissions assigned to the authorization." sidebar_label: "Update authorization" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztWV+T2jYQ/yoaPbVTB0h6bRPeKPgSt3dAjUmnvdzcCFtgNbLkSPJxlPF376xkgw2+JO30kZu5wZJW+/+3srV7bMhG4+EdHhUmlYr9TQyTAt97WOZU2UGQ4CEu8oQY2ibycEJ1rFhuR0N8SwTZUGRSinKqMqY1k0IjojXbCJogI+0aaTLpYQ/nRJGMGqpAkT0WJKN4iOVWUPUr3WEPM+CeE5NiDyv6qWCKJnhoVEFPVYhSij7SHZJrK8ryqAdncnWc0ozg4R6bXQ4imTB0QxX28FqqjBg39eMVLst7J5lq87NMdrAnlsJQYeCR5DlnseXb/0uDIvtz5nL1F40NmKvAtYZRbffGTvX9iSWBSIAl1YitW+7UqSx4glYUkSShCZIKKZrJR5qATZUwbRQTG+xhKorMhncywR4O/dvZex/fl2CNloWKaWQ3nEoHPwIr8F1NCfEjSdJ30lo6GdlfK5k1FDhYSzifrW1c/y8JB5OW0btZGPw5ioLZFHv4djSfB9O3D+Hyxoehv1iM3sLTz6No/A57eDSf3wTjmnzxxyLyb7GHI386mkbYwxN/fjP749a3g3k4G/uLxcPEvw6mQbVn4o+DRTCbPoT+b8sg9IH2OZLW7NtwtpxjDy8XfghxmN34gDHDDAdvhY1g+GBeCSFq2N/II6IU2Z1hL0pP/dXwJHiNGZrpL6fjkUd3YixyGrM1o9pCqg5gQ/K/yYGvYlaHexz6owjC6R4e6gAF00U0mo4bK4cQNJZCfzSpfrp22nkIzkM0WvxaT3QxWs4nTg330MWsWmmym/g3vt3lHupdx4lJODkOrmfh7RntUUIjceatcB1Tp0ZUkHw5dUaIM21aOAwm+qSMI0W5rUZGQlAKwT4VNHA55QrxaYJVJagsyy51J9GsvdQ6WubExGno6q0ja5d9Z2EuhXZZ+2rwqruGtWo+2hKNcmBNE6SLOKZarwvOd70PApcevhoMvoZLbOuvkAZqcMWu90HcSkVRQg1hXCOiKMqVfGRQoZmwzqw1RiuZWJHec2dIruSK0+y787PkNHJzR1nJRQ5xiGjkCFdO+l14PUZvrn746f6b1JhcD/v97XbbU+v4BU2Ykaon1aav1jH8A923PRSlVFGUkV110jCQSTg6lgukHXzj+mCv1LZAdvZ9vtaYqsKcnlmHw7dQrCNbl2GAWEKFYesdE5tz0XbPmhQceJCVLMxwxYn4iI/pdi70VIousoyow5tEW0DpYW2IKfQXXx6+f9VZqt9F0Rw5FiiWCUVrqZBJma4FgREZEyyD4nc1GHg4I09u9ONgUAJPiPhXWCIQfco5ES55T8xhAmXHvLWGMaENEfH/FRmp2Iadyu3hVlVwkxNnUWnxfjV42Y3F6i0McRJ/1OiRcJZYfILUuAKoolYJwu0BcgHZBWQXkHWD7PvzfL+WasWShAqbnge8MW2PPMK53LpPjQuuLri64KobV1fdh5e7j4DXUMDSWhYiubwIXrB0wdLnsPTm8y+C7qbjeA12dg0iOr4CGXzGiTVnsflPn26lh3/o+locCQThVwAQqpRUSMZxoRRN0DZl3HKGz87aKZURlyJwKQKXIvBcESg9nFGTysR1AeLU9gxMioe434K27u/rrkEJ9/tUPdZNhUJxPMR7h51y2O/vU6lNOdznUpmy/wiBeSSKkRV36QjLDmN17nAZE26nu2IIC9C5qG0bk6wQCUGvUegvIvSWGLolO+tTENlm/XrwetB9pSuVeYbjaB4gZ6HLwEZVqNkCvDvZOuKvYWw7H5rGhWJmt4Btzj0rShRVcGnXyIxKnuUOY0eEverhus6XX36PbMihooXHror/RLLc4bHuilR9i9ZN+N2+fb15V2fkvb36ZGItrU5VPp1bB6GmSjsBg97L89ydBxaCscyyQtg6LDZoy0yKSMNbMS+0AS95mLOYCm1Vr9pXNdmNW0HvnUT0sgeRdulYl98NM2mx6sUy68du2+F3xeWqnxEm+pUI3R+PbpfTyejFTTD2pwv/xcveoGeejPVoLrXJiGjosbSNu/YReGpwo5n1n5t4VQoY+mT6OSfMnpHWzH0F1jvcBiv28PDQ5Lv3KsTd4f1+RTRdKl6WMP2poGqHh3f3R4C6VgLT8Jzg4ZpwfdoJbJr0TVhdHn+L/lV/sNOk+ipd7GzF4AWMsIc/0l2zaWlTMaUkocpq65bHTqcXtrdy3H7WPyy9escojmlunqFtvRkAUA9lcl61vFZVszKTCWxWZAstVLLFQ/wBfwC9ZW7qBpOd32NOxKYgG6B3jOHvH2Q5VJE= sidebar_class_name: "patch api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -40,7 +40,7 @@ Manage the permissions assigned to the authorization. The permissions to add/remove. -
        • Array [
        • ]
        +
      • Array [
      • ]
      The authorization was patched successfully. @@ -55,8 +55,7 @@ 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 request to patch an authorization was denied. -More details are provided in the response body. +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}}>
      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 e2089568f6..d3c4375064 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,7 +5,7 @@ description: "Update a role with the given key." sidebar_label: "Update role" hide_title: true hide_table_of_contents: true -api: eJztWEtz2zYQ/iuYPSVTWpRTJ015UxWncZtkPIrcHmwdIHAlIgYBBgAtazj8750FqJclxT70KM94JBH73u8jgG3A87mD7BZGRiFMEjAVWu6l0Vc5ZFBXOfcY1hLI0QkrK1qEDG7CEuPMGoVsIX3BfIFsLh9Qs3tc9iCBilteokdLLhrQvETIgBT+xiUkIMlQxX0BCVj8UUuLOWTe1vjU27hAMsrMLHgJPr1hMT5y5USBJYesAb+syIvUHudoIYGZsSX38dG7C2jbSfSGzv9h8iXpPHUujPaoPS3xqlJShJKk3x0F0+w7M9PvKDxlbKmAXqKjVVFwPUeH/nnRWJu1lPNW6vle0akMMeec5dJVii8ZaW7XpQdtm4CXXpEh6t1wHQatbHK93QpwsqsSuzuKVYK2jYquMtrFeN/0L+hjP7wIB+7WcbpaCHRuViu17EGbwEW/f1i1suZB5pQa95xJx7Tx7IErmffuNBztSmXNVGH5y353dl0M2HWUZDl6LhWLrWDcsSg4xZxJzW5HH4fs94u3v01eFd5XLkvTxWLRszNxhrn0xvaMnad2Juif5F732LhAi6zkSzZFxvNckk+u2KbJzFUo5EwKwq2P2YZgqOMxv58jJK7uI2QN79rKPcAM2M3oiskctZezpdTzfddBZ8ZrRTb41NQ+myqu72GDoudgOWCuLktu1/zcddAm4Dz3tXuWnr++OQj5T+PxNYsmmDA5spmxzBfSrRxREqXUsqxLyC76/QRK/hh/vev3W7JJHX9BJprhY6W4DtB6mo7UrDQWO/yExKR2nmvxf3XGWDmXT/3uMroD8YeYUaTmRf/8CBsjg5ni4t5FLjFe+4K8RvowYTEEwZXrnUh2ItmJZEdJ9tMtb3UC6o43q/1rZmqdn4h1ItaJWMeI9fbQgXCgGVXZEg7RWmOZEaK2FnO2KKQK5ulcufLd7XSnk+KJayeuHeNam0CJvjB5vHeLIlzSfQEZpLRvubTptq+W7tRoH1Z399oqyKCJjGmzNG0K43ybNZWxvk0fqB0P3Eo+VRGEtByZtUKMMoKr8PhQ52hh+yo75GWtc87es9HltzH7k3tc8HiBJJe7pt/33/cPWiXRIxYH11csZhhxt/UuWJklUh80G4VfYjhMGxyK2kq//EZqsTxT5BbtoKbar/HQ+QvW6XcUgqT78nGFkr/+HYdG03tstJlkXD7ysoos3Jk8dHOXDm1twOLMBL8dUvYzoHaidTHlfu98H5XXV4FcwpRlrcMbVs/jKYhvVUSo2nmqRAJKCtQOtyJaiX2OK+yf6JGd96ibEXKrF+tc+qKe9oQpUxHV1p9TZaZpyaVOOxcuHQ6+3Hz9MDj7fDW8/Prt8uy81+/5xzgAqYzzJddbcXSzLHtgztVs9pIXjby6Tnp89GmluNSErZBJ0zHtNgzAHCSQrSZhk6Sjyy00zZQ7vLGqbenxjxrtErLbyYZdgY65dPQ9h2zGlXs6LtsO+tWom/e8Zs8O0Q4G3z3kehkormr6BQnc43JrmNdO2gQK5DnaEGBcHcYwzsZkY6O9N1Nrk5XGQAis/BHZnf2biLV+mV0PxsNPRJRuoFeaPIwa+YJGi3wBGdzBHYVtQo0CB8PzBhTX85rPST4apr//AAeSQrQ= +api: eJztWEtz2zYQ/isYnJIpLcqpk6a8qYrTuE1TjyK3B0eHJbgSEYMAA4CWNRz+984C1MuSEx96lGc0lrjY9/cB4Lbcw8Lx7JZPjEI+S7ip0YKXRl8VPONNXYDHIEt4gU5YWZOQZ/wmiBgwaxSypfQl8yWyhbxHze5wNeAJr8FChR4tuWi5hgp5xknhT1zxhEsyVIMvecItfmukxYJn3jb42Nu0RDLKzDx4CT69YTE+cuVEiRXwrOV+VZMXqT0u0PKEz42twMdHby54182iN3T+N1OsSOexc2G0R+1JBHWtpAglSb86CqY9dGbyryg8ZWypgF6iI6koQS/QYTB0mJBDTwnFVUVMCry3Mm88OsoKlPp7Hmq3rz16hu73Q4u92CTgvJV6cdBkijLWuGCFdLWCFSPN3T4MeNcl3EuvyBBhZbxJu5uRbFvd252SzPaVIp4msS+866Kiq412MeJXw4vjZYwABLeJ1DVCoHPzRqnVgHcJvxgOj6vW1tzLgpIDD0w6po1n96BkMfii+ZM4qK3JFVY/HeLhcZuu40pWoAepWGwGA8fiwhwLJjW7nbwfs18vXv8ye1F6X7ssTZfL5cDOxRkW0hs7MHaR2rmgD617OWDTEi2yClYsRwZFIcknKLZtM3M1CjmXgpjiY7YhGOp5zO/7GInSQ4xsCNVYeQCZEbuZXDFZoPZyvpJ6ceg66MyhUWQDctP4LFeg7/gWRz8C5oi5pqrAbnaEfQddwp0H37gfbgg/vzoK+g/T6TWLJpgwBbK5scyX0q0dURKV1LJqKp5dDIcJr+Ah/nozHHZkkzr+jEw0w4dagQ7QepyO1KwyFnv8hMSkdh60+L86Y6xcyMd+9zndg/hdzChS82J4/gQbI4OZAnHnIpcYNL4kr5E+TFgMQYAKG9WJZCeSnUh2nGTfPfLWd67+QrU+v+am0cWJWCdinYj1FLFeH7sQjjSjKlvCIVprLDNCNNZiwZalVME83SvXvvuT7nRTPHHtxLWnuNYlvEJfmiK+6YsyjAV8yTOe0rnl0rY/vjp6i0d7v54WNFbxjLeRMV2Wpm1pnO+ytjbWd+k9teMerIRcRRCSODJrjRhlBKjw+FjnSLD7MjuGqtEFsLdscvl5yn4Hj0uIL5Dkct/02+Hb4VGrtPQJi6PrKxYzjLjb2QvWZonUR83Gxc8xHOYbDkVjpV99JrVYnhzBoh01VPsNHnp/wTr9jot40n95v0bJH/9OQ6NpH5tsZyeXD1DVkYV7s45+0tOjrQtYnJvgt0fKYQbUTrQupjwcnB+i8voqkEuYqmp02GH1It6CYKciQjXOUyUSrqRA7XAnovWyj1HC/oke2fmAuhkht95YF9KXTT4QpkpFVNv8z5XJ0wqkTnsXLh2P/rr59G509vFqfPnp8+XZ+WA48A8+JF8b5yvQO3H00zN7ZLLWbs+SZw3Z+k56fPBprUBqwlbIpO2ZdhtGbo4nPFvP3mZJT5db3rY5OLyxquvo8bcG7Ypnt7Mtu+IASjr6XvBsDso9HtDtBv1i0s97XrIfju2OBt8/BL0KFFcN/eIJv8PVzviwm3UJLxEKtCHAKB3HMM6mZGOrfTDF65K1xkgIrP0Ta/fObyLWZjO7Hk3HH4go/QixMkUYbsKShpmw5Bn/wr9Q2CbUKHAwPG+5Ar1oYEHro2H6+w++d2q6 sidebar_class_name: "patch api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -33,7 +33,11 @@ Update a role with the given key. ## Request -

      Path Parameters

      Body

      required
        changeset objectrequired
      +

      Path Parameters

      Body

      required
        changeset object
        + +A set of changed role attributes. + +
      The role was updated successfully. 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 3932745aff..2fed02030c 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,7 +5,7 @@ description: "Updates an existing tenant." sidebar_label: "Update tenant" hide_title: true hide_table_of_contents: true -api: eJztWF1v2zYU/SsEn1pMsZw27Tq9eWm6ZuuKIHW2h8QPV+K1xZYiVZKKYxj678MlpdixnCYD+ugAgSXx8n6dc2j5rrmHhePZNZ+iBu35LOGmRgteGn0ueMabWoDHbjXhAl1hZU3LPONXYdEx0AzvpPNSL5gPpiOe8BosVOjRUoA111Ahz3hc/wtXPOGSnNTgS55wi98baVHwzNsGdyNNS2SNlt8bZFKg9nIu0TIzZ77ErZCuKLECnq25X9UUTWqPC7Q84XNjK/Dx0dsT3razGBOd/92IFe0pjPaoPV1CXStZhDakXx2lsB46N/lXLKgrtaWmeYmOVmOh91bOW6kXg95RRRqXjKx3C2nb7X5cR4+zhHvpFbmMcMTuX8YaePtwEzUxPHC10S4m9mo8po9hHjEuW4JjEW/BXFMU6Ny8UWpFnf1JvfmGq73oPIq2WzmP1dECNbESBaM9VoPqkz5/vwfcpKMZUfg5QHTB8G7gu03+D56PYLkft4gMAdcm/OQxbGprbqVAwQR4YNIxbTy7BSXFD2CprckVVr8M4XkYYMIuoiUT6EEqFmFj4Fg0zEPH2fXlh1P228mbX2cvSu9rl6Xpcrkc2XlxhEJ6Y0fGLlI7L+if7F6O2LREi6yCFcuRgRCSYoJiG0IwV2Mh57Jg3oSedWkz6vToRvPkCTbF1SEy93RorBwANWFXl+f9KbIKR9Zu6LBnDo0iH5Cbxme5Av2Nb7B8ig4T5pqqArvq+fAwQJtw58E37smz6vWrvVT7OJ1esOiCFUYgmxvLfCldH4iKqKSWVVPx7GQ8TngFd/Hu7Xjckk9C/BmV0OFeK9CBWrvlSM0qY7HjTyhMaudBFz8LGWPlQu7GfairjsTvY0W9oF4P+f7B2FwKgTrQk3Xnf68qUMos8aCrg64OuvqBrk6GfP9sPJubRouoq633CX2/clDVQVUHVT2iqjf7Xv8mevO2i9Yay0xRNNaiYMtSquCeXtL72N3XWeTiQWsHrR20NtRam/AKfWlEHD0UZZhU+JJnPI3fWy5d3w8pWhoqoL3thxiNVTzj66iaNkvTdWmcb7N1baxv01uC5BashFxFItJyVFfPGmUKUOHxPvRoYftn5ClUjRbA3rHLsy9T9gd4XMIqdJNCPnT9bvxuvNcrmT7icXJxzmKFkXtb50HvloS91200fo7jMG5xWDRW+tUX2hbbkyNYtJOG+n/PiS5e8E730Ygn3cWHnil//jsNYNNZdrkZ5ZzdQVVHJXYzp45kgYFzEyJ1/BjmTACidbHI8eh4yMWL8yCpwlRVo8O5qhdsKX3JYKsHhWqcp9oTrmSB9Et/k1Bv9imusH9iRHY8IvwiyfrjdCF92eSjwlRpEbfdf+bK5GkFUqddCJeeTv6++vx+cvTp/PTs85ezo+PReOTvfOhTbZyvQG/lEUcR3fvabqVbA7EnJn0dbh7vfForkJpaHapYd9q67gYyjic824wAZ0knkGu+Xufg8MqqtqXH3xu0K55dzzZ6CgIU0tG14NkclNudE26n/OKyG4a9ZM+cHu4to3sIehWkrRq640mcZG1NM9tZm/ASQaANicb105jO0ZS8bPYPRmht0u+YFAXW/oe2s60j7GIyPf1I0uhmmJURtMnCkmaqsOQZv+E3lLAJPQqqC8/XXIFeNLAg++iY/v4DPJubGQ== +api: eJztWFFv2zYQ/isEn1pMsZw27Tq9eWm6ZuuKIHW2h8QPJ/FssaVIlaTiGIb++3CkFDuW02RAHx0gsEQe73j3fR8l3Zp7WDieXfMpatCezxJuarTgpdHngme8qQV47GYTLtAVVtY0zTN+FSYdA83wTjov9YL5YDriCa/BQoUeLQVYcw0V8ozH+b9wxRMuyUkNvuQJt/i9kRYFz7xtcDfStETWaPm9QSYFai/nEi0zc+ZL3ArpihIr4Nma+1VN0aT2uEDLEz43tgIfh96e8LadxZjo/O9GrGhNYbRH7ekS6lrJIpQh/epoC+uhc5N/xYKqUlsqmpfoaDYmem/lvJV6MagdZaRxych6N5G23a7HdfQ4S7iXXpHLCEes/mXMgbcPF1ERw4CrjXZxY6/GY/oZ7iPGZUtwLOItmGuKAp2bN0qtqLI/qTYb9Pdh9CjmbuU8VkcL1MRNFIzWWA2q3/r5+z0QJ104IvJz4OiC4d3Ad5v8H1QfQXQ/ehEfgq9N+MljCNXW3EqBggnwwKRj2nh2C0qKH4BTW5MrrH4ZgvQwwIRdREsm0INULILHwLFomIeKs+vLD6fst5M3v85elN7XLkvT5XI5svPiCIX0xo6MXaR2XtA/2b0csWmJFlkFK5YjAyEkxQTFNrRgrsZCzmXBvAk167bNqNKjG82TpzgVZofI3NOhsXIA1IRdXZ73Z8kqHFy7ocOaOTSKfEBuGp/lCvQ3vsHyKTpMmGuqCuyq58PDAG3CnQffuCdPrNev9lLt43R6waILVhiBbG4s86V0fSBKopJaVk3Fs5PxOOEV3MW7t+NxSz4J8WdkQkd8rUAHau2mIzWrjMWOPyExqZ0HXfwsZIyVC7kb96GuOhK/jxn1gno95PsHY3MpBOpAT9Y9BXpVgVJmiQddHXR10NUPdHUy5Ptn49ncNFpEXW29Vej7mYOqDqo6qOoRVb3Z9/o30Zu3XbTWWGaKorEWBVuWUgX39Krex+4eZ5GLB60dtHbQ2lBrbcIr9KURsQFRlKFf4Uue8TQ+t1y6vv9Ybam1gPa2b2U0VvGMr6Nq2ixN16Vxvs3WtbG+TW8JkluwEnIViUjTUV09a5QpQIXhfejRxPZn5ClUjRbA3rHLsy9T9gd4XMIqVJNCPnT9bvxuvNcrmT7icXJxzmKGkXtb50HvloS91200fo7j0HRxWDRW+tUXWhbLkyNYtJOG6n/PiS5e8E730Ygn3cWHnil//jsNYNNZdrlp6JzdQVVHJXadp45kgYFzEyJ1/BjumQBE62KS49HxkIsX50FShamqRodzVS/YUvqSwVYNCtU4T7knXMkC6Ut/s6He7FOcYf/EiOx4RPhFkvXH6UL6sslHhanSIi67/82VydMKpE67EC49nfx99fn95OjT+enZ5y9nR8ej8cjf+VCn2jhfgd7aR2xFdO9ru5lutcWe6Pd1uHm882mtQGoqdchi3WnrumvIOJ7wbNMKmiWdQK75ep2Dwyur2paGvzdoVzy7nm30FAQopKNrwbM5KLfbLdze8ovLriX2kj2zh7g3jW4Q9CpIWzV0xxP+jTpZW12tdtYmvEQQaMNG4/xp3M7RlLxs1g8aaW3Sr5gUBdb+h7azrSPsYjI9/UjS6DqZlRG0yMKSOquw5Bm/4Te0YRNqFFQXxtdcgV40sCD76Jj+/gPNmZ2D sidebar_class_name: "patch api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -37,7 +37,7 @@ Updates an existing tenant. The tenant was updated successfully. -
      Schema
      +
      Schema
      The provided data is not valid. 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 b3609e22ba..24f2a98997 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx @@ -5,7 +5,7 @@ description: "Update a user task with the given key." sidebar_label: "Update user task" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null diff --git a/docs/apis-tools/community-clients/c-sharp.md b/docs/apis-tools/community-clients/c-sharp.md deleted file mode 100644 index f4b5346fe5..0000000000 --- a/docs/apis-tools/community-clients/c-sharp.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -id: c-sharp -title: "C#" -description: "Take a deeper look at the source code, Nuget package, and API docs alongside C#." ---- - -The C# client is a community library. Take a closer look at [the maintainer(s) and source code](https://github.com/camunda-community-hub/zeebe-client-csharp). - -- [Nuget package](https://www.nuget.org/packages/zb-client/) -- [API docs](https://camunda-community-hub.github.io/zeebe-client-csharp/) -- [Bootstrap C# applications](https://github.com/camunda-community-hub/zeebe-client-csharp-bootstrap) diff --git a/docs/apis-tools/community-clients/index.md b/docs/apis-tools/community-clients/index.md index 3cd9dc4955..06bdee6abb 100644 --- a/docs/apis-tools/community-clients/index.md +++ b/docs/apis-tools/community-clients/index.md @@ -13,7 +13,7 @@ Camunda extensions found in the [Camunda Community Hub](https://github.com/camun ::: :::tip -Camunda now officially supports the [Javascript SDK](/apis-tools/node-js-sdk.md) and the [Spring Zeebe SDK](/apis-tools/spring-zeebe-sdk/getting-started.md). +Camunda now officially supports the [JavaScript SDK](/apis-tools/node-js-sdk.md) and the [Spring Zeebe SDK](/apis-tools/spring-zeebe-sdk/getting-started.md). ::: In addition to the core Camunda-maintained clients, there are a number of community-maintained component libraries: @@ -29,16 +29,16 @@ In addition to the core Camunda-maintained clients, there are a number of commun - [Ballerina](https://github.com/camunda-community-hub/ballerina-zeebe) -- [C#](c-sharp.md) +- [C#](https://github.com/camunda-community-hub/zeebe-client-csharp) - [CLI](cli-client/index.md) - [Delphi](https://github.com/camunda-community-hub/DelphiZeeBeClient) - [EJB](https://github.com/camunda-community-hub/zeebe-ejb-client) - [Go](go-client/index.md) - [Micronaut](https://github.com/camunda-community-hub/micronaut-zeebe-client) -- [Python](python.md) -- [Ruby](ruby.md) -- [Rust](rust.md) -- [Quarkus](quarkus.md) +- [Python](https://gitlab.com/stephane.ludwig/zeebe_python_grpc) +- [Quarkus](https://github.com/quarkiverse/quarkus-zeebe) +- [Ruby](https://github.com/zeebe-io/zeebe-client-ruby) +- [Rust](https://github.com/camunda-community-hub/zeebest) diff --git a/docs/apis-tools/community-clients/micronaut.md b/docs/apis-tools/community-clients/micronaut.md deleted file mode 100644 index 3bc9235d31..0000000000 --- a/docs/apis-tools/community-clients/micronaut.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -id: micronaut -title: "Micronaut" ---- - -The Micronaut integration is a community extension allowing you to leverage Zeebe within your Micronaut environment. - -The integration provides a wrapper around the [Zeebe Java Client](/apis-tools/java-client/index.md), and is preconfigured with sensible defaults so you can get started with minimal configuration. Add a dependency, implement a worker, and add your credentials in your Micronaut project. - -The Micronaut Framework is known for its efficient use of resources. Native images created with [GraalVM](https://www.graalvm.org/) reduce startup times to milliseconds. - -- [Documentation and source code](https://github.com/camunda-community-hub/micronaut-zeebe-client) -- [Integrate Camunda's External Task Clients into Micronaut Framework projects](https://github.com/camunda-community-hub/micronaut-camunda-external-client) -- [Create application with Micronaut Launch](https://micronaut.io/launch?name=jobworker&features=camunda-zeebe) -- [Releases on Maven Central](https://search.maven.org/artifact/info.novatec/micronaut-zeebe-client-feature) diff --git a/docs/apis-tools/community-clients/python.md b/docs/apis-tools/community-clients/python.md deleted file mode 100644 index 053cf07a90..0000000000 --- a/docs/apis-tools/community-clients/python.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -id: python -title: "Python" -description: "Take a deeper look at the source code and pip package alongside Python." ---- - -## Zeebe Python gRPC - -Take a closer look at the Python client [maintainer(s) and source code](https://gitlab.com/stephane.ludwig/zeebe_python_grpc). - -- [Pip package](https://pypi.org/project/zeebe-grpc/) - -## Pyzeebe - -Take a closer look at this Python client's [maintainer(s) and source code](https://github.com/camunda-community-hub/pyzeebe). - -- [Pip package](https://pypi.org/project/pyzeebe/) -- [Documentation](https://pyzeebe.readthedocs.io/en/stable/) diff --git a/docs/apis-tools/community-clients/quarkus.md b/docs/apis-tools/community-clients/quarkus.md deleted file mode 100644 index 502e94f582..0000000000 --- a/docs/apis-tools/community-clients/quarkus.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -id: quarkus -title: "Quarkus" ---- - -The [Quarkus](https://quarkus.io/) integration is a community extension that allows you to easily leverage Zeebe within your Quarkus environment. - -Essentially, Quarkus provides a wrapper around the [Zeebe Java Client](/apis-tools/java-client/index.md), and is preconfigured with sensible defaults so you can get started with minimal configuration. Add a dependency, implement a worker, and add your credentials in your Quarkus project. - -The integration also provides Quarkus developer services to start everything you need as Docker containers for local development. [Zeebe-dev-monitor](https://github.com/lorislab/zeebe-dev-monitor) UI is also included as a developer service. - -- [Documentation and source code](https://github.com/quarkiverse/quarkus-zeebe) -- [Releases on Maven Central](https://search.maven.org/artifact/io.quarkiverse.zeebe/quarkus-zeebe) -- [Create application with Quarkus](https://code.quarkus.io/?e=io.quarkiverse.zeebe:quarkus-zeebe&extension-search=quarkus-zeebe) -- [Documentation and source code zeebe-dev-monitor](https://github.com/lorislab/zeebe-dev-monitor) diff --git a/docs/apis-tools/community-clients/ruby.md b/docs/apis-tools/community-clients/ruby.md deleted file mode 100644 index 2c2535500a..0000000000 --- a/docs/apis-tools/community-clients/ruby.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -id: ruby -title: "Ruby" -description: "Take a deeper look at the source code and Ruby gem alongside Ruby." ---- - -Take a closer look at the Ruby client [maintainer(s) and source code](https://github.com/zeebe-io/zeebe-client-ruby). - -- [Ruby gem](https://rubygems.org/gems/zeebe-client) diff --git a/docs/apis-tools/community-clients/rust.md b/docs/apis-tools/community-clients/rust.md deleted file mode 100644 index 8ee0e3997a..0000000000 --- a/docs/apis-tools/community-clients/rust.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -id: rust -title: "Rust" -description: "Take a deeper look at the source code, Rust crate, and a podcast interview alongside Rust." ---- - -:::note -The Rust client, Zeebest, was previously maintained by [Mackenzie Clark](https://github.com/xmclark), and is currently seeking a new maintainer! -::: - -- [Source code](https://github.com/camunda-community-hub/zeebest) -- [Rust crate](https://docs.rs/zeebest/0.20.0/zeebest/) -- [Podcast interview with Mackenzie Clark](https://zeebe.buzzsprout.com/454051/1478953-zeebe-and-rust-interview-with-mackenzie-clark) diff --git a/docs/apis-tools/frontend-development/01-task-applications/02-user-task-lifecycle.md b/docs/apis-tools/frontend-development/01-task-applications/02-user-task-lifecycle.md index cabf0ea682..85fdc6ea1e 100644 --- a/docs/apis-tools/frontend-development/01-task-applications/02-user-task-lifecycle.md +++ b/docs/apis-tools/frontend-development/01-task-applications/02-user-task-lifecycle.md @@ -78,7 +78,7 @@ Make sure that you create your own validation logic that matches your use case. ## Implement the life cycle with the task API -To implement task life cycle operations with the Zeebe task API, call the respective endpoints: +To implement task life cycle operations with the task API, call the respective endpoints: - [`POST /user-tasks/:taskKey/assignment`](/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx) or [`DELETE /user-tasks/:taskKey/assignee`](/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx) to change task assignment. - [`PATCH /user-tasks/:taskKey`](/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx) to update a task. diff --git a/docs/apis-tools/frontend-development/01-task-applications/03-task-application-architecture.md b/docs/apis-tools/frontend-development/01-task-applications/03-task-application-architecture.md index 50dfb21ef1..b0027b9582 100644 --- a/docs/apis-tools/frontend-development/01-task-applications/03-task-application-architecture.md +++ b/docs/apis-tools/frontend-development/01-task-applications/03-task-application-architecture.md @@ -6,10 +6,10 @@ description: "Understand and decide on the architecture of your task application A typical task application architecture consists of a task application frontend, a backend-for-frontend, and one or more data sources or services that contain business data relevant for the application users to perform their work. The backend implements Camunda Zeebe and Tasklist clients to retrieve and interact with tasks via Camunda APIs. For historical process instance data, Operate is also required. -Depending on the user task implementation type (job-based vs Zeebe user task) you use in your processes, you need to run either the Tasklist or Zeebe client to run operations on task. Task, form, and variable retrieval happens via the Tasklist API. Learn more about the differences of the task implementation types in the [migration guide for Zeebe user tasks](/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md). +Depending on the user task implementation type (job worker-based vs Zeebe user task) you use in your processes, you need to run either the Tasklist or Zeebe client to run operations on task. Task, form, and variable retrieval happens via the API. Learn more about the differences of the task implementation types in the [migration guide for Zeebe user tasks](/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md). :::tip -Starting a completely new project? Use only Zeebe user tasks to simplify your implementation. +Starting a new project? Use Zeebe user tasks to simplify your implementation. ::: Click on any element of this diagram to jump to the documentation page for the respective component: @@ -72,14 +72,14 @@ style Tasklist stroke:#10c95d,color:#000 click Forms "../../forms/introduction-to-forms" click Rest "../../../tasklist-api-rest/tasklist-api-rest-overview" -click Job "../../../tasklist-api-rest/migrate-to-zeebe-user-tasks" -click ZeebeTasks "../../../tasklist-api-rest/migrate-to-zeebe-user-tasks" +click Job "../../../migration-manuals/migrate-to-zeebe-user-tasks" +click ZeebeTasks "../../../migration-manuals/migrate-to-zeebe-user-tasks" click ZeebeRest "../../../zeebe-api-rest/zeebe-api-rest-overview" ``` Follow these resources to learn more about the individual components: -- Familiarize yourself with the [Tasklist API](/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md) for task, variable, and form retrieval, and to run operations on job-based user tasks. -- Learn how to use the [Zeebe API](/apis-tools/zeebe-api-rest/zeebe-api-rest-overview.md) to run operations on Zeebe-based user tasks. +- Learn how to use the [Camunda 8 API](/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx) for task, variable, and form retrieval, and to run operations on Zeebe user tasks. +- Familiarize yourself with the [Tasklist API](/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md) to run operations on job worker-based user tasks. - Understand how to design, embed, and customize [forms](/apis-tools/frontend-development/03-forms/01-introduction-to-forms.md). - Understand how this architecture fits into the overall Camunda architecture with the [Java greenfield stack](/components/best-practices/architecture/deciding-about-your-stack.md). diff --git a/docs/apis-tools/java-client/index.md b/docs/apis-tools/java-client/index.md index 0768a607df..30212b1bdc 100644 --- a/docs/apis-tools/java-client/index.md +++ b/docs/apis-tools/java-client/index.md @@ -52,8 +52,8 @@ In Java code, instantiate the client as follows: .build(); try (ZeebeClient client = ZeebeClient.newClientBuilder() - .grpcAddress(zeebeGrpc) - .restAddress(zeebeRest) + .grpcAddress(URI.create(zeebeGrpc)) + .restAddress(URI.create(zeebeRest)) .credentialsProvider(credentialsProvider) .build()) { client.newTopologyRequest().send().join(); diff --git a/docs/apis-tools/migration-manuals/migrate-to-camunda-api.md b/docs/apis-tools/migration-manuals/migrate-to-camunda-api.md new file mode 100644 index 0000000000..a9b4bf9626 --- /dev/null +++ b/docs/apis-tools/migration-manuals/migrate-to-camunda-api.md @@ -0,0 +1,113 @@ +--- +id: migrate-to-camunda-api +title: Migrate to the Camunda 8 API +description: "Migrate from Camunda's V1 component REST APIs to the V2 Camunda 8 REST API to interact with Camunda 8 clusters, activate jobs, and run user task state operations." +--- + +import Tabs from "@theme/Tabs"; +import TabItem from "@theme/TabItem"; + +This document offers a comprehensive guide to migrate from Camunda's V1 component REST APIs (the Tasklist REST API, for example) to the V2 [Camunda 8 REST API](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md). + +Camunda is streamlining the developer experience by creating a unified REST API for Zeebe, Operate, Tasklist, and the Identity components with endpoint parity. This will be a single REST API for the orchestration cluster for a consistent and intuitive API experience to help your teams develop process automation solutions faster. + +:::note +The Administration and Web Modeler APIs will not be part of the Camunda 8 REST API, as these are platform APIs outside the cluster’s scope. +::: + +Overtime, there will be a deprecation process for the individual component APIs starting with the former Operate and Tasklist APIs. These will continue to be in the product for the short-term, but it is recommended to begin the adoption of the new API. In addition, we will begin to deprecate several Zeebe gPRC endpoints as well. See [the official blog announcement](https://camunda.com/blog/2024/11/camunda-8-7-releasing-february-2025/). + +## Migrate endpoints + +This section considers all public endpoints existing in the component REST APIs and the Camunda 8 API counterparts or required migration changes. + +### General changes + + + + + +- The new API can be found at `/v2/…>` instead of `/v1/…>`. +- All endpoints are no longer separated by component concerns and all endpoints receive similar support. For example, process definitions, user tasks, and user authorizations were previously spread across separate Tasklist, Operate, and Identity APIs. +- Naming, response codes, and type handling have been streamlined for all endpoints to provide a consistent UX. +- Endpoints with similar concerns (variable search, for example) have been consolidated into single endpoints. + + + + + +- Unified search request structure. + - Attributes `filter`, `page`, and `sort` on root level. + - Endpoint-specific filter attributes in the filter object, not at the root level. + - Pagination information in the `page` object. For example, the attributes `from`, `limit`, `searchBefore`, and `searchAfter`. + - Sorting configuration in sort object array, each object containing the field name and order (descending or ascending). +- Unified search response structure. + - Attributes `items` and `page` on root level. + - List of endpoint-specific response items in `items` attribute. + - Page information in `page` attribute, for example the attributes `totalItems`, `firstSortValues`, and `lastSortValues` to use in `searchBefore` and `searchAfter` in follow-up requests. + + + + + + + +### Name changes and mappings + +The following conventions apply to all attributes: + +- `key` and `id` fields contain the entity as a prefix, for example, `userTaskKey`, `processDefinitionId`. This applies when referencing other resources like `formKey` in the user task entity, in the respective entities themselves like `userTaskKey` in the user task entity. +- The full entity is the prefix to avoid confusion, for example `processDefinitionKey` instead of `processKey` (the latter could be interpreted as process instance or process definition). +- Other attributes of entities themselves have no prefix to avoid clutter, for example version in the process definition entity. In other resources, they have to be referenced with a prefix, like `processDefinitionVersion` in the process instance entity. +- The `bpmnProcessId` is now called `processDefinitionId` to be easily relatable to the entity (process definition) and the accompanying `processDefinitionKey`. +- The `decisionKey` and `dmnDecisionKey` are now aligned to `decisionDefinitionKey`, the `decisionId` and `dmnDecisionId` to `decisionDefinitionId`. Similar to the `processDefinitionId`, those attributes are now related to the entity `decisionDefinition`. + + + +### Tasklist + +#### Search tasks + +- **V1 endpoint**: `POST /v1/tasks/search` +- **V2 endpoint**: `POST /v2/user-tasks/search` + + + + + +- Filter attribute `assigned (boolean)` removed + - Use filter attribute `assignee` with condition `{ "$exists": false }` +- Filter attribute `assignees (string[])` removed + - Use filter attribute `assignee` with condition `{ “$in”: [ “xyz”, ... ] }` +- Filter attribute `taskDefinitionId` renamed + - Use filter attribute `elementId` +- Filter attribute `candidateGroups (string[])` removed + - Use filter attribute `candidateGroup` with condition `{ “$in”: [ “xyz”, ... ] }` +- Filter attribute `candidateUsers (string[])` removed + - Use filter attribute `candidateUser` with condition `{ “$in”: [ “xyz”, ... ] }` + + + + + + + + + + + + + + + + diff --git a/docs/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md b/docs/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md similarity index 61% rename from docs/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md rename to docs/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md index b4f17bacb4..4b6a81d4d4 100644 --- a/docs/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md +++ b/docs/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md @@ -1,32 +1,32 @@ --- id: migrate-to-zeebe-user-tasks title: Migrate to Zeebe user tasks -description: "Learn how to migrate job worker-based user tasks to Zeebe-based tasks." +description: "Learn how to migrate job worker-based user tasks to Zeebe user tasks." --- import DocCardList from '@theme/DocCardList'; import FormViewer from "@site/src/mdx/FormViewer"; -import YesItem from "./assets/react-components/YesItem"; -import NoItem from "./assets/react-components/NoItem"; -import TableTextSmall from "./assets/react-components/TableTextSmall"; -import userTaskMigrationDecisionHelperForm from "./assets/forms/userTaskMigrationDecisionHelperForm.js"; -import "./assets/css/condensedTable.module.css"; -import styles from "./assets/css/cleanImages.module.css"; -import APIArchitectureImg from './assets/img/api-architecture.png'; -import ZeebeTaskSelectionImg from './assets/img/zeebe-user-task-selection.png'; - -Camunda 8.5 introduces a new [user task](/components/modeler/bpmn/user-tasks/user-tasks.md) implementation type: Zeebe user tasks. -Zeebe user tasks have several benefits, including: +import YesItem from "../tasklist-api-rest/assets/react-components/YesItem"; +import NoItem from "../tasklist-api-rest/assets/react-components/NoItem"; +import TableTextSmall from "../tasklist-api-rest/assets/react-components/TableTextSmall"; +import userTaskMigrationDecisionHelperForm from "../tasklist-api-rest/assets/forms/userTaskMigrationDecisionHelperForm.js"; +import "../tasklist-api-rest/assets/css/condensedTable.module.css"; +import styles from "../tasklist-api-rest/assets/css/cleanImages.module.css"; +import ZeebeTaskSelectionImg from '../tasklist-api-rest/assets/img/zeebe-user-task-selection.png'; + +Camunda 8.5 introduced a new [user task](/components/modeler/bpmn/user-tasks/user-tasks.md) implementation type: Zeebe user tasks. + +Zeebe user tasks have several benefits compared to job worked-based user tasks. It includes: - Running directly on the automation engine for high performance. - Removing dependencies and round trips to Tasklist. -- A more powerful API that supports the full task lifecycle. +- A powerful API that supports the full task lifecycle. In this guide, you will learn: - Under which circumstances and when you should migrate. - How to estimate the impact on a project. -- The steps you need to take for a successful migration without interrupting your operations. +- Steps you need to take for a successful migration without interrupting your operations. ## Decide on your migration path @@ -34,17 +34,6 @@ Zeebe user tasks require migration of the user tasks in both your diagrams and t With this in mind, you can migrate at your own pace. If you should migrate now or later, and what is required to migrate depends on your current setup and future plans. -Use the following decision helper questionnaire to figure out what's right for you: - - - ### Task type differences Learn the differences between both task types and make an informed decision, and understand the new capabilities of Zeebe user tasks. Refer to this table for important high-level differences of the two task types: @@ -58,7 +47,7 @@ Learn the differences between both task types and make an informed decision, and
      Zeebe user tasks
      - Recommended for new projects + Recommended for existing and new projects @@ -91,11 +80,11 @@ Learn the differences between both task types and make an informed decision, and
      Partially
      Queries, GET tasks, forms, variables - ℹ Currently, you must use Zeebe and Tasklist APIs to use Zeebe user tasks + ℹ Currently, you must use the Camunda 8 and Tasklist APIs to use Zeebe user tasks - Supports Zeebe API + Supports Camunda 8 API @@ -123,7 +112,6 @@ Learn the differences between both task types and make an informed decision, and - Task listeners will be introduced in a future release @@ -146,10 +134,9 @@ Learn the differences between both task types and make an informed decision, and Recommendations You can continue to use this task type on existing projects when you have a custom task application running on it and do not require any of the above features. - Refer to the decision helper above for a tailored recommendation. - Use this task type on any new projects when you run Tasklist. + Recommended for existing and new projects when you run Tasklist. Migrate existing projects and task applications/clients to this task type when you require one of the features above, or the following use cases:
        @@ -161,12 +148,11 @@ Learn the differences between both task types and make an informed decision, and
      • Enrich tasks with business data
      - Refer to the decision helper above for a tailored recommendation. -## Switch the implementation type of your user tasks +## Switch the implementation type of user tasks We recommend you migrate process-by-process, allowing you to thoroughly test the processes in your test environments or via your [CI/CD](/guides/devops-lifecycle/integrate-web-modeler-in-ci-cd.md). To do this, take the following steps: @@ -181,176 +167,183 @@ We recommend you migrate process-by-process, allowing you to thoroughly test the Repeat these steps for all user tasks in the process. Then, deploy the process to your development cluster and test it by running the process and ensuring your custom task applications work. -## Use the new Zeebe Task API +## Use Camunda 8 API :::note The Tasklist REST API is not deprecated, and you still need it for queries on both task types. ::: -Operations on Zeebe user tasks which modify the task state have to be performed using the new Zeebe REST API. However, queries and adjacent operations still require the Tasklist REST API. The following table provides a breakdown of which operations are supported in which API, and for which user tasks. +The following table provides a breakdown of which operations are supported in which API, and for which user tasks. - + + + + + + - - - + + + - - - + + + - - + + - - - + + + - - + + - - + + - + - - - + + +
      Operation Tasklist APIZeebe Task API (8.5)Camunda 8 API
      Deprecated on 8.7Supported from 8.6+
      Query tasks All types← Use Tasklist APIQuery user task Job worker-based user tasks Zeebe user tasks
      Get task All types← Use Tasklist APIGet user task Job worker-based user tasks Zeebe user tasks
      Retrieve task variables All types← Use Tasklist API Job worker-based user tasks Zeebe user tasks
      Get task form All types← Use Tasklist APIGet user task form Job worker-based user tasks Zeebe user tasks
      Change task assignment Job worker-based tasks Zeebe tasks Job worker-based user tasks Zeebe user tasks
      Complete task Job worker-based tasks Zeebe tasks Job worker-based user tasks Zeebe user tasks
      Update task - Zeebe tasks Zeebe user tasks
      Safe and retrieve draft variables All types← Use Tasklist APISave and retrieve draft variables Job worker-based user tasks -
      -You can also operate both task types at the same time in the same application utilizing both APIs. We recommend this for a smooth migration, but you should eventually update all processes to use the new task type to use all benefits. The following image illustrates how to route API calls to the respective APIs: - -Task API Architecture - -The major changes are: - -- Create and maintain new, additional secrets for the Zeebe REST API. -- Call dedicated endpoints on separate components (Zeebe vs. Tasklist) for all state modifications on tasks for the respective task types. -- Manage new request/response objects. - The following table outlines the respective endpoints. Click the endpoints to follow to the API documentation and inspect the differences in the request and response objects. - + - + - + - + - + + - - + - + - + - +
      Operation Tasklist APIZeebe Task API (8.5)Camunda 8 API
      Query tasksQuery user tasks - + POST /tasks/search ← Use Tasklist API + + POST /user-tasks/search + +
      Get taskGet user task - + GET /tasks/:taskId ← Use Tasklist API + + GET /user-tasks/:userTaskKey + +
      Retrieve task variables - + GET /variables/:variableId -
      - +
      + POST /tasks/:taskId/variables/search ← Use Tasklist API
      Get task form - + GET /forms/:formId ← Use Tasklist API + + GET /user-tasks/:userTaskKey/form + +
      Assign a task - + PATCH /tasks/:taskId/assign - - POST /user-tasks/:taskKey/assignment + + POST /user-tasks/:userTaskKey/assignment
      Unassign a task - + PATCH /tasks/:taskId/unassign - - DELETE /user-tasks/:taskKey/assignee + + DELETE /user-tasks/:userTaskKey/assignee
      Complete task - + PATCH /tasks/:taskId/complete - - POST /user-tasks/:taskKey/completion + + POST /user-tasks/:userTaskKey/completion
      Update task-- - - PATCH /user-tasks/:taskKey + + PATCH /user-tasks/:userTaskKey
      Safe and retrieve draft variablesSave and retrieve draft variables - + POST /tasks/:taskId/variables ← Use Tasklist API-
      @@ -373,9 +366,9 @@ docId:"apis-tools/tasklist-api-rest/tasklist-api-rest-overview" }, { type:"link", -href:"/docs/next/apis-tools/zeebe-api-rest/zeebe-api-rest-overview/", -label: "Zeebe API (REST)", -docId:"apis-tools/zeebe-api-rest/zeebe-api-rest-overview" +href:"/docs/next/apis-tools/camunda-api-rest/camunda-api-rest-overview/", +label: "Camunda 8 API (REST)", +docId:"apis-tools/camunda-api-rest/camunda-api-rest-overview" } ]}/> @@ -383,6 +376,6 @@ docId:"apis-tools/zeebe-api-rest/zeebe-api-rest-overview" If your task application does not work properly after migration, check the following: -- **The endpoints return specific error messages when you run them on the wrong task type**: Ensure to call the right endpoint for the right task type, c.f. above [table](#use-the-new-zeebe-task-api). +- **The endpoints return specific error messages when you run them on the wrong task type**: Ensure to call the right endpoint for the right task type, c.f. above [table](#use-the-new-camunda-8-api). - **Forms do not appear**: Ensure you have extracted embedded forms, if any, and [transformed them into linked forms](/components/modeler/bpmn/user-tasks/user-tasks.md#camunda-form-linked), before you change the task type implementation. - **Task update operation does not work**: The update operation is only available to Zeebe user tasks. diff --git a/docs/apis-tools/operate-api/overview.md b/docs/apis-tools/operate-api/overview.md index 61085487b5..9d126e74ba 100644 --- a/docs/apis-tools/operate-api/overview.md +++ b/docs/apis-tools/operate-api/overview.md @@ -5,6 +5,10 @@ slug: /apis-tools/operate-api/overview description: "Operate API is a REST API and provides searching, getting, and changing Operate data. Requests and responses are in JSON." --- +:::note +To migrate from Camunda's V1 component REST APIs to the V2 [Camunda 8 REST API](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md), review [migrating to the Camunda 8 API](/apis-tools/migration-manuals/migrate-to-camunda-api.md). +::: + Operate API is a REST API and provides searching, getting, and changing Operate data. Requests and responses are in JSON notation. Some objects have additional endpoints. For example, `process-definitions` has an endpoint to get the process-definition as XML representation. diff --git a/docs/apis-tools/operate-api/specifications/by-id.api.mdx b/docs/apis-tools/operate-api/specifications/by-id.api.mdx index eef02cea21..5bd23389b1 100644 --- a/docs/apis-tools/operate-api/specifications/by-id.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-id.api.mdx @@ -5,7 +5,7 @@ description: "Get decision instance by id" sidebar_label: "Get decision instance by id" hide_title: true hide_table_of_contents: true -api: eJzlV1tv2zYU/isCn7bOiZw2HQpjGOAuSqHVsI3YaQcEQUFLxzEbidRIyqkh6L/vHOpix5a9bE8b+iSK537Vp4JZ/mDY4I5dQSSMUDKUxnIZAbvvMZWB5pYuYzZgiw0+eizjmqdgQZNYwSS+IFEQSUg8Zdyu8ByDibTISBovw9hTSy+ubXiiMdJjGv7MhQY0YHUOPWaiFaScDQpmNxlpNlYL+cDK8p6YTaakAUP01/0+PZ4bmuVRBMag4khJC9ISC8+yREQuEv+rIb7i0I5afIXIUoCa4raisoKBHfrSY4+w2bkXaOoBNAovlU65ra5+viROjNTCoY4eA5mnlPnrYTgKrvAi+DQc3Q7n7nw7/jiefB6702wa/BZeh3h/j/pgzZPcxXLVqfgZyzUXSa67uTBOStUVLIUUxPzxxTHVok2vvFyw6YCwO6sNeevT3zCOXfedYPiEfSqqip90783rXam5Yz1esissyCycjL/Mh+9HARJG4Ty4GY6+BH9Mb4IZkfYqt60o1RD7OE/sqdpBHMost2aHh2vNNzRlFlLzrxtXHssY2e2iIMkKm9DV/o5wLjqO1utJbv8bbmOS8wSOtI8jyRi+vagvTmSgCrdiAcml7TR4QgESiXzZtctCicGJ2KMVCcYe32mYwUUC6U//dLfRasrNC2cjxYHnD92pbvd5F9F2DtNuUgKtlW4z8eYwE9dKL0Qcg3yeg1f+q/9/uJeH4d5UBQcqvVG5jsCTynpLlcv4++iCt13zMJyG3k7AHjiB7yAfhCIgyrWwG4e5FsA16DOHQe7we1JgCtSjAPd2v4+9PoA9RF7eYuM5zIZQbqUI3j2ASwWhtwHz1xd+I3PWyBi/EHHJyBm9bvBfrhPkL6rklgPfL1bK2HJQZEpbYl5zLTgWwmWUaFVhl9x9AVmiIp64632/5yvwiECrn9CjxXdqgcr6ucMhaOO5unf9d/1OTcR6RMu2MbZ6VtZmnXoq5k5NDqI2hZoRXxV0U5ztJzETBJmarxqbTBE8zIOzWQsdHJKu5dDD3YK3WmoXnUP0XjGxhvu66dXfP89dXwm5VE687q+JQ/fgTfMFzgyFchiw8rjD0/iwYg0el7EXqTRLgLZTDQPbpqKT16jFWfFShShOUWc7SatVTp2wUspWgIpGF1WTW1UjUVAGu+jp6ek84ikuPH6OBikJ6CQg9ifeOm+j+qa3JxyryLTSQrl3X8MSNKCXfq3I+A4/NACRXZz3z/tVVxmbcrlj6PQIPctZWx4L36yfJRxLWdYOFvV43bH1Bduize2A4eUAVWIbVYNyx4piwQ3c6qQs6Rq/C9oN/Xau3BTGwtAZ53jJEwMHPrUrkv1wU/9w/egd/ynrDKFpXrlhLexirP4VItxWErRdAY+xC8mpijDEBsrsjsjB3xiNTbuGPgRz5OU55anN5V5rO+2d7vzy3jF4c/UI8tfWOUuv5F9Z/gXHqxkU +api: eJzlV21v2zYQ/ivCfVo7JXLadCiEYoBbK4VWwwlipx0QBAVNnWM2EqmSlFND0H8fjnqxY8tetk8b+skS74V3z734UQmW3RsIb2GEXBihZCyNZZIj3PmgctTM0mECIczXcQI+5EyzDC1qMitBsgwhBEEiISGEnNkl+JCg4VrkZA0hxImnFl7S3OGJ9hIfNH4vhMYEQqsL9MHwJWYMwhLsOifPxmoh76Gq7kjZ5EoaNCR/NRjQz9OLpgXnaAz4wJW0KC2psDxPBXeZBN8M6ZX796j5N+SWEtSUtxX1LSLpicWHB1xvnQtp8R41+LBQOmO2PvrtnDSNZRb3ffiAssgI+YthPI5G4EP0eTi+Gc7c883k0+Tyy8Q9Ta+iD/FFHI3grvIBVywtXC6jXsdPVC6YSAvdr5VrRVCNcCGkIOVPz86pMW175fmGbQfE/ai24k1Mf6M4cd13ROEzaiPqih8N7/WrbauZUz1cslH0IZ7Gl5Ovs+H7cQQ+jONZdD0cf43+vLqOpiTaqdymolRDjaZI7bHaYRLLvLBmS4dpzdY0ZRYz868bVx5CjO7tk1Q+WGFTOtrdES5Ep9FFfVnY/0bYPugixQPt40QywR/P6osjCNTp1ioombS9Fx5xAFVF4vO+XRbLFUtF4tGKRGMP77Rcq3mK2a//dLfRairMM2cjQ2PYfT/U3T7vE9reYdoGJdJa6Q6J1/tIXCg9F0mC8ikGL4OX//90z/fTva4LjlR6owrN0ZPKegtVyOTn6II3ffMwvIq9rYQ9dAY/AR7EIpAXWti141xzZBr1ieMgt3eVXwJX6kGge7vb5V4f0e4zL2++9hxny9AuFdG7e3RQEHsLIVidBa3NSWtjglIkFVAwetXyv0KnEEJZg1uFQVAulbFVWOZKW1JeMS3YPK2xJVld2AVz/4CQKs5Sd7wb92yJHglo9RN7tEv0qAXq208dD1F6x93bwdtBrydSPeBl0xgbP0tr814/tXKvJ0dR20JNSa9Oui3O5i8xF0SZ2n81uLyKroez6GTaUQfHpBu7yn9S8M5LE6ILiN5rJWi1L9pe/ePLzPWVkAvlzJv+unTsHr2rYp4KTqnsJ6w85vi0x7gVK/SYTDyusjxF2k4NDeyaip681u1CaS9TUlhFne0srVYFdcJSKVsTKhpdxl0N60aipEwYBI+Pj6ecZYVM2ClXGYGQCo7SOBwb3MbNib9jnChuOmuh3HugcYEaJcegcWQCxx9agghnp4PTQd1VxmZMbl10fISeYNaVx+IPG+QpE5J8ugDLZrxuYXUGG7a5GTDwIRQJfXrVg3ILZTlnBm90WlV0/L1A7YZ+M1duChNh6DmBcMFSg3sxdSsSfrluPrheeIc/ynpTaJtXrqGjXQDNpxDxtoqo7RJZgtoFVQuGnGNut0z2vsZobLo19DGagQ+sIJw6LHda23nvDefde6fgzdQDyt+74Cy9UnxV9RfHqxkU sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx index 79260b9703..3975e1c853 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx @@ -5,7 +5,7 @@ description: "Get process instance by key" sidebar_label: "Get process instance by key" hide_title: true hide_table_of_contents: true -api: eJzlVllv4zYQ/isEn/ZwLGc3LRZGsYA3cRZu0sSI3e1DEBSUNLa5kUiVpJwagv57Z6jDjq0E3sdi/WDxmHu+4UzBnVhaPrznU6MjsHairBMqAv7Q4zoDI5zUahLzIQ83V7D5+5T3eCaMSMGBIcaCK9zg/SNs8E4qXGbCrXAdg42MzEgCHiI30wuWVXqYbBT1uIF/cmkAlTiTQ4/baAWp4MOCu01GoqVysASDpAttUuGqo1/PeFk+ELvNtLJgiePDYECf56pneUQ6kT/SKEo5IhFZlsjI+xd8t0RXHGrW4XeIHPlsKBpOVlrI12PM83yk+hsGS1Y6XmX6+IGYwixVTT7iHR7rjFRLL1YYdOPqeDM8/WWin250DE2Sj+dHeuMuhINOa0DFL94hZ9cNMeUpAW90Pp98G+PB+e0f0+vxfHxB69HN+fgalw/bGF7AQipJ+Trebky2UO7VIO4B38vmkTRRngjzZu/2rRcqXUKS9kumxF+Pn3UhcKLWIpExI6iDdS8jEX0NE0jf/ygiKcy5PRJfKVotlt35auuy67I6OLjYicnYGG3aSHw8jMSlNqGMY1DPY/AuePf/d/fs0N27KuFAqbc6NxEwpR1b6FzFPwcKfumqh9F0wnYcZuAZfoJ40IsIUW6k2/jmGQI+QubEN5R7fOwKDIF+lOB3D/s99Cu4gwbKwg2rei/25JWmVr0EHwrqwkMerE+Dmuek4bFBgSwlJ2PMumnkuUmQvqiCWw6DoFhp68phkWnjiHgtjBSYCB9RuqsSuxB5QpFMdCQSf7xv93wFjC5oVKAhwOGeIFBp7/vHGHU8F/dp8GnQKYlIX5CyBcZWzsq5rFNORdwpyQ8WTaJmRFc53SSnTbbI5JUPfj0F3U7Hd6P5+GQ2ns0mtzfNRFTzUW/fSXgrpTbRG0T7iog31JcNVn//a+5xJdVCe/YaX7d+UgM2zUOsGXLl0GHNhJ+C8OPkGphQMYt0miVAr9M+qmjFGrFYKyzV2Hs1IdtzOqNzQsJKa1f1cypdFE1mVUAipyyi6OnpqR+JFB880UeFFAQ0EnBiI9o6btf1SW+POdaRbbml9vvAwAKwdUcQ1IJsQFLXzZDFT/uD/qBClXWpUDuKXi+hZzFr0+PgXxdkicBUlrWBRV1e93x9ytsRZVtgeDYkkQijqlDueVGEwsKfJilLOsa+YHzRb+vKV2EsLa2xjhcisXBgU/tE8jd39eD8lr08XHe60IBXbXxVJzntcOlR6f9LGrxWIGKEIVlV3YwQQZnb4TkYoqlu2nfo63iOtCKnQLXB3MO2l95pz29fPAGb60dQn1vrHG3JvrL8DzUuW/w= +api: eJzlVt9v2zYQ/leIe2o7JXLabiiEYUCWOIWXNAkSr3sIjIGizjYbiVTJkzND0P8+HCU5jq0E2ePQF1sS77uf3/GuBpILD8kdXDur0PuJ8SSNQphFYEt0krQ1kwwSSNfnuP77CCIopZMFEjoG1mBkgZDAPa4hAm0ggVLSEiLI0CunS9YACZzjWti5KFs7QveGInD4vdIOM0jIVRiBV0ssJCQ10Lpk1doQLtBBBHPrCkntp18+QtPMGO5Lazx6RrwfjfjvqenbSrFNiEBZQ2iIRWRZ5lqF+OJvnuXqfcs2/YaKOGbH2SDdWuFYX+NewLHpr+i8bm28CPrwfh80lYstnCenzYKl0rIwfdWyQYlSOjR0/npng/xZbh8ubYY9FV6P9yQdnUrCQW/QZM+eeRo8YVBVMD2PT6aTr2OI4OTqy/XFeDo+5efjy5PxxfgUZg0zT+msq22nJbU2R2m2UnqKc2001/z1UREaaejFFO80T9ANSjtV5dK92Tl9G5RqylnTbts1TdNE8HGIxROzkrnOBLcLenqezaWzaY7FT/+V1VyEyr+SowV6LxfD1dz09tBh+2HvYCsnY+es22Tiw34mzqxLdZaheZqDd/G7/3+4H/fDvWkLjlx6byunUBhLYm4rk/0YLPh5qB+OrydiK2CBAfAD5IPvS1SV07QOAzhF6dAdhKF0N2uiGpS19xrD22x3Dn9G2hvCIl2Ldn4XSEvL436BIRU8yROIV0dxhznoMT6u73HdADvjVv0yULkcEqjb5DZJHNdL66lJ6tI6YuGVdFqmeZtbPmsLO5dVzpnMrZJ5+Lzr93SJgg943eBFgpYomAKt9cNwGVu3o+7T6NNoUBOLPqPlkRiPepZE5aCeVnhQU1hO+kLdslwbdF+cTbFlqc9D8rtN6up6fHM8HR/cjm9vJ1eX/VbV4XjybxV8o6VzMTgUhl8Qgl76rOfqH39NA6+0mdsA7/h1FbY9FNdVmmvFoewHbIUMm5SQivQKhTSZULYoc+TbaZdV/CR6tXPrRGGNJsvMDkhytmImLK2ldtpz60oVatgSiYPySRw/PDwcKllUJpOHyhachFwrND7kscvbRfcl2gFnVvkNWtvwHjuco0OjMO4U+Zi1rvpFDY4OR4ejllWeCmm2DL3cQk9ytikP4T8Ul7nUYR0JDtZde93B6gg2K8pjg0EECaucRV2j3EFdp9Ljny5vGv78vUIXmv6xr0IXZtrzcwbJXOYe93zaXJHw5qZbvt+K5xf0wRB68pp16Oq84jeI2t04/Da8li1RZuiCV+3JsVJY0hZmbxHnvtncQ5/HU4hAVpyox8XuKbeD9kF/fv09CIipvUfz28Y74lf2r2n+BXkpdA4= sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -40,7 +40,7 @@ Get process instance by key Success -
      Schema
      +
      Schema
      Invalid request diff --git a/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx index e2d2de9146..39f7967ede 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx @@ -5,7 +5,7 @@ description: "Get process definition by key" sidebar_label: "Get process definition by key" hide_title: true hide_table_of_contents: true -api: eJzlVltv0zAU/iuWn7h0TTcGmiqENESHBohNaxEP04Sc5LT1ltjBdjqqKP+dc+wkXdsw4BHx0sY+9+/cXHEnFpaPr/ml0QlY+w7mUkknteI3A64LMIIO5ykf83j9EdbfjviAF8KIHBwYEq24wgPS72CNNKnwsxBuid8p2MTIwqsbc5Rmes6KYImlG1MDbuB7KQ2gGWdKGHCbLCEXfFxxty5IuVQOFmCQda5NLly4enXM6/qGxG2hlQVLEkejEf1tG5+WCVlF+USjKuWIRRRFJhMfYXRria/at6zjW0gcRW0IDyeDFYr2T9wbNPB0rNYZqRZEWCGAMlh9VM2LI+KOi1w1WaJ09OjDsIRyvUSiSpfR1X6m65rox32wnauVyGTKKD9g3a/hQ3DiDPLnfwujdcKV9g8hyNFvsegHUypUpZJ+Yrh4DJWJMdp0SLzYR+JMm1imKahtDJ5Fz/79cI/3w70KCQdKvdWlSYAp7dhclyr9P6rgZV8/nF6eswcBM/AC/wEeeGkhKY10az/zYxAGzIGfgtc39aBCCPSdBH+62R3978H1zH0Wr1lYGrhMlpp2zAI8GLQ+xjxaHUaN1MFGykYVCtWcHDKrdgeVJkOJKgBcj6OoWmrr6nFVaOOIeSWMFJgMjyrRQnLnoswIzUwnIvPXu77PlsCIQGOc9pfDM5VBsD4kIMnGtrqT0cmoVxOx/kLLpjg2epbOFb16AnOvJr8R22RNiS8E3SaoS7go5EcPf7PALy4nV6ezycF0Mp2eX3xul3kjRyvoQdI7LY2L3iE6Bybecp+19frh68zXllRz7cWbGrvwjwxgl2WMfUOh7AesmfDrG/+cXAETKmWJzosMaEK1ldUWO32xVi32C8s1lo6m6vaSzuiSKmGptaOKD+2LqsmtUEgUlMUqur+/HyYix6EnhmiQQEAnAZ8axNvg9qm5GewIpzqxnbTU/hwZmIMB9DJqFNlo6y3AD4ej4ShUlXW5UA8M/a6NtlDrEuTgh4uKTGAy68bFqmmxa746DMNnt8nwdkxKsZRCs1zzqoqFhS8mq2u6xv1gfPNvest3YiotfWM3z0VmYc+rblTyJ1fNq+8pe+xt2BtGW8Jq7Xs7K+mEn742/W+NU4kvQaRYjORXoJxiHRXugczeG5C6p5tH7ycz5BUlgdUBulPhXnuvP6/fegY203eg3nTeOTqSf3X9Ez6D8Xg= +api: eJzlVt9v4zYM/lcEPm03N0573XAwhgEdljt0HdaiybCHIhhkmY51tSWfJKcLDP/vAyXb+eXrbo/DvSSWRH4kP5KiWnB8YyF5ggejBVr7C+ZSSSe1gnUEukbDaXGbQQLp7g53f11BBDU3vEKHhlRbULxCSOAZdxCBVJBAzV0BEWRohZG1h0vgDndM56wOlli2NxWBwU+NNJhB4kyDEVhRYMUhacHtagKXyuEGDUSQa1NxF7Z+uIauW5O6rbWyaEnjaj6nv2Pjy0aQVYhAaOVQORLhdV1K4SOMP1qSa88t6/QjCkdRG+LDyWCFov0S96KenlHUOiPVhg62aKwMVl+FeXt1IL3im0mwtK5Un0TK1oSEQ8WVmzykU+lK2jovhK6j8+spVm/VlpcyY5Q+tO7z7NZGpyVW3/1Xlq3jrrFfyFCF1vLNNNdSWceVmD4MG6+xsjBGm5GJt+dMvNcmlVmG6piDN/Gb/3+41+fhPoaEI6Xe6sYIZEo7lutGZV9HFXw/1Q83D7fsIGCGXuEr4KOLwKJojHQ7PxJS5AbNhb8kn9Zd1ILQ+lmiX61PJ8MHdBNjgaU7FmZKha7QNII26Mmg6ZJAvL2Me62LvZaN22fcdUAOme0wohpTQgJtILhL4rgttHVd0tbaOBLeciN5WgZ+6SwkN+dNSWyWWvDSb5/6viqQ0QHd8jTeXIGMyiBYnxGRZOMY7t383XwSiUQ/g7Ivjj1O4Vw9iROEJ5H8wByStSS5EPSQoDHhvJZ3nv5+vt8/LB5vVouL5WK5vL3/fZj1vR6NoIOkjyi9i94hWgchGKTfD/X6658rX1tS5dqr9zV2798gyB6atJSCQjkPWDPupzvjwsktMq4yJnRVl0g31FBZQ7HTFxtgc21YpZV0mqrbazqjG6qEQmtHFR/alwufw1BIFJRN4vjl5WUmeNWojM+EroiEUgpU1vPY8/ZbvxOdKGda2FFbar+ODeZoUAmMeyAbHz0V4HI2n81DVVlXcXVg6N/a6Ii1MUEO/3ZxXXKpCNW72PYt9gTby3D5nDYZRJAQ6Drqm+UJ2jblFv8wZdfR9qcGjW/+fW/5Tsykpe8MkpyXFs+8Gq9K+OaxfxR+y157Ok6GMZSw2vneLhtaQRRebf63W3cRFMgzNN6vcHIjBNbuQOfsiUjdM95HHxYriIA3RNZI6EmFe/RJf3782QuwlX5G9dPonaMl+dd1/wB6G/xX sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -40,7 +40,7 @@ Get process definition by key Success -
      Schema
      +
      Schema
      Invalid request diff --git a/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx index 15e65cd3da..8e4bbe0400 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx @@ -5,7 +5,7 @@ description: "Get incident by key" sidebar_label: "Get incident by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v2zYQ/isCP61dGjtNNhTGMMCNFU+NIxmynRYLAoOWzzETWdRIypkh6L/3jnqJE6tr83HoF5s63utzd7zLmeF3mvVumJdEYgmJYbdHTKaguBEy8Zasxxa7S9jNT9kRS7niGzCgSCJnCX7g/QPs8E4keEy5WeN5CTpSIiUNSERpR64cURs4Ygr+yYQCVG5UBkdMR2vYcNbLmdmlpFIkBu5AIetKqg03Jen3M1YUtySuU5lo0CTxvtulv+cmJ1kUgdYoH0lUhUaRhadpLCIbV+deE19+aFku7iEiH1NFKBhRWqEYf8Q9K0emB7ASiSBbl68V9RJteBLBjwuWLA2rNkokd8gJSbah3M78ydg99y48d4DUmX/pB599PHnB/Ko/Hnv+cO6GYRAi6VPwce4H89Cdhp47QcJ54A+8qRf4DYv7ZRr2z6fz6/5o5jbU8/5o5A7m7si9cv1pQ575f/X9gb0hyty9xlukX7mTSX/ozife36jjy7nrDqxzlZoBujvZN/pEILP9Zw5dBOEVOj2dXwQzf8BuEZEN4sjvWkDBu0iBLYKp2LQzIPzmP/HE6L1rl6LwhmF/ah0P3UkwurbHsYuQ+UPryL1cvCKPkPDEUNMdeEW3wsREajq1KIh81tYAXrLlsVg61GmgzbcbAWtuEcPm19c2BGGU6e/GdfqefScboqr21sv2wt4Hw1VKqgaJ00MkLqRaiCXi9RyDt523//9wzw7DDcuEA6Vey0xF4CTSOCuZJcufowp+a+uH/thz9gJ2wAr8BHjQcwZRpoTZ2Zm9AK5AvbPz7AYfqBwhkA8C7Nfty9E9BNPMbWexc8pRjyvAWtJmcAcWAhr6PdbZnnRqXt3JkbVgZFxt630hUzHy5SWYRa/TyddSm6KXp1IZYt5yJTgCbxGkuzKRK57FhFwsIx5b8ks/p2tw6II2Eto1DH5Tykvrx3a4oo3n6j50P3RbNRHrN7Q8FcKTnrUxaauekrlVk91j6sRMiK8Muk5Gk1yeiksLerVsBWOXJs67Cc5PnIH14lXJoYf7CW60VC5ah+i7ZGI190Vdm58+T20diWQlrXhVT4FdCMEZZwvsEQrlMGDpcLt04Z8RW3B4snQiuUljoNeo2m2curDp5NRqsTecjcR1SVIlW0mjZEaVsJbSlMOXWhVVk1tlIVFQGqvo8fHxOOIbfOD4MRokENBJwAWReCvcRhXl6IXwUka6kRbSfncUrEABetmpFOkOaaVCLoM9Oe4ed8uq0mbDkz1D7S3zDKsmLQb+NZ005pjConIsr9rphm1PbHKrhsJzj1Rh2ZSNccPyfME1zFRcFETGd1/Zpn7qI9t1S6HpjP264rGGA1+aJ5D9ElZ7+RvncGdvdbku0mRnuzfO6AuPtvrsb0FL0Br4EsuNvClv+lgpqdmTOdjNqT+ad2bo0srIMwKmAe9FDVvtrf788dEyOFP5AMmfjXeGPsm/ovgKBVte4w== +api: eJzlVm1v2zYQ/ivCfdo6NUr6MhTCMMC1mUyNIxu2nAYLAoGWzjEbiVRJKp1h6L8PR8nKi921/Tj0iy0d7/W5O/HZguW3BsJriGQmcpQWbnxQFWpuhZJRDiEsN+e4SV+DDxXXvESLmiy2IHmJEMIdbsAHISGEits1+JCjybSoyAOEcI4bT608sQvgg8bPtdCYQ2h1jT6YbI0lh3ALdlORSyEt3qIGH1ZKl9y2ot/fQNPckLmplDRoyOLV8TH9PQ05r7MMjQEfMiUtBQ23wKuqEJmrK/hkSG+7H1ktP2FGOVaaULCijUI1fk96zo5Cj3AlpKBY5z9qGkljuczw+w1blV7VWC3kLfiAsi6pt4t4PmXD6DRiI/BhEZ/Hk48x+BBN0ovBdBrFZymbzSYz8OHD5H0aT9IZS2YRm4MP7IoNF0k0idNxNE9YzGZPz4eTeBS5850LdpXMBsMkvRyMF6yXDgfjMRulbMwuWJz04kX81yAeuROSpOySxQn4cMHm88EZS+fR3yxlV0PGRi75zs2IDaP546APAgo7eJLQ6WR2kcaTJD2dLOIR3DQ+lGgMvz0AWuNDptENSSLKwwrGcvufeA+GSXTJqIrobDZIXOIzNp+ML93jlMWjKD5ziXxSyx/oM0ouLS3lXlZ0KmxBon6Tm4bEbw4tSCTveSFyjzYRjf36olRaLQssf/vRhSGMavPNul6/gm90Q3TbcPDw8OA/BoNprXSPxOt9JE6VXoo8R/kUgxfBi/9/uW/2y521DUdqvVG1ztCTynorVcv855iCt4f2YTCNvEcFe+gMfgI86HOGWa2F3bg7fYlco37p7rvrm8bfQqbUnUD3dvP8aj9D29/r3nLjtVSgRLtWxBxu0UFApCCE4P4k2OmaYHuHmwYouL7f8YlaFxDCtgWzCYNgu1bGNuG2UtqS8j3Xgi+LFks6axu54nVByBUq44UTP88zWaNHB8RYiIvYNXrU8jb6kbt8lX7m7t3xu+ODnkj1K14eBuHBz9ra6qCfVvmgJ8dzdo2Zk15b9K4ZfXN5Jc4d6B0Zm0wZ3Tgv52xO1+GOmHV2jf+kwb2XLkWXEL23SrDTPt3N5oePiZsjIVfKmXfzNHGEEb1pvSxERqXsF6w87kiZxzMr7tHjMvcyVVYF0teo4z7ebrDpydu5XSntlUoKq2iSnaXVqqZJWCtl28uXVpVnroftIFFRJgyCL1++HGW8rGXOjzJVEgiFyFAah2OH27iT+M+Mc5WZ3loo9x5oXKFGmWHQOTIBeaVBbos9OTo+Om6nytiSy0eBDq/ME6z6tlj8xwZVwYUkXy6xbbdO13B/4prbLRT4EJKrG79bjGvYbpfc4EIXTUPizzVqt9QPe+S2LheGnnMIV7wwuJdL/wmEX2Ydb//V2+f0B1PeDancuO0tanoDv6XT7rchErRGnqN22bQngyzDyj6y2ePutB/9d+aMEWXkNQHTg/dshp33g/n88d4peIm6Q/lnn52lV8qvaf4FfTtoRQ== sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -37,7 +37,7 @@ Get incident by key Success -
      Schema
      +
      Schema
      Invalid request diff --git a/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx index 2d0d3a2952..43f441aff9 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx @@ -5,7 +5,7 @@ description: "Get flow node instance by key" sidebar_label: "Get flow node instance by key" hide_title: true hide_table_of_contents: true -api: eJzlV1tv4kYU/iuWn9ptEshuWq1QVcmAyboQQ22TdBVFaLCHMBsz447HpMjyf+854wsQnN3sY7UvyZz7Zb4zPuSmIo+p2bs3R7F45iKiDk8V4SE1H85MkVBJFBPcicyeudyN6W5xZZ6ZCZFkQxWVaJmbHAiQP9EdyBiHY0LUGs4RTUPJEvQATLA2xMpYVYEMVkc6MyX9J2OSQhQlM3pmpuGabojZy021S9A344o+UgmqKyE3RJWs367MonhA8zQRPKUpWrzvdvHfcWw/C0OapmAfCnDFFaqQJIlZqAvsfElRLz+NLJZfaKiwaIntUKyMgsW+JT1th6Hrvo6/13BIV4wzTPLtphBKqiFR9EA/VZLxR5RSHr0qw9txEQbRV8WuvvIWBcZDFkF/355rqfLSFWaZbRCYc9ef2QNn5NhD4M686cD2fTj58/5iT9m3thssjnl+YHnBQkuActzA9m7soWMF9mJgBYNP7aLgkze9a0T96dwdWt7nhmG7w+bs296tMwATyx8D6dkD27ltyDmI6/ON5c6tSU1V/+y/B5O5jxbXEPjO+qxTOeXNLM+aTOzJAasst2/59vCA69t/zW0XEhpNpncYdT4JnIXjQiOQ258OUWsAzhbWIHBunQDpPsRzoWMLbz5pkvcHnjMLGgqrrstyx+70zjUfSpy14Wh/eTqMjUGnN7OJHeg7xGY7roXEwwFkDvwshYgp4RoelBOuWuGIUqZiZI1q2NZvSlGg+KrtLXD4lsQsMvDRoal6/U2AAVzGdPPL974N2JUs/Sb8P7zH+jYw4uTxtWGqqmkTts/NYVNsKYVsOvHhtBMjIZcsgt4f9+Bd593/v9yr03K98sIpXn0qMhlSgwtlrETGox8DBb+2zYM1c4yDgg2qDX6AfuADRsNMMrXTe8ySEknluf6038PLlEMLxBOjmnp4uc5cU6V3GeNomTGWO6NchGBBWgvcmx6pbgauRD2zs73s1BvQeW2UdnKwKUzMR27rtSqTMRjkZX+LXqeTr0Wqil6eCKlQeUskI3AXuqkoK+92RbIYmxmLkMSa/TL1YE0NFODihiuZAhpRUEa/0MsHxDh297H7sdvqCVVf8bLHxt7PWqmk1U+p3OpJb3n1XfmoVxZd309z3yRhY939aiedzmwPPjTnPnzfnKlb76eVHWR4eOeNlypFnZD+HGkls9Ye1XD98y7Q0GJ8JbR5BbGp3pupMcuWMDZYymnBwiB6JYV/im2pQXhkhGKTxBQfqGr3a2CFJ6N2C+NibATshALBrS2VFBkiYS2EKr/AOL3gGtMqgYRFpYCi5+fni5Bs4M0jFxAQmwBJUlifUbfq26TinL0wjkSYNtZMaLoj6YpKCll2KkdpB70ikMtiLy+6F90SVanaEH4Q6FtTdNS15oIU/Vd1kpgwvSLoFPNqwu7N7aVZLqrHMwbMHvoEJJWzcm/m+ZKkdC7jokA2fB2kHv39aOlBjFiKZ5jlFYlTepJU81CaP3nVD5mfja/82mktogYw3+nJjjOk4KiRqf8WuCytKYkAiphWKbEARYk6sDn5VYOz0zxG1zYuriTDVu3XrWN8a++t+fze1wpGIJ4o/6PJTiGJ+RXFf+pfx+g= +api: eJzlV1tv2zYU/isCn7ZOjdI2HQphGKDYTKvFlT1JTlYEhkFLxzEbmVRJKplh6L8Ph7rEjp1eHoe+2CLPhefyHerTlhh2q4l/Qy4K+SBkDqHQhokMyMwlsgTFDJcizIlPFptL2MzPiEtKptgaDCi03BLB1kB8cgcb4hIuiE9KZlbEJTnoTPESPRCfXMLGkUtn2R7k8O4klyj4UnEFOfGNqsAlOlvBmhF/S8ymRN9cGLgFRVyylGrNTLP1+xmp6xma61IKDRotXp+e4t/+2UmVZaA1cUkmhQFhUIWVZcEzm6D3WaPe9vBkufgMmcGkFZbD8OYUTPZ7wrN2eHRX18sfNRzCkguOQX6/qTZMmSEzsKOvjeLiFqUg8mdl2J0IYZB/VRzZlh9R4CLjOQjz/bE2Kk9dYZTVGoE5jZIJHYQXIR0Sl0zi8YAmCXFJMj2fP67oFY3S+f5ekgZxOrcS4pIwSmn8kQ7DIKXzQZAOPhwXpR/i8XUvOh9Po2EQf+o3aDTsnxMaX4UDOk+D5JK4JKYDGl71y2lC4+75YxBNg1G3av/oP4PRNEGL90FKr4NPNpTDvUkQB6MRHe1sNemeBwkd7uwm9O8pjQZ0fjEaX+Op01EazsMoSQPcPR8PUWsQjEbzYJCGV2GK6/NpEkY0SebxdNQHnwzicJL2K8y6Syu6jMbXEZk1ODuGo8fm2WMoHjr+OBnR1PYQix1GAS5mO5DZ8bOQsgAmLDxAMGGOwhGl3BS4ddHBtrtT6hrFZ8fuglDcs4LnDl46oM3zd0Kp5KKA9W8/ejdgVSr9Tfi/eY35rUFrdvvcMLXZHBMen5vdolClpOor8eawEhdSLXieg9ivwQvvxf8/3bPDdOOm4YCt17JSGThCGmcpK5H/HCh4e2wegkno7CTsgDX4CeqBFxhkleJmY3nMApgC9dK+2m9mtbslmZR3HOxq9pTOvAdjuYyzR2acxcZpiNAazEoib7oFWwykRD7x7l95HQN62Rlpb3sHm5pgPOq+o1WVKohPtk19a9/ztiupTe1vS6kMKt8zxdmiaMqLsqa3S1YVWMxCZqyw209DT1fgoACJG1IyswIHUdCcfmLJh1RP3L07fXd61BOqPuPlERuPflbGlEf9NMpHPVmW1/UqQb0m6a4/fb9ZyS9t9VtOOp7QOEjpy4QmSTiOOn7a2tXuXs97L22INiD7OrJKpNO+6OD613VqocXFUlrzFmJjy5vBmVSLgmeYymHC0mGWkjosM/weHCZyJ5PrsgC8oFru18MKn5zO7VIqZy0FNxLBbS2NkhUiYSWlad7AOL0ssz1sgIRJad/zHh4eTjK2rkTOTjK5xiIUPAOhbR3buo3aHfeJcS4z3VtzadeegiUoEBl4rSPtoVcEcpPsq5PTk9MGVdqsmdg56FtTtFe1vkEG/jVeWTBuKYINcdtO2A25f0Uaoro/Y8QlPvqcue2s3JDtdsE0TFVR17j9pQJlR/9xtOwg5lzjc078JSs0HATVX5Tkl7j9kPnV+crXztEkOgCLjZ3sosIVcZsPDftbI1laActB2bAaSZBlUJodm4OvGpyd/jJ6T5G4sgpL9Ui39vFtvR+N549zq+Ck8g7En310BpcYX13/B+pfx+g= sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx index 3782eb8c1b..1b45702529 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx @@ -5,7 +5,7 @@ description: "Get decision requirements by key" sidebar_label: "Get decision requirements by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v2zYQ/lcIPq2dazltOhRGMSDD3MLr0ASxhz0EwUBLZ5uNRGrkyakh6H/fHSkpdqx02ePQF1sk7+d33/FYS1QbL6c38ldItdfWXMPflXZQgEEvb0fSluAU0sE8k1O52n+C/V9v5UiWyqkCEBxr19LQgs7vYE9n2tBnqXBL3xn41OmSLdAmaQu7FlnrTLhDbyPZLskTugpG0qdbKJSc1hL3JdvXBmEDjkTX1hUK49ZP57Jpblndl9Z48KzxejLhv2P/iypNwbOr1JIpgyyiyjLXaUgy+eJZrj71bFdfIEVO3DEkqKMXnR3IeHTabGQzCjg8J2rG5xT3+bDRiPHAwY6qoGPc3/T45jVLE0q2cil8fsoc4aIMDgbBpxpz3hokTNOwyPkQ9HOzU7nOQsnB49MlIIBXORQ//tdSeFRY+WeCUBAL1GY4f23IlEmfACdsfAuYmXPW9Ui8OUXig3UrnWVgjjF4mbz8/6d7fprudSw4cOkj84SxKNa2Mtn3wYK3Q/1wcTUXBwkLCArfAR606SGtnMZ9GB0rUA7cq3Bl3tw2o5ogsHcawur28QT5CDg8PsRqL+L4obG0tTytNhDw4EE0lcnuLMlcltQk1EiOwe266VW5nCTqiGkzTZJ6az0207q0Dll4p5xWhH8Aks9iPdeqyhnA3KYqD9uPw11uQfAB3908+ZDWXPnofczYsY9jc+8m7yaDllj0CSsPfHiws0UsB+1E4UFLYZB29VmwXEy6q0lfY1XqTwHudvRfXs2uL5azV4vZYjG//Nw9A1o9ivCwzr2VNsQQEK+jkOykP3QU/e3PZaCTNmsb1FtaXYbnCYirakWtwqmcJmyFClOf/lDvQCiTidQWZQ58KVG7hMOO3/wlOrPUIqKwRqNlQgdNdLZiJmytRSZ57FgyzWFFInFSnlh0f38/TlVB95wak0MGgYIEeqGwbIvb7+3O6JFyZlPfa2sb1omDNTigKJPWkE+OHgDybDwZTyKrPBbKHDh6RuccAdfXCOErJmWuqJ5NG2XddtWN3J2xnuObfMpGiD2xP25kXa+Uhz9c3jS8TVPAhRZ/aKfQfJn2/E0Nu1a5h5Mo+gtR/tC+NbIX4l8ekoORd8Q1+9DRecUr2T7Wwm9D14/cgsqIghxaPLkg9pR4oHPyYOSe6W+dj7MlyaqK8ekxfMTrYH0wnve/BAGxtHdgfu6jQ15yfE3zD5p7AyA= +api: eJzlVt9v2zYQ/leIe9o61XLadCiEYUCKuoWXoQliD3sIjIKmzjYbiVTJkzNB0P8+HPUjdqx06ePQF1sk7767++6OxxpIbj0kt/Aelfbamhv8WmqHORrysIrAFugkaWvmKSSwri6x+vwGIiikkzkSOtauwcgcIYE7rCACbSCBQtIOIkjRK6cLRoAELrESdiPSzphwh9Yi6JYpJORKjMCrHeYSkhqoKhhfG8ItOohgY10uqd369RyaZsXqvrDGo2eNV9Mp/x3bX5RKoWdTyhpCQywiiyLTKgQZf/EsV59atusvqIgDd0wJ6daKTg9kPDltttBEgYfneM38nPI+HwdtOR452KPzuvX7mxZfv2Jph96WTuGnp+AIjTQ06gSfasp4a7RgmoZFzseon5u9zHQaUo6enk5B4ew6w/yX702FJ0mlfyYJOXovt+Pxa+NJGvUEOWHjW8TMnLNuYOL1KRMfrFvrNEVzzMGL+MX/P9zz03Bv2oQjp76tPGEsiY0tTfpjVMGbsX64uJ6Lg4AFBoUfgI8mAo+qdJqqMDrWKB26l+HKvF01UQ3K2juNYbV6PEE+Io2PD7GuRDt+cqSd5Wm1xcAHD6IE4v1ZnLo0ru+waoB9cPt+epUugwTqltMmieN6Zz01SV1YRyy8l07LddZSymdtPjeyzJjAzCqZhe3H7i53KPiA726efLRDwZlvrU+YO7ZxDPd2+nY6isSiT6A81MMDzo6oGMVphUeRwiDt87NguTboPidDjmWhLwPd3ei/up7dXCxnLxezxWJ+9al/BnR6TXSU5wGlczE4xOtWCHrpD32J/vH3MpSTNhsb1LuyugrPExTX5TrTikM5DdgKGaa+kIr0HoU0qVA2LzLkS6lwNhz29c1foofdWCdyazRZLuigSc6WXAk7a4mLvO1YqUIO20LioHwSx/f39xMl89KkcqJsziRkWqHxgceOtz+7neiRcmqVH7S1DevY4QYdGoVxB+TjowcAnE2mk2lbVZ5yaQ4MPaNzjogbckT4D8VFJrVh4OBl3XXVLezPWM/xTZ4wyCrq+uMW6notPf7lsqbh7a8lutDiD+0Umi/Vnr9TSDYy83jixXAhwk/dWyP9WfzHQ3LU875wTRU6Oit5Bd1jLfw2qyaCHcoUXXCtPblQCgs60Dl5MHLPDLfOx9kSIpAl8zNw+KiuA/qoP7+9CwJiae/Q/D54R7xk/5rmX5p7AyA= sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx index fc0487f647..57d1ad2a75 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx @@ -5,7 +5,7 @@ description: "Get decision definition by key" sidebar_label: "Get decision definition by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v0zAQ/lcsP8Homg4GQhVCGqKgMsSmtcDDNCE3ubZmiR1sp6OK8r9zZydpu2aDPaK9tLF9Pz9/57uSO7GwfHjJ30MsrdTqPcylkg6/+FWP6xyMoMU44UM+W5/C+scr3uO5MCIDB4Z0S65wgefXsMYzqfAzF26J3wnY2Mjcmxty1GZ6zpLaFX60vnrcwK9CGkA/zhTQ4zZeQib4sORunZN1qRwswKDoXJtMuLD16phX1RWp21wrC5Y0ng8G9LfrfVLEMViL+rFGU8qRiMjzVMY+xeinJbly37Oe/YTYUdqGAHEyeJHJlox1RqoFr3oehX+JmtAJQIy7DQVUOw5WiLsMsd7r5cXzbS8XAeAMM7d3eOwSPX1wOtvaX+7KoUv424PywisUynVmQqfSpbTVweuqIoHjLo6M1UqkMmFERrDubq4gE2YpZM8eyhnrhCvsP2aYIV3Fohs/qdCUirsPw8Z9sIyM0aZF4sU+Eh+0mckkAbWLwUF08P+ne7yf7kW4cKCrt7owMTClHZvrQiWPgwUvu+rh5HzMthJm4BUeAR64aSEujHRr3+FmIAyYQ/+2X15VvRIh0NcS/OrqdqP7CK6ry7HZmoUeib1zqamlLsCjQd1yyKPVUdSoHW7UbFSiVsUpJLNqem5hUlQpA8TVMIrKpbauGpa5No6EV8JIgdfhcaWzcL1zUaSEZ6pjkfrt29FPl8DogPoP9WuHayJC8N4nKMnHrrnXg9eDTkskeoeVDT02dpbO5Z12gnCnJT8ANNc1IbmQdHNF7ZWLXJ56/OuB5ex8dHEyHR1ORpPJ+OxLM7zUehjh9rW3VuoQfUC0DkK8kf7QMPbT96lnl1Rz7dVrlp35oQrYeTHDyqFU9hPWTPhpBf+cXAETKmGxzvIU6I3C6vGHDd3pizVmsWJYppE6mvjtNZ3RBTFhqbUjzocCRtMUViASJWWRRTc3N/1YZPjsiT46JBAwSMDJimRr3D7XO71byomObasttV9HBuZgAKOMakM22hli+FF/0B8EVlmXCbXl6K+FtANbe0MOfrsoTwXeZlXHWNZFdslXR3wzfmyXGW4PySqSKZTLJS/LmbDw1aRVRdvYI4x/ADbV5WsxkZa+saDnIrWwF1b7XPIn9byTPGX3TsOdiTQsVmtf3mlBK15PnP63wqeJL0EkyEcKLJycIJVyt6WzN/VSAbVv0sfRFGVFQXC1kN4iubfeGc+bd16ATfU1qLdtdI6WFF9V/QHkj0fJ +api: eJzlVm1v2zYQ/ivEfdo6xXLarCiEYUCGuoWXoQlib/sQGANNnW02EqmSJ6eGoP8+HCm/xUrWfBz6xRbJe334HO8aILn0kN3Be1Taa2ve40IbTdoamCVgK3SSF+McMphvrnDzz1tIoJJOlkjoWLcBI0uEDO5xAwloAxlUklaQQI5eOV0Fcxlc4UbYhcg7VyLf+0rA4ZdaO8whI1djAl6tsJSQNUCbiq1rQ7hEBwksrCslxa23F9C2M1b3lTUePWu8Hg7579j7pFYKvYcElDWEhlhEVlWhVUgx/exZrjn1bOefURGn7RgQ0tGLzg9kPDltltAmAYVviZrRiUCM+w1FVHsO1ui8jrE+6+XN60MvtxHgEg35Jzz2iV69OJ1D7U9P5dAn/NeL8iI00lBvJnyqqeCtHl63LQtc9HFkbNay0LlgMqKnp7lSOTsvsPzppZzxJKn235hhid7LZT9+2niSRvUfxo3nYBk5Z90OiTenSHywbq7zHM0xBq/SV///dC9O072NF4589d7WTqEwlsTC1ib/Pljwc189XN6MxUHCAoPCd4BHm4BHVTtNm9Dh5igdurPwtt/N2qQBZe29xrCaPW50H5H6upyYb0TskSXSynJLXWJAg7tlBun6PN2qne3VfNrc46YFDsmttz23dgVk0ESI2yxNm5X11GZNZR2x8Fo6LedFRJjP4vUuZF0wnoVVsgjbj6OfrlDwAfcf7te0QsFEiN4HDCX7ODb3bvhu2GuJRZ+wsqfH3s6KqOq1E4V7LYUBYHtdE5aLSW+vaHflstJXAf9uYLm+Gd1eTkdnk9FkMr7+tB1eOr02Obr2nZUuxBAQr6MQbKU/bBn7+9/TwC5tFjaodyy7DkMVipt6XmjFqZwmbIUM04qQivQahTS5ULasCuQ3qnI2HG7pzl9ia3ZhnSit0WSZ30GTnK2ZCStriTkfC1iqcIeRSJyUz9L04eFhoGRZm1wOlC0ZhEIrND7g2OH2R7eTPFLOrfI7bW3DOnW4QIdGYdoZ8unREAPng+FgGFnlqZTmwNF/FtIRbLsbIvxKaVVIbdhsiLHpiuwO1uewHz8OywwSyNjqLOnK5Q6aZi49/umKtuXtLzW68ADsqyvUYq49f+eQLWTh8SSs3XMJP3TzTv6jeHYa7k1ky2KzCeVd1LyCbuIMv+2sTWCFMkcXAosnl0phRQc6J1MvF9DuTfo4mkICsma4dpA+Inmw3hvPL78FATG192h+3UVHvOT42vZf5I9HyQ== sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/by-key.api.mdx b/docs/apis-tools/operate-api/specifications/by-key.api.mdx index 06dc3839ef..1e50a6414f 100644 --- a/docs/apis-tools/operate-api/specifications/by-key.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key.api.mdx @@ -5,7 +5,7 @@ description: "Get variable by key" sidebar_label: "Get variable by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v2zYQ/lcIPq2dazltNhRGMSAD3MLrsASxtz0EeaCks81GIjXy5NQQ9L/vjpSUOFbb7HHoiy2S9/O773hsJKqtl/Mb+ZdyWqUFyNuJtBU4hdqaZS7nMj18hIOcyEo5VQKCY/lGGlrQ6V0404Y+K4U7+s7BZ05XrE+bpCvsRux78xPp4J9aOyDT6GqYSJ/toFRy3kg8VGxSG4QtOBLdWFcqjFs/n8u2vWV1X1njwbPG69mM/45druosA+9JP7NkyiCLqKoqdBaySj55lmtOPdv0E2TIuTrGAHX0wjk+J7ygx66XxqMyGXx8tqLPyOHzxSP4g6hHp82WD/aqqMdPCGxD+TPuw2lqbQHKhGMwyuAyH9HlU40Fbw0saVvePh+Df2koCJ0LrjN4/HIZCCwyVf74X8tB2GLtv4nUm9ecV0nlUNtxSHRXpnG8wsbXwFg4Z92AxJtTJN5bl+o8B3OMwcvk5f8/3fPTdK9jwYFL723tMhDGotjY2uTfBwt+GuuHi6uleJSwgKDwHeDB1xpktdN4CBMjBeXAvQq36c1tO2kIAnunIaxunw6OD4DD1BDpQcRBQwNoZ3kqbSFAwCNnLpP9WdLL+qQh0Vayc7fvp1XtCpJrIpjtPEmanfXYzpvKOmThQZ2z47NYyI2qC0ausJkqwvbTONc7EHzAVzJPOqQ1lzx6n4apQD6Ozb2dvZ2NWmLRL1h5IMKDnR1iNWonCo9aClO0L8yK5WLSfTGG4qpKx8nfjfrLq8X1xXrxarVYrZaXf/Rjv9OjCB8XeLDShRgCCjMnCMle+n3Pzd/+XgceabOxQb3j02V4jIC4qlPqEU7lNGErVBj59Id6D0KZXGS2rArg26gbyqInNn+J3iz1hiit0WiZyUETna2ZCTtrkdkdW5VMc1iRSJyUJxbd399PM1XSBaem5JBBoCCBnics2+H2e7czeaKc28wP2tqGdeJgAw4oyqQz5JMw14nIMdmz6Ww6i6zyWCrzyNF4yxxhNZQF4TMmVaF0mP4hsKZrpxu5PzvqiImcsymiTWyMG9k0qfLwpyvalrfp3nehqR+0Qtfl2vM39etGFR5OYhmuQPnDdfcqfCFOX4yjIfckNQc5PHskfQb2hd+W7hi5A5UT3TiaeHJBTKnwkc7Jy5D7Y7hnPizWJKtqBubh3XTM4WB9NJ53vwYBsbZ3YH4ZokNecnxt+y+MIezQ +api: eJzlVt1v2zYQ/1eIe9pa1XLabCiEYkAKuIWXYQlir30I/EBRZ4uNRKrkyakh6H8fjvpIHKtr+zj0xRZ5H7z73R1/bIDkzkNyCx+k0zItEDYR2AqdJG3NMoME0sMlHiCCSjpZIqFj/QaMLBESuAsybSCBSlIOEWToldMV20MCl3gQdiv2g/sIHH6utcMMEnI1RuBVjqWEpAE6VOxSG8IdOohga10pqdv6/RzadsPmvrLGo2eLl/M5/x0fuaqVQu8hAmUNoSFWkVVVaBWyij951mtOT7bpJ1TEuTrGgHR3Cuf4PeEFOz56aTxJo/Dyuw29stUPqHfgj6qenDY7FuxlUU9LyNVGSWLcR2lqbYHSBDEaaWiZTdiyVFPBW2OXtC1vn0/BvzR7WehMcJ3R09fLUDmbFlg+/9FyeJJU+28i9eol51Wi93I3DYnuyzSNV9j4LzAWzlk3IvHqFIl31qU6y9AcY/Asfvb/T/f8NN2bruDIpfe2dgqFsSS2tjbZz9EFv03Nw8X1UjxKWGAw+Anw4GsNVe00HQJjpCgduhfhNr3dtFEDyto7jWG1eUoc75FG1hDpQXREUyLllllphwECppwE4v1ZPOj6uLnDQwt8uNsPbFW7AhJoOjDbJI6b3Hpqk6ayjlh5NOfsWNYVcivrgpErrJJF2H4a5zpHwQK+kpnpKEfBJe9OnwVWsO6Ju9fz1/NJT6z6FS8PjfDgJyeqJv10ypOeAosOhVmxXpf0UIyxuLLSHfP3VH91vbi5WC9erBar1fLq74H2e7s2Oirw6KUPMQQUOCcowaD9bujNPz+uQx9ps7XBvO+nq/AYQXFdp4VWnMppwlbIQPlCKtJ7FNJkQtmyKpBvo56UxdDY/CUGt1vrRGmNJsudHCzJ2Zo7IbeWuLu7UZUq1LBrJE7KJ3F8f38/U7KsTSZnypYMQqEVGh9w7HH7q9+JnhhnVvnRWtuwjh1u0aFRGPeOfBx4HZ3vkj2bzWfzrqs8ldI8Omh6ZI6wGstC+IXiqpA6sH8IrOnH6Rb2Z0cTEUHCrjZRPxi30DSp9PiPK9qWtz/X6MJQP1iFqcu05+8Mkq0sPJ7EMl6B8MtN/yr8VZy+GCdDHprUHGB89gBE3WMt/LabNoIcZYYuRNNJLpTCih7ZnLwMeT7Ge+b9Yg0RyJqBeXg3Hfdw8D4Zz5u3QUGs7R2aP8boiJccX9v+C4wh7NA= sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/delete.api.mdx b/docs/apis-tools/operate-api/specifications/delete.api.mdx index 87a0f9a05d..a187e6f28d 100644 --- a/docs/apis-tools/operate-api/specifications/delete.api.mdx +++ b/docs/apis-tools/operate-api/specifications/delete.api.mdx @@ -5,7 +5,7 @@ description: "Delete process instance and all dependant data by key" sidebar_label: "Delete process instance and all dependant data by key" hide_title: true hide_table_of_contents: true -api: eJzlVktv20YQ/iuLPTWpLMqJWwRCUcBtFEBNUBuWihwMH1bkSNyY2mV3h3IFgv+9M7skLYlyX7ciF2kf8/z2mxnWEtXGy+m9vHU2Be/nxqMyKciHkbQlOIXamnkmpzKDAhDkSJbKqS0tHevV0tCGrh9hT3fa0LJUmNM6A586XbIBOvwIe2HXooxuhO78jKSD3yvtgHygq2AkfZrDVslpLXFfsmltEDbgSHRt3VZhPPr+SjbNA6v70hoPnjXeTCb8d+x6UaXsk/RTS6YMsogqy0KnIb3ki2e5eujZrr5AipyzYzBQRy9bsqY2cCDo0Wmzkc2ohSn7Z+GPJGosWOjnXJkNLFBh5emCr67O5TI3O1XoTDBo4PHlnCjiVQHbb/9tbj6G8Hfhv33Dyf4VEP0Ln7uMB4OLA0BmzlnXI/F2iMQH61Y6y8AcY/A6ef3/T/dqmO5dfHDgp/e2cikIY1GsbWWyr4MF352rh+vbuThIWEBQ+ArwoEMPaeU07kMbXoFy4C64DU/vH5pRTRDYRw1h93Dajd+HLjXoxkKZTKiiEBmUYDJlUGQKlVjtRezv1PdzezINqNlPZbK7TFprF501n9Sk1UiO1O26eVG5guTriHwzTZI6tx6baV1ahyy8U04reqUAN9/FV1+rqmCYC5uqIhyfJrXMQfAFTySeNUh75kf0PmaE2cexuXeTd5Ozllj0BSvPrHm2kyOWZ+1E4bOWwvzqXnHBcjHp7uV6JqhSfwz4t8P25nZ2d72cXSxmi8X85tdu8LZ6FOEhG3orbYghIN5HIdlJf+iI/MvnZSCdNmsb1Fvy3YTvARC31YoKilMZJmyFCsOW/lDvIqFSuy3DUBzwjVeiM0uFJLbWaLRM+6CJzlbMhNxa5FKIdU2mOaxIJE7KE4uenp7GqdpSN1RjcsggUJBAHwYs2+L2qT0ZnShnNvW9trZhnzhYgwOKMmkN+YStMpFjspfjyXgSWeVxq8yBo/9aX0do9g+H8AcmZaHokZs29LotvHu5u4zd6rj06GzKJolgsYTuZV2vlIffXNE0fEzjxIVe8VxxoT4z7XlNRb5WhYdBTH1nld/ctV9ur8TLX3dnU+hobfah3ouKd7QMfA2/DbUwmYPKiKAcVby5Jm6VeKAz+Irjiuqb1PvZp9lyRuKqYqx6PE+IHxycDemHn4KAWNpHMD/2ASJvOcSm+RMnstvx +api: eJzlVktv3DYQ/ivEnNpUXq0TtwiEooDbbAA3QW14t+jB2AOXml0xlkiFHK2zEPTfiyEleV/u61bkJJGc58dvZtgCyY2H7AHunFXo/Y3xJI1CWCZga3SStDU3OWSQY4mEkEAtnayQ0LFeC0ZWCBk84g4S0AYyqCUVkECOXjldswHI4APuhF2LOroRevCTgMPPjXaYQ0auwQS8KrCSkLVAu5pNa0O4QQcJrK2rJMWtH66g65as7mtrPHrWeD2d8ufQ9bxR7BMSUNYQGmIRWdelViG99JNnufbUs119QkWcs2MwSEcvFXovN7gn6Mlps4Eu6WHK/1n4CZCmkoV+KaTZ4JwkNR66jo+uzuVyY7ay1Llg0NDTyznVzq5KrL77t7n5GMLfhf/mNSf7V0CMN3zuMG6cHOwBMnPOuhGJN6dIvLdupfMczSEGr9JX//90r07TvY8Xjnz13jZOoTCWxNo2Jv86WPD9uXq4vrsRewkLDApfAR5dAh5V4zTtQhteoXToLrgNZw/LLmlBWfuoMayWx934XehSJ91YSJMLWZYixxpNLg2JXJIUq52I/b1CKuzRNKACMki3l2lv7WKw5tP2EXcdcKRuO8yLxpWQQRuR77I0bQvrqcva2jpi4a10Wq7KCDyfxVtfy6ZkmEurZBm2j5NaFCj4gCcSzxoqUDA/ovcJI8w+Ds29nb6dnrXEoi9YeWbNs52CqD5rJwqftRTm13CLc5aLSQ83NzJB1vpDwL8ftrd3s/vrxexiPpvPb25/GwZvr9clB2wYrfQhhoB4HYVgkH4/EPnXPxaBdNqsbVDvyXcb3gMo7ppVqRWncpqwFTIMWyEV6W0klLJVHYbiCd/4Twxm19aJyhpNlmkfNMnZhplQWEtcCrGupQp3GInESfksTZ+eniZKVo3J5UTZikEotULjA449bh/7neRIObfKj9rahnXqcI0OjcK0N+RTtspEjsleTqaTaWSVp0qaPUf/tb4O0BwvjvALpXUptWFvIfS2L7wH2F7GbnVYepBAxiaXSV9CD9C2K+nxd1d2HW9/btCFXvFccaE+c+35P4dsLUuPJzGNnRW+ue9fbt+Kl193Z1MYaG12od7LhleQhEdkfEp2yy6BAmWOLkQVT66Vwpr2dE5ecVxRY5N6N/s4W8wgAdkwViOeR8QPDs6G9OPPQUAs7COan8YAiZccYtf9CSey2/E= sidebar_class_name: "delete api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx b/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx index c3098e28e3..51c027b162 100644 --- a/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx +++ b/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx @@ -5,7 +5,7 @@ description: "Get flow node statistic by process instance id" sidebar_label: "Get flow node statistic by process instance id" hide_title: true hide_table_of_contents: true -api: eJzlV99P5DYQ/lcsP7XXZbPc0eq0qipRCU70qgOxVH1APHiT2V0fiZ3ak+VWUf73zthJCCSogrfqeIDYnp+fv/EMtUS19XJ5K6+cTcH7C+NRmRTk3UzaEpxCbc1FJpdyC7hCWnrUqZczWSqnCkBwrF5LQwuSuocDnWlDn6XCHX1n4FOnS7ZDm5/hIOxGlNGb0J27mXTwT6UdkCt0FcykT3dQKLmsJR5KNq0NwhYciW6sKxTGrV9OZNPcsbovrfHgWeP9YsF/nrpeVSn7nItrwMoZL3yfjiCLAncgtnoPZhTdTGydrUrIxPogNrl9EMaSbYoktRSUQXamyjLXacAr+erZYz3OQTmnAkAIhR/s2/VXSJFRdYw66piHSlHvNR74AnpZj06b7QjZGwpfZwwuJ9JHGVJ72Ol0F/YJpipHL5QDobZbB1uFhHkzi75gEu+xI7SocmGqYg2OXUblHjA/CmPi1gg9ls0he6PTTv21brVJdUa35t/ot9fvafMfadqizAHfnmen/7pEyTNqzNnbOYl9IalBATf8M5MnU5VyYfYqJy5xSYLHl3lObF3nUPz0It9f4DVXXjUN/zCLD+8ZvoJKUW1hXAHhKtv3Y+owbowOBricOWed7JD4MEbi3Lq1zuiyn2LwLnn3/0/3ZJzudbxw4Kv3tnIpELmQaF6Z7Ptgwc9T9XB6dSEGCQsICt8BHrTpIa0ctaDQ5NdAfcMdcZNf3t41s5ogsPcawuru+Vv2CXDQh/puy030eYelziU5J9zZdtYIEwYNEEuZ7I+TVv6ofwCTmoJoEj+cSDy4fTeOVC4n1TpC3yyTpN5Zj82yLq3DhoT3ymlF1xTw5rN47RtF7ZE0c5uqPGxPvdB8wANP9wwzQaL3OUPMPp6a+7j4uJi0xKIvWHmkzaOdHWI5aScKT1oK41F3jSuWi0l3V/c4nJT6cxjf2lnu8urs+vTm7Gh1tlpdXH7p5rpWjyIc0qG30oYYAuJ1FJKd9HnH5D/+vgms02Zjg3rLvsswdYK4qtZUUZzKOGFLA0fgTzt3KJMNuuRzcvGX6Mxyyy6s0WiZ90ETabhjJuysxThZcWGTaQ4rEomT8sSih4eHeaoKeg7VnBwyCBQk0NzJsi1uf7Y7s2fKmU19r61tWCcONuCAokxaQz5hq0zkmOzxfDFfRFZ5LJQZOHp1gT2Bsb8xhG+YlLmi223amOu2+G7l/ji+U0/Lj/aWcdQfVCDRLBbSrazrtfLwl8ubhrepq7jwZDzWXajSTHv+ppLfqNzDKMD+gZU/XLf/HvwoXv4XYjKfjtzmEKo+r3hFn4G14XdDL5ncgcqIphxVPDklhpU40BkN+FxX/ZP16eyGZFXFqPXIPuN+sD4Zz6+/BwFxY+/B/NZHh7zk+JrmX71Gt3o= +api: eJzlV0tv4zYQ/ivEnNqtYjm7abEQigIpkCzSLTZB7KKHwAeaGlvcSKSWHNk1BP33YqhH7EhBkdyKzSXmY17ffDMc1UBy6yF5gDtnFXp/YzxJoxBWEdgSnSRtzU0KCWyRFiRJe9LKQwSldLJAQsfiNRhZICTwiAeIQBtIoJSUQQQpeuV0yXoggc94EHYjytaa0L25CBx+q7TDFBJyFUbgVYaFhKQGOpSsWhvCLTqIYGNdIand+uUCmmbF4r60xqNniffzOf87Nb2oFNuciXukyhkv/BCO2FgnKEOx1Ts0I+8isXW2KjEV64PY5HYvjE2RQVDWEBpiY7Isc60CXvFXzxbrcQzSORkAIiz80b5df0VFjKpj1Em3cUhFeqfpwAkY7npy2mxHyC4zFDplcDmQwcsQ2j7TKgv7Dn2VkxfSoZDbrcOtJEyhiVpbOIn32BBZkrkwVbFGxyZb4QEwP3JjImsRKL6bY/pGo734a81qo3SKhvwb7Q7yA23+I0xblDnS2+Ps5V8XaBMBacrZ2nVu919sikcF3PBfBBdTlXJjdjLXqeCSRE8v87x0dp1j8dOLfH+B11x51TT8x1F8eM/wFei93OK4AkIqu/4xddhujA6OcLlyzjrokfgwRuLaurVOUzSnGLyL3/3/w70Yh3vfJhw59d5WTqEwlsTGVib9Pljw81Q9XN7diKOABQaB7wCPJgKPqnKaDuGRX6N06M74kU8eVk1Ug7L2UWNYrZ73sk9IR+/Q8NryI/r8hRWa+VUgZbabNcKEQRkkEO/O4+7+2dAA4/oRD03sjycSj27XjyOVyyGBuoW+SeK4zqynJqlL66iBCHbSabnOW+T5rE37RlY545xbJfOwPdWh+YAHnr4NM0Fa6zOGmG2cqvs4/zif1MRXX9DyRJsnPRlROamnvTypKYxHfRoXfK8Nuk/d03BS6s9hfOtmudu7q/vL5dXZ4mqxuLn90s91nVwTndBh0NK5GBzidXsJ+tvXPZP/+HsZWKfNxgbxjn23YepEcVetc604lHHAVsgwy/VzhzTp0Sv5nFz8S/Rq+ckurNFkmfdBkpytmAmZtdROVlzYUoUctkTioHwSx/v9fqZkUZlUzpQtGIRcKzQ+4Njh9me3Ez0TTq3yg7S2YR073KBDozDuFPmYtTKR22DPZ/PZvGWVp0KaI0OvLrATGIeMEf5DcZlLbdhM8Lnuiu8BdudtnzotP4ggaUf9owpcRV0hPUBdr6XHv1zeNLz9rUIXWsZT3YUqTbXn3ykkG5l7HDk4NFj44b77PPhRvPwJMRlPT25zCFWfV7yCKHyptN8rzaqJIEOZogtetSeXSmFJRzKjAZ/ramhZn66WEIGsGLUB2WfcD9on/fn193BBLO0jmt8G74iX7F/T/Au9Rrd6 sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/search-1.api.mdx b/docs/apis-tools/operate-api/specifications/search-1.api.mdx index 58f971eb4f..57e0fc1182 100644 --- a/docs/apis-tools/operate-api/specifications/search-1.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-1.api.mdx @@ -5,7 +5,7 @@ description: "Search process instances" sidebar_label: "Search process instances" hide_title: true hide_table_of_contents: true -api: eJztWF9v2zYQ/yoEX9J2TiwncZsGwwA3cYBsWZLFXvaQBAMt0TZbSVRJyoln6LvvjpQtWVJcG9jLtiJALJF3x7vf/aUW1LCJpqcP9FZJn2t9GWvDYp/TpxaVCVfMCBlfBvSUas6UP/2zQ1tU8a8p1+aTDOb0dEEDrn0lEqQEuoGlI4mTR0QuUAOfL2PDY4M8LElC4Vvp7c8aGRdU+1MeMXwy84SDKDn6zH0DjCAMdDECpMDuWISGq2/TfeHzEpGAsyfA1qJjqSJm3NL7Y5pZPlT2nistnC4bmY4OkWmURPEStaDEo40S8cSKZQrM/WV7NSz9RSifr2XAl67Ynh/olTlnhjdqw+Pg1T3gbNpBpjTC8OidDS/v+7BwdvPr7VV/2D/H5971Wf8KHp8KDM/5WMQC/bq93hAULDYbQayEp5VNfaH8NGTqTWX3rRUqTIiSqoGN1oq/+JZOdlHfG68HHFOKzYFeGB7peiBmyCiV2Z6jHuI8bIZDqmBNlbqnBmfwdt6Hn6eshMMAFcrKK7+lXM0b4OEvLEpCp0gvDOspfsdNqmJNWBjW85y8CfiYpaEhypKRUGhDEHIiNOl4b0G7GQtT9ABqg3rxgIzmZGV082n1k7RjZdqH2AYUUMh6VhZH5Q55WGFLq5Q5shbA7KmkGosDkrAJPD0LMyXL6GnWMmIv5KhBV4YhRPZGYnLPVH7snhUNZYq8/9DtHn38eHzc8brdkw/et00jj/FQkgk3xEw5ifmLsToSXyZzu2QNJ3JM9lDWPb7BgRDYElaKqN5zhAePMVpLdMJ9Mc4rM9FTmYYB2GSgoqPQEuM66RrSFqCj1q6QV7Ltga6BRVtVkKyPLmwzyL3kUNvsnK5X906LjJdiAOf1boAQHu4WakWDqjaWw1X16Xo745NlNn2x+wqFZhqVcrugExlrl7CHntfQk1PfQfhPteBqGduxvH3vzN87c0Nnztumq1W7tVsjDQu3MqqkwB3X0Kd0XQ8kOm5KJHATg7IBmS6C17MJAB+FPPph16xCX6d6yyCPQGUo+I2eWRa2xk23UNso4dJXSqoVDEd1GC6kGokg4PE6Bu/a7/795h7Xzb2WhlzINA7+c+Z2m4K8d3tJSuFMuGX4H0S7nff9VAkzt215BOMIV/u2Wz1AJV0ABPKL4PYNxpWtL74RN1OJDT6R2gLBzBTe2rNOOyffX5G33RBEURc1g75nVUkVVDe6cNhmp+32YgqistNFAgUzs8OHEmyUT+245/xqJ3HgDKXPwqk7fV3tIYx1uBGzyI6LOOZhBLjTD2yhz+8yhbgT78RrlISkr0gp4qKQMzUmaZTjiBslZW5SdH4aIJ0zeumbom0kArtRi6Jp8H5z27/rDfv7g/5gcHlzjQ0Fj8v5cG4o+XslJVfRKoTvjoguqS+WofrzH0MbVpgGd8UHkr67TK2PhfYErz7deLXZpej3pZHF2ziQeGvjRnlgCKpL+XBRzBDNo4JXHgTKs4mdZL3q3L6wDqrOtqtDK0MtemEsLeB5Qt7Y706c3KYjKDLo/HqISMLsSAs/Rsy4nf59iUjjmF6/fomYLMVCcSGRBPMkKmQ5jZIp5s5USuOUxFoHolEtl3oYBhry7vn5+cBnETQDdgAHIgygJIfxG2nzSLvKV1oV5kD6esUtpH1vKz6Gmwdo2c4F6TZKnS2DgnYOvAPP5aE2EYtLB22oOWuAraLZwEWxnYQMIj/LtVvk5eiBzjpFCOyXZeUlCdzqKssDXSxGTPPfVZhluPwVPyVgWSwKkSuZdMpZ4KLCRT09c11kf4gKrS5N9dsIllvH0QNPJ2Yj7VOpxt7eDIaYnvnXyQjyA1YVe8Yvl/D/lD7CHwaiBcfWDru+oCGLJ6ltM9TJxYRmKaKzQrCS/9ayZcGJ5yUtf/xkCchQfuHxT7DhrDH46m5zfwMoNl4Y +api: eJztWG1PIzcQ/ivWfOHuupDl7V6iqhIHQeJ6BUpS+gGiyvFOEh+79p7tBdIo/70ae5NssgsXpPZD2+MTsWfG42eeefFOwfGRhfYNXBot0NozZR1XAqEfgc7RcCe1OkugDRa5EeM/diECg18LtO6jTibQnkKCVhiZkyS0oevlWB7sMVkatBCB0MqhcqTD8zyVwltvfbGkOAUrxphx+s9NcoQ26MEXFA4iyA354iRa2h3K1KH5ttwdTipCUjkcoYEIhtpk3IWltwcw83rk7DUaK4Mvzyrt79WVenxU0bPOSDUiqUGeqTm2SaNEzg0q9/Pmznr501Q/nOsE5wHbXN86btwJd9joDarkyT3rGndIqciIREfHvbPrDkRwfPHL5edOr3NC/x+dH3c+d06gP4tAKiGTkgOllYHWKXJVgfQEh1JJ4sbmt3KouHLPQrxGcW8bhDSiSLl5tbb72huVLiVL68lBWMg/cUOihMw5Gq6SlhvDJxCBdJjZOplnpKiN21yjniaYNsOhTbLiSj2O3WOI4KTTPYb+rIJDlxyaVVd+LdBMGuDBR57laXDkKE3rZeIKXWGUZTxN67WCvUpwyIvUMePFWCqtYwQ5k5btxq8hgnueFhQB8ob8woQNJmxx6ebT6ifZoMqtQJVINSIjqzm7PKoMyM0CW1iXLJH1AM76Fde4SljOR5iwB+nGbM6eZi8z/sj2G3zlRCG2NZCja27KY7e86TucsLfvDg/3P3w4ONiNDw/fv4u/fTV2q3qajdAxN0am8NF5H5nQ+cQv+YszPWRbZOuaftktJpXTbKvC6q0guHOr6LbM5ijksKzuzI51kSYs406MvdGK4qroCtIeoP3opZCvZdsNrIAF0TpIPkanvqGUUQqoPR+cw7genYgN52YGE7baHAjCvZdRbdnk1pvT3qL6HMYvxmfm/6iF21wrGxJ0L44b+nghAmR/V9teL1svLGffu/n3bv4PdfOy1Yb69rIW7bTj6UaXqjhwhbZIna37QUIHTcl4wh1nUt3zVCZPZ2Ru9CDF7IeXZiYxobAbJkqG1vJRM6XmxbBxMyzUNiq4dIzRZgHDfh2GU20GMklQrWLwpvXm33/dg/p1z7Vjp7pQyX/uuodNJD+6PGMVOjP0Cv8Dtvs3giiMdBPfygfIDZpt3/Fu+rNoCkLrO4n+Vz/a/MGdoRtrGgpybT0Q3I2hDa373VYpvr0Qb4XBCcgXc4/GelcKk0IbpgHbWbvVmo61dbP2NNfGzfzAYiQflJM+7YW4+ukd2pBqwdNxOH3V7d4YGW0onvkRk0ZDYkA4fccX+vL9szT3Pn4fN1oi0SesLHmxtDN2Lm+0E4QbLc3CdBni1CW5cOl5bJZtI5fUjSKgq0EbLi47V0e9zna30+2eXZxTQ6HjSj2aKirxXlgpXfQO+cbqhWAufTqn6qffe55WlAZXyw8znfAAWx0l/QlxfUKqLfn5ZzkRrI09y43KtBM/O8vEK5NKddZI1pfKuWQ5fiynDGcKfGquiKtTQ3XM8aNyvP4wmPporg/PCyfWpmZyYqh9dMrsvfAfx5BdFoNUCmJKnU+acT9DMy6cvEf/vBCawkLvgPr7Tio2NzvUhmVaSafJIa/pjC4o0cZau+AkFUYufIqEPCXO2Har9fDwsCN4VqiE7widEQypFKis50NJy8/lSrSmnGhhF9pS+98tg0M0qAS2SkO2RVbv5wyC3Z14Jw5Ja13GVeWgZwrUCmAL6jt8dK085dKPkd67aVm7buB+FxYU2K7aKutXPyrL0A1MpwNu8TeTzma0/JW+VVANXVatUF9hjDwJrAgpAseh5Wz3yKHFq6z+/KHaHDSOhMDcPSvbrxTky4tujxKr/ISa6YR0DH+gz6v8AdpwC7dARPTg+ELj16eQcjUqfE+CYJeynxeEznIKXy0W/mbz6qQmFS9//OgFWE/fofoJovI2jn6G5+Jf7YeYrw== sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -36,15 +36,15 @@ Search process instances ## Request -

      Body

      required
      +

      Body

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

      Body

      required
      +

      Body

      Search examples -
        filter object
        sort object[]
      • Array [
      • ]
      +
        filter object
        sort object[]
      • Array [
      • ]
      Success -
      Schema
        items object[]
      • Array [
      • ]
      +
      Schema
        items object[]
      • Array [
      • ]
      Data invalid diff --git a/docs/apis-tools/operate-api/specifications/search-3.api.mdx b/docs/apis-tools/operate-api/specifications/search-3.api.mdx index dd38bd07ef..2c30e8922d 100644 --- a/docs/apis-tools/operate-api/specifications/search-3.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-3.api.mdx @@ -5,7 +5,7 @@ description: "Search incidents" sidebar_label: "Search incidents" hide_title: true hide_table_of_contents: true -api: eJztWFtz2kYU/is7eiFJHRAY2+DpdIYY2SWxgQJ2MnU9zCItRomkVXZXdijDf+85u0III1+Y9iFtM54x0u7Zc/nOdbWwFL2V1vG11Ylc32ORsm72LB4zQZXPo45nHVuSUeHOxvvWniXY14RJ9Y57c+t4YXlMusKPkRLohpqO+CkjCfQujxTyBFoax4Hvaq6VzxIPLCzpzlhI8UnNYwYs+OQzcxUcjAXqoHwmcXfqB4qJ5+m+sHmOyAfZt3Bsz5pyEVJllg7r1lKfc5mUbTb1Ix91+rDr0U4kFY1c9vKDhiQjlUr40S1QsigJ0QOX3WHfOemcdpw2rF52P3R7H7vw1OmNL1r9fqd7NnYGg94Alt733o27vfHAGQ06zhAWTnrddmfU6XUzEufTaNA6GY2vWueXTrZ60jo/d9pj59y5cLqjbPmy+2ur29Y7uDJ2rmAX1i+c4bB15oyHnd+Bx6cTx2lr5VI2bVB3mBe6XkCxrQ2FTnuDC1B6ND7tXXbb1g0gEgKO9LYAFNhzBdPBMvLDYgKAXz2JJ1jfuXLQis7ZoDXSig+cYe/8Sj/2HYCse6YV+cwnO/iRRTRSmBpbWuGurwJcyvIJVfX/ZM8y369pUp1ErelmvFMh6BzofcVCuZ0HKFdyoV5+YjvDWFBkENQC4W2osg3z8ER7Hn5u8gAMUaFlfuW3hIl5Hhf2jYZxYDRoBcF2SRkwlYhIEhoE67pCXnlsSpNAEaG3SeBLRRBj4ktStV+XQZ87GiSIOco3XEjNJhkaxWJC+k1TrSTlGaVOrNnIEW0jkznJYCvmt1YZvcM8gmQs8gBAPF3Kx3hpQ5Z25nXml81syJxiUF9q2E91jdxJKVNWQS3UBd1bKpNTPExKaWaWiEujEpjKSCKBEOI1PUVo5Gmr8mpv1eniurLM6Zux2dJ3bZDRTZOWigp3ae8l+Jaf1PSRwljcJ6xa7aB61Gw2qvuHjcPq4ZGVJeBOPusDxKho2reK/RUDkXZRItGuWLA7nycyDX7YKqHkK7RMloi2kLzS6f96M37zleU6b8HRUeMgF0MGTQ13nFbn3SPp73orEw9BJ3i4Nnvb2u/MsQ9q+HX1sH7YtOt246DebO41bfuo2mzWDupH9f1aowG463TAycoHBK1jJRKmF2TMI2mKY822C+atxEUT/rkx62Gv2LGH/Ji+fkxf39/0lSawqRi7jVSKKxq8SK2c5AGTMJrInAK4Wy9K4DZVFIoo1C7fezyLIeInAQt/2jWb0UOJfFZ9M3Y+FQt+mmuFm8VplQfEEYKLDIb9gkbPxcT3AKxNDN5U3vz7za1vm9vlipzyJPL+c+YeFAV5q98huXAmTB/4H0S7vsy5ifDVXE8PE5gKmHiru+Q1lL0FQMC/+Ey/wdTw7MeUkKkZx/kj5lIDQNUM3ip31UpGVjGzh4WyxR0TUotOBJQxa2GwXB5XKosZsFgeL2KojEs9PgmfTtKbGO4ZP+pbFpwMuEuDmZG6qeZoxghuRDRkhE+Jgnf0uJFe1h07m+5X7Bp2wy7khKSPcFnHwZrPTKm4kI8hLuS0NAOa8csQ6YzRK1+s+0PsY1Pas9A0eO/1HWxjb4fQlKGxYudAcek50DDv34xLqqJWCN8NkbWiPl2F5vuPIx1GGPaD9Uc2x1yQNwdbLcF+bIqyi2ckexW8DwadLBXWHXyz96/X05a/7uyrvm3nu3J+RtA3ZvvhQLzQLng4VGdiVuN0y1yTEOcp15CmKdbTXycZ6ScTKBvo3u0g4ITq4Rh+lH/H9G3C5YglXjxSgMgq1/GJrNjiHTfkgChHhfRJJXiC2THjXKUYQfUC1qiWSS50tITMur+/L7s0hPJOyyAQYQAlGQzySJvG0nm6svfgsMddmZ32uX6vCDaFqxVoWUkZyQpyxeQ2xlbLdtk2mSZVSKOcoIIqsgFUFqeKfVOVOKAQ08tUq0VaYK6tu6qO9jWPtMiAG02tuLYWiwmV7FIEyyUuf8UvPVjY1qXFFD1rxqhnosDEsXVi+sDbESqSXeS27zFYMM2JFng2Vk/S3uSqZb83xGF6kn6zDrmHZwS9x+/Z8P/Y+gP+MPA0KLoa6PWFFdDoNjHZYfhiitIEUcmQe5DR2rJVCYnmOS1/fqcJyIh/YdEvsGGsUfiqvwcs/wI+Wtph +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 @@ -33,15 +33,15 @@ Search incidents ## Request -

      Body

      required
      +

      Body

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

      Body

      required
      +

      Body

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

      Body

      required
      +

      Body

      Search examples diff --git a/docs/apis-tools/operate-api/specifications/search-6.api.mdx b/docs/apis-tools/operate-api/specifications/search-6.api.mdx index 84f7b4a469..eefeae0235 100644 --- a/docs/apis-tools/operate-api/specifications/search-6.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-6.api.mdx @@ -5,7 +5,7 @@ description: "Search decision instances" sidebar_label: "Search decision instances" hide_title: true hide_table_of_contents: true -api: eJztWW1vGjkQ/isrf+ldj8CSllwanU6iCZG4Rkku0PYkiiqza4Kvi721vUk4xH+/GXvfWBZK2n64lyhSYO3xzHhm/MzjZUkMvdXkZETOWMA1l6IvtKEiYGTcIDJmihocDMkJ0YyqYPbxiDSIYp8Tps1rGS7IyZKETAeKxygJcgMr57EHOo8jpkE8kMIwYVCUxnHEA6u09adG+SXRwYzNKX4zi5iBBjn5kwUGFsYKXTActMDslEeGqS/L8bAko43i4pasGuQTW5TGObh0C9oaZCrVnBo3dPQSJSEChm3qaBAmkjkG67zbv+idwUDvXffibXdov7+9fHN59f7Sfhtc9077530YH4M+dkejxO75rFbxmsg55VGi6qVgnwHT+oxNueAo/GbvPaVLs/TuvzDMCqM+qtl04dMXBC/pvH5zmcA7pjR3lbHTvReH5VVDK7o9ZWeQkEH/6vLjsPv6ogcTF/1h76Z78bH3x/VNb4BTlcwVGcUcKqaTyOzKHQv7Ik6MLslQpegCFHHD5vqrC1dsixjarZuBKcNNhEPVY21dtBK511eJ+We4DUFOIralfOyUCNnDXnWxIwJuu06ECSpMrcEdCixC8L/YngXqYLM7XYeuL4QY7WupzNcnZcpZVB9JqcI1VzaOSndwCk9nPfgYlwMxQIdW5ZHfE6YWdfHJwR/MdKNos0nAoJcdXY+nK7X3Q8imFM6ZhwH2uPba/o+kqBi0PcAZOfUUM4kSLPQirs3WLlRjg4owXWyXoi5rrVMylCa4Yw2meXiMfsydR3XARAix9SYLbw3+yoas9lGeMFIRTLNlk7IaZ/44I2kR7ulYw3mF0vVuNR4VmsberttKqvge09uv8H1rRNdcR92F680PYii9W2Y8M2OeYA/GCjS8QMYLO2Z3hgueoZF3+KSfgW0jYaQ4vc+cIOizu9Ax2J+mXMbTM5lEoQdnH/xHpaWF66LNb4qlK4MKqoxIX9xJHjDvNKJa56Zg3eFhp/3zq1fH7RdHx0edju9O9LllUkWlbmYilSiFOW3LxaLSHEBoaVMFT9to6e0cOzv+jk1bfdXKt8iDzJMrBsJGJcz15VgK7aDm0PdriioJkPl8Px5aReDv0y6f6OkTPX2ip0/09NvpacodXSN7HOc00tBor5NX8uDG1p6ucQSlXtZhMgANhQ4LoebhdmCGPE4iNv/psQCNAJnoPU/oHGAnJSMbWc34R+2kqT3S5cD0lJIqD8OLmi4r1YSHIRPrMXjeev7v3+7Lze1eSuOdy0SE/7ntduqKvHvd90rl7DG74H9Q7fbWGySKm4WldxMgq0wdWIYzgm61hBDIT5zZp3Fj30sAQffNTCJTjKW2kaBmBk+tu3Yrkz/I5VuOJBP0Rt1B27bOJAoAjixddFcnrdZyBrpWJ8sYMHNleazidJJeXnHOZdbeS2FlJAMazZz5dceHQPtxAjsLXifwGoA14Kw3Lc3J75KZumP/2K/VhKJbtBSVUeiZGRPX6nHCtZpW7ibhMjVAObfpLDtF54g5MrKsaZKra+Amw97BIGcmHM2l68DDcsZzLamL1iF8dkIkkz7PivW390NbWHgQboo3zT33TmH9hsHDMpuy9vycIRdEuEpxSwRsk9kWk/WE1q+nq/46GS201HPQzXlHPTfHc8bpV/nkJm3MeODGBgv6N6pGTVTspgQoP+PjOjb2WC0Fe6qMONLko5WC8JSAx10X/eqVd2lrt3qBzFVXLo9YoFNpazFFqyv72wbzrpMJIDCei83TIz1qr47wYfgds1ffQGIRQiS8tAZKb3648DK1gLzeXEK2JTpkVxolE4SVmZTGOYmNAFSjWw6V8IRogKT7+/tmQOfQKWkTDGIYwEkG11yUTSN9kY40KotDGeh8NZf2uaXYlCkGXrZSRbpluW5WWqTd9Ju+gyht5lSUDO0C5LWI5SfdsAfTiiMKqLBK3VumWD0id+1SbR+UlaV4DYl1sDsiy+WEavZWRasVDn/G943YNQqUdh2FzBgNXV04ECCnrske2INSVOPGvR+7kVvRhVzHZqfsuNSBrq8GQ8Su9DewuQxxjaL3WNjw/4R8gD8sRRsdC6x2fEkiKm4T24WJ04toRxMMTx7CCjjanWVoLBYlL395bQW8ofzExK8ZCAKTh0f33uRv3C2Gpg== +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -36,7 +36,7 @@ Search decision instances ## Request -

      Body

      required
      +

      Body

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

      Body

      required
      +

      Body

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

      Body

      required
      +

      Body

      Search variables diff --git a/docs/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx b/docs/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx index 6d1356d49e..e8f3d08b78 100644 --- a/docs/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx +++ b/docs/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx @@ -5,7 +5,7 @@ description: "Get sequence flows of process instance by key" sidebar_label: "Get sequence flows of process instance by key" hide_title: true hide_table_of_contents: true -api: eJzlVktv2zgQ/isET93WsZw2WwTGokAKOIXbogliFz0EOdDS2GYjkSo5ctYQ9N87Q0qOHyp297hoDhE5nPd8M+Naolp5Ob6Xt86m4P3UeFQmBfkwkLYEp1BbM83kWHr4UQG9XOf2yb/ffoKtHMhSOVUAgmMdtTR0IdbH8KYNHUuFazpn4FOnS1ZGRJIVdinKaFLozuZAOjKiHZA9dBUMpE/XUCg5riVuS1atDcIKHLEurSsURtLbC9k0DyzuS2s8eJZ4PRrx59D0rErZJsmnllQZZJaXyUv+nBhTzqkQCULh9+genTYrMkl/A3nRZ2dqNirXmeCAwOOhPVWWuU5DahNKwiKH4tV3z3I9TtjFd0hZAXFSQVDH6ChlWPl/zMyb15JcLChktYKeELhMbfb7HiPhNHB60ZgzaeKcdbLLxJvTTFxbt9BZBubf5fx/Fe7Fabh3seDApfe2cikIY1EsbWWy3wMFf/b1w9XtVOwFLCAI/Ab5IKKHtHIat2FELkA5cGc8Isf3D82gphTYRw3h9nA8KT8Aim7wiiVP3r7BKRZbEWcuzeK15Wm9gpAcnr5jmWzOk1bmrJPxSU0iTdJpPwvaJXvrNt08r1xO4nXMfjNOknptPTbjurQOG2LeKKcVVSqknN9i5ZeqyjnVuU1VHsjHgc3XIPiBNwaHhHRnjETrQ84y2zhUdzm6HPVqYtZfaHlGzrOeNWLZqycy92oK+6Wr5Iz5YtBd9Z6XRqnjbmyX4c3t5O5qPjmbTWaz6c2XbjG2cuThPiJ2WloXg0N8j0yy477uwPzx2zwAT5ulDeItAG/C7gZxWy2oqTiU04CtUGEZ0gf1BoQymUhtUebA4+sYZHwSnVpqJlFYo9Ey9IMkOlsxEtbWIrdD7G1SzW5FIHFQnlD09PQ0TFVBE1ENySAngZwEWtzM2+btc0sZHAlnNvU7aW3DPXGwBMcwTlpFPmGtDOQY7PlwNBxFVHkslNkz9F977CCLu4Ih/I1JmSsqbtO6XLf9dy8353FSHXYg0cZR5VETEtJiL93Lul4oD19d3jRMJjYXBsdz64VGzbTnM3X+UuUeTpzcjVn54q79ifWH+PXPsN6YOnybbWj8vOIbHQNww/+G5plcg8oIqexVfLkikJW4J8Orn7tpN6w+TOb0rCpO1i6hR4gPCntd+Ot9YBBz+wjm3c4h5Cu71DQ/ARnwu5g= +api: eJzlVt1v2zYQ/1eIe9o6xnLabCiEYUAKOIXXYQmSFH0I/EBTZ5uNRCrkyZkh6H8fjpSc2Fax7XGoX2R+3O/ufvfFFkitA+QPcOOdxhDmNpCyGmEhwdXoFRln5wXkEPCpQavxqnTP4cPuE+5AQq28qpDQM0YLVlUIOTzGM2Mhh1rRBiQUGLQ3NYNBDp9wJ9xK1EmlMINOCR6fGuOxgJx8gxKC3mClIG+BdjVDG0u4Rg8SVs5XitLWLxfQdQsWD7WzAQNLvJ1O+XOo+q7RrBMkaGcJLfGVN9kb/pwoU96r6AlhFV7tB/LGrqHjn4SLMT1zu1WlKQQ7hIEO9am6Lo2O1Ga1d8sSq5++BpYbMcItv6JmgNpzQMgk7wIpasI/MvPuLXQSKgxBrXHEBQ5Tz/7YYdo4dVwCGSp5a+a98zAw8e6UiSvnl6Yo0P47zv9X7l6cunubAo4c+uAar1FYR2LlGlt8H1nw81g9XN7MxSuHBUaB74CPTkJA3XhDu9gil6g8+jNukfnDopMtaOceDcbV4rhTfkQSQ+MVK+68Y41TLHci9dwKaeO4W68xksPdN4dse571MmeDTMjaR9x12YB+FtGBrfXboZ83voQc2sR+l2dZu3GBurytnacOJGyVN2pZJvL5LEV+pZqSqS6dVmXcPnbsfoOCD3hisEu0QcE5krRPmGXWcQj3fvp+OorEV7+B8pI5LzgbonoUJ10eRYrzZYjkHd9LTg/RexkatUmzsR+G1zez28v72dnd7O5ufv3nMBh7uU4eZMQepTcxGsTrdAmG21dDMv/+5T4mnrErF8X7BLyOsxvFTbMsjWZXTh12QsVhKJQms0WhbCG0q+oSuX0dJxn/EwPsynlROWvIcepHSfKu4UzYOEdcDqm2lY4xTInEToU8y56fnydaVY0t1ES7ikkojUYbIo89b3/0O/JIuHA67KWNi+vM4wo9p3HWA4WMUTmRk7Pnk+lkmrIqUKXsK0X/tcYOWNwHjPAvyupSGctaosltX38PsD1PneqwAkFCniCPinAh+1p6gLZdqoCffdl1vP3UoI+N46X0YqEWJvD/AvKVKgOeGLlvs/DDbf/E+lF8+xk26tOQ33YXC79seAUyvvbSm69bdBI2qAr00ap0cqk11vRKhkc/V9O+WX2c3YME1TBZe0KPMj4Cjprw64d4Qdy7R7S/7Q0iXrJJXfc3GfC7mA== sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx b/docs/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx index e9df1fff30..6769dce1f1 100644 --- a/docs/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx +++ b/docs/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx @@ -5,7 +5,7 @@ description: "Get decision requirements as XML by key" sidebar_label: "Get decision requirements as XML by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v0zAQ/iuWP/FSmu4FhCqEtIluKhtsWotAqibkJtfWW2IH2+moovx37uwka9cg+Ir40vrl7rm3584puRNLy4cz/gFiaaVWN/CjkAYyUM7y2x7XORjh8GKc8CH/maWnmwvYfD/gPZ4LIzJwYAig5Ao3KHIPG7yTCpe5cCtcJ2BjI3MCwUPUZnrBktoeM9sGe7zeojFnCuhxG68gE3xYcrfJCV8qB0swKLrQJhMuHL055lV1S+o218qCJY3DwYD+du1PijgGS6ZijVDKeWz46SIMjtZ7Fq0zUi0Rv6p6/LgLc6zWIpWJjwWs28UWeZ7K2Ocwyo2ep5C9vLOk12FLz+8gJgCUxMw7GSKxTrjC/jELR4ccXcwwPLGEjgioLgil4u7LcLAfN95Il9LRyBht2kwc7WfiTJu5TBJQuzl4Eb3498M93g/3JhQcqPRWFyYGprRjC12o5P9gweuufji5HrOtgBl4hf8gH3hoIS6MdBs/E+cgDJhXNBOHs9uqV2IK9L0Ev7t9OhrPwXXPRSYs+/bpks03LIxXHLsrTQN5CT4tNGiHPFofRIlJohKFKj/OyB2zbiZ0YXDA8TKktxpGUbnS1lXDMtfGVSi8FkYKLIXPKd2F0i5EkVIuUx2L1B8/9Xy6AkYX9AbQdHe4JxIE631KI9nYhXs7eDvoRCLR36A8UuMRZ+Vc3okThDuR/GPRlGpCciHopjxtuUUuL3zK6+ft6np0czIdvZqMJpPx1efmqav10MPtkrcotYveIdoHId5InzVs/fh16pkl1UJ79ZphV/4VBnZdzLFrKJT9gDUT/mXDPyfXwIRKWKyzPAWaT9g5/rKhOq1YA4vdwjKtpNPEba/pjC6ICSutHfE9NC9Ck1uBSBSURRY9PDz0Y5HhyBN9NEhJQCcBX2GSrfN2WZ/0nignOratttR+HxlYgAH0MqqBbESoROQQ7EF/0B8EVlmXCbVl6O+baCd/ban8p0CeCixrVTtb1g0242v67sEWw99hAKEuQyqFZpnxspwLC19MWlV0jK+D8a3/2Fu+ExNpaY0dvBCphT1f2kHJn9UfZMlz9ocvp07/GxarjW/vtKAdLj09/W+FY4mvQCTIR3It3JwglXK3pdN+IVHjtOPnfDRFGVFQdtoMPiG3R+30492pF2BTfQ/qfeuVoy35VVW/APihoiw= +api: eJzlVm1v2zYQ/ivEfVo71nLarCiEYUCKuUWWdgliFy0QGANNnW02EqmSlBND4H8vjpSUONbQfR36SeLLPXf33AuvBS82DvIb+BOlcsroa/zWKIsVau9gycHUaIVXRp8XkMN9Vb7dX+D+nxPgUAsrKvRoCaAFLSqEHG5xDxyUhhxq4bfAoUAnraoJBHK4wD0za1Z0+ph9rJBDtywg97ZBDk5usRKQt+D3NeEr7XGDFjisja2ET1uvTyGEJYm72miHjiReTqf0OdQ/b6RER6qk0R61j9h477P7qqT/I43OW6U3EEIIHE7HMM/1TpSqiL6g84fYoq5LJSOHWW3NqsTq16+O5EZ0mdVXlARQW2Leq+SJ88I37ocsvHoJgUOFzokNjnhAcXFeaDl+mDaO/ebglS9pa2atsQMTr46ZeGfsShUF6kMOnmfP///unh67e50CjhR6ZxorkWnj2do0uvg5suC3sXo4uzpnjxxmGAV+Aj4CB4eyscrvY09cobBoX1BPzG+WgbcgjblVGFfLp63xPfrxvsiEY18+fmCrPUvttUK/NdSQNxhpoUabQ7Y7yQpbZO0t7kNsZ2SO3fUdurEl5NAmekOeZe3WOB/ytjbWB+CwE1aJVZnYpbMU2rVoSuKyNFKUcfup5YstMjqgN4C6u98ioyRI2idEI+k4hHszfTMdRaKr/4LykBoPOFvv61GcdHkUKT4WfajmdC853YdnCLeo1UWkvHveLq9m12eL2Yv5bD4/v/y7f+o6ucAPQj6gdCZGg2idLkF/+12frX99XsTMUnptoniXYZfxFUZ21axKJcmVY4cNE/FlY0J6tUMmdMGkqeoSqT/V1sTDPtXpj/Wwa2NZZbTyhnI7SnprGsqErTGe8j0Vr5AxhimRyCmXZ9nd3d1EiqrRhZhIUxEJpZKoXeSx4+1Dt8OfCBdGukFambjOLK7RopaYdUAuI1RK5OTsyWQ6maascr4S+pGi/15EB/wNoYqjQF0KpQk/Gtt2BXYDO5p7Cku9PU8gVGVL3hXLDbTtSjj8ZMsQaPtbgzaW/kNtxUoslKP/AvK1KB0e2TI0SvilG8iKZ+wHk9Oo/X0W630s77KhFfA4paVZLSwDhy2KAm00LZ2cSYm1fyQzTEhUOEP7eT9bAAfREDsDg0+SO6KO2vH723iBLcwt6j8Gqzwtya4QvgP4oaIs sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx b/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx index a4d4935afc..c2c500718a 100644 --- a/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx +++ b/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx @@ -5,7 +5,7 @@ description: "Get process definition as XML by key" sidebar_label: "Get process definition as XML by key" hide_title: true hide_table_of_contents: true -api: eJzlVltv0zAU/iuWn7h0TccGQhFCGqJDg8GmtQikaQ9uctp6S+xgO92qKP+dc+wkXdtweUW8tL6c853bd45TcScWlsfX/NLoBKx9D3OppJNa8ZsB1wUYQZuzlMf8Ic/erT/Bmg94IYzIwYEh3Yor3KDAnb+TCpeFcEtcp2ATIwuPF3PUZXrOimCKpRtbA27gRykNoB1nShhwmywhFzyuuFsXBC6VgwUYFJ1rkwsXjl4d87q+IXVbaGXBksaL0Yj+to1PyoSson6iEUo5jw0PLsK4aL1n0Toj1QLx63rAj/swz9RKZDJl5DxYt40tiiKTiU9fhCHPMsif31rS67GlZ7eQEABKYtKdDJFYJ1xp/5iFoxccXcwxPLGAngioKAilkv7LcLAfN95Il9HR2Bhtukwc7WfiVJuZTFNQ2zl4Fj3798M93g/3KhQcqPRWlyYBprRjc12q9P9gwcu+fji5PGOPAmbgFf6DfOChhaQ00q39QJyBMGAOaCDG1zf1oMIU6DsJfnezOxc/gOsZikxY9v3zOZutWRisOHCXmgbxAnxOaMTGPFodRo3ywUbZRhUq1X62kW9m1c7q0uC041XIdR1HUbXU1tVxVWjjahReCSMF1sUnmO5CneeizCixmU5E5o93w5gugdEFvQY05x3uiRHB+pBySja24V6PXo96kUj0Fygbnmxwls4VvThBuBfJvxxt3SYkF4Jua9XVXhQyvHvNQ3dxOb46mY4PJuPJ5OziS/voNXro4eP6dyiNi94h2gch3kqfttT9+G3qaSbVXHv1hm4X/jUGdlnOsIUolP2ANRP+mcM/J1fAhEpZovMiAxpWLcla3tOKtbDYOizXSB9NRPeazuiSmLDU2hH5QycjNLkViERBWWTR/f39MBE5zj8xRIOUBHQS8Ekm2SZv583JYEc51YnttKX2+8jAHAygl1EDZCNCJSKHYA+Ho+EosMq6XKhHhv6yo7aS19XJfxQUmcCa1o2nVdNt13x1GMbRbr/haRxAqeWQV6FzrnlVzYSFryarazrGd8P4obBpNN+WqbS0xvaei8zCnm/dCOVPrppPpafsdx9UvcG0fFZr3+hZSTtceqL63xqnFV+CSJGZ5Fe4OUFSFe6RTvfhRC3UDaYP4ynKiJJS1aVzh+YetdePN++8AJvqO1BvO68cbcmvuv4JhPioRg== +api: eJzlVm1v2zYQ/ivEfdo6xnLabCiEYUCKuUXWbgliDxsQ+ANNnW02EqmSlBND4H8fjpTk2NZevg79JPHlnrt77o0teLFxkD/AnTUSnfsZ10orr4yGJQdToxW0uCkgh+eqfLf/iHvgUAsrKvRoSbYFLSqEHB7jmdKQQy38FjgU6KRVdcTL4SPumVmzOqlixUEXB4tfGmWxgNzbBjk4ucVKQN6C39cErrTHDVrgsDa2Ej5t/XAFISxJ3NVGO3Qk8Xo6pc+x8nkjSStwkEZ71D5i47PPnquS/s80Om+V3kAIIXC4GsO80TtRqoKR8ej8Mbao61LJSF9WW7MqsfrusyO5EV1m9RklAdSWSPcqeeK88I37VxbevIbAoULnxAZHPKCgOC+0HD9MG+d+c/DKl7Q1s9bYgYk350y8N3aligL1MQevslf/f3evzt29TwFHCr0zjZXItPFsbRpdfB1Z8P1YPVzf3bAXDjOMAl8BH4GDQ9lY5fexIa5QWLQX1BDzh2XgLUhjHhXG1fK0L35AP9IUmXDsz18/sdWepcZaod8aasQbjJxQi80h211mnfDFQdhl7SPuQ+xtZJvd9b26sSXk0CauQ55l7dY4H/K2NtYH4LATVolVmaimsxTntWhKIrY0UpRx+9SNxRYZHdA0oD7vt8goI5L2CXFKOo7h3k7fTkeR6OrfoBzy5ICz9b4exUmXR5Hi5OjjNqd7yek+VkPsRa3S3OsG3e3d7P56MbuYz+bzm9vf+qHXyQV+FP8BpTMxGkTrdAn62+/71P3lj0VMM6XXJop36XYbpzGyu2ZVKkmunDtsmIhjjgnp1Q6Z0AWTpqpLpGbVJ1mf9/THeti1sawyWnlDiR4lvTUNZcLWGE/JnypZyBjDlEjklMuz7OnpaSJF1ehCTKSpiIRSSdQu8tjx9qnb4SfChZFukFYmrjOLa7SoJWYdkMsIlRI5OXs5mU6mKaucr4R+oeg/VtQReUOc4qOgLoXSBB4tbbtqe4DdZWpHp/UGHPIESiW35F3lPEDbroTD320ZAm1/adDGpnAotFiWhXL0X0C+FqXDM9uGFgrf3HdPpW/ZPz2oRp3p81nvY6GXDa2Ax5dber+FZeCwRVGgjXalk2spsfYvZIaHE5XQ0Jg+zBbAQTRE1UDnSZpH1FE7fnwXL7CFeUT902CVpyXZFcJfhPioRg== sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/tasklist-api-rest/assets/img/api-architecture.png b/docs/apis-tools/tasklist-api-rest/assets/img/api-architecture.png deleted file mode 100644 index 93cf8ef7c8..0000000000 Binary files a/docs/apis-tools/tasklist-api-rest/assets/img/api-architecture.png and /dev/null differ diff --git a/docs/apis-tools/tasklist-api-rest/sidebar-schema.js b/docs/apis-tools/tasklist-api-rest/sidebar-schema.js index 517c97c4df..ebb41a15e7 100644 --- a/docs/apis-tools/tasklist-api-rest/sidebar-schema.js +++ b/docs/apis-tools/tasklist-api-rest/sidebar-schema.js @@ -7,6 +7,5 @@ module.exports = { { Specifications: require("./specifications/sidebar.js"), }, - "apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks", ], }; 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 14546a99a9..e15045dcb7 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 @@ -44,7 +44,7 @@ When using REST API with JWT authentication token following request body paramet On success returned. -
      Schema
      +
      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`. 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 1f4e3b31ea..a2205914bd 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 @@ -44,7 +44,7 @@ Variables to update or add to task during the task completion On success returned. -
      Schema
      +
      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. 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 c9ba57ae4b..ca8de33aad 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 @@ -37,7 +37,7 @@ Get one task by id. Returns task or error when task does not exist. On success returned. -
      Schema
      +
      Schema
      User has no permission to access the task (Self-managed only). 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 b4d862e180..e8e2b223ac 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 @@ -69,7 +69,7 @@ An array of the task's variables. Only variables specified in `TaskSearchRequest 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 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 2ecc8512e0..2e474e4b70 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 @@ -40,7 +40,7 @@ Unassign a task with `taskId`. Returns the task. On success returned. -
Schema
+
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. diff --git a/docs/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md b/docs/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md index 94cf88764a..0c1655c7af 100644 --- a/docs/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md +++ b/docs/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md @@ -5,6 +5,10 @@ sidebar_position: 1 description: "Build applications for human-centered processes by querying user tasks, assigning users, and completing tasks with the Tasklist API." --- +:::note +To migrate from Camunda's V1 component REST APIs to the V2 [Camunda 8 REST API](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md), review [migrating to the Camunda 8 API](/apis-tools/migration-manuals/migrate-to-camunda-api.md). +::: + ## Introduction The Tasklist API is a REST API designed to build task applications for human-centered processes. The API allows you to query user tasks, assign users to these tasks, and complete these tasks. diff --git a/docs/apis-tools/working-with-apis-tools.md b/docs/apis-tools/working-with-apis-tools.md index b2f19372bf..ec33220d14 100644 --- a/docs/apis-tools/working-with-apis-tools.md +++ b/docs/apis-tools/working-with-apis-tools.md @@ -44,6 +44,10 @@ Other components in Camunda 8, such as [Tasklist API (GraphQL)](../apis-tools/ta ## Learn about Camunda Components and their APIs +:::note +To migrate from Camunda's V1 component REST APIs to the V2 [Camunda 8 REST API](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md), review [migrating to the Camunda 8 API](/apis-tools/migration-manuals/migrate-to-camunda-api.md). +::: + Camunda 8 components have APIs to enable polyglot developers to work with in their programming language of choice. Below are links to available component APIs. ![Architecture diagram for Camunda including all the components for SaaS](./img/ComponentsAndArchitecture_SaaS.png) diff --git a/docs/apis-tools/zeebe-api-rest/tutorial.md b/docs/apis-tools/zeebe-api-rest/tutorial.md index ec299cbe3a..2bb1795037 100644 --- a/docs/apis-tools/zeebe-api-rest/tutorial.md +++ b/docs/apis-tools/zeebe-api-rest/tutorial.md @@ -41,7 +41,7 @@ In this tutorial, we will execute arguments to assign and unassign a user to and ## Assign a Zeebe user task (POST) :::note -In this tutorial, you will capture a **Zeebe user task** ID to assign and unassign users in this API. Camunda 8.5 introduced this new [user task](/components/modeler/bpmn/user-tasks/user-tasks.md) implementation type, and these Zeebe user tasks are different from job worker-based user tasks. See more details on task type differences in the [migrating to Zeebe user tasks documentation](/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md#task-type-differences). +In this tutorial, you will capture a **Zeebe user task** ID to assign and unassign users in this API. Camunda 8.5 introduced this new [user task](/components/modeler/bpmn/user-tasks/user-tasks.md) implementation type, and these Zeebe user tasks are different from job worker-based user tasks. See more details on task type differences in the [migrating to Zeebe user tasks documentation](/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md#task-type-differences). ::: First, let's script an API call to assign a Zeebe user task. diff --git a/docs/components/concepts/process-instance-migration.md b/docs/components/concepts/process-instance-migration.md index a48724ed25..9e13aa0d36 100644 --- a/docs/components/concepts/process-instance-migration.md +++ b/docs/components/concepts/process-instance-migration.md @@ -370,7 +370,7 @@ The following limitations exist that may be supported in future versions: - An element that becomes nested in a newly added subprocess - An element that was nested in a subprocess is no longer nested in that subprocess - Mapping instructions cannot change the element type -- Mapping instructions cannot change the task implementation, e.g. from a job worker user task to a Zeebe User Task +- Mapping instructions cannot change the task implementation, e.g. from a job worker user task to a Zeebe user task - The process instance must be in a wait state, i.e. waiting for an event or external input like job completion. It may not be taking a sequence flow or triggering an event while migrating the instance A full overview of error codes can be found in the migration command [RPC](/apis-tools/zeebe-api/gateway-service.md#migrateprocessinstance-rpc) or [REST](/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx). diff --git a/docs/components/concepts/workflow-patterns.md b/docs/components/concepts/workflow-patterns.md index ace1b2cbd6..8d148ee15e 100644 --- a/docs/components/concepts/workflow-patterns.md +++ b/docs/components/concepts/workflow-patterns.md @@ -276,10 +276,6 @@ An important problem to solve is how to roll back a business transaction in case In BPMN, you can use [compensation events](/components/modeler/bpmn/bpmn-coverage.md) to easily implement compensations in your processes. -:::note -The compensation event is supported in Camunda 7, but not yet in Camunda 8. It is on the roadmap and will eventually be available in Camunda 8. -::: -
1 diff --git a/docs/components/connectors/custom-built-connectors/connector-template-generator.md b/docs/components/connectors/custom-built-connectors/connector-template-generator.md index d0d919499e..09eeaf978f 100644 --- a/docs/components/connectors/custom-built-connectors/connector-template-generator.md +++ b/docs/components/connectors/custom-built-connectors/connector-template-generator.md @@ -4,8 +4,6 @@ title: Generate a Connector template description: Learn how to generate Connector templates for easier custom Connector creation. --- -Camunda 8 SaaS only - You can configure and automatically generate a custom [Connector template](/components/connectors/custom-built-connectors/connector-templates.md) in Web Modeler. You can start from a blank template or import an existing API definition such as an [OpenAPI specification](https://swagger.io/resources/open-api/), [Swagger specification](https://swagger.io/resources/open-api/), or a [Postman collection](https://www.postman.com/collection/). For example, download a Postman collection as a YAML file, import this into the generator, and choose which methods to include in the generated template. diff --git a/docs/components/connectors/out-of-the-box-connectors/available-connectors-overview.md b/docs/components/connectors/out-of-the-box-connectors/available-connectors-overview.md index 93782940b3..2f97f2ab95 100644 --- a/docs/components/connectors/out-of-the-box-connectors/available-connectors-overview.md +++ b/docs/components/connectors/out-of-the-box-connectors/available-connectors-overview.md @@ -47,6 +47,7 @@ import TabItem from "@theme/TabItem"; - [Google Drive Connector](/components/connectors/out-of-the-box-connectors/googledrive.md) - Create folders or files from a [Google Drive](https://www.google.com/drive/) template from your BPMN process. - [Google Maps Platform Connector](/components/connectors/out-of-the-box-connectors/google-maps-platform.md) - Validate addresses, retrieve postal addresses, and calculate distances with [Google Maps Platform Service](https://mapsplatform.google.com/) from your BPMN process - [Google Sheets Connector](/components/connectors/out-of-the-box-connectors/google-sheets.md) - Allows you to work with an existing or new empty spreadsheet on [Google Drive](https://drive.google.com/) from your BPMN process. +- [Google Gemini Connector](/components/connectors/out-of-the-box-connectors/google-gemini.md) - Allows you to work with an existing or new empty spreadsheet on [Google Drive](https://drive.google.com/) from your BPMN process. - [Hugging Face Connector](/components/connectors/out-of-the-box-connectors/hugging-face.md) - Interact with [Hugging Face](https://huggingface.co/) models from your BPMN process. - [Kafka Producer Connector](/components/connectors/out-of-the-box-connectors/kafka.md) - Produce messages to [Kafka](https://kafka.apache.org/) from your BPMN process. - [Microsoft Teams Connector](/components/connectors/out-of-the-box-connectors/microsoft-teams.md) - Interactions with [Microsoft Teams](https://www.microsoft.com/microsoft-teams/) from your BPMN process. diff --git a/docs/components/connectors/out-of-the-box-connectors/email.md b/docs/components/connectors/out-of-the-box-connectors/email.md index bc1c1dae69..f5364b1f0f 100644 --- a/docs/components/connectors/out-of-the-box-connectors/email.md +++ b/docs/components/connectors/out-of-the-box-connectors/email.md @@ -73,7 +73,7 @@ with a limit of one email, the task will return the most recently sent email. The task returns a list of emails in JSON format. Each email object contains the following information: - `messageId`: A unique identifier for the email message. -- `fromAddress`: the email addresses of the sender. +- `fromAddress`: The email addresses of the sender. - `subject`: The subject line of the email. - `size`: The size of the email (in bytes). @@ -117,13 +117,14 @@ Reading an email using POP3 protocol will delete the email The task returns a JSON object containing detailed information about the email: - `messageId`: The unique identifier corresponding to the email message. -- `fromAddress`: the email addresses of the sender. +- `fromAddress`: The email addresses of the sender. - `headers` : A list containing the email's headers - `subject`: The subject line of the email. - `size`: The size of the email in bytes. - `plainTextBody`: The plain text version of the email's content. -- `htmlBody`: The HTML version of the email's content, provided it exists. -- `receivedDateTime`: the email's reception datetime +- `htmlBody`: The HTML version of the email's content (if content exists). +- `attachments`: A list of all the email's attachments, provided as a document reference. +- `receivedDateTime`: The email's reception datetime #### Example Response @@ -147,7 +148,19 @@ Below is an example of the JSON response returned when a specific email is read: "value": "test" } ], - "sentDate": "2024-08-19T06:54:28Z" + "attachments": [ + { + "storeId": "in-memory", + "documentId": "20f1fd6a-d8ea-403b-813c-e281c1193495", + "metadata": { + "contentType": "image/webp; name=305a4816-b3df-4724-acd3-010478a54add.webp", + "size": 311032, + "fileName": "305a4816-b3df-4724-acd3-010478a54add.webp" + }, + "documentType": "camunda" + } + ], + "receivedDateTime": "2024-08-19T06:54:28Z" } ``` @@ -278,14 +291,18 @@ Allow users to send an email from the connected email account. #### Parameters -| Parameter | Description | -| :-------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `From` | Specify the sender's email address(es). This can be a single email address (for example, 'example@camunda.com'), a comma-separated list of addresses, or a Friendly Enough Expression Language (FEEL) expression returning a list of email addresses (for example, =["example@camunda.com"]). | -| `To` | Defines the email recipient(s). Similar to the `From` parameter, this can be a single email address, a comma-separated list, or a FEEL expression (for example, =["example@camunda.com"]). | -| `Cc` | (Optional) Specify the email address(es) to include in the **Carbon Copy (CC)** field. The format is the same as the **From** and **To** fields, and can include a single address, a list, or a FEEL expression. | -| `Bcc` | (Optional) Specify the email address(es) to include in the **Blind Carbon Copy (BCC)** field. It follows the same format as the **CC** field and ensures that BCC recipients are not visible to other recipients. | -| `Subject` | The email subject line. | -| `Email` | The main content of the email. | +| Parameter | Description | +| :------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `From` | Specify the sender's email address(es). This can be a single email address (for example, 'example@camunda.com'), a comma-separated list of addresses, or a Friendly Enough Expression Language (FEEL) expression returning a list of email addresses (for example, =["example@camunda.com"]). | +| `To` | Defines the email recipient(s). Similar to the `From` parameter, this can be a single email address, a comma-separated list, or a FEEL expression (for example, =["example@camunda.com"]). | +| `Cc` | (Optional) Specify the email address(es) to include in the **Carbon Copy (CC)** field. The format is the same as the **From** and **To** fields, and can include a single address, a list, or a FEEL expression. | +| `Bcc` | (Optional) Specify the email address(es) to include in the **Blind Carbon Copy (BCC)** field. It follows the same format as the **CC** field and ensures that BCC recipients are not visible to other recipients. | +| `Headers` | Feel expression containing all the desired headers to be added to the email's headers. cf. `{ "customHeaders" : "new header value" }` | +| `Subject` | The email subject line. | +| `Content Type` | The content type of the email. | +| `Email Text Content` | The text content of the email. This must only be provided if the `Content Type` is `PLAIN` or `HTML & PlainText`. | +| `Html Text Content` | The HTML content of the email. This must only be provided if the `Content Type` is `HTML` or `HTML & PlainText`. | +| `Attachment` | The document reference, either for a single document or as a list for multiple documents. | :::info To learn more about Friendly Enough Expression Language (FEEL) expression, @@ -401,6 +418,7 @@ The task returns a JSON object containing detailed information about the email: - `size`: The size of the email (in bytes). - `plainTextBody`: The plain text version of the email content. - `htmlBody`: The HTML version of the email content, if it exists. +- `attachments`: A list of all the email's attachments, provided as a document reference. - `receivedDateTime`: The date and time the email was received. #### Example Response @@ -425,7 +443,19 @@ The following JSON structure shows an expected response after a successful email "value": "test" } ], - "sentDate": "2024-08-19T06:54:28Z" + "attachments": [ + { + "storeId": "in-memory", + "documentId": "20f1fd6a-d8ea-403b-813c-e281c1193495", + "metadata": { + "contentType": "image/webp; name=305a4816-b3df-4724-acd3-010478a54add.webp", + "size": 311032, + "fileName": "305a4816-b3df-4724-acd3-010478a54add.webp" + }, + "documentType": "camunda" + } + ], + "receivedDateTime": "2024-08-19T06:54:28Z" } ``` @@ -578,7 +608,8 @@ The example below shows the expected JSON response after an email has been succe -The Email Inbound Connector is an inbound Connector that allows you to connect your BPMN service with any email IMAP server. +The Email Inbound Connector is an inbound Connector that allows you to connect your BPMN service with any email IMAP +server. :::caution This inbound connector only supports working with IMAP server. @@ -629,6 +660,7 @@ The task returns a JSON object containing detailed information about the email: - `size`: The size of the email (in bytes). - `plainTextBody`: The plain text version of the email content. - `htmlBody`: The HTML version of the email content, if it exists. +- `attachments` A list of document reference - `receivedDateTime`: The date and time the email was received. #### Example Response @@ -654,7 +686,19 @@ instance: "value": "test" } ], - "sentDate": "2024-08-19T06:54:28Z" + "attachments": [ + { + "storeId": "in-memory", + "documentId": "20f1fd6a-d8ea-403b-813c-e281c1193495", + "metadata": { + "contentType": "image/webp; name=305a4816-b3df-4724-acd3-010478a54add.webp", + "size": 311032, + "fileName": "305a4816-b3df-4724-acd3-010478a54add.webp" + }, + "documentType": "camunda" + } + ], + "receivedDateTime": "2024-08-19T06:54:28Z" } ``` @@ -664,9 +708,14 @@ as prioritizing tasks, content analysis, and automated responses. ## Activation condition -The optional **Activation condition** field allows you to specify a Friendly Enough Expression Language ([FEEL](/components/modeler/feel/what-is-feel.md)) expression to control when this Connector should trigger a process instance. This condition acts as a filter, allowing the process to be initiated only when certain criteria are met by the incoming email. +The optional **Activation condition** field allows you to specify a Friendly Enough Expression +Language ([FEEL](/components/modeler/feel/what-is-feel.md)) expression to control when this Connector should trigger a +process instance. This condition acts as a filter, allowing the process to be initiated only when certain criteria are +met by the incoming email. -For example, the FEEL expression `=(response.subject = "urgent")` ensures that the process is only triggered if the subject of the incoming email matches "urgent". If this field is left blank, the process is triggered for every email received by the connector. +For example, the FEEL expression `=(response.subject = "urgent")` ensures that the process is only triggered if the +subject of the incoming email matches "urgent". If this field is left blank, the process is triggered for every email +received by the connector. ## Correlation @@ -729,9 +778,12 @@ To learn more about TTL in Zeebe, see [message correlation](../../../concepts/me The **Deduplication** section allows you to configure the Connector deduplication parameters. -- **Connector deduplication** is a mechanism in the Connector Runtime that determines how many email listeners are created if there are multiple occurrences of the **Email Listener Connector** in a BPMN diagram. This is different to **message deduplication**. +- **Connector deduplication** is a mechanism in the Connector Runtime that determines how many email listeners are + created if there are multiple occurrences of the **Email Listener Connector** in a BPMN diagram. This is different to + **message deduplication**. -- By default, the Connector runtime deduplicates Connectors based on properties, so elements with the same subscription properties only result in one subscription. +- By default, the Connector runtime deduplicates Connectors based on properties, so elements with the same subscription + properties only result in one subscription. To customize the deduplication behavior, select the **Manual mode** checkbox and configure the custom deduplication ID. diff --git a/docs/components/connectors/out-of-the-box-connectors/google-gemini.md b/docs/components/connectors/out-of-the-box-connectors/google-gemini.md new file mode 100644 index 0000000000..3823a456b0 --- /dev/null +++ b/docs/components/connectors/out-of-the-box-connectors/google-gemini.md @@ -0,0 +1,233 @@ +--- +id: google-gemini +title: Google Gemini Connector +sidebar_label: Google Gemini Connector +description: The Gemini large language models (LLMs) that are used by Gemini for Google Cloud are trained on datasets of publicly available code, Google Cloud-specific material, and other relevant technical information in addition to the datasets used to train the Gemini [foundation models](https://storage.googleapis.com/deepmind-media/gemini/gemini_1_report.pdf). +--- + +:::info +The **Google Gemini Connector** is available for `8.7.0` or later. +::: + +The **Google Gemini Connector** is an outbound Connector that allows you to access Gemini multimodal models from Google. It is capable of understanding virtually any input, and can combine different types of information in a BPMN process. + +## Create a Google Gemini Connector task + +import ConnectorTask from '../../../components/react-components/connector-task.md' + + + +## Make your Google Gemini Connector executable + +To execute this Connector, ensure all mandatory fields are correctly filled. + +:::note +All the mandatory and non-mandatory fields and required settings depending on the operation selection you choose are covered in the upcoming sections. +::: + +## Authentication + +Choose an authentication type from the **Type** dropdown. For details on authentication types, see [Google authentication types](#google-authentication-types). + +## Project ID + +Enter your google cloud project identifier. + +## Region + +Enter the region where your project is located. For example, `us-central1 (lowa)`, `us-west1 (Oregon)`. + +## Model + +Select a model from the dropdown. The following models are currently supported: + +- gemini-1.5-flash-001 +- gemini-1.5-flash-002 +- gemini-1.5-pro-001 +- gemini-1.5-pro-002 +- gemini-1.0-pro-001 +- gemini-1.0-pro-002 +- gemini-1.0-pro-vision-001 + +## Prompt + +Enter a prompt as a FEEL expression, providing text and media. + +- To provide text to Gemini, your expression should contain key _"text"_ and text data. For example, _"text"_ : _"your text"_ +- To provide media to Gemini, your expression should contain key _"mime"_ and mime type text, and key _"uri"_ and media URI. For example, _"mime"_: _"mime type"_, _"uri"_: _"your URI"_. + +For example: + +```feel += [{"text": "who is this video about"}, +{"mime": "video/*", "uri": "https://youtu.be/..."}] +``` + +## System instructions + +Enter system instructions as a string, to determine how the model should respond. + +To learn more about system instructions, refer to [Google system instructions](https://cloud.google.com/vertex-ai/generative-ai/docs/learn/prompts/system-instructions?hl=en). + +## Grounding + +Grounding connects the model output to the verifiable sources of information. + +- This is useful in situations where accuracy and reliability are important. +- To use grounding, select the _Grounding_ checkbox and input the path to the data store. + +To learn more about grounding, refer to [Google grounding overview](https://cloud.google.com/vertex-ai/generative-ai/docs/grounding/overview?hl=en). + +## Safety Filter Settings + +You can adjust the likelihood of receiving a model response which might contain harmful content. + +- Content is blocked based on the probability that it is harmful. +- To use safety filter settings, select the _Safety Filter Settings_ checkbox and select the desired level from dropdown. +- By default, all filters are set to OFF. + +To learn more about safety filters, refer to [Google responsible AI safety filters and settings](https://cloud.google.com/vertex-ai/docs/generative-ai/learn/responsible-ai?hl=en#safety_filters_and_attributes). + +## Add stop sequence + +A stop sequence is a series of characters (including spaces) that stops response generation if encountered by the model. + +The stop sequence should be inserted as a string list. + +For example: + +```feel += ["text 1", "text 2"] +``` + +## Temperature + +The **Temperature** controls the randomness in token selection. + +- A lower temperature is good when you expect a true or correct response. A temperature of `0` means the highest probability token is usually selected. +- A higher temperature can lead to diverse or unexpected results. Some models have a higher temperature max to encourage more random responses. + +## Output token limit + +The **Output token limit** Determines the maximum amount of text output from a single prompt. A token is approximately four characters. + +## Seed + +Setting a **Seed** value is useful if you make repeated requests and want the same model response. + +Deterministic outcome isn’t guaranteed. Changing the model or other settings can cause variations in the response even when you use the same seed value. + +## Top-K + +The **Top-K** specifies the number of candidate tokens when the model is selecting an output token. + +- Use a lower value for less random responses and a higher value for more random responses. +- Only the _gemini-1.0-pro-vision-001_ model supports Top-K. + +## Top-P + +The **Top-P** changes how the model selects tokens for output. + +- Tokens are selected from the most probable to the least probable, until the sum of their probabilities equals the top-p value. +- For example, if tokens A, B, and C have a probability of .3, .2, and .1 and the top-p value is .5, then the model will select either A or B as the next token (using temperature). +- For the least variable results, set top-P to 0. + +## Functional call description + +**Function calling** is a feature of Gemini models that makes it easier to get structured data outputs from generative models. + +- The **Functional call description** must be provided in fell format. +- It is important that all types must be registered with capslock. + +To learn more about function calling, refer to [Google function calling](https://cloud.google.com/vertex-ai/generative-ai/docs/multimodal/function-calling). + +For example: + +```fell +[ + { + "name": "get_exchange_rate", + "description":"Get the exchange rate for currencies between countries", + "parameters": { + "type": "OBJECT", + "properties": { + "currency_date": { + "type": "STRING", + "description": "A date that must always be in YYYY-MM-DD format or the value 'latest' if a time period is not specified" + }, + "currency_from": { + "type": "STRING", + "description": "The currency to convert from in ISO 4217 format" + }, + "currency_to": { + "type": "STRING", + "description": "The currency to convert to in ISO 4217 format" + } + }, + "required":[ + "currency_date", + "currency_from", + "currency_to" + ] + } + } +] +``` + +### Google authentication types + +The **Google Gemini Connector** currently supports two methods for authentication and authorization: + +- Based on a short-lived JWT bearer token. +- Based on a refresh token. + +Google supports multiple ways to obtain both types of token. Refer to the [official Google OAuth documentation](https://developers.google.com/identity/protocols/oauth2) for current instructions, or see the examples below. + +#### Example 1: Obtain JWT bearer token with a service account + +:::warning +The following code snippet is for demonstration purposes only and must not be used for real production systems due to security concerns. +For production usage, follow the [official Google guidelines](https://developers.google.com/identity/protocols/oauth2/service-account). +::: + +Assuming you have created a service account and downloaded a JSON file with keys, run the following Python 3 snippet to print the JWT token in the terminal: + +```python +import google.auth +import google.auth.transport.requests +from google.oauth2 import service_account +# Scopes required to execute 'create' endpoind with Google Drive API +SCOPES = ['https://www.googleapis.com/auth/drive', 'https://www.googleapis.com/auth/drive.file', 'https://www.googleapis.com/auth/drive.appdata'] +# File with keys +SERVICE_ACCOUNT_FILE = 'google-service-account-creds.json' +credentials = service_account.Credentials.from_service_account_file(SERVICE_ACCOUNT_FILE, scopes=SCOPES) +auth_req = google.auth.transport.requests.Request() +credentials.refresh(auth_req) +# Print token +print(credentials.token) +``` + +#### Example 2: Obtain bearer and refresh token with OAuth client + +:::warning +The following code snippet is for demonstration purposes only and must not be used for real production systems due to security concerns. +For production usage, follow the [official Google guidelines](https://developers.google.com/identity/protocols/oauth2/web-server). +::: + +Assuming you have created an OAuth client, you can download key files from the Google [Console](https://console.cloud.google.com/apis/credentials). Run the following Python 3 snippet to print the refresh token in the terminal: + +```python +from google_auth_oauthlib.flow import InstalledAppFlow +import pprint + +SCOPES = ['https://www.googleapis.com/auth/drive', 'https://www.googleapis.com/auth/documents'] +OAUTH_KEYS = './oauth-keys.json' # path to your file with OAuth credentials + +def main(): + flow = InstalledAppFlow.from_client_secrets_file(OAUTH_KEYS, SCOPES) + creds = flow.run_local_server(port=54948) + pprint.pprint(vars(creds)) + +if __name__ == "__main__": + main() +``` diff --git a/docs/components/modeler/bpmn/bpmn-coverage.md b/docs/components/modeler/bpmn/bpmn-coverage.md index c96e34cd92..d0e298d193 100644 --- a/docs/components/modeler/bpmn/bpmn-coverage.md +++ b/docs/components/modeler/bpmn/bpmn-coverage.md @@ -140,15 +140,19 @@ import CompensationSvg from './assets/bpmn-symbols/compensation.svg' ## Data +:::note +`DataObject` and `DataStore`, like other BPMN standard IO mappings, are supported by Camunda for modeling purposes only. +::: + import DataObjectSvg from './assets/bpmn-symbols/data-object.svg' import DataStoreSvg from './assets/bpmn-symbols/data-store.svg' diff --git a/docs/components/modeler/bpmn/call-activities/call-activities.md b/docs/components/modeler/bpmn/call-activities/call-activities.md index dce3d26e6b..b2d602eca0 100644 --- a/docs/components/modeler/bpmn/call-activities/call-activities.md +++ b/docs/components/modeler/bpmn/call-activities/call-activities.md @@ -42,10 +42,6 @@ When a non-interrupting boundary event is triggered, the created process instanc ## Variable mappings -By default, all variables of the call activity scope are copied to the created process instance. This can be limited to copying only the local variables of the call activity, by setting the attribute `propagateAllParentVariables` to `false`. - -By disabling this attribute, variables existing at higher scopes are no longer copied. If the attribute `propagateAllParentVariables` is set (default: `true`), all variables are propagated to the child process instance. - Input mappings can be used to create new local variables in the scope of the call activity. These variables are also copied to the created process instance. If the attribute `propagateAllChildVariables` is set (default: `true`), all variables of the created process instance are propagated to the call activity. This behavior can be customized by defining output mappings at the call activity. The output mappings are applied on completing the call activity and only those variables that are defined in the output mappings are propagated. diff --git a/docs/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md b/docs/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md index 56bee823e4..5a1b961b48 100644 --- a/docs/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md +++ b/docs/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md @@ -14,6 +14,8 @@ When an embedded subprocess is entered, the start event is activated. The subpro Embedded subprocesses are often used together with **boundary events**. One or more boundary events can be attached to a subprocess. When an interrupting boundary event is triggered, the entire subprocess (including all active elements) is terminated. +When adding an embedded subprocess to your model, you can either add a collapsed or expanded subprocess. You cannot collapse an existing expanded subprocess in your model. + ## Collapsed subprocesses :::caution @@ -22,7 +24,7 @@ Collapsed subprocesses are currently only partially supported by Optimize. While All other Camunda components fully support collapsed subprocesses. ::: -A subprocess can be collapsed to conceal its internal details, thereby hiding complexity within an activity and enabling the nesting of multiple levels of subprocesses. This functionality allows you to simplify the view of a process diagram and facilitates drill-down capabilities to examine details. +A collapsed subprocess conceals its internal details, thereby hiding complexity within an activity and enabling the nesting of multiple levels of subprocesses. This functionality allows you to simplify the view of a process diagram and facilitates drill-down capabilities to examine details. Collapsed subprocesses serve purely display purposes. For the creation of reusable processes, it is recommended to utilize [call activities](../call-activities/call-activities.md). diff --git a/docs/components/modeler/bpmn/user-tasks/user-tasks.md b/docs/components/modeler/bpmn/user-tasks/user-tasks.md index 5212b2a3b2..90a64a6191 100644 --- a/docs/components/modeler/bpmn/user-tasks/user-tasks.md +++ b/docs/components/modeler/bpmn/user-tasks/user-tasks.md @@ -162,7 +162,7 @@ A user task does not have to be managed by Zeebe. Instead, you can also use job workers to implement a custom user task logic. Note that you will lose all the task lifecycle and state management features that Zeebe provides and will have to implement them yourself. Use job workers only in case you require a very specific implementation of user tasks that can't be implemented on top of Zeebe user tasks. :::info -If you started using Camunda 8 with version 8.4 or a lower version and upgraded to 8.5 or newer, your user tasks are probably implemented as job workers. Refer to the [migration guide](/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md) to find a detailed list of the differences between the task implementation types and learn how to migrate to Zeebe user tasks. +If you started using Camunda 8 with version 8.4 or a lower version and upgraded to 8.5 or newer, your user tasks are probably implemented as job workers. Refer to the [migration guide](/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md) to find a detailed list of the differences between the task implementation types and learn how to migrate to Zeebe user tasks. ::: You can define a job worker implementation for a user task by removing its `zeebe:userTask` extension element. diff --git a/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-list.md b/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-list.md index 9f6b2358e5..63e8c98489 100644 --- a/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-list.md +++ b/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-list.md @@ -621,3 +621,30 @@ is empty([]) is empty([1,2,3]) // false ``` + +## partition(list, size) + + + +Returns consecutive sublists of a list, each of the same size (the final list may be smaller). + +If `size` is less than `0`, it returns `null`. + +**Function signature** + +```feel +partition(list: list, size: number): list +``` + +**Examples** + +```feel +partition([1,2,3,4,5], 2) +// [[1,2], [3,4], [5]] + +partition([], 2) +// [] + +partition([1,2], 0) +// null +``` diff --git a/docs/components/modeler/web-modeler/advanced-modeling/form-linking.md b/docs/components/modeler/web-modeler/advanced-modeling/form-linking.md index c7cf43464f..cf43c6b50c 100644 --- a/docs/components/modeler/web-modeler/advanced-modeling/form-linking.md +++ b/docs/components/modeler/web-modeler/advanced-modeling/form-linking.md @@ -89,6 +89,10 @@ To correct any instances affected by this issue, we recommend the following step ### Camunda Form (embedded) +:::info +Embedded forms are supported only by job worker-based user tasks and are not available for the [Zeebe user task implementation type](/components/modeler/bpmn/user-tasks/user-tasks.md#user-task-implementation-types). +::: + When choosing **Camunda Form (embedded)** as type you have the option to directly paste the form's JSON schema into the **Form JSON configuration** field of the properties panel. The form will be embedded directly into the BPMN diagram's XML representation. diff --git a/docs/components/modeler/web-modeler/camunda-marketplace.md b/docs/components/modeler/web-modeler/camunda-marketplace.md index 1e366d34eb..0842066bae 100644 --- a/docs/components/modeler/web-modeler/camunda-marketplace.md +++ b/docs/components/modeler/web-modeler/camunda-marketplace.md @@ -12,6 +12,10 @@ If you are a **[Web Modeler Self-Managed](/self-managed/modeler/web-modeler/inst ## Browse Marketplace Connectors +:::note +Connectors created by partners or the community are not part of the commercial Camunda product. Camunda does not support these Connectors as part of its commercial services to enterprise customers. Please evaluate each client to make sure it meets your requirements before using. +::: + To navigate to the Camunda Marketplace, take the following steps: 1. Log in to your Camunda account. diff --git a/docs/components/modeler/web-modeler/deploy-process-application.md b/docs/components/modeler/web-modeler/deploy-process-application.md index d6f25b1777..91385f1ddd 100644 --- a/docs/components/modeler/web-modeler/deploy-process-application.md +++ b/docs/components/modeler/web-modeler/deploy-process-application.md @@ -39,6 +39,8 @@ Once validation is complete, deploy your process application to cluster stages i All BPMN, DMN, and form files contained in the process application folder are deployed as a single bundle. +In Self-Managed, you can deploy your diagram to the cluster defined in your Web Modeler [configuration](/self-managed/modeler/web-modeler/configuration/configuration.md#clusters). You should have the `Zeebe` [role](/self-managed/identity/user-guide/roles/add-assign-role.md/#add-a-role) assigned in Identity to be authorized to deploy. + :::note If any resource fails to deploy, the whole deployment [fails](#deployment-errors) and the cluster state remains unchanged. This safely ensures that a process application cannot be deployed incompletely or in an inconsistent state. ::: diff --git a/docs/components/modeler/web-modeler/git-sync.md b/docs/components/modeler/web-modeler/git-sync.md index 2f6668310d..9693b8340c 100644 --- a/docs/components/modeler/web-modeler/git-sync.md +++ b/docs/components/modeler/web-modeler/git-sync.md @@ -4,13 +4,26 @@ title: Git sync description: Connect Web Modeler to your Git repositories to keep your projects synced. --- -Organization owners and administrators can connect their Web Modeler process applications to GitHub, allowing users to keep their Web Modeler, Desktop Modeler, and official version control projects synced. +import Tabs from "@theme/Tabs"; +import TabItem from "@theme/TabItem"; -Once the basic integration is configured by an organization owner or organization administrator, project administrators and editors can use the built-in button to pull changes from GitHub, integrate contributions from Desktop Modeler users, and merge their own work. +Organization owners and administrators can connect their Web Modeler process applications to GitHub and GitLab, allowing users to keep their Web Modeler, Desktop Modeler, and official version control projects synced. -## Connect to GitHub +Once the connection is configured by an organization owner or organization administrator, project administrators and editors can use the built-in button to pull changes from the remote repository, integrate contributions from Desktop Modeler users, and merge their own work. -### Create a new GitHub App +## Connect to a remote repository + +Select your Git repository host: + + + + + +

Create a new GitHub App

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

Generate a private key

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

Install the GitHub App

1. In your application's setting page, navigate to **Install app**. 2. Click on the **Install** button for your organization or account. 3. Select **Only select repositories**, and choose the repository to sync with Web Modeler. 4. Once redirected to your application's installation page, copy the **Installation ID** located at the end of the page's URL: `https://github.com/settings/installations/{installation_id}`. -### Configure GitHub in Web Modeler +

Configure GitHub in Web Modeler

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

Create a new access token

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

Get the project ID

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

Configure GitLab in Web Modeler

:::note -File synchronization only happens at the root level of the remote repository. Files contained in subfolders will not be synchronized. +When using a self-hosted GitLab instance, ensure the environment variable `CAMUNDA_MODELER_GITSYNC_GITLAB_BASEURL` is set to the API URL of your self-hosted GitLab instance. It usually looks like `http(s)://HOSTNAME/api/v4`. ::: -Organization owners/administrators, project administrators, and project editors can sync their version of Web Modeler with the connected GitHub repository at any time. +1. Within Web Modeler, navigate to the process application you would like to connect to GitLab, and click **Connect repository**. + +2. Select the **GitLab** tile, located at the top of the modal. + +3. Provide the following information in the **Configure GitLab** modal: -1. In your connected process application, click **Sync with GitHub**. + - **Access token:** The generated project, group or personal access token. + - **Project ID:** The ID copied from the GitLab project settings. + - **GitLab repository URL:** The base URL of the repository you want to sync with, for example `https://gilab.com/camunda/example-repo`. The URL cannot contain the `.git` extension or a folder path. + - **Branch name:** The branch name to use for merging and managing changes. + - **Path:** (optional) The path to the folder containing your process application files. If left empty, Web Modeler syncs with the root of the repository. This path is **not** automatically created if it does not exist. + +4. Click **Open repository** to test your configuration. The repository for the provided branch and optional path opens in a new tab. + +5. Click **Save Configuration**. + +:::note +When synchronizing for the first time with a remote repository that already contains commits, ensure Web Modeler has assigned the correct main process. +::: + +When successful, your project will display a new **Sync with GitLab** button. + +
+
+ +## Sync with remote repository + +Organization owners/administrators, project administrators, and project editors can sync their version of Web Modeler with the connected repository at any time. + +1. In your connected process application, click **Sync with GitHub** or **Sync with GitLab**. 2. Enter a [version number](./process-applications.md#versioning) to create a new milestone for your process application. The new milestone will be created prior to pushing your changes to the central repository. 3. Click **Synchronize**. @@ -83,12 +149,14 @@ Once the pull is complete and any merge conflicts are resolved, Web Modeler will ## Manage existing configurations -Existing GitHub configurations can be edited from the gear icon beside the **Sync with GitHub** button. Permission to update these settings are limited by the roles within your organization and project. +Existing Git configurations can be edited from the gear icon beside the **Sync with GitHub** or **Sync with GitLab** button. Permission to update these settings are limited to **project administrators**. + +## Change Git provider + +To switch from GitHub to GitLab, or vice versa, update your configuration with the following steps: -- **Organization owners/administrators:** Edit and update all configuration options. -- **Project administrators - Self-Managed:** Edit and update all configuration options. -- **Project administrators - SaaS:** Edit and update only the **GitHub repository URL** and **branch name**. -- **Project editors:** Cannot make changes to the GitHub configuration. +1. Disconnect your current Git provider by clicking the gear icon beside the **Sync with GitHub** or **Sync with GitLab** button, and clicking the **Delete provider connection** button at the bottom of the modal. +2. After confirming the operation, open the **Connect repository** modal and provide the necessary information for the new Git provider, following the steps outlined for [GitHub](./git-sync.md/?platform=github#connect-to-a-remote-repository) or [GitLab](./git-sync.md/?platform=gitlab#connect-to-a-remote-repository). ## Advanced use cases @@ -112,7 +180,7 @@ To use Git sync for parallel feature development: 1. Create a new [process application](/docs/components/modeler/web-modeler/create-a-process-application.md) in Modeler for each active feature branch you want to develop. 2. Configure Git sync for each instance by connecting it to the corresponding feature branch in your repository. -3. Work on your feature in Modeler, using **Sync with GitHub** to pull and push changes as needed. +3. Work on your feature in Modeler, using **Sync with GitHub** or **Sync with GitLab** to pull and push changes as needed. 4. Once the feature is complete and merged into the main branch, you can delete the process application associated with the feature branch. To perform hotfixes or patches of production or production-bound processes, sync a copy of the process application to the `main` branch. @@ -129,4 +197,5 @@ Creating multiple copies of a process application can complicate navigation and - When synchronizing for the first time with a remote repository that already contains commits, Web Modeler will attempt to select a main process with a file name that matches its own main process. If there is no matching process, Web Modeler will select a process at random from the available `.bpmn` files. In the event that no `.bpmn` files exist in the remote repository, Web Modeler will not proceed, and will instead display an error message. Ensure the main process is correctly assigned, especially in cases where a random process has been selected. - Actions which alter the SHA of the commit to which Web Modeler is synced (for example, squash) may cause synchronization errors. - Timeouts may occur during a sync. In the event of a timeout, close the modal and retry the synchronization. -- A single synchronization action is limited to incorporating a maximum of 250 commits or making changes to up to 300 files, regardless of whether these changes affect the Web Modeler files directly. Be aware that Web Modeler does not provide a notification when these thresholds are exceeded. Should you encounter this limitation, it may be necessary to initiate a fresh synchronization. A fresh synchronization fetches all the files in the repository without relying on the incremental changes, thus bypassing the limitations. This can be achieved by either changing the branch or modifying the GitHub repository URL. +- Using self-hosted instances of Git providers may require additional configuration. Refer to the Web Modeler configuration part for your [git host](#connect-to-a-remote-repository) for more details. +- **(GitHub specific)** A single synchronization action is limited to incorporating a maximum of 250 commits or making changes to up to 300 files, regardless of whether these changes affect the Web Modeler files directly. Web Modeler does not provide a notification when these thresholds are exceeded. Should you encounter this limitation, it may be necessary to initiate a fresh synchronization. A fresh synchronization fetches all the files in the repository without relying on the incremental changes, thus bypassing the limitations. This can be achieved by either changing the branch or modifying the GitHub repository URL. diff --git a/docs/components/modeler/web-modeler/img/milestones/web-modeler-milestone-create-via-icon-highlight.png b/docs/components/modeler/web-modeler/img/milestones/web-modeler-milestone-create-via-icon-highlight.png index 38c9b0cfd2..3fed3621ad 100644 Binary files a/docs/components/modeler/web-modeler/img/milestones/web-modeler-milestone-create-via-icon-highlight.png and b/docs/components/modeler/web-modeler/img/milestones/web-modeler-milestone-create-via-icon-highlight.png differ diff --git a/docs/components/modeler/web-modeler/milestones.md b/docs/components/modeler/web-modeler/milestones.md index 6782f0d162..2d78dbae0a 100644 --- a/docs/components/modeler/web-modeler/milestones.md +++ b/docs/components/modeler/web-modeler/milestones.md @@ -32,7 +32,7 @@ You can create a new milestone either from your diagram or the milestone history ![milestones create via the breadcrumb menu](img/milestones/web-modeler-milestone-create-via-breadcrumb-highlight.png) -- From the milestone history, hover over the the latest version in the **Milestones** panel and select **Create a new milestone**. +- From the milestone history, hover over the draft in the **Milestones** panel and select **Create a new milestone**. ![milestones create via icon](img/milestones/web-modeler-milestone-create-via-icon-highlight.png) diff --git a/docs/components/modeler/web-modeler/play-your-process.md b/docs/components/modeler/web-modeler/play-your-process.md index b033dfac8f..64eaaa6848 100644 --- a/docs/components/modeler/web-modeler/play-your-process.md +++ b/docs/components/modeler/web-modeler/play-your-process.md @@ -14,7 +14,7 @@ Play is a Zeebe-powered playground environment within Web Modeler for validating To use Play, open a BPMN diagram and click the **Play** tab. Read the [limitations and availability section](#limitations-and-availability) if this section is missing. -In Self-Managed, you are prompted to select from the clusters defined in your Web Modeler [configuration](/self-managed/modeler/web-modeler/configuration/configuration.md#clusters). The Camunda 8 Helm and Docker Compose distributions provide one cluster configured by default. If no configuration is found, you are prompted to [manually enter your cluster details](#use-play-with-camunda-self-managed). +In Self-Managed, you are prompted to select from the clusters defined in your Web Modeler [configuration](/self-managed/modeler/web-modeler/configuration/configuration.md#clusters). The Camunda 8 Helm and Docker Compose distributions provide one cluster configured by default. A Play environment is then started that utilizes your selected development cluster in SaaS, or the specified cluster in a Self-Managed setup. @@ -162,10 +162,6 @@ Additionally, within their organization, users need to have a [role](/components ### Camunda 8 Self-Managed -:::note -To use Play with Docker, ensure OAuth is enabled for your configured components. The `docker-compose-core.yaml` file in the Camunda [platform repository](https://github.com/camunda/camunda-platform) does not provide authentication, and cannot be used with Play. -::: - In Self-Managed, Play is controlled by the `PLAY_ENABLED` [configuration property](/self-managed/modeler/web-modeler/configuration/configuration.md#feature-flags) in Web Modeler. This is `true` by default for the Docker and Kubernetes distributions. Prior to the 8.6 release, Play can be accessed by installing the 8.6.0-alpha [Helm charts](https://github.com/camunda/camunda-platform-helm/tree/main/charts/camunda-platform-alpha), or running the 8.6.0-alpha [Docker Compose](https://github.com/camunda/camunda-platform/tree/main/docker-compose/camunda-8.6) configuration. @@ -181,21 +177,6 @@ Prior to the 8.6 release, Play can be accessed by installing the 8.6.0-alpha [He After selecting the **Play** tab in Self-Managed, you are prompted to select from the clusters defined in your Web Modeler [configuration](/self-managed/modeler/web-modeler/configuration/configuration.md#clusters). The Camunda 8 Helm and Docker Compose distributions provide one cluster configured by default. -If no cluster is configured, Web Modeler requests the following cluster details to use for deployment: - -| Name | Description | Example value | -| ----------------- | ----------------------------------------------- | ---------------------------------------------------------------------------------- | -| Cluster endpoint | Address where your cluster can be reached | `http://zeebe:26500` | -| Operate base url | Address where Operate can be reached | `http://operate:8080` | -| Operate audience | Permission name for Operate | `operate-api` | -| Tasklist base url | Address where Tasklist can be reached | `http://tasklist:8080` | -| Tasklist audience | Permission name for Tasklist | `tasklist-api` | -| Zeebe rest url | Address where the Zeebe REST API can be reached | `http://zeebe:8080` | -| Client ID | Name of your registered client | `zeebe` | -| Client secret | Password for your registered client | `zecret` | -| OAuth token url | Token issuer server | `http://keycloak:18080/auth/realms/camunda-platform/protocol/openid-connect/token` | -| OAuth audience | Permission name for Zeebe | `zeebe-api` | - ### Limitations - Play does not support multi-tenancy. diff --git a/docs/components/modeler/web-modeler/run-or-publish-your-process.md b/docs/components/modeler/web-modeler/run-or-publish-your-process.md index 82233c6ada..1c5441f1a9 100644 --- a/docs/components/modeler/web-modeler/run-or-publish-your-process.md +++ b/docs/components/modeler/web-modeler/run-or-publish-your-process.md @@ -37,7 +37,7 @@ To deploy, click **Deploy** in the upper right corner of the modeling screen: ![The deploy dialog of a BPMN diagram](img/web-modeler-deploy.png) -In Self-Managed, you can deploy your diagram to the cluster defined in your Web Modeler [configuration](/self-managed/modeler/web-modeler/configuration/configuration.md#clusters). If no configuration is found, you are prompted to manually enter your cluster details. +In Self-Managed, you can deploy your diagram to the cluster defined in your Web Modeler [configuration](/self-managed/modeler/web-modeler/configuration/configuration.md#clusters). You should have the `Zeebe` [role](/self-managed/identity/user-guide/roles/add-assign-role.md/#add-a-role) assigned in Identity to be authorized to deploy. ### Before deploying a process diff --git a/docs/guides/react-components/_install-c8run.md b/docs/guides/react-components/_install-c8run.md index 3047dee787..520996f22c 100644 --- a/docs/guides/react-components/_install-c8run.md +++ b/docs/guides/react-components/_install-c8run.md @@ -11,7 +11,7 @@ If no version of Java is found, follow your chosen installation's instructions f ### Install and start Camunda 8 Run -1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha1) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. +1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha2) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. 2. Navigate to the new `c8run` directory. 3. Start Camunda 8 Run by running `./start.sh` (or `.\c8run.exe start` on Windows) in your terminal. diff --git a/docs/reference/announcements.md b/docs/reference/announcements.md index adbeb28643..da89278137 100644 --- a/docs/reference/announcements.md +++ b/docs/reference/announcements.md @@ -1,420 +1,119 @@ --- id: announcements title: "Announcements" -description: "Important announcements including deprecation & removal notices" +description: "Important announcements for upcoming and past Camunda 8 releases that customers should be aware of, including deprecation & removal notices." --- -## Camunda 8.7 - -Release date: TBD - -End of maintenance: TBD - -### Southeast Asia now available for SaaS customers - -SaaS customers can now create orchestration clusters in the [Singapore (asia-southeast1) region](/reference/regions.md), ensuring lower latency and improved processing speed for organizations operating in southeast Asian countries. - -## Camunda 8.6 - -Release date: 8th of Oct 2024 - -End of maintenance: 14th of April 2026 - -### License key changes - -With the 8.6 release, Camunda 8 Self-Managed requires a license key for production usage. For additional details, review the [blog post on licensing updates for Camunda 8 Self-Managed](https://camunda.com/blog/2024/04/licensing-update-camunda-8-self-managed/). - -Review the following documentation for your components for more information on how to provide the license key to each component as an environment variable: - -- [Console](/self-managed/console-deployment/configuration.md#environment-variables) -- [Zeebe](/self-managed/zeebe-deployment/configuration/configuration.md#licensing) -- [Operate](/self-managed/operate-deployment/operate-configuration.md#licensing) -- [Tasklist](/self-managed/tasklist-deployment/tasklist-configuration.md#licensing) -- [Optimize]($optimize$/self-managed/optimize-deployment/configuration/system-configuration-platform-8#licensing) -- [Identity](/self-managed/identity/deployment/configuration-variables.md#license-configuration) -- [Modeler](/self-managed/modeler/web-modeler/configuration/configuration.md#licensing) - -To configure with Helm, visit the [Self Managed installation documentation](/self-managed/setup/install.md). - -:::note -Camunda 8 components without a valid license may display **Non-Production License** in the navigation bar and issue warnings in the logs. These warnings have no impact on startup or functionality, with the exception that Web Modeler has a limitation of five users. To obtain a license, visit the [Camunda Enterprise page](https://camunda.com/platform/camunda-platform-enterprise-contact/). -::: - -### Zeebe Java client - -Starting with 8.7, the Zeebe Java client will become the new Camunda Java client. This transition brings a new Java client structure designed to enhance the user experience and introduce new features while maintaining compatibility with existing codebases. - -The primary goal of those changes is to enable users to interact with Camunda clusters with one consolidated client rather than multiple. The `CamundaClient` will replace the `ZeebeClient`, offering the same functionality and adding new capabilities. If you need to continue using the old `ZeebeClient`, you can use the version 8.6 artifact without any issues with newer cluster versions as the client is forward-compatible. - -:::note -The Zeebe Java client will not be developed further and will only receive bug fixes for as long as version 8.6 is officially supported. -::: - -#### Key changes - -- **New package structure**: - - Package `io.camunda.client`: This package contains the new `CamundaClient` and all the features slated for release in version 8.7. -- **Properties and environment variables refactoring**: - - All old Java client property names will be refactored to more general ones. For instance, `zeebe.client.tenantId` will become `camunda.client.tenantId`. - - Similarly, environment variables will be renamed following the same concept: `ZEEBE_REST_ADDRESS` will become `CAMUNDA_REST_ADDRESS`. -- **Artifact ID change**: - - The `artifactId` will change from `zeebe-client-java` to `camunda-client-java`. - -### Deprecation: Zeebe Go client & CLI client (zbctl) - -The Zeebe Go Client and CLI client (zbctl) will be [officially deprecated](https://camunda.com/blog/2024/09/deprecating-zbctl-and-go-clients/) with the 8.6 release as part of our efforts to streamline the Camunda 8 API experience. This client and CLI utility will not be released starting with Camunda 8.6, will no longer receive new features, and will be transitioned to a community-maintained status. - -The documentation of the Zeebe Go Client and CLI client (zbctl) moved to the [community clients section](/apis-tools/community-clients/index.md). - -### Camunda 8 SaaS - Required cluster update - -:::caution -By **August 30th, 2024** all automation clusters in Camunda 8 SaaS must be [updated](/components/console/manage-clusters/manage-cluster.md#update-a-cluster) to the following versions at a **minimum**: - -- **8.2+gen27** -- **8.3+gen11** -- **8.4+gen7** -- **8.5+gen2** - -::: - -auth0 announced an End-Of-Life for one of the functionalities that is being utilized by previous automation clusters. The new versions are not using this functionality anymore. This update ensures your cluster will work seamlessly after auth0 deactivates the feature in production. - -You minimally need to take the following [update](/components/console/manage-clusters/manage-cluster.md#update-a-cluster) path: - -- 8.0.x -> 8.2+gen27 -- 8.1.x -> 8.2+gen27 -- 8.2.x -> 8.2+gen27 -- 8.3.x -> 8.3+gen11 -- 8.4.x -> 8.4+gen7 -- 8.5.x -> 8.5+gen2 - -If you do not update the cluster by August 30th 2024, we will update the cluster for you. **Without an update, you would lose access to your cluster.** +Important changes and updates for Camunda 8 releases that customers should be aware of, including deprecation & removal notices. -Camunda 8 Self-Managed clusters are not affected by this. - -### Support for Amazon OpenSearch for Optimize - -This release extends the OpenSearch features supported by Optimize. Full support is committed for the next release in January 2025. - -### Supported environment changes (OpenJDK, ElasticSearch, Amazon OpenSearch) - -Version changes are made to supported environments: - -- OpenJDK minimum version raised to 21+ in Operate -- ElasticSearch minimum version raised to 8.13+ -- Amazon OpenSearch minimum version raised to 2.9+ - -To learn more about supported environments, see [supported environments](/reference/supported-environments.md). - -### Connectors - -#### Deprecation: None start event element templates for Kafka, RabbitMQ, Amazon SQS, and Amazon SNS inbound Connectors - -The [none start event](/components/modeler/bpmn/none-events/none-events.md#none-start-events) element templates for the out-of-the-box Kafka, RabbitMQ, Amazon SQS, and Amazon SNS inbound Connectors have been deprecated in Camunda Modeler. - -Users can no longer select these templates when creating a new none start event element in Camunda Modeler. Existing none start event elements with these templates will continue to work as expected, but users are encouraged to migrate to the [message start event](/components/modeler/bpmn/message-events/message-events.md#message-start-events) element templates for these Connectors. - -Message start event element templates are better suited for the message-based communication these Connectors provide, and offer more flexibility and features compared to the none start event element templates, such as the ability to define a message ID and a correlation key for idempotency. Read more in the [inbound Connectors documentation](/components/connectors/use-connectors/inbound.md) and the [messaging concepts documentation](/components/concepts/messages.md#message-uniqueness). - -#### Breaking changes in the Connector SDK - -The `void correlate(Object variables)` method in the `InboundConnectorContext` interface has been removed, following the deprecation in 8.4.0. Use the `CorrelationResult correlateWithResult(Object variables)` method instead. - -The `CorrelationResult` record has been changed compared to the previous versions: - -- `CorrelationResult.Success` now contains a `ProcessElementContext` that represents the element that was correlated. Compared to the previous version, where the correlated element was returned directly, this change allows accessing element properties after correlation for user-controlled post-correlation actions. -- `CorrelationResult.Failure` now provides the `CorrelationFailureHandlingStrategy` that defines how the failure should be handled. - -An example of how to use the new `CorrelationResult` can be found in the [Connector SDK documentation](/components/connectors/custom-built-connectors/connector-sdk.md#inbound-connector-runtime-logic). - -### Flow control enabled by default in SaaS - -Flow control is now enabled by default in Camunda 8.6 SaaS. This change ensures the cluster is protected from excessive load and can maintain a stable state. - -These new configuration defaults are tailored to the cluster size and optimized for a stable performance. However, the cluster might reject requests if the load is too high with this change. The error message for this is `Failed to write client request to partition X, because the write limit is exhausted`. If the error persists, this may be a sign of underlining issues, or a need to adjust the cluster size. - -For more information on how to configure flow control for a Self-Managed cluster, visit the [flow control documentation](/self-managed/operational-guides/configure-flow-control/configure-flow-control.md). - -### Camunda 8 Self-Managed - -#### Helm chart - Separated Ingress deprecation - -The separated Ingress Helm configuration for Camunda 8 Self-Managed has been deprecated in 8.6, and will be removed from the Helm chart in 8.7. Only the combined Ingress configuration is officially supported. See the [Ingress guide](/self-managed/setup/guides/ingress-setup.md) for more information on configuring a combined Ingress setup. - -#### Helm chart - `global.multiregion.installationType` deprecation - -The `global.multiregion.installationType` option is used in failover and failback scenarios. This option in the Helm chart has been deprecated in 8.6, and will be removed from the Helm chart in 8.7. `global.multiregion.installationType` was replaced with a set of API endpoints called while following the ([dual-region operational procedure](/self-managed/operational-guides/multi-region/dual-region-ops.md)) - -#### Helm chart - Elasticsearch nodes number - -The default value of Elasticsearch deployment pods has changed from 2 to 3, and an affinity setting has been added to avoid scheduling Elasticsearch pods on the same Kubernetes worker. +## Camunda 8.7 -### Camunda Optimize artifact and Docker tag separation +Camunda 8.7 is scheduled for release on 11 February, 2024. -Starting with Camunda 8.6, the Camunda Optimize artifact has been split into two distinct versions, and versioning between Camunda 7 and Camunda 8 is no longer interchangeable: +
+
-- **Before Camunda 8.6**: Versions like `8.x` and `3.x` (used for Camunda 7) could sometimes be used interchangeably. -- **From Camunda 8.6 onwards**: `8.6 != 3.14`. Each version corresponds strictly to its platform: - - **Camunda 7**: Uses the `3.x` versioning scheme and the `latest` Docker tag. - - **Camunda 8**: Uses the `8.x` versioning scheme and the `8-latest` Docker tag. +**[8.7 Announcements](/reference/announcements/870.md)** -#### Action required: +
+
-- **Camunda 7 Users**: Continue using `3.x` versions and the `latest` Docker tag. -- **Camunda 8 Users**: If you haven't already done so, update your configurations to use `8.x` versions and the `8-latest` Docker tag. +- [API updates](/reference/announcements/870.md#api-updates-saasself-managed) +- [Identity management updates](/reference/announcements/870.md#identity-management-updates-saasself-managed) +- [Installation and deployment updates](/reference/announcements/870.md#installation-and-deployment-updates-self-managed) +- [Camunda Java client and Camunda Spring SDK](/reference/announcements/870.md#camunda-java-client-and-camunda-spring-sdk-self-managed) -Make sure to update your Docker configurations accordingly to ensure compatibility. +
+
-### New base path for Operate and Tasklist web applications +## Camunda 8.6 -We are introducing a new base path for both the Operate and Tasklist **web applications**. This change applies to both Self-Managed and SaaS environments. +Camunda 8.6 was released on 8 October, 2024. -#### For Self-Managed +
+
-- The new base path for Operate is `/operate`, and for Tasklist, it is `/tasklist`. -- For a [Separated Ingress](/self-managed/setup/guides/ingress-setup.md?ingress=separated) configuration: - - for Operate, the full URL will be `{operate-host}/operate`. Any calls to `{operate-host}` will automatically be redirected to `{operate-host}/operate` - - for Tasklist, the full URL will be `{tasklist-host}/tasklist`. Any calls to `{tasklist-host}` will automatically be redirected to `{tasklist-host}/tasklist`. -- For a [Combined Ingress](/self-managed/setup/guides/ingress-setup.md?ingress=combined) configuration: - - for Operate, the full URL will be `{common-host}/{operate-contextPath}/operate`. Any calls to `{common-host}/{operate-contextPath}` will be automatically redirected to `{common-host}/{operate-contextPath}/operate`. - - for Tasklist, the full URL will be `{common-host}/{tasklist-contextPath}/tasklist`. Any calls to `{common-host}/{tasklist-contextPath}` will be automatically redirected to `{common-host}/{tasklist-contextPath}/tasklist`. +**[8.6 Announcements](/reference/announcements/860.md)** -#### For SaaS +
+
-- The full URL for Operate is now structured as `https://{region}.operate.camunda.io/{clusterId}/operate`. -- The full URL for Tasklist is now structured as `https://{region}.tasklist.camunda.io/{clusterId}/tasklist`. -- Any calls to `https://{region}.operate.camunda.io/{clusterId}` will be redirected to `https://{region}.operate.camunda.io/{clusterId}/operate`. -- Any calls to `https://{region}.tasklist.camunda.io/{clusterId}` will be redirected to `https://{region}.tasklist.camunda.io/{clusterId}/tasklist`. +- [License key changes](/reference/announcements/860.md#license-key-changes) +- [Zeebe Java client](/reference/announcements/860.md#zeebe-java-client) +- [Deprecation: Zeebe Go client & CLI client (zbctl)](/reference/announcements/860.md#deprecation-zeebe-go-client--cli-client-zbctl) +- [Camunda 8 SaaS - Required cluster update](/reference/announcements/860.md#camunda-8-saas---required-cluster-update) +- [Support for Amazon OpenSearch for Optimize](/reference/announcements/860.md#support-for-amazon-opensearch-for-optimize) +- [Supported environment changes](/reference/announcements/860.md#supported-environment-changes-openjdk-elasticsearch-amazon-opensearch) +- [Connectors](/reference/announcements/860.md#connectors) +- [Flow control enabled by default in SaaS](/reference/announcements/860.md#flow-control-enabled-by-default-in-saas) +- [Camunda 8 Self-Managed](/reference/announcements/860.md#camunda-8-self-managed) +- [Camunda Optimize artifact and Docker tag separation](/reference/announcements/860.md#camunda-optimize-artifact-and-docker-tag-separation) +- [New base path for Operate and Tasklist web applications](/reference/announcements/860.md#new-base-path-for-operate-and-tasklist-web-applications) -:::note -**API URLs** for both Operate and Tasklist remain **unchanged**. -::: +
+
## Camunda 8.5 -Release date: 9th of April 2024 - -End of maintenance: 14th of October 2025 - -### Updated SaaS URLs - -We will simplify the URL for Camunda 8 SaaS from cloud.camunda.io ([console.cloud.camunda.io](https://console.cloud.camunda.io/)) to camunda.io ([console.camunda.io](http://console.camunda.io/)). +Camunda 8.5 was released on 9 April, 2024. -On or around July 9th, users will be directed to the new URLs. Both URLs will continue to be active for at least 18 months so navigation from supported versions of components like Operate is still possible. +
+
-Internal allowlisting or active rules for [cloud.camunda.io](http://cloud.camunda.io/) must be transitioned to the new [camunda.io](http://camunda.io/) URL. This change primarily affects Console and Modeler. During sign up, users will be briefly redirected through [accounts.cloud.camunda.io](http://accounts.camunda.io/), which will also be updated. +**[8.5 Announcements](/reference/announcements/850.md#camunda-85)** -### Syntax changes in Helm chart +
+
-A Camunda Helm chart upgrade is not possible from v9.x.x to v10.0.0 or v10.0.1. Instead, upgrade directly to v10.0.2+. +- [Updated SaaS URLs](/reference/announcements/850.md#updated-saas-urls) +- [Syntax changes in Helm chart](/reference/announcements/850.md#syntax-changes-in-helm-chart) +- [Support for Amazon OpenSearch](/reference/announcements/850.md#support-for-amazon-opensearch) +- [Known limitations](/reference/announcements/850.md#known-limitations) +- [Changes in supported environments](/reference/announcements/850.md#changes-in-supported-environments) +- [New generation naming scheme](/reference/announcements/850.md#camunda-saas-new-generation-naming-scheme) +- [Removal of Web Modeler's beta API](/reference/announcements/850.md#removal-of-web-modelers-beta-api) +- [Serialization of timestamp values in management API](/reference/announcements/850.md#zeebe-850-breaks-serialization-of-timestamp-values-in-management-api-self-managed-only) -The Camunda Helm chart v10.0.0 has major changes in the values file structure. Some keys in the values file have been changed. For compatibility, the keys are deprecated in the Camunda release cycle 8.5 and will be removed in the Camunda 8.6 release (October 2024). - -Follow the [upgrade instructions](/self-managed/setup/upgrade.md#helm-chart-1002+) to upgrade from Camunda Helm chart v9.x.x to Camunda Helm chart v10.x.x. - -### Support for Amazon OpenSearch - -With the 8.5 release, Optimize is now also compatible with [Amazon OpenSearch](https://aws.amazon.com/de/opensearch-service/) 2.5+. Note that using Amazon OpenSearch requires [setting up a new Camunda installation](/self-managed/setup/overview.md). A migration from previous versions or Elasticsearch environments is not supported. - -### Known limitations - -This release contains the following limitations: - -- In **Optimize `8.5.0`** - - **Limitation** - - **Description:** OpenSearch support in Optimize is limited to data import and the raw data report. - - **Reference:** n/a - - **Mitigation:** Optimize can be installed and used in production with limited reporting functionality. Optimize imports all process data generated by Zeebe. All reporting functionality as described in the docs will be delivered with upcoming patches. -- In **Console `8.5.x`** - - **Limitation** - - **Description:** Custom OIDC provider support for Console is not supported - - **Reference:** https://github.com/camunda/issues/issues/784 - -### Changes in supported environments - -- Raised minimum Go version to 1.21 for the Zeebe Go client - -### Camunda SaaS: New generation naming scheme - -With the April release, the generation naming scheme in Camunda 8 changed and no longer includes the patch version. - -The new naming scheme used for all Camunda SaaS generations created after April 2024 is `Camunda .+gen`, where `N` is incremented with every atomic change to the component version set. Existing generations will not be renamed. - -For patch releases to existing generations, `N` is set to the latest patch level plus 1. For example, when `Camunda 8.4.5` is the current generation name, the following patch will be released as `Camunda 8.4+gen6`. - -This was done to decouple the generation name from the particular patch level of the components it contains, as some component versions like Connectors are decoupled from other components. - -You will learn about the particular component patch version changes in the update dialogue to the latest generation available. The following screenshot shows a sample update from `Camunda 8.5+gen1` to `Camunda 8.5+gen2`, where only the Connectors patch version changed. - -![New Generating naming sample showing an update dialogue from 8.5+gen1 to 8.5+gen2](img/generation-naming-scheme-sample.png) - -Note that the actual values shown in this screenshot don't correspond to any actual generations and only serve as an example. - -### Removal of Web Modeler's beta API - -The Web Modeler beta API has been removed. The API was deprecated in 8.3 and is no longer available in 8.5. Use the [Web Modeler v1 API](/apis-tools/web-modeler-api/index.md) instead. -For a migration guide, see the [Web Modeler API documentation](/apis-tools/web-modeler-api/index.md#migrating-from-beta-to-v1). - -### Zeebe 8.5.0 breaks serialization of timestamp values in management API (Self-Managed only) - -Zeebe 8.5.0 was released with [a new bug](https://github.com/camunda/camunda/issues/17347) that breaks serialization of timestamp values in management APIs, such as [backup](/self-managed/operational-guides/backup-restore/backup-and-restore.md) and [cluster scaling](/self-managed/zeebe-deployment/operations/cluster-scaling.md). -Timestamps which were previously serialized as `ISO8061` strings are now serialized as integer values. - -Until a fix is delivered in 8.5.1, workarounds include not deserializing timestamp values from affected APIs, or deserializing them as integers. +
+
## Camunda 8.4 -Release date: 9th of January 2024 - -End of maintenance: 9th of July 2025 - -:::caution -The [form linking](/components/modeler/web-modeler/advanced-modeling/form-linking.md#using-the-link-button) feature is impacted by an [issue](https://github.com/camunda/camunda/issues/16311) where the wrong forms can get linked with new user task instances, effectively corrupting the user task instance. If you make use of this feature and run either `8.4.0`, `8.4.1` or `8.4.2`, we urge you to update to the newest `8.4.3` patch that includes the required fix. - -Follow the instructions in the [form linking](/components/modeler/web-modeler/advanced-modeling/form-linking.md#known-issues-with-linked-forms) documentation to resolve this issue. -::: - -### Versioning changes in Helm chart - -As of the 8.4 release, the Camunda 8 **Helm chart** version is decoupled from the version of the application. The Helm chart release still follows the applications release cycle, but it has an independent version. (e.g., in the application release cycle 8.4, the chart version is 9.0.0). - -For more details about the applications version included in the Helm chart, review the [full version matrix](https://helm.camunda.io/camunda-platform/version-matrix/). - -### Dockerfile numeric ID - -The Dockerfile now uses a numeric user ID instead of a non-numeric user. -This will allow the Helm users to use `runAsNonRoot=true` without the need to explicitly set the ID in the Helm `values.yaml` file. - -### Deprecated in 8.4 - -The [Zeebe configuration properties for Camunda Identity](../self-managed/zeebe-deployment/configuration/gateway.md#zeebegatewayclustersecurityauthenticationidentity) -were deprecated in `8.4`. Please use the dedicated Camunda Identity properties or the [corresponding environment variables](../self-managed/identity/deployment/configuration-variables.md#core-configuration). - -### Versioning changes in Elasticsearch +Camunda 8.4 was released on 9 January, 2024. -As of the 8.4 release, Camunda is compatible with Elasticsearch 8.9+ and no longer supports older Elasticsearch versions. See [supported environments](/reference/supported-environments.md). +
+
-### Support for Amazon OpenSearch +**[8.4 Announcements](/reference/announcements/850.md#camunda-84)** -As of the 8.4 release, Zeebe, Operate, and Tasklist are now compatible with [Amazon OpenSearch](https://aws.amazon.com/de/opensearch-service/) 2.5.x. Note that using Amazon OpenSearch requires [setting up a new Camunda installation](/self-managed/setup/overview.md). A migration from previous versions or Elasticsearch environments is currently not supported. +
+
-:::info -The Helm charts are not yet prepared with the OpenSearch configurations as templates/pre-filled. The Helm charts can still be used to install for OpenSearch, but some adjustments are needed beforehand. Refer to the [Helm deployment documentation](/self-managed/setup/install.md) for further details. -::: +- [Versioning changes in Helm chart](/reference/announcements/850.md#versioning-changes-in-helm-chart) +- [Dockerfile numeric ID](/reference/announcements/850.md#dockerfile-numeric-id) +- [Deprecated in 8.4](/reference/announcements/850.md#deprecated-in-84) +- [Versioning changes in Elasticsearch](/reference/announcements/850.md#versioning-changes-in-elasticsearch) +- [Support for Amazon OpenSearch](/reference/announcements/850.md#support-for-amazon-opensearch-1) +- [Known limitations](/reference/announcements/850.md#known-limitations-1) -### Known limitations - -This release contains the following limitations: - -- In **Operate `8.4.0`** - - **Bug** - - **Description:** Instance migration always points to the latest process version - - **Reference:** https://github.com/camunda/issues/issues/567 - - **Mitigation:** Bug is planned to be fixed with upcoming `8.4.1` release - - **Bug** - - **Description:** Backwards migration over multiple versions does not work - - **Reference:** https://github.com/camunda/issues/issues/568 - - **Mitigation:** Bug is planned to be fixed with upcoming `8.4.1` release -- In **Camunda HELM `9.0.x`** - - **Limitation** - - **Description:** The existing Helm charts use the Elasticsearch configurations by default and are not yet prepared with the OpenSearch configurations as templates/pre-filled. The Helm charts can still be used to install for OpenSearch, but some adjustments are needed beforehand. - - **Reference:** n/a - - **Mitigation:** - 1. Refer to our [docs for the installation](/self-managed/setup/install.md#components-installed-by-the-helm-charts), the docs include guidance about necessary adjustments of the Helm chart configuration. - 2. The OpenSearch configuration in Helm charts will be provided in one of our future Helm releases. -- In **Connectors `8.4.x`** - - **Missing feature** - - **Description:** Custom OIDC provider support for Connectors is missing - - **Reference:** https://github.com/camunda/issues/issues/569 - - **Mitigation:** - 1. Feature is planned to be delivered with an upcoming patch release. Please see [issue](https://github.com/camunda/issues/issues/569) for latest progress. - 2. [Disable Connectors component](/self-managed/setup/guides/connect-to-an-oidc-provider.md#configuration) when configuring a custom OIDC provider. +
+
## Camunda 8.3 -Release date: 10th of October 2023 - -End of maintenance: 9th of April 2025 - -:::caution -For existing clusters we recommend updating to `8.3.1` directly and not `8.3.0` due to issues in data migration of Operate, Tasklist, and Optimize that could prolong the migration or even blocking it from finishing. -::: - -:::caution Breaking change - -### Zeebe Docker image now runs with unprivileged user by default - -The default user in the Zeebe Docker image changed from root to an unprivileged user with the UID 1000. This was done to provide stronger compliance with the [OWASP recommendations on Docker Security](https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html#rule-2-set-a-user). - -Please refer to the [Update 8.2 to 8.3](/self-managed/operational-guides/update-guide/820-to-830.md) guide. -::: - -:::info -The update from `8.2.x` to `8.3.x` performs a migration for nearly all entities stored in Operate, Tasklist, and Optimize to support [multi-tenancy](/self-managed/concepts/multi-tenancy.md). Therefore, migration may take longer. -::: - -### Deprecated in 8.3 - -[Web Modeler's beta API](/apis-tools/web-modeler-api/index.md) was deprecated in 8.3 and will be removed in 8.5. -Use `v1` instead, see [migration hints](/apis-tools/web-modeler-api/index.md#migrating-from-beta-to-v1). - -### Versioning changes in Elasticsearch - -As of the 8.3 release, Camunda is compatible with Elasticsearch 8.8+ and no longer supports Elasticsearch 7.x. See [supported environments](/reference/supported-environments.md). - -### Versioning changes in Helm chart - -[Helm charts versioning](/self-managed/setup/overview.md) changed in July 2023. - -Starting from July 2023 (v8.2.8), the Camunda 8 **Helm chart** version follows the same unified schema -and schedule as [Camunda 8 applications](https://github.com/camunda/camunda-platform). - -Before this change, the Camunda 8 **Helm chart** version only followed the minor version. - -## Camunda 8.2 - -Release date: 11th of April 2023 - -End of maintenance: 8th of October 2024 - -[Release notes](https://github.com/camunda/camunda-platform/releases/tag/8.2.0) -[Release blog](https://camunda.com/blog/2023/04/camunda-platform-8-2-key-to-scaling-automation/) - -### Update from Web Modeler 8.2 to a later minor version - -Web Modeler versions 8.2.7 to 8.2.12 are affected by [camunda/issues#677](https://github.com/camunda/issues/issues/677). - -If you are using one of these versions, you should first update to Web Modeler 8.2.13 (or a subsequent patch version) before upgrading to a later minor version (8.3 or higher). - -If your current version of Web Modeler is 8.2.6 or earlier, you may directly upgrade to a later minor version. - -### Do not update to Camunda 8.2.22 - -:::caution -Zeebe release `8.2.22` suffers from [camunda/zeebe#16406](https://github.com/camunda/camunda/issues/16406), which results in a Zeebe broker being unable to start if at least one DMN model is deployed. We urge users to skip this release and update to `8.2.23` right away. -::: - -### Do not update from Camunda 8.1.X to 8.2.6 - -An issue in the Operate 8.2.6 patch was discovered after it was published on June 8th. - -You should not update directly from 8.1.x to 8.2.6 (it will require manual intervention as indices break), you either first update to 8.2.5 then 8.2.6 or straight from 8.1.x to 8.2.7. - -To prevent this entirely we removed the Operate 8.2.6 artifacts from this release. - -As Camunda 8.2.7 was already released on Tuesday Jun 13th, you can just update to 8.2.7 directly, skipping 8.2.6. +Camunda 8.3 was released on 10 October, 2023. -### OpenSearch 1.3.x support +
+
-- Operate version 8.2+ support OpenSearch 1.3.x. However, 8.2.x patches will only be released on the OS 1.3 branch until end of 2023 given that OS 1.3 maintenance period ends by then. We recommend customers to go to 8.4.x which supports OS 2.5+. +**[8.3 Announcements](/reference/announcements/850.md#camunda-83)** -### Optimize and Helm chart compatibility +
+
-For Optimize 3.10.1, a new environment variable introduced redirection URL. However, the change is not compatible with Camunda Helm charts until it is fixed in 3.10.3 (and Helm chart 8.2.9). Therefore, those versions are coupled to certain Camunda Helm chart versions: +- [Deprecated in 8.3](/reference/announcements/850.md#deprecated-in-83) +- [Versioning changes in Elasticsearch](/reference/announcements/850.md#versioning-changes-in-elasticsearch-1) +- [Versioning changes in Helm chart](/reference/announcements/850.md#versioning-changes-in-helm-chart-1) -| Optimize version | Camunda Helm chart version | -| --------------------------------- | -------------------------- | -| Optimize 3.10.1 & Optimize 3.10.2 | 8.2.0 - 8.2.8 | -| Optimize 3.10.3+ | 8.2.9 - 8.2.22 | -| Optimize 8.2.7+ | 8.2.23+ | +
+
diff --git a/docs/reference/announcements/850.md b/docs/reference/announcements/850.md new file mode 100644 index 0000000000..4f8342a214 --- /dev/null +++ b/docs/reference/announcements/850.md @@ -0,0 +1,188 @@ +--- +id: announcements-850 +title: "8.5 - 8.3 Announcements" +description: "Important announcements including deprecation & removal notices for the Camunda 8.5, 8.4, 8.3, and 8.2 releases." +--- + +Important changes and updates for the Camunda 8.5, 8.4, and 8.3 releases are summarized below. + +## Camunda 8.5 + +| Release date | End of maintenance | Release notes | +| :----------- | :----------------- | :--------------------------------------------------- | +| 9 April 2024 | 14 October 2025 | [8.5 release notes](/reference/release-notes/850.md) | + +### Updated SaaS URLs + +We will simplify the URL for Camunda 8 SaaS from cloud.camunda.io ([console.cloud.camunda.io](https://console.cloud.camunda.io/)) to camunda.io ([console.camunda.io](http://console.camunda.io/)). + +On or around July 9th, users will be directed to the new URLs. Both URLs will continue to be active for at least 18 months so navigation from supported versions of components like Operate is still possible. + +Internal allowlisting or active rules for [cloud.camunda.io](http://cloud.camunda.io/) must be transitioned to the new [camunda.io](http://camunda.io/) URL. This change primarily affects Console and Modeler. During sign up, users will be briefly redirected through [accounts.cloud.camunda.io](http://accounts.camunda.io/), which will also be updated. + +### Syntax changes in Helm chart + +A Camunda Helm chart upgrade is not possible from v9.x.x to v10.0.0 or v10.0.1. Instead, upgrade directly to v10.0.2+. + +The Camunda Helm chart v10.0.0 has major changes in the values file structure. Some keys in the values file have been changed. For compatibility, the keys are deprecated in the Camunda release cycle 8.5 and will be removed in the Camunda 8.6 release (October 2024). + +Follow the [upgrade instructions](/self-managed/setup/upgrade.md#helm-chart-1002+) to upgrade from Camunda Helm chart v9.x.x to Camunda Helm chart v10.x.x. + +### Support for Amazon OpenSearch + +With the 8.5 release, Optimize is now also compatible with [Amazon OpenSearch](https://aws.amazon.com/de/opensearch-service/) 2.5+. Note that using Amazon OpenSearch requires [setting up a new Camunda installation](/self-managed/setup/overview.md). A migration from previous versions or Elasticsearch environments is not supported. + +### Known limitations + +This release contains the following limitations: + +- In **Optimize `8.5.0`** + - **Limitation** + - **Description:** OpenSearch support in Optimize is limited to data import and the raw data report. + - **Reference:** n/a + - **Mitigation:** Optimize can be installed and used in production with limited reporting functionality. Optimize imports all process data generated by Zeebe. All reporting functionality as described in the docs will be delivered with upcoming patches. +- In **Console `8.5.x`** + - **Limitation** + - **Description:** Custom OIDC provider support for Console is not supported + - **Reference:** https://github.com/camunda/issues/issues/784 + +### Changes in supported environments + +- Raised minimum Go version to 1.21 for the Zeebe Go client + +### Camunda SaaS: New generation naming scheme + +With the April release, the generation naming scheme in Camunda 8 changed and no longer includes the patch version. + +The new naming scheme used for all Camunda SaaS generations created after April 2024 is `Camunda .+gen`, where `N` is incremented with every atomic change to the component version set. Existing generations will not be renamed. + +For patch releases to existing generations, `N` is set to the latest patch level plus 1. For example, when `Camunda 8.4.5` is the current generation name, the following patch will be released as `Camunda 8.4+gen6`. + +This was done to decouple the generation name from the particular patch level of the components it contains, as some component versions like Connectors are decoupled from other components. + +You will learn about the particular component patch version changes in the update dialogue to the latest generation available. The following screenshot shows a sample update from `Camunda 8.5+gen1` to `Camunda 8.5+gen2`, where only the Connectors patch version changed. + +![New Generating naming sample showing an update dialogue from 8.5+gen1 to 8.5+gen2](../img/generation-naming-scheme-sample.png) + +Note that the actual values shown in this screenshot don't correspond to any actual generations and only serve as an example. + +### Removal of Web Modeler's beta API + +The Web Modeler beta API has been removed. The API was deprecated in 8.3 and is no longer available in 8.5. Use the [Web Modeler v1 API](/apis-tools/web-modeler-api/index.md) instead. +For a migration guide, see the [Web Modeler API documentation](/apis-tools/web-modeler-api/index.md#migrating-from-beta-to-v1). + +### Zeebe 8.5.0 breaks serialization of timestamp values in management API (Self-Managed only) + +Zeebe 8.5.0 was released with [a new bug](https://github.com/camunda/camunda/issues/17347) that breaks serialization of timestamp values in management APIs, such as [backup](/self-managed/operational-guides/backup-restore/backup-and-restore.md) and [cluster scaling](/self-managed/zeebe-deployment/operations/cluster-scaling.md). +Timestamps which were previously serialized as `ISO8061` strings are now serialized as integer values. + +Until a fix is delivered in 8.5.1, workarounds include not deserializing timestamp values from affected APIs, or deserializing them as integers. + +## Camunda 8.4 + +| Release date | End of maintenance | +| :------------- | :----------------- | +| 9 January 2024 | 9 July 2025 | + +:::caution +The [form linking](/components/modeler/web-modeler/advanced-modeling/form-linking.md#using-the-link-button) feature is impacted by an [issue](https://github.com/camunda/camunda/issues/16311) where the wrong forms can get linked with new user task instances, effectively corrupting the user task instance. If you make use of this feature and run either `8.4.0`, `8.4.1` or `8.4.2`, we urge you to update to the newest `8.4.3` patch that includes the required fix. + +Follow the instructions in the [form linking](/components/modeler/web-modeler/advanced-modeling/form-linking.md#known-issues-with-linked-forms) documentation to resolve this issue. +::: + +### Versioning changes in Helm chart + +As of the 8.4 release, the Camunda 8 **Helm chart** version is decoupled from the version of the application. The Helm chart release still follows the applications release cycle, but it has an independent version. (e.g., in the application release cycle 8.4, the chart version is 9.0.0). + +For more details about the applications version included in the Helm chart, review the [full version matrix](https://helm.camunda.io/camunda-platform/version-matrix/). + +### Dockerfile numeric ID + +The Dockerfile now uses a numeric user ID instead of a non-numeric user. +This will allow the Helm users to use `runAsNonRoot=true` without the need to explicitly set the ID in the Helm `values.yaml` file. + +### Deprecated in 8.4 + +The [Zeebe configuration properties for Camunda Identity](/self-managed/zeebe-deployment/configuration/gateway.md#zeebegatewayclustersecurityauthenticationidentity) +were deprecated in `8.4`. Please use the dedicated Camunda Identity properties or the [corresponding environment variables](/self-managed/identity/deployment/configuration-variables.md#core-configuration). + +### Versioning changes in Elasticsearch + +As of the 8.4 release, Camunda is compatible with Elasticsearch 8.9+ and no longer supports older Elasticsearch versions. See [supported environments](/reference/supported-environments.md). + +### Support for Amazon OpenSearch + +As of the 8.4 release, Zeebe, Operate, and Tasklist are now compatible with [Amazon OpenSearch](https://aws.amazon.com/de/opensearch-service/) 2.5.x. Note that using Amazon OpenSearch requires [setting up a new Camunda installation](/self-managed/setup/overview.md). A migration from previous versions or Elasticsearch environments is currently not supported. + +:::info +The Helm charts are not yet prepared with the OpenSearch configurations as templates/pre-filled. The Helm charts can still be used to install for OpenSearch, but some adjustments are needed beforehand. Refer to the [Helm deployment documentation](/self-managed/setup/install.md) for further details. +::: + +### Known limitations + +This release contains the following limitations: + +- In **Operate `8.4.0`** + - **Bug** + - **Description:** Instance migration always points to the latest process version + - **Reference:** https://github.com/camunda/issues/issues/567 + - **Mitigation:** Bug is planned to be fixed with upcoming `8.4.1` release + - **Bug** + - **Description:** Backwards migration over multiple versions does not work + - **Reference:** https://github.com/camunda/issues/issues/568 + - **Mitigation:** Bug is planned to be fixed with upcoming `8.4.1` release +- In **Camunda HELM `9.0.x`** + - **Limitation** + - **Description:** The existing Helm charts use the Elasticsearch configurations by default and are not yet prepared with the OpenSearch configurations as templates/pre-filled. The Helm charts can still be used to install for OpenSearch, but some adjustments are needed beforehand. + - **Reference:** n/a + - **Mitigation:** + 1. Refer to our [docs for the installation](/self-managed/setup/install.md#components-installed-by-the-helm-charts), the docs include guidance about necessary adjustments of the Helm chart configuration. + 2. The OpenSearch configuration in Helm charts will be provided in one of our future Helm releases. +- In **Connectors `8.4.x`** + - **Missing feature** + - **Description:** Custom OIDC provider support for Connectors is missing + - **Reference:** https://github.com/camunda/issues/issues/569 + - **Mitigation:** + 1. Feature is planned to be delivered with an upcoming patch release. Please see [issue](https://github.com/camunda/issues/issues/569) for latest progress. + 2. [Disable Connectors component](/self-managed/setup/guides/connect-to-an-oidc-provider.md#configuration) when configuring a custom OIDC provider. + +## Camunda 8.3 + +| Release date | End of maintenance | +| :-------------- | :----------------- | +| 10 October 2023 | 9 April 2025 | + +:::caution +For existing clusters we recommend updating to `8.3.1` directly and not `8.3.0` due to issues in data migration of Operate, Tasklist, and Optimize that could prolong the migration or even blocking it from finishing. +::: + +:::caution Breaking change + +### Zeebe Docker image now runs with unprivileged user by default + +The default user in the Zeebe Docker image changed from root to an unprivileged user with the UID 1000. This was done to provide stronger compliance with the [OWASP recommendations on Docker Security](https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html#rule-2-set-a-user). + +Please refer to the [Update 8.2 to 8.3](/self-managed/operational-guides/update-guide/820-to-830.md) guide. +::: + +:::info +The update from `8.2.x` to `8.3.x` performs a migration for nearly all entities stored in Operate, Tasklist, and Optimize to support [multi-tenancy](/self-managed/concepts/multi-tenancy.md). Therefore, migration may take longer. +::: + +### Deprecated in 8.3 + +[Web Modeler's beta API](/apis-tools/web-modeler-api/index.md) was deprecated in 8.3 and will be removed in 8.5. +Use `v1` instead, see [migration hints](/apis-tools/web-modeler-api/index.md#migrating-from-beta-to-v1). + +### Versioning changes in Elasticsearch + +As of the 8.3 release, Camunda is compatible with Elasticsearch 8.8+ and no longer supports Elasticsearch 7.x. See [supported environments](/reference/supported-environments.md). + +### Versioning changes in Helm chart + +[Helm charts versioning](/self-managed/setup/overview.md) changed in July 2023. + +Starting from July 2023 (v8.2.8), the Camunda 8 **Helm chart** version follows the same unified schema +and schedule as [Camunda 8 applications](https://github.com/camunda/camunda-platform). + +Before this change, the Camunda 8 **Helm chart** version only followed the minor version. diff --git a/docs/reference/announcements/860.md b/docs/reference/announcements/860.md new file mode 100644 index 0000000000..91b5380bde --- /dev/null +++ b/docs/reference/announcements/860.md @@ -0,0 +1,182 @@ +--- +id: announcements-860 +title: "8.6 Announcements" +description: "Important changes and updates for the Camunda 8.6 release including deprecation & removal notices." +--- + +Important changes and updates for the Camunda 8.6 release are summarized below. + +| Release date | End of maintenance | Release notes | +| :------------- | :----------------- | :--------------------------------------------------- | +| 8 October 2024 | 14 April 2026 | [8.6 release notes](/reference/release-notes/860.md) | + +## License key changes + +With the 8.6 release, Camunda 8 Self-Managed requires a license key for production usage. For additional details, review the [blog post on licensing updates for Camunda 8 Self-Managed](https://camunda.com/blog/2024/04/licensing-update-camunda-8-self-managed/). + +Review the following documentation for your components for more information on how to provide the license key to each component as an environment variable: + +- [Console](/self-managed/console-deployment/configuration.md#environment-variables) +- [Zeebe](/self-managed/zeebe-deployment/configuration/configuration.md#licensing) +- [Operate](/self-managed/operate-deployment/operate-configuration.md#licensing) +- [Tasklist](/self-managed/tasklist-deployment/tasklist-configuration.md#licensing) +- [Optimize]($optimize$/self-managed/optimize-deployment/configuration/system-configuration-platform-8#licensing) +- [Identity](/self-managed/identity/deployment/configuration-variables.md#license-configuration) +- [Modeler](/self-managed/modeler/web-modeler/configuration/configuration.md#licensing) + +To configure with Helm, visit the [Self Managed installation documentation](/self-managed/setup/install.md). + +:::note +Camunda 8 components without a valid license may display **Non-Production License** in the navigation bar and issue warnings in the logs. These warnings have no impact on startup or functionality, with the exception that Web Modeler has a limitation of five users. To obtain a license, visit the [Camunda Enterprise page](https://camunda.com/platform/camunda-platform-enterprise-contact/). +::: + +## Zeebe Java client + +Starting with 8.7, the Zeebe Java client will become the new Camunda Java client. This transition brings a new Java client structure designed to enhance the user experience and introduce new features while maintaining compatibility with existing codebases. + +The primary goal of those changes is to enable users to interact with Camunda clusters with one consolidated client rather than multiple. The `CamundaClient` will replace the `ZeebeClient`, offering the same functionality and adding new capabilities. If you need to continue using the old `ZeebeClient`, you can use the version 8.6 artifact without any issues with newer cluster versions as the client is forward-compatible. + +:::note +The Zeebe Java client will not be developed further and will only receive bug fixes for as long as version 8.6 is officially supported. +::: + +### Key changes + +- **New package structure**: + - Package `io.camunda.client`: This package contains the new `CamundaClient` and all the features slated for release in version 8.7. +- **Properties and environment variables refactoring**: + - All old Java client property names will be refactored to more general ones. For instance, `zeebe.client.tenantId` will become `camunda.client.tenantId`. + - Similarly, environment variables will be renamed following the same concept: `ZEEBE_REST_ADDRESS` will become `CAMUNDA_REST_ADDRESS`. +- **Artifact ID change**: + - The `artifactId` will change from `zeebe-client-java` to `camunda-client-java`. + +## Deprecation: Zeebe Go client & CLI client (zbctl) + +The Zeebe Go Client and CLI client (zbctl) will be [officially deprecated](https://camunda.com/blog/2024/09/deprecating-zbctl-and-go-clients/) with the 8.6 release as part of our efforts to streamline the Camunda 8 API experience. This client and CLI utility will not be released starting with Camunda 8.6, will no longer receive new features, and will be transitioned to a community-maintained status. + +The documentation of the Zeebe Go Client and CLI client (zbctl) moved to the [community clients section](/apis-tools/community-clients/index.md). + +## Camunda 8 SaaS - Required cluster update + +:::caution +By **August 30th, 2024** all automation clusters in Camunda 8 SaaS must be [updated](/components/console/manage-clusters/manage-cluster.md#update-a-cluster) to the following versions at a **minimum**: + +- **8.2+gen27** +- **8.3+gen11** +- **8.4+gen7** +- **8.5+gen2** + +::: + +auth0 announced an End-Of-Life for one of the functionalities that is being utilized by previous automation clusters. The new versions are not using this functionality anymore. This update ensures your cluster will work seamlessly after auth0 deactivates the feature in production. + +You minimally need to take the following [update](/components/console/manage-clusters/manage-cluster.md#update-a-cluster) path: + +- 8.0.x -> 8.2+gen27 +- 8.1.x -> 8.2+gen27 +- 8.2.x -> 8.2+gen27 +- 8.3.x -> 8.3+gen11 +- 8.4.x -> 8.4+gen7 +- 8.5.x -> 8.5+gen2 + +If you do not update the cluster by August 30th 2024, we will update the cluster for you. **Without an update, you would lose access to your cluster.** + +Camunda 8 Self-Managed clusters are not affected by this. + +## Support for Amazon OpenSearch for Optimize + +This release extends the OpenSearch features supported by Optimize. Full support is committed for the next release in January 2025. + +## Supported environment changes (OpenJDK, ElasticSearch, Amazon OpenSearch) + +Version changes are made to supported environments: + +- OpenJDK minimum version raised to 21+ in Operate +- ElasticSearch minimum version raised to 8.13+ +- Amazon OpenSearch minimum version raised to 2.9+ + +To learn more about supported environments, see [supported environments](/reference/supported-environments.md). + +## Connectors + +### Deprecation: None start event element templates for Kafka, RabbitMQ, Amazon SQS, and Amazon SNS inbound Connectors + +The [none start event](/components/modeler/bpmn/none-events/none-events.md#none-start-events) element templates for the out-of-the-box Kafka, RabbitMQ, Amazon SQS, and Amazon SNS inbound Connectors have been deprecated in Camunda Modeler. + +Users can no longer select these templates when creating a new none start event element in Camunda Modeler. Existing none start event elements with these templates will continue to work as expected, but users are encouraged to migrate to the [message start event](/components/modeler/bpmn/message-events/message-events.md#message-start-events) element templates for these Connectors. + +Message start event element templates are better suited for the message-based communication these Connectors provide, and offer more flexibility and features compared to the none start event element templates, such as the ability to define a message ID and a correlation key for idempotency. Read more in the [inbound Connectors documentation](/components/connectors/use-connectors/inbound.md) and the [messaging concepts documentation](/components/concepts/messages.md#message-uniqueness). + +### Breaking changes in the Connector SDK + +The `void correlate(Object variables)` method in the `InboundConnectorContext` interface has been removed, following the deprecation in 8.4.0. Use the `CorrelationResult correlateWithResult(Object variables)` method instead. + +The `CorrelationResult` record has been changed compared to the previous versions: + +- `CorrelationResult.Success` now contains a `ProcessElementContext` that represents the element that was correlated. Compared to the previous version, where the correlated element was returned directly, this change allows accessing element properties after correlation for user-controlled post-correlation actions. +- `CorrelationResult.Failure` now provides the `CorrelationFailureHandlingStrategy` that defines how the failure should be handled. + +An example of how to use the new `CorrelationResult` can be found in the [Connector SDK documentation](/components/connectors/custom-built-connectors/connector-sdk.md#inbound-connector-runtime-logic). + +## Flow control enabled by default in SaaS + +Flow control is now enabled by default in Camunda 8.6 SaaS. This change ensures the cluster is protected from excessive load and can maintain a stable state. + +These new configuration defaults are tailored to the cluster size and optimized for a stable performance. However, the cluster might reject requests if the load is too high with this change. The error message for this is `Failed to write client request to partition X, because the write limit is exhausted`. If the error persists, this may be a sign of underlining issues, or a need to adjust the cluster size. + +For more information on how to configure flow control for a Self-Managed cluster, visit the [flow control documentation](/self-managed/operational-guides/configure-flow-control/configure-flow-control.md). + +## Camunda 8 Self-Managed + +### Helm chart - Separated Ingress deprecation + +The separated Ingress Helm configuration for Camunda 8 Self-Managed has been deprecated in 8.6, and will be removed from the Helm chart in 8.7. Only the combined Ingress configuration is officially supported. See the [Ingress guide](/self-managed/setup/guides/ingress-setup.md) for more information on configuring a combined Ingress setup. + +### Helm chart - `global.multiregion.installationType` deprecation + +The `global.multiregion.installationType` option is used in failover and failback scenarios. This option in the Helm chart has been deprecated in 8.6, and will be removed from the Helm chart in 8.7. `global.multiregion.installationType` was replaced with a set of API endpoints called while following the ([dual-region operational procedure](/self-managed/operational-guides/multi-region/dual-region-ops.md)) + +#### Helm chart - Elasticsearch nodes number + +The default value of Elasticsearch deployment pods has changed from 2 to 3, and an affinity setting has been added to avoid scheduling Elasticsearch pods on the same Kubernetes worker. + +## Camunda Optimize artifact and Docker tag separation + +Starting with Camunda 8.6, the Camunda Optimize artifact has been split into two distinct versions, and versioning between Camunda 7 and Camunda 8 is no longer interchangeable: + +- **Before Camunda 8.6**: Versions like `8.x` and `3.x` (used for Camunda 7) could sometimes be used interchangeably. +- **From Camunda 8.6 onwards**: `8.6 != 3.14`. Each version corresponds strictly to its platform: + - **Camunda 7**: Uses the `3.x` versioning scheme and the `latest` Docker tag. + - **Camunda 8**: Uses the `8.x` versioning scheme and the `8-latest` Docker tag. + +### Action required: + +- **Camunda 7 Users**: Continue using `3.x` versions and the `latest` Docker tag. +- **Camunda 8 Users**: If you haven't already done so, update your configurations to use `8.x` versions and the `8-latest` Docker tag. + +Make sure to update your Docker configurations accordingly to ensure compatibility. + +## New base path for Operate and Tasklist web applications + +We are introducing a new base path for both the Operate and Tasklist **web applications**. This change applies to both Self-Managed and SaaS environments. + +### For Self-Managed + +- The new base path for Operate is `/operate`, and for Tasklist, it is `/tasklist`. +- For a [Separated Ingress](/self-managed/setup/guides/ingress-setup.md?ingress=separated) configuration: + - for Operate, the full URL will be `{operate-host}/operate`. Any calls to `{operate-host}` will automatically be redirected to `{operate-host}/operate` + - for Tasklist, the full URL will be `{tasklist-host}/tasklist`. Any calls to `{tasklist-host}` will automatically be redirected to `{tasklist-host}/tasklist`. +- For a [Combined Ingress](/self-managed/setup/guides/ingress-setup.md?ingress=combined) configuration: + - for Operate, the full URL will be `{common-host}/{operate-contextPath}/operate`. Any calls to `{common-host}/{operate-contextPath}` will be automatically redirected to `{common-host}/{operate-contextPath}/operate`. + - for Tasklist, the full URL will be `{common-host}/{tasklist-contextPath}/tasklist`. Any calls to `{common-host}/{tasklist-contextPath}` will be automatically redirected to `{common-host}/{tasklist-contextPath}/tasklist`. + +### For SaaS + +- The full URL for Operate is now structured as `https://{region}.operate.camunda.io/{clusterId}/operate`. +- The full URL for Tasklist is now structured as `https://{region}.tasklist.camunda.io/{clusterId}/tasklist`. +- Any calls to `https://{region}.operate.camunda.io/{clusterId}` will be redirected to `https://{region}.operate.camunda.io/{clusterId}/operate`. +- Any calls to `https://{region}.tasklist.camunda.io/{clusterId}` will be redirected to `https://{region}.tasklist.camunda.io/{clusterId}/tasklist`. + +:::note +**API URLs** for both Operate and Tasklist remain **unchanged**. +::: diff --git a/docs/reference/announcements/870.md b/docs/reference/announcements/870.md new file mode 100644 index 0000000000..438117c7bc --- /dev/null +++ b/docs/reference/announcements/870.md @@ -0,0 +1,183 @@ +--- +id: announcements-870 +title: "8.7 Announcements" +description: "Important changes and updates for the Camunda 8.7 release including deprecation & removal notices." +--- + +Important changes and updates for the Camunda 8.7 release are summarized below. + +| Scheduled release date | Scheduled end of maintenance | Release notes | Blog | +| :--------------------- | :--------------------------- | :--------------------------------------------------- | :---------------------------------------------------------------------------------------------- | +| 11 February 2025 | 11 August 2026 | [8.7 release notes](/reference/release-notes/870.md) | [Announcing Camunda 8.7](https://camunda.com/blog/2024/11/camunda-8-7-releasing-february-2025/) | + +- [API updates](#api-updates-saasself-managed) +- [Identity management updates](#identity-management-updates-saasself-managed) +- [Installation and deployment updates](#installation-and-deployment-updates-self-managed) +- [Camunda Java client and Camunda Spring SDK](#camunda-java-client-and-camunda-spring-sdk-self-managed) + +## API updates SaaSSelf-Managed + +The 8.7 release includes API updates to support the move to a [Camunda 8 REST API](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md) unified experience. + +### Camunda 8 REST API updates + +- New Query endpoints (with advanced search filtering) will be added for process entities (processes, decisions, user tasks, and forms). These will replace the component APIs (Tasklist, Operate) going forward. +- New endpoints will allow you to manage and query users and resource permissions in an orchestration cluster. +- All the Camunda 8 REST API endpoints will support resource-based authorizations to enable fine-grained permissions. +- API terminology is aligned so technical assets have an identical, easily-understood, descriptive property name. + +### Deprecated: Operate and Tasklist v1 REST APIs + +The deprecation process for the [Operate](/apis-tools/operate-api/overview.md) and [Tasklist](/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md) REST APIs starts with the 8.7 release. You can begin migrating to the [Camunda 8 REST API](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md) for querying to prepare for this change. + +- Version 8.7, 8.8: These APIs are still available but deprecated, and so not recommended for new implementations. +- Version 8.9: These APIs will be removed. + +### Deprecated: Job-based User Tasks querying + +As `Job-worker` user tasks will be deprecated in Camunda 8.9, Camunda recommends you start using `Camunda User Tasks` (formerly known as `Zeebe User Task`) in your process definitions. + +- Version 8.7, 8.8: `Job-worker` user tasks are available for querying, but Camunda modelers automatically apply the `Camunda user task` and show a warning message for each job worker user task. +- Version 8.9: `Job-worker` user tasks will be deprecated. With Camunda 8.9 and later, customers can use the `Job-worker` implementation of user tasks as standard jobs with headers to enable open architecture and composable solutions. + +### Deprecated: Zeebe gRPC API endpoints + +With the 8.7 release, Camunda announces the deprecation of several [Zeebe gRPC](/apis-tools/zeebe-api/grpc.md) endpoints for removal in 8.9. + +- Key gRPC endpoints necessary for high-throughput and low-latency applications remain available with 8.7. +- The final list of retained gRPC endpoints will be confirmed with the 8.7 release. +- Selected endpoints will remain active, with others scheduled for removal in the 8.9 release. + +### Removed: Tasklist GraphQL API + +With the 8.7 release, the deprecated [Tasklist GraphQL API](/apis-tools/tasklist-api/tasklist-api-overview.md) will be removed from the product. + + + +## Identity management updates SaaSSelf-Managed + +The [Identity service](/self-managed/identity/what-is-identity.md) is enhanced to deliver greater flexibility, control, and security for both Self-Managed and SaaS users. These updates are part of our broader effort to streamline the platform’s architecture. + +### Cluster-level identity management + +Identity settings will be configured at the orchestration cluster level, allowing each cluster to have unique OIDC configurations. This cluster-specific setup empowers organizations to assign different identity providers (IdPs) across clusters, offering improved control over permissions and user group mappings, resulting in a more streamlined and efficient configuration experience. + +For SaaS customers, identity management in Camunda 8.7 remains consistent with Camunda 8.6, allowing the attachment of a single IdP per organization. However, cluster-level identity capabilities are provided for SaaS as well as Self-Managed. This means that user groups, roles, and access permissions can now be managed at the cluster level, giving SaaS customers the same granular access control as in Self-Managed environments. + +### Decoupling from Keycloak Self-Managed + +Built-in Keycloak integration in Self-Managed is removed, allowing customers to use any compatible IdP. + +- Keycloak remains fully supported as an external option. For cluster-level identity management it must be connected as an external OIDC provider moving forward. +- OpenID Connect (OIDC) remains the standard for seamless integration with chosen IdPs. + +### Resource-based permissions + +Resource-level permissions are introduced for process definitions and web applications. + +- Admin users retain full access, but regular users must be granted specific permissions to perform actions/view resources. +- For organizations that build custom front-ends and access Camunda via API, users with API permissions can still access process data through the V2 API. + + + +## Installation and deployment updates Self-Managed + +Camunda 8.7 introduces a streamlined architecture, consolidating core components such as Zeebe, Operate, and Tasklist into a single deployable unit. Enhanced deployment options are also included, such as new Kubernetes Helm guides, deployment reference architectures, and improved support for professional developers with Camunda 8 Run. + +You can download the alpha release of the unified package from the Camunda GitHub repository, either as an executable Java application (Camunda Orchestration Core) or a Docker image. + +### Helm charts + +If you are using the recommended Camunda 8 deployment option (Helm charts), the upgrade path from version 8.6 to 8.7 will be straightforward by chaninging the values file to the new syntax. Updated Helm charts will be provided to support the upgrade to the new streamlined architecture. + +New migration guides will also be provided to support you when migrating from a previous Camunda version. + +:::caution +Additional upgrade considerations are necessary for deployments that use custom scripts, such as Docker containers, manual installations, or custom-developed Kubernetes deployments. For these deployments, customers can either continue to deploy with their original 8.6 topology and upgrade each component independently, or adopt our Helm Chart approach for the upgrade, which allows for unifying the deployment into a single JAR or container executable. +::: + +#### Separated Ingress removal + +With Camunda 8.7, Helm chart supports only the Combined Ingress setup where all Camunda components run on the same Ingress object and same hostname. + +The following Helm chart values have been removed: + +```yaml +connectors.ingress +console.ingress +identity.ingress +operate.ingress +optimize.ingress +tasklist.ingress +webModeler.ingress +zeebeGateway.ingress +``` + +### Manual installation + +For organizations that do not use cloud-native platforms such as Kubernetes or container services, we will publish a reference architecture that provides guidance on implementing Camunda production clusters on VM-based systems, using Amazon Web Services (AWS) EC2 as an example. + +The architecture will include details on optimal instance sizing, network configurations, and security best practices, to ensure robust performance and reliability. + +### Camunda Exporter + +A new Camunda Exporter brings the importer and archiving logic of web components (Tasklist and Operate) closer to the distributed platform (Zeebe). The index schema is also being harmonized. + +#### Harmonized index schema + +Camunda is harmonizing our index structure and usage. + +- This removes unnecessary duplications over multiple indices due to the previous architecture. +- With this change, several Operate indices can and will be used by Tasklist. +- New indices have been created to integrate Identity into the system. + +![Harmonized indices schema](../img/harmonized-indices-schema.png) + +#### Camunda Exporter + +The exporter can consume Zeebe records (mostly events created by the engine), aggregate data, and store the related data into shared and harmonized indices. + +- Data is archived in the background, coupled to the exporter but without blocking the exporter's progress. +- Indices can be located in either ElasticSearch (ES) or Opensearch (OS). Our web components (Tasklist and Operate) then use the new harmonized indices to show data to the user. + +The following diagram shows a simplified version of this work. + +![Camunda Exporter diagram](../img/target-camunda-exporter.png) + +- For example, Tasklist and Operate Importers are still required for old data to be imported, but the Camunda exporter writes all new data into ES/OS. After old indices are drained, importers can be turned off. +- The archiver, which takes care of the archiving of completed process instances, will be moved into the Zeebe system as well, to reduce the installation complexity and provide a better scaling and replication factor (based on partitions). +- This helps achieve a streamlined architecture, and improves platform performance and stability (especially regarding ES/OS). +- A new separate component covers the migration, which will be part of the single application but can also deployed separately. It will adjust the previous Operate indices to make them more harmonized and usable by Tasklist. + + + +## Camunda Java client and Camunda Spring SDK Self-Managed + +With the Camunda 8.7 release, Camunda Java client and Camunda Spring SDK replace the Zeebe Java client and Zeebe Spring SDK. This allows you to use a single consolidated client to interact with Camunda clusters. + +The `CamundaClient` replaces the `ZeebeClient`, offering the same functionality and adding new capabilities. + +:::note + +- If you need to continue using the old `ZeebeClient`, you can use the version 8.6 artifact without any issues with newer cluster versions as the client is forward-compatible. +- The Zeebe Java client will not be developed further and only receives bug fixes while version 8.6 is officially supported. + +::: + +### Key changes + +| Change | Description | +| :---------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| New package structure | Package `io.camunda.client`: Contains the new `CamundaClient` and all 8.7 features. | +| Refactored properties and environment variables |

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

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

| +| Artifact ID change | The `artifactId` changes from `zeebe-client-java` to `camunda-client-java`. | + +## Southeast Asia region for SaaS customers SaaS + +SaaS customers can now create orchestration clusters in the [Singapore (asia-southeast1) region](/reference/regions.md), ensuring lower latency and improved processing speed for organizations operating in southeast Asian countries. diff --git a/docs/reference/img/doc-icon.png b/docs/reference/img/doc-icon.png new file mode 100644 index 0000000000..26cc92e510 Binary files /dev/null and b/docs/reference/img/doc-icon.png differ diff --git a/docs/reference/img/harmonized-indices-schema.png b/docs/reference/img/harmonized-indices-schema.png new file mode 100644 index 0000000000..7cd8cfc9e0 Binary files /dev/null and b/docs/reference/img/harmonized-indices-schema.png differ diff --git a/docs/reference/img/target-camunda-exporter.png b/docs/reference/img/target-camunda-exporter.png new file mode 100644 index 0000000000..20395a6e90 Binary files /dev/null and b/docs/reference/img/target-camunda-exporter.png differ diff --git a/docs/reference/release-notes/850.md b/docs/reference/release-notes/850.md index 43f3806758..d514f55adc 100644 --- a/docs/reference/release-notes/850.md +++ b/docs/reference/release-notes/850.md @@ -108,7 +108,7 @@ The first iteration of this feature brings back existing features from Camunda 7 -The first step to offer an intuitive and consistent experience via a single, [unified Camunda 8 REST API](https://camunda.com/blog/2024/03/streamlining-camunda-apis-zeebe-rest-api/) is to provide the Zeebe REST API. With this release, developers can use the Zeebe REST API to manage [Zeebe user tasks](/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md), enabling immediate task state changes. The Zeebe REST API includes support for Identity authentication and multi-tenancy, ensuring parity to the Zeebe gRPC API. +The first step to offer an intuitive and consistent experience via a single, [unified Camunda 8 REST API](https://camunda.com/blog/2024/03/streamlining-camunda-apis-zeebe-rest-api/) is to provide the Zeebe REST API. With this release, developers can use the Zeebe REST API to manage [Zeebe user tasks](/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md), enabling immediate task state changes. The Zeebe REST API includes support for Identity authentication and multi-tenancy, ensuring parity to the Zeebe gRPC API. ### Refactoring suggestions Modeler diff --git a/docs/reference/release-notes/870.md b/docs/reference/release-notes/870.md index 409299b6b3..3771a030c7 100644 --- a/docs/reference/release-notes/870.md +++ b/docs/reference/release-notes/870.md @@ -19,27 +19,192 @@ These release notes identify the new features included in 8.7, including [alpha | ---------------------- | ---------------------------- | ------------ | ------------ | ------------ | | 11 February 2025 | 11 August 2026 | - | - | - | +## 8.7.0-alpha2 + +| Release date | Changelog(s) | Blog | +| :--------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------ | +| 10 December 2024 |
  • [ Camunda 8 core ](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha2)
  • [ Connectors ](https://github.com/camunda/connectors/releases/tag/8.7.0-alpha2.1)
| [Release blog](https://camunda.com/blog/2024/12/camunda-alpha-release-december-2024/) | + + + +:::caution + +This [alpha release](/reference/release-policy.md) contains a known issue where Self-Managed customers using the 8.7.0-alpha2 Helm Chart cannot login to Operate. This issue is due to key architecture refactoring and improvements, and will be resolved in the next release. + +::: + + + +### Camunda 8 REST API Query API API + +You can now use a single Query API in the Camunda 8 REST API to find process and decision data instead of using multiple component APIs. + +For example, send a request to the [Query decision definitions](/apis-tools/camunda-api-rest/specifications/find-decision-definitions.api.mdx) endpoint to search for decision definitions. + +New Query API endpoints are added as follows: + +- Decision definitions +- Decision instances +- Decision requirements +- Flownode instances +- Incidents +- Process definitions +- Process instances +- User tasks +- Variables + +To learn more about these endpoints, see the [Camunda 8 REST API](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) documentation. + +### Connectors SaaSSelf-ManagedConnectors + +New Connectors and enhancements are included in this release. + +#### AWS Amazon Comprehend Connector + +The new Amazon Comprehend Connector allows you to integrate your BPMN service with Amazon Comprehend, a service which extracts insights about the content of documents, such as personal identifiable information (PII) and key phrases. + +To learn more about this Connector, see [Amazon Comprehend Connector](/components/connectors/out-of-the-box-connectors/amazon-comprehend.md). + +#### Email Connector attachments + +The Email connector is enhanced as follows: + +- Supports attachments stored in the document store. +- Supports custom headers. +- Messages can now be sent as plaintext, HTML, or in both formats. + +To learn more about this Connector, see [Email Connector](/components/connectors/out-of-the-box-connectors/email.md). + +#### Google Gemini Connector + +The new Google Gemini Connector allows you to access Gemini multimodal models from Google, capable of understanding virtually any input, and combining different types of information in your BPMN process. + +To learn more about this Connector, see [Google Gemini Connector](/components/connectors/out-of-the-box-connectors/google-gemini.md). + +#### Webhook Connector document upload + +Document upload is now supported by the Webhook Connector. Uploads can now be stored in the document store and are available for further processing for start and intermediate events. + +- Use the `documents` object to access created documents in both the response expression and the result expression. +- The `documents` object contains the references for created documents. + +To learn more about this feature, see [HTTP Webhook Connector](/components/connectors/protocol/http-webhook.md). + +### Connector Runtime SaaSSelf-ManagedConnectors + +#### Spring SDK and Camunda REST API Migration + +The Connectors experience is enhanced with the migration from the Spring Zeebe to the Camunda REST API, and the removal of dependency on the Operate client. + +#### Testing Support migration + +Connectors are supported in the Camunda Process Test (CPT) Java library you can use to test your BPMN processes and process application. + +To learn more about this feature, see [Camunda Process Test getting started](/apis-tools/testing/getting-started.md). + + + +### Cluster disk space cleared for paused trial clusters SaaS + +Cluster disk space is cleared when a trial cluster is paused. + +- You will need to redeploy processes to the cluster once it is resumed from a paused state. +- Cluster configuration settings (for example, API Clients, Connector secrets, and IP allowlists) are saved so you can easily resume a cluster. + + + +### Document handling SaaSSelf-Managed + +New features are available as part of the enhanced document handling being delivered with the 8.7 release. + +- A new Document API is available as part of the [Camunda 8 REST API](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md). +- The [Java client](/apis-tools/java-client/index.md) is enhanced to support these new Document API methods. +- A document store concept is introduced and implemented as an in-memory and a GCP-based document store. +- A new Tasklist [Filepicker component](/components/modeler/forms/form-element-library/forms-element-library-filepicker.md) is added for uploading documents to the document store in a form. +- The [Connector SDK](/components/connectors/custom-built-connectors/connector-sdk.md) is enhanced to provide document support in property/variable bindings. +- The [Webhook connector](/components/connectors/protocol/http-webhook.md) supports Documents via the `documents` object. + + + +### Export activity logs in Console SaaSConsole + +You can export activity logs as JSON or CSV files from the Console UI or API. + +- **UI:** On the Organization management **Activity** tab, click **Export activity**. +- **API:** Send a GET request to the Management API `GetJson` or `GetCsv` endpoint. + +To learn more about this feature, see [view organization activity](/components/console/manage-organization/view-organization-activity.md). + + + +### Process instance migration SaaSSelf-ManagedZeebe + +Enhanced process instance migration allows you to solve problems with process definitions and use the latest process improvements. + +You can now migrate the following: + +- Compensation boundary event subscriptions +- Escalation boundary events +- Escalation event subprocesses + +To learn more about migration, see [process instance migration](/components/concepts/process-instance-migration.md). + + + +### Singapore region available for SaaS SaaS + +A new Singapore (asia-southeast1) region is available for SaaS clusters. Use this region to: + +- Improve overall processing speed and reduce latency if you operate in Singapore and Southeast Asian (SEA) countries. +- Keep cluster data within Singapore to support your local data residency and compliance needs. + +To learn more about supported SaaS regions, see [regions](/reference/regions.md). + + + +### Tags and properties in Self-Managed Console Self-ManagedConsole + +Use custom tags and properties in Self-Managed Console to improve your orchestration cluster management. + +- Administrators can now assign tags such as `prod`, `dev`, or `test` to clusters for clear identification across environments. +- Tags are shown in the Console UI, and accessible via the Administration API to streamline usage reporting and cost allocation. +- Custom properties provide contextual information about each cluster. Administrators can add detailed descriptions, team names, and include links to resources such as Grafana dashboards or internal portals, shown in the Console **Cluster Details**. + +This feature allows you to differentiate clusters, ensure configurations align with production standards (for example, check TLS is enabled, correct partition counts), and improve operational efficiency by making key information more visible. + + + +### Unified deployment experience from Web Modeler Self-ManagedModeler + +The deployment experience is further simplified for Enterprise customers running Web Modeler Self-Managed. + +- User tokens are used for deployments instead of machine-to-machine (M2M) tokens generated from a client ID and secret. +- You no longer need to enter a client ID and secret in the deploy modal. Instead, simply choose a cluster (or stage for process applications) and deploy. + ## 8.7.0-alpha1 | Release date | Changelog(s) | Blog | | :--------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------ | | 12 November 2024 |
  • [ Camunda 8 core ](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha1)
  • [ Connectors ](https://github.com/camunda/connectors/releases/tag/8.7.0-alpha1)
| [Release blog](https://camunda.com/blog/2024/11/camunda-alpha-release-november-2024/) | -### Activity log information in Console Console +### Activity log information in Console Console -In the Console activity logs you can now see information about changes made to secrets (add, update, remove), and user removals from Console (users unregistered from the organization). +Console activity logs now contain information about changes made to secrets (add, update, remove), and Console user removals (unregistered organization users). -### Email Connector Connectors +### Email Connector Connectors -The Email Connector allows you to integrate your BPMN service with any email server using POP3, IMAP, or SMTP. This new Connector enables you to automate the retrieval, deletion, search, and organization of emails directly within your processes. +The new Email Connector allows you to: + +- Integrate your BPMN service with any email server using POP3, IMAP, or SMTP. +- Automate the retrieval, deletion, search, and organization of emails directly within your processes. To learn more about this Connector, see [Email Connector](/components/connectors/out-of-the-box-connectors/email.md). -### Generate Connector templates (OpenAPI + Postman) SaaSConnectors +### Generate Connector templates (OpenAPI + Postman) SaaSConnectors @@ -50,7 +215,7 @@ You can now configure and automatically generate a custom Connector template in To learn more about generating Connector templates, see [generate a Connector template](/components/connectors/custom-built-connectors/connector-template-generator.md). -### Monorepo Git sync Modeler +### Monorepo Git sync Modeler @@ -58,11 +223,11 @@ When configuring Git sync in Web Modeler, define the optional `/path` option to - This option allows you to specify the path to the folder containing your process application files. - Sync with your main branch to perform visual diffing, collaboration, and manual testing in Web Modeler. Remember not to make any changes in this branch. -- Vary the `/path` for multiple process applications to integrate Web Modeler with your existing monorepo containing all your code assets. +- Edit the `/path` for multiple process applications to integrate Web Modeler with your existing monorepo and code assets. To learn more about configuring Git sync, see [Git sync](/components/modeler/web-modeler/git-sync.md). -### Resize clusters on SaaS SaaSConsole +### Resize clusters on SaaS SaaSConsole @@ -73,7 +238,7 @@ Enterprise customers can flexibly resize their clusters to adjust capacity and p To learn more about this feature, see [resize a cluster](/components/console/manage-clusters/manage-cluster.md#resize-a-cluster). -### Unified deployment experience for Web Modeler Self-ManagedModeler +### Unified deployment experience for Web Modeler Self-ManagedModeler diff --git a/docs/self-managed/console-deployment/configuration.md b/docs/self-managed/console-deployment/configuration.md index 4911a26d87..8bfa775bf1 100644 --- a/docs/self-managed/console-deployment/configuration.md +++ b/docs/self-managed/console-deployment/configuration.md @@ -5,10 +5,6 @@ sidebar_label: "Configuration" description: "Read details on the configuration variables of Console Self-Managed." --- -:::note -Console Self-Managed is available only to [Enterprise customers](/reference/licenses.md#console). -::: - Console Self-Managed can be configured using environment variables and configuration parameters. :::note diff --git a/docs/self-managed/modeler/web-modeler/configuration/configuration.md b/docs/self-managed/modeler/web-modeler/configuration/configuration.md index 578ed8da43..0fa011b7f3 100644 --- a/docs/self-managed/modeler/web-modeler/configuration/configuration.md +++ b/docs/self-managed/modeler/web-modeler/configuration/configuration.md @@ -20,7 +20,7 @@ import Licensing from '../../../../self-managed/react-components/licensing.md' ### Clusters -Clusters configured using the following options can be selected when deploying from Web Modeler. If no clusters are configured, your cluster information can be provided at the time of the deployment. The Camunda 8 [Helm](/docs/self-managed/setup/install.md) and [Docker Compose](/self-managed/setup/deploy/local/docker-compose.md) distributions provide a local Zeebe cluster configured by default. +Clusters configured using the following options can be selected when deploying from Web Modeler. If no clusters are configured, you will not be able to preform any actions that require a cluster (for example, deploy, start an instance, or Play a process). The Camunda 8 [Helm](/self-managed/setup/install.md) and [Docker Compose](/self-managed/setup/deploy/local/docker-compose.md) distributions provide a local Zeebe cluster configured by default. To add additional clusters, increment the `0` value for each variable (`CAMUNDA_MODELER_CLUSTERS_1_NAME`). diff --git a/docs/self-managed/operational-guides/backup-restore/optimize-backup.md b/docs/self-managed/operational-guides/backup-restore/optimize-backup.md index fd86d993ec..2215873da0 100644 --- a/docs/self-managed/operational-guides/backup-restore/optimize-backup.md +++ b/docs/self-managed/operational-guides/backup-restore/optimize-backup.md @@ -11,20 +11,20 @@ This release introduces breaking changes, including the utilized URL. For example, `curl 'http://localhost:8092/actuator/backups'` rather than the previously used `backup`. ::: -Optimize stores its data over multiple indices in Elasticsearch. To ensure data integrity across indices, a backup of Optimize data consists of two Elasticsearch snapshots, each containing a different set of Optimize indices. Each backup is identified by a positive integer backup ID. For example, a backup with ID `123456` consists of the following Elasticsearch snapshots: +Optimize stores its data over multiple indices in the database. To ensure data integrity across indices, a backup of Optimize data consists of two ElasticSearch/OpenSearch snapshots, each containing a different set of Optimize indices. Each backup is identified by a positive integer backup ID. For example, a backup with ID `123456` consists of the following snapshots: ``` camunda_optimize_123456_3.9.0_part_1_of_2 camunda_optimize_123456_3.9.0_part_2_of_2 ``` -Optimize provides an API to trigger a backup and retrieve information about a given backup's state. During backup creation Optimize can continue running. The backed up data can later be restored using the standard Elasticsearch snapshot restore API. +Optimize provides an API to trigger a backup and retrieve information about a given backup's state. During backup creation Optimize can continue running. The backed up data can later be restored using the standard ElasticSearch/OpenSearch snapshot restore API. ## Prerequisites The following prerequisites must be set up before using the backup API: -1. A snapshot repository of your choice must be registered with Elasticsearch. +1. A snapshot repository of your choice must be registered with ElasticSearch/OpenSearch. 2. The repository name must be specified using the `CAMUNDA_OPTIMIZE_BACKUP_REPOSITORY_NAME` environment variable, or by adding it to your Optimize [`environment-config.yaml`]($optimize$/self-managed/optimize-deployment/configuration/system-configuration/): ```yaml @@ -48,13 +48,13 @@ POST actuator/backups ### Response -| Code | Description | -| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | -| 202 Accepted | Backup process was successfully initiated. To determine whether backup process was completed refer to the GET API. | -| 400 Bad Request | Indicates issues with the request, for example when the `backupId` contains invalid characters. | -| 409 Conflict | Indicates that a backup with the same `backupId` already exists. | -| 500 Server Error | All other errors, e.g. issues communicating with Elasticsearch for snapshot creation. Refer to the returned error message for more details. | -| 502 Bad Gateway | Optimize has encountered issues while trying to connect to Elasticsearch. | +| Code | Description | +| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | +| 202 Accepted | Backup process was successfully initiated. To determine whether backup process was completed refer to the GET API. | +| 400 Bad Request | Indicates issues with the request, for example when the `backupId` contains invalid characters. | +| 409 Conflict | Indicates that a backup with the same `backupId` already exists. | +| 500 Server Error | All other errors, e.g. issues communicating with the database for snapshot creation. Refer to the returned error message for more details. | +| 502 Bad Gateway | Optimize has encountered issues while trying to connect to the database. | ### Example request @@ -96,8 +96,8 @@ GET actuator/backup | 200 OK | Backup state could be determined and is returned in the response body (see example below). | | 400 Bad Request | There is an issue with the request, for example the repository name specified in the Optimize configuration does not exist. Refer to returned error message for details. | | 404 Not Found | If a backup ID was specified, no backup with that ID exists. | -| 500 Server Error | All other errors, e.g. issues communicating with Elasticsearch for snapshot state retrieval. Refer to the returned error message for more details. | -| 502 Bad Gateway | Optimize has encountered issues while trying to connect to Elasticsearch. | +| 500 Server Error | All other errors, e.g. issues communicating with the database for snapshot state retrieval. Refer to the returned error message for more details. | +| 502 Bad Gateway | Optimize has encountered issues while trying to connect to the database. | ### Example request @@ -135,8 +135,8 @@ Possible states of the backup: - `COMPLETE`: The backup can be used for restoring data. - `IN_PROGRESS`: The backup process for this backup ID is still in progress. -- `FAILED`: Something went wrong when creating this backup. To find out the exact problem, use the [Elasticsearch get snapshot status API](https://www.elastic.co/guide/en/elasticsearch/reference/7.17/get-snapshot-status-api.html) for each of the snapshots included in the given backup. -- `INCOMPATIBLE`: The backup is incompatible with the current Elasticsearch version. +- `FAILED`: Something went wrong when creating this backup. To find out the exact problem, use the [Elasticsearch](https://www.elastic.co/guide/en/elasticsearch/reference/current/get-snapshot-status-api.html) / [OpenSearch](https://opensearch.org/docs/latest/api-reference/snapshots/get-snapshot-status/) get snapshot status API for each of the snapshots included in the given backup. +- `INCOMPATIBLE`: The backup is incompatible with the current ElasticSearch/OpenSearch version. - `INCOMPLETE`: The backup is incomplete (this could occur when the backup process was interrupted or individual snapshots were deleted). ## Delete backup API @@ -154,10 +154,10 @@ DELETE actuator/backups/{backupId} | Code | Description | | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| 204 No Content | The delete request for the associated snapshots was submitted to Elasticsearch successfully. | +| 204 No Content | The delete request for the associated snapshots was submitted to the database successfully. | | 400 Bad Request | There is an issue with the request, for example the repository name specified in the Optimize configuration does not exist. Refer to returned error message for details. | | 500 Server Error | An error occurred, for example the snapshot repository does not exist. Refer to the returned error message for details. | -| 502 Bad Gateway | Optimize has encountered issues while trying to connect to Elasticsearch. | +| 502 Bad Gateway | Optimize has encountered issues while trying to connect to ElasticSearch/OpenSearch. | ### Example request @@ -167,22 +167,22 @@ curl --request DELETE 'http://localhost:8092/actuator/backups/123456' ## Restore backup -There is no Optimize API to perform the backup restore. Instead, the standard [Elasticsearch restore snapshot API](https://www.elastic.co/guide/en/elasticsearch/reference/7.17/restore-snapshot-api.html) can be used. Note that the Optimize versions of your backup snapshots must match the currently running version of Optimize. You can identify the version at which the backup was taken by the version tag included in respective snapshot names; for example, a snapshot with the name`camunda_optimize_123456_3.9.0_part_1_of_2` was taken of Optimize version `3.9.0`. +There is no Optimize API to perform the backup restore. Instead, the standard [Elasticsearch](https://www.elastic.co/guide/en/elasticsearch/reference/current/restore-snapshot-api.html) / [OpenSearch](https://opensearch.org/docs/latest/api-reference/snapshots/restore-snapshot) restore snapshot API can be used. Note that the Optimize versions of your backup snapshots must match the currently running version of Optimize. You can identify the version at which the backup was taken by the version tag included in respective snapshot names; for example, a snapshot with the name`camunda_optimize_123456_3.9.0_part_1_of_2` was taken of Optimize version `3.9.0`. :::note Optimize must NOT be running while a backup is being restored. ::: -To restore an existing backup, all the snapshots this backup contains (as listed in the response of the [create backup API request](#example-response)) must be restored using the Elasticsearch API. +To restore an existing backup, all the snapshots this backup contains (as listed in the response of the [create backup API request](#example-response)) must be restored using the restore API. To restore a given backup, the following steps must be performed: 1. Stop Optimize. -2. Ensure no Optimize indices are present in Elasticsearch (or the restore process will fail). -3. Iterate over all Elasticsearch snapshots included in the desired backup and restore them using the Elasticsearch restore snapshot API. +2. Ensure no Optimize indices are present in the database (or the restore process will fail). +3. Iterate over all ElasticSearch/OpenSearch snapshots included in the desired backup and restore them using the restore snapshot API mentioned above. 4. Start Optimize. -Example Elasticsearch request: +Example request: ```shell curl --request POST `http://localhost:9200/_snapshot/repository_name/camunda_optimize_123456_3.9.0_part_1_of_2/_restore?wait_for_completion=true` diff --git a/docs/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md b/docs/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md index 68aa8a6c4d..137adb9efe 100644 --- a/docs/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md +++ b/docs/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md @@ -233,7 +233,8 @@ kubectl --context $CLUSTER_1 apply -f https://raw.githubusercontent.com/camunda/ ``` 3. The script will retrieve the IPs of the load balancer via the AWS CLI and return the required config change. -4. As the script suggests, copy the statement between the placeholders to edit the CoreDNS configmap in cluster 0 and cluster 1, depending on the placeholder. +4. The script prints the `kubectl edit` commands to change the DNS settings of each cluster inline. Copy the statement between the placeholders to edit the CoreDNS configmap in cluster 0 and cluster 1, depending on the placeholder. + An alternative to inline editing is to create two copies of the file `kubernetes/coredns.yml`, one for each cluster. Add the section generated by the script to each file. Apply the changes to each cluster with e.g. `kubectl --context cluster-london -n kube-system apply -f file.yml`. Replace the `context` parameter with your current values.
Example output diff --git a/docs/self-managed/setup/deploy/local/c8run.md b/docs/self-managed/setup/deploy/local/c8run.md index 7684e4269f..881836191e 100644 --- a/docs/self-managed/setup/deploy/local/c8run.md +++ b/docs/self-managed/setup/deploy/local/c8run.md @@ -36,7 +36,7 @@ If no version of Java is found, follow your chosen installation's instructions f ## Install and start Camunda 8 Run -1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha1) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. +1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha2) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. 2. Navigate to the new `c8run` directory. 3. Start Camunda 8 Run by running `./start.sh` (or `.\c8run.exe start` on Windows) in your terminal. diff --git a/docs/self-managed/zeebe-deployment/configuration/priority-election.md b/docs/self-managed/zeebe-deployment/configuration/priority-election.md index 4e466a0640..d7fc45c041 100644 --- a/docs/self-managed/zeebe-deployment/configuration/priority-election.md +++ b/docs/self-managed/zeebe-deployment/configuration/priority-election.md @@ -10,8 +10,8 @@ It aims to achieve a more uniform leader distribution by assigning each node a p ## Configuration -Enable priority election by setting `zeebe.broker.raft.enablePriorityElection = "true"` in your config or -by setting the equivalent environment variable `ZEEBE_BROKER_RAFT_ENABLEPRIORITYELECTION="true"`. +Enable priority election by setting `zeebe.broker.cluster.raft.enablePriorityElection=true` in your config or +by setting the equivalent environment variable `ZEEBE_BROKER_CLUSTER_RAFT_ENABLEPRIORITYELECTION=true`. If you are using the fixed partitioning scheme (experimental), you may need [additional configuration](fixed-partitioning.md#priority-election). @@ -19,7 +19,7 @@ If you are using the fixed partitioning scheme (experimental), you may need [add With priority election enabled, election latency and thus failover time increases. -The result of leader election is not deterministic and priority election can only increase the chance of having a +The result of a leader election is not deterministic, and priority election can only increase the chance of having a uniform leader distribution, not guarantee it. -Factors such as high load can prevent high priority nodes from becoming the leader. +Factors such as high load can prevent high-priority nodes from becoming the leader. diff --git a/optimize/self-managed/optimize-deployment/advanced-features/import-guide.md b/optimize/self-managed/optimize-deployment/advanced-features/import-guide.md index f23cda4b3b..451ba66436 100644 --- a/optimize/self-managed/optimize-deployment/advanced-features/import-guide.md +++ b/optimize/self-managed/optimize-deployment/advanced-features/import-guide.md @@ -14,17 +14,17 @@ In general, the import assumes the following setup: - A Camunda engine from which Optimize imports the data. - The Optimize backend, where the data is transformed into an appropriate format for efficient data analysis. -- [Elasticsearch](https://www.elastic.co/guide/index.html), which is the database Optimize persists all formatted data to. +- [Elasticsearch (ES)](https://www.elastic.co/guide/index.html) or [OpenSearch (OS)](https://opensearch.org/), which serves as the database that Optimize uses to persist all of its formatted data. The following depicts the setup and how the components communicate with each other: ![Optimize Import Structure](img/Optimize-Structure.png) -Optimize queries the engine data using a dedicated Optimize REST-API within the engine, transforms the data, and stores it in its own Elasticsearch database such that it can be quickly and easily queried by Optimize when evaluating reports or performing analyses. The reason for having a dedicated REST endpoint for Optimize is performance: the default REST-API adds a lot of complexity to retrieve the data from the engine database, which can result in low performance for large data sets. +Optimize queries the engine data using a dedicated Optimize REST-API within the engine, transforms the data, and stores it in its own database such that it can be quickly and easily queried by Optimize when evaluating reports or performing analyses. The reason for having a dedicated REST endpoint for Optimize is performance: the default REST-API adds a lot of complexity to retrieve the data from the engine database, which can result in low performance for large data sets. Note the following limitations regarding the data in Optimize's database: -- The data is only a near real-time representation of the engine database. This means Elasticsearch may not contain the data of the most recent time frame, e.g. the last two minutes, but all the previous data should be synchronized. +- The data is only a near real-time representation of the engine database. This means the database may not contain the data of the most recent time frame, e.g. the last two minutes, but all the previous data should be synchronized. - Optimize only imports the data it needs for its analysis. The rest is omitted and won't be available for further investigation. Currently, Optimize imports: - The history of the activity instances - The history of the process instances @@ -47,7 +47,7 @@ This section gives an overview of how fast Optimize imports certain data sets. T It is very likely that these metrics change for different data sets because the speed of the import depends on how the data is distributed. -The import is also affected by how the involved components are set up. For instance, if you deploy the Camunda engine on a different machine than Optimize and Elasticsearch to provide both applications with more computation resources, the process is likely to speed up. If the Camunda engine and Optimize are physically far away from each other, the network latency might slow down the import. +The import is also affected by how the involved components are set up. For instance, if you deploy the Camunda engine on a different machine than Optimize and Elasticsearch/OpenSearch to provide both applications with more computation resources, the process is likely to speed up. If the Camunda engine and Optimize are physically far away from each other, the network latency might slow down the import. ### Setup @@ -135,7 +135,7 @@ During execution, the following steps are performed: 2. Map entities and add an import job 3. [Execute the import](#execute-the-import). 1. Poll a job - 2. Persist the new entities to Elasticsearch + 2. Persist the new entities to the database ### Start an import round @@ -175,33 +175,37 @@ First, the `ImportScheduler` retrieves the newest index, which identifies the la #### Map entities and add an import job -All fetched entities are mapped to a representation that allows Optimize to query the data very quickly. Subsequently, an import job is created and added to the queue to persist the data in Elasticsearch. +All fetched entities are mapped to a representation that allows Optimize to query the data very quickly. Subsequently, an import job is created and added to the queue to persist the data in the database. ### Execute the import Full aggregation of the data is performed by a dedicated `ImportJobExecutor` for each entity type, which waits for `ImportJob` instances to be added to the execution queue. As soon as a job is in the queue, the executor: - Polls the job with the new Optimize entities -- Persists the new entities to Elasticsearch +- Persists the new entities to the database The data from the engine and Optimize do not have a one-to-one relationship, i.e., one entity type in Optimize may consist of data aggregated from different data types of the engine. For example, the historic process instance is first mapped to an Optimize `ProcessInstance`. However, for the heatmap analysis it is also necessary for `ProcessInstance` to contain all activities that were executed in the process instance. -Therefore, the Optimize `ProcessInstance` is an aggregation of the engine's historic process instance and other related data: historic activity instance data, user task data, and variable data are all [nested documents](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html) within Optimize's `ProcessInstance` representation. +Therefore, the Optimize `ProcessInstance` is an aggregation of the engine's historic process instance and other related data: historic activity instance data, user task data, and variable data are all nested documents ([ES](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html) / [OS](https://opensearch.org/docs/latest/field-types/supported-field-types/nested/)) within Optimize's `ProcessInstance` representation. :::note -Optimize uses [nested documents](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html), the above mentioned data is an example of documents that are nested within Optimize's `ProcessInstance` index. +Optimize uses nested documents ([ES](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html) / [OS](https://opensearch.org/docs/latest/field-types/supported-field-types/nested/)), the above mentioned data is an example of documents that are nested within Optimize's `ProcessInstance` index. -Elasticsearch applies restrictions regarding how many objects can be nested within one document. If your data includes too many nested documents, you may experience import failures. To avoid this, you can temporarily increase the nested object limit in Optimize's [index configuration](./../configuration/system-configuration.md#index-settings). Note that this might cause memory errors. +Elasticsearch and OpenSearch apply restrictions regarding how many objects can be nested within one document. If your data includes too many nested documents, you may experience import failures. To avoid this, you can temporarily increase the nested object limit in Optimize's [index configuration](./../configuration/system-configuration.md#index-settings). Note that this might cause memory errors. ::: Import executions per engine entity are actually independent from another. Each follows a [producer-consumer-pattern](https://dzone.com/articles/producer-consumer-pattern), where the type specific `ImportService` is the single producer and a dedicated single `ImportJobExecutor` is the consumer of its import jobs, decoupled by a queue. So, both are executed in different threads. To adjust the processing speed of the executor, the queue size and the number of threads that process the import jobs can be configured: +:::note +Although the parameters below include `ElasticSearch` in their name, they apply to both ElasticSearch and OpenSearch installations. For backward compatibility reasons, the parameters have not been renamed. +::: + ```yaml import: # Number of threads being used to process the import jobs per data type that are writing - # data to elasticsearch. + # data to the database. elasticsearchJobExecutorThreadCount: 1 - # Adjust the queue size of the import jobs per data type that store data to elasticsearch. + # Adjust the queue size of the import jobs per data type that store data to the database. # A too large value might cause memory problems. elasticsearchJobExecutorQueueSize: 5 ``` diff --git a/optimize/self-managed/optimize-deployment/configuration/shared-elasticsearch-cluster.md b/optimize/self-managed/optimize-deployment/configuration/shared-elasticsearch-cluster.md index 7025397992..bb01105678 100644 --- a/optimize/self-managed/optimize-deployment/configuration/shared-elasticsearch-cluster.md +++ b/optimize/self-managed/optimize-deployment/configuration/shared-elasticsearch-cluster.md @@ -18,10 +18,6 @@ The following illustration demonstrates this use case with two Optimize instance Changing the value of `*.settings.index.prefix` after an instance was already running results in new indexes being created with the new prefix value. There is no support in migrating data between indexes based on different prefixes. ::: -:::note -Not all Optimize features are supported when using OpenSearch as a database. For a full list of the features that are currently supported, please refer to the [Camunda 7](https://github.com/camunda/issues/issues/705) and [Camunda 8](https://github.com/camunda/issues/issues/635) OpenSearch features. -::: - \* Elasticsearch index prefix settings path: `es.settings.index.prefix`
\* OpenSearch index prefix settings path: `opensearch.settings.index.prefix` ![Shared Elasticsearch Cluster Setup](img/shared-elasticsearch-cluster.png) diff --git a/optimize/self-managed/optimize-deployment/configuration/system-configuration-platform-7.md b/optimize/self-managed/optimize-deployment/configuration/system-configuration-platform-7.md index e5491a96ae..dd3eddf077 100644 --- a/optimize/self-managed/optimize-deployment/configuration/system-configuration-platform-7.md +++ b/optimize/self-managed/optimize-deployment/configuration/system-configuration-platform-7.md @@ -64,16 +64,18 @@ REST API endpoint locations, timeouts, etc. | import.data.user-task-worker.metadata.maxPageSize | 10000 | The max page size when multiple users or groups are iterated during the metadata refresh. | | import.data.user-task-worker.metadata.maxEntryLimit | 100000 | The entry limit of the cache that holds the metadata, if you need more entries you can increase that limit. When increasing the limit, keep in mind to account for that by increasing the JVM heap memory as well. Please refer to the "Adjust Optimize heap size" documentation. | | import.skipDataAfterNestedDocLimitReached | false | Some data can no longer be imported to a given document if its number of nested documents has reached the configured limit. Enable this setting to skip this data during import if the nested document limit has been reached. | -| import.elasticsearchJobExecutorThreadCount | 1 | Number of threads being used to process the import jobs per data type that are writing data to elasticsearch. | -| import.elasticsearchJobExecutorQueueSize | 5 | Adjust the queue size of the import jobs per data type that store data to elasticsearch. If the value is too large it might cause memory problems. | +| import.elasticsearchJobExecutorThreadCount\* | 1 | Number of threads being used to process the import jobs per data type that are writing data to the database. | +| import.elasticsearchJobExecutorQueueSize\* | 5 | Adjust the queue size of the import jobs per data type that store data to the database. If the value is too large it might cause memory problems. | | import.handler.backoff.interval | 5000 | Interval in milliseconds which is used for the backoff time calculation. | | import.handler.backoff.max | 15 | Once all pages are consumed, the import scheduler component will start scheduling fetching tasks in increasing periods of time, controlled by "backoff" counter. | | import.handler.backoff.isEnabled | true | Tells if the backoff is enabled of not. | | import.indexType | import-index | The name of the import index type. | -| import.importIndexStorageIntervalInSec | 10 | States how often the import index should be stored to Elasticsearch. | +| import.importIndexStorageIntervalInSec | 10 | States how often the import index should be stored to the database. | | import.currentTimeBackoffMilliseconds | 300000 | This is the time interval the import backs off from the current tip of the time during the ongoing import cycle. This ensures that potentially missed concurrent writes in the engine are reread going back by the amount of this time interval. | | import.identitySync.includeUserMetaData | true | Whether to include metaData (firstName, lastName, email) when synchronizing users. If disabled only user IDs will be shown on user search and in collection permissions. | | import.identitySync.collectionRoleCleanupEnabled | false | Whether collection role cleanup should be performed. If enabled, users that no longer exist in the identity provider will be automatically removed from collection permissions. | | import.identitySync.cronTrigger | `0 */2 * * *` | Cron expression for when the identity sync should run, defaults to every second hour. You can either use the default Cron (5 fields) or the Spring Cron (6 fields) expression format here.

For details on the format please refer to:
  • [Cron Expression Description](https://en.wikipedia.org/wiki/Cron)
  • [Spring Cron Expression Documentation](https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/scheduling/support/CronSequenceGenerator.html)
| | import.identitySync.maxPageSize | 10000 | The max page size when multiple users or groups are iterated during the import. | | import.identitySync.maxEntryLimit | 100000 | The entry limit of the user/group search cache. When increasing the limit, keep in mind to account for this by increasing the JVM heap memory as well. Please refer to the "Adjust Optimize heap size" documentation on how to configure the heap size. | + +\* Although this parameter includes `ElasticSearch` in its name, it applies to both ElasticSearch and OpenSearch installations. For backward compatibility reasons, the parameter has not been renamed. diff --git a/optimize/self-managed/optimize-deployment/configuration/system-configuration.md b/optimize/self-managed/optimize-deployment/configuration/system-configuration.md index 22b7c67c0e..97342e0223 100644 --- a/optimize/self-managed/optimize-deployment/configuration/system-configuration.md +++ b/optimize/self-managed/optimize-deployment/configuration/system-configuration.md @@ -186,10 +186,6 @@ Define a secured connection to be able to communicate with a secured Elasticsear These settings are only relevant when operating Optimize with OpenSearch. -:::note -Not all Optimize features are supported when using OpenSearch as a database. For a full list of the features that are currently supported, please refer to the [Camunda 7](https://github.com/camunda/issues/issues/705) and [Camunda 8](https://github.com/camunda/issues/issues/635) OpenSearch features. -::: - #### Connection settings This section details everything related to building the connection to OpenSearch. @@ -236,10 +232,6 @@ Define a secured connection to be able to communicate with a secured OpenSearch | -------------------------------- | ------------- | ------------------------------------------------------------------------ | | opensearch.backup.repositoryName | "" | The name of the snapshot repository to be used to back up Optimize data. | -:::note -The backup functionality is not yet supported for OpenSearch. -::: - ### Email Settings for the email server to send email notifications, e.g. when an alert is triggered. diff --git a/optimize/self-managed/optimize-deployment/install-and-start.md b/optimize/self-managed/optimize-deployment/install-and-start.md index 2c99ebde0e..a514fe0b8b 100644 --- a/optimize/self-managed/optimize-deployment/install-and-start.md +++ b/optimize/self-managed/optimize-deployment/install-and-start.md @@ -89,10 +89,6 @@ After that, [configure the database connection](./configuration/getting-started. #### Getting started with the Optimize Docker image -:::note -Not all Optimize features are supported when using OpenSearch as a database. For a full list of the features that are currently supported, please refer to the [Camunda 7](https://github.com/camunda/issues/issues/705) and [Camunda 8](https://github.com/camunda/issues/issues/635) OpenSearch features. -::: - ##### Full local setup To start the Optimize Docker image and connect to an already locally running Camunda 7 as well as Elasticsearch instance you could run the following command: diff --git a/optimize_sidebars.js b/optimize_sidebars.js index dc6e9448c0..da4c8161e4 100644 --- a/optimize_sidebars.js +++ b/optimize_sidebars.js @@ -964,6 +964,10 @@ module.exports = { "Google Sheets Connector", "components/connectors/out-of-the-box-connectors/google-sheets/" ), + docsLink( + "Google Gemini Connector", + "components/connectors/out-of-the-box-connectors/google-gemini/" + ), ], }, @@ -2043,11 +2047,6 @@ module.exports = { }, ], }, - - docsLink( - "Migrate to Zeebe user tasks", - "apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks/" - ), ], }, @@ -2290,122 +2289,121 @@ module.exports = { }, { - Clients: [ + "Clients & SDKs": [ { - "Java client": [ - docsLink("Quick reference", "apis-tools/java-client/"), - docsLink("Job worker", "apis-tools/java-client/job-worker/"), - docsLink("Logging", "apis-tools/java-client/logging/"), - docsLink( - "Zeebe Process Test", - "apis-tools/java-client/zeebe-process-test/" - ), + SDKs: [ + docsLink("Node.js", "apis-tools/node-js-sdk/"), { - Examples: [ - docsLink("Overview", "apis-tools/java-client-examples/"), - docsLink( - "Deploy a process", - "apis-tools/java-client-examples/process-deploy/" - ), - docsLink( - "Create a process instance", - "apis-tools/java-client-examples/process-instance-create/" - ), - docsLink( - "Create non-blocking process instances", - "apis-tools/java-client-examples/process-instance-create-nonblocking/" - ), - docsLink( - "Create a process instance with results", - "apis-tools/java-client-examples/process-instance-create-with-result/" - ), - docsLink( - "Evaluate a decision", - "apis-tools/java-client-examples/decision-evaluate/" - ), - docsLink( - "Open a job worker", - "apis-tools/java-client-examples/job-worker-open/" - ), + "Spring Zeebe": [ docsLink( - "Handle variables as POJO", - "apis-tools/java-client-examples/data-pojo/" + "Getting started", + "apis-tools/spring-zeebe-sdk/getting-started/" ), docsLink( - "Request cluster topology", - "apis-tools/java-client-examples/cluster-topology-request/" + "Configuration", + "apis-tools/spring-zeebe-sdk/configuration/" ), ], }, ], }, - { - "Community clients": [ - docsLink("Component clients", "apis-tools/community-clients/"), - + Clients: [ { - "Zeebe clients": [ - docsLink("C#", "apis-tools/community-clients/c-sharp/"), - docsLink( - "JavaScript/Node.js", - "apis-tools/community-clients/javascript/" - ), + "Java client": [ + docsLink("Quick reference", "apis-tools/java-client/"), + docsLink("Job worker", "apis-tools/java-client/job-worker/"), + docsLink("Logging", "apis-tools/java-client/logging/"), docsLink( - "Micronaut", - "apis-tools/community-clients/micronaut/" + "Zeebe Process Test", + "apis-tools/java-client/zeebe-process-test/" ), - docsLink("Python", "apis-tools/community-clients/python/"), - docsLink("Ruby", "apis-tools/community-clients/ruby/"), - docsLink("Rust", "apis-tools/community-clients/rust/"), - docsLink("Spring", "apis-tools/community-clients/spring/"), - docsLink("Quarkus", "apis-tools/community-clients/quarkus/"), + { - "CLI client": [ - docsLink("Quick reference", "apis-tools/cli-client/"), + Examples: [ + docsLink("Overview", "apis-tools/java-client-examples/"), + docsLink( + "Deploy a process", + "apis-tools/java-client-examples/process-deploy/" + ), + docsLink( + "Create a process instance", + "apis-tools/java-client-examples/process-instance-create/" + ), + docsLink( + "Create non-blocking process instances", + "apis-tools/java-client-examples/process-instance-create-nonblocking/" + ), + docsLink( + "Create a process instance with results", + "apis-tools/java-client-examples/process-instance-create-with-result/" + ), + docsLink( + "Evaluate a decision", + "apis-tools/java-client-examples/decision-evaluate/" + ), + docsLink( + "Open a job worker", + "apis-tools/java-client-examples/job-worker-open/" + ), docsLink( - "Getting started with the CLI client", - "apis-tools/cli-client/cli-get-started/" + "Handle variables as POJO", + "apis-tools/java-client-examples/data-pojo/" + ), + docsLink( + "Request cluster topology", + "apis-tools/java-client-examples/cluster-topology-request/" ), ], }, + ], + }, + + { + "Community clients": [ + docsLink("Component clients", "apis-tools/community-clients/"), { - "Go client": [ - docsLink("Quick reference", "apis-tools/go-client/"), + "Zeebe clients": [ docsLink( - "Getting started with the Go client", - "apis-tools/go-client/go-get-started/" + "JavaScript/Node.js", + "apis-tools/community-clients/javascript/" ), - docsLink("Job worker", "apis-tools/go-client/job-worker/"), + docsLink("Spring", "apis-tools/community-clients/spring/"), + { + "CLI client": [ + docsLink("Quick reference", "apis-tools/cli-client/"), + docsLink( + "Getting started with the CLI client", + "apis-tools/cli-client/cli-get-started/" + ), + ], + }, + + { + "Go client": [ + docsLink("Quick reference", "apis-tools/go-client/"), + docsLink( + "Getting started with the Go client", + "apis-tools/go-client/go-get-started/" + ), + docsLink( + "Job worker", + "apis-tools/go-client/job-worker/" + ), + ], + }, ], }, + docsLink( + "Build your own client", + "apis-tools/build-your-own-client/" + ), ], }, ], }, - - docsLink("Build your own client", "apis-tools/build-your-own-client/"), - ], - }, - - { - SDKs: [ - docsLink("Node.js", "apis-tools/node-js-sdk/"), - - { - "Spring Zeebe": [ - docsLink( - "Getting started", - "apis-tools/spring-zeebe-sdk/getting-started/" - ), - docsLink( - "Configuration", - "apis-tools/spring-zeebe-sdk/configuration/" - ), - ], - }, ], }, diff --git a/optimize_versioned_docs/version-3.14.0/self-managed/optimize-deployment/advanced-features/import-guide.md b/optimize_versioned_docs/version-3.14.0/self-managed/optimize-deployment/advanced-features/import-guide.md index f23cda4b3b..451ba66436 100644 --- a/optimize_versioned_docs/version-3.14.0/self-managed/optimize-deployment/advanced-features/import-guide.md +++ b/optimize_versioned_docs/version-3.14.0/self-managed/optimize-deployment/advanced-features/import-guide.md @@ -14,17 +14,17 @@ In general, the import assumes the following setup: - A Camunda engine from which Optimize imports the data. - The Optimize backend, where the data is transformed into an appropriate format for efficient data analysis. -- [Elasticsearch](https://www.elastic.co/guide/index.html), which is the database Optimize persists all formatted data to. +- [Elasticsearch (ES)](https://www.elastic.co/guide/index.html) or [OpenSearch (OS)](https://opensearch.org/), which serves as the database that Optimize uses to persist all of its formatted data. The following depicts the setup and how the components communicate with each other: ![Optimize Import Structure](img/Optimize-Structure.png) -Optimize queries the engine data using a dedicated Optimize REST-API within the engine, transforms the data, and stores it in its own Elasticsearch database such that it can be quickly and easily queried by Optimize when evaluating reports or performing analyses. The reason for having a dedicated REST endpoint for Optimize is performance: the default REST-API adds a lot of complexity to retrieve the data from the engine database, which can result in low performance for large data sets. +Optimize queries the engine data using a dedicated Optimize REST-API within the engine, transforms the data, and stores it in its own database such that it can be quickly and easily queried by Optimize when evaluating reports or performing analyses. The reason for having a dedicated REST endpoint for Optimize is performance: the default REST-API adds a lot of complexity to retrieve the data from the engine database, which can result in low performance for large data sets. Note the following limitations regarding the data in Optimize's database: -- The data is only a near real-time representation of the engine database. This means Elasticsearch may not contain the data of the most recent time frame, e.g. the last two minutes, but all the previous data should be synchronized. +- The data is only a near real-time representation of the engine database. This means the database may not contain the data of the most recent time frame, e.g. the last two minutes, but all the previous data should be synchronized. - Optimize only imports the data it needs for its analysis. The rest is omitted and won't be available for further investigation. Currently, Optimize imports: - The history of the activity instances - The history of the process instances @@ -47,7 +47,7 @@ This section gives an overview of how fast Optimize imports certain data sets. T It is very likely that these metrics change for different data sets because the speed of the import depends on how the data is distributed. -The import is also affected by how the involved components are set up. For instance, if you deploy the Camunda engine on a different machine than Optimize and Elasticsearch to provide both applications with more computation resources, the process is likely to speed up. If the Camunda engine and Optimize are physically far away from each other, the network latency might slow down the import. +The import is also affected by how the involved components are set up. For instance, if you deploy the Camunda engine on a different machine than Optimize and Elasticsearch/OpenSearch to provide both applications with more computation resources, the process is likely to speed up. If the Camunda engine and Optimize are physically far away from each other, the network latency might slow down the import. ### Setup @@ -135,7 +135,7 @@ During execution, the following steps are performed: 2. Map entities and add an import job 3. [Execute the import](#execute-the-import). 1. Poll a job - 2. Persist the new entities to Elasticsearch + 2. Persist the new entities to the database ### Start an import round @@ -175,33 +175,37 @@ First, the `ImportScheduler` retrieves the newest index, which identifies the la #### Map entities and add an import job -All fetched entities are mapped to a representation that allows Optimize to query the data very quickly. Subsequently, an import job is created and added to the queue to persist the data in Elasticsearch. +All fetched entities are mapped to a representation that allows Optimize to query the data very quickly. Subsequently, an import job is created and added to the queue to persist the data in the database. ### Execute the import Full aggregation of the data is performed by a dedicated `ImportJobExecutor` for each entity type, which waits for `ImportJob` instances to be added to the execution queue. As soon as a job is in the queue, the executor: - Polls the job with the new Optimize entities -- Persists the new entities to Elasticsearch +- Persists the new entities to the database The data from the engine and Optimize do not have a one-to-one relationship, i.e., one entity type in Optimize may consist of data aggregated from different data types of the engine. For example, the historic process instance is first mapped to an Optimize `ProcessInstance`. However, for the heatmap analysis it is also necessary for `ProcessInstance` to contain all activities that were executed in the process instance. -Therefore, the Optimize `ProcessInstance` is an aggregation of the engine's historic process instance and other related data: historic activity instance data, user task data, and variable data are all [nested documents](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html) within Optimize's `ProcessInstance` representation. +Therefore, the Optimize `ProcessInstance` is an aggregation of the engine's historic process instance and other related data: historic activity instance data, user task data, and variable data are all nested documents ([ES](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html) / [OS](https://opensearch.org/docs/latest/field-types/supported-field-types/nested/)) within Optimize's `ProcessInstance` representation. :::note -Optimize uses [nested documents](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html), the above mentioned data is an example of documents that are nested within Optimize's `ProcessInstance` index. +Optimize uses nested documents ([ES](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html) / [OS](https://opensearch.org/docs/latest/field-types/supported-field-types/nested/)), the above mentioned data is an example of documents that are nested within Optimize's `ProcessInstance` index. -Elasticsearch applies restrictions regarding how many objects can be nested within one document. If your data includes too many nested documents, you may experience import failures. To avoid this, you can temporarily increase the nested object limit in Optimize's [index configuration](./../configuration/system-configuration.md#index-settings). Note that this might cause memory errors. +Elasticsearch and OpenSearch apply restrictions regarding how many objects can be nested within one document. If your data includes too many nested documents, you may experience import failures. To avoid this, you can temporarily increase the nested object limit in Optimize's [index configuration](./../configuration/system-configuration.md#index-settings). Note that this might cause memory errors. ::: Import executions per engine entity are actually independent from another. Each follows a [producer-consumer-pattern](https://dzone.com/articles/producer-consumer-pattern), where the type specific `ImportService` is the single producer and a dedicated single `ImportJobExecutor` is the consumer of its import jobs, decoupled by a queue. So, both are executed in different threads. To adjust the processing speed of the executor, the queue size and the number of threads that process the import jobs can be configured: +:::note +Although the parameters below include `ElasticSearch` in their name, they apply to both ElasticSearch and OpenSearch installations. For backward compatibility reasons, the parameters have not been renamed. +::: + ```yaml import: # Number of threads being used to process the import jobs per data type that are writing - # data to elasticsearch. + # data to the database. elasticsearchJobExecutorThreadCount: 1 - # Adjust the queue size of the import jobs per data type that store data to elasticsearch. + # Adjust the queue size of the import jobs per data type that store data to the database. # A too large value might cause memory problems. elasticsearchJobExecutorQueueSize: 5 ``` diff --git a/optimize_versioned_sidebars/version-3.14.0-sidebars.json b/optimize_versioned_sidebars/version-3.14.0-sidebars.json index 8524cee678..638ba5e028 100644 --- a/optimize_versioned_sidebars/version-3.14.0-sidebars.json +++ b/optimize_versioned_sidebars/version-3.14.0-sidebars.json @@ -2426,11 +2426,6 @@ ] } ] - }, - { - "type": "link", - "label": "Migrate to Zeebe user tasks", - "href": "/docs/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks/" } ] }, diff --git a/package-lock.json b/package-lock.json index 4711e77b50..1a62f5222f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,8 +8,8 @@ "name": "camunda-cloud-documentation", "version": "0.0.0", "dependencies": { - "@auth0/auth0-react": "^2.2.1", - "@bpmn-io/form-js": "^1.7.3", + "@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", @@ -19,7 +19,7 @@ "docusaurus": "^1.14.7", "docusaurus-plugin-openapi-docs": "^2.0.4", "docusaurus-theme-openapi-docs": "^2.0.4", - "mixpanel-browser": "^2.47.0", + "mixpanel-browser": "^2.56.0", "pushfeedback-react": "^0.1.30", "react": "^17.0.2", "react-dom": "^17.0.2", @@ -29,13 +29,13 @@ "devDependencies": { "@playwright/test": "^1.49.0", "@swc/core": "^1.9.3", - "@types/jest": "^29.5.4", + "@types/jest": "^29.5.14", "husky": "^8.0.3", - "jest": "^29.6.4", + "jest": "^29.7.0", "lint-staged": "^14.0.1", "playwright": "^1.49.0", "prettier": "3.3.3", - "replace-in-file": "^8.2.0", + "replace-in-file": "^7.2.0", "swc-loader": "^0.2.3" } }, @@ -201,11 +201,12 @@ } }, "node_modules/@ampproject/remapping": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz", - "integrity": "sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.0" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" @@ -230,11 +231,11 @@ } }, "node_modules/@auth0/auth0-react": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@auth0/auth0-react/-/auth0-react-2.2.1.tgz", - "integrity": "sha512-4L4FZvSqIwzVk5mwWFbWzfJ4Zq11dgS0v4KIGKro5tL9dgOnBGq+Ino/1mzexPV1LJHBkfwXG4+IaPiQNz5CGg==", + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/@auth0/auth0-react/-/auth0-react-2.2.4.tgz", + "integrity": "sha512-l29PQC0WdgkCoOc6WeMAY26gsy/yXJICW0jHfj0nz8rZZphYKrLNqTRWFFCMJY+sagza9tSgB1kG/UvQYgGh9A==", "dependencies": { - "@auth0/auth0-spa-js": "^2.1.2" + "@auth0/auth0-spa-js": "^2.1.3" }, "peerDependencies": { "react": "^16.11.0 || ^17 || ^18", @@ -242,49 +243,51 @@ } }, "node_modules/@auth0/auth0-spa-js": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@auth0/auth0-spa-js/-/auth0-spa-js-2.1.2.tgz", - "integrity": "sha512-xdA65Z/U7++Y7L9Uwh8Q8OVOs6qgFz+fb7GAzHFjpr1icO37B//xdzLXm7ZRgA19RWrsNe1nme3h896igJSvvw==" + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@auth0/auth0-spa-js/-/auth0-spa-js-2.1.3.tgz", + "integrity": "sha512-NMTBNuuG4g3rame1aCnNS5qFYIzsTUV5qTFPRfTyYFS1feS6jsCBR+eTq9YkxCp1yuoM2UIcjunPaoPl77U9xQ==" }, "node_modules/@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", "dependencies": { - "@babel/highlight": "^7.18.6" + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz", - "integrity": "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.2.tgz", + "integrity": "sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.9.tgz", - "integrity": "sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==", - "dependencies": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.9", - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-module-transforms": "^7.18.9", - "@babel/helpers": "^7.18.9", - "@babel/parser": "^7.18.9", - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9", - "convert-source-map": "^1.7.0", + "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==", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.26.0", + "@babel/generator": "^7.26.0", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helpers": "^7.26.0", + "@babel/parser": "^7.26.0", + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.26.0", + "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -294,22 +297,29 @@ "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.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/generator": { - "version": "7.20.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.4.tgz", - "integrity": "sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz", + "integrity": "sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==", "dependencies": { - "@babel/types": "^7.20.2", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" + "@babel/parser": "^7.26.2", + "@babel/types": "^7.26.0", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" }, "engines": { "node": ">=6.9.0" @@ -339,30 +349,41 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", - "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", + "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==", "dependencies": { - "@babel/compat-data": "^7.20.0", - "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.21.3", - "semver": "^6.3.0" + "@babel/compat-data": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.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.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "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", "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz", @@ -476,32 +497,31 @@ } }, "node_modules/@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz", - "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", + "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==", "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2" + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-optimise-call-expression": { @@ -516,9 +536,9 @@ } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", - "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "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==", "engines": { "node": ">=6.9.0" } @@ -589,25 +609,25 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "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==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", - "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", "engines": { "node": ">=6.9.0" } @@ -627,13 +647,12 @@ } }, "node_modules/@babel/helpers": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz", - "integrity": "sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz", + "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", "dependencies": { - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.0" + "@babel/template": "^7.25.9", + "@babel/types": "^7.26.0" }, "engines": { "node": ">=6.9.0" @@ -653,9 +672,12 @@ } }, "node_modules/@babel/parser": { - "version": "7.21.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.3.tgz", - "integrity": "sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ==", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz", + "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==", + "dependencies": { + "@babel/types": "^7.26.0" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -1011,6 +1033,21 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "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, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "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", @@ -2067,32 +2104,29 @@ "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" }, "node_modules/@babel/template": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", - "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", + "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.10", - "@babel/types": "^7.18.10" + "@babel/code-frame": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz", - "integrity": "sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==", - "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.1", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.20.1", - "@babel/types": "^7.20.0", - "debug": "^4.1.0", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz", + "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==", + "dependencies": { + "@babel/code-frame": "^7.25.9", + "@babel/generator": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/template": "^7.25.9", + "@babel/types": "^7.25.9", + "debug": "^4.3.1", "globals": "^11.1.0" }, "engines": { @@ -2100,13 +2134,12 @@ } }, "node_modules/@babel/types": { - "version": "7.21.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.3.tgz", - "integrity": "sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz", + "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==", "dependencies": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -2129,39 +2162,39 @@ } }, "node_modules/@bpmn-io/draggle": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@bpmn-io/draggle/-/draggle-4.1.0.tgz", - "integrity": "sha512-gHRjQGJEpEwVxspNwNhnqHHAt8cE1l1cObFEf5YSuSXVxTLZcNAQOgmEDJ+QMk1UPDKfnQwvbeDdv5ytCnksfw==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@bpmn-io/draggle/-/draggle-4.1.1.tgz", + "integrity": "sha512-2frw1gBl5I3XGrIDg4CBy6bpJiOuslKUOg9T91Fke6bIttFkF0zxlTKh4E4zU8g7gAo4ze0HnKMZDgHxea+Itw==", "dependencies": { "contra": "^1.9.4" } }, "node_modules/@bpmn-io/feel-editor": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@bpmn-io/feel-editor/-/feel-editor-1.2.0.tgz", - "integrity": "sha512-402yrNL+a58d9AiNE48IScTiWDGmB+8Fpiq9eqg/sKCzhdHahl5fZyl+cksfcyJjzJF1byUOhYy3UxL3/tbLmQ==", - "dependencies": { - "@bpmn-io/feel-lint": "^1.2.0", - "@codemirror/autocomplete": "^6.12.0", - "@codemirror/commands": "^6.3.3", - "@codemirror/language": "^6.10.0", - "@codemirror/lint": "^6.4.2", - "@codemirror/state": "^6.4.0", - "@codemirror/view": "^6.23.0", + "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==", + "dependencies": { + "@bpmn-io/feel-lint": "^1.3.0", + "@codemirror/autocomplete": "^6.16.2", + "@codemirror/commands": "^6.6.0", + "@codemirror/language": "^6.10.2", + "@codemirror/lint": "^6.8.0", + "@codemirror/state": "^6.4.1", + "@codemirror/view": "^6.28.1", "@lezer/highlight": "^1.2.0", - "lang-feel": "^2.0.0", - "min-dom": "^4.1.0" + "lang-feel": "^2.1.1", + "min-dom": "^4.2.1" }, "engines": { "node": ">= 16" } }, "node_modules/@bpmn-io/feel-lint": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@bpmn-io/feel-lint/-/feel-lint-1.2.0.tgz", - "integrity": "sha512-nsvAYxiSbWyjpd3gNnJd+60aTWrZvngYnZfe+GpmkM/pQoOgtF17GhD/p4fgaeAd/uUP3q9sO6EWRX+OU/p9dw==", + "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==", "dependencies": { - "@codemirror/language": "^6.8.0", + "@codemirror/language": "^6.10.0", "lezer-feel": "^1.2.3" }, "engines": { @@ -2169,41 +2202,41 @@ } }, "node_modules/@bpmn-io/form-js": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js/-/form-js-1.7.3.tgz", - "integrity": "sha512-CPDUwS3lftH/lHG08o4kBthgO3Qz918jwr6KnQ0O6Vtm6KjNLsjwZrbf3RPmLuAJzLfQMxh9oA8dTTZJM4s1UQ==", + "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==", "dependencies": { - "@bpmn-io/form-js-carbon-styles": "^1.7.3", - "@bpmn-io/form-js-editor": "^1.7.3", - "@bpmn-io/form-js-playground": "^1.7.3", - "@bpmn-io/form-js-viewer": "^1.7.3" + "@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" } }, "node_modules/@bpmn-io/form-js-carbon-styles": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-carbon-styles/-/form-js-carbon-styles-1.7.3.tgz", - "integrity": "sha512-5W3zoa4VxY8eaKr4mLu/yRdugzhan8fTKsJGXfJR+iW0ErGdAo969rIxEbINsAKBqNiWxdipoWsEgvPxKbh/VQ==" + "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==" }, "node_modules/@bpmn-io/form-js-editor": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-editor/-/form-js-editor-1.7.3.tgz", - "integrity": "sha512-6kHZQJslKavw1M8JgZpOXyeIRj3wk+2TjosT81iWqreVnDS434cUpd8HTgXZBlrPugYmGjDd1e4Oa2CVVxixWw==", - "dependencies": { - "@bpmn-io/draggle": "^4.0.0", - "@bpmn-io/form-js-viewer": "^1.7.3", - "@bpmn-io/properties-panel": "^3.18.1", - "array-move": "^3.0.1", - "big.js": "^6.2.1", - "ids": "^1.0.0", - "min-dash": "^4.2.1", + "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==", + "dependencies": { + "@bpmn-io/draggle": "^4.1.1", + "@bpmn-io/form-js-viewer": "^1.12.0", + "@bpmn-io/properties-panel": "^3.25.0", + "array-move": "^4.0.0", + "big.js": "^6.2.2", + "ids": "^1.0.5", + "min-dash": "^4.2.2", "min-dom": "^4.1.0", "preact": "^10.5.14" } }, "node_modules/@bpmn-io/form-js-editor/node_modules/big.js": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz", - "integrity": "sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ==", + "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": "*" }, @@ -2213,51 +2246,52 @@ } }, "node_modules/@bpmn-io/form-js-playground": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-playground/-/form-js-playground-1.7.3.tgz", - "integrity": "sha512-l87drk8rA3/yQa6RhOwRsVIp0kKGSg+asOXLZppNePh1lcaw0iF4taSa2PQeiI2d1GwnA3fjht+NhzzE/r+2/Q==", + "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==", "dependencies": { - "@bpmn-io/form-js-editor": "^1.7.3", - "@bpmn-io/form-js-viewer": "^1.7.3", - "@codemirror/autocomplete": "^6.12.0", - "@codemirror/commands": "^6.1.2", + "@bpmn-io/form-js-editor": "^1.12.0", + "@bpmn-io/form-js-viewer": "^1.12.0", + "@codemirror/autocomplete": "^6.18.3", + "@codemirror/commands": "^6.7.1", "@codemirror/lang-json": "^6.0.1", - "@codemirror/language": "^6.10.0", - "@codemirror/lint": "^6.0.0", - "@codemirror/state": "^6.1.1", - "@codemirror/view": "^6.23.1", - "classnames": "^2.3.1", + "@codemirror/language": "^6.10.3", + "@codemirror/lint": "^6.8.2", + "@codemirror/state": "^6.4.1", + "@codemirror/view": "^6.34.3", + "classnames": "^2.5.1", "codemirror": "^6.0.1", "downloadjs": "^1.4.7", - "file-drops": "^0.4.0", - "mitt": "^3.0.0", + "file-drops": "^0.5.0", + "mitt": "^3.0.1", "preact": "^10.5.14" } }, "node_modules/@bpmn-io/form-js-viewer": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-viewer/-/form-js-viewer-1.7.3.tgz", - "integrity": "sha512-/XEDHzZbxmYXAp10ClPQu8h/4CoYqPdUYkppD/fL+UXFTO9ZJFBMn2TGgJEwXZP3H6/m6fSFqPFuWnVudWkCYg==", - "dependencies": { - "@carbon/grid": "^11.11.0", - "big.js": "^6.2.1", - "classnames": "^2.3.1", - "didi": "^10.0.1", - "dompurify": "^3.0.8", - "feelers": "^1.3.0", - "feelin": "^3.0.0", + "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==", + "dependencies": { + "@carbon/grid": "^11.29.0", + "big.js": "^6.2.2", + "classnames": "^2.5.1", + "didi": "^10.2.2", + "dompurify": "^3.2.0", + "feelers": "^1.4.0", + "feelin": "^3.2.0", "flatpickr": "^4.6.13", - "ids": "^1.0.0", - "lodash": "^4.5.0", - "min-dash": "^4.2.1", - "preact": "^10.5.14", - "showdown": "^2.1.0" + "ids": "^1.0.5", + "lodash": "^4.17.21", + "luxon": "^3.5.0", + "marked": "^15.0.1", + "min-dash": "^4.2.2", + "preact": "^10.5.14" } }, "node_modules/@bpmn-io/form-js-viewer/node_modules/big.js": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz", - "integrity": "sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ==", + "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": "*" }, @@ -2267,14 +2301,14 @@ } }, "node_modules/@bpmn-io/properties-panel": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/@bpmn-io/properties-panel/-/properties-panel-3.18.1.tgz", - "integrity": "sha512-ygBhVH99IFG1VbMlbvInXQUeqHwQH4uaajFaUi3OsjELpM1WcmHQ72fXPd1tC/OtJJhZoQajHiTI8SdL38t9ug==", + "version": "3.25.0", + "resolved": "https://registry.npmjs.org/@bpmn-io/properties-panel/-/properties-panel-3.25.0.tgz", + "integrity": "sha512-SRGgj8uJc1Yyjcht2g36Q+xKR7sTx5VZXvcwDrdmQKlx5Y3nRmvmMjDGzeGDJDb7pNU1DSlaBJic84uISDBMWg==", "dependencies": { - "@bpmn-io/feel-editor": "^1.2.0", - "@codemirror/view": "^6.14.0", + "@bpmn-io/feel-editor": "^1.9.0", + "@codemirror/view": "^6.28.1", "classnames": "^2.3.1", - "feelers": "^1.3.0", + "feelers": "^1.4.0", "focus-trap": "^7.5.2", "min-dash": "^4.1.1", "min-dom": "^4.0.3" @@ -2289,22 +2323,28 @@ "integrity": "sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==" }, "node_modules/@carbon/grid": { - "version": "11.21.0", - "resolved": "https://registry.npmjs.org/@carbon/grid/-/grid-11.21.0.tgz", - "integrity": "sha512-Zzhos2we+HqM0obdQgma+OvLoM9dNGq07YcLxFxrc/vEOn/D01sner6dyMMqS2y8036zIaoqVMGArSzPfoxrLA==", + "version": "11.29.0", + "resolved": "https://registry.npmjs.org/@carbon/grid/-/grid-11.29.0.tgz", + "integrity": "sha512-SAJhTexN6TjbItcUczOqhzgHBGXLhvUhlTdyqj+wzUH0tqEN8g6gLp+1sn9+rL+kV4obSb/7bdSESZtwQr/tQg==", + "hasInstallScript": true, "dependencies": { - "@carbon/layout": "^11.20.0" + "@carbon/layout": "^11.28.0", + "@ibm/telemetry-js": "^1.5.0" } }, "node_modules/@carbon/layout": { - "version": "11.20.0", - "resolved": "https://registry.npmjs.org/@carbon/layout/-/layout-11.20.0.tgz", - "integrity": "sha512-G9eJE3xb/J98Id9VvTA/b4v+2i/c+IiHAhxNPc0PPpPN6C/r6U4gJsG4yPgQnbuIU42cP9L8OvCrQr0mbrCMlA==" + "version": "11.28.0", + "resolved": "https://registry.npmjs.org/@carbon/layout/-/layout-11.28.0.tgz", + "integrity": "sha512-Yl0Dsxs00EgAaCKpZCXgebuf9BwiBK66a1Oiao6D12p3ViciZ4L18mlRgOPBcDlolP2tUtncz48TlfkWC097hQ==", + "hasInstallScript": true, + "dependencies": { + "@ibm/telemetry-js": "^1.5.0" + } }, "node_modules/@codemirror/autocomplete": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.13.0.tgz", - "integrity": "sha512-SuDrho1klTINfbcMPnyro1ZxU9xJtwDMtb62R8TjL/tOl71IoOsvBo1a9x+hDvHhIzkTcJHy2VC+rmpGgYkRSw==", + "version": "6.18.3", + "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.18.3.tgz", + "integrity": "sha512-1dNIOmiM0z4BIBwxmxEfA1yoxh1MF/6KPBbh20a5vphGV0ictKlgQsbJs6D6SkR6iJpGbpwRsa6PFMNlg9T9pQ==", "dependencies": { "@codemirror/language": "^6.0.0", "@codemirror/state": "^6.0.0", @@ -2319,13 +2359,13 @@ } }, "node_modules/@codemirror/commands": { - "version": "6.3.3", - "resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.3.3.tgz", - "integrity": "sha512-dO4hcF0fGT9tu1Pj1D2PvGvxjeGkbC6RGcZw6Qs74TH+Ed1gw98jmUgd2axWvIZEqTeTuFrg1lEB1KV6cK9h1A==", + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.7.1.tgz", + "integrity": "sha512-llTrboQYw5H4THfhN4U3qCnSZ1SOJ60ohhz+SzU0ADGtwlc533DtklQP0vSFaQuCPDn3BPpOd1GbbnUtwNjsrw==", "dependencies": { "@codemirror/language": "^6.0.0", "@codemirror/state": "^6.4.0", - "@codemirror/view": "^6.0.0", + "@codemirror/view": "^6.27.0", "@lezer/common": "^1.1.0" } }, @@ -2339,9 +2379,9 @@ } }, "node_modules/@codemirror/language": { - "version": "6.10.1", - "resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.10.1.tgz", - "integrity": "sha512-5GrXzrhq6k+gL5fjkAwt90nYDmjlzTIJV8THnxNFtNKWotMIlzzN+CpqxqwXOECnUdOndmSeWntVrVcv5axWRQ==", + "version": "6.10.6", + "resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.10.6.tgz", + "integrity": "sha512-KrsbdCnxEztLVbB5PycWXFxas4EOyk/fPAfruSOnDDppevQgid2XZ+KbJ9u+fDikP/e7MW7HPBTvTb8JlZK9vA==", "dependencies": { "@codemirror/state": "^6.0.0", "@codemirror/view": "^6.23.0", @@ -2352,19 +2392,19 @@ } }, "node_modules/@codemirror/lint": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.5.0.tgz", - "integrity": "sha512-+5YyicIaaAZKU8K43IQi8TBy6mF6giGeWAH7N96Z5LC30Wm5JMjqxOYIE9mxwMG1NbhT2mA3l9hA4uuKUM3E5g==", + "version": "6.8.4", + "resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.8.4.tgz", + "integrity": "sha512-u4q7PnZlJUojeRe8FJa/njJcMctISGgPQ4PnWsd9268R4ZTtU+tfFYmwkBvgcrK2+QQ8tYFVALVb5fVJykKc5A==", "dependencies": { "@codemirror/state": "^6.0.0", - "@codemirror/view": "^6.0.0", + "@codemirror/view": "^6.35.0", "crelt": "^1.0.5" } }, "node_modules/@codemirror/search": { - "version": "6.5.6", - "resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.6.tgz", - "integrity": "sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q==", + "version": "6.5.8", + "resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.8.tgz", + "integrity": "sha512-PoWtZvo7c1XFeZWmmyaOp2G0XVbOnm+fJzvghqGAktBW3cufwJUWvSCcNG0ppXiBEM05mZu6RhMtXPv2hpllig==", "dependencies": { "@codemirror/state": "^6.0.0", "@codemirror/view": "^6.0.0", @@ -2377,9 +2417,9 @@ "integrity": "sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==" }, "node_modules/@codemirror/view": { - "version": "6.25.1", - "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.25.1.tgz", - "integrity": "sha512-2LXLxsQnHDdfGzDvjzAwZh2ZviNJm7im6tGpa0IONIDnFd8RZ80D2SNi8PDi6YjKcMoMRK20v6OmKIdsrwsyoQ==", + "version": "6.35.0", + "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.35.0.tgz", + "integrity": "sha512-I0tYy63q5XkaWsJ8QRv5h6ves7kvtrBWjBcnf/bzohFJQc5c14a1AQRdE8QpPF9eMp5Mq2FMm59TCj1gDfE7kw==", "dependencies": { "@codemirror/state": "^6.4.0", "style-mod": "^4.1.0", @@ -3408,6 +3448,14 @@ "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" + } + }, "node_modules/@isaacs/cliui": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", @@ -3563,16 +3611,16 @@ } }, "node_modules/@jest/console": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", - "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -3650,15 +3698,15 @@ } }, "node_modules/@jest/core": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", - "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/reporters": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", @@ -3666,21 +3714,21 @@ "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.6.3", - "jest-config": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-resolve-dependencies": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "jest-watcher": "^29.6.4", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -3728,9 +3776,9 @@ } }, "node_modules/@jest/core/node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "dev": true, "funding": [ { @@ -3782,37 +3830,37 @@ } }, "node_modules/@jest/environment": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", - "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.6.4", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, "dependencies": { - "expect": "^29.6.4", - "jest-snapshot": "^29.6.4" + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", - "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, "dependencies": { "jest-get-type": "^29.6.3" @@ -3822,47 +3870,47 @@ } }, "node_modules/@jest/fake-timers": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", - "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-message-util": "^29.7.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/globals": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", - "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", "@jest/types": "^29.6.3", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", - "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", @@ -3876,9 +3924,9 @@ "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -3955,13 +4003,13 @@ } }, "node_modules/@jest/reporters/node_modules/jest-worker": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", - "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "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, "dependencies": { "@types/node": "*", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -4023,12 +4071,12 @@ } }, "node_modules/@jest/test-result": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", - "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", + "@jest/console": "^29.7.0", "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" @@ -4038,14 +4086,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", - "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -4053,9 +4101,9 @@ } }, "node_modules/@jest/transform": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", - "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -4066,9 +4114,9 @@ "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -4255,13 +4303,13 @@ } }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "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.0.1", + "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" @@ -4276,9 +4324,9 @@ } }, "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "engines": { "node": ">=6.0.0" } @@ -4289,9 +4337,9 @@ "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.19", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", - "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" @@ -4308,14 +4356,14 @@ "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" }, "node_modules/@lezer/common": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.2.1.tgz", - "integrity": "sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==" + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.2.3.tgz", + "integrity": "sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==" }, "node_modules/@lezer/highlight": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@lezer/highlight/-/highlight-1.2.0.tgz", - "integrity": "sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@lezer/highlight/-/highlight-1.2.1.tgz", + "integrity": "sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==", "dependencies": { "@lezer/common": "^1.0.0" } @@ -4331,17 +4379,17 @@ } }, "node_modules/@lezer/lr": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.0.tgz", - "integrity": "sha512-Wst46p51km8gH0ZUmeNrtpRYmdlRHUpN1DQd3GFAyKANi8WVz8c2jHYTf1CVScFaCjQw1iO3ZZdqGDxQPRErTg==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.2.tgz", + "integrity": "sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==", "dependencies": { "@lezer/common": "^1.0.0" } }, "node_modules/@lezer/markdown": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@lezer/markdown/-/markdown-1.2.0.tgz", - "integrity": "sha512-d7MwsfAukZJo1GpPrcPGa3MxaFFOqNp0gbqF+3F7pTeNDOgeJN1muXzx1XXDPt+Ac+/voCzsH7qXqnn+xReG/g==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@lezer/markdown/-/markdown-1.3.2.tgz", + "integrity": "sha512-Wu7B6VnrKTbBEohqa63h5vxXjiC4pO5ZQJ/TDbhJxPQaaIoRD/6UVDhSDtVsCwVZV12vvN9KxuLL3ATMnlG0oQ==", "dependencies": { "@lezer/common": "^1.0.0", "@lezer/highlight": "^1.0.0" @@ -4803,6 +4851,14 @@ } } }, + "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" + } + }, "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", @@ -4841,9 +4897,9 @@ } }, "node_modules/@sinonjs/commons": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", - "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", "dev": true, "dependencies": { "type-detect": "4.0.8" @@ -5047,43 +5103,6 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/core/node_modules/@babel/core": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", - "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", - "dependencies": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.2", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-module-transforms": "^7.20.2", - "@babel/helpers": "^7.20.1", - "@babel/parser": "^7.20.2", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@svgr/core/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@svgr/hast-util-to-babel-ast": { "version": "6.5.1", "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.1.tgz", @@ -5132,43 +5151,6 @@ "@svgr/core": "^6.0.0" } }, - "node_modules/@svgr/plugin-jsx/node_modules/@babel/core": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", - "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", - "dependencies": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.2", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-module-transforms": "^7.20.2", - "@babel/helpers": "^7.20.1", - "@babel/parser": "^7.20.2", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@svgr/plugin-jsx/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@svgr/plugin-svgo": { "version": "6.5.1", "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-6.5.1.tgz", @@ -5211,43 +5193,6 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/webpack/node_modules/@babel/core": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", - "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", - "dependencies": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.2", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-module-transforms": "^7.20.2", - "@babel/helpers": "^7.20.1", - "@babel/parser": "^7.20.2", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@svgr/webpack/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@swc/core": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.9.3.tgz", @@ -5481,9 +5426,9 @@ } }, "node_modules/@types/babel__core": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", - "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, "dependencies": { "@babel/parser": "^7.20.7", @@ -5494,18 +5439,18 @@ } }, "node_modules/@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", "dev": true, "dependencies": { "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, "dependencies": { "@babel/parser": "^7.1.0", @@ -5513,9 +5458,9 @@ } }, "node_modules/@types/babel__traverse": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", - "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", "dev": true, "dependencies": { "@babel/types": "^7.20.7" @@ -5563,6 +5508,11 @@ "@types/node": "*" } }, + "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==" + }, "node_modules/@types/debug": { "version": "4.1.12", "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", @@ -5616,9 +5566,9 @@ } }, "node_modules/@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -5684,9 +5634,9 @@ } }, "node_modules/@types/jest": { - "version": "29.5.4", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.4.tgz", - "integrity": "sha512-PhglGmhWeD46FYOVLt3X7TiWjzwuVGW9wG/4qocPevXMjCmrIc5b6db9WjeGE4QYVpUAWMDv3v0IiBwObY289A==", + "version": "29.5.14", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.14.tgz", + "integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==", "dev": true, "dependencies": { "expect": "^29.0.0", @@ -5863,6 +5813,12 @@ "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", "dev": true }, + "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==", + "optional": true + }, "node_modules/@types/unist": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", @@ -6022,6 +5978,11 @@ "@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==" + }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", @@ -6397,11 +6358,11 @@ "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" }, "node_modules/array-move": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/array-move/-/array-move-3.0.1.tgz", - "integrity": "sha512-H3Of6NIn2nNU1gsVDqDnYKY/LCdWvCMMOWifNGhKcVQgiZ6nOek39aESOvro6zmueP07exSl93YLvkN4fZOkSg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/array-move/-/array-move-4.0.0.tgz", + "integrity": "sha512-+RY54S8OuVvg94THpneQvFRmqWdAHeqtMzgMW6JNurHxe8rsS07cHQdfGkXnTUXiBcyZ0j3SiDIxxj0RPiqCkQ==", "engines": { - "node": ">=10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -6677,12 +6638,12 @@ } }, "node_modules/babel-jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", - "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, "dependencies": { - "@jest/transform": "^29.6.4", + "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", "babel-preset-jest": "^29.6.3", @@ -6949,23 +6910,26 @@ } }, "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", + "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", "dev": true, "dependencies": { "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^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.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-top-level-await": "^7.8.3" + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5" }, "peerDependencies": { "@babel/core": "^7.0.0" @@ -8055,9 +8019,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "funding": [ { "type": "opencollective", @@ -8073,10 +8037,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "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" @@ -8364,9 +8328,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001525", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001525.tgz", - "integrity": "sha512-/3z+wB4icFt3r0USMwxujAqRvaD/B7rvGTsKhbhSQErVrJvkZCLhgNLJxU8MevahQVH6hCU9FsHdNUFbiwmE7Q==", + "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", @@ -8698,9 +8662,9 @@ } }, "node_modules/cjs-module-lexer": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", - "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "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": { @@ -8799,9 +8763,9 @@ } }, "node_modules/classnames": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", - "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" + "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/clean-css": { "version": "5.3.1", @@ -9605,6 +9569,97 @@ "sha.js": "^2.4.8" } }, + "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, + "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" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/create-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/create-jest/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/create-jest/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/create-jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/create-jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/crelt": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz", @@ -10779,9 +10834,9 @@ } }, "node_modules/dedent": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", - "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", + "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", "dev": true, "peerDependencies": { "babel-plugin-macros": "^3.1.0" @@ -11028,9 +11083,9 @@ } }, "node_modules/didi": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/didi/-/didi-10.2.1.tgz", - "integrity": "sha512-NaPoyMxu+78E2O6xE9JQkeTpmVhMcu8xneIKtSfqBuGUBU7LmNUaYtJXJQ2JWRx6iYY69oj4nerXVRWGXAw/IQ==", + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/didi/-/didi-10.2.2.tgz", + "integrity": "sha512-l8NYkYFXV1izHI65EyT8EXOjUZtKmQkHLTT89cSP7HU5J/G7AOj0dXKtLc04EXYlga99PBY18IPjOeZ+c3DI4w==", "engines": { "node": ">= 16" } @@ -12977,9 +13032,12 @@ } }, "node_modules/dompurify": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.0.9.tgz", - "integrity": "sha512-uyb4NDIvQ3hRn6NiC+SIFaP4mJ/MdXlvtunaqK9Bn6dD3RuB/1S/gasEjDHD8eiaqdSael2vBv+hOs7Y+jhYOQ==" + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.2.2.tgz", + "integrity": "sha512-YMM+erhdZ2nkZ4fTNRTSI94mb7VG7uVF5vj5Zde7tImgnhZE3R6YW/IACGIHb2ux+QkEXMhe591N+5jWOmL4Zw==", + "optionalDependencies": { + "@types/trusted-types": "^2.0.7" + } }, "node_modules/domutils": { "version": "2.8.0", @@ -13215,9 +13273,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.506", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.506.tgz", - "integrity": "sha512-xxGct4GPAKSRlrLBtJxJFYy74W11zX6PO9GyHgl/U+2s3Dp0ZEwAklDfNHXOWcvH7zWMpsmgbR0ggEuaYAVvHA==" + "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", @@ -13478,9 +13536,9 @@ "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==" }, "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "engines": { "node": ">=6" } @@ -14013,16 +14071,16 @@ } }, "node_modules/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.6.4", + "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3" + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -14351,9 +14409,9 @@ } }, "node_modules/feelers": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/feelers/-/feelers-1.3.1.tgz", - "integrity": "sha512-vynmIHhjttmT0wfzbI+Nmi84wLbLwUt83NXo5YTQMReIjRwgHhQpxs7koixX/flJIlTG8M4eukc1U1oQAYkhNw==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/feelers/-/feelers-1.4.0.tgz", + "integrity": "sha512-CGa/7ILuqoqTaeYeoKsg/4tzu2es9sEEJTmSjdu0lousZBw4V9gcYhHYFNmbrSrKmbAVfOzj6/DsymGJWFIOeg==", "dependencies": { "@bpmn-io/cm-theme": "^0.1.0-alpha.2", "@bpmn-io/feel-lint": "^1.2.0", @@ -14369,25 +14427,50 @@ "@lezer/markdown": "^1.1.0", "feelin": "^3.0.1", "lezer-feel": "^1.2.4", - "min-dom": "^4.1.0" + "min-dom": "^5.0.0" }, "engines": { "node": "*" } }, + "node_modules/feelers/node_modules/domify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/domify/-/domify-2.0.0.tgz", + "integrity": "sha512-rmvrrmWQPD/X1A/nPBfIVg4r05792QdG9Z4Prk6oQG0F9zBMDkr0GKAdds1wjb2dq1rTz/ywc4ZxpZbgz0tttg==", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/feelers/node_modules/min-dom": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/min-dom/-/min-dom-5.1.1.tgz", + "integrity": "sha512-GaKUlguMAofd3OJsB0OkP17i5kucKqErgVCJxPawO9l5NwIPnr28SAr99zzlzMCWWljISBYrnZVWdE2Q92YGFQ==", + "dependencies": { + "domify": "^2.0.0", + "min-dash": "^4.2.1" + } + }, "node_modules/feelin": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/feelin/-/feelin-3.0.1.tgz", - "integrity": "sha512-aYXH3UYkM2eopg3scgNRNEo/ecwizKH6qTqkEu5nSLMMlMgfhLDhWrLl7ChG5iHspO9o4Q2YSP1o4wW8q0L2Qw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/feelin/-/feelin-3.2.0.tgz", + "integrity": "sha512-GFDbHsTYk7YXO1tyw1dOjb7IODeAZvNIosdGZThUwPx5XcD/XhO0hnPZXsIbAzSsIdrgGlTEEdby9fZ2gixysA==", "dependencies": { - "@lezer/lr": "^1.3.9", - "lezer-feel": "^1.2.5", - "luxon": "^3.1.0" + "@lezer/lr": "^1.4.2", + "lezer-feel": "^1.4.0", + "luxon": "^3.5.0" }, "engines": { "node": "*" } }, + "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", "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", @@ -14401,33 +14484,11 @@ } }, "node_modules/file-drops": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/file-drops/-/file-drops-0.4.0.tgz", - "integrity": "sha512-dPLRxrQ/sWHyU1DMf72doyyFuqeR/T8hJ97coJHXmdeHvqMTdOMJ/PLsHKjQzDHC8TBQO0rDUinDEXz3WGTnQA==", - "dependencies": { - "min-dom": "^3.1.1" - } - }, - "node_modules/file-drops/node_modules/component-event": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/component-event/-/component-event-0.1.4.tgz", - "integrity": "sha512-GMwOG8MnUHP1l8DZx1ztFO0SJTFnIzZnBDkXAj8RM2ntV2A6ALlDxgbMY1Fvxlg6WPQ+5IM/a6vg4PEYbjg/Rw==" - }, - "node_modules/file-drops/node_modules/min-dash": { - "version": "3.8.1", - "resolved": "https://registry.npmjs.org/min-dash/-/min-dash-3.8.1.tgz", - "integrity": "sha512-evumdlmIlg9mbRVPbC4F5FuRhNmcMS5pvuBUbqb1G9v09Ro0ImPEgz5n3khir83lFok1inKqVDjnKEg3GpDxQg==" - }, - "node_modules/file-drops/node_modules/min-dom": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/min-dom/-/min-dom-3.2.1.tgz", - "integrity": "sha512-v6YCmnDzxk4rRJntWTUiwggLupPw/8ZSRqUq0PDaBwVZEO/wYzCH4SKVBV+KkEvf3u0XaWHly5JEosPtqRATZA==", + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/file-drops/-/file-drops-0.5.0.tgz", + "integrity": "sha512-ZaENKwVySae4RhEGjh1gEE1wMnIIPG6XqtOwHNQYSl7RNwUHoRGVVspe+BrW7cUFseHNIit3Oy9Z/HPIEU5XWA==", "dependencies": { - "component-event": "^0.1.4", - "domify": "^1.3.1", - "indexof": "0.0.1", - "matches-selector": "^1.2.0", - "min-dash": "^3.8.1" + "min-dom": "^4.0.3" } }, "node_modules/file-loader": { @@ -14597,9 +14658,9 @@ } }, "node_modules/focus-trap": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.5.4.tgz", - "integrity": "sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.6.2.tgz", + "integrity": "sha512-9FhUxK1hVju2+AiQIDJ5Dd//9R2n2RAfJ0qfhF4IHGHgcoEUTMpbTeG/zbEuwaiYXfuAH6XE0/aCyxDdRM+W5w==", "dependencies": { "tabbable": "^6.2.0" } @@ -16802,9 +16863,9 @@ } }, "node_modules/import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", "dev": true, "dependencies": { "pkg-dir": "^4.2.0", @@ -16841,11 +16902,6 @@ "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", "integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==" }, - "node_modules/indexof": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", - "integrity": "sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==" - }, "node_modules/infima": { "version": "0.2.0-alpha.43", "resolved": "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.43.tgz", @@ -17662,23 +17718,23 @@ "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" }, "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "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, "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-instrument": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", - "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", + "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, "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", + "@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" }, @@ -17760,9 +17816,9 @@ } }, "node_modules/istanbul-reports": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", - "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", "dev": true, "dependencies": { "html-escaper": "^2.0.0", @@ -17802,15 +17858,15 @@ } }, "node_modules/jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", - "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", + "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.6.4" + "jest-cli": "^29.7.0" }, "bin": { "jest": "bin/jest.js" @@ -17828,13 +17884,13 @@ } }, "node_modules/jest-changed-files": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", - "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "dependencies": { "execa": "^5.0.0", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "p-limit": "^3.1.0" }, "engines": { @@ -17857,28 +17913,28 @@ } }, "node_modules/jest-circus": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", - "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", + "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, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@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.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "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.6.3", + "pretty-format": "^29.7.0", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -17973,22 +18029,21 @@ } }, "node_modules/jest-cli": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", - "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", + "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, "dependencies": { - "@jest/core": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@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", - "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "prompts": "^2.0.1", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "yargs": "^17.3.1" }, "bin": { @@ -18077,31 +18132,31 @@ } }, "node_modules/jest-config": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", - "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.6.4", + "@jest/test-sequencer": "^29.7.0", "@jest/types": "^29.6.3", - "babel-jest": "^29.6.4", + "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.6.4", - "jest-environment-node": "^29.6.4", + "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.6.4", - "jest-runner": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^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.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -18153,9 +18208,9 @@ } }, "node_modules/jest-config/node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "dev": true, "funding": [ { @@ -18219,15 +18274,15 @@ } }, "node_modules/jest-diff": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", - "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^29.6.3", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -18304,9 +18359,9 @@ } }, "node_modules/jest-docblock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", - "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -18316,16 +18371,16 @@ } }, "node_modules/jest-each": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", - "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", + "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, "dependencies": { "@jest/types": "^29.6.3", "chalk": "^4.0.0", "jest-get-type": "^29.6.3", - "jest-util": "^29.6.3", - "pretty-format": "^29.6.3" + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -18402,17 +18457,17 @@ } }, "node_modules/jest-environment-node": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", - "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -18428,9 +18483,9 @@ } }, "node_modules/jest-haste-map": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", - "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", + "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, "dependencies": { "@jest/types": "^29.6.3", @@ -18440,8 +18495,8 @@ "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -18462,13 +18517,13 @@ } }, "node_modules/jest-haste-map/node_modules/jest-worker": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", - "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "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, "dependencies": { "@types/node": "*", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -18492,28 +18547,28 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", - "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", + "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, "dependencies": { "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", - "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", + "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, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -18590,9 +18645,9 @@ } }, "node_modules/jest-message-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", - "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", + "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, "dependencies": { "@babel/code-frame": "^7.12.13", @@ -18601,7 +18656,7 @@ "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -18680,14 +18735,14 @@ } }, "node_modules/jest-mock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", - "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.6.3" + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -18720,17 +18775,17 @@ } }, "node_modules/jest-resolve": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", - "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -18740,13 +18795,13 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", - "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", + "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, "dependencies": { "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.6.4" + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -18823,30 +18878,30 @@ } }, "node_modules/jest-runner": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", - "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/environment": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.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.6.3", - "jest-environment-node": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-leak-detector": "^29.6.3", - "jest-message-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-util": "^29.6.3", - "jest-watcher": "^29.6.4", - "jest-worker": "^29.6.4", + "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" }, @@ -18913,13 +18968,13 @@ } }, "node_modules/jest-runner/node_modules/jest-worker": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", - "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "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, "dependencies": { "@types/node": "*", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -18989,17 +19044,17 @@ } }, "node_modules/jest-runtime": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", - "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", - "@jest/globals": "^29.6.4", + "@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.6.4", - "@jest/transform": "^29.6.4", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", @@ -19007,13 +19062,13 @@ "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", + "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.6.4", - "jest-snapshot": "^29.6.4", - "jest-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" }, @@ -19092,9 +19147,9 @@ } }, "node_modules/jest-snapshot": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", - "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", @@ -19102,20 +19157,20 @@ "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.6.4", + "expect": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "natural-compare": "^1.4.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "semver": "^7.5.3" }, "engines": { @@ -19193,9 +19248,9 @@ } }, "node_modules/jest-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", - "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", + "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, "dependencies": { "@jest/types": "^29.6.3", @@ -19295,9 +19350,9 @@ } }, "node_modules/jest-validate": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", - "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", + "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, "dependencies": { "@jest/types": "^29.6.3", @@ -19305,7 +19360,7 @@ "chalk": "^4.0.0", "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -19382,18 +19437,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", - "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", + "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, "dependencies": { - "@jest/test-result": "^29.6.4", + "@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.6.3", + "jest-util": "^29.7.0", "string-length": "^4.0.1" }, "engines": { @@ -19564,14 +19619,14 @@ "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" }, "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "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" }, "engines": { - "node": ">=4" + "node": ">=6" } }, "node_modules/json-buffer": { @@ -19634,9 +19689,9 @@ "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" }, "node_modules/json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "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" }, @@ -19707,16 +19762,16 @@ } }, "node_modules/lang-feel": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lang-feel/-/lang-feel-2.0.0.tgz", - "integrity": "sha512-cMD6EIhb7vyXLs4kXmaphfZZNr5SkbRxmkfsZUjUJzOV5YxyKBF73VI/8fC3GDUifzs0lVo2DruVszk5igrddg==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/lang-feel/-/lang-feel-2.2.0.tgz", + "integrity": "sha512-Ebo5nftYsMfJzB3Ny8Oy4oaDXZXb5x61qtVVmKv6aImvAZUbT76mD60ZbEilizjZQzsR2CcU1iMK5sacIa1NVA==", "dependencies": { - "@codemirror/autocomplete": "^6.9.1", - "@codemirror/language": "^6.9.1", - "@codemirror/state": "^6.2.1", - "@codemirror/view": "^6.21.0", - "@lezer/common": "^1.1.2", - "lezer-feel": "^1.2.0" + "@codemirror/autocomplete": "^6.16.2", + "@codemirror/language": "^6.10.2", + "@codemirror/state": "^6.4.1", + "@codemirror/view": "^6.28.1", + "@lezer/common": "^1.2.1", + "lezer-feel": "^1.3.0" }, "engines": { "node": "*" @@ -19758,12 +19813,13 @@ } }, "node_modules/lezer-feel": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/lezer-feel/-/lezer-feel-1.2.8.tgz", - "integrity": "sha512-CO5JEpwNhH1p8mmRRcqMjJrYxO3vNx0nEsF9Ak4OPa1pNHEqvJ2rwYwM9LjZ7jh/Sl5FxbTJT/teF9a+zWmflg==", + "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.0", - "@lezer/lr": "^1.4.0" + "@lezer/highlight": "^1.2.1", + "@lezer/lr": "^1.4.2", + "min-dash": "^4.2.1" }, "engines": { "node": "*" @@ -20588,9 +20644,9 @@ } }, "node_modules/luxon": { - "version": "3.4.4", - "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.4.4.tgz", - "integrity": "sha512-zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.5.0.tgz", + "integrity": "sha512-rh+Zjr6DNfUYR3bPwJEnuwDdqMbxZW7LOQfUN4B54+Cl+0o5zaU9RJ6bcidfDtC1cWCZXQ+nvX8bf6bAji37QQ==", "engines": { "node": ">=12" } @@ -20753,10 +20809,16 @@ "node": ">= 0.10.0" } }, - "node_modules/matches-selector": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/matches-selector/-/matches-selector-1.2.0.tgz", - "integrity": "sha512-c4vLwYWyl+Ji+U43eU/G5FwxWd4ZH0ePUsFs5y0uwD9HUEFBXUQ1zUUan+78IpRD+y4pUfG0nAzNM292K7ItvA==" + "node_modules/marked": { + "version": "15.0.3", + "resolved": "https://registry.npmjs.org/marked/-/marked-15.0.3.tgz", + "integrity": "sha512-Ai0cepvl2NHnTcO9jYDtcOEtVBNVYR31XnEA3BndO7f5As1wzpcOceSUM8FDkNLJNIODcLpDTWay/qQhqbuMvg==", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 18" + } }, "node_modules/math-random": { "version": "1.0.4", @@ -21556,18 +21618,18 @@ } }, "node_modules/min-dash": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/min-dash/-/min-dash-4.2.1.tgz", - "integrity": "sha512-to+unsToePnm7cUeR9TrMzFlETHd/UXmU+ELTRfWZj5XGT41KF6X3L233o3E/GdEs3sk2Tbw/lOLD1avmWkg8A==" + "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.1.0", - "resolved": "https://registry.npmjs.org/min-dom/-/min-dom-4.1.0.tgz", - "integrity": "sha512-1lj1EyoSwY/UmTeT/hhPiZTsq+vK9D+8FAJ/53iK5jT1otkG9rJTixSKdjmTieEvdfES+sKbbTptzaQJhnacjA==", + "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.0.0" + "min-dash": "^4.2.1" } }, "node_modules/mini-create-react-context": { @@ -21713,9 +21775,12 @@ } }, "node_modules/mixpanel-browser": { - "version": "2.47.0", - "resolved": "https://registry.npmjs.org/mixpanel-browser/-/mixpanel-browser-2.47.0.tgz", - "integrity": "sha512-Ldrva0fRBEIFWmEibBQO1PulfpJVF3pf28Guk09lDirDaSQqqU/xs9zQLwN2rL5VwVtsP1aD3JaCgaa98EjojQ==" + "version": "2.56.0", + "resolved": "https://registry.npmjs.org/mixpanel-browser/-/mixpanel-browser-2.56.0.tgz", + "integrity": "sha512-GYeEz58pV2M9MZtK8vSPL4oJmCwGS08FDDRZvZwr5VJpWdT4Lgyg6zXhmNfCmSTEIw2coaarm7HZ4FL9dAVvnA==", + "dependencies": { + "rrweb": "2.0.0-alpha.13" + } }, "node_modules/mkdirp": { "version": "0.5.6", @@ -21785,9 +21850,15 @@ } }, "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "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" }, @@ -22046,9 +22117,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "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/non-layered-tidy-tree-layout": { "version": "2.0.2", @@ -22816,12 +22887,6 @@ "node": ">=8" } }, - "node_modules/package-json-from-dist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", - "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", - "dev": true - }, "node_modules/package-json/node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", @@ -23107,9 +23172,9 @@ "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "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", @@ -23301,9 +23366,9 @@ } }, "node_modules/postcss": { - "version": "8.4.16", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz", - "integrity": "sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==", + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", "funding": [ { "type": "opencollective", @@ -23312,12 +23377,16 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "nanoid": "^3.3.7", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" }, "engines": { "node": "^10 || ^12 || >=14" @@ -23874,9 +23943,9 @@ } }, "node_modules/preact": { - "version": "10.19.6", - "resolved": "https://registry.npmjs.org/preact/-/preact-10.19.6.tgz", - "integrity": "sha512-gympg+T2Z1fG1unB8NH29yHJwnEaCH37Z32diPDku316OTnRPeMbiRV9kTrfZpocXjdfnWuFUl/Mj4BHaf6gnw==", + "version": "10.25.1", + "resolved": "https://registry.npmjs.org/preact/-/preact-10.25.1.tgz", + "integrity": "sha512-frxeZV2vhQSohQwJ7FvlqC40ze89+8friponWUFeVEkaCfhC6Eu4V0iND5C9CXz8JLndV07QRDeXzH1+Anz5Og==", "funding": { "type": "opencollective", "url": "https://opencollective.com/preact" @@ -23926,9 +23995,9 @@ } }, "node_modules/pretty-format": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", - "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { "@jest/schemas": "^29.6.3", @@ -24133,9 +24202,9 @@ "integrity": "sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==" }, "node_modules/pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", + "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", "dev": true, "funding": [ { @@ -26091,20 +26160,37 @@ } }, "node_modules/replace-in-file": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/replace-in-file/-/replace-in-file-8.2.0.tgz", - "integrity": "sha512-hMsQtdYHwWviQT5ZbNsgfu0WuCiNlcUSnnD+aHAL081kbU9dPkPocDaHlDvAHKydTWWpx1apfcEcmvIyQk3CpQ==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/replace-in-file/-/replace-in-file-7.2.0.tgz", + "integrity": "sha512-CiLXVop3o8/h2Kd1PwKPPimmS9wUV0Ki6Fl8+1ITD35nB3Gl/PrW5IONpTE0AXk0z4v8WYcpEpdeZqMXvSnWpg==", "dev": true, + "license": "MIT", "dependencies": { - "chalk": "^5.3.0", - "glob": "^10.4.2", + "chalk": "^4.1.2", + "glob": "^8.1.0", "yargs": "^17.7.2" }, "bin": { "replace-in-file": "bin/cli.js" }, "engines": { - "node": ">=18" + "node": ">=10" + } + }, + "node_modules/replace-in-file/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/replace-in-file/node_modules/brace-expansion": { @@ -26112,70 +26198,103 @@ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/replace-in-file/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" + "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/replace-in-file/node_modules/glob": { - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "node_modules/replace-in-file/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, + "license": "MIT", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "color-name": "~1.1.4" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "engines": { + "node": ">=7.0.0" } }, - "node_modules/replace-in-file/node_modules/jackspeak": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "node_modules/replace-in-file/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true, + "license": "MIT" + }, + "node_modules/replace-in-file/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", "dependencies": { - "@isaacs/cliui": "^8.0.2" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/replace-in-file/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" } }, "node_modules/replace-in-file/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, + "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=10" + } + }, + "node_modules/replace-in-file/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "engines": { + "node": ">=8" } }, "node_modules/request": { @@ -26322,9 +26441,9 @@ "deprecated": "https://github.com/lydell/resolve-url#deprecated" }, "node_modules/resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", + "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", "dev": true, "engines": { "node": ">=10" @@ -26423,6 +26542,37 @@ "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz", "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==" }, + "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==", + "dependencies": { + "rrweb-snapshot": "^2.0.0-alpha.17" + } + }, + "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==", + "dependencies": { + "@rrweb/types": "^2.0.0-alpha.13", + "@types/css-font-loading-module": "0.0.7", + "@xstate/fsm": "^1.4.0", + "base64-arraybuffer": "^1.0.1", + "fflate": "^0.4.4", + "mitt": "^3.0.0", + "rrdom": "^2.0.0-alpha.13", + "rrweb-snapshot": "^2.0.0-alpha.13" + } + }, + "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==", + "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", @@ -27134,29 +27284,6 @@ "resolved": "https://registry.npmjs.org/should-util/-/should-util-1.0.1.tgz", "integrity": "sha512-oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g==" }, - "node_modules/showdown": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/showdown/-/showdown-2.1.0.tgz", - "integrity": "sha512-/6NVYu4U819R2pUIk79n67SYgJHWCce0a5xTP979WbNp0FL9MN1I1QK662IDU1b6JzKTvmhgI7T7JYIxBi3kMQ==", - "dependencies": { - "commander": "^9.0.0" - }, - "bin": { - "showdown": "bin/showdown.js" - }, - "funding": { - "type": "individual", - "url": "https://www.paypal.me/tiviesantos" - } - }, - "node_modules/showdown/node_modules/commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "engines": { - "node": "^12.20.0 || >=14" - } - }, "node_modules/side-channel": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", @@ -27495,9 +27622,9 @@ } }, "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "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==", "engines": { "node": ">=0.10.0" } @@ -28695,14 +28822,6 @@ "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==" }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, "node_modules/to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", @@ -29535,9 +29654,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", "funding": [ { "type": "opencollective", @@ -29553,8 +29672,8 @@ } ], "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.0" }, "bin": { "update-browserslist-db": "cli.js" @@ -29896,19 +30015,25 @@ } }, "node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", + "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" + "convert-source-map": "^2.0.0" }, "engines": { "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", @@ -31107,11 +31232,12 @@ } }, "@ampproject/remapping": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz", - "integrity": "sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "requires": { - "@jridgewell/trace-mapping": "^0.3.0" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" } }, "@apidevtools/json-schema-ref-parser": { @@ -31127,68 +31253,77 @@ } }, "@auth0/auth0-react": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@auth0/auth0-react/-/auth0-react-2.2.1.tgz", - "integrity": "sha512-4L4FZvSqIwzVk5mwWFbWzfJ4Zq11dgS0v4KIGKro5tL9dgOnBGq+Ino/1mzexPV1LJHBkfwXG4+IaPiQNz5CGg==", + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/@auth0/auth0-react/-/auth0-react-2.2.4.tgz", + "integrity": "sha512-l29PQC0WdgkCoOc6WeMAY26gsy/yXJICW0jHfj0nz8rZZphYKrLNqTRWFFCMJY+sagza9tSgB1kG/UvQYgGh9A==", "requires": { - "@auth0/auth0-spa-js": "^2.1.2" + "@auth0/auth0-spa-js": "^2.1.3" } }, "@auth0/auth0-spa-js": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@auth0/auth0-spa-js/-/auth0-spa-js-2.1.2.tgz", - "integrity": "sha512-xdA65Z/U7++Y7L9Uwh8Q8OVOs6qgFz+fb7GAzHFjpr1icO37B//xdzLXm7ZRgA19RWrsNe1nme3h896igJSvvw==" + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@auth0/auth0-spa-js/-/auth0-spa-js-2.1.3.tgz", + "integrity": "sha512-NMTBNuuG4g3rame1aCnNS5qFYIzsTUV5qTFPRfTyYFS1feS6jsCBR+eTq9YkxCp1yuoM2UIcjunPaoPl77U9xQ==" }, "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", "requires": { - "@babel/highlight": "^7.18.6" + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" } }, "@babel/compat-data": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz", - "integrity": "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==" + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.2.tgz", + "integrity": "sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==" }, "@babel/core": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.9.tgz", - "integrity": "sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==", - "requires": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.9", - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-module-transforms": "^7.18.9", - "@babel/helpers": "^7.18.9", - "@babel/parser": "^7.18.9", - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9", - "convert-source-map": "^1.7.0", + "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==", + "requires": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.26.0", + "@babel/generator": "^7.26.0", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helpers": "^7.26.0", + "@babel/parser": "^7.26.0", + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.26.0", + "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "dependencies": { + "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==" + }, "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" } } }, "@babel/generator": { - "version": "7.20.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.4.tgz", - "integrity": "sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz", + "integrity": "sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==", "requires": { - "@babel/types": "^7.20.2", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" + "@babel/parser": "^7.26.2", + "@babel/types": "^7.26.0", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" } }, "@babel/helper-annotate-as-pure": { @@ -31209,20 +31344,34 @@ } }, "@babel/helper-compilation-targets": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", - "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", + "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==", "requires": { - "@babel/compat-data": "^7.20.0", - "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.21.3", - "semver": "^6.3.0" + "@babel/compat-data": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" }, "dependencies": { + "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==", + "requires": { + "yallist": "^3.0.2" + } + }, "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" } } }, @@ -31308,26 +31457,22 @@ } }, "@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", "requires": { - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" } }, "@babel/helper-module-transforms": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz", - "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", + "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==", "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2" + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" } }, "@babel/helper-optimise-call-expression": { @@ -31339,9 +31484,9 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", - "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==" + "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==" }, "@babel/helper-remap-async-to-generator": { "version": "7.18.9", @@ -31391,19 +31536,19 @@ } }, "@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==" + "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==" }, "@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==" + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==" }, "@babel/helper-validator-option": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", - "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==" }, "@babel/helper-wrap-function": { "version": "7.19.0", @@ -31417,13 +31562,12 @@ } }, "@babel/helpers": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz", - "integrity": "sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz", + "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", "requires": { - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.0" + "@babel/template": "^7.25.9", + "@babel/types": "^7.26.0" } }, "@babel/highlight": { @@ -31437,9 +31581,12 @@ } }, "@babel/parser": { - "version": "7.21.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.3.tgz", - "integrity": "sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ==" + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz", + "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==", + "requires": { + "@babel/types": "^7.26.0" + } }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -31660,6 +31807,15 @@ "@babel/helper-plugin-utils": "^7.19.0" } }, + "@babel/plugin-syntax-import-attributes": { + "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, + "requires": { + "@babel/helper-plugin-utils": "^7.25.9" + } + }, "@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", @@ -32372,40 +32528,36 @@ } }, "@babel/template": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", - "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", + "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.10", - "@babel/types": "^7.18.10" + "@babel/code-frame": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/types": "^7.25.9" } }, "@babel/traverse": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz", - "integrity": "sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.1", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.20.1", - "@babel/types": "^7.20.0", - "debug": "^4.1.0", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz", + "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==", + "requires": { + "@babel/code-frame": "^7.25.9", + "@babel/generator": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/template": "^7.25.9", + "@babel/types": "^7.25.9", + "debug": "^4.3.1", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.21.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.3.tgz", - "integrity": "sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz", + "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==", "requires": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" } }, "@bcoe/v8-coverage": { @@ -32425,136 +32577,137 @@ } }, "@bpmn-io/draggle": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@bpmn-io/draggle/-/draggle-4.1.0.tgz", - "integrity": "sha512-gHRjQGJEpEwVxspNwNhnqHHAt8cE1l1cObFEf5YSuSXVxTLZcNAQOgmEDJ+QMk1UPDKfnQwvbeDdv5ytCnksfw==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@bpmn-io/draggle/-/draggle-4.1.1.tgz", + "integrity": "sha512-2frw1gBl5I3XGrIDg4CBy6bpJiOuslKUOg9T91Fke6bIttFkF0zxlTKh4E4zU8g7gAo4ze0HnKMZDgHxea+Itw==", "requires": { "contra": "^1.9.4" } }, "@bpmn-io/feel-editor": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@bpmn-io/feel-editor/-/feel-editor-1.2.0.tgz", - "integrity": "sha512-402yrNL+a58d9AiNE48IScTiWDGmB+8Fpiq9eqg/sKCzhdHahl5fZyl+cksfcyJjzJF1byUOhYy3UxL3/tbLmQ==", - "requires": { - "@bpmn-io/feel-lint": "^1.2.0", - "@codemirror/autocomplete": "^6.12.0", - "@codemirror/commands": "^6.3.3", - "@codemirror/language": "^6.10.0", - "@codemirror/lint": "^6.4.2", - "@codemirror/state": "^6.4.0", - "@codemirror/view": "^6.23.0", + "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==", + "requires": { + "@bpmn-io/feel-lint": "^1.3.0", + "@codemirror/autocomplete": "^6.16.2", + "@codemirror/commands": "^6.6.0", + "@codemirror/language": "^6.10.2", + "@codemirror/lint": "^6.8.0", + "@codemirror/state": "^6.4.1", + "@codemirror/view": "^6.28.1", "@lezer/highlight": "^1.2.0", - "lang-feel": "^2.0.0", - "min-dom": "^4.1.0" + "lang-feel": "^2.1.1", + "min-dom": "^4.2.1" } }, "@bpmn-io/feel-lint": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@bpmn-io/feel-lint/-/feel-lint-1.2.0.tgz", - "integrity": "sha512-nsvAYxiSbWyjpd3gNnJd+60aTWrZvngYnZfe+GpmkM/pQoOgtF17GhD/p4fgaeAd/uUP3q9sO6EWRX+OU/p9dw==", + "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==", "requires": { - "@codemirror/language": "^6.8.0", + "@codemirror/language": "^6.10.0", "lezer-feel": "^1.2.3" } }, "@bpmn-io/form-js": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js/-/form-js-1.7.3.tgz", - "integrity": "sha512-CPDUwS3lftH/lHG08o4kBthgO3Qz918jwr6KnQ0O6Vtm6KjNLsjwZrbf3RPmLuAJzLfQMxh9oA8dTTZJM4s1UQ==", + "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==", "requires": { - "@bpmn-io/form-js-carbon-styles": "^1.7.3", - "@bpmn-io/form-js-editor": "^1.7.3", - "@bpmn-io/form-js-playground": "^1.7.3", - "@bpmn-io/form-js-viewer": "^1.7.3" + "@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": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-carbon-styles/-/form-js-carbon-styles-1.7.3.tgz", - "integrity": "sha512-5W3zoa4VxY8eaKr4mLu/yRdugzhan8fTKsJGXfJR+iW0ErGdAo969rIxEbINsAKBqNiWxdipoWsEgvPxKbh/VQ==" + "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==" }, "@bpmn-io/form-js-editor": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-editor/-/form-js-editor-1.7.3.tgz", - "integrity": "sha512-6kHZQJslKavw1M8JgZpOXyeIRj3wk+2TjosT81iWqreVnDS434cUpd8HTgXZBlrPugYmGjDd1e4Oa2CVVxixWw==", - "requires": { - "@bpmn-io/draggle": "^4.0.0", - "@bpmn-io/form-js-viewer": "^1.7.3", - "@bpmn-io/properties-panel": "^3.18.1", - "array-move": "^3.0.1", - "big.js": "^6.2.1", - "ids": "^1.0.0", - "min-dash": "^4.2.1", + "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==", + "requires": { + "@bpmn-io/draggle": "^4.1.1", + "@bpmn-io/form-js-viewer": "^1.12.0", + "@bpmn-io/properties-panel": "^3.25.0", + "array-move": "^4.0.0", + "big.js": "^6.2.2", + "ids": "^1.0.5", + "min-dash": "^4.2.2", "min-dom": "^4.1.0", "preact": "^10.5.14" }, "dependencies": { "big.js": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz", - "integrity": "sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ==" + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-6.2.2.tgz", + "integrity": "sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ==" } } }, "@bpmn-io/form-js-playground": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-playground/-/form-js-playground-1.7.3.tgz", - "integrity": "sha512-l87drk8rA3/yQa6RhOwRsVIp0kKGSg+asOXLZppNePh1lcaw0iF4taSa2PQeiI2d1GwnA3fjht+NhzzE/r+2/Q==", + "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==", "requires": { - "@bpmn-io/form-js-editor": "^1.7.3", - "@bpmn-io/form-js-viewer": "^1.7.3", - "@codemirror/autocomplete": "^6.12.0", - "@codemirror/commands": "^6.1.2", + "@bpmn-io/form-js-editor": "^1.12.0", + "@bpmn-io/form-js-viewer": "^1.12.0", + "@codemirror/autocomplete": "^6.18.3", + "@codemirror/commands": "^6.7.1", "@codemirror/lang-json": "^6.0.1", - "@codemirror/language": "^6.10.0", - "@codemirror/lint": "^6.0.0", - "@codemirror/state": "^6.1.1", - "@codemirror/view": "^6.23.1", - "classnames": "^2.3.1", + "@codemirror/language": "^6.10.3", + "@codemirror/lint": "^6.8.2", + "@codemirror/state": "^6.4.1", + "@codemirror/view": "^6.34.3", + "classnames": "^2.5.1", "codemirror": "^6.0.1", "downloadjs": "^1.4.7", - "file-drops": "^0.4.0", - "mitt": "^3.0.0", + "file-drops": "^0.5.0", + "mitt": "^3.0.1", "preact": "^10.5.14" } }, "@bpmn-io/form-js-viewer": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@bpmn-io/form-js-viewer/-/form-js-viewer-1.7.3.tgz", - "integrity": "sha512-/XEDHzZbxmYXAp10ClPQu8h/4CoYqPdUYkppD/fL+UXFTO9ZJFBMn2TGgJEwXZP3H6/m6fSFqPFuWnVudWkCYg==", - "requires": { - "@carbon/grid": "^11.11.0", - "big.js": "^6.2.1", - "classnames": "^2.3.1", - "didi": "^10.0.1", - "dompurify": "^3.0.8", - "feelers": "^1.3.0", - "feelin": "^3.0.0", + "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==", + "requires": { + "@carbon/grid": "^11.29.0", + "big.js": "^6.2.2", + "classnames": "^2.5.1", + "didi": "^10.2.2", + "dompurify": "^3.2.0", + "feelers": "^1.4.0", + "feelin": "^3.2.0", "flatpickr": "^4.6.13", - "ids": "^1.0.0", - "lodash": "^4.5.0", - "min-dash": "^4.2.1", - "preact": "^10.5.14", - "showdown": "^2.1.0" + "ids": "^1.0.5", + "lodash": "^4.17.21", + "luxon": "^3.5.0", + "marked": "^15.0.1", + "min-dash": "^4.2.2", + "preact": "^10.5.14" }, "dependencies": { "big.js": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-6.2.1.tgz", - "integrity": "sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ==" + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-6.2.2.tgz", + "integrity": "sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ==" } } }, "@bpmn-io/properties-panel": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/@bpmn-io/properties-panel/-/properties-panel-3.18.1.tgz", - "integrity": "sha512-ygBhVH99IFG1VbMlbvInXQUeqHwQH4uaajFaUi3OsjELpM1WcmHQ72fXPd1tC/OtJJhZoQajHiTI8SdL38t9ug==", + "version": "3.25.0", + "resolved": "https://registry.npmjs.org/@bpmn-io/properties-panel/-/properties-panel-3.25.0.tgz", + "integrity": "sha512-SRGgj8uJc1Yyjcht2g36Q+xKR7sTx5VZXvcwDrdmQKlx5Y3nRmvmMjDGzeGDJDb7pNU1DSlaBJic84uISDBMWg==", "requires": { - "@bpmn-io/feel-editor": "^1.2.0", - "@codemirror/view": "^6.14.0", + "@bpmn-io/feel-editor": "^1.9.0", + "@codemirror/view": "^6.28.1", "classnames": "^2.3.1", - "feelers": "^1.3.0", + "feelers": "^1.4.0", "focus-trap": "^7.5.2", "min-dash": "^4.1.1", "min-dom": "^4.0.3" @@ -32566,22 +32719,26 @@ "integrity": "sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==" }, "@carbon/grid": { - "version": "11.21.0", - "resolved": "https://registry.npmjs.org/@carbon/grid/-/grid-11.21.0.tgz", - "integrity": "sha512-Zzhos2we+HqM0obdQgma+OvLoM9dNGq07YcLxFxrc/vEOn/D01sner6dyMMqS2y8036zIaoqVMGArSzPfoxrLA==", + "version": "11.29.0", + "resolved": "https://registry.npmjs.org/@carbon/grid/-/grid-11.29.0.tgz", + "integrity": "sha512-SAJhTexN6TjbItcUczOqhzgHBGXLhvUhlTdyqj+wzUH0tqEN8g6gLp+1sn9+rL+kV4obSb/7bdSESZtwQr/tQg==", "requires": { - "@carbon/layout": "^11.20.0" + "@carbon/layout": "^11.28.0", + "@ibm/telemetry-js": "^1.5.0" } }, "@carbon/layout": { - "version": "11.20.0", - "resolved": "https://registry.npmjs.org/@carbon/layout/-/layout-11.20.0.tgz", - "integrity": "sha512-G9eJE3xb/J98Id9VvTA/b4v+2i/c+IiHAhxNPc0PPpPN6C/r6U4gJsG4yPgQnbuIU42cP9L8OvCrQr0mbrCMlA==" + "version": "11.28.0", + "resolved": "https://registry.npmjs.org/@carbon/layout/-/layout-11.28.0.tgz", + "integrity": "sha512-Yl0Dsxs00EgAaCKpZCXgebuf9BwiBK66a1Oiao6D12p3ViciZ4L18mlRgOPBcDlolP2tUtncz48TlfkWC097hQ==", + "requires": { + "@ibm/telemetry-js": "^1.5.0" + } }, "@codemirror/autocomplete": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.13.0.tgz", - "integrity": "sha512-SuDrho1klTINfbcMPnyro1ZxU9xJtwDMtb62R8TjL/tOl71IoOsvBo1a9x+hDvHhIzkTcJHy2VC+rmpGgYkRSw==", + "version": "6.18.3", + "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.18.3.tgz", + "integrity": "sha512-1dNIOmiM0z4BIBwxmxEfA1yoxh1MF/6KPBbh20a5vphGV0ictKlgQsbJs6D6SkR6iJpGbpwRsa6PFMNlg9T9pQ==", "requires": { "@codemirror/language": "^6.0.0", "@codemirror/state": "^6.0.0", @@ -32590,13 +32747,13 @@ } }, "@codemirror/commands": { - "version": "6.3.3", - "resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.3.3.tgz", - "integrity": "sha512-dO4hcF0fGT9tu1Pj1D2PvGvxjeGkbC6RGcZw6Qs74TH+Ed1gw98jmUgd2axWvIZEqTeTuFrg1lEB1KV6cK9h1A==", + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.7.1.tgz", + "integrity": "sha512-llTrboQYw5H4THfhN4U3qCnSZ1SOJ60ohhz+SzU0ADGtwlc533DtklQP0vSFaQuCPDn3BPpOd1GbbnUtwNjsrw==", "requires": { "@codemirror/language": "^6.0.0", "@codemirror/state": "^6.4.0", - "@codemirror/view": "^6.0.0", + "@codemirror/view": "^6.27.0", "@lezer/common": "^1.1.0" } }, @@ -32610,9 +32767,9 @@ } }, "@codemirror/language": { - "version": "6.10.1", - "resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.10.1.tgz", - "integrity": "sha512-5GrXzrhq6k+gL5fjkAwt90nYDmjlzTIJV8THnxNFtNKWotMIlzzN+CpqxqwXOECnUdOndmSeWntVrVcv5axWRQ==", + "version": "6.10.6", + "resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.10.6.tgz", + "integrity": "sha512-KrsbdCnxEztLVbB5PycWXFxas4EOyk/fPAfruSOnDDppevQgid2XZ+KbJ9u+fDikP/e7MW7HPBTvTb8JlZK9vA==", "requires": { "@codemirror/state": "^6.0.0", "@codemirror/view": "^6.23.0", @@ -32623,19 +32780,19 @@ } }, "@codemirror/lint": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.5.0.tgz", - "integrity": "sha512-+5YyicIaaAZKU8K43IQi8TBy6mF6giGeWAH7N96Z5LC30Wm5JMjqxOYIE9mxwMG1NbhT2mA3l9hA4uuKUM3E5g==", + "version": "6.8.4", + "resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.8.4.tgz", + "integrity": "sha512-u4q7PnZlJUojeRe8FJa/njJcMctISGgPQ4PnWsd9268R4ZTtU+tfFYmwkBvgcrK2+QQ8tYFVALVb5fVJykKc5A==", "requires": { "@codemirror/state": "^6.0.0", - "@codemirror/view": "^6.0.0", + "@codemirror/view": "^6.35.0", "crelt": "^1.0.5" } }, "@codemirror/search": { - "version": "6.5.6", - "resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.6.tgz", - "integrity": "sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q==", + "version": "6.5.8", + "resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.8.tgz", + "integrity": "sha512-PoWtZvo7c1XFeZWmmyaOp2G0XVbOnm+fJzvghqGAktBW3cufwJUWvSCcNG0ppXiBEM05mZu6RhMtXPv2hpllig==", "requires": { "@codemirror/state": "^6.0.0", "@codemirror/view": "^6.0.0", @@ -32648,9 +32805,9 @@ "integrity": "sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==" }, "@codemirror/view": { - "version": "6.25.1", - "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.25.1.tgz", - "integrity": "sha512-2LXLxsQnHDdfGzDvjzAwZh2ZviNJm7im6tGpa0IONIDnFd8RZ80D2SNi8PDi6YjKcMoMRK20v6OmKIdsrwsyoQ==", + "version": "6.35.0", + "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.35.0.tgz", + "integrity": "sha512-I0tYy63q5XkaWsJ8QRv5h6ves7kvtrBWjBcnf/bzohFJQc5c14a1AQRdE8QpPF9eMp5Mq2FMm59TCj1gDfE7kw==", "requires": { "@codemirror/state": "^6.4.0", "style-mod": "^4.1.0", @@ -33390,6 +33547,11 @@ "integrity": "sha512-U410sAr92xgxT1idlu9WWOVjndxLdgPUHEB8Schr27C9eh7/xUnITWpCMF93s+lGiG++D4JnbSnrb5A21AdSNg==", "requires": {} }, + "@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==" + }, "@isaacs/cliui": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", @@ -33501,16 +33663,16 @@ "dev": true }, "@jest/console": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.4.tgz", - "integrity": "sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, "requires": { "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0" }, "dependencies": { @@ -33566,15 +33728,15 @@ } }, "@jest/core": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.4.tgz", - "integrity": "sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, "requires": { - "@jest/console": "^29.6.4", - "@jest/reporters": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", @@ -33582,21 +33744,21 @@ "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.6.3", - "jest-config": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-resolve-dependencies": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "jest-watcher": "^29.6.4", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -33621,9 +33783,9 @@ } }, "ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "dev": true }, "color-convert": { @@ -33659,72 +33821,72 @@ } }, "@jest/environment": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.4.tgz", - "integrity": "sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "requires": { - "@jest/fake-timers": "^29.6.4", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" } }, "@jest/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, "requires": { - "expect": "^29.6.4", - "jest-snapshot": "^29.6.4" + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" } }, "@jest/expect-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.4.tgz", - "integrity": "sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, "requires": { "jest-get-type": "^29.6.3" } }, "@jest/fake-timers": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.4.tgz", - "integrity": "sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, "requires": { "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" } }, "@jest/globals": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.4.tgz", - "integrity": "sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, "requires": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", "@jest/types": "^29.6.3", - "jest-mock": "^29.6.3" + "jest-mock": "^29.7.0" } }, "@jest/reporters": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.4.tgz", - "integrity": "sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, "requires": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", @@ -33738,9 +33900,9 @@ "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -33788,13 +33950,13 @@ "dev": true }, "jest-worker": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", - "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "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, "requires": { "@types/node": "*", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -33842,33 +34004,33 @@ } }, "@jest/test-result": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.4.tgz", - "integrity": "sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "requires": { - "@jest/console": "^29.6.4", + "@jest/console": "^29.7.0", "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" } }, "@jest/test-sequencer": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.4.tgz", - "integrity": "sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, "requires": { - "@jest/test-result": "^29.6.4", + "@jest/test-result": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "slash": "^3.0.0" } }, "@jest/transform": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.4.tgz", - "integrity": "sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, "requires": { "@babel/core": "^7.11.6", @@ -33879,9 +34041,9 @@ "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -34021,13 +34183,13 @@ } }, "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", "requires": { - "@jridgewell/set-array": "^1.0.1", + "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/trace-mapping": "^0.3.24" } }, "@jridgewell/resolve-uri": { @@ -34036,9 +34198,9 @@ "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==" }, "@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==" }, "@jridgewell/sourcemap-codec": { "version": "1.4.15", @@ -34046,9 +34208,9 @@ "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, "@jridgewell/trace-mapping": { - "version": "0.3.19", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", - "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "requires": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" @@ -34065,14 +34227,14 @@ "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" }, "@lezer/common": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.2.1.tgz", - "integrity": "sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==" + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.2.3.tgz", + "integrity": "sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==" }, "@lezer/highlight": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@lezer/highlight/-/highlight-1.2.0.tgz", - "integrity": "sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@lezer/highlight/-/highlight-1.2.1.tgz", + "integrity": "sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==", "requires": { "@lezer/common": "^1.0.0" } @@ -34088,17 +34250,17 @@ } }, "@lezer/lr": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.0.tgz", - "integrity": "sha512-Wst46p51km8gH0ZUmeNrtpRYmdlRHUpN1DQd3GFAyKANi8WVz8c2jHYTf1CVScFaCjQw1iO3ZZdqGDxQPRErTg==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.2.tgz", + "integrity": "sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==", "requires": { "@lezer/common": "^1.0.0" } }, "@lezer/markdown": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@lezer/markdown/-/markdown-1.2.0.tgz", - "integrity": "sha512-d7MwsfAukZJo1GpPrcPGa3MxaFFOqNp0gbqF+3F7pTeNDOgeJN1muXzx1XXDPt+Ac+/voCzsH7qXqnn+xReG/g==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@lezer/markdown/-/markdown-1.3.2.tgz", + "integrity": "sha512-Wu7B6VnrKTbBEohqa63h5vxXjiC4pO5ZQJ/TDbhJxPQaaIoRD/6UVDhSDtVsCwVZV12vvN9KxuLL3ATMnlG0oQ==", "requires": { "@lezer/common": "^1.0.0", "@lezer/highlight": "^1.0.0" @@ -34459,6 +34621,14 @@ "reselect": "^4.1.8" } }, + "@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==", + "requires": { + "rrweb-snapshot": "^2.0.0-alpha.17" + } + }, "@saucelabs/theme-github-codeblock": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@saucelabs/theme-github-codeblock/-/theme-github-codeblock-0.2.3.tgz", @@ -34494,9 +34664,9 @@ "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" }, "@sinonjs/commons": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", - "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", "dev": true, "requires": { "type-detect": "4.0.8" @@ -34599,35 +34769,6 @@ "@svgr/plugin-jsx": "^6.5.1", "camelcase": "^6.2.0", "cosmiconfig": "^7.0.1" - }, - "dependencies": { - "@babel/core": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", - "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", - "requires": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.2", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-module-transforms": "^7.20.2", - "@babel/helpers": "^7.20.1", - "@babel/parser": "^7.20.2", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } } }, "@svgr/hast-util-to-babel-ast": { @@ -34655,35 +34796,6 @@ "@svgr/babel-preset": "^6.5.1", "@svgr/hast-util-to-babel-ast": "^6.5.1", "svg-parser": "^2.0.4" - }, - "dependencies": { - "@babel/core": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", - "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", - "requires": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.2", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-module-transforms": "^7.20.2", - "@babel/helpers": "^7.20.1", - "@babel/parser": "^7.20.2", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } } }, "@svgr/plugin-svgo": { @@ -34709,35 +34821,6 @@ "@svgr/core": "^6.5.1", "@svgr/plugin-jsx": "^6.5.1", "@svgr/plugin-svgo": "^6.5.1" - }, - "dependencies": { - "@babel/core": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", - "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", - "requires": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.2", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-module-transforms": "^7.20.2", - "@babel/helpers": "^7.20.1", - "@babel/parser": "^7.20.2", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } } }, "@swc/core": { @@ -34859,9 +34942,9 @@ "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" }, "@types/babel__core": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", - "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, "requires": { "@babel/parser": "^7.20.7", @@ -34872,18 +34955,18 @@ } }, "@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", "dev": true, "requires": { "@babel/types": "^7.0.0" } }, "@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, "requires": { "@babel/parser": "^7.1.0", @@ -34891,9 +34974,9 @@ } }, "@types/babel__traverse": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", - "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", "dev": true, "requires": { "@babel/types": "^7.20.7" @@ -34941,6 +35024,11 @@ "@types/node": "*" } }, + "@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==" + }, "@types/debug": { "version": "4.1.12", "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", @@ -34994,9 +35082,9 @@ } }, "@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, "requires": { "@types/node": "*" @@ -35062,9 +35150,9 @@ } }, "@types/jest": { - "version": "29.5.4", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.4.tgz", - "integrity": "sha512-PhglGmhWeD46FYOVLt3X7TiWjzwuVGW9wG/4qocPevXMjCmrIc5b6db9WjeGE4QYVpUAWMDv3v0IiBwObY289A==", + "version": "29.5.14", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.14.tgz", + "integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==", "dev": true, "requires": { "expect": "^29.0.0", @@ -35241,6 +35329,12 @@ "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", "dev": true }, + "@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==", + "optional": true + }, "@types/unist": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", @@ -35400,6 +35494,11 @@ "@xtuc/long": "4.2.2" } }, + "@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==" + }, "@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", @@ -35669,9 +35768,9 @@ "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" }, "array-move": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/array-move/-/array-move-3.0.1.tgz", - "integrity": "sha512-H3Of6NIn2nNU1gsVDqDnYKY/LCdWvCMMOWifNGhKcVQgiZ6nOek39aESOvro6zmueP07exSl93YLvkN4fZOkSg==" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/array-move/-/array-move-4.0.0.tgz", + "integrity": "sha512-+RY54S8OuVvg94THpneQvFRmqWdAHeqtMzgMW6JNurHxe8rsS07cHQdfGkXnTUXiBcyZ0j3SiDIxxj0RPiqCkQ==" }, "array-union": { "version": "2.1.0", @@ -35865,12 +35964,12 @@ } }, "babel-jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", - "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, "requires": { - "@jest/transform": "^29.6.4", + "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", "babel-preset-jest": "^29.6.3", @@ -36073,23 +36172,26 @@ } }, "babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", + "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", "dev": true, "requires": { "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^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.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-top-level-await": "^7.8.3" + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5" } }, "babel-preset-jest": { @@ -36955,14 +37057,14 @@ } }, "browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "requires": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" } }, "bser": { @@ -37176,9 +37278,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001525", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001525.tgz", - "integrity": "sha512-/3z+wB4icFt3r0USMwxujAqRvaD/B7rvGTsKhbhSQErVrJvkZCLhgNLJxU8MevahQVH6hCU9FsHdNUFbiwmE7Q==" + "version": "1.0.30001686", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001686.tgz", + "integrity": "sha512-Y7deg0Aergpa24M3qLC5xjNklnKnhsmSyR/V89dLZ1n0ucJIFNs7PgR2Yfa/Zf6W79SbBicgtGxZr2juHkEUIA==" }, "caseless": { "version": "0.12.0", @@ -37400,9 +37502,9 @@ } }, "cjs-module-lexer": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", - "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "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 }, "class-utils": { @@ -37483,9 +37585,9 @@ } }, "classnames": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", - "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==" }, "clean-css": { "version": "5.3.1", @@ -38117,6 +38219,72 @@ "sha.js": "^2.4.8" } }, + "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, + "requires": { + "@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" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "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 + }, + "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 + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, "crelt": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz", @@ -38969,9 +39137,9 @@ } }, "dedent": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", - "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", + "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", "dev": true, "requires": {} }, @@ -39151,9 +39319,9 @@ "integrity": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==" }, "didi": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/didi/-/didi-10.2.1.tgz", - "integrity": "sha512-NaPoyMxu+78E2O6xE9JQkeTpmVhMcu8xneIKtSfqBuGUBU7LmNUaYtJXJQ2JWRx6iYY69oj4nerXVRWGXAw/IQ==" + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/didi/-/didi-10.2.2.tgz", + "integrity": "sha512-l8NYkYFXV1izHI65EyT8EXOjUZtKmQkHLTT89cSP7HU5J/G7AOj0dXKtLc04EXYlga99PBY18IPjOeZ+c3DI4w==" }, "diff": { "version": "5.1.0", @@ -40712,9 +40880,12 @@ "integrity": "sha512-m4yreHcUWHBncGVV7U+yQzc12vIlq0jMrtHZ5mW6dQMiL/7skSYNVX9wqKwOtyO9SGCgevrAFEgOCAHmamHTUA==" }, "dompurify": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.0.9.tgz", - "integrity": "sha512-uyb4NDIvQ3hRn6NiC+SIFaP4mJ/MdXlvtunaqK9Bn6dD3RuB/1S/gasEjDHD8eiaqdSael2vBv+hOs7Y+jhYOQ==" + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.2.2.tgz", + "integrity": "sha512-YMM+erhdZ2nkZ4fTNRTSI94mb7VG7uVF5vj5Zde7tImgnhZE3R6YW/IACGIHb2ux+QkEXMhe591N+5jWOmL4Zw==", + "requires": { + "@types/trusted-types": "^2.0.7" + } }, "domutils": { "version": "2.8.0", @@ -40914,9 +41085,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.506", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.506.tgz", - "integrity": "sha512-xxGct4GPAKSRlrLBtJxJFYy74W11zX6PO9GyHgl/U+2s3Dp0ZEwAklDfNHXOWcvH7zWMpsmgbR0ggEuaYAVvHA==" + "version": "1.5.68", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.68.tgz", + "integrity": "sha512-FgMdJlma0OzUYlbrtZ4AeXjKxKPk6KT8WOP8BjcqxWtlg8qyJQjRzPJzUtUn5GBg1oQ26hFs7HOOHJMYiJRnvQ==" }, "elkjs": { "version": "0.8.2", @@ -41138,9 +41309,9 @@ "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==" }, "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" }, "escape-goat": { "version": "2.1.1", @@ -41547,16 +41718,16 @@ } }, "expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, "requires": { - "@jest/expect-utils": "^29.6.4", + "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3" + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" } }, "express": { @@ -41827,9 +41998,9 @@ } }, "feelers": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/feelers/-/feelers-1.3.1.tgz", - "integrity": "sha512-vynmIHhjttmT0wfzbI+Nmi84wLbLwUt83NXo5YTQMReIjRwgHhQpxs7koixX/flJIlTG8M4eukc1U1oQAYkhNw==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/feelers/-/feelers-1.4.0.tgz", + "integrity": "sha512-CGa/7ILuqoqTaeYeoKsg/4tzu2es9sEEJTmSjdu0lousZBw4V9gcYhHYFNmbrSrKmbAVfOzj6/DsymGJWFIOeg==", "requires": { "@bpmn-io/cm-theme": "^0.1.0-alpha.2", "@bpmn-io/feel-lint": "^1.2.0", @@ -41845,19 +42016,40 @@ "@lezer/markdown": "^1.1.0", "feelin": "^3.0.1", "lezer-feel": "^1.2.4", - "min-dom": "^4.1.0" + "min-dom": "^5.0.0" + }, + "dependencies": { + "domify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/domify/-/domify-2.0.0.tgz", + "integrity": "sha512-rmvrrmWQPD/X1A/nPBfIVg4r05792QdG9Z4Prk6oQG0F9zBMDkr0GKAdds1wjb2dq1rTz/ywc4ZxpZbgz0tttg==" + }, + "min-dom": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/min-dom/-/min-dom-5.1.1.tgz", + "integrity": "sha512-GaKUlguMAofd3OJsB0OkP17i5kucKqErgVCJxPawO9l5NwIPnr28SAr99zzlzMCWWljISBYrnZVWdE2Q92YGFQ==", + "requires": { + "domify": "^2.0.0", + "min-dash": "^4.2.1" + } + } } }, "feelin": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/feelin/-/feelin-3.0.1.tgz", - "integrity": "sha512-aYXH3UYkM2eopg3scgNRNEo/ecwizKH6qTqkEu5nSLMMlMgfhLDhWrLl7ChG5iHspO9o4Q2YSP1o4wW8q0L2Qw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/feelin/-/feelin-3.2.0.tgz", + "integrity": "sha512-GFDbHsTYk7YXO1tyw1dOjb7IODeAZvNIosdGZThUwPx5XcD/XhO0hnPZXsIbAzSsIdrgGlTEEdby9fZ2gixysA==", "requires": { - "@lezer/lr": "^1.3.9", - "lezer-feel": "^1.2.5", - "luxon": "^3.1.0" + "@lezer/lr": "^1.4.2", + "lezer-feel": "^1.4.0", + "luxon": "^3.5.0" } }, + "fflate": { + "version": "0.4.8", + "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.4.8.tgz", + "integrity": "sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==" + }, "figures": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", @@ -41868,35 +42060,11 @@ } }, "file-drops": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/file-drops/-/file-drops-0.4.0.tgz", - "integrity": "sha512-dPLRxrQ/sWHyU1DMf72doyyFuqeR/T8hJ97coJHXmdeHvqMTdOMJ/PLsHKjQzDHC8TBQO0rDUinDEXz3WGTnQA==", + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/file-drops/-/file-drops-0.5.0.tgz", + "integrity": "sha512-ZaENKwVySae4RhEGjh1gEE1wMnIIPG6XqtOwHNQYSl7RNwUHoRGVVspe+BrW7cUFseHNIit3Oy9Z/HPIEU5XWA==", "requires": { - "min-dom": "^3.1.1" - }, - "dependencies": { - "component-event": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/component-event/-/component-event-0.1.4.tgz", - "integrity": "sha512-GMwOG8MnUHP1l8DZx1ztFO0SJTFnIzZnBDkXAj8RM2ntV2A6ALlDxgbMY1Fvxlg6WPQ+5IM/a6vg4PEYbjg/Rw==" - }, - "min-dash": { - "version": "3.8.1", - "resolved": "https://registry.npmjs.org/min-dash/-/min-dash-3.8.1.tgz", - "integrity": "sha512-evumdlmIlg9mbRVPbC4F5FuRhNmcMS5pvuBUbqb1G9v09Ro0ImPEgz5n3khir83lFok1inKqVDjnKEg3GpDxQg==" - }, - "min-dom": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/min-dom/-/min-dom-3.2.1.tgz", - "integrity": "sha512-v6YCmnDzxk4rRJntWTUiwggLupPw/8ZSRqUq0PDaBwVZEO/wYzCH4SKVBV+KkEvf3u0XaWHly5JEosPtqRATZA==", - "requires": { - "component-event": "^0.1.4", - "domify": "^1.3.1", - "indexof": "0.0.1", - "matches-selector": "^1.2.0", - "min-dash": "^3.8.1" - } - } + "min-dom": "^4.0.3" } }, "file-loader": { @@ -42022,9 +42190,9 @@ } }, "focus-trap": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.5.4.tgz", - "integrity": "sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==", + "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==", "requires": { "tabbable": "^6.2.0" } @@ -43666,9 +43834,9 @@ "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" }, "import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", "dev": true, "requires": { "pkg-dir": "^4.2.0", @@ -43690,11 +43858,6 @@ "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", "integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==" }, - "indexof": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", - "integrity": "sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==" - }, "infima": { "version": "0.2.0-alpha.43", "resolved": "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.43.tgz", @@ -44236,20 +44399,20 @@ "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" }, "istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "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 }, "istanbul-lib-instrument": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", - "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", + "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, "requires": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", + "@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" } @@ -44311,9 +44474,9 @@ } }, "istanbul-reports": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", - "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", "dev": true, "requires": { "html-escaper": "^2.0.0", @@ -44339,25 +44502,25 @@ } }, "jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", - "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "requires": { - "@jest/core": "^29.6.4", + "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.6.4" + "jest-cli": "^29.7.0" } }, "jest-changed-files": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", - "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "requires": { "execa": "^5.0.0", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "p-limit": "^3.1.0" }, "dependencies": { @@ -44373,28 +44536,28 @@ } }, "jest-circus": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", - "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", + "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, "requires": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@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.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", + "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.6.3", + "pretty-format": "^29.7.0", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -44461,22 +44624,21 @@ } }, "jest-cli": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", - "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", + "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, "requires": { - "@jest/core": "^29.6.4", - "@jest/test-result": "^29.6.4", + "@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", - "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "prompts": "^2.0.1", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "yargs": "^17.3.1" }, "dependencies": { @@ -44532,31 +44694,31 @@ } }, "jest-config": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", - "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "requires": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.6.4", + "@jest/test-sequencer": "^29.7.0", "@jest/types": "^29.6.3", - "babel-jest": "^29.6.4", + "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.6.4", - "jest-environment-node": "^29.6.4", + "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.6.4", - "jest-runner": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^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.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -44581,9 +44743,9 @@ } }, "ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "dev": true }, "color-convert": { @@ -44625,15 +44787,15 @@ } }, "jest-diff": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", - "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "requires": { "chalk": "^4.0.0", "diff-sequences": "^29.6.3", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "dependencies": { "ansi-styles": { @@ -44688,25 +44850,25 @@ } }, "jest-docblock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", - "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, "requires": { "detect-newline": "^3.0.0" } }, "jest-each": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", - "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", + "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, "requires": { "@jest/types": "^29.6.3", "chalk": "^4.0.0", "jest-get-type": "^29.6.3", - "jest-util": "^29.6.3", - "pretty-format": "^29.6.3" + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "dependencies": { "ansi-styles": { @@ -44761,17 +44923,17 @@ } }, "jest-environment-node": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", - "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, "requires": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" } }, "jest-get-type": { @@ -44781,9 +44943,9 @@ "dev": true }, "jest-haste-map": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", - "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", + "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, "requires": { "@jest/types": "^29.6.3", @@ -44794,8 +44956,8 @@ "fsevents": "^2.3.2", "graceful-fs": "^4.2.9", "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -44807,13 +44969,13 @@ "dev": true }, "jest-worker": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", - "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "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, "requires": { "@types/node": "*", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" } @@ -44830,25 +44992,25 @@ } }, "jest-leak-detector": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", - "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", + "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, "requires": { "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" } }, "jest-matcher-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", - "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", + "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, "requires": { "chalk": "^4.0.0", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "dependencies": { "ansi-styles": { @@ -44903,9 +45065,9 @@ } }, "jest-message-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", - "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", + "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, "requires": { "@babel/code-frame": "^7.12.13", @@ -44914,7 +45076,7 @@ "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -44971,14 +45133,14 @@ } }, "jest-mock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", - "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "requires": { "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.6.3" + "jest-util": "^29.7.0" } }, "jest-pnp-resolver": { @@ -44995,17 +45157,17 @@ "dev": true }, "jest-resolve": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", - "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "requires": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", + "jest-haste-map": "^29.7.0", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -45063,40 +45225,40 @@ } }, "jest-resolve-dependencies": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", - "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", + "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, "requires": { "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.6.4" + "jest-snapshot": "^29.7.0" } }, "jest-runner": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", - "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "requires": { - "@jest/console": "^29.6.4", - "@jest/environment": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.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.6.3", - "jest-environment-node": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-leak-detector": "^29.6.3", - "jest-message-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runtime": "^29.6.4", - "jest-util": "^29.6.3", - "jest-watcher": "^29.6.4", - "jest-worker": "^29.6.4", + "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" }, @@ -45142,13 +45304,13 @@ "dev": true }, "jest-worker": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", - "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "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, "requires": { "@types/node": "*", - "jest-util": "^29.6.3", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -45201,17 +45363,17 @@ } }, "jest-runtime": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", - "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, "requires": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", - "@jest/globals": "^29.6.4", + "@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.6.4", - "@jest/transform": "^29.6.4", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", @@ -45219,13 +45381,13 @@ "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", + "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.6.4", - "jest-snapshot": "^29.6.4", - "jest-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" }, @@ -45282,9 +45444,9 @@ } }, "jest-snapshot": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", - "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "requires": { "@babel/core": "^7.11.6", @@ -45292,20 +45454,20 @@ "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.6.4", - "@jest/transform": "^29.6.4", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.6.4", + "expect": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-diff": "^29.6.4", + "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "natural-compare": "^1.4.0", - "pretty-format": "^29.6.3", + "pretty-format": "^29.7.0", "semver": "^7.5.3" }, "dependencies": { @@ -45361,9 +45523,9 @@ } }, "jest-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", - "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", + "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, "requires": { "@jest/types": "^29.6.3", @@ -45432,9 +45594,9 @@ } }, "jest-validate": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", - "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", + "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, "requires": { "@jest/types": "^29.6.3", @@ -45442,7 +45604,7 @@ "chalk": "^4.0.0", "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.6.3" + "pretty-format": "^29.7.0" }, "dependencies": { "ansi-styles": { @@ -45497,18 +45659,18 @@ } }, "jest-watcher": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", - "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", + "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, "requires": { - "@jest/test-result": "^29.6.4", + "@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.6.3", + "jest-util": "^29.7.0", "string-length": "^4.0.1" }, "dependencies": { @@ -45634,9 +45796,9 @@ "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" }, "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==" }, "json-buffer": { "version": "3.0.0", @@ -45695,9 +45857,9 @@ "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" }, "json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==" + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" }, "jsonfile": { "version": "6.1.0", @@ -45748,16 +45910,16 @@ "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" }, "lang-feel": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lang-feel/-/lang-feel-2.0.0.tgz", - "integrity": "sha512-cMD6EIhb7vyXLs4kXmaphfZZNr5SkbRxmkfsZUjUJzOV5YxyKBF73VI/8fC3GDUifzs0lVo2DruVszk5igrddg==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/lang-feel/-/lang-feel-2.2.0.tgz", + "integrity": "sha512-Ebo5nftYsMfJzB3Ny8Oy4oaDXZXb5x61qtVVmKv6aImvAZUbT76mD60ZbEilizjZQzsR2CcU1iMK5sacIa1NVA==", "requires": { - "@codemirror/autocomplete": "^6.9.1", - "@codemirror/language": "^6.9.1", - "@codemirror/state": "^6.2.1", - "@codemirror/view": "^6.21.0", - "@lezer/common": "^1.1.2", - "lezer-feel": "^1.2.0" + "@codemirror/autocomplete": "^6.16.2", + "@codemirror/language": "^6.10.2", + "@codemirror/state": "^6.4.1", + "@codemirror/view": "^6.28.1", + "@lezer/common": "^1.2.1", + "lezer-feel": "^1.3.0" } }, "latest-version": { @@ -45787,12 +45949,13 @@ "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" }, "lezer-feel": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/lezer-feel/-/lezer-feel-1.2.8.tgz", - "integrity": "sha512-CO5JEpwNhH1p8mmRRcqMjJrYxO3vNx0nEsF9Ak4OPa1pNHEqvJ2rwYwM9LjZ7jh/Sl5FxbTJT/teF9a+zWmflg==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/lezer-feel/-/lezer-feel-1.4.0.tgz", + "integrity": "sha512-kNxG7O38gwpuYy+C3JCRxQNTCE2qu9uTuH5dE3EGVnRhIQMe6rPDz0S8t3urLEOsMud6HI795m6zX2ujfUaqTw==", "requires": { - "@lezer/highlight": "^1.2.0", - "@lezer/lr": "^1.4.0" + "@lezer/highlight": "^1.2.1", + "@lezer/lr": "^1.4.2", + "min-dash": "^4.2.1" } }, "lilconfig": { @@ -46402,9 +46565,9 @@ } }, "luxon": { - "version": "3.4.4", - "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.4.4.tgz", - "integrity": "sha512-zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA==" + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.5.0.tgz", + "integrity": "sha512-rh+Zjr6DNfUYR3bPwJEnuwDdqMbxZW7LOQfUN4B54+Cl+0o5zaU9RJ6bcidfDtC1cWCZXQ+nvX8bf6bAji37QQ==" }, "make-dir": { "version": "3.1.0", @@ -46525,10 +46688,10 @@ } } }, - "matches-selector": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/matches-selector/-/matches-selector-1.2.0.tgz", - "integrity": "sha512-c4vLwYWyl+Ji+U43eU/G5FwxWd4ZH0ePUsFs5y0uwD9HUEFBXUQ1zUUan+78IpRD+y4pUfG0nAzNM292K7ItvA==" + "marked": { + "version": "15.0.3", + "resolved": "https://registry.npmjs.org/marked/-/marked-15.0.3.tgz", + "integrity": "sha512-Ai0cepvl2NHnTcO9jYDtcOEtVBNVYR31XnEA3BndO7f5As1wzpcOceSUM8FDkNLJNIODcLpDTWay/qQhqbuMvg==" }, "math-random": { "version": "1.0.4", @@ -47038,18 +47201,18 @@ "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" }, "min-dash": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/min-dash/-/min-dash-4.2.1.tgz", - "integrity": "sha512-to+unsToePnm7cUeR9TrMzFlETHd/UXmU+ELTRfWZj5XGT41KF6X3L233o3E/GdEs3sk2Tbw/lOLD1avmWkg8A==" + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/min-dash/-/min-dash-4.2.2.tgz", + "integrity": "sha512-qbhSYUxk6mBaF096B3JOQSumXbKWHenmT97cSpdNzgkWwGjhjhE/KZODCoDNhI2I4C9Cb6R/Q13S4BYkUSXoXQ==" }, "min-dom": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/min-dom/-/min-dom-4.1.0.tgz", - "integrity": "sha512-1lj1EyoSwY/UmTeT/hhPiZTsq+vK9D+8FAJ/53iK5jT1otkG9rJTixSKdjmTieEvdfES+sKbbTptzaQJhnacjA==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/min-dom/-/min-dom-4.2.1.tgz", + "integrity": "sha512-TMoL8SEEIhUWYgkj7XMSgxmwSyGI+4fP2KFFGnN3FbHfbGHVdsLYSz8LoIsgPhz4dWRmLvxWWSMgzZMJW5sZuA==", "requires": { "component-event": "^0.2.1", "domify": "^1.4.1", - "min-dash": "^4.0.0" + "min-dash": "^4.2.1" } }, "mini-create-react-context": { @@ -47159,9 +47322,12 @@ } }, "mixpanel-browser": { - "version": "2.47.0", - "resolved": "https://registry.npmjs.org/mixpanel-browser/-/mixpanel-browser-2.47.0.tgz", - "integrity": "sha512-Ldrva0fRBEIFWmEibBQO1PulfpJVF3pf28Guk09lDirDaSQqqU/xs9zQLwN2rL5VwVtsP1aD3JaCgaa98EjojQ==" + "version": "2.56.0", + "resolved": "https://registry.npmjs.org/mixpanel-browser/-/mixpanel-browser-2.56.0.tgz", + "integrity": "sha512-GYeEz58pV2M9MZtK8vSPL4oJmCwGS08FDDRZvZwr5VJpWdT4Lgyg6zXhmNfCmSTEIw2coaarm7HZ4FL9dAVvnA==", + "requires": { + "rrweb": "2.0.0-alpha.13" + } }, "mkdirp": { "version": "0.5.6", @@ -47216,9 +47382,9 @@ } }, "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==" }, "nanomatch": { "version": "1.2.13", @@ -47409,9 +47575,9 @@ } }, "node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" }, "non-layered-tidy-tree-layout": { "version": "2.0.2", @@ -47976,12 +48142,6 @@ } } }, - "package-json-from-dist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", - "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", - "dev": true - }, "pako": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", @@ -48209,9 +48369,9 @@ "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" }, "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "picomatch": { "version": "2.3.1", @@ -48344,13 +48504,13 @@ "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==" }, "postcss": { - "version": "8.4.16", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz", - "integrity": "sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==", + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", "requires": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "nanoid": "^3.3.7", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" } }, "postcss-calc": { @@ -48681,9 +48841,9 @@ } }, "preact": { - "version": "10.19.6", - "resolved": "https://registry.npmjs.org/preact/-/preact-10.19.6.tgz", - "integrity": "sha512-gympg+T2Z1fG1unB8NH29yHJwnEaCH37Z32diPDku316OTnRPeMbiRV9kTrfZpocXjdfnWuFUl/Mj4BHaf6gnw==" + "version": "10.25.1", + "resolved": "https://registry.npmjs.org/preact/-/preact-10.25.1.tgz", + "integrity": "sha512-frxeZV2vhQSohQwJ7FvlqC40ze89+8friponWUFeVEkaCfhC6Eu4V0iND5C9CXz8JLndV07QRDeXzH1+Anz5Og==" }, "prepend-http": { "version": "2.0.0", @@ -48711,9 +48871,9 @@ } }, "pretty-format": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", - "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "requires": { "@jest/schemas": "^29.6.3", @@ -48885,9 +49045,9 @@ "integrity": "sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==" }, "pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", + "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", "dev": true }, "pushfeedback": { @@ -50317,16 +50477,25 @@ "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==" }, "replace-in-file": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/replace-in-file/-/replace-in-file-8.2.0.tgz", - "integrity": "sha512-hMsQtdYHwWviQT5ZbNsgfu0WuCiNlcUSnnD+aHAL081kbU9dPkPocDaHlDvAHKydTWWpx1apfcEcmvIyQk3CpQ==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/replace-in-file/-/replace-in-file-7.2.0.tgz", + "integrity": "sha512-CiLXVop3o8/h2Kd1PwKPPimmS9wUV0Ki6Fl8+1ITD35nB3Gl/PrW5IONpTE0AXk0z4v8WYcpEpdeZqMXvSnWpg==", "dev": true, "requires": { - "chalk": "^5.3.0", - "glob": "^10.4.2", + "chalk": "^4.1.2", + "glob": "^8.1.0", "yargs": "^17.7.2" }, "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, "brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", @@ -50337,43 +50506,66 @@ } }, "chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } }, - "glob": { - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" + "color-name": "~1.1.4" } }, - "jackspeak": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", "dev": true, "requires": { - "@isaacs/cliui": "^8.0.2", - "@pkgjs/parseargs": "^0.11.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" } }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, "minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, "requires": { "brace-expansion": "^2.0.1" } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, @@ -50489,9 +50681,9 @@ "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==" }, "resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", + "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", "dev": true }, "responselike": { @@ -50565,6 +50757,37 @@ "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz", "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==" }, + "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==", + "requires": { + "rrweb-snapshot": "^2.0.0-alpha.17" + } + }, + "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==", + "requires": { + "@rrweb/types": "^2.0.0-alpha.13", + "@types/css-font-loading-module": "0.0.7", + "@xstate/fsm": "^1.4.0", + "base64-arraybuffer": "^1.0.1", + "fflate": "^0.4.4", + "mitt": "^3.0.0", + "rrdom": "^2.0.0-alpha.13", + "rrweb-snapshot": "^2.0.0-alpha.13" + } + }, + "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==", + "requires": { + "postcss": "^8.4.38" + } + }, "rst-selector-parser": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz", @@ -51113,21 +51336,6 @@ "resolved": "https://registry.npmjs.org/should-util/-/should-util-1.0.1.tgz", "integrity": "sha512-oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g==" }, - "showdown": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/showdown/-/showdown-2.1.0.tgz", - "integrity": "sha512-/6NVYu4U819R2pUIk79n67SYgJHWCce0a5xTP979WbNp0FL9MN1I1QK662IDU1b6JzKTvmhgI7T7JYIxBi3kMQ==", - "requires": { - "commander": "^9.0.0" - }, - "dependencies": { - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==" - } - } - }, "side-channel": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", @@ -51392,9 +51600,9 @@ "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" }, "source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + "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==" }, "source-map-resolve": { "version": "0.5.3", @@ -52321,11 +52529,6 @@ "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==" }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" - }, "to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", @@ -52975,12 +53178,12 @@ } }, "update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.0" } }, "update-notifier": { @@ -53221,14 +53424,22 @@ } }, "v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", + "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", "dev": true, "requires": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" + "convert-source-map": "^2.0.0" + }, + "dependencies": { + "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 + } } }, "validate-npm-package-license": { diff --git a/package.json b/package.json index 6a79a024e2..0bc82be266 100644 --- a/package.json +++ b/package.json @@ -32,8 +32,8 @@ "api:generate:camunda": "npm run api:generate camunda" }, "dependencies": { - "@auth0/auth0-react": "^2.2.1", - "@bpmn-io/form-js": "^1.7.3", + "@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", @@ -43,7 +43,7 @@ "docusaurus": "^1.14.7", "docusaurus-plugin-openapi-docs": "^2.0.4", "docusaurus-theme-openapi-docs": "^2.0.4", - "mixpanel-browser": "^2.47.0", + "mixpanel-browser": "^2.56.0", "pushfeedback-react": "^0.1.30", "react": "^17.0.2", "react-dom": "^17.0.2", @@ -65,13 +65,13 @@ "devDependencies": { "@playwright/test": "^1.49.0", "@swc/core": "^1.9.3", - "@types/jest": "^29.5.4", + "@types/jest": "^29.5.14", "husky": "^8.0.3", - "jest": "^29.6.4", + "jest": "^29.7.0", "lint-staged": "^14.0.1", "playwright": "^1.49.0", "prettier": "3.3.3", - "replace-in-file": "^8.2.0", + "replace-in-file": "^7.2.0", "swc-loader": "^0.2.3" }, "lint-staged": { diff --git a/sidebars.js b/sidebars.js index b11ff2ab3c..34f8930295 100644 --- a/sidebars.js +++ b/sidebars.js @@ -339,6 +339,7 @@ module.exports = { "components/connectors/out-of-the-box-connectors/googledrive", "components/connectors/out-of-the-box-connectors/google-maps-platform", "components/connectors/out-of-the-box-connectors/google-sheets", + "components/connectors/out-of-the-box-connectors/google-gemini", ], }, "components/connectors/out-of-the-box-connectors/hugging-face", @@ -812,66 +813,64 @@ module.exports = { ], }, { - Clients: [ + "Clients & SDKs": [ { - "Java client": [ - "apis-tools/java-client/index", - "apis-tools/java-client/job-worker", - "apis-tools/java-client/logging", - "apis-tools/java-client/zeebe-process-test", + SDKs: [ + "apis-tools/node-js-sdk", { - Examples: [ - "apis-tools/java-client-examples/index", - "apis-tools/java-client-examples/process-deploy", - "apis-tools/java-client-examples/process-instance-create", - "apis-tools/java-client-examples/process-instance-create-nonblocking", - "apis-tools/java-client-examples/process-instance-create-with-result", - "apis-tools/java-client-examples/decision-evaluate", - "apis-tools/java-client-examples/job-worker-open", - "apis-tools/java-client-examples/data-pojo", - "apis-tools/java-client-examples/cluster-topology-request", + "Spring Zeebe": [ + "apis-tools/spring-zeebe-sdk/getting-started", + "apis-tools/spring-zeebe-sdk/configuration", ], }, ], }, { - "Community clients": [ - "apis-tools/community-clients/index", + Clients: [ { - "Zeebe clients": [ - "apis-tools/community-clients/c-sharp", - "apis-tools/community-clients/micronaut", - "apis-tools/community-clients/python", - "apis-tools/community-clients/ruby", - "apis-tools/community-clients/rust", - "apis-tools/community-clients/quarkus", + "Java client": [ + "apis-tools/java-client/index", + "apis-tools/java-client/job-worker", + "apis-tools/java-client/logging", + "apis-tools/java-client/zeebe-process-test", { - "CLI client": [ - "apis-tools/community-clients/cli-client/index", - "apis-tools/community-clients/cli-client/cli-get-started", + Examples: [ + "apis-tools/java-client-examples/index", + "apis-tools/java-client-examples/process-deploy", + "apis-tools/java-client-examples/process-instance-create", + "apis-tools/java-client-examples/process-instance-create-nonblocking", + "apis-tools/java-client-examples/process-instance-create-with-result", + "apis-tools/java-client-examples/decision-evaluate", + "apis-tools/java-client-examples/job-worker-open", + "apis-tools/java-client-examples/data-pojo", + "apis-tools/java-client-examples/cluster-topology-request", ], - "Go client": [ - "apis-tools/community-clients/go-client/index", - "apis-tools/community-clients/go-client/go-get-started", - "apis-tools/community-clients/go-client/job-worker", + }, + ], + }, + { + "Community clients": [ + "apis-tools/community-clients/index", + { + "Zeebe clients": [ + { + "CLI client": [ + "apis-tools/community-clients/cli-client/index", + "apis-tools/community-clients/cli-client/cli-get-started", + ], + "Go client": [ + "apis-tools/community-clients/go-client/index", + "apis-tools/community-clients/go-client/go-get-started", + "apis-tools/community-clients/go-client/job-worker", + ], + }, ], }, + "apis-tools/build-your-own-client", ], }, ], }, - "apis-tools/build-your-own-client", - ], - }, - { - SDKs: [ - "apis-tools/node-js-sdk", - { - "Spring Zeebe": [ - "apis-tools/spring-zeebe-sdk/getting-started", - "apis-tools/spring-zeebe-sdk/configuration", - ], - }, ], }, require("./docs/apis-tools/frontend-development/sidebar-schema"), @@ -887,11 +886,29 @@ module.exports = { }, ], }, + { + "Migration manuals": [ + "apis-tools/migration-manuals/migrate-to-zeebe-user-tasks", + "apis-tools/migration-manuals/migrate-to-camunda-api", + ], + }, ], Reference: [ "reference/overview", - "reference/announcements", + { + type: "category", + label: "Announcements", + link: { + type: "doc", + id: "reference/announcements", + }, + items: [ + "reference/announcements/announcements-870", + "reference/announcements/announcements-860", + "reference/announcements/announcements-850", + ], + }, { type: "category", label: "Release notes", diff --git a/src/css/custom.css b/src/css/custom.css index 0e6a94e3e3..32c6f23d82 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -187,6 +187,9 @@ svg.implemented:hover [stroke="#333"] { margin-left: 0; margin-bottom: 1.5rem; } +h2 .badge:nth-of-type(1) { + margin-bottom: 0rem; +} h3 .badge:nth-of-type(1) { margin-bottom: 0rem; } @@ -588,6 +591,20 @@ h2#request { margin-bottom: 20px; padding-bottom: 0px; } +h2 .badge--long, +h2 .badge--beginner, +h2 .badge--cloud { + margin-bottom: 0; + font-size: 12px; + margin-left: 5px; + vertical-align: middle; +} +/* Third level page heading */ +h2 .badge--long:nth-of-type(1), +h2 .badge--beginner:nth-of-type(1), +h2 .badge--cloud:nth-of-type(1) { + margin-left: 5px; +} /* Second level page heading */ h3 { margin-bottom: 0.8rem; @@ -611,6 +628,13 @@ h3 .badge--long { margin-left: 5px; vertical-align: middle; } +h3 .badge--medium { + margin-bottom: 0; + font-size: 12px; + margin-left: 5px; + vertical-align: middle; +} + /* Third level page heading */ h3 .badge--long:nth-of-type(1) { margin-left: 5px; @@ -673,3 +697,19 @@ ul ol { .menu__link--active:not(.menu__link--sublist) { font-weight: 600; } + +/* double column div layout */ +.double-column-container { + display: flex; +} +.double-column-left { + flex: 1; +} +.double-column-right { + flex: 3; +} +@media (max-width: 768px) { + .double-column-container { + flex-direction: column; + } +} diff --git a/src/mdx/expandVersionedUrl.spec.js b/src/mdx/expandVersionedUrl.spec.js index 29d1480fa8..1e43601b0c 100644 --- a/src/mdx/expandVersionedUrl.spec.js +++ b/src/mdx/expandVersionedUrl.spec.js @@ -1,4 +1,5 @@ const expandVersionedUrl = require("./expandVersionedUrl"); +const { versionMappings } = require("../versions"); describe("expandVersionedUrl", () => { describe("unexpandable URLs", () => { @@ -13,6 +14,8 @@ describe("expandVersionedUrl", () => { ); }); + const [currentVersionMapping, olderVersionMapping] = versionMappings; + describe("when source is from optimize docs", () => { const targetUrl = "$docs$/some/thing"; @@ -23,12 +26,12 @@ describe("expandVersionedUrl", () => { ], [ - "/Users/monkeypants/camunda-docs/optimize_versioned_docs/version-3.10.0/what-is-optimize.md", + `/Users/monkeypants/camunda-docs/optimize_versioned_docs/version-${currentVersionMapping.optimizeVersion}/what-is-optimize.md`, "/docs/some/thing", ], [ - "/Users/monkeypants/camunda-docs/optimize_versioned_docs/version-3.7.0/what-is-optimize.md", - "/docs/1.3/some/thing", + `/Users/monkeypants/camunda-docs/optimize_versioned_docs/version-${olderVersionMapping.optimizeVersion}/what-is-optimize.md`, + `/docs/${olderVersionMapping.docsVersion}/some/thing`, ], ])("when in %s it expands to %s", (sourcePath, expandedUrl) => { expect(expandVersionedUrl(targetUrl, sourcePath)).toEqual(expandedUrl); @@ -44,12 +47,12 @@ describe("expandVersionedUrl", () => { "/optimize/next/some/thing", ], [ - "/Users/monkeypants/camunda-docs/versioned_docs/version-8.2/what-is-optimize.md", + `/Users/monkeypants/camunda-docs/versioned_docs/version-${currentVersionMapping.docsVersion}/what-is-optimize.md`, "/optimize/some/thing", ], [ - "/Users/monkeypants/camunda-docs/versioned_docs/version-1.3/what-is-optimize.md", - "/optimize/3.7.0/some/thing", + `/Users/monkeypants/camunda-docs/versioned_docs/version-${olderVersionMapping.docsVersion}/what-is-optimize.md`, + `/optimize/${olderVersionMapping.optimizeVersion}/some/thing`, ], ])("when in %s it expands to %s", (sourcePath, expandedUrl) => { expect(expandVersionedUrl(targetUrl, sourcePath)).toEqual(expandedUrl); diff --git a/static/.htaccess b/static/.htaccess index 2337627e4f..5455aece44 100644 --- a/static/.htaccess +++ b/static/.htaccess @@ -95,6 +95,19 @@ RewriteRule ^docs/reference/bpmn-processes/?(.*)$ /docs/components/modeler/bpmn/ # 8.7: content moves introduced prior to the release of version 8.7. #--------------------------------------------------------------------------------- +# Move migrating to Zeebe user tasks +RewriteRule ^docs/next/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks/?$ /docs/next/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks/$1 [R=301,L] +RewriteRule ^docs/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks/?$ /docs/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks/$1 [R=301,L] +RewriteRule ^docs/8.6/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks/?$ /docs/8.6/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks/$1 [R=301,L] + +# Remove community clients +RewriteRule ^docs/apis-tools/community-clients/c-sharp/?$ /docs/apis-tools/community-clients/$1 [R=301,L] +RewriteRule ^docs/apis-tools/community-clients/micronaut/?$ /docs/apis-tools/community-clients/$1 [R=301,L] +RewriteRule ^docs/apis-tools/community-clients/python/?$ /docs/apis-tools/community-clients/$1 [R=301,L] +RewriteRule ^docs/apis-tools/community-clients/quarkus/?$ /docs/apis-tools/community-clients/$1 [R=301,L] +RewriteRule ^docs/apis-tools/community-clients/ruby/?$ /docs/apis-tools/community-clients/$1 [R=301,L] +RewriteRule ^docs/apis-tools/community-clients/rust/?$ /docs/apis-tools/community-clients/$1 [R=301,L] + # Move contact page RewriteRule ^contact/?$ /docs/reference/contact/ [R=301,L] diff --git a/versioned_docs/version-8.3/components/modeler/bpmn/call-activities/call-activities.md b/versioned_docs/version-8.3/components/modeler/bpmn/call-activities/call-activities.md index fa612a2eab..0cdba794a1 100644 --- a/versioned_docs/version-8.3/components/modeler/bpmn/call-activities/call-activities.md +++ b/versioned_docs/version-8.3/components/modeler/bpmn/call-activities/call-activities.md @@ -32,10 +32,6 @@ When a non-interrupting boundary event is triggered, the created process instanc ## Variable mappings -By default, all variables of the call activity scope are copied to the created process instance. This can be limited to copying only the local variables of the call activity, by setting the attribute `propagateAllParentVariables` to `false`. - -By disabling this attribute, variables existing at higher scopes are no longer copied. If the attribute `propagateAllParentVariables` is set (default: `true`), all variables are propagated to the child process instance. - Input mappings can be used to create new local variables in the scope of the call activity. These variables are also copied to the created process instance. If the attribute `propagateAllChildVariables` is set (default: `true`), all variables of the created process instance are propagated to the call activity. This behavior can be customized by defining output mappings at the call activity. The output mappings are applied on completing the call activity and only those variables that are defined in the output mappings are propagated. diff --git a/versioned_docs/version-8.3/components/modeler/web-modeler/camunda-marketplace.md b/versioned_docs/version-8.3/components/modeler/web-modeler/camunda-marketplace.md index 9b026b9d57..5fee9c721d 100644 --- a/versioned_docs/version-8.3/components/modeler/web-modeler/camunda-marketplace.md +++ b/versioned_docs/version-8.3/components/modeler/web-modeler/camunda-marketplace.md @@ -14,6 +14,10 @@ The Camunda Marketplace can be accessed via your [browser](https://marketplace.c ## Visit the Camunda Marketplace +:::note +Connectors created by partners or the community are not part of the commercial Camunda product. Camunda does not support these Connectors as part of its commercial services to enterprise customers. Please evaluate each client to make sure it meets your requirements before using. +::: + To navigate to the Camunda Marketplace, take the following steps: 1. Log in to your Camunda account, and navigate to Web Modeler using the **Camunda components** icon in the top left corner of your console. Click **Modeler**. diff --git a/versioned_docs/version-8.3/self-managed/zeebe-deployment/configuration/priority-election.md b/versioned_docs/version-8.3/self-managed/zeebe-deployment/configuration/priority-election.md index 4e466a0640..d7fc45c041 100644 --- a/versioned_docs/version-8.3/self-managed/zeebe-deployment/configuration/priority-election.md +++ b/versioned_docs/version-8.3/self-managed/zeebe-deployment/configuration/priority-election.md @@ -10,8 +10,8 @@ It aims to achieve a more uniform leader distribution by assigning each node a p ## Configuration -Enable priority election by setting `zeebe.broker.raft.enablePriorityElection = "true"` in your config or -by setting the equivalent environment variable `ZEEBE_BROKER_RAFT_ENABLEPRIORITYELECTION="true"`. +Enable priority election by setting `zeebe.broker.cluster.raft.enablePriorityElection=true` in your config or +by setting the equivalent environment variable `ZEEBE_BROKER_CLUSTER_RAFT_ENABLEPRIORITYELECTION=true`. If you are using the fixed partitioning scheme (experimental), you may need [additional configuration](fixed-partitioning.md#priority-election). @@ -19,7 +19,7 @@ If you are using the fixed partitioning scheme (experimental), you may need [add With priority election enabled, election latency and thus failover time increases. -The result of leader election is not deterministic and priority election can only increase the chance of having a +The result of a leader election is not deterministic, and priority election can only increase the chance of having a uniform leader distribution, not guarantee it. -Factors such as high load can prevent high priority nodes from becoming the leader. +Factors such as high load can prevent high-priority nodes from becoming the leader. diff --git a/versioned_docs/version-8.4/components/modeler/bpmn/call-activities/call-activities.md b/versioned_docs/version-8.4/components/modeler/bpmn/call-activities/call-activities.md index fa612a2eab..0cdba794a1 100644 --- a/versioned_docs/version-8.4/components/modeler/bpmn/call-activities/call-activities.md +++ b/versioned_docs/version-8.4/components/modeler/bpmn/call-activities/call-activities.md @@ -32,10 +32,6 @@ When a non-interrupting boundary event is triggered, the created process instanc ## Variable mappings -By default, all variables of the call activity scope are copied to the created process instance. This can be limited to copying only the local variables of the call activity, by setting the attribute `propagateAllParentVariables` to `false`. - -By disabling this attribute, variables existing at higher scopes are no longer copied. If the attribute `propagateAllParentVariables` is set (default: `true`), all variables are propagated to the child process instance. - Input mappings can be used to create new local variables in the scope of the call activity. These variables are also copied to the created process instance. If the attribute `propagateAllChildVariables` is set (default: `true`), all variables of the created process instance are propagated to the call activity. This behavior can be customized by defining output mappings at the call activity. The output mappings are applied on completing the call activity and only those variables that are defined in the output mappings are propagated. diff --git a/versioned_docs/version-8.4/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md b/versioned_docs/version-8.4/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md index 56bee823e4..5a1b961b48 100644 --- a/versioned_docs/version-8.4/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md +++ b/versioned_docs/version-8.4/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md @@ -14,6 +14,8 @@ When an embedded subprocess is entered, the start event is activated. The subpro Embedded subprocesses are often used together with **boundary events**. One or more boundary events can be attached to a subprocess. When an interrupting boundary event is triggered, the entire subprocess (including all active elements) is terminated. +When adding an embedded subprocess to your model, you can either add a collapsed or expanded subprocess. You cannot collapse an existing expanded subprocess in your model. + ## Collapsed subprocesses :::caution @@ -22,7 +24,7 @@ Collapsed subprocesses are currently only partially supported by Optimize. While All other Camunda components fully support collapsed subprocesses. ::: -A subprocess can be collapsed to conceal its internal details, thereby hiding complexity within an activity and enabling the nesting of multiple levels of subprocesses. This functionality allows you to simplify the view of a process diagram and facilitates drill-down capabilities to examine details. +A collapsed subprocess conceals its internal details, thereby hiding complexity within an activity and enabling the nesting of multiple levels of subprocesses. This functionality allows you to simplify the view of a process diagram and facilitates drill-down capabilities to examine details. Collapsed subprocesses serve purely display purposes. For the creation of reusable processes, it is recommended to utilize [call activities](../call-activities/call-activities.md). diff --git a/versioned_docs/version-8.4/components/modeler/web-modeler/camunda-marketplace.md b/versioned_docs/version-8.4/components/modeler/web-modeler/camunda-marketplace.md index 9b026b9d57..5fee9c721d 100644 --- a/versioned_docs/version-8.4/components/modeler/web-modeler/camunda-marketplace.md +++ b/versioned_docs/version-8.4/components/modeler/web-modeler/camunda-marketplace.md @@ -14,6 +14,10 @@ The Camunda Marketplace can be accessed via your [browser](https://marketplace.c ## Visit the Camunda Marketplace +:::note +Connectors created by partners or the community are not part of the commercial Camunda product. Camunda does not support these Connectors as part of its commercial services to enterprise customers. Please evaluate each client to make sure it meets your requirements before using. +::: + To navigate to the Camunda Marketplace, take the following steps: 1. Log in to your Camunda account, and navigate to Web Modeler using the **Camunda components** icon in the top left corner of your console. Click **Modeler**. diff --git a/versioned_docs/version-8.4/self-managed/zeebe-deployment/configuration/priority-election.md b/versioned_docs/version-8.4/self-managed/zeebe-deployment/configuration/priority-election.md index 4e466a0640..d7fc45c041 100644 --- a/versioned_docs/version-8.4/self-managed/zeebe-deployment/configuration/priority-election.md +++ b/versioned_docs/version-8.4/self-managed/zeebe-deployment/configuration/priority-election.md @@ -10,8 +10,8 @@ It aims to achieve a more uniform leader distribution by assigning each node a p ## Configuration -Enable priority election by setting `zeebe.broker.raft.enablePriorityElection = "true"` in your config or -by setting the equivalent environment variable `ZEEBE_BROKER_RAFT_ENABLEPRIORITYELECTION="true"`. +Enable priority election by setting `zeebe.broker.cluster.raft.enablePriorityElection=true` in your config or +by setting the equivalent environment variable `ZEEBE_BROKER_CLUSTER_RAFT_ENABLEPRIORITYELECTION=true`. If you are using the fixed partitioning scheme (experimental), you may need [additional configuration](fixed-partitioning.md#priority-election). @@ -19,7 +19,7 @@ If you are using the fixed partitioning scheme (experimental), you may need [add With priority election enabled, election latency and thus failover time increases. -The result of leader election is not deterministic and priority election can only increase the chance of having a +The result of a leader election is not deterministic, and priority election can only increase the chance of having a uniform leader distribution, not guarantee it. -Factors such as high load can prevent high priority nodes from becoming the leader. +Factors such as high load can prevent high-priority nodes from becoming the leader. diff --git a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md index b4f17bacb4..548529ec36 100644 --- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md +++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md @@ -12,8 +12,8 @@ import TableTextSmall from "./assets/react-components/TableTextSmall"; import userTaskMigrationDecisionHelperForm from "./assets/forms/userTaskMigrationDecisionHelperForm.js"; import "./assets/css/condensedTable.module.css"; import styles from "./assets/css/cleanImages.module.css"; -import APIArchitectureImg from './assets/img/api-architecture.png'; import ZeebeTaskSelectionImg from './assets/img/zeebe-user-task-selection.png'; +import APIArchitectureImg from './assets/img/api-architecture.png'; Camunda 8.5 introduces a new [user task](/components/modeler/bpmn/user-tasks/user-tasks.md) implementation type: Zeebe user tasks. Zeebe user tasks have several benefits, including: diff --git a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md index 51b479a2a4..e0203e390e 100644 --- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md +++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md @@ -5,6 +5,12 @@ sidebar_position: 1 description: "Build applications for human-centered processes by querying human tasks, assigning users, and completing tasks with the Tasklist API." --- +:::note +Camunda introduced [Zeebe user tasks](/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md) with `8.5` to build more advanced functionalities. If you use Zeebe user tasks with `8.5`, task management endpoints in the Tasklist API will not work. + +To manage Zeebe user tasks Camunda has introduced the [Zeebe REST API](/apis-tools/zeebe-api-rest/zeebe-api-rest-overview.md), though you can still query Zeebe user tasks with the Tasklist API. +::: + ## Introduction The Tasklist API is a REST API designed to build task applications for human-centered processes. The API allows you to query user tasks, assign users to these tasks, and complete these tasks. diff --git a/versioned_docs/version-8.5/components/concepts/workflow-patterns.md b/versioned_docs/version-8.5/components/concepts/workflow-patterns.md index ace1b2cbd6..8d148ee15e 100644 --- a/versioned_docs/version-8.5/components/concepts/workflow-patterns.md +++ b/versioned_docs/version-8.5/components/concepts/workflow-patterns.md @@ -276,10 +276,6 @@ An important problem to solve is how to roll back a business transaction in case In BPMN, you can use [compensation events](/components/modeler/bpmn/bpmn-coverage.md) to easily implement compensations in your processes. -:::note -The compensation event is supported in Camunda 7, but not yet in Camunda 8. It is on the roadmap and will eventually be available in Camunda 8. -::: -
1 diff --git a/versioned_docs/version-8.5/components/modeler/bpmn/call-activities/call-activities.md b/versioned_docs/version-8.5/components/modeler/bpmn/call-activities/call-activities.md index e3c522b341..154e43211f 100644 --- a/versioned_docs/version-8.5/components/modeler/bpmn/call-activities/call-activities.md +++ b/versioned_docs/version-8.5/components/modeler/bpmn/call-activities/call-activities.md @@ -32,10 +32,6 @@ When a non-interrupting boundary event is triggered, the created process instanc ## Variable mappings -By default, all variables of the call activity scope are copied to the created process instance. This can be limited to copying only the local variables of the call activity, by setting the attribute `propagateAllParentVariables` to `false`. - -By disabling this attribute, variables existing at higher scopes are no longer copied. If the attribute `propagateAllParentVariables` is set (default: `true`), all variables are propagated to the child process instance. - Input mappings can be used to create new local variables in the scope of the call activity. These variables are also copied to the created process instance. If the attribute `propagateAllChildVariables` is set (default: `true`), all variables of the created process instance are propagated to the call activity. This behavior can be customized by defining output mappings at the call activity. The output mappings are applied on completing the call activity and only those variables that are defined in the output mappings are propagated. diff --git a/versioned_docs/version-8.5/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md b/versioned_docs/version-8.5/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md index 56bee823e4..5a1b961b48 100644 --- a/versioned_docs/version-8.5/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md +++ b/versioned_docs/version-8.5/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md @@ -14,6 +14,8 @@ When an embedded subprocess is entered, the start event is activated. The subpro Embedded subprocesses are often used together with **boundary events**. One or more boundary events can be attached to a subprocess. When an interrupting boundary event is triggered, the entire subprocess (including all active elements) is terminated. +When adding an embedded subprocess to your model, you can either add a collapsed or expanded subprocess. You cannot collapse an existing expanded subprocess in your model. + ## Collapsed subprocesses :::caution @@ -22,7 +24,7 @@ Collapsed subprocesses are currently only partially supported by Optimize. While All other Camunda components fully support collapsed subprocesses. ::: -A subprocess can be collapsed to conceal its internal details, thereby hiding complexity within an activity and enabling the nesting of multiple levels of subprocesses. This functionality allows you to simplify the view of a process diagram and facilitates drill-down capabilities to examine details. +A collapsed subprocess conceals its internal details, thereby hiding complexity within an activity and enabling the nesting of multiple levels of subprocesses. This functionality allows you to simplify the view of a process diagram and facilitates drill-down capabilities to examine details. Collapsed subprocesses serve purely display purposes. For the creation of reusable processes, it is recommended to utilize [call activities](../call-activities/call-activities.md). diff --git a/versioned_docs/version-8.5/components/modeler/web-modeler/camunda-marketplace.md b/versioned_docs/version-8.5/components/modeler/web-modeler/camunda-marketplace.md index aeaf0878b6..464df80d09 100644 --- a/versioned_docs/version-8.5/components/modeler/web-modeler/camunda-marketplace.md +++ b/versioned_docs/version-8.5/components/modeler/web-modeler/camunda-marketplace.md @@ -14,6 +14,10 @@ The Camunda Marketplace can be accessed via your [browser](https://marketplace.c ## Visit the Camunda Marketplace +:::note +Connectors created by partners or the community are not part of the commercial Camunda product. Camunda does not support these Connectors as part of its commercial services to enterprise customers. Please evaluate each client to make sure it meets your requirements before using. +::: + To navigate to the Camunda Marketplace, take the following steps: 1. Log in to your Camunda account, and navigate to Web Modeler using the **Camunda components** icon in the top left corner of your console. Click **Modeler**. diff --git a/versioned_docs/version-8.5/self-managed/zeebe-deployment/configuration/priority-election.md b/versioned_docs/version-8.5/self-managed/zeebe-deployment/configuration/priority-election.md index 4e466a0640..d7fc45c041 100644 --- a/versioned_docs/version-8.5/self-managed/zeebe-deployment/configuration/priority-election.md +++ b/versioned_docs/version-8.5/self-managed/zeebe-deployment/configuration/priority-election.md @@ -10,8 +10,8 @@ It aims to achieve a more uniform leader distribution by assigning each node a p ## Configuration -Enable priority election by setting `zeebe.broker.raft.enablePriorityElection = "true"` in your config or -by setting the equivalent environment variable `ZEEBE_BROKER_RAFT_ENABLEPRIORITYELECTION="true"`. +Enable priority election by setting `zeebe.broker.cluster.raft.enablePriorityElection=true` in your config or +by setting the equivalent environment variable `ZEEBE_BROKER_CLUSTER_RAFT_ENABLEPRIORITYELECTION=true`. If you are using the fixed partitioning scheme (experimental), you may need [additional configuration](fixed-partitioning.md#priority-election). @@ -19,7 +19,7 @@ If you are using the fixed partitioning scheme (experimental), you may need [add With priority election enabled, election latency and thus failover time increases. -The result of leader election is not deterministic and priority election can only increase the chance of having a +The result of a leader election is not deterministic, and priority election can only increase the chance of having a uniform leader distribution, not guarantee it. -Factors such as high load can prevent high priority nodes from becoming the leader. +Factors such as high load can prevent high-priority nodes from becoming the leader. diff --git a/versioned_docs/version-8.6/apis-tools/frontend-development/01-task-applications/03-task-application-architecture.md b/versioned_docs/version-8.6/apis-tools/frontend-development/01-task-applications/03-task-application-architecture.md index 50dfb21ef1..b0027b9582 100644 --- a/versioned_docs/version-8.6/apis-tools/frontend-development/01-task-applications/03-task-application-architecture.md +++ b/versioned_docs/version-8.6/apis-tools/frontend-development/01-task-applications/03-task-application-architecture.md @@ -6,10 +6,10 @@ description: "Understand and decide on the architecture of your task application A typical task application architecture consists of a task application frontend, a backend-for-frontend, and one or more data sources or services that contain business data relevant for the application users to perform their work. The backend implements Camunda Zeebe and Tasklist clients to retrieve and interact with tasks via Camunda APIs. For historical process instance data, Operate is also required. -Depending on the user task implementation type (job-based vs Zeebe user task) you use in your processes, you need to run either the Tasklist or Zeebe client to run operations on task. Task, form, and variable retrieval happens via the Tasklist API. Learn more about the differences of the task implementation types in the [migration guide for Zeebe user tasks](/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md). +Depending on the user task implementation type (job worker-based vs Zeebe user task) you use in your processes, you need to run either the Tasklist or Zeebe client to run operations on task. Task, form, and variable retrieval happens via the API. Learn more about the differences of the task implementation types in the [migration guide for Zeebe user tasks](/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md). :::tip -Starting a completely new project? Use only Zeebe user tasks to simplify your implementation. +Starting a new project? Use Zeebe user tasks to simplify your implementation. ::: Click on any element of this diagram to jump to the documentation page for the respective component: @@ -72,14 +72,14 @@ style Tasklist stroke:#10c95d,color:#000 click Forms "../../forms/introduction-to-forms" click Rest "../../../tasklist-api-rest/tasklist-api-rest-overview" -click Job "../../../tasklist-api-rest/migrate-to-zeebe-user-tasks" -click ZeebeTasks "../../../tasklist-api-rest/migrate-to-zeebe-user-tasks" +click Job "../../../migration-manuals/migrate-to-zeebe-user-tasks" +click ZeebeTasks "../../../migration-manuals/migrate-to-zeebe-user-tasks" click ZeebeRest "../../../zeebe-api-rest/zeebe-api-rest-overview" ``` Follow these resources to learn more about the individual components: -- Familiarize yourself with the [Tasklist API](/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md) for task, variable, and form retrieval, and to run operations on job-based user tasks. -- Learn how to use the [Zeebe API](/apis-tools/zeebe-api-rest/zeebe-api-rest-overview.md) to run operations on Zeebe-based user tasks. +- Learn how to use the [Camunda 8 API](/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx) for task, variable, and form retrieval, and to run operations on Zeebe user tasks. +- Familiarize yourself with the [Tasklist API](/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md) to run operations on job worker-based user tasks. - Understand how to design, embed, and customize [forms](/apis-tools/frontend-development/03-forms/01-introduction-to-forms.md). - Understand how this architecture fits into the overall Camunda architecture with the [Java greenfield stack](/components/best-practices/architecture/deciding-about-your-stack.md). diff --git a/versioned_docs/version-8.6/apis-tools/java-client/index.md b/versioned_docs/version-8.6/apis-tools/java-client/index.md index 0768a607df..30212b1bdc 100644 --- a/versioned_docs/version-8.6/apis-tools/java-client/index.md +++ b/versioned_docs/version-8.6/apis-tools/java-client/index.md @@ -52,8 +52,8 @@ In Java code, instantiate the client as follows: .build(); try (ZeebeClient client = ZeebeClient.newClientBuilder() - .grpcAddress(zeebeGrpc) - .restAddress(zeebeRest) + .grpcAddress(URI.create(zeebeGrpc)) + .restAddress(URI.create(zeebeRest)) .credentialsProvider(credentialsProvider) .build()) { client.newTopologyRequest().send().join(); diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md b/versioned_docs/version-8.6/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md similarity index 57% rename from versioned_docs/version-8.6/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md rename to versioned_docs/version-8.6/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md index b4f17bacb4..d1f19118f9 100644 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md +++ b/versioned_docs/version-8.6/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md @@ -1,32 +1,32 @@ --- id: migrate-to-zeebe-user-tasks title: Migrate to Zeebe user tasks -description: "Learn how to migrate job worker-based user tasks to Zeebe-based tasks." +description: "Learn how to migrate job worker-based user tasks to Zeebe user tasks." --- import DocCardList from '@theme/DocCardList'; import FormViewer from "@site/src/mdx/FormViewer"; -import YesItem from "./assets/react-components/YesItem"; -import NoItem from "./assets/react-components/NoItem"; -import TableTextSmall from "./assets/react-components/TableTextSmall"; -import userTaskMigrationDecisionHelperForm from "./assets/forms/userTaskMigrationDecisionHelperForm.js"; -import "./assets/css/condensedTable.module.css"; -import styles from "./assets/css/cleanImages.module.css"; -import APIArchitectureImg from './assets/img/api-architecture.png'; -import ZeebeTaskSelectionImg from './assets/img/zeebe-user-task-selection.png'; - -Camunda 8.5 introduces a new [user task](/components/modeler/bpmn/user-tasks/user-tasks.md) implementation type: Zeebe user tasks. -Zeebe user tasks have several benefits, including: +import YesItem from "../tasklist-api-rest/assets/react-components/YesItem"; +import NoItem from "../tasklist-api-rest/assets/react-components/NoItem"; +import TableTextSmall from "../tasklist-api-rest/assets/react-components/TableTextSmall"; +import userTaskMigrationDecisionHelperForm from "../tasklist-api-rest/assets/forms/userTaskMigrationDecisionHelperForm.js"; +import "../tasklist-api-rest/assets/css/condensedTable.module.css"; +import styles from "../tasklist-api-rest/assets/css/cleanImages.module.css"; +import ZeebeTaskSelectionImg from '../tasklist-api-rest/assets/img/zeebe-user-task-selection.png'; + +Camunda 8.5 introduced a new [user task](/components/modeler/bpmn/user-tasks/user-tasks.md) implementation type: Zeebe user tasks. + +Zeebe user tasks have several benefits compared to job worked-based user tasks. It includes: - Running directly on the automation engine for high performance. - Removing dependencies and round trips to Tasklist. -- A more powerful API that supports the full task lifecycle. +- A powerful API that supports the full task lifecycle. In this guide, you will learn: - Under which circumstances and when you should migrate. - How to estimate the impact on a project. -- The steps you need to take for a successful migration without interrupting your operations. +- Steps you need to take for a successful migration without interrupting your operations. ## Decide on your migration path @@ -34,17 +34,6 @@ Zeebe user tasks require migration of the user tasks in both your diagrams and t With this in mind, you can migrate at your own pace. If you should migrate now or later, and what is required to migrate depends on your current setup and future plans. -Use the following decision helper questionnaire to figure out what's right for you: - - - ### Task type differences Learn the differences between both task types and make an informed decision, and understand the new capabilities of Zeebe user tasks. Refer to this table for important high-level differences of the two task types: @@ -58,7 +47,7 @@ Learn the differences between both task types and make an informed decision, and
Zeebe user tasks
- Recommended for new projects + Recommended for existing and new projects @@ -91,11 +80,11 @@ Learn the differences between both task types and make an informed decision, and
Partially
Queries, GET tasks, forms, variables - ℹ Currently, you must use Zeebe and Tasklist APIs to use Zeebe user tasks + ℹ Currently, you must use the Camunda 8 and Tasklist APIs to use Zeebe user tasks - Supports Zeebe API + Supports Camunda 8 API @@ -123,7 +112,6 @@ Learn the differences between both task types and make an informed decision, and - Task listeners will be introduced in a future release @@ -146,10 +134,9 @@ Learn the differences between both task types and make an informed decision, and Recommendations You can continue to use this task type on existing projects when you have a custom task application running on it and do not require any of the above features. - Refer to the decision helper above for a tailored recommendation. - Use this task type on any new projects when you run Tasklist. + Recommended for existing and new projects when you run Tasklist. Migrate existing projects and task applications/clients to this task type when you require one of the features above, or the following use cases:
    @@ -161,12 +148,11 @@ Learn the differences between both task types and make an informed decision, and
  • Enrich tasks with business data
- Refer to the decision helper above for a tailored recommendation. -## Switch the implementation type of your user tasks +## Switch the implementation type of user tasks We recommend you migrate process-by-process, allowing you to thoroughly test the processes in your test environments or via your [CI/CD](/guides/devops-lifecycle/integrate-web-modeler-in-ci-cd.md). To do this, take the following steps: @@ -181,176 +167,130 @@ We recommend you migrate process-by-process, allowing you to thoroughly test the Repeat these steps for all user tasks in the process. Then, deploy the process to your development cluster and test it by running the process and ensuring your custom task applications work. -## Use the new Zeebe Task API +## Use the Camunda 8 API :::note The Tasklist REST API is not deprecated, and you still need it for queries on both task types. ::: -Operations on Zeebe user tasks which modify the task state have to be performed using the new Zeebe REST API. However, queries and adjacent operations still require the Tasklist REST API. The following table provides a breakdown of which operations are supported in which API, and for which user tasks. +The following table provides a breakdown of which operations are supported in which API, and for which user tasks. - + - - - + + - - - + + + + + + + + - - + + - - - + + + - - + + - - + + - + - - - + + +
Operation Tasklist APIZeebe Task API (8.5)Camunda 8 API
Query tasks All types← Use Tasklist APISupported from 8.6+
Get task All types← Use Tasklist APIQuery user task Job worker-based user tasks Zeebe user tasks
Get user task Job worker-based user tasks Zeebe user tasks
Retrieve task variables All types← Use Tasklist API Job worker-based user tasks Zeebe user tasks
Get task form All types← Use Tasklist APIGet user task form Job worker-based user tasks Zeebe user tasks
Change task assignment Job worker-based tasks Zeebe tasks Job worker-based user tasks Zeebe user tasks
Complete task Job worker-based tasks Zeebe tasks Job worker-based user tasks Zeebe user tasks
Update task - Zeebe tasks Zeebe user tasks
Safe and retrieve draft variables All types← Use Tasklist APISave and retrieve draft variables Job worker-based user tasks -
-You can also operate both task types at the same time in the same application utilizing both APIs. We recommend this for a smooth migration, but you should eventually update all processes to use the new task type to use all benefits. The following image illustrates how to route API calls to the respective APIs: - -Task API Architecture - -The major changes are: - -- Create and maintain new, additional secrets for the Zeebe REST API. -- Call dedicated endpoints on separate components (Zeebe vs. Tasklist) for all state modifications on tasks for the respective task types. -- Manage new request/response objects. - The following table outlines the respective endpoints. Click the endpoints to follow to the API documentation and inspect the differences in the request and response objects. - - - - - - - - - - - - - - - - - - - - - + - + - + - +
Operation Tasklist APIZeebe Task API (8.5)
Query tasks - - POST /tasks/search - - ← Use Tasklist API
Get task - - GET /tasks/:taskId - - ← Use Tasklist API
Retrieve task variables - - GET /variables/:variableId - -
- - POST /tasks/:taskId/variables/search - -
← Use Tasklist API
Get task form - - GET /forms/:formId - - ← Use Tasklist APICamunda 8 API
Assign a task - + PATCH /tasks/:taskId/assign - - POST /user-tasks/:taskKey/assignment + + POST /user-tasks/:userTaskKey/assignment
Unassign a task - + PATCH /tasks/:taskId/unassign - - DELETE /user-tasks/:taskKey/assignee + + DELETE /user-tasks/:userTaskKey/assignee
Complete task - + PATCH /tasks/:taskId/complete - - POST /user-tasks/:taskKey/completion + + POST /user-tasks/:userTaskKey/completion
Update task-- - - PATCH /user-tasks/:taskKey + + PATCH /user-tasks/:userTaskKey
Safe and retrieve draft variablesSave and retrieve draft variables - + POST /tasks/:taskId/variables ← Use Tasklist API-
@@ -373,9 +313,9 @@ docId:"apis-tools/tasklist-api-rest/tasklist-api-rest-overview" }, { type:"link", -href:"/docs/next/apis-tools/zeebe-api-rest/zeebe-api-rest-overview/", -label: "Zeebe API (REST)", -docId:"apis-tools/zeebe-api-rest/zeebe-api-rest-overview" +href:"/docs/next/apis-tools/camunda-api-rest/camunda-api-rest-overview/", +label: "Camunda 8 API (REST)", +docId:"apis-tools/camunda-api-rest/camunda-api-rest-overview" } ]}/> @@ -383,6 +323,6 @@ docId:"apis-tools/zeebe-api-rest/zeebe-api-rest-overview" If your task application does not work properly after migration, check the following: -- **The endpoints return specific error messages when you run them on the wrong task type**: Ensure to call the right endpoint for the right task type, c.f. above [table](#use-the-new-zeebe-task-api). +- **The endpoints return specific error messages when you run them on the wrong task type**: Ensure to call the right endpoint for the right task type, c.f. above [table](#use-the-new-camunda-8-api). - **Forms do not appear**: Ensure you have extracted embedded forms, if any, and [transformed them into linked forms](/components/modeler/bpmn/user-tasks/user-tasks.md#camunda-form-linked), before you change the task type implementation. - **Task update operation does not work**: The update operation is only available to Zeebe user tasks. diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx index eef02cea21..e1e428e5b1 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx @@ -5,9 +5,9 @@ description: "Get decision instance by id" sidebar_label: "Get decision instance by id" hide_title: true hide_table_of_contents: true -api: eJzlV1tv2zYU/isCn7bOiZw2HQpjGOAuSqHVsI3YaQcEQUFLxzEbidRIyqkh6L/vHOpix5a9bE8b+iSK537Vp4JZ/mDY4I5dQSSMUDKUxnIZAbvvMZWB5pYuYzZgiw0+eizjmqdgQZNYwSS+IFEQSUg8Zdyu8ByDibTISBovw9hTSy+ubXiiMdJjGv7MhQY0YHUOPWaiFaScDQpmNxlpNlYL+cDK8p6YTaakAUP01/0+PZ4bmuVRBMag4khJC9ISC8+yREQuEv+rIb7i0I5afIXIUoCa4raisoKBHfrSY4+w2bkXaOoBNAovlU65ra5+viROjNTCoY4eA5mnlPnrYTgKrvAi+DQc3Q7n7nw7/jiefB6702wa/BZeh3h/j/pgzZPcxXLVqfgZyzUXSa67uTBOStUVLIUUxPzxxTHVok2vvFyw6YCwO6sNeevT3zCOXfedYPiEfSqqip90783rXam5Yz1esissyCycjL/Mh+9HARJG4Ty4GY6+BH9Mb4IZkfYqt60o1RD7OE/sqdpBHMost2aHh2vNNzRlFlLzrxtXHssY2e2iIMkKm9DV/o5wLjqO1utJbv8bbmOS8wSOtI8jyRi+vagvTmSgCrdiAcml7TR4QgESiXzZtctCicGJ2KMVCcYe32mYwUUC6U//dLfRasrNC2cjxYHnD92pbvd5F9F2DtNuUgKtlW4z8eYwE9dKL0Qcg3yeg1f+q/9/uJeH4d5UBQcqvVG5jsCTynpLlcv4++iCt13zMJyG3k7AHjiB7yAfhCIgyrWwG4e5FsA16DOHQe7we1JgCtSjAPd2v4+9PoA9RF7eYuM5zIZQbqUI3j2ASwWhtwHz1xd+I3PWyBi/EHHJyBm9bvBfrhPkL6rklgPfL1bK2HJQZEpbYl5zLTgWwmWUaFVhl9x9AVmiIp64632/5yvwiECrn9CjxXdqgcr6ucMhaOO5unf9d/1OTcR6RMu2MbZ6VtZmnXoq5k5NDqI2hZoRXxV0U5ztJzETBJmarxqbTBE8zIOzWQsdHJKu5dDD3YK3WmoXnUP0XjGxhvu66dXfP89dXwm5VE687q+JQ/fgTfMFzgyFchiw8rjD0/iwYg0el7EXqTRLgLZTDQPbpqKT16jFWfFShShOUWc7SatVTp2wUspWgIpGF1WTW1UjUVAGu+jp6ek84ikuPH6OBikJ6CQg9ifeOm+j+qa3JxyryLTSQrl3X8MSNKCXfq3I+A4/NACRXZz3z/tVVxmbcrlj6PQIPctZWx4L36yfJRxLWdYOFvV43bH1Bduize2A4eUAVWIbVYNyx4piwQ3c6qQs6Rq/C9oN/Xau3BTGwtAZ53jJEwMHPrUrkv1wU/9w/egd/ynrDKFpXrlhLexirP4VItxWErRdAY+xC8mpijDEBsrsjsjB3xiNTbuGPgRz5OU55anN5V5rO+2d7vzy3jF4c/UI8tfWOUuv5F9Z/gXHqxkU +api: eJzlV21v2zYQ/ivCfVo7JXLadCiEYoBbK4VWwwlipx0QBAVNnWM2EqmSlFND0H8fjnqxY8tetk8b+skS74V3z734UQmW3RsIb2GEXBihZCyNZZIj3PmgctTM0mECIczXcQI+5EyzDC1qMitBsgwhBEEiISGEnNkl+JCg4VrkZA0hxImnFl7S3OGJ9hIfNH4vhMYEQqsL9MHwJWYMwhLsOifPxmoh76Gq7kjZ5EoaNCR/NRjQz9OLpgXnaAz4wJW0KC2psDxPBXeZBN8M6ZX796j5N+SWEtSUtxX1LSLpicWHB1xvnQtp8R41+LBQOmO2PvrtnDSNZRb3ffiAssgI+YthPI5G4EP0eTi+Gc7c883k0+Tyy8Q9Ta+iD/FFHI3grvIBVywtXC6jXsdPVC6YSAvdr5VrRVCNcCGkIOVPz86pMW175fmGbQfE/ai24k1Mf6M4cd13ROEzaiPqih8N7/WrbauZUz1cslH0IZ7Gl5Ovs+H7cQQ+jONZdD0cf43+vLqOpiTaqdymolRDjaZI7bHaYRLLvLBmS4dpzdY0ZRYz868bVx5CjO7tk1Q+WGFTOtrdES5Ep9FFfVnY/0bYPugixQPt40QywR/P6osjCNTp1ioombS9Fx5xAFVF4vO+XRbLFUtF4tGKRGMP77Rcq3mK2a//dLfRairMM2cjQ2PYfT/U3T7vE9reYdoGJdJa6Q6J1/tIXCg9F0mC8ikGL4OX//90z/fTva4LjlR6owrN0ZPKegtVyOTn6II3ffMwvIq9rYQ9dAY/AR7EIpAXWti141xzZBr1ieMgt3eVXwJX6kGge7vb5V4f0e4zL2++9hxny9AuFdG7e3RQEHsLIVidBa3NSWtjglIkFVAwetXyv0KnEEJZg1uFQVAulbFVWOZKW1JeMS3YPK2xJVld2AVz/4CQKs5Sd7wb92yJHglo9RN7tEv0qAXq208dD1F6x93bwdtBrydSPeBl0xgbP0tr814/tXKvJ0dR20JNSa9Oui3O5i8xF0SZ2n81uLyKroez6GTaUQfHpBu7yn9S8M5LE6ILiN5rJWi1L9pe/ePLzPWVkAvlzJv+unTsHr2rYp4KTqnsJ6w85vi0x7gVK/SYTDyusjxF2k4NDeyaip681u1CaS9TUlhFne0srVYFdcJSKVsTKhpdxl0N60aipEwYBI+Pj6ecZYVM2ClXGYGQCo7SOBwb3MbNib9jnChuOmuh3HugcYEaJcegcWQCxx9agghnp4PTQd1VxmZMbl10fISeYNaVx+IPG+QpE5J8ugDLZrxuYXUGG7a5GTDwIRQJfXrVg3ILZTlnBm90WlV0/L1A7YZ+M1duChNh6DmBcMFSg3sxdSsSfrluPrheeIc/ynpTaJtXrqGjXQDNpxDxtoqo7RJZgtoFVQuGnGNut0z2vsZobLo19DGagQ+sIJw6LHda23nvDefde6fgzdQDyt+74Cy9UnxV9RfHqxkU sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx index 79260b9703..f36cdf8c8a 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx @@ -5,9 +5,9 @@ description: "Get process instance by key" sidebar_label: "Get process instance by key" hide_title: true hide_table_of_contents: true -api: eJzlVllv4zYQ/isEn/ZwLGc3LRZGsYA3cRZu0sSI3e1DEBSUNLa5kUiVpJwagv57Z6jDjq0E3sdi/WDxmHu+4UzBnVhaPrznU6MjsHairBMqAv7Q4zoDI5zUahLzIQ83V7D5+5T3eCaMSMGBIcaCK9zg/SNs8E4qXGbCrXAdg42MzEgCHiI30wuWVXqYbBT1uIF/cmkAlTiTQ4/baAWp4MOCu01GoqVysASDpAttUuGqo1/PeFk+ELvNtLJgiePDYECf56pneUQ6kT/SKEo5IhFZlsjI+xd8t0RXHGrW4XeIHPlsKBpOVlrI12PM83yk+hsGS1Y6XmX6+IGYwixVTT7iHR7rjFRLL1YYdOPqeDM8/WWin250DE2Sj+dHeuMuhINOa0DFL94hZ9cNMeUpAW90Pp98G+PB+e0f0+vxfHxB69HN+fgalw/bGF7AQipJ+Trebky2UO7VIO4B38vmkTRRngjzZu/2rRcqXUKS9kumxF+Pn3UhcKLWIpExI6iDdS8jEX0NE0jf/ygiKcy5PRJfKVotlt35auuy67I6OLjYicnYGG3aSHw8jMSlNqGMY1DPY/AuePf/d/fs0N27KuFAqbc6NxEwpR1b6FzFPwcKfumqh9F0wnYcZuAZfoJ40IsIUW6k2/jmGQI+QubEN5R7fOwKDIF+lOB3D/s99Cu4gwbKwg2rei/25JWmVr0EHwrqwkMerE+Dmuek4bFBgSwlJ2PMumnkuUmQvqiCWw6DoFhp68phkWnjiHgtjBSYCB9RuqsSuxB5QpFMdCQSf7xv93wFjC5oVKAhwOGeIFBp7/vHGHU8F/dp8GnQKYlIX5CyBcZWzsq5rFNORdwpyQ8WTaJmRFc53SSnTbbI5JUPfj0F3U7Hd6P5+GQ2ns0mtzfNRFTzUW/fSXgrpTbRG0T7iog31JcNVn//a+5xJdVCe/YaX7d+UgM2zUOsGXLl0GHNhJ+C8OPkGphQMYt0miVAr9M+qmjFGrFYKyzV2Hs1IdtzOqNzQsJKa1f1cypdFE1mVUAipyyi6OnpqR+JFB880UeFFAQ0EnBiI9o6btf1SW+POdaRbbml9vvAwAKwdUcQ1IJsQFLXzZDFT/uD/qBClXWpUDuKXi+hZzFr0+PgXxdkicBUlrWBRV1e93x9ytsRZVtgeDYkkQijqlDueVGEwsKfJilLOsa+YHzRb+vKV2EsLa2xjhcisXBgU/tE8jd39eD8lr08XHe60IBXbXxVJzntcOlR6f9LGrxWIGKEIVlV3YwQQZnb4TkYoqlu2nfo63iOtCKnQLXB3MO2l95pz29fPAGb60dQn1vrHG3JvrL8DzUuW/w= +api: eJzlVt9v2zYQ/leIe2o7JXLabiiEYUCWOIWXNAkSr3sIjIGizjYbiVTJkzND0P8+HCU5jq0E2ePQF1sS77uf3/GuBpILD8kdXDur0PuJ8SSNQphFYEt0krQ1kwwSSNfnuP77CCIopZMFEjoG1mBkgZDAPa4hAm0ggVLSEiLI0CunS9YACZzjWti5KFs7QveGInD4vdIOM0jIVRiBV0ssJCQ10Lpk1doQLtBBBHPrCkntp18+QtPMGO5Lazx6RrwfjfjvqenbSrFNiEBZQ2iIRWRZ5lqF+OJvnuXqfcs2/YaKOGbH2SDdWuFYX+NewLHpr+i8bm28CPrwfh80lYstnCenzYKl0rIwfdWyQYlSOjR0/npng/xZbh8ubYY9FV6P9yQdnUrCQW/QZM+eeRo8YVBVMD2PT6aTr2OI4OTqy/XFeDo+5efjy5PxxfgUZg0zT+msq22nJbU2R2m2UnqKc2001/z1UREaaejFFO80T9ANSjtV5dK92Tl9G5RqylnTbts1TdNE8HGIxROzkrnOBLcLenqezaWzaY7FT/+V1VyEyr+SowV6LxfD1dz09tBh+2HvYCsnY+es22Tiw34mzqxLdZaheZqDd/G7/3+4H/fDvWkLjlx6byunUBhLYm4rk/0YLPh5qB+OrydiK2CBAfAD5IPvS1SV07QOAzhF6dAdhKF0N2uiGpS19xrD22x3Dn9G2hvCIl2Ldn4XSEvL436BIRU8yROIV0dxhznoMT6u73HdADvjVv0yULkcEqjb5DZJHNdL66lJ6tI6YuGVdFqmeZtbPmsLO5dVzpnMrZJ5+Lzr93SJgg943eBFgpYomAKt9cNwGVu3o+7T6NNoUBOLPqPlkRiPepZE5aCeVnhQU1hO+kLdslwbdF+cTbFlqc9D8rtN6up6fHM8HR/cjm9vJ1eX/VbV4XjybxV8o6VzMTgUhl8Qgl76rOfqH39NA6+0mdsA7/h1FbY9FNdVmmvFoewHbIUMm5SQivQKhTSZULYoc+TbaZdV/CR6tXPrRGGNJsvMDkhytmImLK2ldtpz60oVatgSiYPySRw/PDwcKllUJpOHyhachFwrND7kscvbRfcl2gFnVvkNWtvwHjuco0OjMO4U+Zi1rvpFDY4OR4ejllWeCmm2DL3cQk9ytikP4T8Ul7nUYR0JDtZde93B6gg2K8pjg0EECaucRV2j3EFdp9Ljny5vGv78vUIXmv6xr0IXZtrzcwbJXOYe93zaXJHw5qZbvt+K5xf0wRB68pp16Oq84jeI2t04/Da8li1RZuiCV+3JsVJY0hZmbxHnvtncQ5/HU4hAVpyox8XuKbeD9kF/fv09CIipvUfz28Y74lf2r2n+BXkpdA4= sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -40,7 +40,7 @@ Get process instance by key Success -
Schema
+
Schema
Invalid request diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx index e2d2de9146..85681d95ad 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx @@ -5,9 +5,9 @@ description: "Get process definition by key" sidebar_label: "Get process definition by key" hide_title: true hide_table_of_contents: true -api: eJzlVltv0zAU/iuWn7h0TTcGmiqENESHBohNaxEP04Sc5LT1ltjBdjqqKP+dc+wkXdsw4BHx0sY+9+/cXHEnFpaPr/ml0QlY+w7mUkknteI3A64LMIIO5ykf83j9EdbfjviAF8KIHBwYEq24wgPS72CNNKnwsxBuid8p2MTIwqsbc5Rmes6KYImlG1MDbuB7KQ2gGWdKGHCbLCEXfFxxty5IuVQOFmCQda5NLly4enXM6/qGxG2hlQVLEkejEf1tG5+WCVlF+USjKuWIRRRFJhMfYXRria/at6zjW0gcRW0IDyeDFYr2T9wbNPB0rNYZqRZEWCGAMlh9VM2LI+KOi1w1WaJ09OjDsIRyvUSiSpfR1X6m65rox32wnauVyGTKKD9g3a/hQ3DiDPLnfwujdcKV9g8hyNFvsegHUypUpZJ+Yrh4DJWJMdp0SLzYR+JMm1imKahtDJ5Fz/79cI/3w70KCQdKvdWlSYAp7dhclyr9P6rgZV8/nF6eswcBM/AC/wEeeGkhKY10az/zYxAGzIGfgtc39aBCCPSdBH+62R3978H1zH0Wr1lYGrhMlpp2zAI8GLQ+xjxaHUaN1MFGykYVCtWcHDKrdgeVJkOJKgBcj6OoWmrr6nFVaOOIeSWMFJgMjyrRQnLnoswIzUwnIvPXu77PlsCIQGOc9pfDM5VBsD4kIMnGtrqT0cmoVxOx/kLLpjg2epbOFb16AnOvJr8R22RNiS8E3SaoS7go5EcPf7PALy4nV6ezycF0Mp2eX3xul3kjRyvoQdI7LY2L3iE6Bybecp+19frh68zXllRz7cWbGrvwjwxgl2WMfUOh7AesmfDrG/+cXAETKmWJzosMaEK1ldUWO32xVi32C8s1lo6m6vaSzuiSKmGptaOKD+2LqsmtUEgUlMUqur+/HyYix6EnhmiQQEAnAZ8axNvg9qm5GewIpzqxnbTU/hwZmIMB9DJqFNlo6y3AD4ej4ShUlXW5UA8M/a6NtlDrEuTgh4uKTGAy68bFqmmxa746DMNnt8nwdkxKsZRCs1zzqoqFhS8mq2u6xv1gfPNvest3YiotfWM3z0VmYc+rblTyJ1fNq+8pe+xt2BtGW8Jq7Xs7K+mEn742/W+NU4kvQaRYjORXoJxiHRXugczeG5C6p5tH7ycz5BUlgdUBulPhXnuvP6/fegY203eg3nTeOTqSf3X9Ez6D8Xg= +api: eJzlVt9v4zYM/lcEPm03N0573XAwhgEdljt0HdaiybCHIhhkmY51tSWfJKcLDP/vAyXb+eXrbo/DvSSWRH4kP5KiWnB8YyF5ggejBVr7C+ZSSSe1gnUEukbDaXGbQQLp7g53f11BBDU3vEKHhlRbULxCSOAZdxCBVJBAzV0BEWRohZG1h0vgDndM56wOlli2NxWBwU+NNJhB4kyDEVhRYMUhacHtagKXyuEGDUSQa1NxF7Z+uIauW5O6rbWyaEnjaj6nv2Pjy0aQVYhAaOVQORLhdV1K4SOMP1qSa88t6/QjCkdRG+LDyWCFov0S96KenlHUOiPVhg62aKwMVl+FeXt1IL3im0mwtK5Un0TK1oSEQ8WVmzykU+lK2jovhK6j8+spVm/VlpcyY5Q+tO7z7NZGpyVW3/1Xlq3jrrFfyFCF1vLNNNdSWceVmD4MG6+xsjBGm5GJt+dMvNcmlVmG6piDN/Gb/3+41+fhPoaEI6Xe6sYIZEo7lutGZV9HFXw/1Q83D7fsIGCGXuEr4KOLwKJojHQ7PxJS5AbNhb8kn9Zd1ILQ+lmiX61PJ8MHdBNjgaU7FmZKha7QNII26Mmg6ZJAvL2Me62LvZaN22fcdUAOme0wohpTQgJtILhL4rgttHVd0tbaOBLeciN5WgZ+6SwkN+dNSWyWWvDSb5/6viqQ0QHd8jTeXIGMyiBYnxGRZOMY7t383XwSiUQ/g7Ivjj1O4Vw9iROEJ5H8wByStSS5EPSQoDHhvJZ3nv5+vt8/LB5vVouL5WK5vL3/fZj1vR6NoIOkjyi9i94hWgchGKTfD/X6658rX1tS5dqr9zV2798gyB6atJSCQjkPWDPupzvjwsktMq4yJnRVl0g31FBZQ7HTFxtgc21YpZV0mqrbazqjG6qEQmtHFR/alwufw1BIFJRN4vjl5WUmeNWojM+EroiEUgpU1vPY8/ZbvxOdKGda2FFbar+ODeZoUAmMeyAbHz0V4HI2n81DVVlXcXVg6N/a6Ii1MUEO/3ZxXXKpCNW72PYt9gTby3D5nDYZRJAQ6Drqm+UJ2jblFv8wZdfR9qcGjW/+fW/5Tsykpe8MkpyXFs+8Gq9K+OaxfxR+y157Ok6GMZSw2vneLhtaQRRebf63W3cRFMgzNN6vcHIjBNbuQOfsiUjdM95HHxYriIA3RNZI6EmFe/RJf3782QuwlX5G9dPonaMl+dd1/wB6G/xX sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -40,7 +40,7 @@ Get process definition by key Success -
Schema
+
Schema
Invalid request diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx index 15e65cd3da..16b32c5492 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx @@ -5,9 +5,9 @@ description: "Get incident by key" sidebar_label: "Get incident by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v2zYQ/isCP61dGjtNNhTGMMCNFU+NIxmynRYLAoOWzzETWdRIypkh6L/3jnqJE6tr83HoF5s63utzd7zLmeF3mvVumJdEYgmJYbdHTKaguBEy8Zasxxa7S9jNT9kRS7niGzCgSCJnCX7g/QPs8E4keEy5WeN5CTpSIiUNSERpR64cURs4Ygr+yYQCVG5UBkdMR2vYcNbLmdmlpFIkBu5AIetKqg03Jen3M1YUtySuU5lo0CTxvtulv+cmJ1kUgdYoH0lUhUaRhadpLCIbV+deE19+aFku7iEiH1NFKBhRWqEYf8Q9K0emB7ASiSBbl68V9RJteBLBjwuWLA2rNkokd8gJSbah3M78ydg99y48d4DUmX/pB599PHnB/Ko/Hnv+cO6GYRAi6VPwce4H89Cdhp47QcJ54A+8qRf4DYv7ZRr2z6fz6/5o5jbU8/5o5A7m7si9cv1pQ575f/X9gb0hyty9xlukX7mTSX/ozife36jjy7nrDqxzlZoBujvZN/pEILP9Zw5dBOEVOj2dXwQzf8BuEZEN4sjvWkDBu0iBLYKp2LQzIPzmP/HE6L1rl6LwhmF/ah0P3UkwurbHsYuQ+UPryL1cvCKPkPDEUNMdeEW3wsREajq1KIh81tYAXrLlsVg61GmgzbcbAWtuEcPm19c2BGGU6e/GdfqefScboqr21sv2wt4Hw1VKqgaJ00MkLqRaiCXi9RyDt523//9wzw7DDcuEA6Vey0xF4CTSOCuZJcufowp+a+uH/thz9gJ2wAr8BHjQcwZRpoTZ2Zm9AK5AvbPz7AYfqBwhkA8C7Nfty9E9BNPMbWexc8pRjyvAWtJmcAcWAhr6PdbZnnRqXt3JkbVgZFxt630hUzHy5SWYRa/TyddSm6KXp1IZYt5yJTgCbxGkuzKRK57FhFwsIx5b8ks/p2tw6II2Eto1DH5Tykvrx3a4oo3n6j50P3RbNRHrN7Q8FcKTnrUxaauekrlVk91j6sRMiK8Muk5Gk1yeiksLerVsBWOXJs67Cc5PnIH14lXJoYf7CW60VC5ah+i7ZGI190Vdm58+T20diWQlrXhVT4FdCMEZZwvsEQrlMGDpcLt04Z8RW3B4snQiuUljoNeo2m2curDp5NRqsTecjcR1SVIlW0mjZEaVsJbSlMOXWhVVk1tlIVFQGqvo8fHxOOIbfOD4MRokENBJwAWReCvcRhXl6IXwUka6kRbSfncUrEABetmpFOkOaaVCLoM9Oe4ed8uq0mbDkz1D7S3zDKsmLQb+NZ005pjConIsr9rphm1PbHKrhsJzj1Rh2ZSNccPyfME1zFRcFETGd1/Zpn7qI9t1S6HpjP264rGGA1+aJ5D9ElZ7+RvncGdvdbku0mRnuzfO6AuPtvrsb0FL0Br4EsuNvClv+lgpqdmTOdjNqT+ad2bo0srIMwKmAe9FDVvtrf788dEyOFP5AMmfjXeGPsm/ovgKBVte4w== +api: eJzlVm1v2zYQ/ivCfdo6NUr6MhTCMMC1mUyNIxu2nAYLAoGWzjEbiVRJKp1h6L8PR8nKi921/Tj0iy0d7/W5O/HZguW3BsJriGQmcpQWbnxQFWpuhZJRDiEsN+e4SV+DDxXXvESLmiy2IHmJEMIdbsAHISGEits1+JCjybSoyAOEcI4bT608sQvgg8bPtdCYQ2h1jT6YbI0lh3ALdlORSyEt3qIGH1ZKl9y2ot/fQNPckLmplDRoyOLV8TH9PQ05r7MMjQEfMiUtBQ23wKuqEJmrK/hkSG+7H1ktP2FGOVaaULCijUI1fk96zo5Cj3AlpKBY5z9qGkljuczw+w1blV7VWC3kLfiAsi6pt4t4PmXD6DRiI/BhEZ/Hk48x+BBN0ovBdBrFZymbzSYz8OHD5H0aT9IZS2YRm4MP7IoNF0k0idNxNE9YzGZPz4eTeBS5850LdpXMBsMkvRyMF6yXDgfjMRulbMwuWJz04kX81yAeuROSpOySxQn4cMHm88EZS+fR3yxlV0PGRi75zs2IDaP546APAgo7eJLQ6WR2kcaTJD2dLOIR3DQ+lGgMvz0AWuNDptENSSLKwwrGcvufeA+GSXTJqIrobDZIXOIzNp+ML93jlMWjKD5ziXxSyx/oM0ouLS3lXlZ0KmxBon6Tm4bEbw4tSCTveSFyjzYRjf36olRaLQssf/vRhSGMavPNul6/gm90Q3TbcPDw8OA/BoNprXSPxOt9JE6VXoo8R/kUgxfBi/9/uW/2y521DUdqvVG1ztCTynorVcv855iCt4f2YTCNvEcFe+gMfgI86HOGWa2F3bg7fYlco37p7rvrm8bfQqbUnUD3dvP8aj9D29/r3nLjtVSgRLtWxBxu0UFApCCE4P4k2OmaYHuHmwYouL7f8YlaFxDCtgWzCYNgu1bGNuG2UtqS8j3Xgi+LFks6axu54nVByBUq44UTP88zWaNHB8RYiIvYNXrU8jb6kbt8lX7m7t3xu+ODnkj1K14eBuHBz9ra6qCfVvmgJ8dzdo2Zk15b9K4ZfXN5Jc4d6B0Zm0wZ3Tgv52xO1+GOmHV2jf+kwb2XLkWXEL23SrDTPt3N5oePiZsjIVfKmXfzNHGEEb1pvSxERqXsF6w87kiZxzMr7tHjMvcyVVYF0teo4z7ebrDpydu5XSntlUoKq2iSnaXVqqZJWCtl28uXVpVnroftIFFRJgyCL1++HGW8rGXOjzJVEgiFyFAah2OH27iT+M+Mc5WZ3loo9x5oXKFGmWHQOTIBeaVBbos9OTo+Om6nytiSy0eBDq/ME6z6tlj8xwZVwYUkXy6xbbdO13B/4prbLRT4EJKrG79bjGvYbpfc4EIXTUPizzVqt9QPe+S2LheGnnMIV7wwuJdL/wmEX2Ydb//V2+f0B1PeDancuO0tanoDv6XT7rchErRGnqN22bQngyzDyj6y2ePutB/9d+aMEWXkNQHTg/dshp33g/n88d4peIm6Q/lnn52lV8qvaf4FfTtoRQ== sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -37,7 +37,7 @@ Get incident by key Success -
Schema
+
Schema
Invalid request diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx index 2d0d3a2952..6563ac201e 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx @@ -5,9 +5,9 @@ description: "Get flow node instance by key" sidebar_label: "Get flow node instance by key" hide_title: true hide_table_of_contents: true -api: eJzlV1tv4kYU/iuWn9ptEshuWq1QVcmAyboQQ22TdBVFaLCHMBsz447HpMjyf+854wsQnN3sY7UvyZz7Zb4zPuSmIo+p2bs3R7F45iKiDk8V4SE1H85MkVBJFBPcicyeudyN6W5xZZ6ZCZFkQxWVaJmbHAiQP9EdyBiHY0LUGs4RTUPJEvQATLA2xMpYVYEMVkc6MyX9J2OSQhQlM3pmpuGabojZy021S9A344o+UgmqKyE3RJWs367MonhA8zQRPKUpWrzvdvHfcWw/C0OapmAfCnDFFaqQJIlZqAvsfElRLz+NLJZfaKiwaIntUKyMgsW+JT1th6Hrvo6/13BIV4wzTPLtphBKqiFR9EA/VZLxR5RSHr0qw9txEQbRV8WuvvIWBcZDFkF/355rqfLSFWaZbRCYc9ef2QNn5NhD4M686cD2fTj58/5iT9m3thssjnl+YHnBQkuActzA9m7soWMF9mJgBYNP7aLgkze9a0T96dwdWt7nhmG7w+bs296tMwATyx8D6dkD27ltyDmI6/ON5c6tSU1V/+y/B5O5jxbXEPjO+qxTOeXNLM+aTOzJAasst2/59vCA69t/zW0XEhpNpncYdT4JnIXjQiOQ258OUWsAzhbWIHBunQDpPsRzoWMLbz5pkvcHnjMLGgqrrstyx+70zjUfSpy14Wh/eTqMjUGnN7OJHeg7xGY7roXEwwFkDvwshYgp4RoelBOuWuGIUqZiZI1q2NZvSlGg+KrtLXD4lsQsMvDRoal6/U2AAVzGdPPL974N2JUs/Sb8P7zH+jYw4uTxtWGqqmkTts/NYVNsKYVsOvHhtBMjIZcsgt4f9+Bd593/v9yr03K98sIpXn0qMhlSgwtlrETGox8DBb+2zYM1c4yDgg2qDX6AfuADRsNMMrXTe8ySEknluf6038PLlEMLxBOjmnp4uc5cU6V3GeNomTGWO6NchGBBWgvcmx6pbgauRD2zs73s1BvQeW2UdnKwKUzMR27rtSqTMRjkZX+LXqeTr0Wqil6eCKlQeUskI3AXuqkoK+92RbIYmxmLkMSa/TL1YE0NFODihiuZAhpRUEa/0MsHxDh297H7sdvqCVVf8bLHxt7PWqmk1U+p3OpJb3n1XfmoVxZd309z3yRhY939aiedzmwPPjTnPnzfnKlb76eVHWR4eOeNlypFnZD+HGkls9Ye1XD98y7Q0GJ8JbR5BbGp3pupMcuWMDZYymnBwiB6JYV/im2pQXhkhGKTxBQfqGr3a2CFJ6N2C+NibATshALBrS2VFBkiYS2EKr/AOL3gGtMqgYRFpYCi5+fni5Bs4M0jFxAQmwBJUlifUbfq26TinL0wjkSYNtZMaLoj6YpKCll2KkdpB70ikMtiLy+6F90SVanaEH4Q6FtTdNS15oIU/Vd1kpgwvSLoFPNqwu7N7aVZLqrHMwbMHvoEJJWzcm/m+ZKkdC7jokA2fB2kHv39aOlBjFiKZ5jlFYlTepJU81CaP3nVD5mfja/82mktogYw3+nJjjOk4KiRqf8WuCytKYkAiphWKbEARYk6sDn5VYOz0zxG1zYuriTDVu3XrWN8a++t+fze1wpGIJ4o/6PJTiGJ+RXFf+pfx+g= +api: eJzlV1tv2zYU/isCn7ZOjdI2HQphGKDYTKvFlT1JTlYEhkFLxzEbmVRJKplh6L8Ph7rEjp1eHoe+2CLPhefyHerTlhh2q4l/Qy4K+SBkDqHQhokMyMwlsgTFDJcizIlPFptL2MzPiEtKptgaDCi03BLB1kB8cgcb4hIuiE9KZlbEJTnoTPESPRCfXMLGkUtn2R7k8O4klyj4UnEFOfGNqsAlOlvBmhF/S8ymRN9cGLgFRVyylGrNTLP1+xmp6xma61IKDRotXp+e4t/+2UmVZaA1cUkmhQFhUIWVZcEzm6D3WaPe9vBkufgMmcGkFZbD8OYUTPZ7wrN2eHRX18sfNRzCkguOQX6/qTZMmSEzsKOvjeLiFqUg8mdl2J0IYZB/VRzZlh9R4CLjOQjz/bE2Kk9dYZTVGoE5jZIJHYQXIR0Sl0zi8YAmCXFJMj2fP67oFY3S+f5ekgZxOrcS4pIwSmn8kQ7DIKXzQZAOPhwXpR/i8XUvOh9Po2EQf+o3aDTsnxMaX4UDOk+D5JK4JKYDGl71y2lC4+75YxBNg1G3av/oP4PRNEGL90FKr4NPNpTDvUkQB6MRHe1sNemeBwkd7uwm9O8pjQZ0fjEaX+Op01EazsMoSQPcPR8PUWsQjEbzYJCGV2GK6/NpEkY0SebxdNQHnwzicJL2K8y6Syu6jMbXEZk1ODuGo8fm2WMoHjr+OBnR1PYQix1GAS5mO5DZ8bOQsgAmLDxAMGGOwhGl3BS4ddHBtrtT6hrFZ8fuglDcs4LnDl46oM3zd0Kp5KKA9W8/ejdgVSr9Tfi/eY35rUFrdvvcMLXZHBMen5vdolClpOor8eawEhdSLXieg9ivwQvvxf8/3bPDdOOm4YCt17JSGThCGmcpK5H/HCh4e2wegkno7CTsgDX4CeqBFxhkleJmY3nMApgC9dK+2m9mtbslmZR3HOxq9pTOvAdjuYyzR2acxcZpiNAazEoib7oFWwykRD7x7l95HQN62Rlpb3sHm5pgPOq+o1WVKohPtk19a9/ztiupTe1vS6kMKt8zxdmiaMqLsqa3S1YVWMxCZqyw209DT1fgoACJG1IyswIHUdCcfmLJh1RP3L07fXd61BOqPuPlERuPflbGlEf9NMpHPVmW1/UqQb0m6a4/fb9ZyS9t9VtOOp7QOEjpy4QmSTiOOn7a2tXuXs97L22INiD7OrJKpNO+6OD613VqocXFUlrzFmJjy5vBmVSLgmeYymHC0mGWkjosM/weHCZyJ5PrsgC8oFru18MKn5zO7VIqZy0FNxLBbS2NkhUiYSWlad7AOL0ssz1sgIRJad/zHh4eTjK2rkTOTjK5xiIUPAOhbR3buo3aHfeJcS4z3VtzadeegiUoEBl4rSPtoVcEcpPsq5PTk9MGVdqsmdg56FtTtFe1vkEG/jVeWTBuKYINcdtO2A25f0Uaoro/Y8QlPvqcue2s3JDtdsE0TFVR17j9pQJlR/9xtOwg5lzjc078JSs0HATVX5Tkl7j9kPnV+crXztEkOgCLjZ3sosIVcZsPDftbI1laActB2bAaSZBlUJodm4OvGpyd/jJ6T5G4sgpL9Ui39vFtvR+N549zq+Ck8g7En310BpcYX13/B+pfx+g= sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx index 3782eb8c1b..c269bbffae 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx @@ -5,9 +5,9 @@ description: "Get decision requirements by key" sidebar_label: "Get decision requirements by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v2zYQ/lcIPq2dazltOhRGMSDD3MLr0ASxhz0EwUBLZ5uNRGrkyakh6H/fHSkpdqx02ePQF1sk7+d33/FYS1QbL6c38ldItdfWXMPflXZQgEEvb0fSluAU0sE8k1O52n+C/V9v5UiWyqkCEBxr19LQgs7vYE9n2tBnqXBL3xn41OmSLdAmaQu7FlnrTLhDbyPZLskTugpG0qdbKJSc1hL3JdvXBmEDjkTX1hUK49ZP57Jpblndl9Z48KzxejLhv2P/iypNwbOr1JIpgyyiyjLXaUgy+eJZrj71bFdfIEVO3DEkqKMXnR3IeHTabGQzCjg8J2rG5xT3+bDRiPHAwY6qoGPc3/T45jVLE0q2cil8fsoc4aIMDgbBpxpz3hokTNOwyPkQ9HOzU7nOQsnB49MlIIBXORQ//tdSeFRY+WeCUBAL1GY4f23IlEmfACdsfAuYmXPW9Ui8OUXig3UrnWVgjjF4mbz8/6d7fprudSw4cOkj84SxKNa2Mtn3wYK3Q/1wcTUXBwkLCArfAR606SGtnMZ9GB0rUA7cq3Bl3tw2o5ogsHcawur28QT5CDg8PsRqL+L4obG0tTytNhDw4EE0lcnuLMlcltQk1EiOwe266VW5nCTqiGkzTZJ6az0207q0Dll4p5xWhH8Aks9iPdeqyhnA3KYqD9uPw11uQfAB3908+ZDWXPnofczYsY9jc+8m7yaDllj0CSsPfHiws0UsB+1E4UFLYZB29VmwXEy6q0lfY1XqTwHudvRfXs2uL5azV4vZYjG//Nw9A1o9ivCwzr2VNsQQEK+jkOykP3QU/e3PZaCTNmsb1FtaXYbnCYirakWtwqmcJmyFClOf/lDvQCiTidQWZQ58KVG7hMOO3/wlOrPUIqKwRqNlQgdNdLZiJmytRSZ57FgyzWFFInFSnlh0f38/TlVB95wak0MGgYIEeqGwbIvb7+3O6JFyZlPfa2sb1omDNTigKJPWkE+OHgDybDwZTyKrPBbKHDh6RuccAdfXCOErJmWuqJ5NG2XddtWN3J2xnuObfMpGiD2xP25kXa+Uhz9c3jS8TVPAhRZ/aKfQfJn2/E0Nu1a5h5Mo+gtR/tC+NbIX4l8ekoORd8Q1+9DRecUr2T7Wwm9D14/cgsqIghxaPLkg9pR4oHPyYOSe6W+dj7MlyaqK8ekxfMTrYH0wnve/BAGxtHdgfu6jQ15yfE3zD5p7AyA= +api: eJzlVt9v2zYQ/leIe9o61XLadCiEYUCKuoWXoQliD3sIjIKmzjYbiVTJkzNB0P8+HPUjdqx06ePQF1sk7767++6OxxpIbj0kt/Aelfbamhv8WmqHORrysIrAFugkaWvmKSSwri6x+vwGIiikkzkSOtauwcgcIYE7rCACbSCBQtIOIkjRK6cLRoAELrESdiPSzphwh9Yi6JYpJORKjMCrHeYSkhqoKhhfG8ItOohgY10uqd369RyaZsXqvrDGo2eNV9Mp/x3bX5RKoWdTyhpCQywiiyLTKgQZf/EsV59atusvqIgDd0wJ6daKTg9kPDltttBEgYfneM38nPI+HwdtOR452KPzuvX7mxZfv2Jph96WTuGnp+AIjTQ06gSfasp4a7RgmoZFzseon5u9zHQaUo6enk5B4ew6w/yX702FJ0mlfyYJOXovt+Pxa+NJGvUEOWHjW8TMnLNuYOL1KRMfrFvrNEVzzMGL+MX/P9zz03Bv2oQjp76tPGEsiY0tTfpjVMGbsX64uJ6Lg4AFBoUfgI8mAo+qdJqqMDrWKB26l+HKvF01UQ3K2juNYbV6PEE+Io2PD7GuRDt+cqSd5Wm1xcAHD6IE4v1ZnLo0ru+waoB9cPt+epUugwTqltMmieN6Zz01SV1YRyy8l07LddZSymdtPjeyzJjAzCqZhe3H7i53KPiA726efLRDwZlvrU+YO7ZxDPd2+nY6isSiT6A81MMDzo6oGMVphUeRwiDt87NguTboPidDjmWhLwPd3ei/up7dXCxnLxezxWJ+9al/BnR6TXSU5wGlczE4xOtWCHrpD32J/vH3MpSTNhsb1LuyugrPExTX5TrTikM5DdgKGaa+kIr0HoU0qVA2LzLkS6lwNhz29c1foofdWCdyazRZLuigSc6WXAk7a4mLvO1YqUIO20LioHwSx/f39xMl89KkcqJsziRkWqHxgceOtz+7neiRcmqVH7S1DevY4QYdGoVxB+TjowcAnE2mk2lbVZ5yaQ4MPaNzjogbckT4D8VFJrVh4OBl3XXVLezPWM/xTZ4wyCrq+uMW6notPf7lsqbh7a8lutDiD+0Umi/Vnr9TSDYy83jixXAhwk/dWyP9WfzHQ3LU875wTRU6Oit5Bd1jLfw2qyaCHcoUXXCtPblQCgs60Dl5MHLPDLfOx9kSIpAl8zNw+KiuA/qoP7+9CwJiae/Q/D54R7xk/5rmX5p7AyA= sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx index fc0487f647..2af5df108f 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx @@ -5,9 +5,9 @@ description: "Get decision definition by key" sidebar_label: "Get decision definition by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v0zAQ/lcsP8Homg4GQhVCGqKgMsSmtcDDNCE3ubZmiR1sp6OK8r9zZydpu2aDPaK9tLF9Pz9/57uSO7GwfHjJ30MsrdTqPcylkg6/+FWP6xyMoMU44UM+W5/C+scr3uO5MCIDB4Z0S65wgefXsMYzqfAzF26J3wnY2Mjcmxty1GZ6zpLaFX60vnrcwK9CGkA/zhTQ4zZeQib4sORunZN1qRwswKDoXJtMuLD16phX1RWp21wrC5Y0ng8G9LfrfVLEMViL+rFGU8qRiMjzVMY+xeinJbly37Oe/YTYUdqGAHEyeJHJlox1RqoFr3oehX+JmtAJQIy7DQVUOw5WiLsMsd7r5cXzbS8XAeAMM7d3eOwSPX1wOtvaX+7KoUv424PywisUynVmQqfSpbTVweuqIoHjLo6M1UqkMmFERrDubq4gE2YpZM8eyhnrhCvsP2aYIV3Fohs/qdCUirsPw8Z9sIyM0aZF4sU+Eh+0mckkAbWLwUF08P+ne7yf7kW4cKCrt7owMTClHZvrQiWPgwUvu+rh5HzMthJm4BUeAR64aSEujHRr3+FmIAyYQ/+2X15VvRIh0NcS/OrqdqP7CK6ry7HZmoUeib1zqamlLsCjQd1yyKPVUdSoHW7UbFSiVsUpJLNqem5hUlQpA8TVMIrKpbauGpa5No6EV8JIgdfhcaWzcL1zUaSEZ6pjkfrt29FPl8DogPoP9WuHayJC8N4nKMnHrrnXg9eDTkskeoeVDT02dpbO5Z12gnCnJT8ANNc1IbmQdHNF7ZWLXJ56/OuB5ex8dHEyHR1ORpPJ+OxLM7zUehjh9rW3VuoQfUC0DkK8kf7QMPbT96lnl1Rz7dVrlp35oQrYeTHDyqFU9hPWTPhpBf+cXAETKmGxzvIU6I3C6vGHDd3pizVmsWJYppE6mvjtNZ3RBTFhqbUjzocCRtMUViASJWWRRTc3N/1YZPjsiT46JBAwSMDJimRr3D7XO71byomObasttV9HBuZgAKOMakM22hli+FF/0B8EVlmXCbXl6K+FtANbe0MOfrsoTwXeZlXHWNZFdslXR3wzfmyXGW4PySqSKZTLJS/LmbDw1aRVRdvYI4x/ADbV5WsxkZa+saDnIrWwF1b7XPIn9byTPGX3TsOdiTQsVmtf3mlBK15PnP63wqeJL0EkyEcKLJycIJVyt6WzN/VSAbVv0sfRFGVFQXC1kN4iubfeGc+bd16ATfU1qLdtdI6WFF9V/QHkj0fJ +api: eJzlVm1v2zYQ/ivEfdo6xXLarCiEYUCGuoWXoQlib/sQGANNnW02EqmSJ6eGoP8+HCm/xUrWfBz6xRbJe334HO8aILn0kN3Be1Taa2ve40IbTdoamCVgK3SSF+McMphvrnDzz1tIoJJOlkjoWLcBI0uEDO5xAwloAxlUklaQQI5eOV0Fcxlc4UbYhcg7VyLf+0rA4ZdaO8whI1djAl6tsJSQNUCbiq1rQ7hEBwksrCslxa23F9C2M1b3lTUePWu8Hg7579j7pFYKvYcElDWEhlhEVlWhVUgx/exZrjn1bOefURGn7RgQ0tGLzg9kPDltltAmAYVviZrRiUCM+w1FVHsO1ui8jrE+6+XN60MvtxHgEg35Jzz2iV69OJ1D7U9P5dAn/NeL8iI00lBvJnyqqeCtHl63LQtc9HFkbNay0LlgMqKnp7lSOTsvsPzppZzxJKn235hhid7LZT9+2niSRvUfxo3nYBk5Z90OiTenSHywbq7zHM0xBq/SV///dC9O072NF4589d7WTqEwlsTC1ib/Pljwc189XN6MxUHCAoPCd4BHm4BHVTtNm9Dh5igdurPwtt/N2qQBZe29xrCaPW50H5H6upyYb0TskSXSynJLXWJAg7tlBun6PN2qne3VfNrc46YFDsmttz23dgVk0ESI2yxNm5X11GZNZR2x8Fo6LedFRJjP4vUuZF0wnoVVsgjbj6OfrlDwAfcf7te0QsFEiN4HDCX7ODb3bvhu2GuJRZ+wsqfH3s6KqOq1E4V7LYUBYHtdE5aLSW+vaHflstJXAf9uYLm+Gd1eTkdnk9FkMr7+tB1eOr02Obr2nZUuxBAQr6MQbKU/bBn7+9/TwC5tFjaodyy7DkMVipt6XmjFqZwmbIUM04qQivQahTS5ULasCuQ3qnI2HG7pzl9ia3ZhnSit0WSZ30GTnK2ZCStriTkfC1iqcIeRSJyUz9L04eFhoGRZm1wOlC0ZhEIrND7g2OH2R7eTPFLOrfI7bW3DOnW4QIdGYdoZ8unREAPng+FgGFnlqZTmwNF/FtIRbLsbIvxKaVVIbdhsiLHpiuwO1uewHz8OywwSyNjqLOnK5Q6aZi49/umKtuXtLzW68ADsqyvUYq49f+eQLWTh8SSs3XMJP3TzTv6jeHYa7k1ky2KzCeVd1LyCbuIMv+2sTWCFMkcXAosnl0phRQc6J1MvF9DuTfo4mkICsma4dpA+Inmw3hvPL78FATG192h+3UVHvOT42vZf5I9HyQ== sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx index 06dc3839ef..11ffbbedf5 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx @@ -5,9 +5,9 @@ description: "Get variable by key" sidebar_label: "Get variable by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v2zYQ/lcIPq2dazltNhRGMSAD3MLrsASxtz0EeaCks81GIjXy5NQQ9L/vjpSUOFbb7HHoiy2S9/O773hsJKqtl/Mb+ZdyWqUFyNuJtBU4hdqaZS7nMj18hIOcyEo5VQKCY/lGGlrQ6V0404Y+K4U7+s7BZ05XrE+bpCvsRux78xPp4J9aOyDT6GqYSJ/toFRy3kg8VGxSG4QtOBLdWFcqjFs/n8u2vWV1X1njwbPG69mM/45druosA+9JP7NkyiCLqKoqdBaySj55lmtOPdv0E2TIuTrGAHX0wjk+J7ygx66XxqMyGXx8tqLPyOHzxSP4g6hHp82WD/aqqMdPCGxD+TPuw2lqbQHKhGMwyuAyH9HlU40Fbw0saVvePh+Df2koCJ0LrjN4/HIZCCwyVf74X8tB2GLtv4nUm9ecV0nlUNtxSHRXpnG8wsbXwFg4Z92AxJtTJN5bl+o8B3OMwcvk5f8/3fPTdK9jwYFL723tMhDGotjY2uTfBwt+GuuHi6uleJSwgKDwHeDB1xpktdN4CBMjBeXAvQq36c1tO2kIAnunIaxunw6OD4DD1BDpQcRBQwNoZ3kqbSFAwCNnLpP9WdLL+qQh0Vayc7fvp1XtCpJrIpjtPEmanfXYzpvKOmThQZ2z47NYyI2qC0ausJkqwvbTONc7EHzAVzJPOqQ1lzx6n4apQD6Ozb2dvZ2NWmLRL1h5IMKDnR1iNWonCo9aClO0L8yK5WLSfTGG4qpKx8nfjfrLq8X1xXrxarVYrZaXf/Rjv9OjCB8XeLDShRgCCjMnCMle+n3Pzd/+XgceabOxQb3j02V4jIC4qlPqEU7lNGErVBj59Id6D0KZXGS2rArg26gbyqInNn+J3iz1hiit0WiZyUETna2ZCTtrkdkdW5VMc1iRSJyUJxbd399PM1XSBaem5JBBoCCBnics2+H2e7czeaKc28wP2tqGdeJgAw4oyqQz5JMw14nIMdmz6Ww6i6zyWCrzyNF4yxxhNZQF4TMmVaF0mP4hsKZrpxu5PzvqiImcsymiTWyMG9k0qfLwpyvalrfp3nehqR+0Qtfl2vM39etGFR5OYhmuQPnDdfcqfCFOX4yjIfckNQc5PHskfQb2hd+W7hi5A5UT3TiaeHJBTKnwkc7Jy5D7Y7hnPizWJKtqBubh3XTM4WB9NJ53vwYBsbZ3YH4ZokNecnxt+y+MIezQ +api: eJzlVt1v2zYQ/1eIe9pa1XLabCiEYkAKuIWXYQlir30I/EBRZ4uNRKrkyakh6H8fjvpIHKtr+zj0xRZ5H7z73R1/bIDkzkNyCx+k0zItEDYR2AqdJG3NMoME0sMlHiCCSjpZIqFj/QaMLBESuAsybSCBSlIOEWToldMV20MCl3gQdiv2g/sIHH6utcMMEnI1RuBVjqWEpAE6VOxSG8IdOohga10pqdv6/RzadsPmvrLGo2eLl/M5/x0fuaqVQu8hAmUNoSFWkVVVaBWyij951mtOT7bpJ1TEuTrGgHR3Cuf4PeEFOz56aTxJo/Dyuw29stUPqHfgj6qenDY7FuxlUU9LyNVGSWLcR2lqbYHSBDEaaWiZTdiyVFPBW2OXtC1vn0/BvzR7WehMcJ3R09fLUDmbFlg+/9FyeJJU+28i9eol51Wi93I3DYnuyzSNV9j4LzAWzlk3IvHqFIl31qU6y9AcY/Asfvb/T/f8NN2bruDIpfe2dgqFsSS2tjbZz9EFv03Nw8X1UjxKWGAw+Anw4GsNVe00HQJjpCgduhfhNr3dtFEDyto7jWG1eUoc75FG1hDpQXREUyLllllphwECppwE4v1ZPOj6uLnDQwt8uNsPbFW7AhJoOjDbJI6b3Hpqk6ayjlh5NOfsWNYVcivrgpErrJJF2H4a5zpHwQK+kpnpKEfBJe9OnwVWsO6Ju9fz1/NJT6z6FS8PjfDgJyeqJv10ypOeAosOhVmxXpf0UIyxuLLSHfP3VH91vbi5WC9erBar1fLq74H2e7s2Oirw6KUPMQQUOCcowaD9bujNPz+uQx9ps7XBvO+nq/AYQXFdp4VWnMppwlbIQPlCKtJ7FNJkQtmyKpBvo56UxdDY/CUGt1vrRGmNJsudHCzJ2Zo7IbeWuLu7UZUq1LBrJE7KJ3F8f38/U7KsTSZnypYMQqEVGh9w7HH7q9+JnhhnVvnRWtuwjh1u0aFRGPeOfBx4HZ3vkj2bzWfzrqs8ldI8Omh6ZI6wGstC+IXiqpA6sH8IrOnH6Rb2Z0cTEUHCrjZRPxi30DSp9PiPK9qWtz/X6MJQP1iFqcu05+8Mkq0sPJ7EMl6B8MtN/yr8VZy+GCdDHprUHGB89gBE3WMt/LabNoIcZYYuRNNJLpTCih7ZnLwMeT7Ge+b9Yg0RyJqBeXg3Hfdw8D4Zz5u3QUGs7R2aP8boiJccX9v+C4wh7NA= sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx index 87a0f9a05d..eb7cc632ca 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx @@ -5,9 +5,9 @@ description: "Delete process instance and all dependant data by key" sidebar_label: "Delete process instance and all dependant data by key" hide_title: true hide_table_of_contents: true -api: eJzlVktv20YQ/iuLPTWpLMqJWwRCUcBtFEBNUBuWihwMH1bkSNyY2mV3h3IFgv+9M7skLYlyX7ciF2kf8/z2mxnWEtXGy+m9vHU2Be/nxqMyKciHkbQlOIXamnkmpzKDAhDkSJbKqS0tHevV0tCGrh9hT3fa0LJUmNM6A586XbIBOvwIe2HXooxuhO78jKSD3yvtgHygq2AkfZrDVslpLXFfsmltEDbgSHRt3VZhPPr+SjbNA6v70hoPnjXeTCb8d+x6UaXsk/RTS6YMsogqy0KnIb3ki2e5eujZrr5AipyzYzBQRy9bsqY2cCDo0Wmzkc2ohSn7Z+GPJGosWOjnXJkNLFBh5emCr67O5TI3O1XoTDBo4PHlnCjiVQHbb/9tbj6G8Hfhv33Dyf4VEP0Ln7uMB4OLA0BmzlnXI/F2iMQH61Y6y8AcY/A6ef3/T/dqmO5dfHDgp/e2cikIY1GsbWWyr4MF352rh+vbuThIWEBQ+ArwoEMPaeU07kMbXoFy4C64DU/vH5pRTRDYRw1h93Dajd+HLjXoxkKZTKiiEBmUYDJlUGQKlVjtRezv1PdzezINqNlPZbK7TFprF501n9Sk1UiO1O26eVG5guTriHwzTZI6tx6baV1ahyy8U04reqUAN9/FV1+rqmCYC5uqIhyfJrXMQfAFTySeNUh75kf0PmaE2cexuXeTd5Ozllj0BSvPrHm2kyOWZ+1E4bOWwvzqXnHBcjHp7uV6JqhSfwz4t8P25nZ2d72cXSxmi8X85tdu8LZ6FOEhG3orbYghIN5HIdlJf+iI/MvnZSCdNmsb1Fvy3YTvARC31YoKilMZJmyFCsOW/lDvIqFSuy3DUBzwjVeiM0uFJLbWaLRM+6CJzlbMhNxa5FKIdU2mOaxIJE7KE4uenp7GqdpSN1RjcsggUJBAHwYs2+L2qT0ZnShnNvW9trZhnzhYgwOKMmkN+YStMpFjspfjyXgSWeVxq8yBo/9aX0do9g+H8AcmZaHokZs29LotvHu5u4zd6rj06GzKJolgsYTuZV2vlIffXNE0fEzjxIVe8VxxoT4z7XlNRb5WhYdBTH1nld/ctV9ur8TLX3dnU+hobfah3ouKd7QMfA2/DbUwmYPKiKAcVby5Jm6VeKAz+Irjiuqb1PvZp9lyRuKqYqx6PE+IHxycDemHn4KAWNpHMD/2ASJvOcSm+RMnstvx +api: eJzlVktv3DYQ/ivEnNpUXq0TtwiEooDbbAA3QW14t+jB2AOXml0xlkiFHK2zEPTfiyEleV/u61bkJJGc58dvZtgCyY2H7AHunFXo/Y3xJI1CWCZga3SStDU3OWSQY4mEkEAtnayQ0LFeC0ZWCBk84g4S0AYyqCUVkECOXjldswHI4APuhF2LOroRevCTgMPPjXaYQ0auwQS8KrCSkLVAu5pNa0O4QQcJrK2rJMWtH66g65as7mtrPHrWeD2d8ufQ9bxR7BMSUNYQGmIRWdelViG99JNnufbUs119QkWcs2MwSEcvFXovN7gn6Mlps4Eu6WHK/1n4CZCmkoV+KaTZ4JwkNR66jo+uzuVyY7ay1Llg0NDTyznVzq5KrL77t7n5GMLfhf/mNSf7V0CMN3zuMG6cHOwBMnPOuhGJN6dIvLdupfMczSEGr9JX//90r07TvY8Xjnz13jZOoTCWxNo2Jv86WPD9uXq4vrsRewkLDApfAR5dAh5V4zTtQhteoXToLrgNZw/LLmlBWfuoMayWx934XehSJ91YSJMLWZYixxpNLg2JXJIUq52I/b1CKuzRNKACMki3l2lv7WKw5tP2EXcdcKRuO8yLxpWQQRuR77I0bQvrqcva2jpi4a10Wq7KCDyfxVtfy6ZkmEurZBm2j5NaFCj4gCcSzxoqUDA/ovcJI8w+Ds29nb6dnrXEoi9YeWbNs52CqD5rJwqftRTm13CLc5aLSQ83NzJB1vpDwL8ftrd3s/vrxexiPpvPb25/GwZvr9clB2wYrfQhhoB4HYVgkH4/EPnXPxaBdNqsbVDvyXcb3gMo7ppVqRWncpqwFTIMWyEV6W0klLJVHYbiCd/4Twxm19aJyhpNlmkfNMnZhplQWEtcCrGupQp3GInESfksTZ+eniZKVo3J5UTZikEotULjA449bh/7neRIObfKj9rahnXqcI0OjcK0N+RTtspEjsleTqaTaWSVp0qaPUf/tb4O0BwvjvALpXUptWFvIfS2L7wH2F7GbnVYepBAxiaXSV9CD9C2K+nxd1d2HW9/btCFXvFccaE+c+35P4dsLUuPJzGNnRW+ue9fbt+Kl193Z1MYaG12od7LhleQhEdkfEp2yy6BAmWOLkQVT66Vwpr2dE5ecVxRY5N6N/s4W8wgAdkwViOeR8QPDs6G9OPPQUAs7COan8YAiZccYtf9CSey2/E= sidebar_class_name: "delete api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx index c3098e28e3..9b0793cadf 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx @@ -5,9 +5,9 @@ description: "Get flow node statistic by process instance id" sidebar_label: "Get flow node statistic by process instance id" hide_title: true hide_table_of_contents: true -api: eJzlV99P5DYQ/lcsP7XXZbPc0eq0qipRCU70qgOxVH1APHiT2V0fiZ3ak+VWUf73zthJCCSogrfqeIDYnp+fv/EMtUS19XJ5K6+cTcH7C+NRmRTk3UzaEpxCbc1FJpdyC7hCWnrUqZczWSqnCkBwrF5LQwuSuocDnWlDn6XCHX1n4FOnS7ZDm5/hIOxGlNGb0J27mXTwT6UdkCt0FcykT3dQKLmsJR5KNq0NwhYciW6sKxTGrV9OZNPcsbovrfHgWeP9YsF/nrpeVSn7nItrwMoZL3yfjiCLAncgtnoPZhTdTGydrUrIxPogNrl9EMaSbYoktRSUQXamyjLXacAr+erZYz3OQTmnAkAIhR/s2/VXSJFRdYw66piHSlHvNR74AnpZj06b7QjZGwpfZwwuJ9JHGVJ72Ol0F/YJpipHL5QDobZbB1uFhHkzi75gEu+xI7SocmGqYg2OXUblHjA/CmPi1gg9ls0he6PTTv21brVJdUa35t/ot9fvafMfadqizAHfnmen/7pEyTNqzNnbOYl9IalBATf8M5MnU5VyYfYqJy5xSYLHl3lObF3nUPz0It9f4DVXXjUN/zCLD+8ZvoJKUW1hXAHhKtv3Y+owbowOBricOWed7JD4MEbi3Lq1zuiyn2LwLnn3/0/3ZJzudbxw4Kv3tnIpELmQaF6Z7Ptgwc9T9XB6dSEGCQsICt8BHrTpIa0ctaDQ5NdAfcMdcZNf3t41s5ogsPcawuru+Vv2CXDQh/puy030eYelziU5J9zZdtYIEwYNEEuZ7I+TVv6ofwCTmoJoEj+cSDy4fTeOVC4n1TpC3yyTpN5Zj82yLq3DhoT3ymlF1xTw5rN47RtF7ZE0c5uqPGxPvdB8wANP9wwzQaL3OUPMPp6a+7j4uJi0xKIvWHmkzaOdHWI5aScKT1oK41F3jSuWi0l3V/c4nJT6cxjf2lnu8urs+vTm7Gh1tlpdXH7p5rpWjyIc0qG30oYYAuJ1FJKd9HnH5D/+vgms02Zjg3rLvsswdYK4qtZUUZzKOGFLA0fgTzt3KJMNuuRzcvGX6Mxyyy6s0WiZ90ETabhjJuysxThZcWGTaQ4rEomT8sSih4eHeaoKeg7VnBwyCBQk0NzJsi1uf7Y7s2fKmU19r61tWCcONuCAokxaQz5hq0zkmOzxfDFfRFZ5LJQZOHp1gT2Bsb8xhG+YlLmi223amOu2+G7l/ji+U0/Lj/aWcdQfVCDRLBbSrazrtfLwl8ubhrepq7jwZDzWXajSTHv+ppLfqNzDKMD+gZU/XLf/HvwoXv4XYjKfjtzmEKo+r3hFn4G14XdDL5ncgcqIphxVPDklhpU40BkN+FxX/ZP16eyGZFXFqPXIPuN+sD4Zz6+/BwFxY+/B/NZHh7zk+JrmX71Gt3o= +api: eJzlV0tv4zYQ/ivEnNqtYjm7abEQigIpkCzSLTZB7KKHwAeaGlvcSKSWHNk1BP33YqhH7EhBkdyKzSXmY17ffDMc1UBy6yF5gDtnFXp/YzxJoxBWEdgSnSRtzU0KCWyRFiRJe9LKQwSldLJAQsfiNRhZICTwiAeIQBtIoJSUQQQpeuV0yXoggc94EHYjytaa0L25CBx+q7TDFBJyFUbgVYaFhKQGOpSsWhvCLTqIYGNdIand+uUCmmbF4r60xqNniffzOf87Nb2oFNuciXukyhkv/BCO2FgnKEOx1Ts0I+8isXW2KjEV64PY5HYvjE2RQVDWEBpiY7Isc60CXvFXzxbrcQzSORkAIiz80b5df0VFjKpj1Em3cUhFeqfpwAkY7npy2mxHyC4zFDplcDmQwcsQ2j7TKgv7Dn2VkxfSoZDbrcOtJEyhiVpbOIn32BBZkrkwVbFGxyZb4QEwP3JjImsRKL6bY/pGo734a81qo3SKhvwb7Q7yA23+I0xblDnS2+Ps5V8XaBMBacrZ2nVu919sikcF3PBfBBdTlXJjdjLXqeCSRE8v87x0dp1j8dOLfH+B11x51TT8x1F8eM/wFei93OK4AkIqu/4xddhujA6OcLlyzjrokfgwRuLaurVOUzSnGLyL3/3/w70Yh3vfJhw59d5WTqEwlsTGVib9Pljw81Q9XN7diKOABQaB7wCPJgKPqnKaDuGRX6N06M74kU8eVk1Ug7L2UWNYrZ73sk9IR+/Q8NryI/r8hRWa+VUgZbabNcKEQRkkEO/O4+7+2dAA4/oRD03sjycSj27XjyOVyyGBuoW+SeK4zqynJqlL66iBCHbSabnOW+T5rE37RlY545xbJfOwPdWh+YAHnr4NM0Fa6zOGmG2cqvs4/zif1MRXX9DyRJsnPRlROamnvTypKYxHfRoXfK8Nuk/d03BS6s9hfOtmudu7q/vL5dXZ4mqxuLn90s91nVwTndBh0NK5GBzidXsJ+tvXPZP/+HsZWKfNxgbxjn23YepEcVetc604lHHAVsgwy/VzhzTp0Sv5nFz8S/Rq+ckurNFkmfdBkpytmAmZtdROVlzYUoUctkTioHwSx/v9fqZkUZlUzpQtGIRcKzQ+4Njh9me3Ez0TTq3yg7S2YR073KBDozDuFPmYtTKR22DPZ/PZvGWVp0KaI0OvLrATGIeMEf5DcZlLbdhM8Lnuiu8BdudtnzotP4ggaUf9owpcRV0hPUBdr6XHv1zeNLz9rUIXWsZT3YUqTbXn3ykkG5l7HDk4NFj44b77PPhRvPwJMRlPT25zCFWfV7yCKHyptN8rzaqJIEOZogtetSeXSmFJRzKjAZ/ramhZn66WEIGsGLUB2WfcD9on/fn193BBLO0jmt8G74iX7F/T/Au9Rrd6 sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-1.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-1.api.mdx index 58f971eb4f..5cba395026 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-1.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-1.api.mdx @@ -5,9 +5,9 @@ description: "Search process instances" sidebar_label: "Search process instances" hide_title: true hide_table_of_contents: true -api: eJztWF9v2zYQ/yoEX9J2TiwncZsGwwA3cYBsWZLFXvaQBAMt0TZbSVRJyoln6LvvjpQtWVJcG9jLtiJALJF3x7vf/aUW1LCJpqcP9FZJn2t9GWvDYp/TpxaVCVfMCBlfBvSUas6UP/2zQ1tU8a8p1+aTDOb0dEEDrn0lEqQEuoGlI4mTR0QuUAOfL2PDY4M8LElC4Vvp7c8aGRdU+1MeMXwy84SDKDn6zH0DjCAMdDECpMDuWISGq2/TfeHzEpGAsyfA1qJjqSJm3NL7Y5pZPlT2nistnC4bmY4OkWmURPEStaDEo40S8cSKZQrM/WV7NSz9RSifr2XAl67Ynh/olTlnhjdqw+Pg1T3gbNpBpjTC8OidDS/v+7BwdvPr7VV/2D/H5971Wf8KHp8KDM/5WMQC/bq93hAULDYbQayEp5VNfaH8NGTqTWX3rRUqTIiSqoGN1oq/+JZOdlHfG68HHFOKzYFeGB7peiBmyCiV2Z6jHuI8bIZDqmBNlbqnBmfwdt6Hn6eshMMAFcrKK7+lXM0b4OEvLEpCp0gvDOspfsdNqmJNWBjW85y8CfiYpaEhypKRUGhDEHIiNOl4b0G7GQtT9ABqg3rxgIzmZGV082n1k7RjZdqH2AYUUMh6VhZH5Q55WGFLq5Q5shbA7KmkGosDkrAJPD0LMyXL6GnWMmIv5KhBV4YhRPZGYnLPVH7snhUNZYq8/9DtHn38eHzc8brdkw/et00jj/FQkgk3xEw5ifmLsToSXyZzu2QNJ3JM9lDWPb7BgRDYElaKqN5zhAePMVpLdMJ9Mc4rM9FTmYYB2GSgoqPQEuM66RrSFqCj1q6QV7Ltga6BRVtVkKyPLmwzyL3kUNvsnK5X906LjJdiAOf1boAQHu4WakWDqjaWw1X16Xo745NlNn2x+wqFZhqVcrugExlrl7CHntfQk1PfQfhPteBqGduxvH3vzN87c0Nnztumq1W7tVsjDQu3MqqkwB3X0Kd0XQ8kOm5KJHATg7IBmS6C17MJAB+FPPph16xCX6d6yyCPQGUo+I2eWRa2xk23UNso4dJXSqoVDEd1GC6kGokg4PE6Bu/a7/795h7Xzb2WhlzINA7+c+Z2m4K8d3tJSuFMuGX4H0S7nff9VAkzt215BOMIV/u2Wz1AJV0ABPKL4PYNxpWtL74RN1OJDT6R2gLBzBTe2rNOOyffX5G33RBEURc1g75nVUkVVDe6cNhmp+32YgqistNFAgUzs8OHEmyUT+245/xqJ3HgDKXPwqk7fV3tIYx1uBGzyI6LOOZhBLjTD2yhz+8yhbgT78RrlISkr0gp4qKQMzUmaZTjiBslZW5SdH4aIJ0zeumbom0kArtRi6Jp8H5z27/rDfv7g/5gcHlzjQ0Fj8v5cG4o+XslJVfRKoTvjoguqS+WofrzH0MbVpgGd8UHkr67TK2PhfYErz7deLXZpej3pZHF2ziQeGvjRnlgCKpL+XBRzBDNo4JXHgTKs4mdZL3q3L6wDqrOtqtDK0MtemEsLeB5Qt7Y706c3KYjKDLo/HqISMLsSAs/Rsy4nf59iUjjmF6/fomYLMVCcSGRBPMkKmQ5jZIp5s5USuOUxFoHolEtl3oYBhry7vn5+cBnETQDdgAHIgygJIfxG2nzSLvKV1oV5kD6esUtpH1vKz6Gmwdo2c4F6TZKnS2DgnYOvAPP5aE2EYtLB22oOWuAraLZwEWxnYQMIj/LtVvk5eiBzjpFCOyXZeUlCdzqKssDXSxGTPPfVZhluPwVPyVgWSwKkSuZdMpZ4KLCRT09c11kf4gKrS5N9dsIllvH0QNPJ2Yj7VOpxt7eDIaYnvnXyQjyA1YVe8Yvl/D/lD7CHwaiBcfWDru+oCGLJ6ltM9TJxYRmKaKzQrCS/9ayZcGJ5yUtf/xkCchQfuHxT7DhrDH46m5zfwMoNl4Y +api: eJztWG1PIzcQ/ivWfOHuupDl7V6iqhIHQeJ6BUpS+gGiyvFOEh+79p7tBdIo/70ae5NssgsXpPZD2+MTsWfG42eeefFOwfGRhfYNXBot0NozZR1XAqEfgc7RcCe1OkugDRa5EeM/diECg18LtO6jTibQnkKCVhiZkyS0oevlWB7sMVkatBCB0MqhcqTD8zyVwltvfbGkOAUrxphx+s9NcoQ26MEXFA4iyA354iRa2h3K1KH5ttwdTipCUjkcoYEIhtpk3IWltwcw83rk7DUaK4Mvzyrt79WVenxU0bPOSDUiqUGeqTm2SaNEzg0q9/Pmznr501Q/nOsE5wHbXN86btwJd9joDarkyT3rGndIqciIREfHvbPrDkRwfPHL5edOr3NC/x+dH3c+d06gP4tAKiGTkgOllYHWKXJVgfQEh1JJ4sbmt3KouHLPQrxGcW8bhDSiSLl5tbb72huVLiVL68lBWMg/cUOihMw5Gq6SlhvDJxCBdJjZOplnpKiN21yjniaYNsOhTbLiSj2O3WOI4KTTPYb+rIJDlxyaVVd+LdBMGuDBR57laXDkKE3rZeIKXWGUZTxN67WCvUpwyIvUMePFWCqtYwQ5k5btxq8hgnueFhQB8ob8woQNJmxx6ebT6ifZoMqtQJVINSIjqzm7PKoMyM0CW1iXLJH1AM76Fde4SljOR5iwB+nGbM6eZi8z/sj2G3zlRCG2NZCja27KY7e86TucsLfvDg/3P3w4ONiNDw/fv4u/fTV2q3qajdAxN0am8NF5H5nQ+cQv+YszPWRbZOuaftktJpXTbKvC6q0guHOr6LbM5ijksKzuzI51kSYs406MvdGK4qroCtIeoP3opZCvZdsNrIAF0TpIPkanvqGUUQqoPR+cw7genYgN52YGE7baHAjCvZdRbdnk1pvT3qL6HMYvxmfm/6iF21wrGxJ0L44b+nghAmR/V9teL1svLGffu/n3bv4PdfOy1Yb69rIW7bTj6UaXqjhwhbZIna37QUIHTcl4wh1nUt3zVCZPZ2Ru9CDF7IeXZiYxobAbJkqG1vJRM6XmxbBxMyzUNiq4dIzRZgHDfh2GU20GMklQrWLwpvXm33/dg/p1z7Vjp7pQyX/uuodNJD+6PGMVOjP0Cv8Dtvs3giiMdBPfygfIDZpt3/Fu+rNoCkLrO4n+Vz/a/MGdoRtrGgpybT0Q3I2hDa373VYpvr0Qb4XBCcgXc4/GelcKk0IbpgHbWbvVmo61dbP2NNfGzfzAYiQflJM+7YW4+ukd2pBqwdNxOH3V7d4YGW0onvkRk0ZDYkA4fccX+vL9szT3Pn4fN1oi0SesLHmxtDN2Lm+0E4QbLc3CdBni1CW5cOl5bJZtI5fUjSKgq0EbLi47V0e9zna30+2eXZxTQ6HjSj2aKirxXlgpXfQO+cbqhWAufTqn6qffe55WlAZXyw8znfAAWx0l/QlxfUKqLfn5ZzkRrI09y43KtBM/O8vEK5NKddZI1pfKuWQ5fiynDGcKfGquiKtTQ3XM8aNyvP4wmPporg/PCyfWpmZyYqh9dMrsvfAfx5BdFoNUCmJKnU+acT9DMy6cvEf/vBCawkLvgPr7Tio2NzvUhmVaSafJIa/pjC4o0cZau+AkFUYufIqEPCXO2Har9fDwsCN4VqiE7widEQypFKis50NJy8/lSrSmnGhhF9pS+98tg0M0qAS2SkO2RVbv5wyC3Z14Jw5Ja13GVeWgZwrUCmAL6jt8dK085dKPkd67aVm7buB+FxYU2K7aKutXPyrL0A1MpwNu8TeTzma0/JW+VVANXVatUF9hjDwJrAgpAseh5Wz3yKHFq6z+/KHaHDSOhMDcPSvbrxTky4tujxKr/ISa6YR0DH+gz6v8AdpwC7dARPTg+ELj16eQcjUqfE+CYJeynxeEznIKXy0W/mbz6qQmFS9//OgFWE/fofoJovI2jn6G5+Jf7YeYrw== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -36,15 +36,15 @@ Search process instances ## Request -

Body

required
+

Body

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

Body

required
+

Body

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

Body

required
+

Body

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

Body

required
+

Body

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

Body

required
+

Body

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

Body

required
+

Body

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

Body

required
+

Body

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

Body

required
+

Body

Search variables diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx index 6d1356d49e..b378b45273 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx @@ -5,9 +5,9 @@ description: "Get sequence flows of process instance by key" sidebar_label: "Get sequence flows of process instance by key" hide_title: true hide_table_of_contents: true -api: eJzlVktv2zgQ/isET93WsZw2WwTGokAKOIXbogliFz0EOdDS2GYjkSo5ctYQ9N87Q0qOHyp297hoDhE5nPd8M+Naolp5Ob6Xt86m4P3UeFQmBfkwkLYEp1BbM83kWHr4UQG9XOf2yb/ffoKtHMhSOVUAgmMdtTR0IdbH8KYNHUuFazpn4FOnS1ZGRJIVdinKaFLozuZAOjKiHZA9dBUMpE/XUCg5riVuS1atDcIKHLEurSsURtLbC9k0DyzuS2s8eJZ4PRrx59D0rErZJsmnllQZZJaXyUv+nBhTzqkQCULh9+genTYrMkl/A3nRZ2dqNirXmeCAwOOhPVWWuU5DahNKwiKH4tV3z3I9TtjFd0hZAXFSQVDH6ChlWPl/zMyb15JcLChktYKeELhMbfb7HiPhNHB60ZgzaeKcdbLLxJvTTFxbt9BZBubf5fx/Fe7Fabh3seDApfe2cikIY1EsbWWy3wMFf/b1w9XtVOwFLCAI/Ab5IKKHtHIat2FELkA5cGc8Isf3D82gphTYRw3h9nA8KT8Aim7wiiVP3r7BKRZbEWcuzeK15Wm9gpAcnr5jmWzOk1bmrJPxSU0iTdJpPwvaJXvrNt08r1xO4nXMfjNOknptPTbjurQOG2LeKKcVVSqknN9i5ZeqyjnVuU1VHsjHgc3XIPiBNwaHhHRnjETrQ84y2zhUdzm6HPVqYtZfaHlGzrOeNWLZqycy92oK+6Wr5Iz5YtBd9Z6XRqnjbmyX4c3t5O5qPjmbTWaz6c2XbjG2cuThPiJ2WloXg0N8j0yy477uwPzx2zwAT5ulDeItAG/C7gZxWy2oqTiU04CtUGEZ0gf1BoQymUhtUebA4+sYZHwSnVpqJlFYo9Ey9IMkOlsxEtbWIrdD7G1SzW5FIHFQnlD09PQ0TFVBE1ENySAngZwEWtzM2+btc0sZHAlnNvU7aW3DPXGwBMcwTlpFPmGtDOQY7PlwNBxFVHkslNkz9F977CCLu4Ih/I1JmSsqbtO6XLf9dy8353FSHXYg0cZR5VETEtJiL93Lul4oD19d3jRMJjYXBsdz64VGzbTnM3X+UuUeTpzcjVn54q79ifWH+PXPsN6YOnybbWj8vOIbHQNww/+G5plcg8oIqexVfLkikJW4J8Orn7tpN6w+TOb0rCpO1i6hR4gPCntd+Ot9YBBz+wjm3c4h5Cu71DQ/ARnwu5g= +api: eJzlVt1v2zYQ/1eIe9o6xnLabCiEYUAKOIXXYQmSFH0I/EBTZ5uNRCrkyZkh6H8fjpSc2Fax7XGoX2R+3O/ufvfFFkitA+QPcOOdxhDmNpCyGmEhwdXoFRln5wXkEPCpQavxqnTP4cPuE+5AQq28qpDQM0YLVlUIOTzGM2Mhh1rRBiQUGLQ3NYNBDp9wJ9xK1EmlMINOCR6fGuOxgJx8gxKC3mClIG+BdjVDG0u4Rg8SVs5XitLWLxfQdQsWD7WzAQNLvJ1O+XOo+q7RrBMkaGcJLfGVN9kb/pwoU96r6AlhFV7tB/LGrqHjn4SLMT1zu1WlKQQ7hIEO9am6Lo2O1Ga1d8sSq5++BpYbMcItv6JmgNpzQMgk7wIpasI/MvPuLXQSKgxBrXHEBQ5Tz/7YYdo4dVwCGSp5a+a98zAw8e6UiSvnl6Yo0P47zv9X7l6cunubAo4c+uAar1FYR2LlGlt8H1nw81g9XN7MxSuHBUaB74CPTkJA3XhDu9gil6g8+jNukfnDopMtaOceDcbV4rhTfkQSQ+MVK+68Y41TLHci9dwKaeO4W68xksPdN4dse571MmeDTMjaR9x12YB+FtGBrfXboZ83voQc2sR+l2dZu3GBurytnacOJGyVN2pZJvL5LEV+pZqSqS6dVmXcPnbsfoOCD3hisEu0QcE5krRPmGXWcQj3fvp+OorEV7+B8pI5LzgbonoUJ10eRYrzZYjkHd9LTg/RexkatUmzsR+G1zez28v72dnd7O5ufv3nMBh7uU4eZMQepTcxGsTrdAmG21dDMv/+5T4mnrErF8X7BLyOsxvFTbMsjWZXTh12QsVhKJQms0WhbCG0q+oSuX0dJxn/EwPsynlROWvIcepHSfKu4UzYOEdcDqm2lY4xTInEToU8y56fnydaVY0t1ES7ikkojUYbIo89b3/0O/JIuHA67KWNi+vM4wo9p3HWA4WMUTmRk7Pnk+lkmrIqUKXsK0X/tcYOWNwHjPAvyupSGctaosltX38PsD1PneqwAkFCniCPinAh+1p6gLZdqoCffdl1vP3UoI+N46X0YqEWJvD/AvKVKgOeGLlvs/DDbf/E+lF8+xk26tOQ33YXC79seAUyvvbSm69bdBI2qAr00ap0cqk11vRKhkc/V9O+WX2c3YME1TBZe0KPMj4Cjprw64d4Qdy7R7S/7Q0iXrJJXfc3GfC7mA== sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx index e9df1fff30..434048b759 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx @@ -5,9 +5,9 @@ description: "Get decision requirements as XML by key" sidebar_label: "Get decision requirements as XML by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v0zAQ/iuWP/FSmu4FhCqEtIluKhtsWotAqibkJtfWW2IH2+moovx37uwka9cg+Ir40vrl7rm3584puRNLy4cz/gFiaaVWN/CjkAYyUM7y2x7XORjh8GKc8CH/maWnmwvYfD/gPZ4LIzJwYAig5Ao3KHIPG7yTCpe5cCtcJ2BjI3MCwUPUZnrBktoeM9sGe7zeojFnCuhxG68gE3xYcrfJCV8qB0swKLrQJhMuHL055lV1S+o218qCJY3DwYD+du1PijgGS6ZijVDKeWz46SIMjtZ7Fq0zUi0Rv6p6/LgLc6zWIpWJjwWs28UWeZ7K2Ocwyo2ep5C9vLOk12FLz+8gJgCUxMw7GSKxTrjC/jELR4ccXcwwPLGEjgioLgil4u7LcLAfN95Il9LRyBht2kwc7WfiTJu5TBJQuzl4Eb3498M93g/3JhQcqPRWFyYGprRjC12o5P9gweuufji5HrOtgBl4hf8gH3hoIS6MdBs/E+cgDJhXNBOHs9uqV2IK9L0Ev7t9OhrPwXXPRSYs+/bpks03LIxXHLsrTQN5CT4tNGiHPFofRIlJohKFKj/OyB2zbiZ0YXDA8TKktxpGUbnS1lXDMtfGVSi8FkYKLIXPKd2F0i5EkVIuUx2L1B8/9Xy6AkYX9AbQdHe4JxIE631KI9nYhXs7eDvoRCLR36A8UuMRZ+Vc3okThDuR/GPRlGpCciHopjxtuUUuL3zK6+ft6np0czIdvZqMJpPx1efmqav10MPtkrcotYveIdoHId5InzVs/fh16pkl1UJ79ZphV/4VBnZdzLFrKJT9gDUT/mXDPyfXwIRKWKyzPAWaT9g5/rKhOq1YA4vdwjKtpNPEba/pjC6ICSutHfE9NC9Ck1uBSBSURRY9PDz0Y5HhyBN9NEhJQCcBX2GSrfN2WZ/0nignOratttR+HxlYgAH0MqqBbESoROQQ7EF/0B8EVlmXCbVl6O+baCd/ban8p0CeCixrVTtb1g0242v67sEWw99hAKEuQyqFZpnxspwLC19MWlV0jK+D8a3/2Fu+ExNpaY0dvBCphT1f2kHJn9UfZMlz9ocvp07/GxarjW/vtKAdLj09/W+FY4mvQCTIR3It3JwglXK3pdN+IVHjtOPnfDRFGVFQdtoMPiG3R+30492pF2BTfQ/qfeuVoy35VVW/APihoiw= +api: eJzlVm1v2zYQ/ivEfVo71nLarCiEYUCKuUWWdgliFy0QGANNnW02EqmSlBND4H8vjpSUONbQfR36SeLLPXf33AuvBS82DvIb+BOlcsroa/zWKIsVau9gycHUaIVXRp8XkMN9Vb7dX+D+nxPgUAsrKvRoCaAFLSqEHG5xDxyUhhxq4bfAoUAnraoJBHK4wD0za1Z0+ph9rJBDtywg97ZBDk5usRKQt+D3NeEr7XGDFjisja2ET1uvTyGEJYm72miHjiReTqf0OdQ/b6RER6qk0R61j9h477P7qqT/I43OW6U3EEIIHE7HMM/1TpSqiL6g84fYoq5LJSOHWW3NqsTq16+O5EZ0mdVXlARQW2Leq+SJ88I37ocsvHoJgUOFzokNjnhAcXFeaDl+mDaO/ebglS9pa2atsQMTr46ZeGfsShUF6kMOnmfP///unh67e50CjhR6ZxorkWnj2do0uvg5suC3sXo4uzpnjxxmGAV+Aj4CB4eyscrvY09cobBoX1BPzG+WgbcgjblVGFfLp63xPfrxvsiEY18+fmCrPUvttUK/NdSQNxhpoUabQ7Y7yQpbZO0t7kNsZ2SO3fUdurEl5NAmekOeZe3WOB/ytjbWB+CwE1aJVZnYpbMU2rVoSuKyNFKUcfup5YstMjqgN4C6u98ioyRI2idEI+k4hHszfTMdRaKr/4LykBoPOFvv61GcdHkUKT4WfajmdC853YdnCLeo1UWkvHveLq9m12eL2Yv5bD4/v/y7f+o6ucAPQj6gdCZGg2idLkF/+12frX99XsTMUnptoniXYZfxFUZ21axKJcmVY4cNE/FlY0J6tUMmdMGkqeoSqT/V1sTDPtXpj/Wwa2NZZbTyhnI7SnprGsqErTGe8j0Vr5AxhimRyCmXZ9nd3d1EiqrRhZhIUxEJpZKoXeSx4+1Dt8OfCBdGukFambjOLK7RopaYdUAuI1RK5OTsyWQ6maascr4S+pGi/15EB/wNoYqjQF0KpQk/Gtt2BXYDO5p7Cku9PU8gVGVL3hXLDbTtSjj8ZMsQaPtbgzaW/kNtxUoslKP/AvK1KB0e2TI0SvilG8iKZ+wHk9Oo/X0W630s77KhFfA4paVZLSwDhy2KAm00LZ2cSYm1fyQzTEhUOEP7eT9bAAfREDsDg0+SO6KO2vH723iBLcwt6j8Gqzwtya4QvgP4oaIs sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx index a4d4935afc..a00d32b6d3 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx @@ -5,9 +5,9 @@ description: "Get process definition as XML by key" sidebar_label: "Get process definition as XML by key" hide_title: true hide_table_of_contents: true -api: eJzlVltv0zAU/iuWn7h0TccGQhFCGqJDg8GmtQikaQ9uctp6S+xgO92qKP+dc+wkXdtweUW8tL6c853bd45TcScWlsfX/NLoBKx9D3OppJNa8ZsB1wUYQZuzlMf8Ic/erT/Bmg94IYzIwYEh3Yor3KDAnb+TCpeFcEtcp2ATIwuPF3PUZXrOimCKpRtbA27gRykNoB1nShhwmywhFzyuuFsXBC6VgwUYFJ1rkwsXjl4d87q+IXVbaGXBksaL0Yj+to1PyoSson6iEUo5jw0PLsK4aL1n0Toj1QLx63rAj/swz9RKZDJl5DxYt40tiiKTiU9fhCHPMsif31rS67GlZ7eQEABKYtKdDJFYJ1xp/5iFoxccXcwxPLGAngioKAilkv7LcLAfN95Il9HR2Bhtukwc7WfiVJuZTFNQ2zl4Fj3798M93g/3KhQcqPRWlyYBprRjc12q9P9gwcu+fji5PGOPAmbgFf6DfOChhaQ00q39QJyBMGAOaCDG1zf1oMIU6DsJfnezOxc/gOsZikxY9v3zOZutWRisOHCXmgbxAnxOaMTGPFodRo3ywUbZRhUq1X62kW9m1c7q0uC041XIdR1HUbXU1tVxVWjjahReCSMF1sUnmO5CneeizCixmU5E5o93w5gugdEFvQY05x3uiRHB+pBySja24V6PXo96kUj0Fygbnmxwls4VvThBuBfJvxxt3SYkF4Jua9XVXhQyvHvNQ3dxOb46mY4PJuPJ5OziS/voNXro4eP6dyiNi94h2gch3kqfttT9+G3qaSbVXHv1hm4X/jUGdlnOsIUolP2ANRP+mcM/J1fAhEpZovMiAxpWLcla3tOKtbDYOizXSB9NRPeazuiSmLDU2hH5QycjNLkViERBWWTR/f39MBE5zj8xRIOUBHQS8Ekm2SZv583JYEc51YnttKX2+8jAHAygl1EDZCNCJSKHYA+Ho+EosMq6XKhHhv6yo7aS19XJfxQUmcCa1o2nVdNt13x1GMbRbr/haRxAqeWQV6FzrnlVzYSFryarazrGd8P4obBpNN+WqbS0xvaei8zCnm/dCOVPrppPpafsdx9UvcG0fFZr3+hZSTtceqL63xqnFV+CSJGZ5Fe4OUFSFe6RTvfhRC3UDaYP4ynKiJJS1aVzh+YetdePN++8AJvqO1BvO68cbcmvuv4JhPioRg== +api: eJzlVm1v2zYQ/ivEfdo6xnLabCiEYUCKuUXWbgliDxsQ+ANNnW02EqmSlBND4H8fjpTk2NZevg79JPHlnrt77o0teLFxkD/AnTUSnfsZ10orr4yGJQdToxW0uCkgh+eqfLf/iHvgUAsrKvRoSbYFLSqEHB7jmdKQQy38FjgU6KRVdcTL4SPumVmzOqlixUEXB4tfGmWxgNzbBjk4ucVKQN6C39cErrTHDVrgsDa2Ej5t/XAFISxJ3NVGO3Qk8Xo6pc+x8nkjSStwkEZ71D5i47PPnquS/s80Om+V3kAIIXC4GsO80TtRqoKR8ej8Mbao61LJSF9WW7MqsfrusyO5EV1m9RklAdSWSPcqeeK88I37VxbevIbAoULnxAZHPKCgOC+0HD9MG+d+c/DKl7Q1s9bYgYk350y8N3aligL1MQevslf/f3evzt29TwFHCr0zjZXItPFsbRpdfB1Z8P1YPVzf3bAXDjOMAl8BH4GDQ9lY5fexIa5QWLQX1BDzh2XgLUhjHhXG1fK0L35AP9IUmXDsz18/sdWepcZaod8aasQbjJxQi80h211mnfDFQdhl7SPuQ+xtZJvd9b26sSXk0CauQ55l7dY4H/K2NtYH4LATVolVmaimsxTntWhKIrY0UpRx+9SNxRYZHdA0oD7vt8goI5L2CXFKOo7h3k7fTkeR6OrfoBzy5ICz9b4exUmXR5Hi5OjjNqd7yek+VkPsRa3S3OsG3e3d7P56MbuYz+bzm9vf+qHXyQV+FP8BpTMxGkTrdAn62+/71P3lj0VMM6XXJop36XYbpzGyu2ZVKkmunDtsmIhjjgnp1Q6Z0AWTpqpLpGbVJ1mf9/THeti1sawyWnlDiR4lvTUNZcLWGE/JnypZyBjDlEjklMuz7OnpaSJF1ehCTKSpiIRSSdQu8tjx9qnb4SfChZFukFYmrjOLa7SoJWYdkMsIlRI5OXs5mU6mKaucr4R+oeg/VtQReUOc4qOgLoXSBB4tbbtqe4DdZWpHp/UGHPIESiW35F3lPEDbroTD320ZAm1/adDGpnAotFiWhXL0X0C+FqXDM9uGFgrf3HdPpW/ZPz2oRp3p81nvY6GXDa2Ax5dber+FZeCwRVGgjXalk2spsfYvZIaHE5XQ0Jg+zBbAQTRE1UDnSZpH1FE7fnwXL7CFeUT902CVpyXZFcJfhPioRg== sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/sidebar-schema.js b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/sidebar-schema.js index 517c97c4df..ebb41a15e7 100644 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/sidebar-schema.js +++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/sidebar-schema.js @@ -7,6 +7,5 @@ module.exports = { { Specifications: require("./specifications/sidebar.js"), }, - "apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks", ], }; diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md index 94cf88764a..31bedd5f7c 100644 --- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md +++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md @@ -5,6 +5,12 @@ sidebar_position: 1 description: "Build applications for human-centered processes by querying user tasks, assigning users, and completing tasks with the Tasklist API." --- +:::note +Camunda introduced the [Camunda 8 REST API](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md) with `8.6` to manage and query process entities such as processes, decisions, forms, and user tasks. + +Camunda has also introduced [Zeebe user tasks](/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md) to build more advanced functionalities. If you use Zeebe user tasks with `8.6`, task management endpoints in the Tasklist API will not work. +::: + ## Introduction The Tasklist API is a REST API designed to build task applications for human-centered processes. The API allows you to query user tasks, assign users to these tasks, and complete these tasks. diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/tutorial.md b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/tutorial.md index ec299cbe3a..2bb1795037 100644 --- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/tutorial.md +++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/tutorial.md @@ -41,7 +41,7 @@ In this tutorial, we will execute arguments to assign and unassign a user to and ## Assign a Zeebe user task (POST) :::note -In this tutorial, you will capture a **Zeebe user task** ID to assign and unassign users in this API. Camunda 8.5 introduced this new [user task](/components/modeler/bpmn/user-tasks/user-tasks.md) implementation type, and these Zeebe user tasks are different from job worker-based user tasks. See more details on task type differences in the [migrating to Zeebe user tasks documentation](/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md#task-type-differences). +In this tutorial, you will capture a **Zeebe user task** ID to assign and unassign users in this API. Camunda 8.5 introduced this new [user task](/components/modeler/bpmn/user-tasks/user-tasks.md) implementation type, and these Zeebe user tasks are different from job worker-based user tasks. See more details on task type differences in the [migrating to Zeebe user tasks documentation](/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md#task-type-differences). ::: First, let's script an API call to assign a Zeebe user task. diff --git a/versioned_docs/version-8.6/components/concepts/workflow-patterns.md b/versioned_docs/version-8.6/components/concepts/workflow-patterns.md index ace1b2cbd6..8d148ee15e 100644 --- a/versioned_docs/version-8.6/components/concepts/workflow-patterns.md +++ b/versioned_docs/version-8.6/components/concepts/workflow-patterns.md @@ -276,10 +276,6 @@ An important problem to solve is how to roll back a business transaction in case In BPMN, you can use [compensation events](/components/modeler/bpmn/bpmn-coverage.md) to easily implement compensations in your processes. -:::note -The compensation event is supported in Camunda 7, but not yet in Camunda 8. It is on the roadmap and will eventually be available in Camunda 8. -::: -
1 diff --git a/versioned_docs/version-8.6/components/modeler/bpmn/call-activities/call-activities.md b/versioned_docs/version-8.6/components/modeler/bpmn/call-activities/call-activities.md index ac43525cef..3c238d20e9 100644 --- a/versioned_docs/version-8.6/components/modeler/bpmn/call-activities/call-activities.md +++ b/versioned_docs/version-8.6/components/modeler/bpmn/call-activities/call-activities.md @@ -42,10 +42,6 @@ When a non-interrupting boundary event is triggered, the created process instanc ## Variable mappings -By default, all variables of the call activity scope are copied to the created process instance. This can be limited to copying only the local variables of the call activity, by setting the attribute `propagateAllParentVariables` to `false`. - -By disabling this attribute, variables existing at higher scopes are no longer copied. If the attribute `propagateAllParentVariables` is set (default: `true`), all variables are propagated to the child process instance. - Input mappings can be used to create new local variables in the scope of the call activity. These variables are also copied to the created process instance. If the attribute `propagateAllChildVariables` is set (default: `true`), all variables of the created process instance are propagated to the call activity. This behavior can be customized by defining output mappings at the call activity. The output mappings are applied on completing the call activity and only those variables that are defined in the output mappings are propagated. diff --git a/versioned_docs/version-8.6/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md b/versioned_docs/version-8.6/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md index 56bee823e4..5a1b961b48 100644 --- a/versioned_docs/version-8.6/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md +++ b/versioned_docs/version-8.6/components/modeler/bpmn/embedded-subprocesses/embedded-subprocesses.md @@ -14,6 +14,8 @@ When an embedded subprocess is entered, the start event is activated. The subpro Embedded subprocesses are often used together with **boundary events**. One or more boundary events can be attached to a subprocess. When an interrupting boundary event is triggered, the entire subprocess (including all active elements) is terminated. +When adding an embedded subprocess to your model, you can either add a collapsed or expanded subprocess. You cannot collapse an existing expanded subprocess in your model. + ## Collapsed subprocesses :::caution @@ -22,7 +24,7 @@ Collapsed subprocesses are currently only partially supported by Optimize. While All other Camunda components fully support collapsed subprocesses. ::: -A subprocess can be collapsed to conceal its internal details, thereby hiding complexity within an activity and enabling the nesting of multiple levels of subprocesses. This functionality allows you to simplify the view of a process diagram and facilitates drill-down capabilities to examine details. +A collapsed subprocess conceals its internal details, thereby hiding complexity within an activity and enabling the nesting of multiple levels of subprocesses. This functionality allows you to simplify the view of a process diagram and facilitates drill-down capabilities to examine details. Collapsed subprocesses serve purely display purposes. For the creation of reusable processes, it is recommended to utilize [call activities](../call-activities/call-activities.md). diff --git a/versioned_docs/version-8.6/components/modeler/bpmn/user-tasks/user-tasks.md b/versioned_docs/version-8.6/components/modeler/bpmn/user-tasks/user-tasks.md index 5212b2a3b2..90a64a6191 100644 --- a/versioned_docs/version-8.6/components/modeler/bpmn/user-tasks/user-tasks.md +++ b/versioned_docs/version-8.6/components/modeler/bpmn/user-tasks/user-tasks.md @@ -162,7 +162,7 @@ A user task does not have to be managed by Zeebe. Instead, you can also use job workers to implement a custom user task logic. Note that you will lose all the task lifecycle and state management features that Zeebe provides and will have to implement them yourself. Use job workers only in case you require a very specific implementation of user tasks that can't be implemented on top of Zeebe user tasks. :::info -If you started using Camunda 8 with version 8.4 or a lower version and upgraded to 8.5 or newer, your user tasks are probably implemented as job workers. Refer to the [migration guide](/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md) to find a detailed list of the differences between the task implementation types and learn how to migrate to Zeebe user tasks. +If you started using Camunda 8 with version 8.4 or a lower version and upgraded to 8.5 or newer, your user tasks are probably implemented as job workers. Refer to the [migration guide](/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md) to find a detailed list of the differences between the task implementation types and learn how to migrate to Zeebe user tasks. ::: You can define a job worker implementation for a user task by removing its `zeebe:userTask` extension element. diff --git a/versioned_docs/version-8.6/components/modeler/web-modeler/advanced-modeling/form-linking.md b/versioned_docs/version-8.6/components/modeler/web-modeler/advanced-modeling/form-linking.md index c7cf43464f..cf43c6b50c 100644 --- a/versioned_docs/version-8.6/components/modeler/web-modeler/advanced-modeling/form-linking.md +++ b/versioned_docs/version-8.6/components/modeler/web-modeler/advanced-modeling/form-linking.md @@ -89,6 +89,10 @@ To correct any instances affected by this issue, we recommend the following step ### Camunda Form (embedded) +:::info +Embedded forms are supported only by job worker-based user tasks and are not available for the [Zeebe user task implementation type](/components/modeler/bpmn/user-tasks/user-tasks.md#user-task-implementation-types). +::: + When choosing **Camunda Form (embedded)** as type you have the option to directly paste the form's JSON schema into the **Form JSON configuration** field of the properties panel. The form will be embedded directly into the BPMN diagram's XML representation. diff --git a/versioned_docs/version-8.6/components/modeler/web-modeler/camunda-marketplace.md b/versioned_docs/version-8.6/components/modeler/web-modeler/camunda-marketplace.md index 1e366d34eb..0842066bae 100644 --- a/versioned_docs/version-8.6/components/modeler/web-modeler/camunda-marketplace.md +++ b/versioned_docs/version-8.6/components/modeler/web-modeler/camunda-marketplace.md @@ -12,6 +12,10 @@ If you are a **[Web Modeler Self-Managed](/self-managed/modeler/web-modeler/inst ## Browse Marketplace Connectors +:::note +Connectors created by partners or the community are not part of the commercial Camunda product. Camunda does not support these Connectors as part of its commercial services to enterprise customers. Please evaluate each client to make sure it meets your requirements before using. +::: + To navigate to the Camunda Marketplace, take the following steps: 1. Log in to your Camunda account. diff --git a/versioned_docs/version-8.6/components/modeler/web-modeler/git-sync.md b/versioned_docs/version-8.6/components/modeler/web-modeler/git-sync.md index 8d0ed17309..e61588ef5d 100644 --- a/versioned_docs/version-8.6/components/modeler/web-modeler/git-sync.md +++ b/versioned_docs/version-8.6/components/modeler/web-modeler/git-sync.md @@ -36,18 +36,22 @@ Click **Create GitHub App** to finish. 3. Select **Only select repositories**, and choose the repository to sync with Web Modeler. 4. Once redirected to your application's installation page, copy the **Installation ID** located at the end of the page's URL: `https://github.com/settings/installations/{installation_id}`. -### Configure GitHub in Web Modeler +### [Configure GitHub in Web Modeler](#configure-github-in-web-modeler) :::note An organization administration account (or project administrator in Camunda Self-Managed) is required for the initial GitHub configuration. ::: +:::note +When using a self-hosted GitHub instance, ensure the environment variable `CAMUNDA_MODELER_GITSYNC_GITHUB_BASEURL` is set to the API URL of your self-hosted GitHub instance. It usually looks like `http(s)://HOSTNAME/api/v3`. Refer to [GitHub documentation](https://docs.github.com/en/enterprise-server@3.15/rest/enterprise-admin?apiVersion=2022-11-28#endpoint-urls) and choose the correct enterprise server version. +::: + 1. Within Web Modeler, navigate to the process application you would like to connect to GitHub, and click **Connect GitHub**. 2. Provide the following information in the GitHub Configuration modal: - **Installation ID:** Found in the URL of your GitHub App's installation page. - - **Client ID:** Found in your GitHub App's settings page. + - **Client ID:** Found in your GitHub App's settings page. You can also use Application ID as an alternative. (If you are using GitHub Enterprise Server 3.13 or prior, you **have** to use Application ID) - **Private Key:** The contents of the .pem file downloaded from your GitHub App's settings page. - **GitHub repository URL:** The base URL of the repository you want to sync with, for example `https://github.com/camunda/example-repo`. The URL cannot contain the `.git` extension or a folder path. - **Branch name:** The branch name to use for merging and managing changes. @@ -64,10 +68,6 @@ When successful, your project will display a new **Sync with GitHub** button. ## Sync with GitHub -:::note -File synchronization only happens at the root level of the remote repository. Files contained in subfolders will not be synchronized. -::: - Organization owners/administrators, project administrators, and project editors can sync their version of Web Modeler with the connected GitHub repository at any time. 1. In your connected process application, click **Sync with GitHub**. @@ -96,3 +96,4 @@ Existing GitHub configurations can be edited from the gear icon beside the **Syn - Actions which alter the SHA of the commit to which Web Modeler is synced (for example, squash) may cause synchronization errors. - Timeouts may occur during a sync. In the event of a timeout, close the modal and retry the synchronization. - A single synchronization action is limited to incorporating a maximum of 250 commits or making changes to up to 300 files, regardless of whether these changes affect the Web Modeler files directly. Be aware that Web Modeler does not provide a notification when these thresholds are exceeded. Should you encounter this limitation, it may be necessary to initiate a fresh synchronization. A fresh synchronization fetches all the files in the repository without relying on the incremental changes, thus bypassing the limitations. This can be achieved by either changing the branch or modifying the GitHub repository URL. +- Using self-hosted instances of Git providers may require additional configuration. Refer to the Web Modeler [configuration](#configure-github-in-web-modeler) for more details. diff --git a/versioned_docs/version-8.6/components/modeler/web-modeler/milestones.md b/versioned_docs/version-8.6/components/modeler/web-modeler/milestones.md index 6782f0d162..2c8f925915 100644 --- a/versioned_docs/version-8.6/components/modeler/web-modeler/milestones.md +++ b/versioned_docs/version-8.6/components/modeler/web-modeler/milestones.md @@ -32,7 +32,7 @@ You can create a new milestone either from your diagram or the milestone history ![milestones create via the breadcrumb menu](img/milestones/web-modeler-milestone-create-via-breadcrumb-highlight.png) -- From the milestone history, hover over the the latest version in the **Milestones** panel and select **Create a new milestone**. +- From the milestone history, hover over the latest version in the **Milestones** panel and select **Create a new milestone**. ![milestones create via icon](img/milestones/web-modeler-milestone-create-via-icon-highlight.png) diff --git a/versioned_docs/version-8.6/guides/react-components/_install-c8run.md b/versioned_docs/version-8.6/guides/react-components/_install-c8run.md index ee83da5d46..50fb42c079 100644 --- a/versioned_docs/version-8.6/guides/react-components/_install-c8run.md +++ b/versioned_docs/version-8.6/guides/react-components/_install-c8run.md @@ -11,7 +11,7 @@ If no version of Java is found, follow your chosen installation's instructions f ### Install and start Camunda 8 Run -1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.6.5) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. +1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.6.6) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. 2. Navigate to the new `c8run` directory. 3. Start Camunda 8 Run by running `./start.sh` (or `.\c8run.exe start` on Windows) in your terminal. diff --git a/versioned_docs/version-8.6/reference/release-notes/850.md b/versioned_docs/version-8.6/reference/release-notes/850.md index 43f3806758..d514f55adc 100644 --- a/versioned_docs/version-8.6/reference/release-notes/850.md +++ b/versioned_docs/version-8.6/reference/release-notes/850.md @@ -108,7 +108,7 @@ The first iteration of this feature brings back existing features from Camunda 7 -The first step to offer an intuitive and consistent experience via a single, [unified Camunda 8 REST API](https://camunda.com/blog/2024/03/streamlining-camunda-apis-zeebe-rest-api/) is to provide the Zeebe REST API. With this release, developers can use the Zeebe REST API to manage [Zeebe user tasks](/apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks.md), enabling immediate task state changes. The Zeebe REST API includes support for Identity authentication and multi-tenancy, ensuring parity to the Zeebe gRPC API. +The first step to offer an intuitive and consistent experience via a single, [unified Camunda 8 REST API](https://camunda.com/blog/2024/03/streamlining-camunda-apis-zeebe-rest-api/) is to provide the Zeebe REST API. With this release, developers can use the Zeebe REST API to manage [Zeebe user tasks](/apis-tools/migration-manuals/migrate-to-zeebe-user-tasks.md), enabling immediate task state changes. The Zeebe REST API includes support for Identity authentication and multi-tenancy, ensuring parity to the Zeebe gRPC API. ### Refactoring suggestions Modeler diff --git a/versioned_docs/version-8.6/self-managed/console-deployment/configuration.md b/versioned_docs/version-8.6/self-managed/console-deployment/configuration.md index 4911a26d87..8bfa775bf1 100644 --- a/versioned_docs/version-8.6/self-managed/console-deployment/configuration.md +++ b/versioned_docs/version-8.6/self-managed/console-deployment/configuration.md @@ -5,10 +5,6 @@ sidebar_label: "Configuration" description: "Read details on the configuration variables of Console Self-Managed." --- -:::note -Console Self-Managed is available only to [Enterprise customers](/reference/licenses.md#console). -::: - Console Self-Managed can be configured using environment variables and configuration parameters. :::note diff --git a/versioned_docs/version-8.6/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md b/versioned_docs/version-8.6/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md index 49af2c274a..15670e7721 100644 --- a/versioned_docs/version-8.6/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md +++ b/versioned_docs/version-8.6/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md @@ -233,7 +233,8 @@ kubectl --context $CLUSTER_1 apply -f https://raw.githubusercontent.com/camunda/ ``` 3. The script will retrieve the IPs of the load balancer via the AWS CLI and return the required config change. -4. As the script suggests, copy the statement between the placeholders to edit the CoreDNS configmap in cluster 0 and cluster 1, depending on the placeholder. +4. The script prints the `kubectl edit` commands to change the DNS settings of each cluster inline. Copy the statement between the placeholders to edit the CoreDNS configmap in cluster 0 and cluster 1, depending on the placeholder. + An alternative to inline editing is to create two copies of the file `kubernetes/coredns.yml`, one for each cluster. Add the section generated by the script to each file. Apply the changes to each cluster with e.g. `kubectl --context cluster-london -n kube-system apply -f file.yml`. Replace the `context` parameter with your current values.
Example output diff --git a/versioned_docs/version-8.6/self-managed/setup/deploy/local/c8run.md b/versioned_docs/version-8.6/self-managed/setup/deploy/local/c8run.md index 1eb1b655df..de44b09632 100644 --- a/versioned_docs/version-8.6/self-managed/setup/deploy/local/c8run.md +++ b/versioned_docs/version-8.6/self-managed/setup/deploy/local/c8run.md @@ -36,7 +36,7 @@ If no version of Java is found, follow your chosen installation's instructions f ## Install and start Camunda 8 Run -1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.6.5) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. +1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.6.6) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. 2. Navigate to the new `c8run` directory. 3. Start Camunda 8 Run by running `./start.sh` (or `.\c8run.exe start` on Windows) in your terminal. diff --git a/versioned_docs/version-8.6/self-managed/zeebe-deployment/configuration/priority-election.md b/versioned_docs/version-8.6/self-managed/zeebe-deployment/configuration/priority-election.md index 4e466a0640..d7fc45c041 100644 --- a/versioned_docs/version-8.6/self-managed/zeebe-deployment/configuration/priority-election.md +++ b/versioned_docs/version-8.6/self-managed/zeebe-deployment/configuration/priority-election.md @@ -10,8 +10,8 @@ It aims to achieve a more uniform leader distribution by assigning each node a p ## Configuration -Enable priority election by setting `zeebe.broker.raft.enablePriorityElection = "true"` in your config or -by setting the equivalent environment variable `ZEEBE_BROKER_RAFT_ENABLEPRIORITYELECTION="true"`. +Enable priority election by setting `zeebe.broker.cluster.raft.enablePriorityElection=true` in your config or +by setting the equivalent environment variable `ZEEBE_BROKER_CLUSTER_RAFT_ENABLEPRIORITYELECTION=true`. If you are using the fixed partitioning scheme (experimental), you may need [additional configuration](fixed-partitioning.md#priority-election). @@ -19,7 +19,7 @@ If you are using the fixed partitioning scheme (experimental), you may need [add With priority election enabled, election latency and thus failover time increases. -The result of leader election is not deterministic and priority election can only increase the chance of having a +The result of a leader election is not deterministic, and priority election can only increase the chance of having a uniform leader distribution, not guarantee it. -Factors such as high load can prevent high priority nodes from becoming the leader. +Factors such as high load can prevent high-priority nodes from becoming the leader. diff --git a/versioned_sidebars/version-8.5-sidebars.json b/versioned_sidebars/version-8.5-sidebars.json index eed3417884..380d8c1729 100644 --- a/versioned_sidebars/version-8.5-sidebars.json +++ b/versioned_sidebars/version-8.5-sidebars.json @@ -1254,7 +1254,7 @@ ] }, { - "Clients": [ + "Clients & SDKs": [ { "CLI client": [ "apis-tools/cli-client/index", @@ -1305,16 +1305,16 @@ } ] }, - "apis-tools/build-your-own-client" - ] - }, - { - "SDKs": [ - "apis-tools/node-js-sdk", + "apis-tools/build-your-own-client", { - "Spring Zeebe": [ - "apis-tools/spring-zeebe-sdk/getting-started", - "apis-tools/spring-zeebe-sdk/configuration" + "SDKs": [ + "apis-tools/node-js-sdk", + { + "Spring Zeebe": [ + "apis-tools/spring-zeebe-sdk/getting-started", + "apis-tools/spring-zeebe-sdk/configuration" + ] + } ] } ] diff --git a/versioned_sidebars/version-8.6-sidebars.json b/versioned_sidebars/version-8.6-sidebars.json index 3fb5321930..66f10535b8 100644 --- a/versioned_sidebars/version-8.6-sidebars.json +++ b/versioned_sidebars/version-8.6-sidebars.json @@ -1592,8 +1592,7 @@ ] } ] - }, - "apis-tools/tasklist-api-rest/migrate-to-zeebe-user-tasks" + } ] }, { @@ -1684,7 +1683,7 @@ ] }, { - "Clients": [ + "Clients & SDKs": [ { "Java client": [ "apis-tools/java-client/index", @@ -1732,16 +1731,16 @@ } ] }, - "apis-tools/build-your-own-client" - ] - }, - { - "SDKs": [ - "apis-tools/node-js-sdk", + "apis-tools/build-your-own-client", { - "Spring Zeebe": [ - "apis-tools/spring-zeebe-sdk/getting-started", - "apis-tools/spring-zeebe-sdk/configuration" + "SDKs": [ + "apis-tools/node-js-sdk", + { + "Spring Zeebe": [ + "apis-tools/spring-zeebe-sdk/getting-started", + "apis-tools/spring-zeebe-sdk/configuration" + ] + } ] } ] @@ -1765,8 +1764,14 @@ ] } ] + }, + { + "Migration manuals": [ + "apis-tools/migration-manuals/migrate-to-zeebe-user-tasks" + ] } ], + "Reference": [ "reference/overview", "reference/announcements",