@camunda8/orchestration-cluster-api 8.9.0-alpha.13 → 8.9.0-alpha.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -2
- package/README.md +101 -0
- package/dist/{chunk-ULXL7H75.js → chunk-G5VLLLLV.js} +1050 -351
- package/dist/chunk-G5VLLLLV.js.map +1 -0
- package/dist/fp/index.cjs +1029 -329
- package/dist/fp/index.cjs.map +1 -1
- package/dist/fp/index.d.cts +2 -1
- package/dist/fp/index.d.ts +2 -1
- package/dist/fp/index.js +1 -1
- package/dist/{index-Cwx7jNBm.d.cts → index-D1s8f_o5.d.cts} +643 -168
- package/dist/{index-Bps8dBEQ.d.ts → index-nlfeobSw.d.ts} +643 -168
- package/dist/index.cjs +1035 -335
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/threadWorkerEntry.cjs +143 -0
- package/dist/threadWorkerEntry.cjs.map +1 -0
- package/dist/threadWorkerEntry.js +141 -0
- package/dist/threadWorkerEntry.js.map +1 -0
- package/package.json +9 -4
- package/dist/chunk-ULXL7H75.js.map +0 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as zod from 'zod';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { L as LogLevel, a as LogTransport, b as Logger } from './logger-D-p21VHo.cjs';
|
|
4
|
+
import * as node_worker_threads from 'node:worker_threads';
|
|
4
5
|
|
|
5
6
|
type BackpressureSeverity = 'healthy' | 'soft' | 'severe';
|
|
6
7
|
|
|
@@ -765,10 +766,6 @@ type AuditLogResult = {
|
|
|
765
766
|
*/
|
|
766
767
|
tenantId: TenantId | null;
|
|
767
768
|
result: AuditLogResultEnum;
|
|
768
|
-
/**
|
|
769
|
-
* Additional notes about the operation.
|
|
770
|
-
*/
|
|
771
|
-
annotation: string | null;
|
|
772
769
|
category: AuditLogCategoryEnum;
|
|
773
770
|
/**
|
|
774
771
|
* The process definition ID.
|
|
@@ -856,7 +853,7 @@ type AuditLogSearchQuerySortRequest = {
|
|
|
856
853
|
/**
|
|
857
854
|
* The field to sort by.
|
|
858
855
|
*/
|
|
859
|
-
field: 'actorId' | 'actorType' | '
|
|
856
|
+
field: 'actorId' | 'actorType' | 'auditLogKey' | 'batchOperationKey' | 'batchOperationType' | 'category' | 'decisionDefinitionId' | 'decisionDefinitionKey' | 'decisionEvaluationKey' | 'decisionRequirementsId' | 'decisionRequirementsKey' | 'elementInstanceKey' | 'entityKey' | 'entityType' | 'jobKey' | 'operationType' | 'processDefinitionId' | 'processDefinitionKey' | 'processInstanceKey' | 'result' | 'tenantId' | 'timestamp' | 'userTaskKey';
|
|
860
857
|
order?: SortOrderEnum;
|
|
861
858
|
};
|
|
862
859
|
/**
|
|
@@ -1197,15 +1194,15 @@ type CamundaUserResult = {
|
|
|
1197
1194
|
/**
|
|
1198
1195
|
* The username of the user.
|
|
1199
1196
|
*/
|
|
1200
|
-
username
|
|
1197
|
+
username: Username | null;
|
|
1201
1198
|
/**
|
|
1202
1199
|
* The display name of the user.
|
|
1203
1200
|
*/
|
|
1204
|
-
displayName
|
|
1201
|
+
displayName: string | null;
|
|
1205
1202
|
/**
|
|
1206
1203
|
* The email of the user.
|
|
1207
1204
|
*/
|
|
1208
|
-
email
|
|
1205
|
+
email: string | null;
|
|
1209
1206
|
/**
|
|
1210
1207
|
* The web components the user is authorized to use.
|
|
1211
1208
|
*/
|
|
@@ -1447,13 +1444,13 @@ type BatchOperationResponse = {
|
|
|
1447
1444
|
* This is `null` if the batch operation has not yet started.
|
|
1448
1445
|
*
|
|
1449
1446
|
*/
|
|
1450
|
-
startDate
|
|
1447
|
+
startDate: string | null;
|
|
1451
1448
|
/**
|
|
1452
1449
|
* The end date of the batch operation.
|
|
1453
1450
|
* This is `null` if the batch operation is still running.
|
|
1454
1451
|
*
|
|
1455
1452
|
*/
|
|
1456
|
-
endDate
|
|
1453
|
+
endDate: string | null;
|
|
1457
1454
|
/**
|
|
1458
1455
|
* The type of the actor who performed the operation.
|
|
1459
1456
|
* This is `null` if the batch operation was created before 8.9,
|
|
@@ -1486,15 +1483,15 @@ type BatchOperationError = {
|
|
|
1486
1483
|
/**
|
|
1487
1484
|
* The partition ID where the error occurred.
|
|
1488
1485
|
*/
|
|
1489
|
-
partitionId
|
|
1486
|
+
partitionId: number;
|
|
1490
1487
|
/**
|
|
1491
1488
|
* The type of the error that occurred during the batch operation.
|
|
1492
1489
|
*/
|
|
1493
|
-
type
|
|
1490
|
+
type: 'QUERY_FAILED' | 'RESULT_BUFFER_SIZE_EXCEEDED';
|
|
1494
1491
|
/**
|
|
1495
1492
|
* The error message that occurred during the batch operation.
|
|
1496
1493
|
*/
|
|
1497
|
-
message
|
|
1494
|
+
message: string;
|
|
1498
1495
|
};
|
|
1499
1496
|
type BatchOperationItemSearchQuerySortRequest = {
|
|
1500
1497
|
/**
|
|
@@ -1548,19 +1545,19 @@ type BatchOperationItemSearchQueryResult = SearchQueryResponse & {
|
|
|
1548
1545
|
items: Array<BatchOperationItemResponse>;
|
|
1549
1546
|
};
|
|
1550
1547
|
type BatchOperationItemResponse = {
|
|
1551
|
-
operationType
|
|
1548
|
+
operationType: BatchOperationTypeEnum;
|
|
1552
1549
|
/**
|
|
1553
1550
|
* The key (or operate legacy ID) of the batch operation.
|
|
1554
1551
|
*/
|
|
1555
|
-
batchOperationKey
|
|
1552
|
+
batchOperationKey: BatchOperationKey;
|
|
1556
1553
|
/**
|
|
1557
1554
|
* Key of the item, e.g. a process instance key.
|
|
1558
1555
|
*/
|
|
1559
|
-
itemKey
|
|
1556
|
+
itemKey: string;
|
|
1560
1557
|
/**
|
|
1561
1558
|
* the process instance key of the processed item.
|
|
1562
1559
|
*/
|
|
1563
|
-
processInstanceKey
|
|
1560
|
+
processInstanceKey: ProcessInstanceKey;
|
|
1564
1561
|
/**
|
|
1565
1562
|
* The key of the root process instance. The root process instance is the top-level
|
|
1566
1563
|
* ancestor in the process instance hierarchy. This field is only present for data
|
|
@@ -1571,15 +1568,17 @@ type BatchOperationItemResponse = {
|
|
|
1571
1568
|
/**
|
|
1572
1569
|
* State of the item.
|
|
1573
1570
|
*/
|
|
1574
|
-
state
|
|
1571
|
+
state: 'ACTIVE' | 'COMPLETED' | 'SKIPPED' | 'CANCELED' | 'FAILED';
|
|
1575
1572
|
/**
|
|
1576
|
-
*
|
|
1573
|
+
* The date this item was processed.
|
|
1574
|
+
* This is `null` if the item has not yet been processed.
|
|
1575
|
+
*
|
|
1577
1576
|
*/
|
|
1578
|
-
processedDate
|
|
1577
|
+
processedDate: string | null;
|
|
1579
1578
|
/**
|
|
1580
|
-
*
|
|
1579
|
+
* The error message from the engine in case of a failed operation.
|
|
1581
1580
|
*/
|
|
1582
|
-
errorMessage
|
|
1581
|
+
errorMessage: string | null;
|
|
1583
1582
|
};
|
|
1584
1583
|
/**
|
|
1585
1584
|
* The decision instance filter that defines which decision instances should be deleted.
|
|
@@ -1932,7 +1931,7 @@ type TopologyResponse = {
|
|
|
1932
1931
|
/**
|
|
1933
1932
|
* The cluster Id.
|
|
1934
1933
|
*/
|
|
1935
|
-
clusterId
|
|
1934
|
+
clusterId: string | null;
|
|
1936
1935
|
/**
|
|
1937
1936
|
* The number of brokers in the cluster.
|
|
1938
1937
|
*/
|
|
@@ -2034,11 +2033,11 @@ type ProcessInstanceReference = {
|
|
|
2034
2033
|
/**
|
|
2035
2034
|
* The key of the process definition.
|
|
2036
2035
|
*/
|
|
2037
|
-
processDefinitionKey
|
|
2036
|
+
processDefinitionKey: ProcessDefinitionKey;
|
|
2038
2037
|
/**
|
|
2039
2038
|
* The key of the created process instance.
|
|
2040
2039
|
*/
|
|
2041
|
-
processInstanceKey
|
|
2040
|
+
processInstanceKey: ProcessInstanceKey;
|
|
2042
2041
|
};
|
|
2043
2042
|
type DecisionDefinitionSearchQuerySortRequest = {
|
|
2044
2043
|
/**
|
|
@@ -2252,15 +2251,15 @@ type EvaluatedDecisionResult = {
|
|
|
2252
2251
|
/**
|
|
2253
2252
|
* The ID of the decision which was evaluated.
|
|
2254
2253
|
*/
|
|
2255
|
-
decisionDefinitionId
|
|
2254
|
+
decisionDefinitionId: DecisionDefinitionId;
|
|
2256
2255
|
/**
|
|
2257
2256
|
* The name of the decision which was evaluated.
|
|
2258
2257
|
*/
|
|
2259
|
-
decisionDefinitionName
|
|
2258
|
+
decisionDefinitionName: string;
|
|
2260
2259
|
/**
|
|
2261
2260
|
* The version of the decision which was evaluated.
|
|
2262
2261
|
*/
|
|
2263
|
-
decisionDefinitionVersion
|
|
2262
|
+
decisionDefinitionVersion: number;
|
|
2264
2263
|
/**
|
|
2265
2264
|
* The type of the decision which was evaluated.
|
|
2266
2265
|
*/
|
|
@@ -2269,11 +2268,11 @@ type EvaluatedDecisionResult = {
|
|
|
2269
2268
|
* JSON document that will instantiate the result of the decision which was evaluated.
|
|
2270
2269
|
*
|
|
2271
2270
|
*/
|
|
2272
|
-
output
|
|
2271
|
+
output: string;
|
|
2273
2272
|
/**
|
|
2274
2273
|
* The tenant ID of the evaluated decision.
|
|
2275
2274
|
*/
|
|
2276
|
-
tenantId
|
|
2275
|
+
tenantId: TenantId;
|
|
2277
2276
|
/**
|
|
2278
2277
|
* The decision rules that matched within this decision evaluation.
|
|
2279
2278
|
*/
|
|
@@ -2285,11 +2284,11 @@ type EvaluatedDecisionResult = {
|
|
|
2285
2284
|
/**
|
|
2286
2285
|
* The unique key identifying the decision which was evaluate.
|
|
2287
2286
|
*/
|
|
2288
|
-
decisionDefinitionKey
|
|
2287
|
+
decisionDefinitionKey: DecisionDefinitionKey;
|
|
2289
2288
|
/**
|
|
2290
2289
|
* The unique key identifying this decision evaluation instance.
|
|
2291
2290
|
*/
|
|
2292
|
-
decisionEvaluationInstanceKey
|
|
2291
|
+
decisionEvaluationInstanceKey: DecisionEvaluationInstanceKey;
|
|
2293
2292
|
};
|
|
2294
2293
|
type DecisionInstanceSearchQuerySortRequest = {
|
|
2295
2294
|
/**
|
|
@@ -2467,15 +2466,15 @@ type EvaluatedDecisionInputItem = {
|
|
|
2467
2466
|
/**
|
|
2468
2467
|
* The identifier of the decision input.
|
|
2469
2468
|
*/
|
|
2470
|
-
inputId
|
|
2469
|
+
inputId: string;
|
|
2471
2470
|
/**
|
|
2472
2471
|
* The name of the decision input.
|
|
2473
2472
|
*/
|
|
2474
|
-
inputName
|
|
2473
|
+
inputName: string;
|
|
2475
2474
|
/**
|
|
2476
|
-
* The
|
|
2475
|
+
* The value of the decision input.
|
|
2477
2476
|
*/
|
|
2478
|
-
inputValue
|
|
2477
|
+
inputValue: string;
|
|
2479
2478
|
};
|
|
2480
2479
|
/**
|
|
2481
2480
|
* The evaluated decision outputs.
|
|
@@ -2484,15 +2483,15 @@ type EvaluatedDecisionOutputItem = {
|
|
|
2484
2483
|
/**
|
|
2485
2484
|
* The ID of the evaluated decison output item.
|
|
2486
2485
|
*/
|
|
2487
|
-
outputId
|
|
2486
|
+
outputId: string;
|
|
2488
2487
|
/**
|
|
2489
2488
|
* The name of the of the evaluated decison output item.
|
|
2490
2489
|
*/
|
|
2491
|
-
outputName
|
|
2490
|
+
outputName: string;
|
|
2492
2491
|
/**
|
|
2493
2492
|
* The value of the evaluated decison output item.
|
|
2494
2493
|
*/
|
|
2495
|
-
outputValue
|
|
2494
|
+
outputValue: string;
|
|
2496
2495
|
/**
|
|
2497
2496
|
* The ID of the matched rule.
|
|
2498
2497
|
*/
|
|
@@ -2509,11 +2508,11 @@ type MatchedDecisionRuleItem = {
|
|
|
2509
2508
|
/**
|
|
2510
2509
|
* The ID of the matched rule.
|
|
2511
2510
|
*/
|
|
2512
|
-
ruleId
|
|
2511
|
+
ruleId: string;
|
|
2513
2512
|
/**
|
|
2514
2513
|
* The index of the matched rule.
|
|
2515
2514
|
*/
|
|
2516
|
-
ruleIndex
|
|
2515
|
+
ruleIndex: number;
|
|
2517
2516
|
/**
|
|
2518
2517
|
* The evaluated decision outputs.
|
|
2519
2518
|
*/
|
|
@@ -2706,34 +2705,34 @@ type DeploymentDecisionResult = {
|
|
|
2706
2705
|
* unique identifier for a specific decision.
|
|
2707
2706
|
*
|
|
2708
2707
|
*/
|
|
2709
|
-
decisionDefinitionId
|
|
2708
|
+
decisionDefinitionId: DecisionDefinitionId;
|
|
2710
2709
|
/**
|
|
2711
2710
|
* The assigned decision version.
|
|
2712
2711
|
*/
|
|
2713
|
-
version
|
|
2712
|
+
version: number;
|
|
2714
2713
|
/**
|
|
2715
2714
|
* The DMN name of the decision, as parsed during deployment.
|
|
2716
2715
|
*/
|
|
2717
|
-
name
|
|
2716
|
+
name: string;
|
|
2718
2717
|
/**
|
|
2719
2718
|
* The tenant ID of the deployed decision.
|
|
2720
2719
|
*/
|
|
2721
|
-
tenantId
|
|
2720
|
+
tenantId: TenantId;
|
|
2722
2721
|
/**
|
|
2723
2722
|
* The dmn ID of the decision requirements graph that this decision is part of, as parsed during deployment.
|
|
2724
2723
|
*
|
|
2725
2724
|
*/
|
|
2726
|
-
decisionRequirementsId
|
|
2725
|
+
decisionRequirementsId: string;
|
|
2727
2726
|
/**
|
|
2728
2727
|
* The assigned decision key, which acts as a unique identifier for this decision.
|
|
2729
2728
|
*
|
|
2730
2729
|
*/
|
|
2731
|
-
decisionDefinitionKey
|
|
2730
|
+
decisionDefinitionKey: DecisionDefinitionKey;
|
|
2732
2731
|
/**
|
|
2733
2732
|
* The assigned key of the decision requirements graph that this decision is part of.
|
|
2734
2733
|
*
|
|
2735
2734
|
*/
|
|
2736
|
-
decisionRequirementsKey
|
|
2735
|
+
decisionRequirementsKey: DecisionRequirementsKey;
|
|
2737
2736
|
};
|
|
2738
2737
|
/**
|
|
2739
2738
|
* Deployed decision requirements.
|
|
@@ -2742,28 +2741,28 @@ type DeploymentDecisionRequirementsResult = {
|
|
|
2742
2741
|
/**
|
|
2743
2742
|
* The id of the deployed decision requirements.
|
|
2744
2743
|
*/
|
|
2745
|
-
decisionRequirementsId
|
|
2744
|
+
decisionRequirementsId: string;
|
|
2746
2745
|
/**
|
|
2747
2746
|
* The name of the deployed decision requirements.
|
|
2748
2747
|
*/
|
|
2749
|
-
decisionRequirementsName
|
|
2748
|
+
decisionRequirementsName: string;
|
|
2750
2749
|
/**
|
|
2751
2750
|
* The version of the deployed decision requirements.
|
|
2752
2751
|
*/
|
|
2753
|
-
version
|
|
2752
|
+
version: number;
|
|
2754
2753
|
/**
|
|
2755
2754
|
* The name of the resource.
|
|
2756
2755
|
*/
|
|
2757
|
-
resourceName
|
|
2756
|
+
resourceName: string;
|
|
2758
2757
|
/**
|
|
2759
2758
|
* The tenant ID of the deployed decision requirements.
|
|
2760
2759
|
*/
|
|
2761
|
-
tenantId
|
|
2760
|
+
tenantId: TenantId;
|
|
2762
2761
|
/**
|
|
2763
2762
|
* The assigned decision requirements key, which acts as a unique identifier for this decision requirements.
|
|
2764
2763
|
*
|
|
2765
2764
|
*/
|
|
2766
|
-
decisionRequirementsKey
|
|
2765
|
+
decisionRequirementsKey: DecisionRequirementsKey;
|
|
2767
2766
|
};
|
|
2768
2767
|
/**
|
|
2769
2768
|
* A deployed form.
|
|
@@ -2774,20 +2773,20 @@ type DeploymentFormResult = {
|
|
|
2774
2773
|
* unique identifier for a specific form.
|
|
2775
2774
|
*
|
|
2776
2775
|
*/
|
|
2777
|
-
formId
|
|
2776
|
+
formId: FormId;
|
|
2778
2777
|
/**
|
|
2779
2778
|
* The version of the deployed form.
|
|
2780
2779
|
*/
|
|
2781
|
-
version
|
|
2780
|
+
version: number;
|
|
2782
2781
|
/**
|
|
2783
2782
|
* The name of the resource.
|
|
2784
2783
|
*/
|
|
2785
|
-
resourceName
|
|
2786
|
-
tenantId
|
|
2784
|
+
resourceName: string;
|
|
2785
|
+
tenantId: TenantId;
|
|
2787
2786
|
/**
|
|
2788
2787
|
* The assigned key, which acts as a unique identifier for this form.
|
|
2789
2788
|
*/
|
|
2790
|
-
formKey
|
|
2789
|
+
formKey: FormKey;
|
|
2791
2790
|
};
|
|
2792
2791
|
/**
|
|
2793
2792
|
* A deployed Resource.
|
|
@@ -2796,20 +2795,20 @@ type DeploymentResourceResult = {
|
|
|
2796
2795
|
/**
|
|
2797
2796
|
* The resource id of the deployed resource.
|
|
2798
2797
|
*/
|
|
2799
|
-
resourceId
|
|
2798
|
+
resourceId: string;
|
|
2800
2799
|
/**
|
|
2801
2800
|
* The name of the deployed resource.
|
|
2802
2801
|
*/
|
|
2803
|
-
resourceName
|
|
2802
|
+
resourceName: string;
|
|
2804
2803
|
/**
|
|
2805
2804
|
* The description of the deployed resource.
|
|
2806
2805
|
*/
|
|
2807
|
-
version
|
|
2808
|
-
tenantId
|
|
2806
|
+
version: number;
|
|
2807
|
+
tenantId: TenantId;
|
|
2809
2808
|
/**
|
|
2810
2809
|
* The assigned key, which acts as a unique identifier for this Resource.
|
|
2811
2810
|
*/
|
|
2812
|
-
resourceKey
|
|
2811
|
+
resourceKey: ResourceKey;
|
|
2813
2812
|
};
|
|
2814
2813
|
type DeleteResourceRequest = {
|
|
2815
2814
|
operationReference?: OperationReference;
|
|
@@ -2838,7 +2837,7 @@ type DeleteResourceResponse = {
|
|
|
2838
2837
|
* this field will be `null`.
|
|
2839
2838
|
*
|
|
2840
2839
|
*/
|
|
2841
|
-
batchOperation
|
|
2840
|
+
batchOperation: BatchOperationCreatedResult | null;
|
|
2842
2841
|
};
|
|
2843
2842
|
type ResourceResult = {
|
|
2844
2843
|
/**
|
|
@@ -2955,19 +2954,19 @@ type DocumentCreationFailureDetail = {
|
|
|
2955
2954
|
/**
|
|
2956
2955
|
* The name of the file that failed to upload.
|
|
2957
2956
|
*/
|
|
2958
|
-
fileName
|
|
2957
|
+
fileName: string;
|
|
2959
2958
|
/**
|
|
2960
2959
|
* The HTTP status code of the failure.
|
|
2961
2960
|
*/
|
|
2962
|
-
status
|
|
2961
|
+
status: number;
|
|
2963
2962
|
/**
|
|
2964
2963
|
* A short, human-readable summary of the problem type.
|
|
2965
2964
|
*/
|
|
2966
|
-
title
|
|
2965
|
+
title: string;
|
|
2967
2966
|
/**
|
|
2968
2967
|
* A human-readable explanation specific to this occurrence of the problem.
|
|
2969
2968
|
*/
|
|
2970
|
-
detail
|
|
2969
|
+
detail: string;
|
|
2971
2970
|
};
|
|
2972
2971
|
type DocumentCreationBatchResponse = {
|
|
2973
2972
|
/**
|
|
@@ -3191,7 +3190,7 @@ type ElementInstanceResult = {
|
|
|
3191
3190
|
/**
|
|
3192
3191
|
* Date when element instance finished.
|
|
3193
3192
|
*/
|
|
3194
|
-
endDate
|
|
3193
|
+
endDate: string | null;
|
|
3195
3194
|
/**
|
|
3196
3195
|
* The element ID for this element instance.
|
|
3197
3196
|
*/
|
|
@@ -3238,7 +3237,7 @@ type ElementInstanceResult = {
|
|
|
3238
3237
|
/**
|
|
3239
3238
|
* Incident key associated with this element instance.
|
|
3240
3239
|
*/
|
|
3241
|
-
incidentKey
|
|
3240
|
+
incidentKey: IncidentKey | null;
|
|
3242
3241
|
};
|
|
3243
3242
|
/**
|
|
3244
3243
|
* Element states
|
|
@@ -3294,7 +3293,13 @@ type ExpressionEvaluationResult = {
|
|
|
3294
3293
|
/**
|
|
3295
3294
|
* List of warnings generated during expression evaluation
|
|
3296
3295
|
*/
|
|
3297
|
-
warnings: Array<
|
|
3296
|
+
warnings: Array<ExpressionEvaluationWarningItem>;
|
|
3297
|
+
};
|
|
3298
|
+
type ExpressionEvaluationWarningItem = {
|
|
3299
|
+
/**
|
|
3300
|
+
* The warning message
|
|
3301
|
+
*/
|
|
3302
|
+
message: string;
|
|
3298
3303
|
};
|
|
3299
3304
|
/**
|
|
3300
3305
|
* Checks if the property matches the provided like value.
|
|
@@ -3935,7 +3940,7 @@ type IncidentSearchQuerySortRequest = {
|
|
|
3935
3940
|
/**
|
|
3936
3941
|
* The field to sort by.
|
|
3937
3942
|
*/
|
|
3938
|
-
field: 'incidentKey' | 'processDefinitionKey' | 'processDefinitionId' | 'processInstanceKey' | 'errorType' | '
|
|
3943
|
+
field: 'incidentKey' | 'processDefinitionKey' | 'processDefinitionId' | 'processInstanceKey' | 'errorType' | 'elementId' | 'elementInstanceKey' | 'creationTime' | 'state' | 'jobKey' | 'tenantId';
|
|
3939
3944
|
order?: SortOrderEnum;
|
|
3940
3945
|
};
|
|
3941
3946
|
type IncidentSearchQueryResult = SearchQueryResponse & {
|
|
@@ -4026,16 +4031,16 @@ type IncidentProcessInstanceStatisticsByErrorResult = {
|
|
|
4026
4031
|
/**
|
|
4027
4032
|
* The hash code identifying a specific incident error..
|
|
4028
4033
|
*/
|
|
4029
|
-
errorHashCode
|
|
4034
|
+
errorHashCode: number;
|
|
4030
4035
|
/**
|
|
4031
4036
|
* The error message associated with the incident error hash code.
|
|
4032
4037
|
*/
|
|
4033
|
-
errorMessage
|
|
4038
|
+
errorMessage: string;
|
|
4034
4039
|
/**
|
|
4035
4040
|
* The number of active process instances that currently have an active incident with this error.
|
|
4036
4041
|
*
|
|
4037
4042
|
*/
|
|
4038
|
-
activeInstancesWithErrorCount
|
|
4043
|
+
activeInstancesWithErrorCount: number;
|
|
4039
4044
|
};
|
|
4040
4045
|
type IncidentProcessInstanceStatisticsByErrorQuerySortRequest = {
|
|
4041
4046
|
/**
|
|
@@ -4067,23 +4072,23 @@ type IncidentProcessInstanceStatisticsByDefinitionQueryResult = SearchQueryRespo
|
|
|
4067
4072
|
items: Array<IncidentProcessInstanceStatisticsByDefinitionResult>;
|
|
4068
4073
|
};
|
|
4069
4074
|
type IncidentProcessInstanceStatisticsByDefinitionResult = {
|
|
4070
|
-
processDefinitionId
|
|
4071
|
-
processDefinitionKey
|
|
4075
|
+
processDefinitionId: ProcessDefinitionId;
|
|
4076
|
+
processDefinitionKey: ProcessDefinitionKey;
|
|
4072
4077
|
/**
|
|
4073
4078
|
* The name of the process definition.
|
|
4074
4079
|
*/
|
|
4075
|
-
processDefinitionName
|
|
4080
|
+
processDefinitionName: string;
|
|
4076
4081
|
/**
|
|
4077
4082
|
* The version of the process definition.
|
|
4078
4083
|
*/
|
|
4079
|
-
processDefinitionVersion
|
|
4080
|
-
tenantId
|
|
4084
|
+
processDefinitionVersion: number;
|
|
4085
|
+
tenantId: TenantId;
|
|
4081
4086
|
/**
|
|
4082
4087
|
* The number of active process instances that currently have an incident
|
|
4083
4088
|
* with the specified error hash code.
|
|
4084
4089
|
*
|
|
4085
4090
|
*/
|
|
4086
|
-
activeInstancesWithErrorCount
|
|
4091
|
+
activeInstancesWithErrorCount: number;
|
|
4087
4092
|
};
|
|
4088
4093
|
/**
|
|
4089
4094
|
* Filter for the incident process instance statistics by definition query.
|
|
@@ -4228,7 +4233,7 @@ type JobWorkerStatisticsQueryResult = SearchQueryResponse & {
|
|
|
4228
4233
|
*/
|
|
4229
4234
|
type JobWorkerStatisticsItem = {
|
|
4230
4235
|
/**
|
|
4231
|
-
* The worker
|
|
4236
|
+
* The name of the worker activating the jobs, mostly used for logging purposes.
|
|
4232
4237
|
*/
|
|
4233
4238
|
worker: string;
|
|
4234
4239
|
created: StatusMetric;
|
|
@@ -4292,6 +4297,70 @@ type JobTimeSeriesStatisticsItem = {
|
|
|
4292
4297
|
completed: StatusMetric;
|
|
4293
4298
|
failed: StatusMetric;
|
|
4294
4299
|
};
|
|
4300
|
+
/**
|
|
4301
|
+
* Job error statistics query.
|
|
4302
|
+
*/
|
|
4303
|
+
type JobErrorStatisticsQuery = {
|
|
4304
|
+
filter: JobErrorStatisticsFilter;
|
|
4305
|
+
/**
|
|
4306
|
+
* Search cursor pagination.
|
|
4307
|
+
*/
|
|
4308
|
+
page?: CursorForwardPagination;
|
|
4309
|
+
};
|
|
4310
|
+
/**
|
|
4311
|
+
* Job error statistics search filter.
|
|
4312
|
+
*/
|
|
4313
|
+
type JobErrorStatisticsFilter = {
|
|
4314
|
+
/**
|
|
4315
|
+
* Start of the time window to filter metrics. ISO 8601 date-time format.
|
|
4316
|
+
*
|
|
4317
|
+
*/
|
|
4318
|
+
from: string;
|
|
4319
|
+
/**
|
|
4320
|
+
* End of the time window to filter metrics. ISO 8601 date-time format.
|
|
4321
|
+
*
|
|
4322
|
+
*/
|
|
4323
|
+
to: string;
|
|
4324
|
+
/**
|
|
4325
|
+
* Job type to return error metrics for.
|
|
4326
|
+
*/
|
|
4327
|
+
jobType: string;
|
|
4328
|
+
/**
|
|
4329
|
+
* Optional error code filter with advanced search capabilities.
|
|
4330
|
+
*/
|
|
4331
|
+
errorCode?: StringFilterProperty;
|
|
4332
|
+
/**
|
|
4333
|
+
* Optional error message filter with advanced search capabilities.
|
|
4334
|
+
*/
|
|
4335
|
+
errorMessage?: StringFilterProperty;
|
|
4336
|
+
};
|
|
4337
|
+
/**
|
|
4338
|
+
* Job error statistics query result.
|
|
4339
|
+
*/
|
|
4340
|
+
type JobErrorStatisticsQueryResult = SearchQueryResponse & {
|
|
4341
|
+
/**
|
|
4342
|
+
* The list of per-error statistics items.
|
|
4343
|
+
*/
|
|
4344
|
+
items: Array<JobErrorStatisticsItem>;
|
|
4345
|
+
page: SearchQueryPageResponse;
|
|
4346
|
+
};
|
|
4347
|
+
/**
|
|
4348
|
+
* Aggregated error metrics for a single error type and message combination.
|
|
4349
|
+
*/
|
|
4350
|
+
type JobErrorStatisticsItem = {
|
|
4351
|
+
/**
|
|
4352
|
+
* The error code identifier.
|
|
4353
|
+
*/
|
|
4354
|
+
errorCode: string;
|
|
4355
|
+
/**
|
|
4356
|
+
* The error message.
|
|
4357
|
+
*/
|
|
4358
|
+
errorMessage: string;
|
|
4359
|
+
/**
|
|
4360
|
+
* Number of distinct workers that encountered this error.
|
|
4361
|
+
*/
|
|
4362
|
+
workers: number;
|
|
4363
|
+
};
|
|
4295
4364
|
type JobActivationRequest = {
|
|
4296
4365
|
/**
|
|
4297
4366
|
* The job type, as defined in the BPMN process (e.g. <zeebe:taskDefinition type="payment-service" />)
|
|
@@ -4406,7 +4475,7 @@ type ActivatedJobResult$1 = {
|
|
|
4406
4475
|
* This is `null` if the job is not a user task.
|
|
4407
4476
|
*
|
|
4408
4477
|
*/
|
|
4409
|
-
userTask
|
|
4478
|
+
userTask: UserTaskProperties | null;
|
|
4410
4479
|
tags: TagSet;
|
|
4411
4480
|
/**
|
|
4412
4481
|
* The key of the root process instance. The root process instance is the top-level
|
|
@@ -4423,11 +4492,11 @@ type UserTaskProperties = {
|
|
|
4423
4492
|
/**
|
|
4424
4493
|
* The action performed on the user task.
|
|
4425
4494
|
*/
|
|
4426
|
-
action
|
|
4495
|
+
action: string;
|
|
4427
4496
|
/**
|
|
4428
4497
|
* The user assigned to the task.
|
|
4429
4498
|
*/
|
|
4430
|
-
assignee
|
|
4499
|
+
assignee: string | null;
|
|
4431
4500
|
/**
|
|
4432
4501
|
* The groups eligible to claim the task.
|
|
4433
4502
|
*/
|
|
@@ -4443,23 +4512,23 @@ type UserTaskProperties = {
|
|
|
4443
4512
|
/**
|
|
4444
4513
|
* The due date of the user task in ISO 8601 format.
|
|
4445
4514
|
*/
|
|
4446
|
-
dueDate
|
|
4515
|
+
dueDate: string | null;
|
|
4447
4516
|
/**
|
|
4448
4517
|
* The follow-up date of the user task in ISO 8601 format.
|
|
4449
4518
|
*/
|
|
4450
|
-
followUpDate
|
|
4519
|
+
followUpDate: string | null;
|
|
4451
4520
|
/**
|
|
4452
4521
|
* The key of the form associated with the user task.
|
|
4453
4522
|
*/
|
|
4454
|
-
formKey
|
|
4523
|
+
formKey: FormKey | null;
|
|
4455
4524
|
/**
|
|
4456
4525
|
* The priority of the user task.
|
|
4457
4526
|
*/
|
|
4458
|
-
priority
|
|
4527
|
+
priority: number | null;
|
|
4459
4528
|
/**
|
|
4460
4529
|
* The unique key identifying the user task.
|
|
4461
4530
|
*/
|
|
4462
|
-
userTaskKey
|
|
4531
|
+
userTaskKey: UserTaskKey | null;
|
|
4463
4532
|
};
|
|
4464
4533
|
/**
|
|
4465
4534
|
* Job search request.
|
|
@@ -4593,11 +4662,11 @@ type JobSearchResult = {
|
|
|
4593
4662
|
/**
|
|
4594
4663
|
* If the job has been activated, when it will next be available to be activated.
|
|
4595
4664
|
*/
|
|
4596
|
-
deadline
|
|
4665
|
+
deadline: string | null;
|
|
4597
4666
|
/**
|
|
4598
4667
|
* The reason provided by the user task listener for denying the work.
|
|
4599
4668
|
*/
|
|
4600
|
-
deniedReason
|
|
4669
|
+
deniedReason: string | null;
|
|
4601
4670
|
/**
|
|
4602
4671
|
* The element ID associated with the job. May be missing on job failure.
|
|
4603
4672
|
*/
|
|
@@ -4611,15 +4680,15 @@ type JobSearchResult = {
|
|
|
4611
4680
|
* This is `null` if the job is not in an end state yet.
|
|
4612
4681
|
*
|
|
4613
4682
|
*/
|
|
4614
|
-
endTime
|
|
4683
|
+
endTime: string | null;
|
|
4615
4684
|
/**
|
|
4616
4685
|
* The error code provided for a failed job.
|
|
4617
4686
|
*/
|
|
4618
|
-
errorCode
|
|
4687
|
+
errorCode: string | null;
|
|
4619
4688
|
/**
|
|
4620
4689
|
* The error message that provides additional context for a failed job.
|
|
4621
4690
|
*/
|
|
4622
|
-
errorMessage
|
|
4691
|
+
errorMessage: string | null;
|
|
4623
4692
|
/**
|
|
4624
4693
|
* Indicates whether the job has failed with retries left.
|
|
4625
4694
|
*/
|
|
@@ -4627,7 +4696,7 @@ type JobSearchResult = {
|
|
|
4627
4696
|
/**
|
|
4628
4697
|
* Indicates whether the user task listener denies the work.
|
|
4629
4698
|
*/
|
|
4630
|
-
isDenied
|
|
4699
|
+
isDenied: boolean | null;
|
|
4631
4700
|
/**
|
|
4632
4701
|
* The key, a unique identifier for the job.
|
|
4633
4702
|
*/
|
|
@@ -4670,11 +4739,11 @@ type JobSearchResult = {
|
|
|
4670
4739
|
/**
|
|
4671
4740
|
* When the job was created. Field is present for jobs created after 8.9.
|
|
4672
4741
|
*/
|
|
4673
|
-
creationTime
|
|
4742
|
+
creationTime: string | null;
|
|
4674
4743
|
/**
|
|
4675
4744
|
* When the job was last updated. Field is present for jobs created after 8.9.
|
|
4676
4745
|
*/
|
|
4677
|
-
lastUpdateTime
|
|
4746
|
+
lastUpdateTime: string | null;
|
|
4678
4747
|
};
|
|
4679
4748
|
type JobFailRequest = {
|
|
4680
4749
|
/**
|
|
@@ -5552,19 +5621,19 @@ type MessageSubscriptionResult = {
|
|
|
5552
5621
|
/**
|
|
5553
5622
|
* The message subscription key associated with this message subscription.
|
|
5554
5623
|
*/
|
|
5555
|
-
messageSubscriptionKey
|
|
5624
|
+
messageSubscriptionKey: MessageSubscriptionKey;
|
|
5556
5625
|
/**
|
|
5557
5626
|
* The process definition ID associated with this message subscription.
|
|
5558
5627
|
*/
|
|
5559
|
-
processDefinitionId
|
|
5628
|
+
processDefinitionId: ProcessDefinitionId;
|
|
5560
5629
|
/**
|
|
5561
5630
|
* The process definition key associated with this message subscription.
|
|
5562
5631
|
*/
|
|
5563
|
-
processDefinitionKey
|
|
5632
|
+
processDefinitionKey: ProcessDefinitionKey | null;
|
|
5564
5633
|
/**
|
|
5565
5634
|
* The process instance key associated with this message subscription.
|
|
5566
5635
|
*/
|
|
5567
|
-
processInstanceKey
|
|
5636
|
+
processInstanceKey: ProcessInstanceKey | null;
|
|
5568
5637
|
/**
|
|
5569
5638
|
* The key of the root process instance. The root process instance is the top-level
|
|
5570
5639
|
* ancestor in the process instance hierarchy. This field is only present for data
|
|
@@ -5575,25 +5644,25 @@ type MessageSubscriptionResult = {
|
|
|
5575
5644
|
/**
|
|
5576
5645
|
* The element ID associated with this message subscription.
|
|
5577
5646
|
*/
|
|
5578
|
-
elementId
|
|
5647
|
+
elementId: ElementId;
|
|
5579
5648
|
/**
|
|
5580
5649
|
* The element instance key associated with this message subscription.
|
|
5581
5650
|
*/
|
|
5582
|
-
elementInstanceKey
|
|
5583
|
-
messageSubscriptionState
|
|
5651
|
+
elementInstanceKey: ElementInstanceKey | null;
|
|
5652
|
+
messageSubscriptionState: MessageSubscriptionStateEnum;
|
|
5584
5653
|
/**
|
|
5585
5654
|
* The last updated date of the message subscription.
|
|
5586
5655
|
*/
|
|
5587
|
-
lastUpdatedDate
|
|
5656
|
+
lastUpdatedDate: string;
|
|
5588
5657
|
/**
|
|
5589
5658
|
* The name of the message associated with the message subscription.
|
|
5590
5659
|
*/
|
|
5591
|
-
messageName
|
|
5660
|
+
messageName: string;
|
|
5592
5661
|
/**
|
|
5593
5662
|
* The correlation key of the message subscription.
|
|
5594
5663
|
*/
|
|
5595
|
-
correlationKey
|
|
5596
|
-
tenantId
|
|
5664
|
+
correlationKey: string | null;
|
|
5665
|
+
tenantId: TenantId;
|
|
5597
5666
|
};
|
|
5598
5667
|
type MessageSubscriptionSearchQuerySortRequest = {
|
|
5599
5668
|
/**
|
|
@@ -5671,7 +5740,7 @@ type CorrelatedMessageSubscriptionResult = {
|
|
|
5671
5740
|
/**
|
|
5672
5741
|
* The correlation key of the message.
|
|
5673
5742
|
*/
|
|
5674
|
-
correlationKey: string;
|
|
5743
|
+
correlationKey: string | null;
|
|
5675
5744
|
/**
|
|
5676
5745
|
* The time when the message was correlated.
|
|
5677
5746
|
*/
|
|
@@ -5682,8 +5751,10 @@ type CorrelatedMessageSubscriptionResult = {
|
|
|
5682
5751
|
elementId: string;
|
|
5683
5752
|
/**
|
|
5684
5753
|
* The element instance key that received the message.
|
|
5754
|
+
* It is `null` for start event subscriptions.
|
|
5755
|
+
*
|
|
5685
5756
|
*/
|
|
5686
|
-
elementInstanceKey
|
|
5757
|
+
elementInstanceKey: ElementInstanceKey | null;
|
|
5687
5758
|
/**
|
|
5688
5759
|
* The message key.
|
|
5689
5760
|
*/
|
|
@@ -5703,7 +5774,7 @@ type CorrelatedMessageSubscriptionResult = {
|
|
|
5703
5774
|
/**
|
|
5704
5775
|
* The process definition key associated with this correlated message subscription.
|
|
5705
5776
|
*/
|
|
5706
|
-
processDefinitionKey
|
|
5777
|
+
processDefinitionKey: ProcessDefinitionKey;
|
|
5707
5778
|
/**
|
|
5708
5779
|
* The process instance key associated with this correlated message subscription.
|
|
5709
5780
|
*/
|
|
@@ -6010,23 +6081,23 @@ type ProcessElementStatisticsResult = {
|
|
|
6010
6081
|
/**
|
|
6011
6082
|
* The element ID for which the results are aggregated.
|
|
6012
6083
|
*/
|
|
6013
|
-
elementId
|
|
6084
|
+
elementId: ElementId;
|
|
6014
6085
|
/**
|
|
6015
6086
|
* The total number of active instances of the element.
|
|
6016
6087
|
*/
|
|
6017
|
-
active
|
|
6088
|
+
active: number;
|
|
6018
6089
|
/**
|
|
6019
6090
|
* The total number of canceled instances of the element.
|
|
6020
6091
|
*/
|
|
6021
|
-
canceled
|
|
6092
|
+
canceled: number;
|
|
6022
6093
|
/**
|
|
6023
6094
|
* The total number of incidents for the element.
|
|
6024
6095
|
*/
|
|
6025
|
-
incidents
|
|
6096
|
+
incidents: number;
|
|
6026
6097
|
/**
|
|
6027
6098
|
* The total number of completed instances of the element.
|
|
6028
6099
|
*/
|
|
6029
|
-
completed
|
|
6100
|
+
completed: number;
|
|
6030
6101
|
};
|
|
6031
6102
|
type ProcessDefinitionMessageSubscriptionStatisticsQuery = {
|
|
6032
6103
|
/**
|
|
@@ -6048,23 +6119,23 @@ type ProcessDefinitionMessageSubscriptionStatisticsResult = {
|
|
|
6048
6119
|
/**
|
|
6049
6120
|
* The process definition ID associated with this message subscription.
|
|
6050
6121
|
*/
|
|
6051
|
-
processDefinitionId
|
|
6122
|
+
processDefinitionId: ProcessDefinitionId;
|
|
6052
6123
|
/**
|
|
6053
6124
|
* The tenant ID associated with this message subscription.
|
|
6054
6125
|
*/
|
|
6055
|
-
tenantId
|
|
6126
|
+
tenantId: TenantId;
|
|
6056
6127
|
/**
|
|
6057
6128
|
* The process definition key associated with this message subscription.
|
|
6058
6129
|
*/
|
|
6059
|
-
processDefinitionKey
|
|
6130
|
+
processDefinitionKey: ProcessDefinitionKey;
|
|
6060
6131
|
/**
|
|
6061
6132
|
* The number of process instances with active message subscriptions.
|
|
6062
6133
|
*/
|
|
6063
|
-
processInstancesWithActiveSubscriptions
|
|
6134
|
+
processInstancesWithActiveSubscriptions: number;
|
|
6064
6135
|
/**
|
|
6065
6136
|
* The total number of active message subscriptions for this process definition key.
|
|
6066
6137
|
*/
|
|
6067
|
-
activeSubscriptions
|
|
6138
|
+
activeSubscriptions: number;
|
|
6068
6139
|
};
|
|
6069
6140
|
type ProcessDefinitionInstanceStatisticsQuery = {
|
|
6070
6141
|
/**
|
|
@@ -6086,24 +6157,24 @@ type ProcessDefinitionInstanceStatisticsQueryResult = SearchQueryResponse & {
|
|
|
6086
6157
|
* Process definition instance statistics response.
|
|
6087
6158
|
*/
|
|
6088
6159
|
type ProcessDefinitionInstanceStatisticsResult = {
|
|
6089
|
-
processDefinitionId
|
|
6090
|
-
tenantId
|
|
6160
|
+
processDefinitionId: ProcessDefinitionId;
|
|
6161
|
+
tenantId: TenantId;
|
|
6091
6162
|
/**
|
|
6092
6163
|
* Name of the latest deployed process definition instance version.
|
|
6093
6164
|
*/
|
|
6094
|
-
latestProcessDefinitionName
|
|
6165
|
+
latestProcessDefinitionName: string | null;
|
|
6095
6166
|
/**
|
|
6096
6167
|
* Indicates whether multiple versions of this process definition instance are deployed.
|
|
6097
6168
|
*/
|
|
6098
|
-
hasMultipleVersions
|
|
6169
|
+
hasMultipleVersions: boolean;
|
|
6099
6170
|
/**
|
|
6100
6171
|
* Total number of currently active process instances of this definition that do not have incidents.
|
|
6101
6172
|
*/
|
|
6102
|
-
activeInstancesWithoutIncidentCount
|
|
6173
|
+
activeInstancesWithoutIncidentCount: number;
|
|
6103
6174
|
/**
|
|
6104
6175
|
* Total number of currently active process instances of this definition that have at least one incident.
|
|
6105
6176
|
*/
|
|
6106
|
-
activeInstancesWithIncidentCount
|
|
6177
|
+
activeInstancesWithIncidentCount: number;
|
|
6107
6178
|
};
|
|
6108
6179
|
type ProcessDefinitionInstanceStatisticsQuerySortRequest = {
|
|
6109
6180
|
/**
|
|
@@ -6397,7 +6468,7 @@ type CreateProcessInstanceResult = {
|
|
|
6397
6468
|
/**
|
|
6398
6469
|
* Business id as provided on creation.
|
|
6399
6470
|
*/
|
|
6400
|
-
businessId
|
|
6471
|
+
businessId: BusinessId | null;
|
|
6401
6472
|
};
|
|
6402
6473
|
type ProcessInstanceSearchQuerySortRequest = {
|
|
6403
6474
|
/**
|
|
@@ -6461,8 +6532,16 @@ type BaseProcessInstanceFilterFields = {
|
|
|
6461
6532
|
parentElementInstanceKey?: ElementInstanceKeyFilterProperty;
|
|
6462
6533
|
/**
|
|
6463
6534
|
* The batch operation id.
|
|
6535
|
+
* **Deprecated**: Use `batchOperationKey` instead. This field will be removed in a future release. If both `batchOperationId` and `batchOperationKey` are provided, the request will be rejected with a 400 error.
|
|
6536
|
+
*
|
|
6537
|
+
*
|
|
6538
|
+
* @deprecated
|
|
6464
6539
|
*/
|
|
6465
6540
|
batchOperationId?: StringFilterProperty;
|
|
6541
|
+
/**
|
|
6542
|
+
* The batch operation key.
|
|
6543
|
+
*/
|
|
6544
|
+
batchOperationKey?: StringFilterProperty;
|
|
6466
6545
|
/**
|
|
6467
6546
|
* The error message related to the process.
|
|
6468
6547
|
*/
|
|
@@ -6701,11 +6780,11 @@ type ProcessInstanceSequenceFlowResult = {
|
|
|
6701
6780
|
/**
|
|
6702
6781
|
* The sequence flow id.
|
|
6703
6782
|
*/
|
|
6704
|
-
sequenceFlowId
|
|
6783
|
+
sequenceFlowId: string;
|
|
6705
6784
|
/**
|
|
6706
6785
|
* The key of this process instance.
|
|
6707
6786
|
*/
|
|
6708
|
-
processInstanceKey
|
|
6787
|
+
processInstanceKey: ProcessInstanceKey;
|
|
6709
6788
|
/**
|
|
6710
6789
|
* The key of the root process instance. The root process instance is the top-level
|
|
6711
6790
|
* ancestor in the process instance hierarchy. This field is only present for data
|
|
@@ -6716,16 +6795,16 @@ type ProcessInstanceSequenceFlowResult = {
|
|
|
6716
6795
|
/**
|
|
6717
6796
|
* The process definition key.
|
|
6718
6797
|
*/
|
|
6719
|
-
processDefinitionKey
|
|
6798
|
+
processDefinitionKey: ProcessDefinitionKey;
|
|
6720
6799
|
/**
|
|
6721
6800
|
* The process definition id.
|
|
6722
6801
|
*/
|
|
6723
|
-
processDefinitionId
|
|
6802
|
+
processDefinitionId: ProcessDefinitionId;
|
|
6724
6803
|
/**
|
|
6725
6804
|
* The element id for this sequence flow, as provided in the BPMN process.
|
|
6726
6805
|
*/
|
|
6727
|
-
elementId
|
|
6728
|
-
tenantId
|
|
6806
|
+
elementId: ElementId;
|
|
6807
|
+
tenantId: TenantId;
|
|
6729
6808
|
};
|
|
6730
6809
|
/**
|
|
6731
6810
|
* Process instance element statistics query response.
|
|
@@ -7315,6 +7394,43 @@ type UsageMetricsResponseItem = {
|
|
|
7315
7394
|
*/
|
|
7316
7395
|
assignees: number;
|
|
7317
7396
|
};
|
|
7397
|
+
/**
|
|
7398
|
+
* Envelope for all system configuration sections. Each property
|
|
7399
|
+
* represents a feature area.
|
|
7400
|
+
*
|
|
7401
|
+
*/
|
|
7402
|
+
type SystemConfigurationResponse = {
|
|
7403
|
+
jobMetrics: JobMetricsConfigurationResponse;
|
|
7404
|
+
};
|
|
7405
|
+
/**
|
|
7406
|
+
* Configuration for job metrics collection and export.
|
|
7407
|
+
*/
|
|
7408
|
+
type JobMetricsConfigurationResponse = {
|
|
7409
|
+
/**
|
|
7410
|
+
* Whether job metrics export is enabled.
|
|
7411
|
+
*/
|
|
7412
|
+
enabled: boolean;
|
|
7413
|
+
/**
|
|
7414
|
+
* The interval at which job metrics are exported, as an ISO 8601 duration.
|
|
7415
|
+
*/
|
|
7416
|
+
exportInterval: string;
|
|
7417
|
+
/**
|
|
7418
|
+
* The maximum length of the worker name used in job metrics labels.
|
|
7419
|
+
*/
|
|
7420
|
+
maxWorkerNameLength: number;
|
|
7421
|
+
/**
|
|
7422
|
+
* The maximum length of the job type used in job metrics labels.
|
|
7423
|
+
*/
|
|
7424
|
+
maxJobTypeLength: number;
|
|
7425
|
+
/**
|
|
7426
|
+
* The maximum length of the tenant ID used in job metrics labels.
|
|
7427
|
+
*/
|
|
7428
|
+
maxTenantIdLength: number;
|
|
7429
|
+
/**
|
|
7430
|
+
* The maximum number of unique metric keys tracked for job metrics.
|
|
7431
|
+
*/
|
|
7432
|
+
maxUniqueKeys: number;
|
|
7433
|
+
};
|
|
7318
7434
|
type TenantCreateRequest = {
|
|
7319
7435
|
/**
|
|
7320
7436
|
* The unique ID for the tenant. Must be 255 characters or less. Can contain letters, numbers, [`_`, `-`, `+`, `.`, `@`].
|
|
@@ -8066,11 +8182,11 @@ type VariableSearchResult = VariableResultBase & {
|
|
|
8066
8182
|
/**
|
|
8067
8183
|
* Value of this variable. Can be truncated.
|
|
8068
8184
|
*/
|
|
8069
|
-
value
|
|
8185
|
+
value: string;
|
|
8070
8186
|
/**
|
|
8071
8187
|
* Whether the value is truncated or not.
|
|
8072
8188
|
*/
|
|
8073
|
-
isTruncated
|
|
8189
|
+
isTruncated: boolean;
|
|
8074
8190
|
};
|
|
8075
8191
|
/**
|
|
8076
8192
|
* Variable search response item.
|
|
@@ -9583,12 +9699,12 @@ type DeleteDecisionInstanceData = {
|
|
|
9583
9699
|
} | null;
|
|
9584
9700
|
path: {
|
|
9585
9701
|
/**
|
|
9586
|
-
* The key of the decision
|
|
9702
|
+
* The key of the decision evaluation to delete.
|
|
9587
9703
|
*/
|
|
9588
|
-
|
|
9704
|
+
decisionEvaluationKey: DecisionEvaluationKey;
|
|
9589
9705
|
};
|
|
9590
9706
|
query?: never;
|
|
9591
|
-
url: '/decision-instances/{
|
|
9707
|
+
url: '/decision-instances/{decisionEvaluationKey}/deletion';
|
|
9592
9708
|
};
|
|
9593
9709
|
type DeleteDecisionInstanceErrors = {
|
|
9594
9710
|
/**
|
|
@@ -10184,6 +10300,12 @@ type CreateElementInstanceVariablesErrors = {
|
|
|
10184
10300
|
*
|
|
10185
10301
|
*/
|
|
10186
10302
|
503: ProblemDetail;
|
|
10303
|
+
/**
|
|
10304
|
+
* The request timed out between the gateway and the broker. For these endpoints, this often happens when user task listeners are configured and the corresponding listener job is not completed within the request timeout. Common causes include no available job workers for the listener type, busy or crashed job workers, or delayed job completion. As with any gateway timeout, general timeout causes (for example transient network issues) can also result in a 504 response.
|
|
10305
|
+
* Troubleshooting: - verify that job workers for the listener type are running and healthy - check worker logs for crashes, retries, and completion failures - check network connectivity between workers, gateway, and broker - retry with backoff after transient failures - fail without retries if a problem persists
|
|
10306
|
+
*
|
|
10307
|
+
*/
|
|
10308
|
+
504: ProblemDetail;
|
|
10187
10309
|
};
|
|
10188
10310
|
type CreateElementInstanceVariablesError = CreateElementInstanceVariablesErrors[keyof CreateElementInstanceVariablesErrors];
|
|
10189
10311
|
type CreateElementInstanceVariablesResponses = {
|
|
@@ -11676,6 +11798,38 @@ type GetJobTimeSeriesStatisticsResponses = {
|
|
|
11676
11798
|
200: JobTimeSeriesStatisticsQueryResult;
|
|
11677
11799
|
};
|
|
11678
11800
|
type GetJobTimeSeriesStatisticsResponse = GetJobTimeSeriesStatisticsResponses[keyof GetJobTimeSeriesStatisticsResponses];
|
|
11801
|
+
type GetJobErrorStatisticsData = {
|
|
11802
|
+
body: JobErrorStatisticsQuery;
|
|
11803
|
+
path?: never;
|
|
11804
|
+
query?: never;
|
|
11805
|
+
url: '/jobs/statistics/errors';
|
|
11806
|
+
};
|
|
11807
|
+
type GetJobErrorStatisticsErrors = {
|
|
11808
|
+
/**
|
|
11809
|
+
* The provided data is not valid.
|
|
11810
|
+
*/
|
|
11811
|
+
400: ProblemDetail;
|
|
11812
|
+
/**
|
|
11813
|
+
* The request lacks valid authentication credentials.
|
|
11814
|
+
*/
|
|
11815
|
+
401: ProblemDetail;
|
|
11816
|
+
/**
|
|
11817
|
+
* Forbidden. The request is not allowed.
|
|
11818
|
+
*/
|
|
11819
|
+
403: ProblemDetail;
|
|
11820
|
+
/**
|
|
11821
|
+
* An internal error occurred while processing the request.
|
|
11822
|
+
*/
|
|
11823
|
+
500: ProblemDetail;
|
|
11824
|
+
};
|
|
11825
|
+
type GetJobErrorStatisticsError = GetJobErrorStatisticsErrors[keyof GetJobErrorStatisticsErrors];
|
|
11826
|
+
type GetJobErrorStatisticsResponses = {
|
|
11827
|
+
/**
|
|
11828
|
+
* The job error statistics result.
|
|
11829
|
+
*/
|
|
11830
|
+
200: JobErrorStatisticsQueryResult;
|
|
11831
|
+
};
|
|
11832
|
+
type GetJobErrorStatisticsResponse = GetJobErrorStatisticsResponses[keyof GetJobErrorStatisticsResponses];
|
|
11679
11833
|
type GetLicenseData = {
|
|
11680
11834
|
body?: never;
|
|
11681
11835
|
path?: never;
|
|
@@ -12292,6 +12446,14 @@ type CreateProcessInstanceErrors = {
|
|
|
12292
12446
|
* The provided data is not valid.
|
|
12293
12447
|
*/
|
|
12294
12448
|
400: ProblemDetail;
|
|
12449
|
+
/**
|
|
12450
|
+
* The process instance creation was rejected due to a business ID uniqueness conflict.
|
|
12451
|
+
* This can happen only when Business ID Uniqueness Control is enabled and an
|
|
12452
|
+
* active root process instance with the provided business ID already exists
|
|
12453
|
+
* for the same process definition and tenant.
|
|
12454
|
+
*
|
|
12455
|
+
*/
|
|
12456
|
+
409: ProblemDetail;
|
|
12295
12457
|
/**
|
|
12296
12458
|
* An internal error occurred while processing the request.
|
|
12297
12459
|
*/
|
|
@@ -12628,6 +12790,12 @@ type CancelProcessInstanceErrors = {
|
|
|
12628
12790
|
*
|
|
12629
12791
|
*/
|
|
12630
12792
|
503: ProblemDetail;
|
|
12793
|
+
/**
|
|
12794
|
+
* The request timed out between the gateway and the broker. For these endpoints, this often happens when user task listeners are configured and the corresponding listener job is not completed within the request timeout. Common causes include no available job workers for the listener type, busy or crashed job workers, or delayed job completion. As with any gateway timeout, general timeout causes (for example transient network issues) can also result in a 504 response.
|
|
12795
|
+
* Troubleshooting: - verify that job workers for the listener type are running and healthy - check worker logs for crashes, retries, and completion failures - check network connectivity between workers, gateway, and broker - retry with backoff after transient failures - fail without retries if a problem persists
|
|
12796
|
+
*
|
|
12797
|
+
*/
|
|
12798
|
+
504: ProblemDetail;
|
|
12631
12799
|
};
|
|
12632
12800
|
type CancelProcessInstanceError = CancelProcessInstanceErrors[keyof CancelProcessInstanceErrors];
|
|
12633
12801
|
type CancelProcessInstanceResponses = {
|
|
@@ -13934,6 +14102,30 @@ type GetUsageMetricsResponses = {
|
|
|
13934
14102
|
200: UsageMetricsResponse;
|
|
13935
14103
|
};
|
|
13936
14104
|
type GetUsageMetricsResponse = GetUsageMetricsResponses[keyof GetUsageMetricsResponses];
|
|
14105
|
+
type GetSystemConfigurationData = {
|
|
14106
|
+
body?: never;
|
|
14107
|
+
path?: never;
|
|
14108
|
+
query?: never;
|
|
14109
|
+
url: '/system/configuration';
|
|
14110
|
+
};
|
|
14111
|
+
type GetSystemConfigurationErrors = {
|
|
14112
|
+
/**
|
|
14113
|
+
* The request lacks valid authentication credentials.
|
|
14114
|
+
*/
|
|
14115
|
+
401: ProblemDetail;
|
|
14116
|
+
/**
|
|
14117
|
+
* An internal error occurred while processing the request.
|
|
14118
|
+
*/
|
|
14119
|
+
500: ProblemDetail;
|
|
14120
|
+
};
|
|
14121
|
+
type GetSystemConfigurationError = GetSystemConfigurationErrors[keyof GetSystemConfigurationErrors];
|
|
14122
|
+
type GetSystemConfigurationResponses = {
|
|
14123
|
+
/**
|
|
14124
|
+
* Current system configuration grouped by feature area.
|
|
14125
|
+
*/
|
|
14126
|
+
200: SystemConfigurationResponse;
|
|
14127
|
+
};
|
|
14128
|
+
type GetSystemConfigurationResponse = GetSystemConfigurationResponses[keyof GetSystemConfigurationResponses];
|
|
13937
14129
|
type CreateTenantData = {
|
|
13938
14130
|
body: TenantCreateRequest;
|
|
13939
14131
|
path?: never;
|
|
@@ -15091,6 +15283,12 @@ type UpdateUserTaskErrors = {
|
|
|
15091
15283
|
*
|
|
15092
15284
|
*/
|
|
15093
15285
|
503: ProblemDetail;
|
|
15286
|
+
/**
|
|
15287
|
+
* The request timed out between the gateway and the broker. For these endpoints, this often happens when user task listeners are configured and the corresponding listener job is not completed within the request timeout. Common causes include no available job workers for the listener type, busy or crashed job workers, or delayed job completion. As with any gateway timeout, general timeout causes (for example transient network issues) can also result in a 504 response.
|
|
15288
|
+
* Troubleshooting: - verify that job workers for the listener type are running and healthy - check worker logs for crashes, retries, and completion failures - check network connectivity between workers, gateway, and broker - retry with backoff after transient failures - fail without retries if a problem persists
|
|
15289
|
+
*
|
|
15290
|
+
*/
|
|
15291
|
+
504: ProblemDetail;
|
|
15094
15292
|
};
|
|
15095
15293
|
type UpdateUserTaskError = UpdateUserTaskErrors[keyof UpdateUserTaskErrors];
|
|
15096
15294
|
type UpdateUserTaskResponses = {
|
|
@@ -15134,6 +15332,12 @@ type UnassignUserTaskErrors = {
|
|
|
15134
15332
|
*
|
|
15135
15333
|
*/
|
|
15136
15334
|
503: ProblemDetail;
|
|
15335
|
+
/**
|
|
15336
|
+
* The request timed out between the gateway and the broker. For these endpoints, this often happens when user task listeners are configured and the corresponding listener job is not completed within the request timeout. Common causes include no available job workers for the listener type, busy or crashed job workers, or delayed job completion. As with any gateway timeout, general timeout causes (for example transient network issues) can also result in a 504 response.
|
|
15337
|
+
* Troubleshooting: - verify that job workers for the listener type are running and healthy - check worker logs for crashes, retries, and completion failures - check network connectivity between workers, gateway, and broker - retry with backoff after transient failures - fail without retries if a problem persists
|
|
15338
|
+
*
|
|
15339
|
+
*/
|
|
15340
|
+
504: ProblemDetail;
|
|
15137
15341
|
};
|
|
15138
15342
|
type UnassignUserTaskError = UnassignUserTaskErrors[keyof UnassignUserTaskErrors];
|
|
15139
15343
|
type UnassignUserTaskResponses = {
|
|
@@ -15177,6 +15381,12 @@ type AssignUserTaskErrors = {
|
|
|
15177
15381
|
*
|
|
15178
15382
|
*/
|
|
15179
15383
|
503: ProblemDetail;
|
|
15384
|
+
/**
|
|
15385
|
+
* The request timed out between the gateway and the broker. For these endpoints, this often happens when user task listeners are configured and the corresponding listener job is not completed within the request timeout. Common causes include no available job workers for the listener type, busy or crashed job workers, or delayed job completion. As with any gateway timeout, general timeout causes (for example transient network issues) can also result in a 504 response.
|
|
15386
|
+
* Troubleshooting: - verify that job workers for the listener type are running and healthy - check worker logs for crashes, retries, and completion failures - check network connectivity between workers, gateway, and broker - retry with backoff after transient failures - fail without retries if a problem persists
|
|
15387
|
+
*
|
|
15388
|
+
*/
|
|
15389
|
+
504: ProblemDetail;
|
|
15180
15390
|
};
|
|
15181
15391
|
type AssignUserTaskError = AssignUserTaskErrors[keyof AssignUserTaskErrors];
|
|
15182
15392
|
type AssignUserTaskResponses = {
|
|
@@ -15249,6 +15459,12 @@ type CompleteUserTaskErrors = {
|
|
|
15249
15459
|
*
|
|
15250
15460
|
*/
|
|
15251
15461
|
503: ProblemDetail;
|
|
15462
|
+
/**
|
|
15463
|
+
* The request timed out between the gateway and the broker. For these endpoints, this often happens when user task listeners are configured and the corresponding listener job is not completed within the request timeout. Common causes include no available job workers for the listener type, busy or crashed job workers, or delayed job completion. As with any gateway timeout, general timeout causes (for example transient network issues) can also result in a 504 response.
|
|
15464
|
+
* Troubleshooting: - verify that job workers for the listener type are running and healthy - check worker logs for crashes, retries, and completion failures - check network connectivity between workers, gateway, and broker - retry with backoff after transient failures - fail without retries if a problem persists
|
|
15465
|
+
*
|
|
15466
|
+
*/
|
|
15467
|
+
504: ProblemDetail;
|
|
15252
15468
|
};
|
|
15253
15469
|
type CompleteUserTaskError = CompleteUserTaskErrors[keyof CompleteUserTaskErrors];
|
|
15254
15470
|
type CompleteUserTaskResponses = {
|
|
@@ -16062,7 +16278,7 @@ declare const createDeployment: <ThrowOnError extends boolean = true>(options: O
|
|
|
16062
16278
|
*
|
|
16063
16279
|
* Upload a document to the Camunda 8 cluster.
|
|
16064
16280
|
*
|
|
16065
|
-
* Note that this is currently supported for document stores of type: AWS,
|
|
16281
|
+
* Note that this is currently supported for document stores of type: AWS, GCP, in-memory (non-production), local (non-production)
|
|
16066
16282
|
*
|
|
16067
16283
|
*/
|
|
16068
16284
|
declare const createDocument: <ThrowOnError extends boolean = true>(options: Options<CreateDocumentData, ThrowOnError>) => RequestResult<CreateDocumentResponses, CreateDocumentErrors, ThrowOnError, "fields">;
|
|
@@ -16083,7 +16299,7 @@ declare const createDocument: <ThrowOnError extends boolean = true>(options: Opt
|
|
|
16083
16299
|
* each of which contains the file name of the document that failed to upload and the reason for the failure.
|
|
16084
16300
|
* The client can choose to retry the whole batch or individual documents based on the response.
|
|
16085
16301
|
*
|
|
16086
|
-
* Note that this is currently supported for document stores of type: AWS,
|
|
16302
|
+
* Note that this is currently supported for document stores of type: AWS, GCP, in-memory (non-production), local (non-production)
|
|
16087
16303
|
*
|
|
16088
16304
|
*/
|
|
16089
16305
|
declare const createDocuments: <ThrowOnError extends boolean = true>(options: Options<CreateDocumentsData, ThrowOnError>) => RequestResult<CreateDocumentsResponses, CreateDocumentsErrors, ThrowOnError, "fields">;
|
|
@@ -16092,7 +16308,7 @@ declare const createDocuments: <ThrowOnError extends boolean = true>(options: Op
|
|
|
16092
16308
|
*
|
|
16093
16309
|
* Delete a document from the Camunda 8 cluster.
|
|
16094
16310
|
*
|
|
16095
|
-
* Note that this is currently supported for document stores of type: AWS,
|
|
16311
|
+
* Note that this is currently supported for document stores of type: AWS, GCP, in-memory (non-production), local (non-production)
|
|
16096
16312
|
*
|
|
16097
16313
|
*/
|
|
16098
16314
|
declare const deleteDocument: <ThrowOnError extends boolean = true>(options: Options<DeleteDocumentData, ThrowOnError>) => RequestResult<DeleteDocumentResponses, DeleteDocumentErrors, ThrowOnError, "fields">;
|
|
@@ -16101,7 +16317,7 @@ declare const deleteDocument: <ThrowOnError extends boolean = true>(options: Opt
|
|
|
16101
16317
|
*
|
|
16102
16318
|
* Download a document from the Camunda 8 cluster.
|
|
16103
16319
|
*
|
|
16104
|
-
* Note that this is currently supported for document stores of type: AWS,
|
|
16320
|
+
* Note that this is currently supported for document stores of type: AWS, GCP, in-memory (non-production), local (non-production)
|
|
16105
16321
|
*
|
|
16106
16322
|
*/
|
|
16107
16323
|
declare const getDocument: <ThrowOnError extends boolean = true>(options: Options<GetDocumentData, ThrowOnError>) => RequestResult<GetDocumentResponses, GetDocumentErrors, ThrowOnError, "fields">;
|
|
@@ -16110,7 +16326,7 @@ declare const getDocument: <ThrowOnError extends boolean = true>(options: Option
|
|
|
16110
16326
|
*
|
|
16111
16327
|
* Create a link to a document in the Camunda 8 cluster.
|
|
16112
16328
|
*
|
|
16113
|
-
* Note that this is currently supported for document stores of type: AWS,
|
|
16329
|
+
* Note that this is currently supported for document stores of type: AWS, GCP
|
|
16114
16330
|
*
|
|
16115
16331
|
*/
|
|
16116
16332
|
declare const createDocumentLink: <ThrowOnError extends boolean = true>(options: Options<CreateDocumentLinkData, ThrowOnError>) => RequestResult<CreateDocumentLinkResponses, CreateDocumentLinkErrors, ThrowOnError, "fields">;
|
|
@@ -16153,6 +16369,10 @@ declare const searchElementInstanceIncidents: <ThrowOnError extends boolean = tr
|
|
|
16153
16369
|
*
|
|
16154
16370
|
* Updates all the variables of a particular scope (for example, process instance, element instance) with the given variable data.
|
|
16155
16371
|
* Specify the element instance in the `elementInstanceKey` parameter.
|
|
16372
|
+
* Variable updates can be delayed by listener-related processing; if processing exceeds the
|
|
16373
|
+
* request timeout, this endpoint can return 504. Other gateway timeout causes are also
|
|
16374
|
+
* possible. Retry with backoff and inspect listener worker availability and logs when this
|
|
16375
|
+
* repeats.
|
|
16156
16376
|
*
|
|
16157
16377
|
*/
|
|
16158
16378
|
declare const createElementInstanceVariables: <ThrowOnError extends boolean = true>(options: Options<CreateElementInstanceVariablesData, ThrowOnError>) => RequestResult<CreateElementInstanceVariablesResponses, CreateElementInstanceVariablesErrors, ThrowOnError, "fields">;
|
|
@@ -16386,7 +16606,7 @@ declare const getJobTypeStatistics: <ThrowOnError extends boolean = true>(option
|
|
|
16386
16606
|
/**
|
|
16387
16607
|
* Get job statistics by worker
|
|
16388
16608
|
*
|
|
16389
|
-
*
|
|
16609
|
+
* Get statistics about jobs, grouped by worker, for a given job type.
|
|
16390
16610
|
*
|
|
16391
16611
|
*/
|
|
16392
16612
|
declare const getJobWorkerStatistics: <ThrowOnError extends boolean = true>(options: Options<GetJobWorkerStatisticsData, ThrowOnError>) => RequestResult<GetJobWorkerStatisticsResponses, GetJobWorkerStatisticsErrors, ThrowOnError, "fields">;
|
|
@@ -16399,6 +16619,13 @@ declare const getJobWorkerStatistics: <ThrowOnError extends boolean = true>(opti
|
|
|
16399
16619
|
*
|
|
16400
16620
|
*/
|
|
16401
16621
|
declare const getJobTimeSeriesStatistics: <ThrowOnError extends boolean = true>(options: Options<GetJobTimeSeriesStatisticsData, ThrowOnError>) => RequestResult<GetJobTimeSeriesStatisticsResponses, GetJobTimeSeriesStatisticsErrors, ThrowOnError, "fields">;
|
|
16622
|
+
/**
|
|
16623
|
+
* Get error metrics for a job type
|
|
16624
|
+
*
|
|
16625
|
+
* Returns aggregated metrics per error for the given jobType.
|
|
16626
|
+
*
|
|
16627
|
+
*/
|
|
16628
|
+
declare const getJobErrorStatistics: <ThrowOnError extends boolean = true>(options: Options<GetJobErrorStatisticsData, ThrowOnError>) => RequestResult<GetJobErrorStatisticsResponses, GetJobErrorStatisticsErrors, ThrowOnError, "fields">;
|
|
16402
16629
|
/**
|
|
16403
16630
|
* Get license status
|
|
16404
16631
|
*
|
|
@@ -16605,7 +16832,8 @@ declare const getProcessInstanceCallHierarchy: <ThrowOnError extends boolean = t
|
|
|
16605
16832
|
/**
|
|
16606
16833
|
* Cancel process instance
|
|
16607
16834
|
*
|
|
16608
|
-
* Cancels a running process instance. As a cancellation includes more than just the removal of the process instance resource, the cancellation resource must be posted.
|
|
16835
|
+
* Cancels a running process instance. As a cancellation includes more than just the removal of the process instance resource, the cancellation resource must be posted. Cancellation can wait on listener-related processing; when that processing does not complete in time, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
16836
|
+
*
|
|
16609
16837
|
*/
|
|
16610
16838
|
declare const cancelProcessInstance: <ThrowOnError extends boolean = true>(options: Options<CancelProcessInstanceData, ThrowOnError>) => RequestResult<CancelProcessInstanceResponses, CancelProcessInstanceErrors, ThrowOnError, "fields">;
|
|
16611
16839
|
/**
|
|
@@ -16833,6 +17061,17 @@ declare const getStatus: <ThrowOnError extends boolean = true>(options?: Options
|
|
|
16833
17061
|
* Retrieve the usage metrics based on given criteria.
|
|
16834
17062
|
*/
|
|
16835
17063
|
declare const getUsageMetrics: <ThrowOnError extends boolean = true>(options: Options<GetUsageMetricsData, ThrowOnError>) => RequestResult<GetUsageMetricsResponses, GetUsageMetricsErrors, ThrowOnError, "fields">;
|
|
17064
|
+
/**
|
|
17065
|
+
* System configuration (alpha)
|
|
17066
|
+
*
|
|
17067
|
+
* Returns the current system configuration. The response is an envelope
|
|
17068
|
+
* that groups settings by feature area.
|
|
17069
|
+
*
|
|
17070
|
+
* This endpoint is an alpha feature and may be subject to change
|
|
17071
|
+
* in future releases.
|
|
17072
|
+
*
|
|
17073
|
+
*/
|
|
17074
|
+
declare const getSystemConfiguration: <ThrowOnError extends boolean = true>(options?: Options<GetSystemConfigurationData, ThrowOnError>) => RequestResult<GetSystemConfigurationResponses, GetSystemConfigurationErrors, ThrowOnError, "fields">;
|
|
16836
17075
|
/**
|
|
16837
17076
|
* Create tenant
|
|
16838
17077
|
*
|
|
@@ -17019,19 +17258,22 @@ declare const getUserTask: <ThrowOnError extends boolean = true>(options: Option
|
|
|
17019
17258
|
/**
|
|
17020
17259
|
* Update user task
|
|
17021
17260
|
*
|
|
17022
|
-
* Update a user task with the given key.
|
|
17261
|
+
* Update a user task with the given key. Updates wait for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
17262
|
+
*
|
|
17023
17263
|
*/
|
|
17024
17264
|
declare const updateUserTask: <ThrowOnError extends boolean = true>(options: Options<UpdateUserTaskData, ThrowOnError>) => RequestResult<UpdateUserTaskResponses, UpdateUserTaskErrors, ThrowOnError, "fields">;
|
|
17025
17265
|
/**
|
|
17026
17266
|
* Unassign user task
|
|
17027
17267
|
*
|
|
17028
|
-
* Removes the assignee of a task with the given key.
|
|
17268
|
+
* Removes the assignee of a task with the given key. Unassignment waits for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
17269
|
+
*
|
|
17029
17270
|
*/
|
|
17030
17271
|
declare const unassignUserTask: <ThrowOnError extends boolean = true>(options: Options<UnassignUserTaskData, ThrowOnError>) => RequestResult<UnassignUserTaskResponses, UnassignUserTaskErrors, ThrowOnError, "fields">;
|
|
17031
17272
|
/**
|
|
17032
17273
|
* Assign user task
|
|
17033
17274
|
*
|
|
17034
|
-
* Assigns a user task with the given key to the given assignee.
|
|
17275
|
+
* Assigns a user task with the given key to the given assignee. Assignment waits for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
17276
|
+
*
|
|
17035
17277
|
*/
|
|
17036
17278
|
declare const assignUserTask: <ThrowOnError extends boolean = true>(options: Options<AssignUserTaskData, ThrowOnError>) => RequestResult<AssignUserTaskResponses, AssignUserTaskErrors, ThrowOnError, "fields">;
|
|
17037
17279
|
/**
|
|
@@ -17043,7 +17285,8 @@ declare const searchUserTaskAuditLogs: <ThrowOnError extends boolean = true>(opt
|
|
|
17043
17285
|
/**
|
|
17044
17286
|
* Complete user task
|
|
17045
17287
|
*
|
|
17046
|
-
* Completes a user task with the given key.
|
|
17288
|
+
* Completes a user task with the given key. Completion waits for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
17289
|
+
*
|
|
17047
17290
|
*/
|
|
17048
17291
|
declare const completeUserTask: <ThrowOnError extends boolean = true>(options: Options<CompleteUserTaskData, ThrowOnError>) => RequestResult<CompleteUserTaskResponses, CompleteUserTaskErrors, ThrowOnError, "fields">;
|
|
17049
17292
|
/**
|
|
@@ -17235,6 +17478,169 @@ declare class JobWorker {
|
|
|
17235
17478
|
private _decrementOnce;
|
|
17236
17479
|
}
|
|
17237
17480
|
|
|
17481
|
+
interface PoolWorker {
|
|
17482
|
+
worker: node_worker_threads.Worker;
|
|
17483
|
+
busy: boolean;
|
|
17484
|
+
ready: boolean;
|
|
17485
|
+
/** The taskId currently being processed by this worker (if busy). */
|
|
17486
|
+
currentTaskId?: string;
|
|
17487
|
+
}
|
|
17488
|
+
declare class ThreadPool {
|
|
17489
|
+
private _pool;
|
|
17490
|
+
private _pending;
|
|
17491
|
+
private _node;
|
|
17492
|
+
private _log;
|
|
17493
|
+
private _client;
|
|
17494
|
+
private _ready;
|
|
17495
|
+
private _terminated;
|
|
17496
|
+
constructor(client: CamundaClient, size?: number);
|
|
17497
|
+
/** Resolves when all threads have been spawned and signalled ready. */
|
|
17498
|
+
get ready(): Promise<void>;
|
|
17499
|
+
/** Total number of threads in the pool. */
|
|
17500
|
+
get size(): number;
|
|
17501
|
+
/** Number of threads currently processing a job. */
|
|
17502
|
+
get busyCount(): number;
|
|
17503
|
+
/** Number of threads that are ready and idle. */
|
|
17504
|
+
get idleCount(): number;
|
|
17505
|
+
/** Find the first ready & idle thread. */
|
|
17506
|
+
getIdleWorker(): PoolWorker | undefined;
|
|
17507
|
+
/**
|
|
17508
|
+
* Dispatch a serialized job to a specific idle worker.
|
|
17509
|
+
* The caller is responsible for checking idleness first.
|
|
17510
|
+
*/
|
|
17511
|
+
dispatch(pw: PoolWorker, jobData: Record<string, unknown>, handlerModule: string, callbacks: {
|
|
17512
|
+
onComplete: () => void;
|
|
17513
|
+
onError: (err: Error) => void;
|
|
17514
|
+
}): Promise<void>;
|
|
17515
|
+
/** Terminate all threads and reject any in-flight tasks. */
|
|
17516
|
+
terminate(): void;
|
|
17517
|
+
/** Reject the pending task for a worker that errored/exited and reset its state. */
|
|
17518
|
+
private _rejectWorkerTask;
|
|
17519
|
+
private _init;
|
|
17520
|
+
}
|
|
17521
|
+
|
|
17522
|
+
/**
|
|
17523
|
+
* The job object received by a threaded handler.
|
|
17524
|
+
* Same shape as EnrichedActivatedJob but without the logger (not available across threads).
|
|
17525
|
+
*/
|
|
17526
|
+
type ThreadedJob = Omit<EnrichedActivatedJob, 'log'>;
|
|
17527
|
+
/**
|
|
17528
|
+
* Handler function signature for threaded job workers.
|
|
17529
|
+
*
|
|
17530
|
+
* Import this type in your handler module for full intellisense on `job` and `client`:
|
|
17531
|
+
*
|
|
17532
|
+
* ```ts
|
|
17533
|
+
* import type { ThreadedJobHandler } from '@camunda8/orchestration-cluster-api';
|
|
17534
|
+
*
|
|
17535
|
+
* const handler: ThreadedJobHandler = async (job, client) => {
|
|
17536
|
+
* // full intellisense for job.variables, job.complete(), client.publishMessage(), etc.
|
|
17537
|
+
* return job.complete({ result: 'done' });
|
|
17538
|
+
* };
|
|
17539
|
+
* export default handler;
|
|
17540
|
+
* ```
|
|
17541
|
+
*/
|
|
17542
|
+
type ThreadedJobHandler = (job: ThreadedJob, client: CamundaClient) => Promise<JobActionReceipt> | JobActionReceipt;
|
|
17543
|
+
/**
|
|
17544
|
+
* Configuration for a threaded job worker.
|
|
17545
|
+
* Same as JobWorkerConfig but replaces `jobHandler` with `handlerModule`.
|
|
17546
|
+
*/
|
|
17547
|
+
interface ThreadedJobWorkerConfig<In extends z.ZodTypeAny = any, Out extends z.ZodTypeAny = any, Headers extends z.ZodTypeAny = any> {
|
|
17548
|
+
/** Absolute or relative path to a JS/TS module that exports a default handler function.
|
|
17549
|
+
* The function signature must be: `(job, client) => Promise<JobActionReceipt>` */
|
|
17550
|
+
handlerModule: string;
|
|
17551
|
+
/** Zod schema for variables in the activated job */
|
|
17552
|
+
inputSchema?: In;
|
|
17553
|
+
/** Zod schema for variables in the complete command */
|
|
17554
|
+
outputSchema?: Out;
|
|
17555
|
+
/** Zod schema for custom headers in the activated job */
|
|
17556
|
+
customHeadersSchema?: Headers;
|
|
17557
|
+
/** Backoff between polls - default 1ms */
|
|
17558
|
+
pollIntervalMs?: number;
|
|
17559
|
+
/** Immediately start polling for work - default `true` */
|
|
17560
|
+
autoStart?: boolean;
|
|
17561
|
+
/** concurrency limit */
|
|
17562
|
+
maxParallelJobs: number;
|
|
17563
|
+
/**
|
|
17564
|
+
* The request will be completed when at least one job is activated or after the requestTimeout.
|
|
17565
|
+
* If the requestTimeout = 0, the request will be completed after a default configured timeout in the broker.
|
|
17566
|
+
* To immediately complete the request when no job is activated set the requestTimeout to a negative value
|
|
17567
|
+
*/
|
|
17568
|
+
pollTimeoutMs?: number;
|
|
17569
|
+
/** Job activation timeout */
|
|
17570
|
+
jobTimeoutMs: number;
|
|
17571
|
+
/** Zeebe job type */
|
|
17572
|
+
jobType: string;
|
|
17573
|
+
/** Optional list of variable names to fetch during activation */
|
|
17574
|
+
fetchVariables?: In extends z.ZodTypeAny ? Array<Extract<keyof z.infer<In>, string>> : string[];
|
|
17575
|
+
/** Optional explicit name */
|
|
17576
|
+
workerName?: string;
|
|
17577
|
+
/**
|
|
17578
|
+
* Maximum random delay (in seconds) before the worker starts polling.
|
|
17579
|
+
* When multiple application instances restart simultaneously, this spreads out
|
|
17580
|
+
* initial activation requests to avoid saturating the server.
|
|
17581
|
+
* `0` (the default) means no delay.
|
|
17582
|
+
*/
|
|
17583
|
+
startupJitterMaxSeconds?: number;
|
|
17584
|
+
/**
|
|
17585
|
+
* Validate any provided input, output, customheader schema
|
|
17586
|
+
* default: false
|
|
17587
|
+
**/
|
|
17588
|
+
validateSchemas?: boolean;
|
|
17589
|
+
/**
|
|
17590
|
+
* Number of threads in the shared pool (used only when the pool is first created;
|
|
17591
|
+
* subsequent workers share the existing pool).
|
|
17592
|
+
* Default: number of CPU cores available to the process.
|
|
17593
|
+
*/
|
|
17594
|
+
threadPoolSize?: number;
|
|
17595
|
+
}
|
|
17596
|
+
/**
|
|
17597
|
+
* A job worker that runs handler logic in a shared pool of worker_threads,
|
|
17598
|
+
* keeping the main Node.js event loop free for polling and I/O.
|
|
17599
|
+
*
|
|
17600
|
+
* The thread pool is owned by CamundaClient and shared across all threaded workers.
|
|
17601
|
+
* Each thread is generic — the handler module path is sent with each job,
|
|
17602
|
+
* and threads cache loaded handlers by module path.
|
|
17603
|
+
*/
|
|
17604
|
+
declare class ThreadedJobWorker {
|
|
17605
|
+
private _client;
|
|
17606
|
+
private _pool;
|
|
17607
|
+
private _cfg;
|
|
17608
|
+
private _name;
|
|
17609
|
+
private _activeJobs;
|
|
17610
|
+
private _stopped;
|
|
17611
|
+
private _pollTimer;
|
|
17612
|
+
private _inFlightActivation;
|
|
17613
|
+
private _log;
|
|
17614
|
+
private _jobQueue;
|
|
17615
|
+
constructor(client: CamundaClient, pool: ThreadPool, cfg: ThreadedJobWorkerConfig);
|
|
17616
|
+
get name(): string;
|
|
17617
|
+
get activeJobs(): number;
|
|
17618
|
+
get stopped(): boolean;
|
|
17619
|
+
/** Number of threads in the shared pool. */
|
|
17620
|
+
get poolSize(): number;
|
|
17621
|
+
/** Number of threads currently processing a job (across all workers). */
|
|
17622
|
+
get busyThreads(): number;
|
|
17623
|
+
/** Resolves when the shared thread pool has finished initialising. */
|
|
17624
|
+
get ready(): Promise<void>;
|
|
17625
|
+
start(): void;
|
|
17626
|
+
stop(): void;
|
|
17627
|
+
stopGracefully(opts?: {
|
|
17628
|
+
waitUpToMs?: number;
|
|
17629
|
+
checkIntervalMs?: number;
|
|
17630
|
+
}): Promise<{
|
|
17631
|
+
remainingJobs: number;
|
|
17632
|
+
timedOut: boolean;
|
|
17633
|
+
}>;
|
|
17634
|
+
private _drainQueue;
|
|
17635
|
+
private _dispatchToThread;
|
|
17636
|
+
private _serializeJob;
|
|
17637
|
+
private _scheduleNext;
|
|
17638
|
+
private _poll;
|
|
17639
|
+
private _handleJob;
|
|
17640
|
+
private _failValidation;
|
|
17641
|
+
private _decrementOnce;
|
|
17642
|
+
}
|
|
17643
|
+
|
|
17238
17644
|
type _RawReturn<F> = F extends (...a: any) => Promise<infer R> ? R : never;
|
|
17239
17645
|
type _DataOf<F> = Exclude<_RawReturn<F> extends {
|
|
17240
17646
|
data: infer D;
|
|
@@ -17659,13 +18065,13 @@ type deleteDecisionInstanceOptions = Parameters<typeof deleteDecisionInstance>[0
|
|
|
17659
18065
|
type deleteDecisionInstanceBody = (NonNullable<deleteDecisionInstanceOptions> extends {
|
|
17660
18066
|
body?: infer B;
|
|
17661
18067
|
} ? B : never);
|
|
17662
|
-
type
|
|
18068
|
+
type deleteDecisionInstancePathParam_decisionEvaluationKey = (NonNullable<deleteDecisionInstanceOptions> extends {
|
|
17663
18069
|
path: {
|
|
17664
|
-
|
|
18070
|
+
decisionEvaluationKey: infer P;
|
|
17665
18071
|
};
|
|
17666
18072
|
} ? P : any);
|
|
17667
18073
|
type deleteDecisionInstanceInput = deleteDecisionInstanceBody & {
|
|
17668
|
-
|
|
18074
|
+
decisionEvaluationKey: deleteDecisionInstancePathParam_decisionEvaluationKey;
|
|
17669
18075
|
};
|
|
17670
18076
|
type deleteDecisionInstancesBatchOperationOptions = Parameters<typeof deleteDecisionInstancesBatchOperation>[0];
|
|
17671
18077
|
type deleteDecisionInstancesBatchOperationBody = (NonNullable<deleteDecisionInstancesBatchOperationOptions> extends {
|
|
@@ -18051,6 +18457,16 @@ type getIncidentConsistency = {
|
|
|
18051
18457
|
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
18052
18458
|
consistency: ConsistencyOptions<_DataOf<typeof getIncident>>;
|
|
18053
18459
|
};
|
|
18460
|
+
type getJobErrorStatisticsOptions = Parameters<typeof getJobErrorStatistics>[0];
|
|
18461
|
+
type getJobErrorStatisticsBody = (NonNullable<getJobErrorStatisticsOptions> extends {
|
|
18462
|
+
body?: infer B;
|
|
18463
|
+
} ? B : never);
|
|
18464
|
+
type getJobErrorStatisticsInput = getJobErrorStatisticsBody;
|
|
18465
|
+
/** Management of eventual consistency **/
|
|
18466
|
+
type getJobErrorStatisticsConsistency = {
|
|
18467
|
+
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
18468
|
+
consistency: ConsistencyOptions<_DataOf<typeof getJobErrorStatistics>>;
|
|
18469
|
+
};
|
|
18054
18470
|
type getJobTimeSeriesStatisticsOptions = Parameters<typeof getJobTimeSeriesStatistics>[0];
|
|
18055
18471
|
type getJobTimeSeriesStatisticsBody = (NonNullable<getJobTimeSeriesStatisticsOptions> extends {
|
|
18056
18472
|
body?: infer B;
|
|
@@ -18294,6 +18710,7 @@ type getStartProcessFormConsistency = {
|
|
|
18294
18710
|
consistency: ConsistencyOptions<_DataOf<typeof getStartProcessForm>>;
|
|
18295
18711
|
};
|
|
18296
18712
|
type getStatusInput = void;
|
|
18713
|
+
type getSystemConfigurationInput = void;
|
|
18297
18714
|
type getTenantOptions = Parameters<typeof getTenant>[0];
|
|
18298
18715
|
type getTenantPathParam_tenantId = (NonNullable<getTenantOptions> extends {
|
|
18299
18716
|
path: {
|
|
@@ -19431,6 +19848,8 @@ declare class CamundaClient {
|
|
|
19431
19848
|
private _bp;
|
|
19432
19849
|
/** Registered job workers created via createJobWorker (lifecycle managed by user). */
|
|
19433
19850
|
private _workers;
|
|
19851
|
+
/** Shared thread pool for all threaded job workers (lazy-initialised on first use). */
|
|
19852
|
+
private _threadPool;
|
|
19434
19853
|
/** Support logger (Node-only; no-op in browser). */
|
|
19435
19854
|
private _supportLogger;
|
|
19436
19855
|
private readonly _errorMode;
|
|
@@ -19494,8 +19913,10 @@ declare class CamundaClient {
|
|
|
19494
19913
|
};
|
|
19495
19914
|
/** Return a read-only snapshot of currently registered job workers. */
|
|
19496
19915
|
getWorkers(): any[];
|
|
19497
|
-
/** Stop all registered job workers (best-effort). */
|
|
19916
|
+
/** Stop all registered job workers (best-effort) and terminate the shared thread pool. */
|
|
19498
19917
|
stopAllWorkers(): void;
|
|
19918
|
+
/** Get or lazily create the shared thread pool for threaded job workers. */
|
|
19919
|
+
private _getOrCreateThreadPool;
|
|
19499
19920
|
/**
|
|
19500
19921
|
* Activate activities within an ad-hoc sub-process
|
|
19501
19922
|
*
|
|
@@ -19623,7 +20044,8 @@ declare class CamundaClient {
|
|
|
19623
20044
|
/**
|
|
19624
20045
|
* Assign user task
|
|
19625
20046
|
*
|
|
19626
|
-
* Assigns a user task with the given key to the given assignee.
|
|
20047
|
+
* Assigns a user task with the given key to the given assignee. Assignment waits for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
20048
|
+
*
|
|
19627
20049
|
*
|
|
19628
20050
|
* @example Assign a user task
|
|
19629
20051
|
* {@includeCode ../../examples/user-task.ts#AssignUserTask}
|
|
@@ -19676,7 +20098,8 @@ declare class CamundaClient {
|
|
|
19676
20098
|
/**
|
|
19677
20099
|
* Cancel process instance
|
|
19678
20100
|
*
|
|
19679
|
-
* Cancels a running process instance. As a cancellation includes more than just the removal of the process instance resource, the cancellation resource must be posted.
|
|
20101
|
+
* Cancels a running process instance. As a cancellation includes more than just the removal of the process instance resource, the cancellation resource must be posted. Cancellation can wait on listener-related processing; when that processing does not complete in time, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
20102
|
+
*
|
|
19680
20103
|
*
|
|
19681
20104
|
* @example Cancel a process instance
|
|
19682
20105
|
* {@includeCode ../../examples/process-instance.ts#CancelProcessInstance}
|
|
@@ -19712,7 +20135,8 @@ declare class CamundaClient {
|
|
|
19712
20135
|
/**
|
|
19713
20136
|
* Complete user task
|
|
19714
20137
|
*
|
|
19715
|
-
* Completes a user task with the given key.
|
|
20138
|
+
* Completes a user task with the given key. Completion waits for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
20139
|
+
*
|
|
19716
20140
|
*
|
|
19717
20141
|
* @example Complete a user task
|
|
19718
20142
|
* {@includeCode ../../examples/user-task.ts#CompleteUserTask}
|
|
@@ -19772,7 +20196,7 @@ declare class CamundaClient {
|
|
|
19772
20196
|
*
|
|
19773
20197
|
* Upload a document to the Camunda 8 cluster.
|
|
19774
20198
|
*
|
|
19775
|
-
* Note that this is currently supported for document stores of type: AWS,
|
|
20199
|
+
* Note that this is currently supported for document stores of type: AWS, GCP, in-memory (non-production), local (non-production)
|
|
19776
20200
|
*
|
|
19777
20201
|
*
|
|
19778
20202
|
* @operationId createDocument
|
|
@@ -19784,7 +20208,7 @@ declare class CamundaClient {
|
|
|
19784
20208
|
*
|
|
19785
20209
|
* Create a link to a document in the Camunda 8 cluster.
|
|
19786
20210
|
*
|
|
19787
|
-
* Note that this is currently supported for document stores of type: AWS,
|
|
20211
|
+
* Note that this is currently supported for document stores of type: AWS, GCP
|
|
19788
20212
|
*
|
|
19789
20213
|
*
|
|
19790
20214
|
* @operationId createDocumentLink
|
|
@@ -19808,7 +20232,7 @@ declare class CamundaClient {
|
|
|
19808
20232
|
* each of which contains the file name of the document that failed to upload and the reason for the failure.
|
|
19809
20233
|
* The client can choose to retry the whole batch or individual documents based on the response.
|
|
19810
20234
|
*
|
|
19811
|
-
* Note that this is currently supported for document stores of type: AWS,
|
|
20235
|
+
* Note that this is currently supported for document stores of type: AWS, GCP, in-memory (non-production), local (non-production)
|
|
19812
20236
|
*
|
|
19813
20237
|
*
|
|
19814
20238
|
* @operationId createDocuments
|
|
@@ -19820,6 +20244,10 @@ declare class CamundaClient {
|
|
|
19820
20244
|
*
|
|
19821
20245
|
* Updates all the variables of a particular scope (for example, process instance, element instance) with the given variable data.
|
|
19822
20246
|
* Specify the element instance in the `elementInstanceKey` parameter.
|
|
20247
|
+
* Variable updates can be delayed by listener-related processing; if processing exceeds the
|
|
20248
|
+
* request timeout, this endpoint can return 504. Other gateway timeout causes are also
|
|
20249
|
+
* possible. Retry with backoff and inspect listener worker availability and logs when this
|
|
20250
|
+
* repeats.
|
|
19823
20251
|
*
|
|
19824
20252
|
*
|
|
19825
20253
|
* @operationId createElementInstanceVariables
|
|
@@ -19952,7 +20380,7 @@ declare class CamundaClient {
|
|
|
19952
20380
|
*
|
|
19953
20381
|
* Delete a document from the Camunda 8 cluster.
|
|
19954
20382
|
*
|
|
19955
|
-
* Note that this is currently supported for document stores of type: AWS,
|
|
20383
|
+
* Note that this is currently supported for document stores of type: AWS, GCP, in-memory (non-production), local (non-production)
|
|
19956
20384
|
*
|
|
19957
20385
|
*
|
|
19958
20386
|
* @operationId deleteDocument
|
|
@@ -20222,7 +20650,7 @@ declare class CamundaClient {
|
|
|
20222
20650
|
*
|
|
20223
20651
|
* Download a document from the Camunda 8 cluster.
|
|
20224
20652
|
*
|
|
20225
|
-
* Note that this is currently supported for document stores of type: AWS,
|
|
20653
|
+
* Note that this is currently supported for document stores of type: AWS, GCP, in-memory (non-production), local (non-production)
|
|
20226
20654
|
*
|
|
20227
20655
|
*
|
|
20228
20656
|
* @operationId getDocument
|
|
@@ -20293,6 +20721,17 @@ declare class CamundaClient {
|
|
|
20293
20721
|
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
20294
20722
|
*/
|
|
20295
20723
|
getIncident(input: getIncidentInput, /** Management of eventual consistency **/ consistencyManagement: getIncidentConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof getIncident>>;
|
|
20724
|
+
/**
|
|
20725
|
+
* Get error metrics for a job type
|
|
20726
|
+
*
|
|
20727
|
+
* Returns aggregated metrics per error for the given jobType.
|
|
20728
|
+
*
|
|
20729
|
+
*
|
|
20730
|
+
* @operationId getJobErrorStatistics
|
|
20731
|
+
* @tags Job
|
|
20732
|
+
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
20733
|
+
*/
|
|
20734
|
+
getJobErrorStatistics(input: getJobErrorStatisticsInput, /** Management of eventual consistency **/ consistencyManagement: getJobErrorStatisticsConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof getJobErrorStatistics>>;
|
|
20296
20735
|
/**
|
|
20297
20736
|
* Get time-series metrics for a job type
|
|
20298
20737
|
*
|
|
@@ -20320,7 +20759,7 @@ declare class CamundaClient {
|
|
|
20320
20759
|
/**
|
|
20321
20760
|
* Get job statistics by worker
|
|
20322
20761
|
*
|
|
20323
|
-
*
|
|
20762
|
+
* Get statistics about jobs, grouped by worker, for a given job type.
|
|
20324
20763
|
*
|
|
20325
20764
|
*
|
|
20326
20765
|
* @operationId getJobWorkerStatistics
|
|
@@ -20536,6 +20975,20 @@ declare class CamundaClient {
|
|
|
20536
20975
|
* @tags Cluster
|
|
20537
20976
|
*/
|
|
20538
20977
|
getStatus(options?: OperationOptions): CancelablePromise<_DataOf<typeof getStatus>>;
|
|
20978
|
+
/**
|
|
20979
|
+
* System configuration (alpha)
|
|
20980
|
+
*
|
|
20981
|
+
* Returns the current system configuration. The response is an envelope
|
|
20982
|
+
* that groups settings by feature area.
|
|
20983
|
+
*
|
|
20984
|
+
* This endpoint is an alpha feature and may be subject to change
|
|
20985
|
+
* in future releases.
|
|
20986
|
+
*
|
|
20987
|
+
*
|
|
20988
|
+
* @operationId getSystemConfiguration
|
|
20989
|
+
* @tags System
|
|
20990
|
+
*/
|
|
20991
|
+
getSystemConfiguration(options?: OperationOptions): CancelablePromise<_DataOf<typeof getSystemConfiguration>>;
|
|
20539
20992
|
/**
|
|
20540
20993
|
* Get tenant
|
|
20541
20994
|
*
|
|
@@ -21351,7 +21804,8 @@ declare class CamundaClient {
|
|
|
21351
21804
|
/**
|
|
21352
21805
|
* Unassign user task
|
|
21353
21806
|
*
|
|
21354
|
-
* Removes the assignee of a task with the given key.
|
|
21807
|
+
* Removes the assignee of a task with the given key. Unassignment waits for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
21808
|
+
*
|
|
21355
21809
|
*
|
|
21356
21810
|
* @example Unassign a user task
|
|
21357
21811
|
* {@includeCode ../../examples/user-task.ts#UnassignUserTask}
|
|
@@ -21457,7 +21911,8 @@ declare class CamundaClient {
|
|
|
21457
21911
|
/**
|
|
21458
21912
|
* Update user task
|
|
21459
21913
|
*
|
|
21460
|
-
* Update a user task with the given key.
|
|
21914
|
+
* Update a user task with the given key. Updates wait for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
21915
|
+
*
|
|
21461
21916
|
*
|
|
21462
21917
|
* @operationId updateUserTask
|
|
21463
21918
|
* @tags User task
|
|
@@ -21472,6 +21927,26 @@ declare class CamundaClient {
|
|
|
21472
21927
|
* {@includeCode ../../examples/job.ts#JobWorkerWithErrorHandling}
|
|
21473
21928
|
*/
|
|
21474
21929
|
createJobWorker<In extends zod.ZodTypeAny = any, Out extends zod.ZodTypeAny = any, Headers extends zod.ZodTypeAny = any>(cfg: JobWorkerConfig<In, Out, Headers>): JobWorker;
|
|
21930
|
+
/**
|
|
21931
|
+
* Create a threaded job worker that runs handler logic in a pool of worker threads.
|
|
21932
|
+
* The handler must be a separate module file that exports a default function with
|
|
21933
|
+
* signature `(job, client) => Promise<JobActionReceipt>`.
|
|
21934
|
+
*
|
|
21935
|
+
* This keeps the main event loop free for polling and I/O, dramatically improving
|
|
21936
|
+
* throughput for CPU-bound job handlers.
|
|
21937
|
+
*
|
|
21938
|
+
* @param cfg Threaded worker configuration
|
|
21939
|
+
* @example Create a threaded job worker
|
|
21940
|
+
* ```ts
|
|
21941
|
+
* const worker = client.createThreadedJobWorker({
|
|
21942
|
+
* jobType: 'cpu-heavy-task',
|
|
21943
|
+
* handlerModule: './my-handler.js',
|
|
21944
|
+
* maxParallelJobs: 32,
|
|
21945
|
+
* jobTimeoutMs: 30000,
|
|
21946
|
+
* })
|
|
21947
|
+
* ```
|
|
21948
|
+
*/
|
|
21949
|
+
createThreadedJobWorker<In extends zod.ZodTypeAny = any, Out extends zod.ZodTypeAny = any, Headers extends zod.ZodTypeAny = any>(cfg: ThreadedJobWorkerConfig<In, Out, Headers>): ThreadedJobWorker;
|
|
21475
21950
|
/**
|
|
21476
21951
|
* Node-only convenience: deploy resources from local filesystem paths.
|
|
21477
21952
|
* @param resourceFilenames Absolute or relative file paths to BPMN/DMN/form/resource files.
|
|
@@ -21568,4 +22043,4 @@ declare function eventuallyTE<E, A>(thunk: () => Promise<A>, predicate: (a: A) =
|
|
|
21568
22043
|
waitUpToMs: number;
|
|
21569
22044
|
}): TaskEither<E, A>;
|
|
21570
22045
|
|
|
21571
|
-
export { type AuthorizationSearchQuerySortRequest as $, type AuthStrategy as A, CancelError as A0, type Fpify as A1, type FnKeys as A2, type DomainError as A3, type DomainErrorTag as A4, type HttpError as A5, type Left as A6, type Right as A7, retryTE as A8, withTimeoutTE as A9, eventuallyTE as Aa, foldDomainError as Ab, classifyDomainError as Ac, type TaskEither as Ad, type BackpressureSeverity as B, type CamundaOptions as C, type AuditLogCategoryEnum as D, type Either as E, type AuditLogEntityKeyFilterProperty as F, type AdvancedAuditLogEntityKeyFilter as G, type HttpRetryPolicy as H, type EntityTypeFilterProperty as I, type JobWorkerConfig as J, type AdvancedEntityTypeFilter as K, type OperationTypeFilterProperty as L, type AdvancedOperationTypeFilter as M, type CategoryFilterProperty as N, type OperationOptions as O, type AdvancedCategoryFilter as P, type AuditLogResultFilterProperty as Q, type AdvancedResultFilter as R, type SupportLogger as S, type TelemetryHooks as T, type AuditLogActorTypeFilterProperty as U, type ValidationMode as V, type AdvancedActorTypeFilter as W, type CamundaUserResult as X, type AuthorizationIdBasedRequest as Y, type AuthorizationPropertyBasedRequest as Z, type AuthorizationRequest as _, CamundaClient as a, type DecisionDefinitionSearchQueryResult as a$, type AuthorizationSearchQuery as a0, type AuthorizationFilter as a1, type AuthorizationResult as a2, type AuthorizationSearchResult as a3, type AuthorizationCreateResult as a4, type PermissionTypeEnum as a5, type ResourceTypeEnum as a6, type OwnerTypeEnum as a7, AuthorizationKey as a8, type BatchOperationCreatedResult as a9, type BatchOperationItemStateFilterProperty as aA, type AdvancedBatchOperationItemStateFilter as aB, type ClockPinRequest as aC, type ClusterVariableScopeEnum as aD, type CreateClusterVariableRequest as aE, type UpdateClusterVariableRequest as aF, type ClusterVariableResult as aG, type ClusterVariableSearchResult as aH, type ClusterVariableResultBase as aI, type ClusterVariableSearchQueryRequest as aJ, type ClusterVariableSearchQuerySortRequest as aK, type ClusterVariableSearchQueryFilterRequest as aL, type ClusterVariableScopeFilterProperty as aM, type AdvancedClusterVariableScopeFilter as aN, type ClusterVariableSearchQueryResult as aO, type TopologyResponse as aP, type BrokerInfo as aQ, type Partition as aR, type ConditionalEvaluationInstruction as aS, type EvaluateConditionalResult as aT, ConditionalEvaluationKey as aU, type ProcessInstanceReference as aV, StartCursor as aW, EndCursor as aX, type DecisionDefinitionSearchQuerySortRequest as aY, type DecisionDefinitionSearchQuery as aZ, type DecisionDefinitionFilter as a_, type BatchOperationSearchQuerySortRequest as aa, type BatchOperationSearchQuery as ab, type BatchOperationFilter as ac, type BatchOperationSearchQueryResult as ad, type BatchOperationResponse as ae, type BatchOperationError as af, type BatchOperationItemSearchQuerySortRequest as ag, type BatchOperationItemSearchQuery as ah, type BatchOperationItemFilter as ai, type BatchOperationItemSearchQueryResult as aj, type BatchOperationItemResponse as ak, type DecisionInstanceDeletionBatchOperationRequest as al, type ProcessInstanceCancellationBatchOperationRequest as am, type ProcessInstanceIncidentResolutionBatchOperationRequest as an, type ProcessInstanceDeletionBatchOperationRequest as ao, type ProcessInstanceMigrationBatchOperationRequest as ap, type ProcessInstanceMigrationBatchOperationPlan as aq, type ProcessInstanceModificationBatchOperationRequest as ar, type ProcessInstanceModificationMoveBatchOperationInstruction as as, type BatchOperationItemStateEnum as at, type BatchOperationStateEnum as au, type BatchOperationTypeEnum as av, type BatchOperationTypeFilterProperty as aw, type AdvancedBatchOperationTypeFilter as ax, type BatchOperationStateFilterProperty as ay, type AdvancedBatchOperationStateFilter as az, type CancelablePromise as b, type AdvancedStringFilter as b$, type DecisionDefinitionResult as b0, type DecisionEvaluationInstruction as b1, type DecisionEvaluationById as b2, type DecisionEvaluationByKey as b3, type EvaluateDecisionResult as b4, type EvaluatedDecisionResult as b5, type DecisionInstanceSearchQuerySortRequest as b6, type DecisionInstanceSearchQuery as b7, type DecisionInstanceFilter as b8, type DeleteDecisionInstanceRequest as b9, type ResourceKey as bA, type DeploymentKeyFilterProperty as bB, type AdvancedDeploymentKeyFilter as bC, type ResourceKeyFilterProperty as bD, type AdvancedResourceKeyFilter as bE, type DocumentReference as bF, type DocumentCreationFailureDetail as bG, type DocumentCreationBatchResponse as bH, type DocumentMetadata as bI, type DocumentMetadataResponse as bJ, type DocumentLinkRequest as bK, type DocumentLink as bL, DocumentId as bM, type ElementInstanceSearchQuerySortRequest as bN, type ElementInstanceSearchQuery as bO, type ElementInstanceFilter as bP, type ElementInstanceStateFilterProperty as bQ, type AdvancedElementInstanceStateFilter as bR, type ElementInstanceSearchQueryResult as bS, type ElementInstanceResult as bT, type ElementInstanceStateEnum as bU, type AdHocSubProcessActivateActivitiesInstruction as bV, type AdHocSubProcessActivateActivityReference as bW, type ExpressionEvaluationRequest as bX, type ExpressionEvaluationResult as bY, type LikeFilter as bZ, type BasicStringFilter as b_, type DecisionInstanceSearchQueryResult as ba, type DecisionInstanceResult as bb, type DecisionInstanceGetQueryResult as bc, type EvaluatedDecisionInputItem as bd, type EvaluatedDecisionOutputItem as be, type MatchedDecisionRuleItem as bf, type DecisionDefinitionTypeEnum as bg, type DecisionInstanceStateEnum as bh, type AdvancedDecisionInstanceStateFilter as bi, type DecisionInstanceStateFilterProperty as bj, type DecisionRequirementsSearchQuerySortRequest as bk, type DecisionRequirementsSearchQuery as bl, type DecisionRequirementsFilter as bm, type DecisionRequirementsSearchQueryResult as bn, type DecisionRequirementsResult as bo, type DeploymentResult as bp, type DeploymentMetadataResult as bq, type DeploymentProcessResult as br, type DeploymentDecisionResult as bs, type DeploymentDecisionRequirementsResult as bt, type DeploymentFormResult as bu, type DeploymentResourceResult as bv, type DeleteResourceRequest as bw, type DeleteResourceResponse as bx, type ResourceResult as by, DeploymentKey as bz, createCamundaClient as c, type IncidentResolutionRequest as c$, type BasicStringFilterProperty as c0, type StringFilterProperty as c1, type AdvancedIntegerFilter as c2, type IntegerFilterProperty as c3, type AdvancedDateTimeFilter as c4, type DateTimeFilterProperty as c5, type FormResult as c6, type GlobalListenerSourceEnum as c7, type GlobalTaskListenerEventTypeEnum as c8, type GlobalListenerBase as c9, type GroupClientResult as cA, type GroupClientSearchResult as cB, type GroupClientSearchQueryRequest as cC, type GroupMappingRuleSearchResult as cD, type GroupRoleSearchResult as cE, type GroupClientSearchQuerySortRequest as cF, ProcessDefinitionId as cG, ElementId as cH, FormId as cI, DecisionDefinitionId as cJ, GlobalListenerId as cK, TenantId as cL, Username as cM, Tag as cN, type TagSet as cO, BusinessId as cP, type IncidentSearchQuery as cQ, type IncidentFilter as cR, type IncidentErrorTypeFilterProperty as cS, type AdvancedIncidentErrorTypeFilter as cT, type IncidentErrorTypeEnum as cU, type IncidentStateFilterProperty as cV, type AdvancedIncidentStateFilter as cW, type IncidentStateEnum as cX, type IncidentSearchQuerySortRequest as cY, type IncidentSearchQueryResult as cZ, type IncidentResult as c_, type GlobalTaskListenerBase as ca, type GlobalTaskListenerEventTypes as cb, type CreateGlobalTaskListenerRequest as cc, type UpdateGlobalTaskListenerRequest as cd, type GlobalTaskListenerResult as ce, type GlobalTaskListenerSearchQueryRequest as cf, type GlobalTaskListenerSearchQuerySortRequest as cg, type GlobalTaskListenerSearchQueryFilterRequest as ch, type GlobalListenerSourceFilterProperty as ci, type AdvancedGlobalListenerSourceFilter as cj, type GlobalTaskListenerEventTypeFilterProperty as ck, type AdvancedGlobalTaskListenerEventTypeFilter as cl, type GlobalTaskListenerSearchQueryResult as cm, type GroupCreateRequest as cn, type GroupCreateResult as co, type GroupUpdateRequest as cp, type GroupUpdateResult as cq, type GroupResult as cr, type GroupSearchQuerySortRequest as cs, type GroupSearchQueryRequest as ct, type GroupFilter as cu, type GroupSearchQueryResult as cv, type GroupUserResult as cw, type GroupUserSearchResult as cx, type GroupUserSearchQueryRequest as cy, type GroupUserSearchQuerySortRequest as cz, JobWorker as d, DecisionDefinitionKey as d$, type IncidentProcessInstanceStatisticsByErrorQuery as d0, type IncidentProcessInstanceStatisticsByErrorQueryResult as d1, type IncidentProcessInstanceStatisticsByErrorResult as d2, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as d3, type IncidentProcessInstanceStatisticsByDefinitionQuery as d4, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as d5, type IncidentProcessInstanceStatisticsByDefinitionResult as d6, type IncidentProcessInstanceStatisticsByDefinitionFilter as d7, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as d8, type GlobalJobStatisticsQueryResult as d9, type JobResult as dA, type JobResultUserTask as dB, type JobResultCorrections as dC, type JobResultAdHocSubProcess as dD, type JobResultActivateElement as dE, type JobUpdateRequest as dF, type JobChangeset as dG, type TenantFilterEnum as dH, type JobStateEnum as dI, type JobKindEnum as dJ, type JobListenerEventTypeEnum as dK, type JobKindFilterProperty as dL, type AdvancedJobKindFilter as dM, type JobListenerEventTypeFilterProperty as dN, type AdvancedJobListenerEventTypeFilter as dO, type JobStateFilterProperty as dP, type AdvancedJobStateFilter as dQ, type LongKey as dR, ProcessInstanceKey as dS, ProcessDefinitionKey as dT, ElementInstanceKey as dU, UserTaskKey as dV, FormKey as dW, VariableKey as dX, ScopeKey as dY, IncidentKey as dZ, JobKey as d_, type StatusMetric as da, type JobTypeStatisticsQuery as db, type JobTypeStatisticsFilter as dc, type JobTypeStatisticsQueryResult as dd, type JobTypeStatisticsItem as de, type JobWorkerStatisticsQuery as df, type JobWorkerStatisticsFilter as dg, type JobWorkerStatisticsQueryResult as dh, type JobWorkerStatisticsItem as di, type JobTimeSeriesStatisticsQuery as dj, type JobTimeSeriesStatisticsFilter as dk, type JobTimeSeriesStatisticsQueryResult as dl, type JobTimeSeriesStatisticsItem as dm, type JobActivationRequest as dn, type JobActivationResult as dp, type ActivatedJobResult$1 as dq, type UserTaskProperties as dr, type JobSearchQuery as ds, type JobSearchQuerySortRequest as dt, type JobFilter as du, type JobSearchQueryResult as dv, type JobSearchResult as dw, type JobFailRequest as dx, type JobErrorRequest$1 as dy, type JobCompletionRequest as dz, type Job as e, MessageKey as e$, DecisionEvaluationInstanceKey as e0, DecisionEvaluationKey as e1, DecisionRequirementsKey as e2, DecisionInstanceKey as e3, BatchOperationKey as e4, type OperationReference as e5, AuditLogKey as e6, type ProcessDefinitionKeyFilterProperty as e7, type AdvancedProcessDefinitionKeyFilter as e8, type ProcessInstanceKeyFilterProperty as e9, type MappingRuleCreateResult as eA, type MappingRuleUpdateResult as eB, type MappingRuleSearchQueryResult as eC, type MappingRuleResult as eD, type MappingRuleSearchQuerySortRequest as eE, type MappingRuleSearchQueryRequest as eF, type MappingRuleFilter as eG, type MessageCorrelationRequest as eH, type MessageCorrelationResult as eI, type MessagePublicationRequest as eJ, type MessagePublicationResult as eK, type MessageSubscriptionSearchQueryResult as eL, type MessageSubscriptionResult as eM, type MessageSubscriptionSearchQuerySortRequest as eN, type MessageSubscriptionSearchQuery as eO, type MessageSubscriptionFilter as eP, type CorrelatedMessageSubscriptionSearchQueryResult as eQ, type CorrelatedMessageSubscriptionResult as eR, type CorrelatedMessageSubscriptionSearchQuery as eS, type CorrelatedMessageSubscriptionSearchQuerySortRequest as eT, type MessageSubscriptionStateEnum as eU, type CorrelatedMessageSubscriptionFilter as eV, type MessageSubscriptionStateFilterProperty as eW, type AdvancedMessageSubscriptionStateFilter as eX, type AdvancedMessageSubscriptionKeyFilter as eY, type MessageSubscriptionKeyFilterProperty as eZ, MessageSubscriptionKey as e_, type AdvancedProcessInstanceKeyFilter as ea, type ElementInstanceKeyFilterProperty as eb, type AdvancedElementInstanceKeyFilter as ec, type JobKeyFilterProperty as ed, type AdvancedJobKeyFilter as ee, type DecisionDefinitionKeyFilterProperty as ef, type AdvancedDecisionDefinitionKeyFilter as eg, type ScopeKeyFilterProperty as eh, type AdvancedScopeKeyFilter as ei, type VariableKeyFilterProperty as ej, type AdvancedVariableKeyFilter as ek, type DecisionEvaluationInstanceKeyFilterProperty as el, type AdvancedDecisionEvaluationInstanceKeyFilter as em, type AuditLogKeyFilterProperty as en, type AdvancedAuditLogKeyFilter as eo, type FormKeyFilterProperty as ep, type AdvancedFormKeyFilter as eq, type DecisionEvaluationKeyFilterProperty as er, type AdvancedDecisionEvaluationKeyFilter as es, type DecisionRequirementsKeyFilterProperty as et, type AdvancedDecisionRequirementsKeyFilter as eu, type LicenseResponse as ev, type MappingRuleCreateUpdateRequest as ew, type MappingRuleCreateRequest as ex, type MappingRuleUpdateRequest as ey, type MappingRuleCreateUpdateResult as ez, JobActionReceipt as f, type RoleUpdateRequest as f$, type ProblemDetail as f0, type ProcessDefinitionSearchQuerySortRequest as f1, type ProcessDefinitionSearchQuery as f2, type ProcessDefinitionFilter as f3, type ProcessDefinitionSearchQueryResult as f4, type ProcessDefinitionResult as f5, type ProcessDefinitionElementStatisticsQuery as f6, type ProcessDefinitionElementStatisticsQueryResult as f7, type ProcessElementStatisticsResult as f8, type ProcessDefinitionMessageSubscriptionStatisticsQuery as f9, type CancelProcessInstanceRequest as fA, type DeleteProcessInstanceRequest as fB, type ProcessInstanceCallHierarchyEntry as fC, type ProcessInstanceSequenceFlowsQueryResult as fD, type ProcessInstanceSequenceFlowResult as fE, type ProcessInstanceElementStatisticsQueryResult as fF, type ProcessInstanceMigrationInstruction as fG, type MigrateProcessInstanceMappingInstruction as fH, type ProcessInstanceModificationInstruction as fI, type ProcessInstanceModificationActivateInstruction as fJ, type ModifyProcessInstanceVariableInstruction as fK, type ProcessInstanceModificationMoveInstruction as fL, type SourceElementInstruction as fM, type SourceElementIdInstruction as fN, type SourceElementInstanceKeyInstruction as fO, type AncestorScopeInstruction as fP, type DirectAncestorKeyInstruction as fQ, type InferredAncestorKeyInstruction as fR, type UseSourceParentKeyInstruction as fS, type ProcessInstanceModificationTerminateInstruction as fT, type ProcessInstanceModificationTerminateByIdInstruction as fU, type ProcessInstanceModificationTerminateByKeyInstruction as fV, type ProcessInstanceStateEnum as fW, type AdvancedProcessInstanceStateFilter as fX, type ProcessInstanceStateFilterProperty as fY, type RoleCreateRequest as fZ, type RoleCreateResult as f_, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as fa, type ProcessDefinitionMessageSubscriptionStatisticsResult as fb, type ProcessDefinitionInstanceStatisticsQuery as fc, type ProcessDefinitionInstanceStatisticsQueryResult as fd, type ProcessDefinitionInstanceStatisticsResult as fe, type ProcessDefinitionInstanceStatisticsQuerySortRequest as ff, type ProcessDefinitionInstanceVersionStatisticsQuery as fg, type ProcessDefinitionInstanceVersionStatisticsFilter as fh, type ProcessDefinitionInstanceVersionStatisticsQueryResult as fi, type ProcessDefinitionInstanceVersionStatisticsResult as fj, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as fk, type ProcessInstanceCreationInstruction as fl, type ProcessInstanceCreationInstructionById as fm, type ProcessInstanceCreationInstructionByKey as fn, type ProcessInstanceCreationStartInstruction as fo, type ProcessInstanceCreationRuntimeInstruction as fp, type ProcessInstanceCreationTerminateInstruction as fq, type CreateProcessInstanceResult as fr, type ProcessInstanceSearchQuerySortRequest as fs, type ProcessInstanceSearchQuery as ft, type BaseProcessInstanceFilterFields as fu, type ProcessDefinitionStatisticsFilter as fv, type ProcessInstanceFilterFields as fw, type ProcessInstanceFilter as fx, type ProcessInstanceSearchQueryResult as fy, type ProcessInstanceResult as fz, createCamundaFpClient as g, type UserTaskUpdateRequest as g$, type RoleUpdateResult as g0, type RoleResult as g1, type RoleSearchQuerySortRequest as g2, type RoleSearchQueryRequest as g3, type RoleFilter as g4, type RoleSearchQueryResult as g5, type RoleUserResult as g6, type RoleUserSearchResult as g7, type RoleUserSearchQueryRequest as g8, type RoleUserSearchQuerySortRequest as g9, type TenantUpdateResult as gA, type TenantResult as gB, type TenantSearchQuerySortRequest as gC, type TenantSearchQueryRequest as gD, type TenantFilter as gE, type TenantSearchQueryResult as gF, type TenantUserResult as gG, type TenantUserSearchResult as gH, type TenantUserSearchQueryRequest as gI, type TenantUserSearchQuerySortRequest as gJ, type TenantClientResult as gK, type TenantClientSearchResult as gL, type TenantClientSearchQueryRequest as gM, type TenantClientSearchQuerySortRequest as gN, type TenantGroupResult as gO, type TenantGroupSearchResult as gP, type TenantGroupSearchQueryRequest as gQ, type TenantRoleSearchResult as gR, type TenantMappingRuleSearchResult as gS, type TenantGroupSearchQuerySortRequest as gT, type UserTaskSearchQuerySortRequest as gU, type UserTaskSearchQuery as gV, type UserTaskFilter as gW, type UserTaskSearchQueryResult as gX, type UserTaskResult as gY, type UserTaskCompletionRequest as gZ, type UserTaskAssignmentRequest as g_, type RoleClientResult as ga, type RoleClientSearchResult as gb, type RoleClientSearchQueryRequest as gc, type RoleClientSearchQuerySortRequest as gd, type RoleGroupResult as ge, type RoleGroupSearchResult as gf, type RoleGroupSearchQueryRequest as gg, type RoleMappingRuleSearchResult as gh, type RoleGroupSearchQuerySortRequest as gi, type SearchQueryRequest as gj, type SearchQueryPageRequest as gk, type LimitPagination as gl, type OffsetPagination as gm, type CursorForwardPagination as gn, type CursorBackwardPagination as go, type SearchQueryResponse as gp, type SortOrderEnum as gq, type SearchQueryPageResponse as gr, type SignalBroadcastRequest as gs, type SignalBroadcastResult as gt, SignalKey as gu, type UsageMetricsResponse as gv, type UsageMetricsResponseItem as gw, type TenantCreateRequest as gx, type TenantCreateResult as gy, type TenantUpdateRequest as gz, type CamundaFpClient as h, type UserTaskStateExactMatch as h$, type Changeset as h0, type UserTaskVariableSearchQuerySortRequest as h1, type UserTaskVariableSearchQueryRequest as h2, type UserTaskAuditLogSearchQueryRequest as h3, type UserTaskStateEnum as h4, type UserTaskVariableFilter as h5, type UserTaskStateFilterProperty as h6, type AdvancedUserTaskStateFilter as h7, type UserTaskAuditLogFilter as h8, type UserRequest as h9, type ClusterVariableScopeExactMatch as hA, type DecisionInstanceStateExactMatch as hB, type DeploymentKeyExactMatch as hC, type ResourceKeyExactMatch as hD, type ElementInstanceStateExactMatch as hE, type GlobalListenerSourceExactMatch as hF, type GlobalTaskListenerEventTypeExactMatch as hG, type IncidentErrorTypeExactMatch as hH, type IncidentStateExactMatch as hI, type JobKindExactMatch as hJ, type JobListenerEventTypeExactMatch as hK, type JobStateExactMatch as hL, type ProcessDefinitionKeyExactMatch as hM, type ProcessInstanceKeyExactMatch as hN, type ElementInstanceKeyExactMatch as hO, type JobKeyExactMatch as hP, type DecisionDefinitionKeyExactMatch as hQ, type ScopeKeyExactMatch as hR, type VariableKeyExactMatch as hS, type DecisionEvaluationInstanceKeyExactMatch as hT, type AuditLogKeyExactMatch as hU, type FormKeyExactMatch as hV, type DecisionEvaluationKeyExactMatch as hW, type DecisionRequirementsKeyExactMatch as hX, type MessageSubscriptionStateExactMatch as hY, type MessageSubscriptionKeyExactMatch as hZ, type ProcessInstanceStateExactMatch as h_, type UserCreateResult as ha, type UserUpdateRequest as hb, type UserUpdateResult as hc, type UserResult as hd, type UserSearchQuerySortRequest as he, type UserSearchQueryRequest as hf, type UserFilter as hg, type UserSearchResult as hh, type VariableSearchQuerySortRequest as hi, type VariableSearchQuery as hj, type VariableFilter as hk, type VariableSearchQueryResult as hl, type VariableSearchResult as hm, type VariableResult as hn, type VariableResultBase as ho, type VariableValueFilterProperty as hp, type SetVariableRequest as hq, type AuditLogEntityKeyExactMatch as hr, type EntityTypeExactMatch as hs, type OperationTypeExactMatch as ht, type CategoryExactMatch as hu, type AuditLogResultExactMatch as hv, type AuditLogActorTypeExactMatch as hw, type BatchOperationTypeExactMatch as hx, type BatchOperationStateExactMatch as hy, type BatchOperationItemStateExactMatch as hz, isLeft as i, type ResumeBatchOperationErrors as i$, type SearchAuditLogsData as i0, type SearchAuditLogsErrors as i1, type SearchAuditLogsError as i2, type SearchAuditLogsResponses as i3, type SearchAuditLogsResponse as i4, type GetAuditLogData as i5, type GetAuditLogErrors as i6, type GetAuditLogError as i7, type GetAuditLogResponses as i8, type GetAuditLogResponse as i9, type GetAuthorizationResponse as iA, type UpdateAuthorizationData as iB, type UpdateAuthorizationErrors as iC, type UpdateAuthorizationError as iD, type UpdateAuthorizationResponses as iE, type UpdateAuthorizationResponse as iF, type SearchBatchOperationItemsData as iG, type SearchBatchOperationItemsErrors as iH, type SearchBatchOperationItemsError as iI, type SearchBatchOperationItemsResponses as iJ, type SearchBatchOperationItemsResponse as iK, type SearchBatchOperationsData as iL, type SearchBatchOperationsErrors as iM, type SearchBatchOperationsError as iN, type SearchBatchOperationsResponses as iO, type SearchBatchOperationsResponse as iP, type GetBatchOperationData as iQ, type GetBatchOperationErrors as iR, type GetBatchOperationError as iS, type GetBatchOperationResponses as iT, type GetBatchOperationResponse as iU, type CancelBatchOperationData as iV, type CancelBatchOperationErrors as iW, type CancelBatchOperationError as iX, type CancelBatchOperationResponses as iY, type CancelBatchOperationResponse as iZ, type ResumeBatchOperationData as i_, type GetAuthenticationData as ia, type GetAuthenticationErrors as ib, type GetAuthenticationError as ic, type GetAuthenticationResponses as id, type GetAuthenticationResponse as ie, type CreateAuthorizationData as ig, type CreateAuthorizationErrors as ih, type CreateAuthorizationError as ii, type CreateAuthorizationResponses as ij, type CreateAuthorizationResponse as ik, type SearchAuthorizationsData as il, type SearchAuthorizationsErrors as im, type SearchAuthorizationsError as io, type SearchAuthorizationsResponses as ip, type SearchAuthorizationsResponse as iq, type DeleteAuthorizationData as ir, type DeleteAuthorizationErrors as is, type DeleteAuthorizationError as it, type DeleteAuthorizationResponses as iu, type DeleteAuthorizationResponse as iv, type GetAuthorizationData as iw, type GetAuthorizationErrors as ix, type GetAuthorizationError as iy, type GetAuthorizationResponses as iz, isRight as j, type EvaluateConditionalsData as j$, type ResumeBatchOperationError as j0, type ResumeBatchOperationResponses as j1, type ResumeBatchOperationResponse as j2, type SuspendBatchOperationData as j3, type SuspendBatchOperationErrors as j4, type SuspendBatchOperationError as j5, type SuspendBatchOperationResponses as j6, type SuspendBatchOperationResponse as j7, type PinClockData as j8, type PinClockErrors as j9, type UpdateGlobalClusterVariableResponses as jA, type UpdateGlobalClusterVariableResponse as jB, type SearchClusterVariablesData as jC, type SearchClusterVariablesErrors as jD, type SearchClusterVariablesError as jE, type SearchClusterVariablesResponses as jF, type SearchClusterVariablesResponse as jG, type CreateTenantClusterVariableData as jH, type CreateTenantClusterVariableErrors as jI, type CreateTenantClusterVariableError as jJ, type CreateTenantClusterVariableResponses as jK, type CreateTenantClusterVariableResponse as jL, type DeleteTenantClusterVariableData as jM, type DeleteTenantClusterVariableErrors as jN, type DeleteTenantClusterVariableError as jO, type DeleteTenantClusterVariableResponses as jP, type DeleteTenantClusterVariableResponse as jQ, type GetTenantClusterVariableData as jR, type GetTenantClusterVariableErrors as jS, type GetTenantClusterVariableError as jT, type GetTenantClusterVariableResponses as jU, type GetTenantClusterVariableResponse as jV, type UpdateTenantClusterVariableData as jW, type UpdateTenantClusterVariableErrors as jX, type UpdateTenantClusterVariableError as jY, type UpdateTenantClusterVariableResponses as jZ, type UpdateTenantClusterVariableResponse as j_, type PinClockError as ja, type PinClockResponses as jb, type PinClockResponse as jc, type ResetClockData as jd, type ResetClockErrors as je, type ResetClockError as jf, type ResetClockResponses as jg, type ResetClockResponse as jh, type CreateGlobalClusterVariableData as ji, type CreateGlobalClusterVariableErrors as jj, type CreateGlobalClusterVariableError as jk, type CreateGlobalClusterVariableResponses as jl, type CreateGlobalClusterVariableResponse as jm, type DeleteGlobalClusterVariableData as jn, type DeleteGlobalClusterVariableErrors as jo, type DeleteGlobalClusterVariableError as jp, type DeleteGlobalClusterVariableResponses as jq, type DeleteGlobalClusterVariableResponse as jr, type GetGlobalClusterVariableData as js, type GetGlobalClusterVariableErrors as jt, type GetGlobalClusterVariableError as ju, type GetGlobalClusterVariableResponses as jv, type GetGlobalClusterVariableResponse as jw, type UpdateGlobalClusterVariableData as jx, type UpdateGlobalClusterVariableErrors as jy, type UpdateGlobalClusterVariableError as jz, CamundaValidationError as k, type GetDecisionRequirementsXmlResponse as k$, type EvaluateConditionalsErrors as k0, type EvaluateConditionalsError as k1, type EvaluateConditionalsResponses as k2, type EvaluateConditionalsResponse as k3, type SearchCorrelatedMessageSubscriptionsData as k4, type SearchCorrelatedMessageSubscriptionsErrors as k5, type SearchCorrelatedMessageSubscriptionsError as k6, type SearchCorrelatedMessageSubscriptionsResponses as k7, type SearchCorrelatedMessageSubscriptionsResponse as k8, type EvaluateDecisionData as k9, type GetDecisionInstanceError as kA, type GetDecisionInstanceResponses as kB, type GetDecisionInstanceResponse as kC, type DeleteDecisionInstanceData as kD, type DeleteDecisionInstanceErrors as kE, type DeleteDecisionInstanceError as kF, type DeleteDecisionInstanceResponses as kG, type DeleteDecisionInstanceResponse as kH, type DeleteDecisionInstancesBatchOperationData as kI, type DeleteDecisionInstancesBatchOperationErrors as kJ, type DeleteDecisionInstancesBatchOperationError as kK, type DeleteDecisionInstancesBatchOperationResponses as kL, type DeleteDecisionInstancesBatchOperationResponse as kM, type SearchDecisionRequirementsData as kN, type SearchDecisionRequirementsErrors as kO, type SearchDecisionRequirementsError as kP, type SearchDecisionRequirementsResponses as kQ, type SearchDecisionRequirementsResponse as kR, type GetDecisionRequirementsData as kS, type GetDecisionRequirementsErrors as kT, type GetDecisionRequirementsError as kU, type GetDecisionRequirementsResponses as kV, type GetDecisionRequirementsResponse as kW, type GetDecisionRequirementsXmlData as kX, type GetDecisionRequirementsXmlErrors as kY, type GetDecisionRequirementsXmlError as kZ, type GetDecisionRequirementsXmlResponses as k_, type EvaluateDecisionErrors as ka, type EvaluateDecisionError as kb, type EvaluateDecisionResponses as kc, type EvaluateDecisionResponse as kd, type SearchDecisionDefinitionsData as ke, type SearchDecisionDefinitionsErrors as kf, type SearchDecisionDefinitionsError as kg, type SearchDecisionDefinitionsResponses as kh, type SearchDecisionDefinitionsResponse as ki, type GetDecisionDefinitionData as kj, type GetDecisionDefinitionErrors as kk, type GetDecisionDefinitionError as kl, type GetDecisionDefinitionResponses as km, type GetDecisionDefinitionResponse as kn, type GetDecisionDefinitionXmlData as ko, type GetDecisionDefinitionXmlErrors as kp, type GetDecisionDefinitionXmlError as kq, type GetDecisionDefinitionXmlResponses as kr, type GetDecisionDefinitionXmlResponse as ks, type SearchDecisionInstancesData as kt, type SearchDecisionInstancesErrors as ku, type SearchDecisionInstancesError as kv, type SearchDecisionInstancesResponses as kw, type SearchDecisionInstancesResponse as kx, type GetDecisionInstanceData as ky, type GetDecisionInstanceErrors as kz, EventualConsistencyTimeoutError as l, type CreateGlobalTaskListenerResponses as l$, type CreateDeploymentData as l0, type CreateDeploymentErrors as l1, type CreateDeploymentError as l2, type CreateDeploymentResponses as l3, type CreateDeploymentResponse as l4, type CreateDocumentData as l5, type CreateDocumentErrors as l6, type CreateDocumentError as l7, type CreateDocumentResponses as l8, type CreateDocumentResponse as l9, type SearchElementInstancesErrors as lA, type SearchElementInstancesError as lB, type SearchElementInstancesResponses as lC, type SearchElementInstancesResponse as lD, type GetElementInstanceData as lE, type GetElementInstanceErrors as lF, type GetElementInstanceError as lG, type GetElementInstanceResponses as lH, type GetElementInstanceResponse as lI, type SearchElementInstanceIncidentsData as lJ, type SearchElementInstanceIncidentsErrors as lK, type SearchElementInstanceIncidentsError as lL, type SearchElementInstanceIncidentsResponses as lM, type SearchElementInstanceIncidentsResponse as lN, type CreateElementInstanceVariablesData as lO, type CreateElementInstanceVariablesErrors as lP, type CreateElementInstanceVariablesError as lQ, type CreateElementInstanceVariablesResponses as lR, type CreateElementInstanceVariablesResponse as lS, type EvaluateExpressionData as lT, type EvaluateExpressionErrors as lU, type EvaluateExpressionError as lV, type EvaluateExpressionResponses as lW, type EvaluateExpressionResponse as lX, type CreateGlobalTaskListenerData as lY, type CreateGlobalTaskListenerErrors as lZ, type CreateGlobalTaskListenerError as l_, type CreateDocumentsData as la, type CreateDocumentsErrors as lb, type CreateDocumentsError as lc, type CreateDocumentsResponses as ld, type CreateDocumentsResponse as le, type DeleteDocumentData as lf, type DeleteDocumentErrors as lg, type DeleteDocumentError as lh, type DeleteDocumentResponses as li, type DeleteDocumentResponse as lj, type GetDocumentData as lk, type GetDocumentErrors as ll, type GetDocumentError as lm, type GetDocumentResponses as ln, type GetDocumentResponse as lo, type CreateDocumentLinkData as lp, type CreateDocumentLinkErrors as lq, type CreateDocumentLinkError as lr, type CreateDocumentLinkResponses as ls, type CreateDocumentLinkResponse as lt, type ActivateAdHocSubProcessActivitiesData as lu, type ActivateAdHocSubProcessActivitiesErrors as lv, type ActivateAdHocSubProcessActivitiesError as lw, type ActivateAdHocSubProcessActivitiesResponses as lx, type ActivateAdHocSubProcessActivitiesResponse as ly, type SearchElementInstancesData as lz, type EnrichedActivatedJob as m, type SearchMappingRulesForGroupError as m$, type CreateGlobalTaskListenerResponse as m0, type DeleteGlobalTaskListenerData as m1, type DeleteGlobalTaskListenerErrors as m2, type DeleteGlobalTaskListenerError as m3, type DeleteGlobalTaskListenerResponses as m4, type DeleteGlobalTaskListenerResponse as m5, type GetGlobalTaskListenerData as m6, type GetGlobalTaskListenerErrors as m7, type GetGlobalTaskListenerError as m8, type GetGlobalTaskListenerResponses as m9, type GetGroupData as mA, type GetGroupErrors as mB, type GetGroupError as mC, type GetGroupResponses as mD, type GetGroupResponse as mE, type UpdateGroupData as mF, type UpdateGroupErrors as mG, type UpdateGroupError as mH, type UpdateGroupResponses as mI, type UpdateGroupResponse as mJ, type SearchClientsForGroupData as mK, type SearchClientsForGroupErrors as mL, type SearchClientsForGroupError as mM, type SearchClientsForGroupResponses as mN, type SearchClientsForGroupResponse as mO, type UnassignClientFromGroupData as mP, type UnassignClientFromGroupErrors as mQ, type UnassignClientFromGroupError as mR, type UnassignClientFromGroupResponses as mS, type UnassignClientFromGroupResponse as mT, type AssignClientToGroupData as mU, type AssignClientToGroupErrors as mV, type AssignClientToGroupError as mW, type AssignClientToGroupResponses as mX, type AssignClientToGroupResponse as mY, type SearchMappingRulesForGroupData as mZ, type SearchMappingRulesForGroupErrors as m_, type GetGlobalTaskListenerResponse as ma, type UpdateGlobalTaskListenerData as mb, type UpdateGlobalTaskListenerErrors as mc, type UpdateGlobalTaskListenerError as md, type UpdateGlobalTaskListenerResponses as me, type UpdateGlobalTaskListenerResponse as mf, type SearchGlobalTaskListenersData as mg, type SearchGlobalTaskListenersErrors as mh, type SearchGlobalTaskListenersError as mi, type SearchGlobalTaskListenersResponses as mj, type SearchGlobalTaskListenersResponse as mk, type CreateGroupData as ml, type CreateGroupErrors as mm, type CreateGroupError as mn, type CreateGroupResponses as mo, type CreateGroupResponse as mp, type SearchGroupsData as mq, type SearchGroupsErrors as mr, type SearchGroupsError as ms, type SearchGroupsResponses as mt, type SearchGroupsResponse as mu, type DeleteGroupData as mv, type DeleteGroupErrors as mw, type DeleteGroupError as mx, type DeleteGroupResponses as my, type DeleteGroupResponse as mz, type CamundaConfig as n, type SearchJobsErrors as n$, type SearchMappingRulesForGroupResponses as n0, type SearchMappingRulesForGroupResponse as n1, type UnassignMappingRuleFromGroupData as n2, type UnassignMappingRuleFromGroupErrors as n3, type UnassignMappingRuleFromGroupError as n4, type UnassignMappingRuleFromGroupResponses as n5, type UnassignMappingRuleFromGroupResponse as n6, type AssignMappingRuleToGroupData as n7, type AssignMappingRuleToGroupErrors as n8, type AssignMappingRuleToGroupError as n9, type SearchIncidentsResponse as nA, type GetIncidentData as nB, type GetIncidentErrors as nC, type GetIncidentError as nD, type GetIncidentResponses as nE, type GetIncidentResponse as nF, type ResolveIncidentData as nG, type ResolveIncidentErrors as nH, type ResolveIncidentError as nI, type ResolveIncidentResponses as nJ, type ResolveIncidentResponse as nK, type GetProcessInstanceStatisticsByDefinitionData as nL, type GetProcessInstanceStatisticsByDefinitionErrors as nM, type GetProcessInstanceStatisticsByDefinitionError as nN, type GetProcessInstanceStatisticsByDefinitionResponses as nO, type GetProcessInstanceStatisticsByDefinitionResponse as nP, type GetProcessInstanceStatisticsByErrorData as nQ, type GetProcessInstanceStatisticsByErrorErrors as nR, type GetProcessInstanceStatisticsByErrorError as nS, type GetProcessInstanceStatisticsByErrorResponses as nT, type GetProcessInstanceStatisticsByErrorResponse as nU, type ActivateJobsData as nV, type ActivateJobsErrors as nW, type ActivateJobsError as nX, type ActivateJobsResponses as nY, type ActivateJobsResponse as nZ, type SearchJobsData as n_, type AssignMappingRuleToGroupResponses as na, type AssignMappingRuleToGroupResponse as nb, type SearchRolesForGroupData as nc, type SearchRolesForGroupErrors as nd, type SearchRolesForGroupError as ne, type SearchRolesForGroupResponses as nf, type SearchRolesForGroupResponse as ng, type SearchUsersForGroupData as nh, type SearchUsersForGroupErrors as ni, type SearchUsersForGroupError as nj, type SearchUsersForGroupResponses as nk, type SearchUsersForGroupResponse as nl, type UnassignUserFromGroupData as nm, type UnassignUserFromGroupErrors as nn, type UnassignUserFromGroupError as no, type UnassignUserFromGroupResponses as np, type UnassignUserFromGroupResponse as nq, type AssignUserToGroupData as nr, type AssignUserToGroupErrors as ns, type AssignUserToGroupError as nt, type AssignUserToGroupResponses as nu, type AssignUserToGroupResponse as nv, type SearchIncidentsData as nw, type SearchIncidentsErrors as nx, type SearchIncidentsError as ny, type SearchIncidentsResponses as nz, type CamundaKey as o, type GetMappingRuleData as o$, type SearchJobsError as o0, type SearchJobsResponses as o1, type SearchJobsResponse as o2, type UpdateJobData as o3, type UpdateJobErrors as o4, type UpdateJobError as o5, type UpdateJobResponses as o6, type UpdateJobResponse as o7, type CompleteJobData as o8, type CompleteJobErrors as o9, type GetJobWorkerStatisticsResponses as oA, type GetJobWorkerStatisticsResponse as oB, type GetJobTimeSeriesStatisticsData as oC, type GetJobTimeSeriesStatisticsErrors as oD, type GetJobTimeSeriesStatisticsError as oE, type GetJobTimeSeriesStatisticsResponses as oF, type GetJobTimeSeriesStatisticsResponse as oG, type GetLicenseData as oH, type GetLicenseErrors as oI, type GetLicenseError as oJ, type GetLicenseResponses as oK, type GetLicenseResponse as oL, type CreateMappingRuleData as oM, type CreateMappingRuleErrors as oN, type CreateMappingRuleError as oO, type CreateMappingRuleResponses as oP, type CreateMappingRuleResponse as oQ, type SearchMappingRuleData as oR, type SearchMappingRuleErrors as oS, type SearchMappingRuleError as oT, type SearchMappingRuleResponses as oU, type SearchMappingRuleResponse as oV, type DeleteMappingRuleData as oW, type DeleteMappingRuleErrors as oX, type DeleteMappingRuleError as oY, type DeleteMappingRuleResponses as oZ, type DeleteMappingRuleResponse as o_, type CompleteJobError as oa, type CompleteJobResponses as ob, type CompleteJobResponse as oc, type ThrowJobErrorData as od, type ThrowJobErrorErrors as oe, type ThrowJobErrorError as of, type ThrowJobErrorResponses as og, type ThrowJobErrorResponse as oh, type FailJobData as oi, type FailJobErrors as oj, type FailJobError as ok, type FailJobResponses as ol, type FailJobResponse as om, type GetGlobalJobStatisticsData as on, type GetGlobalJobStatisticsErrors as oo, type GetGlobalJobStatisticsError as op, type GetGlobalJobStatisticsResponses as oq, type GetGlobalJobStatisticsResponse as or, type GetJobTypeStatisticsData as os, type GetJobTypeStatisticsErrors as ot, type GetJobTypeStatisticsError as ou, type GetJobTypeStatisticsResponses as ov, type GetJobTypeStatisticsResponse as ow, type GetJobWorkerStatisticsData as ox, type GetJobWorkerStatisticsErrors as oy, type GetJobWorkerStatisticsError as oz, type ClientOptions as p, type GetProcessDefinitionInstanceVersionStatisticsResponse as p$, type GetMappingRuleErrors as p0, type GetMappingRuleError as p1, type GetMappingRuleResponses as p2, type GetMappingRuleResponse as p3, type UpdateMappingRuleData as p4, type UpdateMappingRuleErrors as p5, type UpdateMappingRuleError as p6, type UpdateMappingRuleResponses as p7, type UpdateMappingRuleResponse as p8, type SearchMessageSubscriptionsData as p9, type GetProcessDefinitionInstanceStatisticsError as pA, type GetProcessDefinitionInstanceStatisticsResponses as pB, type GetProcessDefinitionInstanceStatisticsResponse as pC, type GetProcessDefinitionData as pD, type GetProcessDefinitionErrors as pE, type GetProcessDefinitionError as pF, type GetProcessDefinitionResponses as pG, type GetProcessDefinitionResponse as pH, type GetStartProcessFormData as pI, type GetStartProcessFormErrors as pJ, type GetStartProcessFormError as pK, type GetStartProcessFormResponses as pL, type GetStartProcessFormResponse as pM, type GetProcessDefinitionStatisticsData as pN, type GetProcessDefinitionStatisticsErrors as pO, type GetProcessDefinitionStatisticsError as pP, type GetProcessDefinitionStatisticsResponses as pQ, type GetProcessDefinitionStatisticsResponse as pR, type GetProcessDefinitionXmlData as pS, type GetProcessDefinitionXmlErrors as pT, type GetProcessDefinitionXmlError as pU, type GetProcessDefinitionXmlResponses as pV, type GetProcessDefinitionXmlResponse as pW, type GetProcessDefinitionInstanceVersionStatisticsData as pX, type GetProcessDefinitionInstanceVersionStatisticsErrors as pY, type GetProcessDefinitionInstanceVersionStatisticsError as pZ, type GetProcessDefinitionInstanceVersionStatisticsResponses as p_, type SearchMessageSubscriptionsErrors as pa, type SearchMessageSubscriptionsError as pb, type SearchMessageSubscriptionsResponses as pc, type SearchMessageSubscriptionsResponse as pd, type CorrelateMessageData as pe, type CorrelateMessageErrors as pf, type CorrelateMessageError as pg, type CorrelateMessageResponses as ph, type CorrelateMessageResponse as pi, type PublishMessageData as pj, type PublishMessageErrors as pk, type PublishMessageError as pl, type PublishMessageResponses as pm, type PublishMessageResponse as pn, type SearchProcessDefinitionsData as po, type SearchProcessDefinitionsErrors as pp, type SearchProcessDefinitionsError as pq, type SearchProcessDefinitionsResponses as pr, type SearchProcessDefinitionsResponse as ps, type GetProcessDefinitionMessageSubscriptionStatisticsData as pt, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as pu, type GetProcessDefinitionMessageSubscriptionStatisticsError as pv, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as pw, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as px, type GetProcessDefinitionInstanceStatisticsData as py, type GetProcessDefinitionInstanceStatisticsErrors as pz, type AuditLogResult as q, type SearchProcessInstanceIncidentsResponses as q$, type CreateProcessInstanceData as q0, type CreateProcessInstanceErrors as q1, type CreateProcessInstanceError as q2, type CreateProcessInstanceResponses as q3, type CreateProcessInstanceResponse as q4, type CancelProcessInstancesBatchOperationData as q5, type CancelProcessInstancesBatchOperationErrors as q6, type CancelProcessInstancesBatchOperationError as q7, type CancelProcessInstancesBatchOperationResponses as q8, type CancelProcessInstancesBatchOperationResponse as q9, type GetProcessInstanceErrors as qA, type GetProcessInstanceError as qB, type GetProcessInstanceResponses as qC, type GetProcessInstanceResponse as qD, type GetProcessInstanceCallHierarchyData as qE, type GetProcessInstanceCallHierarchyErrors as qF, type GetProcessInstanceCallHierarchyError as qG, type GetProcessInstanceCallHierarchyResponses as qH, type GetProcessInstanceCallHierarchyResponse as qI, type CancelProcessInstanceData as qJ, type CancelProcessInstanceErrors as qK, type CancelProcessInstanceError as qL, type CancelProcessInstanceResponses as qM, type CancelProcessInstanceResponse as qN, type DeleteProcessInstanceData as qO, type DeleteProcessInstanceErrors as qP, type DeleteProcessInstanceError as qQ, type DeleteProcessInstanceResponses as qR, type DeleteProcessInstanceResponse as qS, type ResolveProcessInstanceIncidentsData as qT, type ResolveProcessInstanceIncidentsErrors as qU, type ResolveProcessInstanceIncidentsError as qV, type ResolveProcessInstanceIncidentsResponses as qW, type ResolveProcessInstanceIncidentsResponse as qX, type SearchProcessInstanceIncidentsData as qY, type SearchProcessInstanceIncidentsErrors as qZ, type SearchProcessInstanceIncidentsError as q_, type DeleteProcessInstancesBatchOperationData as qa, type DeleteProcessInstancesBatchOperationErrors as qb, type DeleteProcessInstancesBatchOperationError as qc, type DeleteProcessInstancesBatchOperationResponses as qd, type DeleteProcessInstancesBatchOperationResponse as qe, type ResolveIncidentsBatchOperationData as qf, type ResolveIncidentsBatchOperationErrors as qg, type ResolveIncidentsBatchOperationError as qh, type ResolveIncidentsBatchOperationResponses as qi, type ResolveIncidentsBatchOperationResponse as qj, type MigrateProcessInstancesBatchOperationData as qk, type MigrateProcessInstancesBatchOperationErrors as ql, type MigrateProcessInstancesBatchOperationError as qm, type MigrateProcessInstancesBatchOperationResponses as qn, type MigrateProcessInstancesBatchOperationResponse as qo, type ModifyProcessInstancesBatchOperationData as qp, type ModifyProcessInstancesBatchOperationErrors as qq, type ModifyProcessInstancesBatchOperationError as qr, type ModifyProcessInstancesBatchOperationResponses as qs, type ModifyProcessInstancesBatchOperationResponse as qt, type SearchProcessInstancesData as qu, type SearchProcessInstancesErrors as qv, type SearchProcessInstancesError as qw, type SearchProcessInstancesResponses as qx, type SearchProcessInstancesResponse as qy, type GetProcessInstanceData as qz, type AuditLogSearchQuerySortRequest as r, type SearchClientsForRoleError as r$, type SearchProcessInstanceIncidentsResponse as r0, type MigrateProcessInstanceData as r1, type MigrateProcessInstanceErrors as r2, type MigrateProcessInstanceError as r3, type MigrateProcessInstanceResponses as r4, type MigrateProcessInstanceResponse as r5, type ModifyProcessInstanceData as r6, type ModifyProcessInstanceErrors as r7, type ModifyProcessInstanceError as r8, type ModifyProcessInstanceResponses as r9, type CreateRoleData as rA, type CreateRoleErrors as rB, type CreateRoleError as rC, type CreateRoleResponses as rD, type CreateRoleResponse as rE, type SearchRolesData as rF, type SearchRolesErrors as rG, type SearchRolesError as rH, type SearchRolesResponses as rI, type SearchRolesResponse as rJ, type DeleteRoleData as rK, type DeleteRoleErrors as rL, type DeleteRoleError as rM, type DeleteRoleResponses as rN, type DeleteRoleResponse as rO, type GetRoleData as rP, type GetRoleErrors as rQ, type GetRoleError as rR, type GetRoleResponses as rS, type GetRoleResponse as rT, type UpdateRoleData as rU, type UpdateRoleErrors as rV, type UpdateRoleError as rW, type UpdateRoleResponses as rX, type UpdateRoleResponse as rY, type SearchClientsForRoleData as rZ, type SearchClientsForRoleErrors as r_, type ModifyProcessInstanceResponse as ra, type GetProcessInstanceSequenceFlowsData as rb, type GetProcessInstanceSequenceFlowsErrors as rc, type GetProcessInstanceSequenceFlowsError as rd, type GetProcessInstanceSequenceFlowsResponses as re, type GetProcessInstanceSequenceFlowsResponse as rf, type GetProcessInstanceStatisticsData as rg, type GetProcessInstanceStatisticsErrors as rh, type GetProcessInstanceStatisticsError as ri, type GetProcessInstanceStatisticsResponses as rj, type GetProcessInstanceStatisticsResponse as rk, type GetResourceData as rl, type GetResourceErrors as rm, type GetResourceError as rn, type GetResourceResponses as ro, type GetResourceResponse as rp, type GetResourceContentData as rq, type GetResourceContentErrors as rr, type GetResourceContentError as rs, type GetResourceContentResponses as rt, type GetResourceContentResponse as ru, type DeleteResourceData as rv, type DeleteResourceErrors as rw, type DeleteResourceError as rx, type DeleteResourceResponses as ry, type DeleteResourceResponse2 as rz, type AuditLogSearchQueryRequest as s, type BroadcastSignalErrors as s$, type SearchClientsForRoleResponses as s0, type SearchClientsForRoleResponse as s1, type UnassignRoleFromClientData as s2, type UnassignRoleFromClientErrors as s3, type UnassignRoleFromClientError as s4, type UnassignRoleFromClientResponses as s5, type UnassignRoleFromClientResponse as s6, type AssignRoleToClientData as s7, type AssignRoleToClientErrors as s8, type AssignRoleToClientError as s9, type UnassignRoleFromMappingRuleResponse as sA, type AssignRoleToMappingRuleData as sB, type AssignRoleToMappingRuleErrors as sC, type AssignRoleToMappingRuleError as sD, type AssignRoleToMappingRuleResponses as sE, type AssignRoleToMappingRuleResponse as sF, type SearchUsersForRoleData as sG, type SearchUsersForRoleErrors as sH, type SearchUsersForRoleError as sI, type SearchUsersForRoleResponses as sJ, type SearchUsersForRoleResponse as sK, type UnassignRoleFromUserData as sL, type UnassignRoleFromUserErrors as sM, type UnassignRoleFromUserError as sN, type UnassignRoleFromUserResponses as sO, type UnassignRoleFromUserResponse as sP, type AssignRoleToUserData as sQ, type AssignRoleToUserErrors as sR, type AssignRoleToUserError as sS, type AssignRoleToUserResponses as sT, type AssignRoleToUserResponse as sU, type CreateAdminUserData as sV, type CreateAdminUserErrors as sW, type CreateAdminUserError as sX, type CreateAdminUserResponses as sY, type CreateAdminUserResponse as sZ, type BroadcastSignalData as s_, type AssignRoleToClientResponses as sa, type AssignRoleToClientResponse as sb, type SearchGroupsForRoleData as sc, type SearchGroupsForRoleErrors as sd, type SearchGroupsForRoleError as se, type SearchGroupsForRoleResponses as sf, type SearchGroupsForRoleResponse as sg, type UnassignRoleFromGroupData as sh, type UnassignRoleFromGroupErrors as si, type UnassignRoleFromGroupError as sj, type UnassignRoleFromGroupResponses as sk, type UnassignRoleFromGroupResponse as sl, type AssignRoleToGroupData as sm, type AssignRoleToGroupErrors as sn, type AssignRoleToGroupError as so, type AssignRoleToGroupResponses as sp, type AssignRoleToGroupResponse as sq, type SearchMappingRulesForRoleData as sr, type SearchMappingRulesForRoleErrors as ss, type SearchMappingRulesForRoleError as st, type SearchMappingRulesForRoleResponses as su, type SearchMappingRulesForRoleResponse as sv, type UnassignRoleFromMappingRuleData as sw, type UnassignRoleFromMappingRuleErrors as sx, type UnassignRoleFromMappingRuleError as sy, type UnassignRoleFromMappingRuleResponses as sz, type AuditLogFilter as t, type SearchMappingRulesForTenantData as t$, type BroadcastSignalError as t0, type BroadcastSignalResponses as t1, type BroadcastSignalResponse as t2, type GetStatusData as t3, type GetStatusErrors as t4, type GetStatusResponses as t5, type GetStatusResponse as t6, type GetUsageMetricsData as t7, type GetUsageMetricsErrors as t8, type GetUsageMetricsError as t9, type UpdateTenantResponse as tA, type SearchClientsForTenantData as tB, type SearchClientsForTenantResponses as tC, type SearchClientsForTenantResponse as tD, type UnassignClientFromTenantData as tE, type UnassignClientFromTenantErrors as tF, type UnassignClientFromTenantError as tG, type UnassignClientFromTenantResponses as tH, type UnassignClientFromTenantResponse as tI, type AssignClientToTenantData as tJ, type AssignClientToTenantErrors as tK, type AssignClientToTenantError as tL, type AssignClientToTenantResponses as tM, type AssignClientToTenantResponse as tN, type SearchGroupIdsForTenantData as tO, type SearchGroupIdsForTenantResponses as tP, type SearchGroupIdsForTenantResponse as tQ, type UnassignGroupFromTenantData as tR, type UnassignGroupFromTenantErrors as tS, type UnassignGroupFromTenantError as tT, type UnassignGroupFromTenantResponses as tU, type UnassignGroupFromTenantResponse as tV, type AssignGroupToTenantData as tW, type AssignGroupToTenantErrors as tX, type AssignGroupToTenantError as tY, type AssignGroupToTenantResponses as tZ, type AssignGroupToTenantResponse as t_, type GetUsageMetricsResponses as ta, type GetUsageMetricsResponse as tb, type CreateTenantData as tc, type CreateTenantErrors as td, type CreateTenantError as te, type CreateTenantResponses as tf, type CreateTenantResponse as tg, type SearchTenantsData as th, type SearchTenantsErrors as ti, type SearchTenantsError as tj, type SearchTenantsResponses as tk, type SearchTenantsResponse as tl, type DeleteTenantData as tm, type DeleteTenantErrors as tn, type DeleteTenantError as to, type DeleteTenantResponses as tp, type DeleteTenantResponse as tq, type GetTenantData as tr, type GetTenantErrors as ts, type GetTenantError as tt, type GetTenantResponses as tu, type GetTenantResponse as tv, type UpdateTenantData as tw, type UpdateTenantErrors as tx, type UpdateTenantError as ty, type UpdateTenantResponses as tz, type AuditLogSearchQueryResult as u, type UpdateUserData as u$, type SearchMappingRulesForTenantResponses as u0, type SearchMappingRulesForTenantResponse as u1, type UnassignMappingRuleFromTenantData as u2, type UnassignMappingRuleFromTenantErrors as u3, type UnassignMappingRuleFromTenantError as u4, type UnassignMappingRuleFromTenantResponses as u5, type UnassignMappingRuleFromTenantResponse as u6, type AssignMappingRuleToTenantData as u7, type AssignMappingRuleToTenantErrors as u8, type AssignMappingRuleToTenantError as u9, type AssignUserToTenantResponses as uA, type AssignUserToTenantResponse as uB, type GetTopologyData as uC, type GetTopologyErrors as uD, type GetTopologyError as uE, type GetTopologyResponses as uF, type GetTopologyResponse as uG, type CreateUserData as uH, type CreateUserErrors as uI, type CreateUserError as uJ, type CreateUserResponses as uK, type CreateUserResponse as uL, type SearchUsersData as uM, type SearchUsersErrors as uN, type SearchUsersError as uO, type SearchUsersResponses as uP, type SearchUsersResponse as uQ, type DeleteUserData as uR, type DeleteUserErrors as uS, type DeleteUserError as uT, type DeleteUserResponses as uU, type DeleteUserResponse as uV, type GetUserData as uW, type GetUserErrors as uX, type GetUserError as uY, type GetUserResponses as uZ, type GetUserResponse as u_, type AssignMappingRuleToTenantResponses as ua, type AssignMappingRuleToTenantResponse as ub, type SearchRolesForTenantData as uc, type SearchRolesForTenantResponses as ud, type SearchRolesForTenantResponse as ue, type UnassignRoleFromTenantData as uf, type UnassignRoleFromTenantErrors as ug, type UnassignRoleFromTenantError as uh, type UnassignRoleFromTenantResponses as ui, type UnassignRoleFromTenantResponse as uj, type AssignRoleToTenantData as uk, type AssignRoleToTenantErrors as ul, type AssignRoleToTenantError as um, type AssignRoleToTenantResponses as un, type AssignRoleToTenantResponse as uo, type SearchUsersForTenantData as up, type SearchUsersForTenantResponses as uq, type SearchUsersForTenantResponse as ur, type UnassignUserFromTenantData as us, type UnassignUserFromTenantErrors as ut, type UnassignUserFromTenantError as uu, type UnassignUserFromTenantResponses as uv, type UnassignUserFromTenantResponse as uw, type AssignUserToTenantData as ux, type AssignUserToTenantErrors as uy, type AssignUserToTenantError as uz, AuditLogEntityKey as v, type assignClientToTenantInput as v$, type UpdateUserErrors as v0, type UpdateUserError as v1, type UpdateUserResponses as v2, type UpdateUserResponse as v3, type SearchUserTasksData as v4, type SearchUserTasksErrors as v5, type SearchUserTasksError as v6, type SearchUserTasksResponses as v7, type SearchUserTasksResponse as v8, type GetUserTaskData as v9, type CompleteUserTaskError as vA, type CompleteUserTaskResponses as vB, type CompleteUserTaskResponse as vC, type GetUserTaskFormData as vD, type GetUserTaskFormErrors as vE, type GetUserTaskFormError as vF, type GetUserTaskFormResponses as vG, type GetUserTaskFormResponse as vH, type SearchUserTaskVariablesData as vI, type SearchUserTaskVariablesErrors as vJ, type SearchUserTaskVariablesError as vK, type SearchUserTaskVariablesResponses as vL, type SearchUserTaskVariablesResponse as vM, type SearchVariablesData as vN, type SearchVariablesErrors as vO, type SearchVariablesError as vP, type SearchVariablesResponses as vQ, type SearchVariablesResponse as vR, type GetVariableData as vS, type GetVariableErrors as vT, type GetVariableError as vU, type GetVariableResponses as vV, type GetVariableResponse as vW, assertConstraint as vX, type activateAdHocSubProcessActivitiesInput as vY, type activateJobsInput as vZ, type assignClientToGroupInput as v_, type GetUserTaskErrors as va, type GetUserTaskError as vb, type GetUserTaskResponses as vc, type GetUserTaskResponse as vd, type UpdateUserTaskData as ve, type UpdateUserTaskErrors as vf, type UpdateUserTaskError as vg, type UpdateUserTaskResponses as vh, type UpdateUserTaskResponse as vi, type UnassignUserTaskData as vj, type UnassignUserTaskErrors as vk, type UnassignUserTaskError as vl, type UnassignUserTaskResponses as vm, type UnassignUserTaskResponse as vn, type AssignUserTaskData as vo, type AssignUserTaskErrors as vp, type AssignUserTaskError as vq, type AssignUserTaskResponses as vr, type AssignUserTaskResponse as vs, type SearchUserTaskAuditLogsData as vt, type SearchUserTaskAuditLogsErrors as vu, type SearchUserTaskAuditLogsError as vv, type SearchUserTaskAuditLogsResponses as vw, type SearchUserTaskAuditLogsResponse as vx, type CompleteUserTaskData as vy, type CompleteUserTaskErrors as vz, type AuditLogEntityTypeEnum as w, type getDecisionDefinitionXmlConsistency as w$, type assignGroupToTenantInput as w0, type assignMappingRuleToGroupInput as w1, type assignMappingRuleToTenantInput as w2, type assignRoleToClientInput as w3, type assignRoleToGroupInput as w4, type assignRoleToMappingRuleInput as w5, type assignRoleToTenantInput as w6, type assignRoleToUserInput as w7, type assignUserTaskInput as w8, type assignUserToGroupInput as w9, type deleteDecisionInstancesBatchOperationInput as wA, type deleteDocumentInput as wB, type deleteGlobalClusterVariableInput as wC, type deleteGlobalTaskListenerInput as wD, type deleteGroupInput as wE, type deleteMappingRuleInput as wF, type deleteProcessInstanceInput as wG, type deleteProcessInstancesBatchOperationInput as wH, type deleteResourceInput as wI, type deleteRoleInput as wJ, type deleteTenantInput as wK, type deleteTenantClusterVariableInput as wL, type deleteUserInput as wM, type evaluateConditionalsInput as wN, type evaluateDecisionInput as wO, type evaluateExpressionInput as wP, type failJobInput as wQ, type getAuditLogInput as wR, type getAuditLogConsistency as wS, type getAuthenticationInput as wT, type getAuthorizationInput as wU, type getAuthorizationConsistency as wV, type getBatchOperationInput as wW, type getBatchOperationConsistency as wX, type getDecisionDefinitionInput as wY, type getDecisionDefinitionConsistency as wZ, type getDecisionDefinitionXmlInput as w_, type assignUserToTenantInput as wa, type broadcastSignalInput as wb, type cancelBatchOperationInput as wc, type cancelProcessInstanceInput as wd, type cancelProcessInstancesBatchOperationInput as we, type completeJobInput as wf, type completeUserTaskInput as wg, type correlateMessageInput as wh, type createAdminUserInput as wi, type createAuthorizationInput as wj, type createDeploymentInput as wk, type createDocumentInput as wl, type createDocumentLinkInput as wm, type createDocumentsInput as wn, type createElementInstanceVariablesInput as wo, type createGlobalClusterVariableInput as wp, type createGlobalTaskListenerInput as wq, type createGroupInput as wr, type createMappingRuleInput as ws, type createProcessInstanceInput as wt, type createRoleInput as wu, type createTenantInput as wv, type createTenantClusterVariableInput as ww, type createUserInput as wx, type deleteAuthorizationInput as wy, type deleteDecisionInstanceInput as wz, type AuditLogOperationTypeEnum as x, type getTopologyInput as x$, type getDecisionInstanceInput as x0, type getDecisionInstanceConsistency as x1, type getDecisionRequirementsInput as x2, type getDecisionRequirementsConsistency as x3, type getDecisionRequirementsXmlInput as x4, type getDecisionRequirementsXmlConsistency as x5, type getDocumentInput as x6, type getElementInstanceInput as x7, type getElementInstanceConsistency as x8, type getGlobalClusterVariableInput as x9, type getProcessDefinitionStatisticsInput as xA, type getProcessDefinitionStatisticsConsistency as xB, type getProcessDefinitionXmlInput as xC, type getProcessDefinitionXmlConsistency as xD, type getProcessInstanceInput as xE, type getProcessInstanceConsistency as xF, type getProcessInstanceCallHierarchyInput as xG, type getProcessInstanceCallHierarchyConsistency as xH, type getProcessInstanceSequenceFlowsInput as xI, type getProcessInstanceSequenceFlowsConsistency as xJ, type getProcessInstanceStatisticsInput as xK, type getProcessInstanceStatisticsConsistency as xL, type getProcessInstanceStatisticsByDefinitionInput as xM, type getProcessInstanceStatisticsByDefinitionConsistency as xN, type getProcessInstanceStatisticsByErrorInput as xO, type getProcessInstanceStatisticsByErrorConsistency as xP, type getResourceInput as xQ, type getResourceContentInput as xR, type getRoleInput as xS, type getRoleConsistency as xT, type getStartProcessFormInput as xU, type getStartProcessFormConsistency as xV, type getStatusInput as xW, type getTenantInput as xX, type getTenantConsistency as xY, type getTenantClusterVariableInput as xZ, type getTenantClusterVariableConsistency as x_, type getGlobalClusterVariableConsistency as xa, type getGlobalJobStatisticsInput as xb, type getGlobalJobStatisticsConsistency as xc, type getGlobalTaskListenerInput as xd, type getGlobalTaskListenerConsistency as xe, type getGroupInput as xf, type getGroupConsistency as xg, type getIncidentInput as xh, type getIncidentConsistency as xi, type getJobTimeSeriesStatisticsInput as xj, type getJobTimeSeriesStatisticsConsistency as xk, type getJobTypeStatisticsInput as xl, type getJobTypeStatisticsConsistency as xm, type getJobWorkerStatisticsInput as xn, type getJobWorkerStatisticsConsistency as xo, type getLicenseInput as xp, type getMappingRuleInput as xq, type getMappingRuleConsistency as xr, type getProcessDefinitionInput as xs, type getProcessDefinitionConsistency as xt, type getProcessDefinitionInstanceStatisticsInput as xu, type getProcessDefinitionInstanceStatisticsConsistency as xv, type getProcessDefinitionInstanceVersionStatisticsInput as xw, type getProcessDefinitionInstanceVersionStatisticsConsistency as xx, type getProcessDefinitionMessageSubscriptionStatisticsInput as xy, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as xz, type AuditLogActorTypeEnum as y, type searchMappingRulesForGroupInput as y$, type getUsageMetricsInput as y0, type getUsageMetricsConsistency as y1, type getUserInput as y2, type getUserConsistency as y3, type getUserTaskInput as y4, type getUserTaskConsistency as y5, type getUserTaskFormInput as y6, type getUserTaskFormConsistency as y7, type getVariableInput as y8, type getVariableConsistency as y9, type searchClusterVariablesConsistency as yA, type searchCorrelatedMessageSubscriptionsInput as yB, type searchCorrelatedMessageSubscriptionsConsistency as yC, type searchDecisionDefinitionsInput as yD, type searchDecisionDefinitionsConsistency as yE, type searchDecisionInstancesInput as yF, type searchDecisionInstancesConsistency as yG, type searchDecisionRequirementsInput as yH, type searchDecisionRequirementsConsistency as yI, type searchElementInstanceIncidentsInput as yJ, type searchElementInstanceIncidentsConsistency as yK, type searchElementInstancesInput as yL, type searchElementInstancesConsistency as yM, type searchGlobalTaskListenersInput as yN, type searchGlobalTaskListenersConsistency as yO, type searchGroupIdsForTenantInput as yP, type searchGroupIdsForTenantConsistency as yQ, type searchGroupsInput as yR, type searchGroupsConsistency as yS, type searchGroupsForRoleInput as yT, type searchGroupsForRoleConsistency as yU, type searchIncidentsInput as yV, type searchIncidentsConsistency as yW, type searchJobsInput as yX, type searchJobsConsistency as yY, type searchMappingRuleInput as yZ, type searchMappingRuleConsistency as y_, type migrateProcessInstanceInput as ya, type migrateProcessInstancesBatchOperationInput as yb, type modifyProcessInstanceInput as yc, type modifyProcessInstancesBatchOperationInput as yd, type pinClockInput as ye, type publishMessageInput as yf, type resetClockInput as yg, type resolveIncidentInput as yh, type resolveIncidentsBatchOperationInput as yi, type resolveProcessInstanceIncidentsInput as yj, type resumeBatchOperationInput as yk, type searchAuditLogsInput as yl, type searchAuditLogsConsistency as ym, type searchAuthorizationsInput as yn, type searchAuthorizationsConsistency as yo, type searchBatchOperationItemsInput as yp, type searchBatchOperationItemsConsistency as yq, type searchBatchOperationsInput as yr, type searchBatchOperationsConsistency as ys, type searchClientsForGroupInput as yt, type searchClientsForGroupConsistency as yu, type searchClientsForRoleInput as yv, type searchClientsForRoleConsistency as yw, type searchClientsForTenantInput as yx, type searchClientsForTenantConsistency as yy, type searchClusterVariablesInput as yz, type AuditLogResultEnum as z, type ExtendedDeploymentResult as z$, type searchMappingRulesForGroupConsistency as z0, type searchMappingRulesForRoleInput as z1, type searchMappingRulesForRoleConsistency as z2, type searchMappingRulesForTenantInput as z3, type searchMappingRulesForTenantConsistency as z4, type searchMessageSubscriptionsInput as z5, type searchMessageSubscriptionsConsistency as z6, type searchProcessDefinitionsInput as z7, type searchProcessDefinitionsConsistency as z8, type searchProcessInstanceIncidentsInput as z9, type searchVariablesConsistency as zA, type suspendBatchOperationInput as zB, type throwJobErrorInput as zC, type unassignClientFromGroupInput as zD, type unassignClientFromTenantInput as zE, type unassignGroupFromTenantInput as zF, type unassignMappingRuleFromGroupInput as zG, type unassignMappingRuleFromTenantInput as zH, type unassignRoleFromClientInput as zI, type unassignRoleFromGroupInput as zJ, type unassignRoleFromMappingRuleInput as zK, type unassignRoleFromTenantInput as zL, type unassignRoleFromUserInput as zM, type unassignUserFromGroupInput as zN, type unassignUserFromTenantInput as zO, type unassignUserTaskInput as zP, type updateAuthorizationInput as zQ, type updateGlobalClusterVariableInput as zR, type updateGlobalTaskListenerInput as zS, type updateGroupInput as zT, type updateJobInput as zU, type updateMappingRuleInput as zV, type updateRoleInput as zW, type updateTenantInput as zX, type updateTenantClusterVariableInput as zY, type updateUserInput as zZ, type updateUserTaskInput as z_, type searchProcessInstanceIncidentsConsistency as za, type searchProcessInstancesInput as zb, type searchProcessInstancesConsistency as zc, type searchRolesInput as zd, type searchRolesConsistency as ze, type searchRolesForGroupInput as zf, type searchRolesForGroupConsistency as zg, type searchRolesForTenantInput as zh, type searchRolesForTenantConsistency as zi, type searchTenantsInput as zj, type searchTenantsConsistency as zk, type searchUsersInput as zl, type searchUsersConsistency as zm, type searchUsersForGroupInput as zn, type searchUsersForGroupConsistency as zo, type searchUsersForRoleInput as zp, type searchUsersForRoleConsistency as zq, type searchUsersForTenantInput as zr, type searchUsersForTenantConsistency as zs, type searchUserTaskAuditLogsInput as zt, type searchUserTaskAuditLogsConsistency as zu, type searchUserTasksInput as zv, type searchUserTasksConsistency as zw, type searchUserTaskVariablesInput as zx, type searchUserTaskVariablesConsistency as zy, type searchVariablesInput as zz };
|
|
22046
|
+
export { type AdvancedActorTypeFilter as $, type AuthStrategy as A, type unassignClientFromGroupInput as A0, type unassignClientFromTenantInput as A1, type unassignGroupFromTenantInput as A2, type unassignMappingRuleFromGroupInput as A3, type unassignMappingRuleFromTenantInput as A4, type unassignRoleFromClientInput as A5, type unassignRoleFromGroupInput as A6, type unassignRoleFromMappingRuleInput as A7, type unassignRoleFromTenantInput as A8, type unassignRoleFromUserInput as A9, foldDomainError as AA, classifyDomainError as AB, type TaskEither as AC, type unassignUserFromGroupInput as Aa, type unassignUserFromTenantInput as Ab, type unassignUserTaskInput as Ac, type updateAuthorizationInput as Ad, type updateGlobalClusterVariableInput as Ae, type updateGlobalTaskListenerInput as Af, type updateGroupInput as Ag, type updateJobInput as Ah, type updateMappingRuleInput as Ai, type updateRoleInput as Aj, type updateTenantInput as Ak, type updateTenantClusterVariableInput as Al, type updateUserInput as Am, type updateUserTaskInput as An, type ExtendedDeploymentResult as Ao, CancelError as Ap, type Fpify as Aq, type FnKeys as Ar, type DomainError as As, type DomainErrorTag as At, type HttpError as Au, type Left as Av, type Right as Aw, retryTE as Ax, withTimeoutTE as Ay, eventuallyTE as Az, type BackpressureSeverity as B, type CamundaOptions as C, AuditLogEntityKey as D, type Either as E, type AuditLogEntityTypeEnum as F, type AuditLogOperationTypeEnum as G, type HttpRetryPolicy as H, type AuditLogActorTypeEnum as I, type JobWorkerConfig as J, type AuditLogResultEnum as K, type AuditLogCategoryEnum as L, type AuditLogEntityKeyFilterProperty as M, type AdvancedAuditLogEntityKeyFilter as N, type OperationOptions as O, type EntityTypeFilterProperty as P, type AdvancedEntityTypeFilter as Q, type OperationTypeFilterProperty as R, type SupportLogger as S, type ThreadedJobWorkerConfig as T, type AdvancedOperationTypeFilter as U, type ValidationMode as V, type CategoryFilterProperty as W, type AdvancedCategoryFilter as X, type AuditLogResultFilterProperty as Y, type AdvancedResultFilter as Z, type AuditLogActorTypeFilterProperty as _, CamundaClient as a, StartCursor as a$, type CamundaUserResult as a0, type AuthorizationIdBasedRequest as a1, type AuthorizationPropertyBasedRequest as a2, type AuthorizationRequest as a3, type AuthorizationSearchQuerySortRequest as a4, type AuthorizationSearchQuery as a5, type AuthorizationFilter as a6, type AuthorizationResult as a7, type AuthorizationSearchResult as a8, type AuthorizationCreateResult as a9, type BatchOperationTypeEnum as aA, type BatchOperationTypeFilterProperty as aB, type AdvancedBatchOperationTypeFilter as aC, type BatchOperationStateFilterProperty as aD, type AdvancedBatchOperationStateFilter as aE, type BatchOperationItemStateFilterProperty as aF, type AdvancedBatchOperationItemStateFilter as aG, type ClockPinRequest as aH, type ClusterVariableScopeEnum as aI, type CreateClusterVariableRequest as aJ, type UpdateClusterVariableRequest as aK, type ClusterVariableResult as aL, type ClusterVariableSearchResult as aM, type ClusterVariableResultBase as aN, type ClusterVariableSearchQueryRequest as aO, type ClusterVariableSearchQuerySortRequest as aP, type ClusterVariableSearchQueryFilterRequest as aQ, type ClusterVariableScopeFilterProperty as aR, type AdvancedClusterVariableScopeFilter as aS, type ClusterVariableSearchQueryResult as aT, type TopologyResponse as aU, type BrokerInfo as aV, type Partition as aW, type ConditionalEvaluationInstruction as aX, type EvaluateConditionalResult as aY, ConditionalEvaluationKey as aZ, type ProcessInstanceReference as a_, type PermissionTypeEnum as aa, type ResourceTypeEnum as ab, type OwnerTypeEnum as ac, AuthorizationKey as ad, type BatchOperationCreatedResult as ae, type BatchOperationSearchQuerySortRequest as af, type BatchOperationSearchQuery as ag, type BatchOperationFilter as ah, type BatchOperationSearchQueryResult as ai, type BatchOperationResponse as aj, type BatchOperationError as ak, type BatchOperationItemSearchQuerySortRequest as al, type BatchOperationItemSearchQuery as am, type BatchOperationItemFilter as an, type BatchOperationItemSearchQueryResult as ao, type BatchOperationItemResponse as ap, type DecisionInstanceDeletionBatchOperationRequest as aq, type ProcessInstanceCancellationBatchOperationRequest as ar, type ProcessInstanceIncidentResolutionBatchOperationRequest as as, type ProcessInstanceDeletionBatchOperationRequest as at, type ProcessInstanceMigrationBatchOperationRequest as au, type ProcessInstanceMigrationBatchOperationPlan as av, type ProcessInstanceModificationBatchOperationRequest as aw, type ProcessInstanceModificationMoveBatchOperationInstruction as ax, type BatchOperationItemStateEnum as ay, type BatchOperationStateEnum as az, type CancelablePromise as b, type AdHocSubProcessActivateActivityReference as b$, EndCursor as b0, type DecisionDefinitionSearchQuerySortRequest as b1, type DecisionDefinitionSearchQuery as b2, type DecisionDefinitionFilter as b3, type DecisionDefinitionSearchQueryResult as b4, type DecisionDefinitionResult as b5, type DecisionEvaluationInstruction as b6, type DecisionEvaluationById as b7, type DecisionEvaluationByKey as b8, type EvaluateDecisionResult as b9, type DeploymentResourceResult as bA, type DeleteResourceRequest as bB, type DeleteResourceResponse as bC, type ResourceResult as bD, DeploymentKey as bE, type ResourceKey as bF, type DeploymentKeyFilterProperty as bG, type AdvancedDeploymentKeyFilter as bH, type ResourceKeyFilterProperty as bI, type AdvancedResourceKeyFilter as bJ, type DocumentReference as bK, type DocumentCreationFailureDetail as bL, type DocumentCreationBatchResponse as bM, type DocumentMetadata as bN, type DocumentMetadataResponse as bO, type DocumentLinkRequest as bP, type DocumentLink as bQ, DocumentId as bR, type ElementInstanceSearchQuerySortRequest as bS, type ElementInstanceSearchQuery as bT, type ElementInstanceFilter as bU, type ElementInstanceStateFilterProperty as bV, type AdvancedElementInstanceStateFilter as bW, type ElementInstanceSearchQueryResult as bX, type ElementInstanceResult as bY, type ElementInstanceStateEnum as bZ, type AdHocSubProcessActivateActivitiesInstruction as b_, type EvaluatedDecisionResult as ba, type DecisionInstanceSearchQuerySortRequest as bb, type DecisionInstanceSearchQuery as bc, type DecisionInstanceFilter as bd, type DeleteDecisionInstanceRequest as be, type DecisionInstanceSearchQueryResult as bf, type DecisionInstanceResult as bg, type DecisionInstanceGetQueryResult as bh, type EvaluatedDecisionInputItem as bi, type EvaluatedDecisionOutputItem as bj, type MatchedDecisionRuleItem as bk, type DecisionDefinitionTypeEnum as bl, type DecisionInstanceStateEnum as bm, type AdvancedDecisionInstanceStateFilter as bn, type DecisionInstanceStateFilterProperty as bo, type DecisionRequirementsSearchQuerySortRequest as bp, type DecisionRequirementsSearchQuery as bq, type DecisionRequirementsFilter as br, type DecisionRequirementsSearchQueryResult as bs, type DecisionRequirementsResult as bt, type DeploymentResult as bu, type DeploymentMetadataResult as bv, type DeploymentProcessResult as bw, type DeploymentDecisionResult as bx, type DeploymentDecisionRequirementsResult as by, type DeploymentFormResult as bz, createCamundaClient as c, type IncidentStateFilterProperty as c$, type ExpressionEvaluationRequest as c0, type ExpressionEvaluationResult as c1, type ExpressionEvaluationWarningItem as c2, type LikeFilter as c3, type BasicStringFilter as c4, type AdvancedStringFilter as c5, type BasicStringFilterProperty as c6, type StringFilterProperty as c7, type AdvancedIntegerFilter as c8, type IntegerFilterProperty as c9, type GroupFilter as cA, type GroupSearchQueryResult as cB, type GroupUserResult as cC, type GroupUserSearchResult as cD, type GroupUserSearchQueryRequest as cE, type GroupUserSearchQuerySortRequest as cF, type GroupClientResult as cG, type GroupClientSearchResult as cH, type GroupClientSearchQueryRequest as cI, type GroupMappingRuleSearchResult as cJ, type GroupRoleSearchResult as cK, type GroupClientSearchQuerySortRequest as cL, ProcessDefinitionId as cM, ElementId as cN, FormId as cO, DecisionDefinitionId as cP, GlobalListenerId as cQ, TenantId as cR, Username as cS, Tag as cT, type TagSet as cU, BusinessId as cV, type IncidentSearchQuery as cW, type IncidentFilter as cX, type IncidentErrorTypeFilterProperty as cY, type AdvancedIncidentErrorTypeFilter as cZ, type IncidentErrorTypeEnum as c_, type AdvancedDateTimeFilter as ca, type DateTimeFilterProperty as cb, type FormResult as cc, type GlobalListenerSourceEnum as cd, type GlobalTaskListenerEventTypeEnum as ce, type GlobalListenerBase as cf, type GlobalTaskListenerBase as cg, type GlobalTaskListenerEventTypes as ch, type CreateGlobalTaskListenerRequest as ci, type UpdateGlobalTaskListenerRequest as cj, type GlobalTaskListenerResult as ck, type GlobalTaskListenerSearchQueryRequest as cl, type GlobalTaskListenerSearchQuerySortRequest as cm, type GlobalTaskListenerSearchQueryFilterRequest as cn, type GlobalListenerSourceFilterProperty as co, type AdvancedGlobalListenerSourceFilter as cp, type GlobalTaskListenerEventTypeFilterProperty as cq, type AdvancedGlobalTaskListenerEventTypeFilter as cr, type GlobalTaskListenerSearchQueryResult as cs, type GroupCreateRequest as ct, type GroupCreateResult as cu, type GroupUpdateRequest as cv, type GroupUpdateResult as cw, type GroupResult as cx, type GroupSearchQuerySortRequest as cy, type GroupSearchQueryRequest as cz, JobWorker as d, type LongKey as d$, type AdvancedIncidentStateFilter as d0, type IncidentStateEnum as d1, type IncidentSearchQuerySortRequest as d2, type IncidentSearchQueryResult as d3, type IncidentResult as d4, type IncidentResolutionRequest as d5, type IncidentProcessInstanceStatisticsByErrorQuery as d6, type IncidentProcessInstanceStatisticsByErrorQueryResult as d7, type IncidentProcessInstanceStatisticsByErrorResult as d8, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as d9, type ActivatedJobResult$1 as dA, type UserTaskProperties as dB, type JobSearchQuery as dC, type JobSearchQuerySortRequest as dD, type JobFilter as dE, type JobSearchQueryResult as dF, type JobSearchResult as dG, type JobFailRequest as dH, type JobErrorRequest$1 as dI, type JobCompletionRequest as dJ, type JobResult as dK, type JobResultUserTask as dL, type JobResultCorrections as dM, type JobResultAdHocSubProcess as dN, type JobResultActivateElement as dO, type JobUpdateRequest as dP, type JobChangeset as dQ, type TenantFilterEnum as dR, type JobStateEnum as dS, type JobKindEnum as dT, type JobListenerEventTypeEnum as dU, type JobKindFilterProperty as dV, type AdvancedJobKindFilter as dW, type JobListenerEventTypeFilterProperty as dX, type AdvancedJobListenerEventTypeFilter as dY, type JobStateFilterProperty as dZ, type AdvancedJobStateFilter as d_, type IncidentProcessInstanceStatisticsByDefinitionQuery as da, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as db, type IncidentProcessInstanceStatisticsByDefinitionResult as dc, type IncidentProcessInstanceStatisticsByDefinitionFilter as dd, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as de, type GlobalJobStatisticsQueryResult as df, type StatusMetric as dg, type JobTypeStatisticsQuery as dh, type JobTypeStatisticsFilter as di, type JobTypeStatisticsQueryResult as dj, type JobTypeStatisticsItem as dk, type JobWorkerStatisticsQuery as dl, type JobWorkerStatisticsFilter as dm, type JobWorkerStatisticsQueryResult as dn, type JobWorkerStatisticsItem as dp, type JobTimeSeriesStatisticsQuery as dq, type JobTimeSeriesStatisticsFilter as dr, type JobTimeSeriesStatisticsQueryResult as ds, type JobTimeSeriesStatisticsItem as dt, type JobErrorStatisticsQuery as du, type JobErrorStatisticsFilter as dv, type JobErrorStatisticsQueryResult as dw, type JobErrorStatisticsItem as dx, type JobActivationRequest as dy, type JobActivationResult as dz, type Job as e, type CorrelatedMessageSubscriptionResult as e$, ProcessInstanceKey as e0, ProcessDefinitionKey as e1, ElementInstanceKey as e2, UserTaskKey as e3, FormKey as e4, VariableKey as e5, ScopeKey as e6, IncidentKey as e7, JobKey as e8, DecisionDefinitionKey as e9, type AdvancedFormKeyFilter as eA, type DecisionEvaluationKeyFilterProperty as eB, type AdvancedDecisionEvaluationKeyFilter as eC, type DecisionRequirementsKeyFilterProperty as eD, type AdvancedDecisionRequirementsKeyFilter as eE, type LicenseResponse as eF, type MappingRuleCreateUpdateRequest as eG, type MappingRuleCreateRequest as eH, type MappingRuleUpdateRequest as eI, type MappingRuleCreateUpdateResult as eJ, type MappingRuleCreateResult as eK, type MappingRuleUpdateResult as eL, type MappingRuleSearchQueryResult as eM, type MappingRuleResult as eN, type MappingRuleSearchQuerySortRequest as eO, type MappingRuleSearchQueryRequest as eP, type MappingRuleFilter as eQ, type MessageCorrelationRequest as eR, type MessageCorrelationResult as eS, type MessagePublicationRequest as eT, type MessagePublicationResult as eU, type MessageSubscriptionSearchQueryResult as eV, type MessageSubscriptionResult as eW, type MessageSubscriptionSearchQuerySortRequest as eX, type MessageSubscriptionSearchQuery as eY, type MessageSubscriptionFilter as eZ, type CorrelatedMessageSubscriptionSearchQueryResult as e_, DecisionEvaluationInstanceKey as ea, DecisionEvaluationKey as eb, DecisionRequirementsKey as ec, DecisionInstanceKey as ed, BatchOperationKey as ee, type OperationReference as ef, AuditLogKey as eg, type ProcessDefinitionKeyFilterProperty as eh, type AdvancedProcessDefinitionKeyFilter as ei, type ProcessInstanceKeyFilterProperty as ej, type AdvancedProcessInstanceKeyFilter as ek, type ElementInstanceKeyFilterProperty as el, type AdvancedElementInstanceKeyFilter as em, type JobKeyFilterProperty as en, type AdvancedJobKeyFilter as eo, type DecisionDefinitionKeyFilterProperty as ep, type AdvancedDecisionDefinitionKeyFilter as eq, type ScopeKeyFilterProperty as er, type AdvancedScopeKeyFilter as es, type VariableKeyFilterProperty as et, type AdvancedVariableKeyFilter as eu, type DecisionEvaluationInstanceKeyFilterProperty as ev, type AdvancedDecisionEvaluationInstanceKeyFilter as ew, type AuditLogKeyFilterProperty as ex, type AdvancedAuditLogKeyFilter as ey, type FormKeyFilterProperty as ez, JobActionReceipt as f, type InferredAncestorKeyInstruction as f$, type CorrelatedMessageSubscriptionSearchQuery as f0, type CorrelatedMessageSubscriptionSearchQuerySortRequest as f1, type MessageSubscriptionStateEnum as f2, type CorrelatedMessageSubscriptionFilter as f3, type MessageSubscriptionStateFilterProperty as f4, type AdvancedMessageSubscriptionStateFilter as f5, type AdvancedMessageSubscriptionKeyFilter as f6, type MessageSubscriptionKeyFilterProperty as f7, MessageSubscriptionKey as f8, MessageKey as f9, type ProcessInstanceCreationTerminateInstruction as fA, type CreateProcessInstanceResult as fB, type ProcessInstanceSearchQuerySortRequest as fC, type ProcessInstanceSearchQuery as fD, type BaseProcessInstanceFilterFields as fE, type ProcessDefinitionStatisticsFilter as fF, type ProcessInstanceFilterFields as fG, type ProcessInstanceFilter as fH, type ProcessInstanceSearchQueryResult as fI, type ProcessInstanceResult as fJ, type CancelProcessInstanceRequest as fK, type DeleteProcessInstanceRequest as fL, type ProcessInstanceCallHierarchyEntry as fM, type ProcessInstanceSequenceFlowsQueryResult as fN, type ProcessInstanceSequenceFlowResult as fO, type ProcessInstanceElementStatisticsQueryResult as fP, type ProcessInstanceMigrationInstruction as fQ, type MigrateProcessInstanceMappingInstruction as fR, type ProcessInstanceModificationInstruction as fS, type ProcessInstanceModificationActivateInstruction as fT, type ModifyProcessInstanceVariableInstruction as fU, type ProcessInstanceModificationMoveInstruction as fV, type SourceElementInstruction as fW, type SourceElementIdInstruction as fX, type SourceElementInstanceKeyInstruction as fY, type AncestorScopeInstruction as fZ, type DirectAncestorKeyInstruction as f_, type ProblemDetail as fa, type ProcessDefinitionSearchQuerySortRequest as fb, type ProcessDefinitionSearchQuery as fc, type ProcessDefinitionFilter as fd, type ProcessDefinitionSearchQueryResult as fe, type ProcessDefinitionResult as ff, type ProcessDefinitionElementStatisticsQuery as fg, type ProcessDefinitionElementStatisticsQueryResult as fh, type ProcessElementStatisticsResult as fi, type ProcessDefinitionMessageSubscriptionStatisticsQuery as fj, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as fk, type ProcessDefinitionMessageSubscriptionStatisticsResult as fl, type ProcessDefinitionInstanceStatisticsQuery as fm, type ProcessDefinitionInstanceStatisticsQueryResult as fn, type ProcessDefinitionInstanceStatisticsResult as fo, type ProcessDefinitionInstanceStatisticsQuerySortRequest as fp, type ProcessDefinitionInstanceVersionStatisticsQuery as fq, type ProcessDefinitionInstanceVersionStatisticsFilter as fr, type ProcessDefinitionInstanceVersionStatisticsQueryResult as fs, type ProcessDefinitionInstanceVersionStatisticsResult as ft, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as fu, type ProcessInstanceCreationInstruction as fv, type ProcessInstanceCreationInstructionById as fw, type ProcessInstanceCreationInstructionByKey as fx, type ProcessInstanceCreationStartInstruction as fy, type ProcessInstanceCreationRuntimeInstruction as fz, ThreadedJobWorker as g, type TenantGroupSearchResult as g$, type UseSourceParentKeyInstruction as g0, type ProcessInstanceModificationTerminateInstruction as g1, type ProcessInstanceModificationTerminateByIdInstruction as g2, type ProcessInstanceModificationTerminateByKeyInstruction as g3, type ProcessInstanceStateEnum as g4, type AdvancedProcessInstanceStateFilter as g5, type ProcessInstanceStateFilterProperty as g6, type RoleCreateRequest as g7, type RoleCreateResult as g8, type RoleUpdateRequest as g9, type SortOrderEnum as gA, type SearchQueryPageResponse as gB, type SignalBroadcastRequest as gC, type SignalBroadcastResult as gD, SignalKey as gE, type UsageMetricsResponse as gF, type UsageMetricsResponseItem as gG, type SystemConfigurationResponse as gH, type JobMetricsConfigurationResponse as gI, type TenantCreateRequest as gJ, type TenantCreateResult as gK, type TenantUpdateRequest as gL, type TenantUpdateResult as gM, type TenantResult as gN, type TenantSearchQuerySortRequest as gO, type TenantSearchQueryRequest as gP, type TenantFilter as gQ, type TenantSearchQueryResult as gR, type TenantUserResult as gS, type TenantUserSearchResult as gT, type TenantUserSearchQueryRequest as gU, type TenantUserSearchQuerySortRequest as gV, type TenantClientResult as gW, type TenantClientSearchResult as gX, type TenantClientSearchQueryRequest as gY, type TenantClientSearchQuerySortRequest as gZ, type TenantGroupResult as g_, type RoleUpdateResult as ga, type RoleResult as gb, type RoleSearchQuerySortRequest as gc, type RoleSearchQueryRequest as gd, type RoleFilter as ge, type RoleSearchQueryResult as gf, type RoleUserResult as gg, type RoleUserSearchResult as gh, type RoleUserSearchQueryRequest as gi, type RoleUserSearchQuerySortRequest as gj, type RoleClientResult as gk, type RoleClientSearchResult as gl, type RoleClientSearchQueryRequest as gm, type RoleClientSearchQuerySortRequest as gn, type RoleGroupResult as go, type RoleGroupSearchResult as gp, type RoleGroupSearchQueryRequest as gq, type RoleMappingRuleSearchResult as gr, type RoleGroupSearchQuerySortRequest as gs, type SearchQueryRequest as gt, type SearchQueryPageRequest as gu, type LimitPagination as gv, type OffsetPagination as gw, type CursorForwardPagination as gx, type CursorBackwardPagination as gy, type SearchQueryResponse as gz, type ThreadedJob as h, type JobKeyExactMatch as h$, type TenantGroupSearchQueryRequest as h0, type TenantRoleSearchResult as h1, type TenantMappingRuleSearchResult as h2, type TenantGroupSearchQuerySortRequest as h3, type UserTaskSearchQuerySortRequest as h4, type UserTaskSearchQuery as h5, type UserTaskFilter as h6, type UserTaskSearchQueryResult as h7, type UserTaskResult as h8, type UserTaskCompletionRequest as h9, type VariableResultBase as hA, type VariableValueFilterProperty as hB, type SetVariableRequest as hC, type AuditLogEntityKeyExactMatch as hD, type EntityTypeExactMatch as hE, type OperationTypeExactMatch as hF, type CategoryExactMatch as hG, type AuditLogResultExactMatch as hH, type AuditLogActorTypeExactMatch as hI, type BatchOperationTypeExactMatch as hJ, type BatchOperationStateExactMatch as hK, type BatchOperationItemStateExactMatch as hL, type ClusterVariableScopeExactMatch as hM, type DecisionInstanceStateExactMatch as hN, type DeploymentKeyExactMatch as hO, type ResourceKeyExactMatch as hP, type ElementInstanceStateExactMatch as hQ, type GlobalListenerSourceExactMatch as hR, type GlobalTaskListenerEventTypeExactMatch as hS, type IncidentErrorTypeExactMatch as hT, type IncidentStateExactMatch as hU, type JobKindExactMatch as hV, type JobListenerEventTypeExactMatch as hW, type JobStateExactMatch as hX, type ProcessDefinitionKeyExactMatch as hY, type ProcessInstanceKeyExactMatch as hZ, type ElementInstanceKeyExactMatch as h_, type UserTaskAssignmentRequest as ha, type UserTaskUpdateRequest as hb, type Changeset as hc, type UserTaskVariableSearchQuerySortRequest as hd, type UserTaskVariableSearchQueryRequest as he, type UserTaskAuditLogSearchQueryRequest as hf, type UserTaskStateEnum as hg, type UserTaskVariableFilter as hh, type UserTaskStateFilterProperty as hi, type AdvancedUserTaskStateFilter as hj, type UserTaskAuditLogFilter as hk, type UserRequest as hl, type UserCreateResult as hm, type UserUpdateRequest as hn, type UserUpdateResult as ho, type UserResult as hp, type UserSearchQuerySortRequest as hq, type UserSearchQueryRequest as hr, type UserFilter as hs, type UserSearchResult as ht, type VariableSearchQuerySortRequest as hu, type VariableSearchQuery as hv, type VariableFilter as hw, type VariableSearchQueryResult as hx, type VariableSearchResult as hy, type VariableResult as hz, type ThreadedJobHandler as i, type SearchBatchOperationsResponse as i$, type DecisionDefinitionKeyExactMatch as i0, type ScopeKeyExactMatch as i1, type VariableKeyExactMatch as i2, type DecisionEvaluationInstanceKeyExactMatch as i3, type AuditLogKeyExactMatch as i4, type FormKeyExactMatch as i5, type DecisionEvaluationKeyExactMatch as i6, type DecisionRequirementsKeyExactMatch as i7, type MessageSubscriptionStateExactMatch as i8, type MessageSubscriptionKeyExactMatch as i9, type SearchAuthorizationsError as iA, type SearchAuthorizationsResponses as iB, type SearchAuthorizationsResponse as iC, type DeleteAuthorizationData as iD, type DeleteAuthorizationErrors as iE, type DeleteAuthorizationError as iF, type DeleteAuthorizationResponses as iG, type DeleteAuthorizationResponse as iH, type GetAuthorizationData as iI, type GetAuthorizationErrors as iJ, type GetAuthorizationError as iK, type GetAuthorizationResponses as iL, type GetAuthorizationResponse as iM, type UpdateAuthorizationData as iN, type UpdateAuthorizationErrors as iO, type UpdateAuthorizationError as iP, type UpdateAuthorizationResponses as iQ, type UpdateAuthorizationResponse as iR, type SearchBatchOperationItemsData as iS, type SearchBatchOperationItemsErrors as iT, type SearchBatchOperationItemsError as iU, type SearchBatchOperationItemsResponses as iV, type SearchBatchOperationItemsResponse as iW, type SearchBatchOperationsData as iX, type SearchBatchOperationsErrors as iY, type SearchBatchOperationsError as iZ, type SearchBatchOperationsResponses as i_, type ProcessInstanceStateExactMatch as ia, type UserTaskStateExactMatch as ib, type SearchAuditLogsData as ic, type SearchAuditLogsErrors as id, type SearchAuditLogsError as ie, type SearchAuditLogsResponses as ig, type SearchAuditLogsResponse as ih, type GetAuditLogData as ii, type GetAuditLogErrors as ij, type GetAuditLogError as ik, type GetAuditLogResponses as il, type GetAuditLogResponse as im, type GetAuthenticationData as io, type GetAuthenticationErrors as ip, type GetAuthenticationError as iq, type GetAuthenticationResponses as ir, type GetAuthenticationResponse as is, type CreateAuthorizationData as it, type CreateAuthorizationErrors as iu, type CreateAuthorizationError as iv, type CreateAuthorizationResponses as iw, type CreateAuthorizationResponse as ix, type SearchAuthorizationsData as iy, type SearchAuthorizationsErrors as iz, ThreadPool as j, type DeleteTenantClusterVariableResponses as j$, type GetBatchOperationData as j0, type GetBatchOperationErrors as j1, type GetBatchOperationError as j2, type GetBatchOperationResponses as j3, type GetBatchOperationResponse as j4, type CancelBatchOperationData as j5, type CancelBatchOperationErrors as j6, type CancelBatchOperationError as j7, type CancelBatchOperationResponses as j8, type CancelBatchOperationResponse as j9, type DeleteGlobalClusterVariableErrors as jA, type DeleteGlobalClusterVariableError as jB, type DeleteGlobalClusterVariableResponses as jC, type DeleteGlobalClusterVariableResponse as jD, type GetGlobalClusterVariableData as jE, type GetGlobalClusterVariableErrors as jF, type GetGlobalClusterVariableError as jG, type GetGlobalClusterVariableResponses as jH, type GetGlobalClusterVariableResponse as jI, type UpdateGlobalClusterVariableData as jJ, type UpdateGlobalClusterVariableErrors as jK, type UpdateGlobalClusterVariableError as jL, type UpdateGlobalClusterVariableResponses as jM, type UpdateGlobalClusterVariableResponse as jN, type SearchClusterVariablesData as jO, type SearchClusterVariablesErrors as jP, type SearchClusterVariablesError as jQ, type SearchClusterVariablesResponses as jR, type SearchClusterVariablesResponse as jS, type CreateTenantClusterVariableData as jT, type CreateTenantClusterVariableErrors as jU, type CreateTenantClusterVariableError as jV, type CreateTenantClusterVariableResponses as jW, type CreateTenantClusterVariableResponse as jX, type DeleteTenantClusterVariableData as jY, type DeleteTenantClusterVariableErrors as jZ, type DeleteTenantClusterVariableError as j_, type ResumeBatchOperationData as ja, type ResumeBatchOperationErrors as jb, type ResumeBatchOperationError as jc, type ResumeBatchOperationResponses as jd, type ResumeBatchOperationResponse as je, type SuspendBatchOperationData as jf, type SuspendBatchOperationErrors as jg, type SuspendBatchOperationError as jh, type SuspendBatchOperationResponses as ji, type SuspendBatchOperationResponse as jj, type PinClockData as jk, type PinClockErrors as jl, type PinClockError as jm, type PinClockResponses as jn, type PinClockResponse as jo, type ResetClockData as jp, type ResetClockErrors as jq, type ResetClockError as jr, type ResetClockResponses as js, type ResetClockResponse as jt, type CreateGlobalClusterVariableData as ju, type CreateGlobalClusterVariableErrors as jv, type CreateGlobalClusterVariableError as jw, type CreateGlobalClusterVariableResponses as jx, type CreateGlobalClusterVariableResponse as jy, type DeleteGlobalClusterVariableData as jz, createCamundaFpClient as k, type SearchDecisionRequirementsError as k$, type DeleteTenantClusterVariableResponse as k0, type GetTenantClusterVariableData as k1, type GetTenantClusterVariableErrors as k2, type GetTenantClusterVariableError as k3, type GetTenantClusterVariableResponses as k4, type GetTenantClusterVariableResponse as k5, type UpdateTenantClusterVariableData as k6, type UpdateTenantClusterVariableErrors as k7, type UpdateTenantClusterVariableError as k8, type UpdateTenantClusterVariableResponses as k9, type GetDecisionDefinitionXmlData as kA, type GetDecisionDefinitionXmlErrors as kB, type GetDecisionDefinitionXmlError as kC, type GetDecisionDefinitionXmlResponses as kD, type GetDecisionDefinitionXmlResponse as kE, type SearchDecisionInstancesData as kF, type SearchDecisionInstancesErrors as kG, type SearchDecisionInstancesError as kH, type SearchDecisionInstancesResponses as kI, type SearchDecisionInstancesResponse as kJ, type GetDecisionInstanceData as kK, type GetDecisionInstanceErrors as kL, type GetDecisionInstanceError as kM, type GetDecisionInstanceResponses as kN, type GetDecisionInstanceResponse as kO, type DeleteDecisionInstanceData as kP, type DeleteDecisionInstanceErrors as kQ, type DeleteDecisionInstanceError as kR, type DeleteDecisionInstanceResponses as kS, type DeleteDecisionInstanceResponse as kT, type DeleteDecisionInstancesBatchOperationData as kU, type DeleteDecisionInstancesBatchOperationErrors as kV, type DeleteDecisionInstancesBatchOperationError as kW, type DeleteDecisionInstancesBatchOperationResponses as kX, type DeleteDecisionInstancesBatchOperationResponse as kY, type SearchDecisionRequirementsData as kZ, type SearchDecisionRequirementsErrors as k_, type UpdateTenantClusterVariableResponse as ka, type EvaluateConditionalsData as kb, type EvaluateConditionalsErrors as kc, type EvaluateConditionalsError as kd, type EvaluateConditionalsResponses as ke, type EvaluateConditionalsResponse as kf, type SearchCorrelatedMessageSubscriptionsData as kg, type SearchCorrelatedMessageSubscriptionsErrors as kh, type SearchCorrelatedMessageSubscriptionsError as ki, type SearchCorrelatedMessageSubscriptionsResponses as kj, type SearchCorrelatedMessageSubscriptionsResponse as kk, type EvaluateDecisionData as kl, type EvaluateDecisionErrors as km, type EvaluateDecisionError as kn, type EvaluateDecisionResponses as ko, type EvaluateDecisionResponse as kp, type SearchDecisionDefinitionsData as kq, type SearchDecisionDefinitionsErrors as kr, type SearchDecisionDefinitionsError as ks, type SearchDecisionDefinitionsResponses as kt, type SearchDecisionDefinitionsResponse as ku, type GetDecisionDefinitionData as kv, type GetDecisionDefinitionErrors as kw, type GetDecisionDefinitionError as kx, type GetDecisionDefinitionResponses as ky, type GetDecisionDefinitionResponse as kz, type CamundaFpClient as l, type CreateElementInstanceVariablesErrors as l$, type SearchDecisionRequirementsResponses as l0, type SearchDecisionRequirementsResponse as l1, type GetDecisionRequirementsData as l2, type GetDecisionRequirementsErrors as l3, type GetDecisionRequirementsError as l4, type GetDecisionRequirementsResponses as l5, type GetDecisionRequirementsResponse as l6, type GetDecisionRequirementsXmlData as l7, type GetDecisionRequirementsXmlErrors as l8, type GetDecisionRequirementsXmlError as l9, type GetDocumentResponse as lA, type CreateDocumentLinkData as lB, type CreateDocumentLinkErrors as lC, type CreateDocumentLinkError as lD, type CreateDocumentLinkResponses as lE, type CreateDocumentLinkResponse as lF, type ActivateAdHocSubProcessActivitiesData as lG, type ActivateAdHocSubProcessActivitiesErrors as lH, type ActivateAdHocSubProcessActivitiesError as lI, type ActivateAdHocSubProcessActivitiesResponses as lJ, type ActivateAdHocSubProcessActivitiesResponse as lK, type SearchElementInstancesData as lL, type SearchElementInstancesErrors as lM, type SearchElementInstancesError as lN, type SearchElementInstancesResponses as lO, type SearchElementInstancesResponse as lP, type GetElementInstanceData as lQ, type GetElementInstanceErrors as lR, type GetElementInstanceError as lS, type GetElementInstanceResponses as lT, type GetElementInstanceResponse as lU, type SearchElementInstanceIncidentsData as lV, type SearchElementInstanceIncidentsErrors as lW, type SearchElementInstanceIncidentsError as lX, type SearchElementInstanceIncidentsResponses as lY, type SearchElementInstanceIncidentsResponse as lZ, type CreateElementInstanceVariablesData as l_, type GetDecisionRequirementsXmlResponses as la, type GetDecisionRequirementsXmlResponse as lb, type CreateDeploymentData as lc, type CreateDeploymentErrors as ld, type CreateDeploymentError as le, type CreateDeploymentResponses as lf, type CreateDeploymentResponse as lg, type CreateDocumentData as lh, type CreateDocumentErrors as li, type CreateDocumentError as lj, type CreateDocumentResponses as lk, type CreateDocumentResponse as ll, type CreateDocumentsData as lm, type CreateDocumentsErrors as ln, type CreateDocumentsError as lo, type CreateDocumentsResponses as lp, type CreateDocumentsResponse as lq, type DeleteDocumentData as lr, type DeleteDocumentErrors as ls, type DeleteDocumentError as lt, type DeleteDocumentResponses as lu, type DeleteDocumentResponse as lv, type GetDocumentData as lw, type GetDocumentErrors as lx, type GetDocumentError as ly, type GetDocumentResponses as lz, isLeft as m, type UnassignClientFromGroupData as m$, type CreateElementInstanceVariablesError as m0, type CreateElementInstanceVariablesResponses as m1, type CreateElementInstanceVariablesResponse as m2, type EvaluateExpressionData as m3, type EvaluateExpressionErrors as m4, type EvaluateExpressionError as m5, type EvaluateExpressionResponses as m6, type EvaluateExpressionResponse as m7, type CreateGlobalTaskListenerData as m8, type CreateGlobalTaskListenerErrors as m9, type CreateGroupResponses as mA, type CreateGroupResponse as mB, type SearchGroupsData as mC, type SearchGroupsErrors as mD, type SearchGroupsError as mE, type SearchGroupsResponses as mF, type SearchGroupsResponse as mG, type DeleteGroupData as mH, type DeleteGroupErrors as mI, type DeleteGroupError as mJ, type DeleteGroupResponses as mK, type DeleteGroupResponse as mL, type GetGroupData as mM, type GetGroupErrors as mN, type GetGroupError as mO, type GetGroupResponses as mP, type GetGroupResponse as mQ, type UpdateGroupData as mR, type UpdateGroupErrors as mS, type UpdateGroupError as mT, type UpdateGroupResponses as mU, type UpdateGroupResponse as mV, type SearchClientsForGroupData as mW, type SearchClientsForGroupErrors as mX, type SearchClientsForGroupError as mY, type SearchClientsForGroupResponses as mZ, type SearchClientsForGroupResponse as m_, type CreateGlobalTaskListenerError as ma, type CreateGlobalTaskListenerResponses as mb, type CreateGlobalTaskListenerResponse as mc, type DeleteGlobalTaskListenerData as md, type DeleteGlobalTaskListenerErrors as me, type DeleteGlobalTaskListenerError as mf, type DeleteGlobalTaskListenerResponses as mg, type DeleteGlobalTaskListenerResponse as mh, type GetGlobalTaskListenerData as mi, type GetGlobalTaskListenerErrors as mj, type GetGlobalTaskListenerError as mk, type GetGlobalTaskListenerResponses as ml, type GetGlobalTaskListenerResponse as mm, type UpdateGlobalTaskListenerData as mn, type UpdateGlobalTaskListenerErrors as mo, type UpdateGlobalTaskListenerError as mp, type UpdateGlobalTaskListenerResponses as mq, type UpdateGlobalTaskListenerResponse as mr, type SearchGlobalTaskListenersData as ms, type SearchGlobalTaskListenersErrors as mt, type SearchGlobalTaskListenersError as mu, type SearchGlobalTaskListenersResponses as mv, type SearchGlobalTaskListenersResponse as mw, type CreateGroupData as mx, type CreateGroupErrors as my, type CreateGroupError as mz, isRight as n, type GetProcessInstanceStatisticsByDefinitionResponse as n$, type UnassignClientFromGroupErrors as n0, type UnassignClientFromGroupError as n1, type UnassignClientFromGroupResponses as n2, type UnassignClientFromGroupResponse as n3, type AssignClientToGroupData as n4, type AssignClientToGroupErrors as n5, type AssignClientToGroupError as n6, type AssignClientToGroupResponses as n7, type AssignClientToGroupResponse as n8, type SearchMappingRulesForGroupData as n9, type UnassignUserFromGroupError as nA, type UnassignUserFromGroupResponses as nB, type UnassignUserFromGroupResponse as nC, type AssignUserToGroupData as nD, type AssignUserToGroupErrors as nE, type AssignUserToGroupError as nF, type AssignUserToGroupResponses as nG, type AssignUserToGroupResponse as nH, type SearchIncidentsData as nI, type SearchIncidentsErrors as nJ, type SearchIncidentsError as nK, type SearchIncidentsResponses as nL, type SearchIncidentsResponse as nM, type GetIncidentData as nN, type GetIncidentErrors as nO, type GetIncidentError as nP, type GetIncidentResponses as nQ, type GetIncidentResponse as nR, type ResolveIncidentData as nS, type ResolveIncidentErrors as nT, type ResolveIncidentError as nU, type ResolveIncidentResponses as nV, type ResolveIncidentResponse as nW, type GetProcessInstanceStatisticsByDefinitionData as nX, type GetProcessInstanceStatisticsByDefinitionErrors as nY, type GetProcessInstanceStatisticsByDefinitionError as nZ, type GetProcessInstanceStatisticsByDefinitionResponses as n_, type SearchMappingRulesForGroupErrors as na, type SearchMappingRulesForGroupError as nb, type SearchMappingRulesForGroupResponses as nc, type SearchMappingRulesForGroupResponse as nd, type UnassignMappingRuleFromGroupData as ne, type UnassignMappingRuleFromGroupErrors as nf, type UnassignMappingRuleFromGroupError as ng, type UnassignMappingRuleFromGroupResponses as nh, type UnassignMappingRuleFromGroupResponse as ni, type AssignMappingRuleToGroupData as nj, type AssignMappingRuleToGroupErrors as nk, type AssignMappingRuleToGroupError as nl, type AssignMappingRuleToGroupResponses as nm, type AssignMappingRuleToGroupResponse as nn, type SearchRolesForGroupData as no, type SearchRolesForGroupErrors as np, type SearchRolesForGroupError as nq, type SearchRolesForGroupResponses as nr, type SearchRolesForGroupResponse as ns, type SearchUsersForGroupData as nt, type SearchUsersForGroupErrors as nu, type SearchUsersForGroupError as nv, type SearchUsersForGroupResponses as nw, type SearchUsersForGroupResponse as nx, type UnassignUserFromGroupData as ny, type UnassignUserFromGroupErrors as nz, CamundaValidationError as o, type GetLicenseResponses as o$, type GetProcessInstanceStatisticsByErrorData as o0, type GetProcessInstanceStatisticsByErrorErrors as o1, type GetProcessInstanceStatisticsByErrorError as o2, type GetProcessInstanceStatisticsByErrorResponses as o3, type GetProcessInstanceStatisticsByErrorResponse as o4, type ActivateJobsData as o5, type ActivateJobsErrors as o6, type ActivateJobsError as o7, type ActivateJobsResponses as o8, type ActivateJobsResponse as o9, type GetGlobalJobStatisticsErrors as oA, type GetGlobalJobStatisticsError as oB, type GetGlobalJobStatisticsResponses as oC, type GetGlobalJobStatisticsResponse as oD, type GetJobTypeStatisticsData as oE, type GetJobTypeStatisticsErrors as oF, type GetJobTypeStatisticsError as oG, type GetJobTypeStatisticsResponses as oH, type GetJobTypeStatisticsResponse as oI, type GetJobWorkerStatisticsData as oJ, type GetJobWorkerStatisticsErrors as oK, type GetJobWorkerStatisticsError as oL, type GetJobWorkerStatisticsResponses as oM, type GetJobWorkerStatisticsResponse as oN, type GetJobTimeSeriesStatisticsData as oO, type GetJobTimeSeriesStatisticsErrors as oP, type GetJobTimeSeriesStatisticsError as oQ, type GetJobTimeSeriesStatisticsResponses as oR, type GetJobTimeSeriesStatisticsResponse as oS, type GetJobErrorStatisticsData as oT, type GetJobErrorStatisticsErrors as oU, type GetJobErrorStatisticsError as oV, type GetJobErrorStatisticsResponses as oW, type GetJobErrorStatisticsResponse as oX, type GetLicenseData as oY, type GetLicenseErrors as oZ, type GetLicenseError as o_, type SearchJobsData as oa, type SearchJobsErrors as ob, type SearchJobsError as oc, type SearchJobsResponses as od, type SearchJobsResponse as oe, type UpdateJobData as of, type UpdateJobErrors as og, type UpdateJobError as oh, type UpdateJobResponses as oi, type UpdateJobResponse as oj, type CompleteJobData as ok, type CompleteJobErrors as ol, type CompleteJobError as om, type CompleteJobResponses as on, type CompleteJobResponse as oo, type ThrowJobErrorData as op, type ThrowJobErrorErrors as oq, type ThrowJobErrorError as or, type ThrowJobErrorResponses as os, type ThrowJobErrorResponse as ot, type FailJobData as ou, type FailJobErrors as ov, type FailJobError as ow, type FailJobResponses as ox, type FailJobResponse as oy, type GetGlobalJobStatisticsData as oz, EventualConsistencyTimeoutError as p, type GetStartProcessFormError as p$, type GetLicenseResponse as p0, type CreateMappingRuleData as p1, type CreateMappingRuleErrors as p2, type CreateMappingRuleError as p3, type CreateMappingRuleResponses as p4, type CreateMappingRuleResponse as p5, type SearchMappingRuleData as p6, type SearchMappingRuleErrors as p7, type SearchMappingRuleError as p8, type SearchMappingRuleResponses as p9, type PublishMessageData as pA, type PublishMessageErrors as pB, type PublishMessageError as pC, type PublishMessageResponses as pD, type PublishMessageResponse as pE, type SearchProcessDefinitionsData as pF, type SearchProcessDefinitionsErrors as pG, type SearchProcessDefinitionsError as pH, type SearchProcessDefinitionsResponses as pI, type SearchProcessDefinitionsResponse as pJ, type GetProcessDefinitionMessageSubscriptionStatisticsData as pK, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as pL, type GetProcessDefinitionMessageSubscriptionStatisticsError as pM, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as pN, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as pO, type GetProcessDefinitionInstanceStatisticsData as pP, type GetProcessDefinitionInstanceStatisticsErrors as pQ, type GetProcessDefinitionInstanceStatisticsError as pR, type GetProcessDefinitionInstanceStatisticsResponses as pS, type GetProcessDefinitionInstanceStatisticsResponse as pT, type GetProcessDefinitionData as pU, type GetProcessDefinitionErrors as pV, type GetProcessDefinitionError as pW, type GetProcessDefinitionResponses as pX, type GetProcessDefinitionResponse as pY, type GetStartProcessFormData as pZ, type GetStartProcessFormErrors as p_, type SearchMappingRuleResponse as pa, type DeleteMappingRuleData as pb, type DeleteMappingRuleErrors as pc, type DeleteMappingRuleError as pd, type DeleteMappingRuleResponses as pe, type DeleteMappingRuleResponse as pf, type GetMappingRuleData as pg, type GetMappingRuleErrors as ph, type GetMappingRuleError as pi, type GetMappingRuleResponses as pj, type GetMappingRuleResponse as pk, type UpdateMappingRuleData as pl, type UpdateMappingRuleErrors as pm, type UpdateMappingRuleError as pn, type UpdateMappingRuleResponses as po, type UpdateMappingRuleResponse as pp, type SearchMessageSubscriptionsData as pq, type SearchMessageSubscriptionsErrors as pr, type SearchMessageSubscriptionsError as ps, type SearchMessageSubscriptionsResponses as pt, type SearchMessageSubscriptionsResponse as pu, type CorrelateMessageData as pv, type CorrelateMessageErrors as pw, type CorrelateMessageError as px, type CorrelateMessageResponses as py, type CorrelateMessageResponse as pz, type EnrichedActivatedJob as q, type CancelProcessInstanceErrors as q$, type GetStartProcessFormResponses as q0, type GetStartProcessFormResponse as q1, type GetProcessDefinitionStatisticsData as q2, type GetProcessDefinitionStatisticsErrors as q3, type GetProcessDefinitionStatisticsError as q4, type GetProcessDefinitionStatisticsResponses as q5, type GetProcessDefinitionStatisticsResponse as q6, type GetProcessDefinitionXmlData as q7, type GetProcessDefinitionXmlErrors as q8, type GetProcessDefinitionXmlError as q9, type ResolveIncidentsBatchOperationResponse as qA, type MigrateProcessInstancesBatchOperationData as qB, type MigrateProcessInstancesBatchOperationErrors as qC, type MigrateProcessInstancesBatchOperationError as qD, type MigrateProcessInstancesBatchOperationResponses as qE, type MigrateProcessInstancesBatchOperationResponse as qF, type ModifyProcessInstancesBatchOperationData as qG, type ModifyProcessInstancesBatchOperationErrors as qH, type ModifyProcessInstancesBatchOperationError as qI, type ModifyProcessInstancesBatchOperationResponses as qJ, type ModifyProcessInstancesBatchOperationResponse as qK, type SearchProcessInstancesData as qL, type SearchProcessInstancesErrors as qM, type SearchProcessInstancesError as qN, type SearchProcessInstancesResponses as qO, type SearchProcessInstancesResponse as qP, type GetProcessInstanceData as qQ, type GetProcessInstanceErrors as qR, type GetProcessInstanceError as qS, type GetProcessInstanceResponses as qT, type GetProcessInstanceResponse as qU, type GetProcessInstanceCallHierarchyData as qV, type GetProcessInstanceCallHierarchyErrors as qW, type GetProcessInstanceCallHierarchyError as qX, type GetProcessInstanceCallHierarchyResponses as qY, type GetProcessInstanceCallHierarchyResponse as qZ, type CancelProcessInstanceData as q_, type GetProcessDefinitionXmlResponses as qa, type GetProcessDefinitionXmlResponse as qb, type GetProcessDefinitionInstanceVersionStatisticsData as qc, type GetProcessDefinitionInstanceVersionStatisticsErrors as qd, type GetProcessDefinitionInstanceVersionStatisticsError as qe, type GetProcessDefinitionInstanceVersionStatisticsResponses as qf, type GetProcessDefinitionInstanceVersionStatisticsResponse as qg, type CreateProcessInstanceData as qh, type CreateProcessInstanceErrors as qi, type CreateProcessInstanceError as qj, type CreateProcessInstanceResponses as qk, type CreateProcessInstanceResponse as ql, type CancelProcessInstancesBatchOperationData as qm, type CancelProcessInstancesBatchOperationErrors as qn, type CancelProcessInstancesBatchOperationError as qo, type CancelProcessInstancesBatchOperationResponses as qp, type CancelProcessInstancesBatchOperationResponse as qq, type DeleteProcessInstancesBatchOperationData as qr, type DeleteProcessInstancesBatchOperationErrors as qs, type DeleteProcessInstancesBatchOperationError as qt, type DeleteProcessInstancesBatchOperationResponses as qu, type DeleteProcessInstancesBatchOperationResponse as qv, type ResolveIncidentsBatchOperationData as qw, type ResolveIncidentsBatchOperationErrors as qx, type ResolveIncidentsBatchOperationError as qy, type ResolveIncidentsBatchOperationResponses as qz, type CamundaConfig as r, type DeleteRoleData as r$, type CancelProcessInstanceError as r0, type CancelProcessInstanceResponses as r1, type CancelProcessInstanceResponse as r2, type DeleteProcessInstanceData as r3, type DeleteProcessInstanceErrors as r4, type DeleteProcessInstanceError as r5, type DeleteProcessInstanceResponses as r6, type DeleteProcessInstanceResponse as r7, type ResolveProcessInstanceIncidentsData as r8, type ResolveProcessInstanceIncidentsErrors as r9, type GetProcessInstanceStatisticsResponses as rA, type GetProcessInstanceStatisticsResponse as rB, type GetResourceData as rC, type GetResourceErrors as rD, type GetResourceError as rE, type GetResourceResponses as rF, type GetResourceResponse as rG, type GetResourceContentData as rH, type GetResourceContentErrors as rI, type GetResourceContentError as rJ, type GetResourceContentResponses as rK, type GetResourceContentResponse as rL, type DeleteResourceData as rM, type DeleteResourceErrors as rN, type DeleteResourceError as rO, type DeleteResourceResponses as rP, type DeleteResourceResponse2 as rQ, type CreateRoleData as rR, type CreateRoleErrors as rS, type CreateRoleError as rT, type CreateRoleResponses as rU, type CreateRoleResponse as rV, type SearchRolesData as rW, type SearchRolesErrors as rX, type SearchRolesError as rY, type SearchRolesResponses as rZ, type SearchRolesResponse as r_, type ResolveProcessInstanceIncidentsError as ra, type ResolveProcessInstanceIncidentsResponses as rb, type ResolveProcessInstanceIncidentsResponse as rc, type SearchProcessInstanceIncidentsData as rd, type SearchProcessInstanceIncidentsErrors as re, type SearchProcessInstanceIncidentsError as rf, type SearchProcessInstanceIncidentsResponses as rg, type SearchProcessInstanceIncidentsResponse as rh, type MigrateProcessInstanceData as ri, type MigrateProcessInstanceErrors as rj, type MigrateProcessInstanceError as rk, type MigrateProcessInstanceResponses as rl, type MigrateProcessInstanceResponse as rm, type ModifyProcessInstanceData as rn, type ModifyProcessInstanceErrors as ro, type ModifyProcessInstanceError as rp, type ModifyProcessInstanceResponses as rq, type ModifyProcessInstanceResponse as rr, type GetProcessInstanceSequenceFlowsData as rs, type GetProcessInstanceSequenceFlowsErrors as rt, type GetProcessInstanceSequenceFlowsError as ru, type GetProcessInstanceSequenceFlowsResponses as rv, type GetProcessInstanceSequenceFlowsResponse as rw, type GetProcessInstanceStatisticsData as rx, type GetProcessInstanceStatisticsErrors as ry, type GetProcessInstanceStatisticsError as rz, type TelemetryHooks as s, type SearchUsersForRoleResponse as s$, type DeleteRoleErrors as s0, type DeleteRoleError as s1, type DeleteRoleResponses as s2, type DeleteRoleResponse as s3, type GetRoleData as s4, type GetRoleErrors as s5, type GetRoleError as s6, type GetRoleResponses as s7, type GetRoleResponse as s8, type UpdateRoleData as s9, type UnassignRoleFromGroupError as sA, type UnassignRoleFromGroupResponses as sB, type UnassignRoleFromGroupResponse as sC, type AssignRoleToGroupData as sD, type AssignRoleToGroupErrors as sE, type AssignRoleToGroupError as sF, type AssignRoleToGroupResponses as sG, type AssignRoleToGroupResponse as sH, type SearchMappingRulesForRoleData as sI, type SearchMappingRulesForRoleErrors as sJ, type SearchMappingRulesForRoleError as sK, type SearchMappingRulesForRoleResponses as sL, type SearchMappingRulesForRoleResponse as sM, type UnassignRoleFromMappingRuleData as sN, type UnassignRoleFromMappingRuleErrors as sO, type UnassignRoleFromMappingRuleError as sP, type UnassignRoleFromMappingRuleResponses as sQ, type UnassignRoleFromMappingRuleResponse as sR, type AssignRoleToMappingRuleData as sS, type AssignRoleToMappingRuleErrors as sT, type AssignRoleToMappingRuleError as sU, type AssignRoleToMappingRuleResponses as sV, type AssignRoleToMappingRuleResponse as sW, type SearchUsersForRoleData as sX, type SearchUsersForRoleErrors as sY, type SearchUsersForRoleError as sZ, type SearchUsersForRoleResponses as s_, type UpdateRoleErrors as sa, type UpdateRoleError as sb, type UpdateRoleResponses as sc, type UpdateRoleResponse as sd, type SearchClientsForRoleData as se, type SearchClientsForRoleErrors as sf, type SearchClientsForRoleError as sg, type SearchClientsForRoleResponses as sh, type SearchClientsForRoleResponse as si, type UnassignRoleFromClientData as sj, type UnassignRoleFromClientErrors as sk, type UnassignRoleFromClientError as sl, type UnassignRoleFromClientResponses as sm, type UnassignRoleFromClientResponse as sn, type AssignRoleToClientData as so, type AssignRoleToClientErrors as sp, type AssignRoleToClientError as sq, type AssignRoleToClientResponses as sr, type AssignRoleToClientResponse as ss, type SearchGroupsForRoleData as st, type SearchGroupsForRoleErrors as su, type SearchGroupsForRoleError as sv, type SearchGroupsForRoleResponses as sw, type SearchGroupsForRoleResponse as sx, type UnassignRoleFromGroupData as sy, type UnassignRoleFromGroupErrors as sz, type CamundaKey as t, type UnassignClientFromTenantErrors as t$, type UnassignRoleFromUserData as t0, type UnassignRoleFromUserErrors as t1, type UnassignRoleFromUserError as t2, type UnassignRoleFromUserResponses as t3, type UnassignRoleFromUserResponse as t4, type AssignRoleToUserData as t5, type AssignRoleToUserErrors as t6, type AssignRoleToUserError as t7, type AssignRoleToUserResponses as t8, type AssignRoleToUserResponse as t9, type CreateTenantError as tA, type CreateTenantResponses as tB, type CreateTenantResponse as tC, type SearchTenantsData as tD, type SearchTenantsErrors as tE, type SearchTenantsError as tF, type SearchTenantsResponses as tG, type SearchTenantsResponse as tH, type DeleteTenantData as tI, type DeleteTenantErrors as tJ, type DeleteTenantError as tK, type DeleteTenantResponses as tL, type DeleteTenantResponse as tM, type GetTenantData as tN, type GetTenantErrors as tO, type GetTenantError as tP, type GetTenantResponses as tQ, type GetTenantResponse as tR, type UpdateTenantData as tS, type UpdateTenantErrors as tT, type UpdateTenantError as tU, type UpdateTenantResponses as tV, type UpdateTenantResponse as tW, type SearchClientsForTenantData as tX, type SearchClientsForTenantResponses as tY, type SearchClientsForTenantResponse as tZ, type UnassignClientFromTenantData as t_, type CreateAdminUserData as ta, type CreateAdminUserErrors as tb, type CreateAdminUserError as tc, type CreateAdminUserResponses as td, type CreateAdminUserResponse as te, type BroadcastSignalData as tf, type BroadcastSignalErrors as tg, type BroadcastSignalError as th, type BroadcastSignalResponses as ti, type BroadcastSignalResponse as tj, type GetStatusData as tk, type GetStatusErrors as tl, type GetStatusResponses as tm, type GetStatusResponse as tn, type GetUsageMetricsData as to, type GetUsageMetricsErrors as tp, type GetUsageMetricsError as tq, type GetUsageMetricsResponses as tr, type GetUsageMetricsResponse as ts, type GetSystemConfigurationData as tt, type GetSystemConfigurationErrors as tu, type GetSystemConfigurationError as tv, type GetSystemConfigurationResponses as tw, type GetSystemConfigurationResponse as tx, type CreateTenantData as ty, type CreateTenantErrors as tz, type ClientOptions as u, type GetTopologyResponses as u$, type UnassignClientFromTenantError as u0, type UnassignClientFromTenantResponses as u1, type UnassignClientFromTenantResponse as u2, type AssignClientToTenantData as u3, type AssignClientToTenantErrors as u4, type AssignClientToTenantError as u5, type AssignClientToTenantResponses as u6, type AssignClientToTenantResponse as u7, type SearchGroupIdsForTenantData as u8, type SearchGroupIdsForTenantResponses as u9, type SearchRolesForTenantResponse as uA, type UnassignRoleFromTenantData as uB, type UnassignRoleFromTenantErrors as uC, type UnassignRoleFromTenantError as uD, type UnassignRoleFromTenantResponses as uE, type UnassignRoleFromTenantResponse as uF, type AssignRoleToTenantData as uG, type AssignRoleToTenantErrors as uH, type AssignRoleToTenantError as uI, type AssignRoleToTenantResponses as uJ, type AssignRoleToTenantResponse as uK, type SearchUsersForTenantData as uL, type SearchUsersForTenantResponses as uM, type SearchUsersForTenantResponse as uN, type UnassignUserFromTenantData as uO, type UnassignUserFromTenantErrors as uP, type UnassignUserFromTenantError as uQ, type UnassignUserFromTenantResponses as uR, type UnassignUserFromTenantResponse as uS, type AssignUserToTenantData as uT, type AssignUserToTenantErrors as uU, type AssignUserToTenantError as uV, type AssignUserToTenantResponses as uW, type AssignUserToTenantResponse as uX, type GetTopologyData as uY, type GetTopologyErrors as uZ, type GetTopologyError as u_, type SearchGroupIdsForTenantResponse as ua, type UnassignGroupFromTenantData as ub, type UnassignGroupFromTenantErrors as uc, type UnassignGroupFromTenantError as ud, type UnassignGroupFromTenantResponses as ue, type UnassignGroupFromTenantResponse as uf, type AssignGroupToTenantData as ug, type AssignGroupToTenantErrors as uh, type AssignGroupToTenantError as ui, type AssignGroupToTenantResponses as uj, type AssignGroupToTenantResponse as uk, type SearchMappingRulesForTenantData as ul, type SearchMappingRulesForTenantResponses as um, type SearchMappingRulesForTenantResponse as un, type UnassignMappingRuleFromTenantData as uo, type UnassignMappingRuleFromTenantErrors as up, type UnassignMappingRuleFromTenantError as uq, type UnassignMappingRuleFromTenantResponses as ur, type UnassignMappingRuleFromTenantResponse as us, type AssignMappingRuleToTenantData as ut, type AssignMappingRuleToTenantErrors as uu, type AssignMappingRuleToTenantError as uv, type AssignMappingRuleToTenantResponses as uw, type AssignMappingRuleToTenantResponse as ux, type SearchRolesForTenantData as uy, type SearchRolesForTenantResponses as uz, type AuditLogResult as v, type GetUserTaskFormError as v$, type GetTopologyResponse as v0, type CreateUserData as v1, type CreateUserErrors as v2, type CreateUserError as v3, type CreateUserResponses as v4, type CreateUserResponse as v5, type SearchUsersData as v6, type SearchUsersErrors as v7, type SearchUsersError as v8, type SearchUsersResponses as v9, type UpdateUserTaskData as vA, type UpdateUserTaskErrors as vB, type UpdateUserTaskError as vC, type UpdateUserTaskResponses as vD, type UpdateUserTaskResponse as vE, type UnassignUserTaskData as vF, type UnassignUserTaskErrors as vG, type UnassignUserTaskError as vH, type UnassignUserTaskResponses as vI, type UnassignUserTaskResponse as vJ, type AssignUserTaskData as vK, type AssignUserTaskErrors as vL, type AssignUserTaskError as vM, type AssignUserTaskResponses as vN, type AssignUserTaskResponse as vO, type SearchUserTaskAuditLogsData as vP, type SearchUserTaskAuditLogsErrors as vQ, type SearchUserTaskAuditLogsError as vR, type SearchUserTaskAuditLogsResponses as vS, type SearchUserTaskAuditLogsResponse as vT, type CompleteUserTaskData as vU, type CompleteUserTaskErrors as vV, type CompleteUserTaskError as vW, type CompleteUserTaskResponses as vX, type CompleteUserTaskResponse as vY, type GetUserTaskFormData as vZ, type GetUserTaskFormErrors as v_, type SearchUsersResponse as va, type DeleteUserData as vb, type DeleteUserErrors as vc, type DeleteUserError as vd, type DeleteUserResponses as ve, type DeleteUserResponse as vf, type GetUserData as vg, type GetUserErrors as vh, type GetUserError as vi, type GetUserResponses as vj, type GetUserResponse as vk, type UpdateUserData as vl, type UpdateUserErrors as vm, type UpdateUserError as vn, type UpdateUserResponses as vo, type UpdateUserResponse as vp, type SearchUserTasksData as vq, type SearchUserTasksErrors as vr, type SearchUserTasksError as vs, type SearchUserTasksResponses as vt, type SearchUserTasksResponse as vu, type GetUserTaskData as vv, type GetUserTaskErrors as vw, type GetUserTaskError as vx, type GetUserTaskResponses as vy, type GetUserTaskResponse as vz, type AuditLogSearchQuerySortRequest as w, type deleteMappingRuleInput as w$, type GetUserTaskFormResponses as w0, type GetUserTaskFormResponse as w1, type SearchUserTaskVariablesData as w2, type SearchUserTaskVariablesErrors as w3, type SearchUserTaskVariablesError as w4, type SearchUserTaskVariablesResponses as w5, type SearchUserTaskVariablesResponse as w6, type SearchVariablesData as w7, type SearchVariablesErrors as w8, type SearchVariablesError as w9, type cancelProcessInstancesBatchOperationInput as wA, type completeJobInput as wB, type completeUserTaskInput as wC, type correlateMessageInput as wD, type createAdminUserInput as wE, type createAuthorizationInput as wF, type createDeploymentInput as wG, type createDocumentInput as wH, type createDocumentLinkInput as wI, type createDocumentsInput as wJ, type createElementInstanceVariablesInput as wK, type createGlobalClusterVariableInput as wL, type createGlobalTaskListenerInput as wM, type createGroupInput as wN, type createMappingRuleInput as wO, type createProcessInstanceInput as wP, type createRoleInput as wQ, type createTenantInput as wR, type createTenantClusterVariableInput as wS, type createUserInput as wT, type deleteAuthorizationInput as wU, type deleteDecisionInstanceInput as wV, type deleteDecisionInstancesBatchOperationInput as wW, type deleteDocumentInput as wX, type deleteGlobalClusterVariableInput as wY, type deleteGlobalTaskListenerInput as wZ, type deleteGroupInput as w_, type SearchVariablesResponses as wa, type SearchVariablesResponse as wb, type GetVariableData as wc, type GetVariableErrors as wd, type GetVariableError as we, type GetVariableResponses as wf, type GetVariableResponse as wg, assertConstraint as wh, type activateAdHocSubProcessActivitiesInput as wi, type activateJobsInput as wj, type assignClientToGroupInput as wk, type assignClientToTenantInput as wl, type assignGroupToTenantInput as wm, type assignMappingRuleToGroupInput as wn, type assignMappingRuleToTenantInput as wo, type assignRoleToClientInput as wp, type assignRoleToGroupInput as wq, type assignRoleToMappingRuleInput as wr, type assignRoleToTenantInput as ws, type assignRoleToUserInput as wt, type assignUserTaskInput as wu, type assignUserToGroupInput as wv, type assignUserToTenantInput as ww, type broadcastSignalInput as wx, type cancelBatchOperationInput as wy, type cancelProcessInstanceInput as wz, type AuditLogSearchQueryRequest as x, type getProcessDefinitionXmlConsistency as x$, type deleteProcessInstanceInput as x0, type deleteProcessInstancesBatchOperationInput as x1, type deleteResourceInput as x2, type deleteRoleInput as x3, type deleteTenantInput as x4, type deleteTenantClusterVariableInput as x5, type deleteUserInput as x6, type evaluateConditionalsInput as x7, type evaluateDecisionInput as x8, type evaluateExpressionInput as x9, type getGlobalTaskListenerConsistency as xA, type getGroupInput as xB, type getGroupConsistency as xC, type getIncidentInput as xD, type getIncidentConsistency as xE, type getJobErrorStatisticsInput as xF, type getJobErrorStatisticsConsistency as xG, type getJobTimeSeriesStatisticsInput as xH, type getJobTimeSeriesStatisticsConsistency as xI, type getJobTypeStatisticsInput as xJ, type getJobTypeStatisticsConsistency as xK, type getJobWorkerStatisticsInput as xL, type getJobWorkerStatisticsConsistency as xM, type getLicenseInput as xN, type getMappingRuleInput as xO, type getMappingRuleConsistency as xP, type getProcessDefinitionInput as xQ, type getProcessDefinitionConsistency as xR, type getProcessDefinitionInstanceStatisticsInput as xS, type getProcessDefinitionInstanceStatisticsConsistency as xT, type getProcessDefinitionInstanceVersionStatisticsInput as xU, type getProcessDefinitionInstanceVersionStatisticsConsistency as xV, type getProcessDefinitionMessageSubscriptionStatisticsInput as xW, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as xX, type getProcessDefinitionStatisticsInput as xY, type getProcessDefinitionStatisticsConsistency as xZ, type getProcessDefinitionXmlInput as x_, type failJobInput as xa, type getAuditLogInput as xb, type getAuditLogConsistency as xc, type getAuthenticationInput as xd, type getAuthorizationInput as xe, type getAuthorizationConsistency as xf, type getBatchOperationInput as xg, type getBatchOperationConsistency as xh, type getDecisionDefinitionInput as xi, type getDecisionDefinitionConsistency as xj, type getDecisionDefinitionXmlInput as xk, type getDecisionDefinitionXmlConsistency as xl, type getDecisionInstanceInput as xm, type getDecisionInstanceConsistency as xn, type getDecisionRequirementsInput as xo, type getDecisionRequirementsConsistency as xp, type getDecisionRequirementsXmlInput as xq, type getDecisionRequirementsXmlConsistency as xr, type getDocumentInput as xs, type getElementInstanceInput as xt, type getElementInstanceConsistency as xu, type getGlobalClusterVariableInput as xv, type getGlobalClusterVariableConsistency as xw, type getGlobalJobStatisticsInput as xx, type getGlobalJobStatisticsConsistency as xy, type getGlobalTaskListenerInput as xz, type AuditLogFilter as y, type searchCorrelatedMessageSubscriptionsConsistency as y$, type getProcessInstanceInput as y0, type getProcessInstanceConsistency as y1, type getProcessInstanceCallHierarchyInput as y2, type getProcessInstanceCallHierarchyConsistency as y3, type getProcessInstanceSequenceFlowsInput as y4, type getProcessInstanceSequenceFlowsConsistency as y5, type getProcessInstanceStatisticsInput as y6, type getProcessInstanceStatisticsConsistency as y7, type getProcessInstanceStatisticsByDefinitionInput as y8, type getProcessInstanceStatisticsByDefinitionConsistency as y9, type migrateProcessInstancesBatchOperationInput as yA, type modifyProcessInstanceInput as yB, type modifyProcessInstancesBatchOperationInput as yC, type pinClockInput as yD, type publishMessageInput as yE, type resetClockInput as yF, type resolveIncidentInput as yG, type resolveIncidentsBatchOperationInput as yH, type resolveProcessInstanceIncidentsInput as yI, type resumeBatchOperationInput as yJ, type searchAuditLogsInput as yK, type searchAuditLogsConsistency as yL, type searchAuthorizationsInput as yM, type searchAuthorizationsConsistency as yN, type searchBatchOperationItemsInput as yO, type searchBatchOperationItemsConsistency as yP, type searchBatchOperationsInput as yQ, type searchBatchOperationsConsistency as yR, type searchClientsForGroupInput as yS, type searchClientsForGroupConsistency as yT, type searchClientsForRoleInput as yU, type searchClientsForRoleConsistency as yV, type searchClientsForTenantInput as yW, type searchClientsForTenantConsistency as yX, type searchClusterVariablesInput as yY, type searchClusterVariablesConsistency as yZ, type searchCorrelatedMessageSubscriptionsInput as y_, type getProcessInstanceStatisticsByErrorInput as ya, type getProcessInstanceStatisticsByErrorConsistency as yb, type getResourceInput as yc, type getResourceContentInput as yd, type getRoleInput as ye, type getRoleConsistency as yf, type getStartProcessFormInput as yg, type getStartProcessFormConsistency as yh, type getStatusInput as yi, type getSystemConfigurationInput as yj, type getTenantInput as yk, type getTenantConsistency as yl, type getTenantClusterVariableInput as ym, type getTenantClusterVariableConsistency as yn, type getTopologyInput as yo, type getUsageMetricsInput as yp, type getUsageMetricsConsistency as yq, type getUserInput as yr, type getUserConsistency as ys, type getUserTaskInput as yt, type getUserTaskConsistency as yu, type getUserTaskFormInput as yv, type getUserTaskFormConsistency as yw, type getVariableInput as yx, type getVariableConsistency as yy, type migrateProcessInstanceInput as yz, type AuditLogSearchQueryResult as z, type throwJobErrorInput as z$, type searchDecisionDefinitionsInput as z0, type searchDecisionDefinitionsConsistency as z1, type searchDecisionInstancesInput as z2, type searchDecisionInstancesConsistency as z3, type searchDecisionRequirementsInput as z4, type searchDecisionRequirementsConsistency as z5, type searchElementInstanceIncidentsInput as z6, type searchElementInstanceIncidentsConsistency as z7, type searchElementInstancesInput as z8, type searchElementInstancesConsistency as z9, type searchProcessInstancesInput as zA, type searchProcessInstancesConsistency as zB, type searchRolesInput as zC, type searchRolesConsistency as zD, type searchRolesForGroupInput as zE, type searchRolesForGroupConsistency as zF, type searchRolesForTenantInput as zG, type searchRolesForTenantConsistency as zH, type searchTenantsInput as zI, type searchTenantsConsistency as zJ, type searchUsersInput as zK, type searchUsersConsistency as zL, type searchUsersForGroupInput as zM, type searchUsersForGroupConsistency as zN, type searchUsersForRoleInput as zO, type searchUsersForRoleConsistency as zP, type searchUsersForTenantInput as zQ, type searchUsersForTenantConsistency as zR, type searchUserTaskAuditLogsInput as zS, type searchUserTaskAuditLogsConsistency as zT, type searchUserTasksInput as zU, type searchUserTasksConsistency as zV, type searchUserTaskVariablesInput as zW, type searchUserTaskVariablesConsistency as zX, type searchVariablesInput as zY, type searchVariablesConsistency as zZ, type suspendBatchOperationInput as z_, type searchGlobalTaskListenersInput as za, type searchGlobalTaskListenersConsistency as zb, type searchGroupIdsForTenantInput as zc, type searchGroupIdsForTenantConsistency as zd, type searchGroupsInput as ze, type searchGroupsConsistency as zf, type searchGroupsForRoleInput as zg, type searchGroupsForRoleConsistency as zh, type searchIncidentsInput as zi, type searchIncidentsConsistency as zj, type searchJobsInput as zk, type searchJobsConsistency as zl, type searchMappingRuleInput as zm, type searchMappingRuleConsistency as zn, type searchMappingRulesForGroupInput as zo, type searchMappingRulesForGroupConsistency as zp, type searchMappingRulesForRoleInput as zq, type searchMappingRulesForRoleConsistency as zr, type searchMappingRulesForTenantInput as zs, type searchMappingRulesForTenantConsistency as zt, type searchMessageSubscriptionsInput as zu, type searchMessageSubscriptionsConsistency as zv, type searchProcessDefinitionsInput as zw, type searchProcessDefinitionsConsistency as zx, type searchProcessInstanceIncidentsInput as zy, type searchProcessInstanceIncidentsConsistency as zz };
|