@camunda8/orchestration-cluster-api 8.9.0-alpha.1 → 8.9.0-alpha.3
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 +14 -0
- package/dist/{chunk-2TYCJIPM.js → chunk-TDV2PIHJ.js} +1140 -299
- package/dist/chunk-TDV2PIHJ.js.map +1 -0
- package/dist/fp/index.cjs +1139 -298
- package/dist/fp/index.cjs.map +1 -1
- package/dist/fp/index.d.cts +1 -1
- package/dist/fp/index.d.ts +1 -1
- package/dist/fp/index.js +1 -1
- package/dist/{index-DzDwKhSN.d.cts → index-Cgy-WL94.d.cts} +1641 -385
- package/dist/{index-Ds4IHZmG.d.ts → index-D7fgCwa4.d.ts} +1641 -385
- package/dist/index.cjs +1156 -292
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +23 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -4
- package/dist/chunk-2TYCJIPM.js.map +0 -1
|
@@ -757,6 +757,7 @@ type AuditLogResult = {
|
|
|
757
757
|
* The key of the process instance.
|
|
758
758
|
*/
|
|
759
759
|
processInstanceKey?: ProcessInstanceKey;
|
|
760
|
+
rootProcessInstanceKey?: RootProcessInstanceKey;
|
|
760
761
|
/**
|
|
761
762
|
* The key of the element instance.
|
|
762
763
|
*/
|
|
@@ -801,6 +802,24 @@ type AuditLogResult = {
|
|
|
801
802
|
* The system-assigned key for this resource.
|
|
802
803
|
*/
|
|
803
804
|
resourceKey?: ResourceKey;
|
|
805
|
+
/**
|
|
806
|
+
* The key of the related entity. The content depends on the operation type and entity type.
|
|
807
|
+
* For example, for authorization operations, this will contain the ID of the owner (e.g., user or group) the authorization belongs to.
|
|
808
|
+
*
|
|
809
|
+
*/
|
|
810
|
+
relatedEntityKey?: AuditLogEntityKey;
|
|
811
|
+
/**
|
|
812
|
+
* The type of the related entity. The content depends on the operation type and entity type.
|
|
813
|
+
* For example, for authorization operations, this will contain the type of the owner (e.g., USER or GROUP) the authorization belongs to.
|
|
814
|
+
*
|
|
815
|
+
*/
|
|
816
|
+
relatedEntityType?: AuditLogEntityTypeEnum;
|
|
817
|
+
/**
|
|
818
|
+
* Additional description of the entity affected by the operation.
|
|
819
|
+
* For example, for variable operations, this will contain the variable name.
|
|
820
|
+
*
|
|
821
|
+
*/
|
|
822
|
+
entityDescription?: string;
|
|
804
823
|
};
|
|
805
824
|
type AuditLogSearchQuerySortRequest = {
|
|
806
825
|
/**
|
|
@@ -879,17 +898,65 @@ type AuditLogFilter = {
|
|
|
879
898
|
*/
|
|
880
899
|
category?: CategoryFilterProperty;
|
|
881
900
|
/**
|
|
882
|
-
* The deployment key filter.
|
|
901
|
+
* The deployment key search filter.
|
|
883
902
|
*/
|
|
884
903
|
deploymentKey?: DeploymentKeyFilterProperty;
|
|
885
904
|
/**
|
|
886
|
-
* The form key filter.
|
|
905
|
+
* The form key search filter.
|
|
887
906
|
*/
|
|
888
907
|
formKey?: FormKeyFilterProperty;
|
|
889
908
|
/**
|
|
890
|
-
* The resource key filter.
|
|
909
|
+
* The resource key search filter.
|
|
891
910
|
*/
|
|
892
911
|
resourceKey?: ResourceKeyFilterProperty;
|
|
912
|
+
/**
|
|
913
|
+
* The batch operation type search filter.
|
|
914
|
+
*/
|
|
915
|
+
batchOperationType?: BatchOperationTypeFilterProperty;
|
|
916
|
+
/**
|
|
917
|
+
* The process definition ID search filter.
|
|
918
|
+
*/
|
|
919
|
+
processDefinitionId?: StringFilterProperty;
|
|
920
|
+
/**
|
|
921
|
+
* The job key search filter.
|
|
922
|
+
*/
|
|
923
|
+
jobKey?: JobKeyFilterProperty;
|
|
924
|
+
/**
|
|
925
|
+
* The user task key search filter.
|
|
926
|
+
*/
|
|
927
|
+
userTaskKey?: BasicStringFilterProperty;
|
|
928
|
+
/**
|
|
929
|
+
* The decision requirements ID search filter.
|
|
930
|
+
*/
|
|
931
|
+
decisionRequirementsId?: StringFilterProperty;
|
|
932
|
+
/**
|
|
933
|
+
* The decision requirements key search filter.
|
|
934
|
+
*/
|
|
935
|
+
decisionRequirementsKey?: DecisionRequirementsKeyFilterProperty;
|
|
936
|
+
/**
|
|
937
|
+
* The decision definition ID search filter.
|
|
938
|
+
*/
|
|
939
|
+
decisionDefinitionId?: StringFilterProperty;
|
|
940
|
+
/**
|
|
941
|
+
* The decision definition key search filter.
|
|
942
|
+
*/
|
|
943
|
+
decisionDefinitionKey?: DecisionDefinitionKeyFilterProperty;
|
|
944
|
+
/**
|
|
945
|
+
* The decision evaluation key search filter.
|
|
946
|
+
*/
|
|
947
|
+
decisionEvaluationKey?: DecisionEvaluationKeyFilterProperty;
|
|
948
|
+
/**
|
|
949
|
+
* The related entity key search filter.
|
|
950
|
+
*/
|
|
951
|
+
relatedEntityKey?: AuditLogEntityKeyFilterProperty;
|
|
952
|
+
/**
|
|
953
|
+
* The related entity type search filter.
|
|
954
|
+
*/
|
|
955
|
+
relatedEntityType?: EntityTypeFilterProperty;
|
|
956
|
+
/**
|
|
957
|
+
* The entity description filter.
|
|
958
|
+
*/
|
|
959
|
+
entityDescription?: StringFilterProperty;
|
|
893
960
|
};
|
|
894
961
|
/**
|
|
895
962
|
* Audit log search response.
|
|
@@ -903,7 +970,7 @@ type AuditLogSearchQueryResult = SearchQueryResponse & {
|
|
|
903
970
|
/**
|
|
904
971
|
* The type of entity affected by the operation.
|
|
905
972
|
*/
|
|
906
|
-
type AuditLogEntityTypeEnum = 'AUTHORIZATION' | 'BATCH' | 'DECISION' | 'GROUP' | 'INCIDENT' | 'MAPPING_RULE' | 'PROCESS_INSTANCE' | 'RESOURCE' | 'ROLE' | 'TENANT' | 'USER' | 'USER_TASK' | 'VARIABLE';
|
|
973
|
+
type AuditLogEntityTypeEnum = 'AUTHORIZATION' | 'BATCH' | 'DECISION' | 'GROUP' | 'INCIDENT' | 'MAPPING_RULE' | 'PROCESS_INSTANCE' | 'RESOURCE' | 'ROLE' | 'TENANT' | 'USER' | 'USER_TASK' | 'VARIABLE' | 'CLIENT';
|
|
907
974
|
/**
|
|
908
975
|
* The type of operation performed.
|
|
909
976
|
*/
|
|
@@ -1318,7 +1385,7 @@ type BatchOperationFilter = {
|
|
|
1318
1385
|
/**
|
|
1319
1386
|
* The type of the actor who performed the operation.
|
|
1320
1387
|
*/
|
|
1321
|
-
actorType?:
|
|
1388
|
+
actorType?: AuditLogActorTypeEnum;
|
|
1322
1389
|
/**
|
|
1323
1390
|
* The ID of the actor who performed the operation.
|
|
1324
1391
|
*/
|
|
@@ -1348,7 +1415,7 @@ type BatchOperationResponse = {
|
|
|
1348
1415
|
* The end date of the batch operation.
|
|
1349
1416
|
*/
|
|
1350
1417
|
endDate?: string;
|
|
1351
|
-
actorType?:
|
|
1418
|
+
actorType?: AuditLogActorTypeEnum;
|
|
1352
1419
|
/**
|
|
1353
1420
|
* The ID of the actor who performed the operation. Available for batch operations created since 8.9.
|
|
1354
1421
|
*/
|
|
@@ -1449,6 +1516,7 @@ type BatchOperationItemResponse = {
|
|
|
1449
1516
|
* the process instance key of the processed item.
|
|
1450
1517
|
*/
|
|
1451
1518
|
processInstanceKey?: ProcessInstanceKey;
|
|
1519
|
+
rootProcessInstanceKey?: RootProcessInstanceKey;
|
|
1452
1520
|
/**
|
|
1453
1521
|
* State of the item.
|
|
1454
1522
|
*/
|
|
@@ -1462,6 +1530,16 @@ type BatchOperationItemResponse = {
|
|
|
1462
1530
|
*/
|
|
1463
1531
|
errorMessage?: string;
|
|
1464
1532
|
};
|
|
1533
|
+
/**
|
|
1534
|
+
* The decision instance filter that defines which decision instances should be deleted.
|
|
1535
|
+
*/
|
|
1536
|
+
type DecisionInstanceDeletionBatchOperationRequest = {
|
|
1537
|
+
/**
|
|
1538
|
+
* The decision instance filter.
|
|
1539
|
+
*/
|
|
1540
|
+
filter: DecisionInstanceFilter;
|
|
1541
|
+
operationReference?: OperationReference;
|
|
1542
|
+
};
|
|
1465
1543
|
/**
|
|
1466
1544
|
* The process instance filter that defines which process instances should be canceled.
|
|
1467
1545
|
*/
|
|
@@ -1561,11 +1639,7 @@ type BatchOperationStateEnum = 'ACTIVE' | 'CANCELED' | 'COMPLETED' | 'CREATED' |
|
|
|
1561
1639
|
/**
|
|
1562
1640
|
* The type of the batch operation.
|
|
1563
1641
|
*/
|
|
1564
|
-
type BatchOperationTypeEnum = 'ADD_VARIABLE' | 'CANCEL_PROCESS_INSTANCE' | 'DELETE_DECISION_DEFINITION' | 'DELETE_PROCESS_DEFINITION' | 'DELETE_PROCESS_INSTANCE' | 'MIGRATE_PROCESS_INSTANCE' | 'MODIFY_PROCESS_INSTANCE' | 'RESOLVE_INCIDENT' | 'UPDATE_VARIABLE';
|
|
1565
|
-
/**
|
|
1566
|
-
* The type of the actor. Available for batch operations created since 8.9.
|
|
1567
|
-
*/
|
|
1568
|
-
type BatchOperationActorTypeEnum = 'CLIENT' | 'USER';
|
|
1642
|
+
type BatchOperationTypeEnum = 'ADD_VARIABLE' | 'CANCEL_PROCESS_INSTANCE' | 'DELETE_DECISION_DEFINITION' | 'DELETE_DECISION_INSTANCE' | 'DELETE_PROCESS_DEFINITION' | 'DELETE_PROCESS_INSTANCE' | 'MIGRATE_PROCESS_INSTANCE' | 'MODIFY_PROCESS_INSTANCE' | 'RESOLVE_INCIDENT' | 'UPDATE_VARIABLE';
|
|
1569
1643
|
/**
|
|
1570
1644
|
* BatchOperationTypeEnum property with full advanced search capabilities.
|
|
1571
1645
|
*/
|
|
@@ -1672,6 +1746,14 @@ type CreateClusterVariableRequest = {
|
|
|
1672
1746
|
[key: string]: unknown;
|
|
1673
1747
|
};
|
|
1674
1748
|
};
|
|
1749
|
+
type UpdateClusterVariableRequest = {
|
|
1750
|
+
/**
|
|
1751
|
+
* The new value of the cluster variable. Can be any JSON object or primitive value. Will be serialized as a JSON string in responses.
|
|
1752
|
+
*/
|
|
1753
|
+
value: {
|
|
1754
|
+
[key: string]: unknown;
|
|
1755
|
+
};
|
|
1756
|
+
};
|
|
1675
1757
|
type ClusterVariableResult = ClusterVariableResultBase & {
|
|
1676
1758
|
/**
|
|
1677
1759
|
* Full value of this cluster variable.
|
|
@@ -2237,7 +2319,14 @@ type DecisionInstanceFilter = {
|
|
|
2237
2319
|
* The key of the root decision definition.
|
|
2238
2320
|
*/
|
|
2239
2321
|
rootDecisionDefinitionKey?: DecisionDefinitionKeyFilterProperty;
|
|
2322
|
+
/**
|
|
2323
|
+
* The key of the decision requirements definition.
|
|
2324
|
+
*/
|
|
2325
|
+
decisionRequirementsKey?: DecisionRequirementsKeyFilterProperty;
|
|
2240
2326
|
};
|
|
2327
|
+
type DeleteDecisionInstanceRequest = {
|
|
2328
|
+
operationReference?: OperationReference;
|
|
2329
|
+
} | null;
|
|
2241
2330
|
type DecisionInstanceSearchQueryResult = SearchQueryResponse & {
|
|
2242
2331
|
/**
|
|
2243
2332
|
* The matching decision instances.
|
|
@@ -2288,6 +2377,7 @@ type DecisionInstanceResult = {
|
|
|
2288
2377
|
* The key of the process instance.
|
|
2289
2378
|
*/
|
|
2290
2379
|
processInstanceKey?: ProcessInstanceKey;
|
|
2380
|
+
rootProcessInstanceKey?: RootProcessInstanceKey;
|
|
2291
2381
|
/**
|
|
2292
2382
|
* The key of the decision.
|
|
2293
2383
|
*/
|
|
@@ -2976,6 +3066,7 @@ type ElementInstanceResult = {
|
|
|
2976
3066
|
* The process instance key associated to this element instance.
|
|
2977
3067
|
*/
|
|
2978
3068
|
processInstanceKey: ProcessInstanceKey;
|
|
3069
|
+
rootProcessInstanceKey?: RootProcessInstanceKey;
|
|
2979
3070
|
/**
|
|
2980
3071
|
* The process definition key associated to this element instance.
|
|
2981
3072
|
*/
|
|
@@ -3238,7 +3329,7 @@ type GroupUpdateRequest = {
|
|
|
3238
3329
|
/**
|
|
3239
3330
|
* The new description of the group.
|
|
3240
3331
|
*/
|
|
3241
|
-
description
|
|
3332
|
+
description?: string;
|
|
3242
3333
|
};
|
|
3243
3334
|
type GroupUpdateResult = {
|
|
3244
3335
|
/**
|
|
@@ -3546,6 +3637,7 @@ type IncidentResult = {
|
|
|
3546
3637
|
* The process instance key associated to this incident.
|
|
3547
3638
|
*/
|
|
3548
3639
|
processInstanceKey?: ProcessInstanceKey;
|
|
3640
|
+
rootProcessInstanceKey?: RootProcessInstanceKey;
|
|
3549
3641
|
/**
|
|
3550
3642
|
* The element instance key associated to this incident.
|
|
3551
3643
|
*/
|
|
@@ -3656,6 +3748,31 @@ type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest = {
|
|
|
3656
3748
|
field: 'activeInstancesWithErrorCount' | 'processDefinitionKey' | 'tenantId';
|
|
3657
3749
|
order?: SortOrderEnum;
|
|
3658
3750
|
};
|
|
3751
|
+
/**
|
|
3752
|
+
* Global job statistics query result.
|
|
3753
|
+
*/
|
|
3754
|
+
type GlobalJobStatisticsQueryResult = {
|
|
3755
|
+
created: StatusMetric;
|
|
3756
|
+
completed: StatusMetric;
|
|
3757
|
+
failed: StatusMetric;
|
|
3758
|
+
/**
|
|
3759
|
+
* True if some data is missing because internal limits were reached and some metrics were not recorded.
|
|
3760
|
+
*/
|
|
3761
|
+
isIncomplete: boolean;
|
|
3762
|
+
};
|
|
3763
|
+
/**
|
|
3764
|
+
* Metric for a single job status.
|
|
3765
|
+
*/
|
|
3766
|
+
type StatusMetric = {
|
|
3767
|
+
/**
|
|
3768
|
+
* Number of jobs in this status.
|
|
3769
|
+
*/
|
|
3770
|
+
count: number;
|
|
3771
|
+
/**
|
|
3772
|
+
* ISO 8601 timestamp of the last update for this status.
|
|
3773
|
+
*/
|
|
3774
|
+
lastUpdatedAt: string;
|
|
3775
|
+
};
|
|
3659
3776
|
type JobActivationRequest = {
|
|
3660
3777
|
/**
|
|
3661
3778
|
* The job type, as defined in the BPMN process (e.g. <zeebe:taskDefinition type="payment-service" />)
|
|
@@ -3687,6 +3804,11 @@ type JobActivationRequest = {
|
|
|
3687
3804
|
* A list of IDs of tenants for which to activate jobs.
|
|
3688
3805
|
*/
|
|
3689
3806
|
tenantIds?: Array<TenantId>;
|
|
3807
|
+
/**
|
|
3808
|
+
* The tenant filtering strategy - determines whether to use provided tenant IDs or assigned tenant IDs from the authenticated principal's authorized tenants.
|
|
3809
|
+
*
|
|
3810
|
+
*/
|
|
3811
|
+
tenantFilter?: TenantFilterEnum;
|
|
3690
3812
|
};
|
|
3691
3813
|
/**
|
|
3692
3814
|
* The list of activated jobs
|
|
@@ -3988,6 +4110,7 @@ type JobSearchResult = {
|
|
|
3988
4110
|
* The process instance key associated with the job.
|
|
3989
4111
|
*/
|
|
3990
4112
|
processInstanceKey: ProcessInstanceKey;
|
|
4113
|
+
rootProcessInstanceKey?: RootProcessInstanceKey;
|
|
3991
4114
|
/**
|
|
3992
4115
|
* The amount of retries left to this job.
|
|
3993
4116
|
*/
|
|
@@ -4185,6 +4308,11 @@ type JobChangeset = {
|
|
|
4185
4308
|
*/
|
|
4186
4309
|
timeout?: number | null;
|
|
4187
4310
|
};
|
|
4311
|
+
/**
|
|
4312
|
+
* The tenant filtering strategy for job activation. Determines whether to use tenant IDs provided in the request or tenant IDs assigned to the authenticated principal.
|
|
4313
|
+
*
|
|
4314
|
+
*/
|
|
4315
|
+
type TenantFilterEnum = 'PROVIDED' | 'ASSIGNED';
|
|
4188
4316
|
/**
|
|
4189
4317
|
* The state of the job.
|
|
4190
4318
|
*/
|
|
@@ -4601,6 +4729,68 @@ type AdvancedFormKeyFilter = {
|
|
|
4601
4729
|
*/
|
|
4602
4730
|
$notIn?: Array<FormKey>;
|
|
4603
4731
|
};
|
|
4732
|
+
/**
|
|
4733
|
+
* DecisionEvaluationKey property with full advanced search capabilities.
|
|
4734
|
+
*/
|
|
4735
|
+
type DecisionEvaluationKeyFilterProperty = DecisionEvaluationKey | AdvancedDecisionEvaluationKeyFilter;
|
|
4736
|
+
/**
|
|
4737
|
+
* Advanced filter
|
|
4738
|
+
*
|
|
4739
|
+
* Advanced DecisionEvaluationKey filter.
|
|
4740
|
+
*/
|
|
4741
|
+
type AdvancedDecisionEvaluationKeyFilter = {
|
|
4742
|
+
/**
|
|
4743
|
+
* Checks for equality with the provided value.
|
|
4744
|
+
*/
|
|
4745
|
+
$eq?: DecisionEvaluationKey;
|
|
4746
|
+
/**
|
|
4747
|
+
* Checks for inequality with the provided value.
|
|
4748
|
+
*/
|
|
4749
|
+
$neq?: DecisionEvaluationKey;
|
|
4750
|
+
/**
|
|
4751
|
+
* Checks if the current property exists.
|
|
4752
|
+
*/
|
|
4753
|
+
$exists?: boolean;
|
|
4754
|
+
/**
|
|
4755
|
+
* Checks if the property matches any of the provided values.
|
|
4756
|
+
*/
|
|
4757
|
+
$in?: Array<DecisionEvaluationKey>;
|
|
4758
|
+
/**
|
|
4759
|
+
* Checks if the property matches none of the provided values.
|
|
4760
|
+
*/
|
|
4761
|
+
$notIn?: Array<DecisionEvaluationKey>;
|
|
4762
|
+
};
|
|
4763
|
+
/**
|
|
4764
|
+
* DecisionRequirementsKey property with full advanced search capabilities.
|
|
4765
|
+
*/
|
|
4766
|
+
type DecisionRequirementsKeyFilterProperty = DecisionRequirementsKey | AdvancedDecisionRequirementsKeyFilter;
|
|
4767
|
+
/**
|
|
4768
|
+
* Advanced filter
|
|
4769
|
+
*
|
|
4770
|
+
* Advanced DecisionRequirementsKey filter.
|
|
4771
|
+
*/
|
|
4772
|
+
type AdvancedDecisionRequirementsKeyFilter = {
|
|
4773
|
+
/**
|
|
4774
|
+
* Checks for equality with the provided value.
|
|
4775
|
+
*/
|
|
4776
|
+
$eq?: DecisionRequirementsKey;
|
|
4777
|
+
/**
|
|
4778
|
+
* Checks for inequality with the provided value.
|
|
4779
|
+
*/
|
|
4780
|
+
$neq?: DecisionRequirementsKey;
|
|
4781
|
+
/**
|
|
4782
|
+
* Checks if the current property exists.
|
|
4783
|
+
*/
|
|
4784
|
+
$exists?: boolean;
|
|
4785
|
+
/**
|
|
4786
|
+
* Checks if the property matches any of the provided values.
|
|
4787
|
+
*/
|
|
4788
|
+
$in?: Array<DecisionRequirementsKey>;
|
|
4789
|
+
/**
|
|
4790
|
+
* Checks if the property matches none of the provided values.
|
|
4791
|
+
*/
|
|
4792
|
+
$notIn?: Array<DecisionRequirementsKey>;
|
|
4793
|
+
};
|
|
4604
4794
|
/**
|
|
4605
4795
|
* The response of a license request.
|
|
4606
4796
|
*/
|
|
@@ -4831,6 +5021,7 @@ type MessageSubscriptionResult = {
|
|
|
4831
5021
|
* The process instance key associated with this message subscription.
|
|
4832
5022
|
*/
|
|
4833
5023
|
processInstanceKey?: ProcessInstanceKey;
|
|
5024
|
+
rootProcessInstanceKey?: RootProcessInstanceKey;
|
|
4834
5025
|
/**
|
|
4835
5026
|
* The element ID associated with this message subscription.
|
|
4836
5027
|
*/
|
|
@@ -4967,6 +5158,7 @@ type CorrelatedMessageSubscriptionResult = {
|
|
|
4967
5158
|
* The process instance key associated with this correlated message subscription.
|
|
4968
5159
|
*/
|
|
4969
5160
|
processInstanceKey: ProcessInstanceKey;
|
|
5161
|
+
rootProcessInstanceKey?: RootProcessInstanceKey;
|
|
4970
5162
|
/**
|
|
4971
5163
|
* The subscription key that received the message.
|
|
4972
5164
|
*/
|
|
@@ -5369,12 +5561,16 @@ type ProcessDefinitionInstanceVersionStatisticsQuery = {
|
|
|
5369
5561
|
/**
|
|
5370
5562
|
* The process definition instance version statistics search filters.
|
|
5371
5563
|
*/
|
|
5372
|
-
filter
|
|
5564
|
+
filter: ProcessDefinitionInstanceVersionStatisticsFilter;
|
|
5373
5565
|
};
|
|
5374
5566
|
/**
|
|
5375
5567
|
* Process definition instance version statistics search filter.
|
|
5376
5568
|
*/
|
|
5377
5569
|
type ProcessDefinitionInstanceVersionStatisticsFilter = {
|
|
5570
|
+
/**
|
|
5571
|
+
* The ID of the process definition to retrieve version statistics for.
|
|
5572
|
+
*/
|
|
5573
|
+
processDefinitionId: ProcessDefinitionId;
|
|
5378
5574
|
/**
|
|
5379
5575
|
* Tenant ID of this process definition.
|
|
5380
5576
|
*/
|
|
@@ -5506,6 +5702,12 @@ type ProcessInstanceCreationInstructionByKey = {
|
|
|
5506
5702
|
*
|
|
5507
5703
|
*/
|
|
5508
5704
|
processDefinitionKey: ProcessDefinitionKey;
|
|
5705
|
+
/**
|
|
5706
|
+
* As the version is already identified by the `processDefinitionKey`, the value of this field is ignored.
|
|
5707
|
+
* It's here for backwards-compatibility only as previous releases accepted it in request bodies.
|
|
5708
|
+
*
|
|
5709
|
+
*/
|
|
5710
|
+
processDefinitionVersion?: number;
|
|
5509
5711
|
/**
|
|
5510
5712
|
* JSON object that will instantiate the variables for the root variable scope
|
|
5511
5713
|
* of the process instance.
|
|
@@ -5860,6 +6062,7 @@ type ProcessInstanceResult = {
|
|
|
5860
6062
|
* The parent element instance key.
|
|
5861
6063
|
*/
|
|
5862
6064
|
parentElementInstanceKey?: ElementInstanceKey;
|
|
6065
|
+
rootProcessInstanceKey?: RootProcessInstanceKey;
|
|
5863
6066
|
tags?: TagSet;
|
|
5864
6067
|
};
|
|
5865
6068
|
type CancelProcessInstanceRequest = {
|
|
@@ -5903,6 +6106,7 @@ type ProcessInstanceSequenceFlowResult = {
|
|
|
5903
6106
|
* The key of this process instance.
|
|
5904
6107
|
*/
|
|
5905
6108
|
processInstanceKey?: ProcessInstanceKey;
|
|
6109
|
+
rootProcessInstanceKey?: RootProcessInstanceKey;
|
|
5906
6110
|
/**
|
|
5907
6111
|
* The process definition key.
|
|
5908
6112
|
*/
|
|
@@ -6212,7 +6416,7 @@ type RoleUpdateRequest = {
|
|
|
6212
6416
|
/**
|
|
6213
6417
|
* The description of the new role.
|
|
6214
6418
|
*/
|
|
6215
|
-
description
|
|
6419
|
+
description?: string;
|
|
6216
6420
|
};
|
|
6217
6421
|
type RoleUpdateResult = {
|
|
6218
6422
|
/**
|
|
@@ -6532,7 +6736,7 @@ type TenantUpdateRequest = {
|
|
|
6532
6736
|
/**
|
|
6533
6737
|
* The new description of the tenant.
|
|
6534
6738
|
*/
|
|
6535
|
-
description
|
|
6739
|
+
description?: string;
|
|
6536
6740
|
};
|
|
6537
6741
|
type TenantUpdateResult = {
|
|
6538
6742
|
tenantId?: TenantId;
|
|
@@ -6714,7 +6918,7 @@ type UserTaskFilter = {
|
|
|
6714
6918
|
* The task name. This only works for data created with 8.8 and onwards. Instances from prior versions don't contain this data and cannot be found.
|
|
6715
6919
|
*
|
|
6716
6920
|
*/
|
|
6717
|
-
name?:
|
|
6921
|
+
name?: StringFilterProperty;
|
|
6718
6922
|
/**
|
|
6719
6923
|
* The candidate group for this user task.
|
|
6720
6924
|
*/
|
|
@@ -6857,6 +7061,7 @@ type UserTaskResult = {
|
|
|
6857
7061
|
* The key of the process instance.
|
|
6858
7062
|
*/
|
|
6859
7063
|
processInstanceKey?: ProcessInstanceKey;
|
|
7064
|
+
rootProcessInstanceKey?: RootProcessInstanceKey;
|
|
6860
7065
|
/**
|
|
6861
7066
|
* The key of the form.
|
|
6862
7067
|
*/
|
|
@@ -7251,6 +7456,7 @@ type VariableResultBase = {
|
|
|
7251
7456
|
* The key of the process instance of this variable.
|
|
7252
7457
|
*/
|
|
7253
7458
|
processInstanceKey?: ProcessInstanceKey;
|
|
7459
|
+
rootProcessInstanceKey?: RootProcessInstanceKey;
|
|
7254
7460
|
};
|
|
7255
7461
|
type VariableValueFilterProperty = {
|
|
7256
7462
|
/**
|
|
@@ -7366,6 +7572,7 @@ type SearchAuditLogsResponses = {
|
|
|
7366
7572
|
* The key of the process instance.
|
|
7367
7573
|
*/
|
|
7368
7574
|
processInstanceKey?: ProcessInstanceKey;
|
|
7575
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
7369
7576
|
/**
|
|
7370
7577
|
* The key of the element instance.
|
|
7371
7578
|
*/
|
|
@@ -7410,6 +7617,24 @@ type SearchAuditLogsResponses = {
|
|
|
7410
7617
|
* The system-assigned key for this resource.
|
|
7411
7618
|
*/
|
|
7412
7619
|
resourceKey?: ResourceKey;
|
|
7620
|
+
/**
|
|
7621
|
+
* The key of the related entity. The content depends on the operation type and entity type.
|
|
7622
|
+
* For example, for authorization operations, this will contain the ID of the owner (e.g., user or group) the authorization belongs to.
|
|
7623
|
+
*
|
|
7624
|
+
*/
|
|
7625
|
+
relatedEntityKey?: AuditLogEntityKey;
|
|
7626
|
+
/**
|
|
7627
|
+
* The type of the related entity. The content depends on the operation type and entity type.
|
|
7628
|
+
* For example, for authorization operations, this will contain the type of the owner (e.g., USER or GROUP) the authorization belongs to.
|
|
7629
|
+
*
|
|
7630
|
+
*/
|
|
7631
|
+
relatedEntityType?: AuditLogEntityTypeEnum;
|
|
7632
|
+
/**
|
|
7633
|
+
* Additional description of the entity affected by the operation.
|
|
7634
|
+
* For example, for variable operations, this will contain the variable name.
|
|
7635
|
+
*
|
|
7636
|
+
*/
|
|
7637
|
+
entityDescription?: string;
|
|
7413
7638
|
}>;
|
|
7414
7639
|
};
|
|
7415
7640
|
};
|
|
@@ -7495,6 +7720,7 @@ type GetAuditLogResponses = {
|
|
|
7495
7720
|
* The key of the process instance.
|
|
7496
7721
|
*/
|
|
7497
7722
|
processInstanceKey?: ProcessInstanceKey;
|
|
7723
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
7498
7724
|
/**
|
|
7499
7725
|
* The key of the element instance.
|
|
7500
7726
|
*/
|
|
@@ -7539,6 +7765,24 @@ type GetAuditLogResponses = {
|
|
|
7539
7765
|
* The system-assigned key for this resource.
|
|
7540
7766
|
*/
|
|
7541
7767
|
resourceKey?: ResourceKey;
|
|
7768
|
+
/**
|
|
7769
|
+
* The key of the related entity. The content depends on the operation type and entity type.
|
|
7770
|
+
* For example, for authorization operations, this will contain the ID of the owner (e.g., user or group) the authorization belongs to.
|
|
7771
|
+
*
|
|
7772
|
+
*/
|
|
7773
|
+
relatedEntityKey?: AuditLogEntityKey;
|
|
7774
|
+
/**
|
|
7775
|
+
* The type of the related entity. The content depends on the operation type and entity type.
|
|
7776
|
+
* For example, for authorization operations, this will contain the type of the owner (e.g., USER or GROUP) the authorization belongs to.
|
|
7777
|
+
*
|
|
7778
|
+
*/
|
|
7779
|
+
relatedEntityType?: AuditLogEntityTypeEnum;
|
|
7780
|
+
/**
|
|
7781
|
+
* Additional description of the entity affected by the operation.
|
|
7782
|
+
* For example, for variable operations, this will contain the variable name.
|
|
7783
|
+
*
|
|
7784
|
+
*/
|
|
7785
|
+
entityDescription?: string;
|
|
7542
7786
|
};
|
|
7543
7787
|
};
|
|
7544
7788
|
type GetAuditLogResponse = GetAuditLogResponses[keyof GetAuditLogResponses];
|
|
@@ -7757,7 +8001,40 @@ type UpdateAuthorizationResponses = {
|
|
|
7757
8001
|
};
|
|
7758
8002
|
type UpdateAuthorizationResponse = UpdateAuthorizationResponses[keyof UpdateAuthorizationResponses];
|
|
7759
8003
|
type SearchBatchOperationItemsData = {
|
|
7760
|
-
|
|
8004
|
+
/**
|
|
8005
|
+
* Batch operation item search request.
|
|
8006
|
+
*/
|
|
8007
|
+
body?: SearchQueryRequest & {
|
|
8008
|
+
/**
|
|
8009
|
+
* Sort field criteria.
|
|
8010
|
+
*/
|
|
8011
|
+
sort?: Array<BatchOperationItemSearchQuerySortRequest>;
|
|
8012
|
+
/**
|
|
8013
|
+
* Batch operation item filter request.
|
|
8014
|
+
*/
|
|
8015
|
+
filter?: {
|
|
8016
|
+
/**
|
|
8017
|
+
* The key (or operate legacy ID) of the batch operation.
|
|
8018
|
+
*/
|
|
8019
|
+
batchOperationKey?: BasicStringFilterProperty;
|
|
8020
|
+
/**
|
|
8021
|
+
* The key of the item, e.g. a process instance key.
|
|
8022
|
+
*/
|
|
8023
|
+
itemKey?: BasicStringFilterProperty;
|
|
8024
|
+
/**
|
|
8025
|
+
* The process instance key of the processed item.
|
|
8026
|
+
*/
|
|
8027
|
+
processInstanceKey?: ProcessInstanceKeyFilterProperty;
|
|
8028
|
+
/**
|
|
8029
|
+
* The state of the batch operation.
|
|
8030
|
+
*/
|
|
8031
|
+
state?: BatchOperationItemStateFilterProperty;
|
|
8032
|
+
/**
|
|
8033
|
+
* The type of the batch operation.
|
|
8034
|
+
*/
|
|
8035
|
+
operationType?: BatchOperationTypeFilterProperty;
|
|
8036
|
+
};
|
|
8037
|
+
};
|
|
7761
8038
|
path?: never;
|
|
7762
8039
|
query?: never;
|
|
7763
8040
|
url: '/batch-operation-items/search';
|
|
@@ -7777,11 +8054,76 @@ type SearchBatchOperationItemsResponses = {
|
|
|
7777
8054
|
/**
|
|
7778
8055
|
* The batch operation search result.
|
|
7779
8056
|
*/
|
|
7780
|
-
200:
|
|
8057
|
+
200: SearchQueryResponse & {
|
|
8058
|
+
/**
|
|
8059
|
+
* The matching batch operation items.
|
|
8060
|
+
*/
|
|
8061
|
+
items?: Array<{
|
|
8062
|
+
operationType?: BatchOperationTypeEnum;
|
|
8063
|
+
/**
|
|
8064
|
+
* The key (or operate legacy ID) of the batch operation.
|
|
8065
|
+
*/
|
|
8066
|
+
batchOperationKey?: BatchOperationKey;
|
|
8067
|
+
/**
|
|
8068
|
+
* Key of the item, e.g. a process instance key.
|
|
8069
|
+
*/
|
|
8070
|
+
itemKey?: string;
|
|
8071
|
+
/**
|
|
8072
|
+
* the process instance key of the processed item.
|
|
8073
|
+
*/
|
|
8074
|
+
processInstanceKey?: ProcessInstanceKey;
|
|
8075
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
8076
|
+
/**
|
|
8077
|
+
* State of the item.
|
|
8078
|
+
*/
|
|
8079
|
+
state?: 'ACTIVE' | 'COMPLETED' | 'SKIPPED' | 'CANCELED' | 'FAILED';
|
|
8080
|
+
/**
|
|
8081
|
+
* the date this item was processed.
|
|
8082
|
+
*/
|
|
8083
|
+
processedDate?: string;
|
|
8084
|
+
/**
|
|
8085
|
+
* the error message from the engine in case of a failed operation.
|
|
8086
|
+
*/
|
|
8087
|
+
errorMessage?: string;
|
|
8088
|
+
}>;
|
|
8089
|
+
};
|
|
7781
8090
|
};
|
|
7782
8091
|
type SearchBatchOperationItemsResponse = SearchBatchOperationItemsResponses[keyof SearchBatchOperationItemsResponses];
|
|
7783
8092
|
type SearchBatchOperationsData = {
|
|
7784
|
-
|
|
8093
|
+
/**
|
|
8094
|
+
* Batch operation search request.
|
|
8095
|
+
*/
|
|
8096
|
+
body?: SearchQueryRequest & {
|
|
8097
|
+
/**
|
|
8098
|
+
* Sort field criteria.
|
|
8099
|
+
*/
|
|
8100
|
+
sort?: Array<BatchOperationSearchQuerySortRequest>;
|
|
8101
|
+
/**
|
|
8102
|
+
* Batch operation filter request.
|
|
8103
|
+
*/
|
|
8104
|
+
filter?: {
|
|
8105
|
+
/**
|
|
8106
|
+
* The key (or operate legacy ID) of the batch operation.
|
|
8107
|
+
*/
|
|
8108
|
+
batchOperationKey?: BasicStringFilterProperty;
|
|
8109
|
+
/**
|
|
8110
|
+
* The type of the batch operation.
|
|
8111
|
+
*/
|
|
8112
|
+
operationType?: BatchOperationTypeFilterProperty;
|
|
8113
|
+
/**
|
|
8114
|
+
* The state of the batch operation.
|
|
8115
|
+
*/
|
|
8116
|
+
state?: BatchOperationStateFilterProperty;
|
|
8117
|
+
/**
|
|
8118
|
+
* The type of the actor who performed the operation.
|
|
8119
|
+
*/
|
|
8120
|
+
actorType?: AuditLogActorTypeEnum;
|
|
8121
|
+
/**
|
|
8122
|
+
* The ID of the actor who performed the operation.
|
|
8123
|
+
*/
|
|
8124
|
+
actorId?: StringFilterProperty;
|
|
8125
|
+
};
|
|
8126
|
+
};
|
|
7785
8127
|
path?: never;
|
|
7786
8128
|
query?: never;
|
|
7787
8129
|
url: '/batch-operations/search';
|
|
@@ -8126,6 +8468,47 @@ type GetGlobalClusterVariableResponses = {
|
|
|
8126
8468
|
200: ClusterVariableResult;
|
|
8127
8469
|
};
|
|
8128
8470
|
type GetGlobalClusterVariableResponse = GetGlobalClusterVariableResponses[keyof GetGlobalClusterVariableResponses];
|
|
8471
|
+
type UpdateGlobalClusterVariableData = {
|
|
8472
|
+
body: UpdateClusterVariableRequest;
|
|
8473
|
+
path: {
|
|
8474
|
+
/**
|
|
8475
|
+
* The name of the cluster variable
|
|
8476
|
+
*/
|
|
8477
|
+
name: string;
|
|
8478
|
+
};
|
|
8479
|
+
query?: never;
|
|
8480
|
+
url: '/cluster-variables/global/{name}';
|
|
8481
|
+
};
|
|
8482
|
+
type UpdateGlobalClusterVariableErrors = {
|
|
8483
|
+
/**
|
|
8484
|
+
* The provided data is not valid.
|
|
8485
|
+
*/
|
|
8486
|
+
400: ProblemDetail;
|
|
8487
|
+
/**
|
|
8488
|
+
* The request lacks valid authentication credentials.
|
|
8489
|
+
*/
|
|
8490
|
+
401: ProblemDetail;
|
|
8491
|
+
/**
|
|
8492
|
+
* Forbidden. The request is not allowed.
|
|
8493
|
+
*/
|
|
8494
|
+
403: ProblemDetail;
|
|
8495
|
+
/**
|
|
8496
|
+
* Cluster variable not found
|
|
8497
|
+
*/
|
|
8498
|
+
404: ProblemDetail;
|
|
8499
|
+
/**
|
|
8500
|
+
* An internal error occurred while processing the request.
|
|
8501
|
+
*/
|
|
8502
|
+
500: ProblemDetail;
|
|
8503
|
+
};
|
|
8504
|
+
type UpdateGlobalClusterVariableError = UpdateGlobalClusterVariableErrors[keyof UpdateGlobalClusterVariableErrors];
|
|
8505
|
+
type UpdateGlobalClusterVariableResponses = {
|
|
8506
|
+
/**
|
|
8507
|
+
* Cluster variable updated successfully
|
|
8508
|
+
*/
|
|
8509
|
+
200: ClusterVariableResult;
|
|
8510
|
+
};
|
|
8511
|
+
type UpdateGlobalClusterVariableResponse = UpdateGlobalClusterVariableResponses[keyof UpdateGlobalClusterVariableResponses];
|
|
8129
8512
|
type SearchClusterVariablesData = {
|
|
8130
8513
|
/**
|
|
8131
8514
|
* Cluster variable search query request.
|
|
@@ -8356,13 +8739,58 @@ type GetTenantClusterVariableResponses = {
|
|
|
8356
8739
|
200: ClusterVariableResult;
|
|
8357
8740
|
};
|
|
8358
8741
|
type GetTenantClusterVariableResponse = GetTenantClusterVariableResponses[keyof GetTenantClusterVariableResponses];
|
|
8359
|
-
type
|
|
8360
|
-
body:
|
|
8361
|
-
path
|
|
8362
|
-
|
|
8363
|
-
|
|
8364
|
-
|
|
8365
|
-
|
|
8742
|
+
type UpdateTenantClusterVariableData = {
|
|
8743
|
+
body: UpdateClusterVariableRequest;
|
|
8744
|
+
path: {
|
|
8745
|
+
/**
|
|
8746
|
+
* The tenant ID
|
|
8747
|
+
*/
|
|
8748
|
+
tenantId: TenantId;
|
|
8749
|
+
/**
|
|
8750
|
+
* The name of the cluster variable
|
|
8751
|
+
*/
|
|
8752
|
+
name: string;
|
|
8753
|
+
};
|
|
8754
|
+
query?: never;
|
|
8755
|
+
url: '/cluster-variables/tenants/{tenantId}/{name}';
|
|
8756
|
+
};
|
|
8757
|
+
type UpdateTenantClusterVariableErrors = {
|
|
8758
|
+
/**
|
|
8759
|
+
* The provided data is not valid.
|
|
8760
|
+
*/
|
|
8761
|
+
400: ProblemDetail;
|
|
8762
|
+
/**
|
|
8763
|
+
* The request lacks valid authentication credentials.
|
|
8764
|
+
*/
|
|
8765
|
+
401: ProblemDetail;
|
|
8766
|
+
/**
|
|
8767
|
+
* Forbidden. The request is not allowed.
|
|
8768
|
+
*/
|
|
8769
|
+
403: ProblemDetail;
|
|
8770
|
+
/**
|
|
8771
|
+
* Cluster variable not found
|
|
8772
|
+
*/
|
|
8773
|
+
404: ProblemDetail;
|
|
8774
|
+
/**
|
|
8775
|
+
* An internal error occurred while processing the request.
|
|
8776
|
+
*/
|
|
8777
|
+
500: ProblemDetail;
|
|
8778
|
+
};
|
|
8779
|
+
type UpdateTenantClusterVariableError = UpdateTenantClusterVariableErrors[keyof UpdateTenantClusterVariableErrors];
|
|
8780
|
+
type UpdateTenantClusterVariableResponses = {
|
|
8781
|
+
/**
|
|
8782
|
+
* Cluster variable updated successfully
|
|
8783
|
+
*/
|
|
8784
|
+
200: ClusterVariableResult;
|
|
8785
|
+
};
|
|
8786
|
+
type UpdateTenantClusterVariableResponse = UpdateTenantClusterVariableResponses[keyof UpdateTenantClusterVariableResponses];
|
|
8787
|
+
type EvaluateConditionalsData = {
|
|
8788
|
+
body: ConditionalEvaluationInstruction;
|
|
8789
|
+
path?: never;
|
|
8790
|
+
query?: never;
|
|
8791
|
+
url: '/conditionals/evaluation';
|
|
8792
|
+
};
|
|
8793
|
+
type EvaluateConditionalsErrors = {
|
|
8366
8794
|
/**
|
|
8367
8795
|
* The provided data is not valid.
|
|
8368
8796
|
*/
|
|
@@ -8425,7 +8853,62 @@ type SearchCorrelatedMessageSubscriptionsResponses = {
|
|
|
8425
8853
|
/**
|
|
8426
8854
|
* The correlated message subscriptions search result.
|
|
8427
8855
|
*/
|
|
8428
|
-
200:
|
|
8856
|
+
200: SearchQueryResponse & {
|
|
8857
|
+
/**
|
|
8858
|
+
* The matching correlated message subscriptions.
|
|
8859
|
+
*/
|
|
8860
|
+
items?: Array<{
|
|
8861
|
+
/**
|
|
8862
|
+
* The correlation key of the message.
|
|
8863
|
+
*/
|
|
8864
|
+
correlationKey: string;
|
|
8865
|
+
/**
|
|
8866
|
+
* The time when the message was correlated.
|
|
8867
|
+
*/
|
|
8868
|
+
correlationTime: string;
|
|
8869
|
+
/**
|
|
8870
|
+
* The element ID that received the message.
|
|
8871
|
+
*/
|
|
8872
|
+
elementId: string;
|
|
8873
|
+
/**
|
|
8874
|
+
* The element instance key that received the message.
|
|
8875
|
+
*/
|
|
8876
|
+
elementInstanceKey?: ElementInstanceKey;
|
|
8877
|
+
/**
|
|
8878
|
+
* The message key.
|
|
8879
|
+
*/
|
|
8880
|
+
messageKey: MessageKey;
|
|
8881
|
+
/**
|
|
8882
|
+
* The name of the message.
|
|
8883
|
+
*/
|
|
8884
|
+
messageName: string;
|
|
8885
|
+
/**
|
|
8886
|
+
* The partition ID that correlated the message.
|
|
8887
|
+
*/
|
|
8888
|
+
partitionId: number;
|
|
8889
|
+
/**
|
|
8890
|
+
* The process definition ID associated with this correlated message subscription.
|
|
8891
|
+
*/
|
|
8892
|
+
processDefinitionId: ProcessDefinitionId;
|
|
8893
|
+
/**
|
|
8894
|
+
* The process definition key associated with this correlated message subscription.
|
|
8895
|
+
*/
|
|
8896
|
+
processDefinitionKey?: ProcessDefinitionKey;
|
|
8897
|
+
/**
|
|
8898
|
+
* The process instance key associated with this correlated message subscription.
|
|
8899
|
+
*/
|
|
8900
|
+
processInstanceKey: ProcessInstanceKey;
|
|
8901
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
8902
|
+
/**
|
|
8903
|
+
* The subscription key that received the message.
|
|
8904
|
+
*/
|
|
8905
|
+
subscriptionKey: MessageSubscriptionKey;
|
|
8906
|
+
/**
|
|
8907
|
+
* The tenant ID associated with this correlated message subscription.
|
|
8908
|
+
*/
|
|
8909
|
+
tenantId: TenantId;
|
|
8910
|
+
}>;
|
|
8911
|
+
};
|
|
8429
8912
|
};
|
|
8430
8913
|
type SearchCorrelatedMessageSubscriptionsResponse = SearchCorrelatedMessageSubscriptionsResponses[keyof SearchCorrelatedMessageSubscriptionsResponses];
|
|
8431
8914
|
type EvaluateDecisionData = {
|
|
@@ -8578,7 +9061,79 @@ type GetDecisionDefinitionXmlResponses = {
|
|
|
8578
9061
|
};
|
|
8579
9062
|
type GetDecisionDefinitionXmlResponse = GetDecisionDefinitionXmlResponses[keyof GetDecisionDefinitionXmlResponses];
|
|
8580
9063
|
type SearchDecisionInstancesData = {
|
|
8581
|
-
body?:
|
|
9064
|
+
body?: SearchQueryRequest & {
|
|
9065
|
+
/**
|
|
9066
|
+
* Sort field criteria.
|
|
9067
|
+
*/
|
|
9068
|
+
sort?: Array<DecisionInstanceSearchQuerySortRequest>;
|
|
9069
|
+
/**
|
|
9070
|
+
* Decision instance search filter.
|
|
9071
|
+
*/
|
|
9072
|
+
filter?: {
|
|
9073
|
+
/**
|
|
9074
|
+
* The key of the decision evaluation instance.
|
|
9075
|
+
*/
|
|
9076
|
+
decisionEvaluationInstanceKey?: DecisionEvaluationInstanceKeyFilterProperty;
|
|
9077
|
+
/**
|
|
9078
|
+
* The state of the decision instance.
|
|
9079
|
+
*/
|
|
9080
|
+
state?: DecisionInstanceStateFilterProperty;
|
|
9081
|
+
/**
|
|
9082
|
+
* The evaluation failure of the decision instance.
|
|
9083
|
+
*/
|
|
9084
|
+
evaluationFailure?: string;
|
|
9085
|
+
/**
|
|
9086
|
+
* The evaluation date of the decision instance.
|
|
9087
|
+
*/
|
|
9088
|
+
evaluationDate?: DateTimeFilterProperty;
|
|
9089
|
+
/**
|
|
9090
|
+
* The ID of the DMN decision.
|
|
9091
|
+
*/
|
|
9092
|
+
decisionDefinitionId?: DecisionDefinitionId;
|
|
9093
|
+
/**
|
|
9094
|
+
* The name of the DMN decision.
|
|
9095
|
+
*/
|
|
9096
|
+
decisionDefinitionName?: string;
|
|
9097
|
+
/**
|
|
9098
|
+
* The version of the decision.
|
|
9099
|
+
*/
|
|
9100
|
+
decisionDefinitionVersion?: number;
|
|
9101
|
+
decisionDefinitionType?: DecisionDefinitionTypeEnum;
|
|
9102
|
+
/**
|
|
9103
|
+
* The tenant ID of the decision instance.
|
|
9104
|
+
*/
|
|
9105
|
+
tenantId?: TenantId;
|
|
9106
|
+
/**
|
|
9107
|
+
* The key of the parent decision evaluation. Note that this is not the identifier of an individual decision instance; the `decisionEvaluationInstanceKey` is the identifier for a decision instance.
|
|
9108
|
+
*
|
|
9109
|
+
*/
|
|
9110
|
+
decisionEvaluationKey?: DecisionEvaluationKey;
|
|
9111
|
+
/**
|
|
9112
|
+
* The key of the process definition.
|
|
9113
|
+
*/
|
|
9114
|
+
processDefinitionKey?: ProcessDefinitionKey;
|
|
9115
|
+
/**
|
|
9116
|
+
* The key of the process instance.
|
|
9117
|
+
*/
|
|
9118
|
+
processInstanceKey?: ProcessInstanceKey;
|
|
9119
|
+
/**
|
|
9120
|
+
* The key of the decision.
|
|
9121
|
+
*/
|
|
9122
|
+
decisionDefinitionKey?: DecisionDefinitionKeyFilterProperty;
|
|
9123
|
+
/**
|
|
9124
|
+
* The key of the element instance this decision instance is linked to.
|
|
9125
|
+
*/
|
|
9126
|
+
elementInstanceKey?: ElementInstanceKeyFilterProperty;
|
|
9127
|
+
/**
|
|
9128
|
+
* The key of the root decision definition.
|
|
9129
|
+
*/
|
|
9130
|
+
rootDecisionDefinitionKey?: DecisionDefinitionKeyFilterProperty;
|
|
9131
|
+
/**
|
|
9132
|
+
* The key of the decision requirements definition.
|
|
9133
|
+
*/
|
|
9134
|
+
decisionRequirementsKey?: DecisionRequirementsKeyFilterProperty;
|
|
9135
|
+
};
|
|
9136
|
+
};
|
|
8582
9137
|
path?: never;
|
|
8583
9138
|
query?: never;
|
|
8584
9139
|
url: '/decision-instances/search';
|
|
@@ -8606,7 +9161,69 @@ type SearchDecisionInstancesResponses = {
|
|
|
8606
9161
|
/**
|
|
8607
9162
|
* The decision instance search result.
|
|
8608
9163
|
*/
|
|
8609
|
-
200:
|
|
9164
|
+
200: SearchQueryResponse & {
|
|
9165
|
+
/**
|
|
9166
|
+
* The matching decision instances.
|
|
9167
|
+
*/
|
|
9168
|
+
items?: Array<{
|
|
9169
|
+
decisionEvaluationInstanceKey?: DecisionEvaluationInstanceKey;
|
|
9170
|
+
state?: DecisionInstanceStateEnum;
|
|
9171
|
+
/**
|
|
9172
|
+
* The evaluation date of the decision instance.
|
|
9173
|
+
*/
|
|
9174
|
+
evaluationDate?: string;
|
|
9175
|
+
/**
|
|
9176
|
+
* The evaluation failure of the decision instance.
|
|
9177
|
+
*/
|
|
9178
|
+
evaluationFailure?: string;
|
|
9179
|
+
/**
|
|
9180
|
+
* The ID of the DMN decision.
|
|
9181
|
+
*/
|
|
9182
|
+
decisionDefinitionId?: DecisionDefinitionId;
|
|
9183
|
+
/**
|
|
9184
|
+
* The name of the DMN decision.
|
|
9185
|
+
*/
|
|
9186
|
+
decisionDefinitionName?: string;
|
|
9187
|
+
/**
|
|
9188
|
+
* The version of the decision.
|
|
9189
|
+
*/
|
|
9190
|
+
decisionDefinitionVersion?: number;
|
|
9191
|
+
decisionDefinitionType?: DecisionDefinitionTypeEnum;
|
|
9192
|
+
/**
|
|
9193
|
+
* The result of the decision instance.
|
|
9194
|
+
*/
|
|
9195
|
+
result?: string;
|
|
9196
|
+
/**
|
|
9197
|
+
* The tenant ID of the decision instance.
|
|
9198
|
+
*/
|
|
9199
|
+
tenantId?: TenantId;
|
|
9200
|
+
/**
|
|
9201
|
+
* The key of the decision evaluation where this instance was created.
|
|
9202
|
+
*/
|
|
9203
|
+
decisionEvaluationKey?: DecisionEvaluationKey;
|
|
9204
|
+
/**
|
|
9205
|
+
* The key of the process definition.
|
|
9206
|
+
*/
|
|
9207
|
+
processDefinitionKey?: ProcessDefinitionKey;
|
|
9208
|
+
/**
|
|
9209
|
+
* The key of the process instance.
|
|
9210
|
+
*/
|
|
9211
|
+
processInstanceKey?: ProcessInstanceKey;
|
|
9212
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
9213
|
+
/**
|
|
9214
|
+
* The key of the decision.
|
|
9215
|
+
*/
|
|
9216
|
+
decisionDefinitionKey?: DecisionDefinitionKey;
|
|
9217
|
+
/**
|
|
9218
|
+
* The key of the element instance this decision instance is linked to.
|
|
9219
|
+
*/
|
|
9220
|
+
elementInstanceKey?: ElementInstanceKey;
|
|
9221
|
+
/**
|
|
9222
|
+
* The key of the root decision definition.
|
|
9223
|
+
*/
|
|
9224
|
+
rootDecisionDefinitionKey?: DecisionDefinitionKey;
|
|
9225
|
+
}>;
|
|
9226
|
+
};
|
|
8610
9227
|
};
|
|
8611
9228
|
type SearchDecisionInstancesResponse = SearchDecisionInstancesResponses[keyof SearchDecisionInstancesResponses];
|
|
8612
9229
|
type GetDecisionInstanceData = {
|
|
@@ -8648,9 +9265,224 @@ type GetDecisionInstanceResponses = {
|
|
|
8648
9265
|
/**
|
|
8649
9266
|
* The decision instance is successfully returned.
|
|
8650
9267
|
*/
|
|
8651
|
-
200:
|
|
9268
|
+
200: {
|
|
9269
|
+
decisionEvaluationInstanceKey?: DecisionEvaluationInstanceKey;
|
|
9270
|
+
state?: DecisionInstanceStateEnum;
|
|
9271
|
+
/**
|
|
9272
|
+
* The evaluation date of the decision instance.
|
|
9273
|
+
*/
|
|
9274
|
+
evaluationDate?: string;
|
|
9275
|
+
/**
|
|
9276
|
+
* The evaluation failure of the decision instance.
|
|
9277
|
+
*/
|
|
9278
|
+
evaluationFailure?: string;
|
|
9279
|
+
/**
|
|
9280
|
+
* The ID of the DMN decision.
|
|
9281
|
+
*/
|
|
9282
|
+
decisionDefinitionId?: DecisionDefinitionId;
|
|
9283
|
+
/**
|
|
9284
|
+
* The name of the DMN decision.
|
|
9285
|
+
*/
|
|
9286
|
+
decisionDefinitionName?: string;
|
|
9287
|
+
/**
|
|
9288
|
+
* The version of the decision.
|
|
9289
|
+
*/
|
|
9290
|
+
decisionDefinitionVersion?: number;
|
|
9291
|
+
decisionDefinitionType?: DecisionDefinitionTypeEnum;
|
|
9292
|
+
/**
|
|
9293
|
+
* The result of the decision instance.
|
|
9294
|
+
*/
|
|
9295
|
+
result?: string;
|
|
9296
|
+
/**
|
|
9297
|
+
* The tenant ID of the decision instance.
|
|
9298
|
+
*/
|
|
9299
|
+
tenantId?: TenantId;
|
|
9300
|
+
/**
|
|
9301
|
+
* The key of the decision evaluation where this instance was created.
|
|
9302
|
+
*/
|
|
9303
|
+
decisionEvaluationKey?: DecisionEvaluationKey;
|
|
9304
|
+
/**
|
|
9305
|
+
* The key of the process definition.
|
|
9306
|
+
*/
|
|
9307
|
+
processDefinitionKey?: ProcessDefinitionKey;
|
|
9308
|
+
/**
|
|
9309
|
+
* The key of the process instance.
|
|
9310
|
+
*/
|
|
9311
|
+
processInstanceKey?: ProcessInstanceKey;
|
|
9312
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
9313
|
+
/**
|
|
9314
|
+
* The key of the decision.
|
|
9315
|
+
*/
|
|
9316
|
+
decisionDefinitionKey?: DecisionDefinitionKey;
|
|
9317
|
+
/**
|
|
9318
|
+
* The key of the element instance this decision instance is linked to.
|
|
9319
|
+
*/
|
|
9320
|
+
elementInstanceKey?: ElementInstanceKey;
|
|
9321
|
+
/**
|
|
9322
|
+
* The key of the root decision definition.
|
|
9323
|
+
*/
|
|
9324
|
+
rootDecisionDefinitionKey?: DecisionDefinitionKey;
|
|
9325
|
+
} & {
|
|
9326
|
+
/**
|
|
9327
|
+
* The evaluated inputs of the decision instance.
|
|
9328
|
+
*
|
|
9329
|
+
*/
|
|
9330
|
+
evaluatedInputs?: Array<EvaluatedDecisionInputItem>;
|
|
9331
|
+
/**
|
|
9332
|
+
* The matched rules of the decision instance.
|
|
9333
|
+
*
|
|
9334
|
+
*/
|
|
9335
|
+
matchedRules?: Array<MatchedDecisionRuleItem>;
|
|
9336
|
+
};
|
|
8652
9337
|
};
|
|
8653
9338
|
type GetDecisionInstanceResponse = GetDecisionInstanceResponses[keyof GetDecisionInstanceResponses];
|
|
9339
|
+
type DeleteDecisionInstanceData = {
|
|
9340
|
+
body?: DeleteProcessInstanceRequest;
|
|
9341
|
+
path: {
|
|
9342
|
+
/**
|
|
9343
|
+
* The key of the decision instance to delete.
|
|
9344
|
+
*/
|
|
9345
|
+
decisionInstanceKey: DecisionInstanceKey;
|
|
9346
|
+
};
|
|
9347
|
+
query?: never;
|
|
9348
|
+
url: '/decision-instances/{decisionInstanceKey}/deletion';
|
|
9349
|
+
};
|
|
9350
|
+
type DeleteDecisionInstanceErrors = {
|
|
9351
|
+
/**
|
|
9352
|
+
* The request lacks valid authentication credentials.
|
|
9353
|
+
*/
|
|
9354
|
+
401: ProblemDetail;
|
|
9355
|
+
/**
|
|
9356
|
+
* Forbidden. The request is not allowed.
|
|
9357
|
+
*/
|
|
9358
|
+
403: ProblemDetail;
|
|
9359
|
+
/**
|
|
9360
|
+
* The decision instance is not found.
|
|
9361
|
+
*/
|
|
9362
|
+
404: ProblemDetail;
|
|
9363
|
+
/**
|
|
9364
|
+
* An internal error occurred while processing the request.
|
|
9365
|
+
*/
|
|
9366
|
+
500: ProblemDetail;
|
|
9367
|
+
/**
|
|
9368
|
+
* The service is currently unavailable. This may happen only on some requests where the system creates backpressure to prevent the server's compute resources from being exhausted, avoiding more severe failures. In this case, the title of the error object contains `RESOURCE_EXHAUSTED`. Clients are recommended to eventually retry those requests after a backoff period. You can learn more about the backpressure mechanism here: https://docs.camunda.io/docs/components/zeebe/technical-concepts/internal-processing/#handling-backpressure .
|
|
9369
|
+
*
|
|
9370
|
+
*/
|
|
9371
|
+
503: ProblemDetail;
|
|
9372
|
+
};
|
|
9373
|
+
type DeleteDecisionInstanceError = DeleteDecisionInstanceErrors[keyof DeleteDecisionInstanceErrors];
|
|
9374
|
+
type DeleteDecisionInstanceResponses = {
|
|
9375
|
+
/**
|
|
9376
|
+
* The decision instance is marked for deletion.
|
|
9377
|
+
*/
|
|
9378
|
+
204: void;
|
|
9379
|
+
};
|
|
9380
|
+
type DeleteDecisionInstanceResponse = DeleteDecisionInstanceResponses[keyof DeleteDecisionInstanceResponses];
|
|
9381
|
+
type DeleteDecisionInstancesBatchOperationData = {
|
|
9382
|
+
/**
|
|
9383
|
+
* The decision instance filter that defines which decision instances should be deleted.
|
|
9384
|
+
*/
|
|
9385
|
+
body: {
|
|
9386
|
+
/**
|
|
9387
|
+
* Decision instance search filter.
|
|
9388
|
+
*/
|
|
9389
|
+
filter: {
|
|
9390
|
+
/**
|
|
9391
|
+
* The key of the decision evaluation instance.
|
|
9392
|
+
*/
|
|
9393
|
+
decisionEvaluationInstanceKey?: DecisionEvaluationInstanceKeyFilterProperty;
|
|
9394
|
+
/**
|
|
9395
|
+
* The state of the decision instance.
|
|
9396
|
+
*/
|
|
9397
|
+
state?: DecisionInstanceStateFilterProperty;
|
|
9398
|
+
/**
|
|
9399
|
+
* The evaluation failure of the decision instance.
|
|
9400
|
+
*/
|
|
9401
|
+
evaluationFailure?: string;
|
|
9402
|
+
/**
|
|
9403
|
+
* The evaluation date of the decision instance.
|
|
9404
|
+
*/
|
|
9405
|
+
evaluationDate?: DateTimeFilterProperty;
|
|
9406
|
+
/**
|
|
9407
|
+
* The ID of the DMN decision.
|
|
9408
|
+
*/
|
|
9409
|
+
decisionDefinitionId?: DecisionDefinitionId;
|
|
9410
|
+
/**
|
|
9411
|
+
* The name of the DMN decision.
|
|
9412
|
+
*/
|
|
9413
|
+
decisionDefinitionName?: string;
|
|
9414
|
+
/**
|
|
9415
|
+
* The version of the decision.
|
|
9416
|
+
*/
|
|
9417
|
+
decisionDefinitionVersion?: number;
|
|
9418
|
+
decisionDefinitionType?: DecisionDefinitionTypeEnum;
|
|
9419
|
+
/**
|
|
9420
|
+
* The tenant ID of the decision instance.
|
|
9421
|
+
*/
|
|
9422
|
+
tenantId?: TenantId;
|
|
9423
|
+
/**
|
|
9424
|
+
* The key of the parent decision evaluation. Note that this is not the identifier of an individual decision instance; the `decisionEvaluationInstanceKey` is the identifier for a decision instance.
|
|
9425
|
+
*
|
|
9426
|
+
*/
|
|
9427
|
+
decisionEvaluationKey?: DecisionEvaluationKey;
|
|
9428
|
+
/**
|
|
9429
|
+
* The key of the process definition.
|
|
9430
|
+
*/
|
|
9431
|
+
processDefinitionKey?: ProcessDefinitionKey;
|
|
9432
|
+
/**
|
|
9433
|
+
* The key of the process instance.
|
|
9434
|
+
*/
|
|
9435
|
+
processInstanceKey?: ProcessInstanceKey;
|
|
9436
|
+
/**
|
|
9437
|
+
* The key of the decision.
|
|
9438
|
+
*/
|
|
9439
|
+
decisionDefinitionKey?: DecisionDefinitionKeyFilterProperty;
|
|
9440
|
+
/**
|
|
9441
|
+
* The key of the element instance this decision instance is linked to.
|
|
9442
|
+
*/
|
|
9443
|
+
elementInstanceKey?: ElementInstanceKeyFilterProperty;
|
|
9444
|
+
/**
|
|
9445
|
+
* The key of the root decision definition.
|
|
9446
|
+
*/
|
|
9447
|
+
rootDecisionDefinitionKey?: DecisionDefinitionKeyFilterProperty;
|
|
9448
|
+
/**
|
|
9449
|
+
* The key of the decision requirements definition.
|
|
9450
|
+
*/
|
|
9451
|
+
decisionRequirementsKey?: DecisionRequirementsKeyFilterProperty;
|
|
9452
|
+
};
|
|
9453
|
+
operationReference?: OperationReference;
|
|
9454
|
+
};
|
|
9455
|
+
path?: never;
|
|
9456
|
+
query?: never;
|
|
9457
|
+
url: '/decision-instances/deletion';
|
|
9458
|
+
};
|
|
9459
|
+
type DeleteDecisionInstancesBatchOperationErrors = {
|
|
9460
|
+
/**
|
|
9461
|
+
* The decision instance batch operation failed. More details are provided in the response body.
|
|
9462
|
+
*
|
|
9463
|
+
*/
|
|
9464
|
+
400: ProblemDetail;
|
|
9465
|
+
/**
|
|
9466
|
+
* The request lacks valid authentication credentials.
|
|
9467
|
+
*/
|
|
9468
|
+
401: ProblemDetail;
|
|
9469
|
+
/**
|
|
9470
|
+
* Forbidden. The request is not allowed.
|
|
9471
|
+
*/
|
|
9472
|
+
403: ProblemDetail;
|
|
9473
|
+
/**
|
|
9474
|
+
* An internal error occurred while processing the request.
|
|
9475
|
+
*/
|
|
9476
|
+
500: ProblemDetail;
|
|
9477
|
+
};
|
|
9478
|
+
type DeleteDecisionInstancesBatchOperationError = DeleteDecisionInstancesBatchOperationErrors[keyof DeleteDecisionInstancesBatchOperationErrors];
|
|
9479
|
+
type DeleteDecisionInstancesBatchOperationResponses = {
|
|
9480
|
+
/**
|
|
9481
|
+
* The batch operation request was created.
|
|
9482
|
+
*/
|
|
9483
|
+
200: BatchOperationCreatedResult;
|
|
9484
|
+
};
|
|
9485
|
+
type DeleteDecisionInstancesBatchOperationResponse = DeleteDecisionInstancesBatchOperationResponses[keyof DeleteDecisionInstancesBatchOperationResponses];
|
|
8654
9486
|
type SearchDecisionRequirementsData = {
|
|
8655
9487
|
body?: DecisionRequirementsSearchQuery;
|
|
8656
9488
|
path?: never;
|
|
@@ -9102,7 +9934,66 @@ type SearchElementInstancesResponses = {
|
|
|
9102
9934
|
/**
|
|
9103
9935
|
* The element instance search result.
|
|
9104
9936
|
*/
|
|
9105
|
-
200:
|
|
9937
|
+
200: SearchQueryResponse & {
|
|
9938
|
+
/**
|
|
9939
|
+
* The matching element instances.
|
|
9940
|
+
*/
|
|
9941
|
+
items?: Array<{
|
|
9942
|
+
/**
|
|
9943
|
+
* The process definition ID associated to this element instance.
|
|
9944
|
+
*/
|
|
9945
|
+
processDefinitionId: ProcessDefinitionId;
|
|
9946
|
+
/**
|
|
9947
|
+
* Date when element instance started.
|
|
9948
|
+
*/
|
|
9949
|
+
startDate: string;
|
|
9950
|
+
/**
|
|
9951
|
+
* Date when element instance finished.
|
|
9952
|
+
*/
|
|
9953
|
+
endDate?: string;
|
|
9954
|
+
/**
|
|
9955
|
+
* The element ID for this element instance.
|
|
9956
|
+
*/
|
|
9957
|
+
elementId: ElementId;
|
|
9958
|
+
/**
|
|
9959
|
+
* The element name for this element instance.
|
|
9960
|
+
*/
|
|
9961
|
+
elementName: string;
|
|
9962
|
+
/**
|
|
9963
|
+
* Type of element as defined set of values.
|
|
9964
|
+
*/
|
|
9965
|
+
type: 'UNSPECIFIED' | 'PROCESS' | 'SUB_PROCESS' | 'EVENT_SUB_PROCESS' | 'AD_HOC_SUB_PROCESS' | 'AD_HOC_SUB_PROCESS_INNER_INSTANCE' | 'START_EVENT' | 'INTERMEDIATE_CATCH_EVENT' | 'INTERMEDIATE_THROW_EVENT' | 'BOUNDARY_EVENT' | 'END_EVENT' | 'SERVICE_TASK' | 'RECEIVE_TASK' | 'USER_TASK' | 'MANUAL_TASK' | 'TASK' | 'EXCLUSIVE_GATEWAY' | 'INCLUSIVE_GATEWAY' | 'PARALLEL_GATEWAY' | 'EVENT_BASED_GATEWAY' | 'SEQUENCE_FLOW' | 'MULTI_INSTANCE_BODY' | 'CALL_ACTIVITY' | 'BUSINESS_RULE_TASK' | 'SCRIPT_TASK' | 'SEND_TASK' | 'UNKNOWN';
|
|
9966
|
+
/**
|
|
9967
|
+
* State of element instance as defined set of values.
|
|
9968
|
+
*/
|
|
9969
|
+
state: ElementInstanceStateEnum;
|
|
9970
|
+
/**
|
|
9971
|
+
* Shows whether this element instance has an incident. If true also an incidentKey is provided.
|
|
9972
|
+
*/
|
|
9973
|
+
hasIncident: boolean;
|
|
9974
|
+
/**
|
|
9975
|
+
* The tenant ID of the incident.
|
|
9976
|
+
*/
|
|
9977
|
+
tenantId: TenantId;
|
|
9978
|
+
/**
|
|
9979
|
+
* The assigned key, which acts as a unique identifier for this element instance.
|
|
9980
|
+
*/
|
|
9981
|
+
elementInstanceKey: ElementInstanceKey;
|
|
9982
|
+
/**
|
|
9983
|
+
* The process instance key associated to this element instance.
|
|
9984
|
+
*/
|
|
9985
|
+
processInstanceKey: ProcessInstanceKey;
|
|
9986
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
9987
|
+
/**
|
|
9988
|
+
* The process definition key associated to this element instance.
|
|
9989
|
+
*/
|
|
9990
|
+
processDefinitionKey: ProcessDefinitionKey;
|
|
9991
|
+
/**
|
|
9992
|
+
* Incident key associated with this element instance.
|
|
9993
|
+
*/
|
|
9994
|
+
incidentKey?: IncidentKey;
|
|
9995
|
+
}>;
|
|
9996
|
+
};
|
|
9106
9997
|
};
|
|
9107
9998
|
type SearchElementInstancesResponse = SearchElementInstancesResponses[keyof SearchElementInstancesResponses];
|
|
9108
9999
|
type GetElementInstanceData = {
|
|
@@ -9145,7 +10036,61 @@ type GetElementInstanceResponses = {
|
|
|
9145
10036
|
/**
|
|
9146
10037
|
* The element instance is successfully returned.
|
|
9147
10038
|
*/
|
|
9148
|
-
200:
|
|
10039
|
+
200: {
|
|
10040
|
+
/**
|
|
10041
|
+
* The process definition ID associated to this element instance.
|
|
10042
|
+
*/
|
|
10043
|
+
processDefinitionId: ProcessDefinitionId;
|
|
10044
|
+
/**
|
|
10045
|
+
* Date when element instance started.
|
|
10046
|
+
*/
|
|
10047
|
+
startDate: string;
|
|
10048
|
+
/**
|
|
10049
|
+
* Date when element instance finished.
|
|
10050
|
+
*/
|
|
10051
|
+
endDate?: string;
|
|
10052
|
+
/**
|
|
10053
|
+
* The element ID for this element instance.
|
|
10054
|
+
*/
|
|
10055
|
+
elementId: ElementId;
|
|
10056
|
+
/**
|
|
10057
|
+
* The element name for this element instance.
|
|
10058
|
+
*/
|
|
10059
|
+
elementName: string;
|
|
10060
|
+
/**
|
|
10061
|
+
* Type of element as defined set of values.
|
|
10062
|
+
*/
|
|
10063
|
+
type: 'UNSPECIFIED' | 'PROCESS' | 'SUB_PROCESS' | 'EVENT_SUB_PROCESS' | 'AD_HOC_SUB_PROCESS' | 'AD_HOC_SUB_PROCESS_INNER_INSTANCE' | 'START_EVENT' | 'INTERMEDIATE_CATCH_EVENT' | 'INTERMEDIATE_THROW_EVENT' | 'BOUNDARY_EVENT' | 'END_EVENT' | 'SERVICE_TASK' | 'RECEIVE_TASK' | 'USER_TASK' | 'MANUAL_TASK' | 'TASK' | 'EXCLUSIVE_GATEWAY' | 'INCLUSIVE_GATEWAY' | 'PARALLEL_GATEWAY' | 'EVENT_BASED_GATEWAY' | 'SEQUENCE_FLOW' | 'MULTI_INSTANCE_BODY' | 'CALL_ACTIVITY' | 'BUSINESS_RULE_TASK' | 'SCRIPT_TASK' | 'SEND_TASK' | 'UNKNOWN';
|
|
10064
|
+
/**
|
|
10065
|
+
* State of element instance as defined set of values.
|
|
10066
|
+
*/
|
|
10067
|
+
state: ElementInstanceStateEnum;
|
|
10068
|
+
/**
|
|
10069
|
+
* Shows whether this element instance has an incident. If true also an incidentKey is provided.
|
|
10070
|
+
*/
|
|
10071
|
+
hasIncident: boolean;
|
|
10072
|
+
/**
|
|
10073
|
+
* The tenant ID of the incident.
|
|
10074
|
+
*/
|
|
10075
|
+
tenantId: TenantId;
|
|
10076
|
+
/**
|
|
10077
|
+
* The assigned key, which acts as a unique identifier for this element instance.
|
|
10078
|
+
*/
|
|
10079
|
+
elementInstanceKey: ElementInstanceKey;
|
|
10080
|
+
/**
|
|
10081
|
+
* The process instance key associated to this element instance.
|
|
10082
|
+
*/
|
|
10083
|
+
processInstanceKey: ProcessInstanceKey;
|
|
10084
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
10085
|
+
/**
|
|
10086
|
+
* The process definition key associated to this element instance.
|
|
10087
|
+
*/
|
|
10088
|
+
processDefinitionKey: ProcessDefinitionKey;
|
|
10089
|
+
/**
|
|
10090
|
+
* Incident key associated with this element instance.
|
|
10091
|
+
*/
|
|
10092
|
+
incidentKey?: IncidentKey;
|
|
10093
|
+
};
|
|
9149
10094
|
};
|
|
9150
10095
|
type GetElementInstanceResponse = GetElementInstanceResponses[keyof GetElementInstanceResponses];
|
|
9151
10096
|
type SearchElementInstanceIncidentsData = {
|
|
@@ -9186,7 +10131,53 @@ type SearchElementInstanceIncidentsResponses = {
|
|
|
9186
10131
|
/**
|
|
9187
10132
|
* The element instance incident search result.
|
|
9188
10133
|
*/
|
|
9189
|
-
200:
|
|
10134
|
+
200: SearchQueryResponse & {
|
|
10135
|
+
/**
|
|
10136
|
+
* The matching incidents.
|
|
10137
|
+
*/
|
|
10138
|
+
items?: Array<{
|
|
10139
|
+
/**
|
|
10140
|
+
* The process definition ID associated to this incident.
|
|
10141
|
+
*/
|
|
10142
|
+
processDefinitionId?: ProcessDefinitionId;
|
|
10143
|
+
errorType?: IncidentErrorTypeEnum;
|
|
10144
|
+
/**
|
|
10145
|
+
* Error message which describes the error in more detail.
|
|
10146
|
+
*/
|
|
10147
|
+
errorMessage?: string;
|
|
10148
|
+
/**
|
|
10149
|
+
* The element ID associated to this incident.
|
|
10150
|
+
*/
|
|
10151
|
+
elementId?: ElementId;
|
|
10152
|
+
creationTime?: string;
|
|
10153
|
+
state?: IncidentStateEnum;
|
|
10154
|
+
/**
|
|
10155
|
+
* The tenant ID of the incident.
|
|
10156
|
+
*/
|
|
10157
|
+
tenantId?: TenantId;
|
|
10158
|
+
/**
|
|
10159
|
+
* The assigned key, which acts as a unique identifier for this incident.
|
|
10160
|
+
*/
|
|
10161
|
+
incidentKey?: IncidentKey;
|
|
10162
|
+
/**
|
|
10163
|
+
* The process definition key associated to this incident.
|
|
10164
|
+
*/
|
|
10165
|
+
processDefinitionKey?: ProcessDefinitionKey;
|
|
10166
|
+
/**
|
|
10167
|
+
* The process instance key associated to this incident.
|
|
10168
|
+
*/
|
|
10169
|
+
processInstanceKey?: ProcessInstanceKey;
|
|
10170
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
10171
|
+
/**
|
|
10172
|
+
* The element instance key associated to this incident.
|
|
10173
|
+
*/
|
|
10174
|
+
elementInstanceKey?: ElementInstanceKey;
|
|
10175
|
+
/**
|
|
10176
|
+
* The job key, if exists, associated with this incident.
|
|
10177
|
+
*/
|
|
10178
|
+
jobKey?: JobKey;
|
|
10179
|
+
}>;
|
|
10180
|
+
};
|
|
9190
10181
|
};
|
|
9191
10182
|
type SearchElementInstanceIncidentsResponse = SearchElementInstanceIncidentsResponses[keyof SearchElementInstanceIncidentsResponses];
|
|
9192
10183
|
type CreateElementInstanceVariablesData = {
|
|
@@ -9945,7 +10936,53 @@ type SearchIncidentsResponses = {
|
|
|
9945
10936
|
/**
|
|
9946
10937
|
* The incident search result.
|
|
9947
10938
|
*/
|
|
9948
|
-
200:
|
|
10939
|
+
200: SearchQueryResponse & {
|
|
10940
|
+
/**
|
|
10941
|
+
* The matching incidents.
|
|
10942
|
+
*/
|
|
10943
|
+
items?: Array<{
|
|
10944
|
+
/**
|
|
10945
|
+
* The process definition ID associated to this incident.
|
|
10946
|
+
*/
|
|
10947
|
+
processDefinitionId?: ProcessDefinitionId;
|
|
10948
|
+
errorType?: IncidentErrorTypeEnum;
|
|
10949
|
+
/**
|
|
10950
|
+
* Error message which describes the error in more detail.
|
|
10951
|
+
*/
|
|
10952
|
+
errorMessage?: string;
|
|
10953
|
+
/**
|
|
10954
|
+
* The element ID associated to this incident.
|
|
10955
|
+
*/
|
|
10956
|
+
elementId?: ElementId;
|
|
10957
|
+
creationTime?: string;
|
|
10958
|
+
state?: IncidentStateEnum;
|
|
10959
|
+
/**
|
|
10960
|
+
* The tenant ID of the incident.
|
|
10961
|
+
*/
|
|
10962
|
+
tenantId?: TenantId;
|
|
10963
|
+
/**
|
|
10964
|
+
* The assigned key, which acts as a unique identifier for this incident.
|
|
10965
|
+
*/
|
|
10966
|
+
incidentKey?: IncidentKey;
|
|
10967
|
+
/**
|
|
10968
|
+
* The process definition key associated to this incident.
|
|
10969
|
+
*/
|
|
10970
|
+
processDefinitionKey?: ProcessDefinitionKey;
|
|
10971
|
+
/**
|
|
10972
|
+
* The process instance key associated to this incident.
|
|
10973
|
+
*/
|
|
10974
|
+
processInstanceKey?: ProcessInstanceKey;
|
|
10975
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
10976
|
+
/**
|
|
10977
|
+
* The element instance key associated to this incident.
|
|
10978
|
+
*/
|
|
10979
|
+
elementInstanceKey?: ElementInstanceKey;
|
|
10980
|
+
/**
|
|
10981
|
+
* The job key, if exists, associated with this incident.
|
|
10982
|
+
*/
|
|
10983
|
+
jobKey?: JobKey;
|
|
10984
|
+
}>;
|
|
10985
|
+
};
|
|
9949
10986
|
};
|
|
9950
10987
|
type SearchIncidentsResponse = SearchIncidentsResponses[keyof SearchIncidentsResponses];
|
|
9951
10988
|
type GetIncidentData = {
|
|
@@ -9986,7 +11023,48 @@ type GetIncidentResponses = {
|
|
|
9986
11023
|
/**
|
|
9987
11024
|
* The incident is successfully returned.
|
|
9988
11025
|
*/
|
|
9989
|
-
200:
|
|
11026
|
+
200: {
|
|
11027
|
+
/**
|
|
11028
|
+
* The process definition ID associated to this incident.
|
|
11029
|
+
*/
|
|
11030
|
+
processDefinitionId?: ProcessDefinitionId;
|
|
11031
|
+
errorType?: IncidentErrorTypeEnum;
|
|
11032
|
+
/**
|
|
11033
|
+
* Error message which describes the error in more detail.
|
|
11034
|
+
*/
|
|
11035
|
+
errorMessage?: string;
|
|
11036
|
+
/**
|
|
11037
|
+
* The element ID associated to this incident.
|
|
11038
|
+
*/
|
|
11039
|
+
elementId?: ElementId;
|
|
11040
|
+
creationTime?: string;
|
|
11041
|
+
state?: IncidentStateEnum;
|
|
11042
|
+
/**
|
|
11043
|
+
* The tenant ID of the incident.
|
|
11044
|
+
*/
|
|
11045
|
+
tenantId?: TenantId;
|
|
11046
|
+
/**
|
|
11047
|
+
* The assigned key, which acts as a unique identifier for this incident.
|
|
11048
|
+
*/
|
|
11049
|
+
incidentKey?: IncidentKey;
|
|
11050
|
+
/**
|
|
11051
|
+
* The process definition key associated to this incident.
|
|
11052
|
+
*/
|
|
11053
|
+
processDefinitionKey?: ProcessDefinitionKey;
|
|
11054
|
+
/**
|
|
11055
|
+
* The process instance key associated to this incident.
|
|
11056
|
+
*/
|
|
11057
|
+
processInstanceKey?: ProcessInstanceKey;
|
|
11058
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
11059
|
+
/**
|
|
11060
|
+
* The element instance key associated to this incident.
|
|
11061
|
+
*/
|
|
11062
|
+
elementInstanceKey?: ElementInstanceKey;
|
|
11063
|
+
/**
|
|
11064
|
+
* The job key, if exists, associated with this incident.
|
|
11065
|
+
*/
|
|
11066
|
+
jobKey?: JobKey;
|
|
11067
|
+
};
|
|
9990
11068
|
};
|
|
9991
11069
|
type GetIncidentResponse = GetIncidentResponses[keyof GetIncidentResponses];
|
|
9992
11070
|
type ResolveIncidentData = {
|
|
@@ -10333,6 +11411,7 @@ type SearchJobsResponses = {
|
|
|
10333
11411
|
* The process instance key associated with the job.
|
|
10334
11412
|
*/
|
|
10335
11413
|
processInstanceKey: ProcessInstanceKey;
|
|
11414
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
10336
11415
|
/**
|
|
10337
11416
|
* The amount of retries left to this job.
|
|
10338
11417
|
*/
|
|
@@ -10403,49 +11482,7 @@ type UpdateJobResponses = {
|
|
|
10403
11482
|
};
|
|
10404
11483
|
type UpdateJobResponse = UpdateJobResponses[keyof UpdateJobResponses];
|
|
10405
11484
|
type CompleteJobData = {
|
|
10406
|
-
body?:
|
|
10407
|
-
/**
|
|
10408
|
-
* The variables to complete the job with.
|
|
10409
|
-
*/
|
|
10410
|
-
variables?: {
|
|
10411
|
-
[key: string]: unknown;
|
|
10412
|
-
} | null;
|
|
10413
|
-
/**
|
|
10414
|
-
* The result of the completed job as determined by the worker.
|
|
10415
|
-
*
|
|
10416
|
-
*/
|
|
10417
|
-
result?: ({
|
|
10418
|
-
type: 'userTask';
|
|
10419
|
-
} & JobResultUserTask) | {
|
|
10420
|
-
/**
|
|
10421
|
-
* Indicates which elements need to be activated in the ad-hoc subprocess.
|
|
10422
|
-
*/
|
|
10423
|
-
activateElements?: Array<{
|
|
10424
|
-
/**
|
|
10425
|
-
* The element ID to activate.
|
|
10426
|
-
*/
|
|
10427
|
-
elementId?: ElementId;
|
|
10428
|
-
/**
|
|
10429
|
-
* Variables for the element.
|
|
10430
|
-
*/
|
|
10431
|
-
variables?: {
|
|
10432
|
-
[key: string]: unknown;
|
|
10433
|
-
};
|
|
10434
|
-
}>;
|
|
10435
|
-
/**
|
|
10436
|
-
* Indicates whether the completion condition of the ad-hoc subprocess is fulfilled.
|
|
10437
|
-
*/
|
|
10438
|
-
isCompletionConditionFulfilled?: boolean;
|
|
10439
|
-
/**
|
|
10440
|
-
* Indicates whether the remaining instances of the ad-hoc subprocess should be canceled.
|
|
10441
|
-
*/
|
|
10442
|
-
isCancelRemainingInstances?: boolean;
|
|
10443
|
-
/**
|
|
10444
|
-
* Used to distinguish between different types of job results.
|
|
10445
|
-
*/
|
|
10446
|
-
type?: string;
|
|
10447
|
-
} | null;
|
|
10448
|
-
};
|
|
11485
|
+
body?: JobCompletionRequest;
|
|
10449
11486
|
path: {
|
|
10450
11487
|
/**
|
|
10451
11488
|
* The key of the job to complete.
|
|
@@ -10575,6 +11612,53 @@ type FailJobResponses = {
|
|
|
10575
11612
|
204: void;
|
|
10576
11613
|
};
|
|
10577
11614
|
type FailJobResponse = FailJobResponses[keyof FailJobResponses];
|
|
11615
|
+
type GetGlobalJobStatisticsData = {
|
|
11616
|
+
body?: never;
|
|
11617
|
+
path?: never;
|
|
11618
|
+
query: {
|
|
11619
|
+
/**
|
|
11620
|
+
* Start of the time window to filter metrics. ISO 8601 date-time format.
|
|
11621
|
+
*
|
|
11622
|
+
*/
|
|
11623
|
+
from: string;
|
|
11624
|
+
/**
|
|
11625
|
+
* End of the time window to filter metrics. ISO 8601 date-time format.
|
|
11626
|
+
*
|
|
11627
|
+
*/
|
|
11628
|
+
to: string;
|
|
11629
|
+
/**
|
|
11630
|
+
* Optional job type to limit the aggregation to a single job type.
|
|
11631
|
+
*/
|
|
11632
|
+
jobType?: string;
|
|
11633
|
+
};
|
|
11634
|
+
url: '/jobs/statistics/global';
|
|
11635
|
+
};
|
|
11636
|
+
type GetGlobalJobStatisticsErrors = {
|
|
11637
|
+
/**
|
|
11638
|
+
* The provided data is not valid.
|
|
11639
|
+
*/
|
|
11640
|
+
400: ProblemDetail;
|
|
11641
|
+
/**
|
|
11642
|
+
* The request lacks valid authentication credentials.
|
|
11643
|
+
*/
|
|
11644
|
+
401: ProblemDetail;
|
|
11645
|
+
/**
|
|
11646
|
+
* Forbidden. The request is not allowed.
|
|
11647
|
+
*/
|
|
11648
|
+
403: ProblemDetail;
|
|
11649
|
+
/**
|
|
11650
|
+
* An internal error occurred while processing the request.
|
|
11651
|
+
*/
|
|
11652
|
+
500: ProblemDetail;
|
|
11653
|
+
};
|
|
11654
|
+
type GetGlobalJobStatisticsError = GetGlobalJobStatisticsErrors[keyof GetGlobalJobStatisticsErrors];
|
|
11655
|
+
type GetGlobalJobStatisticsResponses = {
|
|
11656
|
+
/**
|
|
11657
|
+
* Global job metrics
|
|
11658
|
+
*/
|
|
11659
|
+
200: GlobalJobStatisticsQueryResult;
|
|
11660
|
+
};
|
|
11661
|
+
type GetGlobalJobStatisticsResponse = GetGlobalJobStatisticsResponses[keyof GetGlobalJobStatisticsResponses];
|
|
10578
11662
|
type GetLicenseData = {
|
|
10579
11663
|
body?: never;
|
|
10580
11664
|
path?: never;
|
|
@@ -10886,6 +11970,7 @@ type SearchMessageSubscriptionsResponses = {
|
|
|
10886
11970
|
* The process instance key associated with this message subscription.
|
|
10887
11971
|
*/
|
|
10888
11972
|
processInstanceKey?: ProcessInstanceKey;
|
|
11973
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
10889
11974
|
/**
|
|
10890
11975
|
* The element ID associated with this message subscription.
|
|
10891
11976
|
*/
|
|
@@ -11413,35 +12498,9 @@ type GetProcessDefinitionStatisticsErrors = {
|
|
|
11413
12498
|
type GetProcessDefinitionStatisticsError = GetProcessDefinitionStatisticsErrors[keyof GetProcessDefinitionStatisticsErrors];
|
|
11414
12499
|
type GetProcessDefinitionStatisticsResponses = {
|
|
11415
12500
|
/**
|
|
11416
|
-
*
|
|
12501
|
+
* The process definition statistics result.
|
|
11417
12502
|
*/
|
|
11418
|
-
200:
|
|
11419
|
-
/**
|
|
11420
|
-
* The element statistics.
|
|
11421
|
-
*/
|
|
11422
|
-
items?: Array<{
|
|
11423
|
-
/**
|
|
11424
|
-
* The element ID for which the results are aggregated.
|
|
11425
|
-
*/
|
|
11426
|
-
elementId?: ElementId;
|
|
11427
|
-
/**
|
|
11428
|
-
* The total number of active instances of the element.
|
|
11429
|
-
*/
|
|
11430
|
-
active?: number;
|
|
11431
|
-
/**
|
|
11432
|
-
* The total number of canceled instances of the element.
|
|
11433
|
-
*/
|
|
11434
|
-
canceled?: number;
|
|
11435
|
-
/**
|
|
11436
|
-
* The total number of incidents for the element.
|
|
11437
|
-
*/
|
|
11438
|
-
incidents?: number;
|
|
11439
|
-
/**
|
|
11440
|
-
* The total number of completed instances of the element.
|
|
11441
|
-
*/
|
|
11442
|
-
completed?: number;
|
|
11443
|
-
}>;
|
|
11444
|
-
};
|
|
12503
|
+
200: ProcessDefinitionElementStatisticsQueryResult;
|
|
11445
12504
|
};
|
|
11446
12505
|
type GetProcessDefinitionStatisticsResponse = GetProcessDefinitionStatisticsResponses[keyof GetProcessDefinitionStatisticsResponses];
|
|
11447
12506
|
type GetProcessDefinitionXmlData = {
|
|
@@ -11493,7 +12552,7 @@ type GetProcessDefinitionXmlResponses = {
|
|
|
11493
12552
|
};
|
|
11494
12553
|
type GetProcessDefinitionXmlResponse = GetProcessDefinitionXmlResponses[keyof GetProcessDefinitionXmlResponses];
|
|
11495
12554
|
type GetProcessDefinitionInstanceVersionStatisticsData = {
|
|
11496
|
-
body
|
|
12555
|
+
body: {
|
|
11497
12556
|
/**
|
|
11498
12557
|
* Pagination criteria.
|
|
11499
12558
|
*/
|
|
@@ -11511,16 +12570,11 @@ type GetProcessDefinitionInstanceVersionStatisticsData = {
|
|
|
11511
12570
|
/**
|
|
11512
12571
|
* The process definition instance version statistics search filters.
|
|
11513
12572
|
*/
|
|
11514
|
-
filter
|
|
11515
|
-
};
|
|
11516
|
-
path: {
|
|
11517
|
-
/**
|
|
11518
|
-
* The ID of the process definition.
|
|
11519
|
-
*/
|
|
11520
|
-
processDefinitionId: ProcessDefinitionId;
|
|
12573
|
+
filter: ProcessDefinitionInstanceVersionStatisticsFilter;
|
|
11521
12574
|
};
|
|
12575
|
+
path?: never;
|
|
11522
12576
|
query?: never;
|
|
11523
|
-
url: '/process-definitions/
|
|
12577
|
+
url: '/process-definitions/statistics/process-instances-by-version';
|
|
11524
12578
|
};
|
|
11525
12579
|
type GetProcessDefinitionInstanceVersionStatisticsErrors = {
|
|
11526
12580
|
/**
|
|
@@ -11584,17 +12638,7 @@ type CreateProcessInstanceData = {
|
|
|
11584
12638
|
* after it has been created.
|
|
11585
12639
|
*
|
|
11586
12640
|
*/
|
|
11587
|
-
startInstructions?: Array<
|
|
11588
|
-
/**
|
|
11589
|
-
* Future extensions might include:
|
|
11590
|
-
* - different types of start instructions
|
|
11591
|
-
* - ability to set local variables for different flow scopes
|
|
11592
|
-
*
|
|
11593
|
-
* For now, however, the start instruction is implicitly a "startBeforeElement" instruction
|
|
11594
|
-
*
|
|
11595
|
-
*/
|
|
11596
|
-
elementId: ElementId;
|
|
11597
|
-
}>;
|
|
12641
|
+
startInstructions?: Array<ProcessInstanceCreationStartInstruction>;
|
|
11598
12642
|
/**
|
|
11599
12643
|
* Runtime instructions (alpha). List of instructions that affect the runtime behavior of
|
|
11600
12644
|
* the process instance. Refer to specific instruction types for more details.
|
|
@@ -11603,17 +12647,7 @@ type CreateProcessInstanceData = {
|
|
|
11603
12647
|
* in future releases.
|
|
11604
12648
|
*
|
|
11605
12649
|
*/
|
|
11606
|
-
runtimeInstructions?: Array<
|
|
11607
|
-
/**
|
|
11608
|
-
* The type of the runtime instruction
|
|
11609
|
-
*/
|
|
11610
|
-
type?: string;
|
|
11611
|
-
/**
|
|
11612
|
-
* The id of the element that, once completed or terminated, will cause the process to be terminated.
|
|
11613
|
-
*
|
|
11614
|
-
*/
|
|
11615
|
-
afterElementId: ElementId;
|
|
11616
|
-
}>;
|
|
12650
|
+
runtimeInstructions?: Array<ProcessInstanceCreationRuntimeInstruction>;
|
|
11617
12651
|
/**
|
|
11618
12652
|
* Wait for the process instance to complete. If the process instance completion does
|
|
11619
12653
|
* not occur within the requestTimeout, the request will be closed. This can lead to a 504
|
|
@@ -11641,6 +12675,12 @@ type CreateProcessInstanceData = {
|
|
|
11641
12675
|
*
|
|
11642
12676
|
*/
|
|
11643
12677
|
processDefinitionKey: ProcessDefinitionKey;
|
|
12678
|
+
/**
|
|
12679
|
+
* As the version is already identified by the `processDefinitionKey`, the value of this field is ignored.
|
|
12680
|
+
* It's here for backwards-compatibility only as previous releases accepted it in request bodies.
|
|
12681
|
+
*
|
|
12682
|
+
*/
|
|
12683
|
+
processDefinitionVersion?: number;
|
|
11644
12684
|
/**
|
|
11645
12685
|
* JSON object that will instantiate the variables for the root variable scope
|
|
11646
12686
|
* of the process instance.
|
|
@@ -11655,17 +12695,7 @@ type CreateProcessInstanceData = {
|
|
|
11655
12695
|
* after it has been created.
|
|
11656
12696
|
*
|
|
11657
12697
|
*/
|
|
11658
|
-
startInstructions?: Array<
|
|
11659
|
-
/**
|
|
11660
|
-
* Future extensions might include:
|
|
11661
|
-
* - different types of start instructions
|
|
11662
|
-
* - ability to set local variables for different flow scopes
|
|
11663
|
-
*
|
|
11664
|
-
* For now, however, the start instruction is implicitly a "startBeforeElement" instruction
|
|
11665
|
-
*
|
|
11666
|
-
*/
|
|
11667
|
-
elementId: ElementId;
|
|
11668
|
-
}>;
|
|
12698
|
+
startInstructions?: Array<ProcessInstanceCreationStartInstruction>;
|
|
11669
12699
|
/**
|
|
11670
12700
|
* Runtime instructions (alpha). List of instructions that affect the runtime behavior of
|
|
11671
12701
|
* the process instance. Refer to specific instruction types for more details.
|
|
@@ -11674,17 +12704,7 @@ type CreateProcessInstanceData = {
|
|
|
11674
12704
|
* in future releases.
|
|
11675
12705
|
*
|
|
11676
12706
|
*/
|
|
11677
|
-
runtimeInstructions?: Array<
|
|
11678
|
-
/**
|
|
11679
|
-
* The type of the runtime instruction
|
|
11680
|
-
*/
|
|
11681
|
-
type?: string;
|
|
11682
|
-
/**
|
|
11683
|
-
* The id of the element that, once completed or terminated, will cause the process to be terminated.
|
|
11684
|
-
*
|
|
11685
|
-
*/
|
|
11686
|
-
afterElementId: ElementId;
|
|
11687
|
-
}>;
|
|
12707
|
+
runtimeInstructions?: Array<ProcessInstanceCreationRuntimeInstruction>;
|
|
11688
12708
|
/**
|
|
11689
12709
|
* The tenant id of the process definition.
|
|
11690
12710
|
*/
|
|
@@ -11879,28 +12899,9 @@ type MigrateProcessInstancesBatchOperationData = {
|
|
|
11879
12899
|
*/
|
|
11880
12900
|
filter: ProcessInstanceFilter;
|
|
11881
12901
|
/**
|
|
11882
|
-
* The migration
|
|
11883
|
-
*
|
|
12902
|
+
* The migration plan.
|
|
11884
12903
|
*/
|
|
11885
|
-
migrationPlan:
|
|
11886
|
-
/**
|
|
11887
|
-
* The target process definition key.
|
|
11888
|
-
*/
|
|
11889
|
-
targetProcessDefinitionKey: ProcessDefinitionKey;
|
|
11890
|
-
/**
|
|
11891
|
-
* The mapping instructions.
|
|
11892
|
-
*/
|
|
11893
|
-
mappingInstructions: Array<{
|
|
11894
|
-
/**
|
|
11895
|
-
* The element id to migrate from.
|
|
11896
|
-
*/
|
|
11897
|
-
sourceElementId: ElementId;
|
|
11898
|
-
/**
|
|
11899
|
-
* The element id to migrate into.
|
|
11900
|
-
*/
|
|
11901
|
-
targetElementId: ElementId;
|
|
11902
|
-
}>;
|
|
11903
|
-
};
|
|
12904
|
+
migrationPlan: ProcessInstanceMigrationBatchOperationPlan;
|
|
11904
12905
|
operationReference?: OperationReference;
|
|
11905
12906
|
};
|
|
11906
12907
|
path?: never;
|
|
@@ -11948,16 +12949,7 @@ type ModifyProcessInstancesBatchOperationData = {
|
|
|
11948
12949
|
/**
|
|
11949
12950
|
* Instructions for moving tokens between elements.
|
|
11950
12951
|
*/
|
|
11951
|
-
moveInstructions: Array<
|
|
11952
|
-
/**
|
|
11953
|
-
* The source element ID.
|
|
11954
|
-
*/
|
|
11955
|
-
sourceElementId: ElementId;
|
|
11956
|
-
/**
|
|
11957
|
-
* The target element ID.
|
|
11958
|
-
*/
|
|
11959
|
-
targetElementId: ElementId;
|
|
11960
|
-
}>;
|
|
12952
|
+
moveInstructions: Array<ProcessInstanceModificationMoveBatchOperationInstruction>;
|
|
11961
12953
|
operationReference?: OperationReference;
|
|
11962
12954
|
};
|
|
11963
12955
|
path?: never;
|
|
@@ -12154,6 +13146,7 @@ type SearchProcessInstancesResponses = {
|
|
|
12154
13146
|
* The parent element instance key.
|
|
12155
13147
|
*/
|
|
12156
13148
|
parentElementInstanceKey?: ElementInstanceKey;
|
|
13149
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
12157
13150
|
tags?: TagSet;
|
|
12158
13151
|
}>;
|
|
12159
13152
|
};
|
|
@@ -12232,6 +13225,7 @@ type GetProcessInstanceResponses = {
|
|
|
12232
13225
|
* The parent element instance key.
|
|
12233
13226
|
*/
|
|
12234
13227
|
parentElementInstanceKey?: ElementInstanceKey;
|
|
13228
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
12235
13229
|
tags?: TagSet;
|
|
12236
13230
|
};
|
|
12237
13231
|
};
|
|
@@ -12360,9 +13354,9 @@ type DeleteProcessInstanceErrors = {
|
|
|
12360
13354
|
type DeleteProcessInstanceError = DeleteProcessInstanceErrors[keyof DeleteProcessInstanceErrors];
|
|
12361
13355
|
type DeleteProcessInstanceResponses = {
|
|
12362
13356
|
/**
|
|
12363
|
-
* The
|
|
13357
|
+
* The process instance is marked for deletion.
|
|
12364
13358
|
*/
|
|
12365
|
-
|
|
13359
|
+
204: void;
|
|
12366
13360
|
};
|
|
12367
13361
|
type DeleteProcessInstanceResponse = DeleteProcessInstanceResponses[keyof DeleteProcessInstanceResponses];
|
|
12368
13362
|
type ResolveProcessInstanceIncidentsData = {
|
|
@@ -12445,7 +13439,53 @@ type SearchProcessInstanceIncidentsResponses = {
|
|
|
12445
13439
|
/**
|
|
12446
13440
|
* The process instance search result.
|
|
12447
13441
|
*/
|
|
12448
|
-
200:
|
|
13442
|
+
200: SearchQueryResponse & {
|
|
13443
|
+
/**
|
|
13444
|
+
* The matching incidents.
|
|
13445
|
+
*/
|
|
13446
|
+
items?: Array<{
|
|
13447
|
+
/**
|
|
13448
|
+
* The process definition ID associated to this incident.
|
|
13449
|
+
*/
|
|
13450
|
+
processDefinitionId?: ProcessDefinitionId;
|
|
13451
|
+
errorType?: IncidentErrorTypeEnum;
|
|
13452
|
+
/**
|
|
13453
|
+
* Error message which describes the error in more detail.
|
|
13454
|
+
*/
|
|
13455
|
+
errorMessage?: string;
|
|
13456
|
+
/**
|
|
13457
|
+
* The element ID associated to this incident.
|
|
13458
|
+
*/
|
|
13459
|
+
elementId?: ElementId;
|
|
13460
|
+
creationTime?: string;
|
|
13461
|
+
state?: IncidentStateEnum;
|
|
13462
|
+
/**
|
|
13463
|
+
* The tenant ID of the incident.
|
|
13464
|
+
*/
|
|
13465
|
+
tenantId?: TenantId;
|
|
13466
|
+
/**
|
|
13467
|
+
* The assigned key, which acts as a unique identifier for this incident.
|
|
13468
|
+
*/
|
|
13469
|
+
incidentKey?: IncidentKey;
|
|
13470
|
+
/**
|
|
13471
|
+
* The process definition key associated to this incident.
|
|
13472
|
+
*/
|
|
13473
|
+
processDefinitionKey?: ProcessDefinitionKey;
|
|
13474
|
+
/**
|
|
13475
|
+
* The process instance key associated to this incident.
|
|
13476
|
+
*/
|
|
13477
|
+
processInstanceKey?: ProcessInstanceKey;
|
|
13478
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
13479
|
+
/**
|
|
13480
|
+
* The element instance key associated to this incident.
|
|
13481
|
+
*/
|
|
13482
|
+
elementInstanceKey?: ElementInstanceKey;
|
|
13483
|
+
/**
|
|
13484
|
+
* The job key, if exists, associated with this incident.
|
|
13485
|
+
*/
|
|
13486
|
+
jobKey?: JobKey;
|
|
13487
|
+
}>;
|
|
13488
|
+
};
|
|
12449
13489
|
};
|
|
12450
13490
|
type SearchProcessInstanceIncidentsResponse = SearchProcessInstanceIncidentsResponses[keyof SearchProcessInstanceIncidentsResponses];
|
|
12451
13491
|
type MigrateProcessInstanceData = {
|
|
@@ -12461,16 +13501,7 @@ type MigrateProcessInstanceData = {
|
|
|
12461
13501
|
/**
|
|
12462
13502
|
* Element mappings from the source process instance to the target process instance.
|
|
12463
13503
|
*/
|
|
12464
|
-
mappingInstructions: Array<
|
|
12465
|
-
/**
|
|
12466
|
-
* The element id to migrate from.
|
|
12467
|
-
*/
|
|
12468
|
-
sourceElementId: ElementId;
|
|
12469
|
-
/**
|
|
12470
|
-
* The element id to migrate into.
|
|
12471
|
-
*/
|
|
12472
|
-
targetElementId: ElementId;
|
|
12473
|
-
}>;
|
|
13504
|
+
mappingInstructions: Array<MigrateProcessInstanceMappingInstruction>;
|
|
12474
13505
|
operationReference?: OperationReference;
|
|
12475
13506
|
};
|
|
12476
13507
|
path: {
|
|
@@ -12520,64 +13551,15 @@ type ModifyProcessInstanceData = {
|
|
|
12520
13551
|
/**
|
|
12521
13552
|
* Instructions describing which elements to activate in which scopes and which variables to create or update.
|
|
12522
13553
|
*/
|
|
12523
|
-
activateInstructions?: Array<
|
|
12524
|
-
/**
|
|
12525
|
-
* The id of the element to activate.
|
|
12526
|
-
*/
|
|
12527
|
-
elementId: ElementId;
|
|
12528
|
-
/**
|
|
12529
|
-
* Instructions describing which variables to create or update.
|
|
12530
|
-
*/
|
|
12531
|
-
variableInstructions?: Array<ModifyProcessInstanceVariableInstruction>;
|
|
12532
|
-
/**
|
|
12533
|
-
* The key of the ancestor scope the element instance should be created in.
|
|
12534
|
-
* Set to -1 to create the new element instance within an existing element instance of the
|
|
12535
|
-
* flow scope. If multiple instances of the target element's flow scope exist, choose one
|
|
12536
|
-
* specifically with this property by providing its key.
|
|
12537
|
-
*
|
|
12538
|
-
*/
|
|
12539
|
-
ancestorElementInstanceKey?: string | ElementInstanceKey;
|
|
12540
|
-
}>;
|
|
13554
|
+
activateInstructions?: Array<ProcessInstanceModificationActivateInstruction>;
|
|
12541
13555
|
/**
|
|
12542
13556
|
* Instructions describing which elements to move from one scope to another.
|
|
12543
13557
|
*/
|
|
12544
|
-
moveInstructions?: Array<
|
|
12545
|
-
/**
|
|
12546
|
-
* Defines the source element identifier for the move instruction. It can either be a sourceElementId, or sourceElementInstanceKey.
|
|
12547
|
-
*
|
|
12548
|
-
*/
|
|
12549
|
-
sourceElementInstruction: {
|
|
12550
|
-
/**
|
|
12551
|
-
* The type of source element instruction.
|
|
12552
|
-
*/
|
|
12553
|
-
sourceType: string;
|
|
12554
|
-
/**
|
|
12555
|
-
* The id of the source element for the move instruction.
|
|
12556
|
-
*
|
|
12557
|
-
*/
|
|
12558
|
-
sourceElementId: ElementId;
|
|
12559
|
-
} | ({
|
|
12560
|
-
sourceType: 'byKey';
|
|
12561
|
-
} & SourceElementInstanceKeyInstruction);
|
|
12562
|
-
/**
|
|
12563
|
-
* The target element id.
|
|
12564
|
-
*/
|
|
12565
|
-
targetElementId: ElementId;
|
|
12566
|
-
ancestorScopeInstruction?: AncestorScopeInstruction;
|
|
12567
|
-
/**
|
|
12568
|
-
* Instructions describing which variables to create or update.
|
|
12569
|
-
*/
|
|
12570
|
-
variableInstructions?: Array<ModifyProcessInstanceVariableInstruction>;
|
|
12571
|
-
}>;
|
|
13558
|
+
moveInstructions?: Array<ProcessInstanceModificationMoveInstruction>;
|
|
12572
13559
|
/**
|
|
12573
|
-
*
|
|
13560
|
+
* Instructions describing which elements to terminate.
|
|
12574
13561
|
*/
|
|
12575
|
-
terminateInstructions?: Array<
|
|
12576
|
-
/**
|
|
12577
|
-
* The id of the elements to terminate. The element instances are determined at runtime.
|
|
12578
|
-
*/
|
|
12579
|
-
elementId: ElementId;
|
|
12580
|
-
} | ProcessInstanceModificationTerminateByKeyInstruction>;
|
|
13562
|
+
terminateInstructions?: Array<ProcessInstanceModificationTerminateInstruction>;
|
|
12581
13563
|
};
|
|
12582
13564
|
path: {
|
|
12583
13565
|
/**
|
|
@@ -12662,6 +13644,7 @@ type GetProcessInstanceSequenceFlowsResponses = {
|
|
|
12662
13644
|
* The key of this process instance.
|
|
12663
13645
|
*/
|
|
12664
13646
|
processInstanceKey?: ProcessInstanceKey;
|
|
13647
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
12665
13648
|
/**
|
|
12666
13649
|
* The process definition key.
|
|
12667
13650
|
*/
|
|
@@ -12699,47 +13682,21 @@ type GetProcessInstanceStatisticsErrors = {
|
|
|
12699
13682
|
* The request lacks valid authentication credentials.
|
|
12700
13683
|
*/
|
|
12701
13684
|
401: ProblemDetail;
|
|
12702
|
-
/**
|
|
12703
|
-
* Forbidden. The request is not allowed.
|
|
12704
|
-
*/
|
|
12705
|
-
403: ProblemDetail;
|
|
12706
|
-
/**
|
|
12707
|
-
* An internal error occurred while processing the request.
|
|
12708
|
-
*/
|
|
12709
|
-
500: ProblemDetail;
|
|
12710
|
-
};
|
|
12711
|
-
type GetProcessInstanceStatisticsError = GetProcessInstanceStatisticsErrors[keyof GetProcessInstanceStatisticsErrors];
|
|
12712
|
-
type GetProcessInstanceStatisticsResponses = {
|
|
12713
|
-
/**
|
|
12714
|
-
*
|
|
12715
|
-
*/
|
|
12716
|
-
200:
|
|
12717
|
-
/**
|
|
12718
|
-
* The element statistics.
|
|
12719
|
-
*/
|
|
12720
|
-
items?: Array<{
|
|
12721
|
-
/**
|
|
12722
|
-
* The element ID for which the results are aggregated.
|
|
12723
|
-
*/
|
|
12724
|
-
elementId?: ElementId;
|
|
12725
|
-
/**
|
|
12726
|
-
* The total number of active instances of the element.
|
|
12727
|
-
*/
|
|
12728
|
-
active?: number;
|
|
12729
|
-
/**
|
|
12730
|
-
* The total number of canceled instances of the element.
|
|
12731
|
-
*/
|
|
12732
|
-
canceled?: number;
|
|
12733
|
-
/**
|
|
12734
|
-
* The total number of incidents for the element.
|
|
12735
|
-
*/
|
|
12736
|
-
incidents?: number;
|
|
12737
|
-
/**
|
|
12738
|
-
* The total number of completed instances of the element.
|
|
12739
|
-
*/
|
|
12740
|
-
completed?: number;
|
|
12741
|
-
}>;
|
|
12742
|
-
};
|
|
13685
|
+
/**
|
|
13686
|
+
* Forbidden. The request is not allowed.
|
|
13687
|
+
*/
|
|
13688
|
+
403: ProblemDetail;
|
|
13689
|
+
/**
|
|
13690
|
+
* An internal error occurred while processing the request.
|
|
13691
|
+
*/
|
|
13692
|
+
500: ProblemDetail;
|
|
13693
|
+
};
|
|
13694
|
+
type GetProcessInstanceStatisticsError = GetProcessInstanceStatisticsErrors[keyof GetProcessInstanceStatisticsErrors];
|
|
13695
|
+
type GetProcessInstanceStatisticsResponses = {
|
|
13696
|
+
/**
|
|
13697
|
+
* The process instance statistics result.
|
|
13698
|
+
*/
|
|
13699
|
+
200: ProcessInstanceElementStatisticsQueryResult;
|
|
12743
13700
|
};
|
|
12744
13701
|
type GetProcessInstanceStatisticsResponse = GetProcessInstanceStatisticsResponses[keyof GetProcessInstanceStatisticsResponses];
|
|
12745
13702
|
type GetResourceData = {
|
|
@@ -14825,7 +15782,7 @@ type SearchUserTasksData = {
|
|
|
14825
15782
|
* The task name. This only works for data created with 8.8 and onwards. Instances from prior versions don't contain this data and cannot be found.
|
|
14826
15783
|
*
|
|
14827
15784
|
*/
|
|
14828
|
-
name?:
|
|
15785
|
+
name?: StringFilterProperty;
|
|
14829
15786
|
/**
|
|
14830
15787
|
* The candidate group for this user task.
|
|
14831
15788
|
*/
|
|
@@ -14991,6 +15948,7 @@ type SearchUserTasksResponses = {
|
|
|
14991
15948
|
* The key of the process instance.
|
|
14992
15949
|
*/
|
|
14993
15950
|
processInstanceKey?: ProcessInstanceKey;
|
|
15951
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
14994
15952
|
/**
|
|
14995
15953
|
* The key of the form.
|
|
14996
15954
|
*/
|
|
@@ -15119,6 +16077,7 @@ type GetUserTaskResponses = {
|
|
|
15119
16077
|
* The key of the process instance.
|
|
15120
16078
|
*/
|
|
15121
16079
|
processInstanceKey?: ProcessInstanceKey;
|
|
16080
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
15122
16081
|
/**
|
|
15123
16082
|
* The key of the form.
|
|
15124
16083
|
*/
|
|
@@ -15342,6 +16301,7 @@ type SearchUserTaskAuditLogsResponses = {
|
|
|
15342
16301
|
* The key of the process instance.
|
|
15343
16302
|
*/
|
|
15344
16303
|
processInstanceKey?: ProcessInstanceKey;
|
|
16304
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
15345
16305
|
/**
|
|
15346
16306
|
* The key of the element instance.
|
|
15347
16307
|
*/
|
|
@@ -15386,6 +16346,24 @@ type SearchUserTaskAuditLogsResponses = {
|
|
|
15386
16346
|
* The system-assigned key for this resource.
|
|
15387
16347
|
*/
|
|
15388
16348
|
resourceKey?: ResourceKey;
|
|
16349
|
+
/**
|
|
16350
|
+
* The key of the related entity. The content depends on the operation type and entity type.
|
|
16351
|
+
* For example, for authorization operations, this will contain the ID of the owner (e.g., user or group) the authorization belongs to.
|
|
16352
|
+
*
|
|
16353
|
+
*/
|
|
16354
|
+
relatedEntityKey?: AuditLogEntityKey;
|
|
16355
|
+
/**
|
|
16356
|
+
* The type of the related entity. The content depends on the operation type and entity type.
|
|
16357
|
+
* For example, for authorization operations, this will contain the type of the owner (e.g., USER or GROUP) the authorization belongs to.
|
|
16358
|
+
*
|
|
16359
|
+
*/
|
|
16360
|
+
relatedEntityType?: AuditLogEntityTypeEnum;
|
|
16361
|
+
/**
|
|
16362
|
+
* Additional description of the entity affected by the operation.
|
|
16363
|
+
* For example, for variable operations, this will contain the variable name.
|
|
16364
|
+
*
|
|
16365
|
+
*/
|
|
16366
|
+
entityDescription?: string;
|
|
15389
16367
|
}>;
|
|
15390
16368
|
};
|
|
15391
16369
|
};
|
|
@@ -15553,9 +16531,45 @@ type SearchUserTaskVariablesErrors = {
|
|
|
15553
16531
|
type SearchUserTaskVariablesError = SearchUserTaskVariablesErrors[keyof SearchUserTaskVariablesErrors];
|
|
15554
16532
|
type SearchUserTaskVariablesResponses = {
|
|
15555
16533
|
/**
|
|
15556
|
-
*
|
|
16534
|
+
* Variable search query response.
|
|
15557
16535
|
*/
|
|
15558
|
-
200:
|
|
16536
|
+
200: SearchQueryResponse & {
|
|
16537
|
+
/**
|
|
16538
|
+
* The matching variables.
|
|
16539
|
+
*/
|
|
16540
|
+
items?: Array<{
|
|
16541
|
+
/**
|
|
16542
|
+
* Name of this variable.
|
|
16543
|
+
*/
|
|
16544
|
+
name?: string;
|
|
16545
|
+
/**
|
|
16546
|
+
* Tenant ID of this variable.
|
|
16547
|
+
*/
|
|
16548
|
+
tenantId?: TenantId;
|
|
16549
|
+
/**
|
|
16550
|
+
* The key for this variable.
|
|
16551
|
+
*/
|
|
16552
|
+
variableKey?: VariableKey;
|
|
16553
|
+
/**
|
|
16554
|
+
* The key of the scope of this variable.
|
|
16555
|
+
*/
|
|
16556
|
+
scopeKey?: ScopeKey;
|
|
16557
|
+
/**
|
|
16558
|
+
* The key of the process instance of this variable.
|
|
16559
|
+
*/
|
|
16560
|
+
processInstanceKey?: ProcessInstanceKey;
|
|
16561
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
16562
|
+
} & {
|
|
16563
|
+
/**
|
|
16564
|
+
* Value of this variable. Can be truncated.
|
|
16565
|
+
*/
|
|
16566
|
+
value?: string;
|
|
16567
|
+
/**
|
|
16568
|
+
* Whether the value is truncated or not.
|
|
16569
|
+
*/
|
|
16570
|
+
isTruncated?: boolean;
|
|
16571
|
+
}>;
|
|
16572
|
+
};
|
|
15559
16573
|
};
|
|
15560
16574
|
type SearchUserTaskVariablesResponse = SearchUserTaskVariablesResponses[keyof SearchUserTaskVariablesResponses];
|
|
15561
16575
|
type SearchVariablesData = {
|
|
@@ -15598,30 +16612,9 @@ type SearchVariablesData = {
|
|
|
15598
16612
|
*/
|
|
15599
16613
|
variableKey?: VariableKeyFilterProperty;
|
|
15600
16614
|
/**
|
|
15601
|
-
*
|
|
16615
|
+
* The key of the scope of this variable.
|
|
15602
16616
|
*/
|
|
15603
|
-
scopeKey?:
|
|
15604
|
-
/**
|
|
15605
|
-
* Checks for equality with the provided value.
|
|
15606
|
-
*/
|
|
15607
|
-
$eq?: ScopeKey;
|
|
15608
|
-
/**
|
|
15609
|
-
* Checks for inequality with the provided value.
|
|
15610
|
-
*/
|
|
15611
|
-
$neq?: ScopeKey;
|
|
15612
|
-
/**
|
|
15613
|
-
* Checks if the current property exists.
|
|
15614
|
-
*/
|
|
15615
|
-
$exists?: boolean;
|
|
15616
|
-
/**
|
|
15617
|
-
* Checks if the property matches any of the provided values.
|
|
15618
|
-
*/
|
|
15619
|
-
$in?: Array<ScopeKey>;
|
|
15620
|
-
/**
|
|
15621
|
-
* Checks if the property matches none of the provided values.
|
|
15622
|
-
*/
|
|
15623
|
-
$notIn?: Array<ScopeKey>;
|
|
15624
|
-
};
|
|
16617
|
+
scopeKey?: ScopeKeyFilterProperty;
|
|
15625
16618
|
/**
|
|
15626
16619
|
* The key of the process instance of this variable.
|
|
15627
16620
|
*/
|
|
@@ -15658,9 +16651,45 @@ type SearchVariablesErrors = {
|
|
|
15658
16651
|
type SearchVariablesError = SearchVariablesErrors[keyof SearchVariablesErrors];
|
|
15659
16652
|
type SearchVariablesResponses = {
|
|
15660
16653
|
/**
|
|
15661
|
-
*
|
|
16654
|
+
* Variable search query response.
|
|
15662
16655
|
*/
|
|
15663
|
-
200:
|
|
16656
|
+
200: SearchQueryResponse & {
|
|
16657
|
+
/**
|
|
16658
|
+
* The matching variables.
|
|
16659
|
+
*/
|
|
16660
|
+
items?: Array<{
|
|
16661
|
+
/**
|
|
16662
|
+
* Name of this variable.
|
|
16663
|
+
*/
|
|
16664
|
+
name?: string;
|
|
16665
|
+
/**
|
|
16666
|
+
* Tenant ID of this variable.
|
|
16667
|
+
*/
|
|
16668
|
+
tenantId?: TenantId;
|
|
16669
|
+
/**
|
|
16670
|
+
* The key for this variable.
|
|
16671
|
+
*/
|
|
16672
|
+
variableKey?: VariableKey;
|
|
16673
|
+
/**
|
|
16674
|
+
* The key of the scope of this variable.
|
|
16675
|
+
*/
|
|
16676
|
+
scopeKey?: ScopeKey;
|
|
16677
|
+
/**
|
|
16678
|
+
* The key of the process instance of this variable.
|
|
16679
|
+
*/
|
|
16680
|
+
processInstanceKey?: ProcessInstanceKey;
|
|
16681
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
16682
|
+
} & {
|
|
16683
|
+
/**
|
|
16684
|
+
* Value of this variable. Can be truncated.
|
|
16685
|
+
*/
|
|
16686
|
+
value?: string;
|
|
16687
|
+
/**
|
|
16688
|
+
* Whether the value is truncated or not.
|
|
16689
|
+
*/
|
|
16690
|
+
isTruncated?: boolean;
|
|
16691
|
+
}>;
|
|
16692
|
+
};
|
|
15664
16693
|
};
|
|
15665
16694
|
type SearchVariablesResponse = SearchVariablesResponses[keyof SearchVariablesResponses];
|
|
15666
16695
|
type GetVariableData = {
|
|
@@ -15699,9 +16728,36 @@ type GetVariableErrors = {
|
|
|
15699
16728
|
type GetVariableError = GetVariableErrors[keyof GetVariableErrors];
|
|
15700
16729
|
type GetVariableResponses = {
|
|
15701
16730
|
/**
|
|
15702
|
-
*
|
|
16731
|
+
* Variable search response item.
|
|
15703
16732
|
*/
|
|
15704
|
-
200:
|
|
16733
|
+
200: {
|
|
16734
|
+
/**
|
|
16735
|
+
* Name of this variable.
|
|
16736
|
+
*/
|
|
16737
|
+
name?: string;
|
|
16738
|
+
/**
|
|
16739
|
+
* Tenant ID of this variable.
|
|
16740
|
+
*/
|
|
16741
|
+
tenantId?: TenantId;
|
|
16742
|
+
/**
|
|
16743
|
+
* The key for this variable.
|
|
16744
|
+
*/
|
|
16745
|
+
variableKey?: VariableKey;
|
|
16746
|
+
/**
|
|
16747
|
+
* The key of the scope of this variable.
|
|
16748
|
+
*/
|
|
16749
|
+
scopeKey?: ScopeKey;
|
|
16750
|
+
/**
|
|
16751
|
+
* The key of the process instance of this variable.
|
|
16752
|
+
*/
|
|
16753
|
+
processInstanceKey?: ProcessInstanceKey;
|
|
16754
|
+
rootProcessInstanceKey?: ProcessInstanceKey;
|
|
16755
|
+
} & {
|
|
16756
|
+
/**
|
|
16757
|
+
* Full value of this variable.
|
|
16758
|
+
*/
|
|
16759
|
+
value?: string;
|
|
16760
|
+
};
|
|
15705
16761
|
};
|
|
15706
16762
|
type GetVariableResponse = GetVariableResponses[keyof GetVariableResponses];
|
|
15707
16763
|
declare function assertConstraint(value: string, label: string, c: {
|
|
@@ -15934,6 +16990,18 @@ declare namespace ProcessInstanceKey {
|
|
|
15934
16990
|
function getValue(key: ProcessInstanceKey): string;
|
|
15935
16991
|
function isValid(value: string): boolean;
|
|
15936
16992
|
}
|
|
16993
|
+
/**
|
|
16994
|
+
* The key of the root process instance. The root process instance is the top-level
|
|
16995
|
+
* ancestor in the process instance hierarchy. This field is only present for data
|
|
16996
|
+
* belonging to process instance hierarchies created in version 8.9 or later.
|
|
16997
|
+
*
|
|
16998
|
+
*/
|
|
16999
|
+
type RootProcessInstanceKey = CamundaKey<'RootProcessInstanceKey'>;
|
|
17000
|
+
declare namespace RootProcessInstanceKey {
|
|
17001
|
+
function assumeExists(value: string): RootProcessInstanceKey;
|
|
17002
|
+
function getValue(key: RootProcessInstanceKey): string;
|
|
17003
|
+
function isValid(value: string): boolean;
|
|
17004
|
+
}
|
|
15937
17005
|
/**
|
|
15938
17006
|
* System-generated key for a scope.
|
|
15939
17007
|
*/
|
|
@@ -16146,6 +17214,14 @@ declare const deleteGlobalClusterVariable: <ThrowOnError extends boolean = true>
|
|
|
16146
17214
|
* Get a global-scoped cluster variable
|
|
16147
17215
|
*/
|
|
16148
17216
|
declare const getGlobalClusterVariable: <ThrowOnError extends boolean = true>(options: Options<GetGlobalClusterVariableData, ThrowOnError>) => RequestResult<GetGlobalClusterVariableResponses, GetGlobalClusterVariableErrors, ThrowOnError, "fields">;
|
|
17217
|
+
/**
|
|
17218
|
+
* Update a global-scoped cluster variable
|
|
17219
|
+
*
|
|
17220
|
+
* Updates the value of an existing global cluster variable.
|
|
17221
|
+
* The variable must exist, otherwise a 404 error is returned.
|
|
17222
|
+
*
|
|
17223
|
+
*/
|
|
17224
|
+
declare const updateGlobalClusterVariable: <ThrowOnError extends boolean = true>(options: Options<UpdateGlobalClusterVariableData, ThrowOnError>) => RequestResult<UpdateGlobalClusterVariableResponses, UpdateGlobalClusterVariableErrors, ThrowOnError, "fields">;
|
|
16149
17225
|
/**
|
|
16150
17226
|
* Search for cluster variables based on given criteria. By default, long variable values in the response are truncated.
|
|
16151
17227
|
*/
|
|
@@ -16162,6 +17238,14 @@ declare const deleteTenantClusterVariable: <ThrowOnError extends boolean = true>
|
|
|
16162
17238
|
* Get a tenant-scoped cluster variable
|
|
16163
17239
|
*/
|
|
16164
17240
|
declare const getTenantClusterVariable: <ThrowOnError extends boolean = true>(options: Options<GetTenantClusterVariableData, ThrowOnError>) => RequestResult<GetTenantClusterVariableResponses, GetTenantClusterVariableErrors, ThrowOnError, "fields">;
|
|
17241
|
+
/**
|
|
17242
|
+
* Update a tenant-scoped cluster variable
|
|
17243
|
+
*
|
|
17244
|
+
* Updates the value of an existing tenant-scoped cluster variable.
|
|
17245
|
+
* The variable must exist, otherwise a 404 error is returned.
|
|
17246
|
+
*
|
|
17247
|
+
*/
|
|
17248
|
+
declare const updateTenantClusterVariable: <ThrowOnError extends boolean = true>(options: Options<UpdateTenantClusterVariableData, ThrowOnError>) => RequestResult<UpdateTenantClusterVariableResponses, UpdateTenantClusterVariableErrors, ThrowOnError, "fields">;
|
|
16165
17249
|
/**
|
|
16166
17250
|
* Evaluate root level conditional start events
|
|
16167
17251
|
*
|
|
@@ -16217,6 +17301,20 @@ declare const searchDecisionInstances: <ThrowOnError extends boolean = true>(opt
|
|
|
16217
17301
|
* Returns a decision instance.
|
|
16218
17302
|
*/
|
|
16219
17303
|
declare const getDecisionInstance: <ThrowOnError extends boolean = true>(options: Options<GetDecisionInstanceData, ThrowOnError>) => RequestResult<GetDecisionInstanceResponses, GetDecisionInstanceErrors, ThrowOnError, "fields">;
|
|
17304
|
+
/**
|
|
17305
|
+
* Delete decision instance
|
|
17306
|
+
*
|
|
17307
|
+
* Delete all associated decision evaluations based on provided key.
|
|
17308
|
+
*/
|
|
17309
|
+
declare const deleteDecisionInstance: <ThrowOnError extends boolean = true>(options: Options<DeleteDecisionInstanceData, ThrowOnError>) => RequestResult<DeleteDecisionInstanceResponses, DeleteDecisionInstanceErrors, ThrowOnError, "fields">;
|
|
17310
|
+
/**
|
|
17311
|
+
* Delete decision instances (batch)
|
|
17312
|
+
*
|
|
17313
|
+
* Delete multiple decision instances. This will delete the historic data from secondary storage.
|
|
17314
|
+
* This is done asynchronously, the progress can be tracked using the batchOperationKey from the response and the batch operation status endpoint (/batch-operations/{batchOperationKey}).
|
|
17315
|
+
*
|
|
17316
|
+
*/
|
|
17317
|
+
declare const deleteDecisionInstancesBatchOperation: <ThrowOnError extends boolean = true>(options: Options<DeleteDecisionInstancesBatchOperationData, ThrowOnError>) => RequestResult<DeleteDecisionInstancesBatchOperationResponses, DeleteDecisionInstancesBatchOperationErrors, ThrowOnError, "fields">;
|
|
16220
17318
|
/**
|
|
16221
17319
|
* Search decision requirements
|
|
16222
17320
|
*
|
|
@@ -16525,6 +17623,13 @@ declare const throwJobError: <ThrowOnError extends boolean = true>(options: Opti
|
|
|
16525
17623
|
*
|
|
16526
17624
|
*/
|
|
16527
17625
|
declare const failJob: <ThrowOnError extends boolean = true>(options: Options<FailJobData, ThrowOnError>) => RequestResult<FailJobResponses, FailJobErrors, ThrowOnError, "fields">;
|
|
17626
|
+
/**
|
|
17627
|
+
* Global job statistics
|
|
17628
|
+
*
|
|
17629
|
+
* Returns global aggregated counts for jobs. Optionally filter by the creation time window and/or jobType.
|
|
17630
|
+
*
|
|
17631
|
+
*/
|
|
17632
|
+
declare const getGlobalJobStatistics: <ThrowOnError extends boolean = true>(options: Options<GetGlobalJobStatisticsData, ThrowOnError>) => RequestResult<GetGlobalJobStatisticsResponses, GetGlobalJobStatisticsErrors, ThrowOnError, "fields">;
|
|
16528
17633
|
/**
|
|
16529
17634
|
* Get license status
|
|
16530
17635
|
*
|
|
@@ -16643,6 +17748,7 @@ declare const getProcessDefinitionXml: <ThrowOnError extends boolean = true>(opt
|
|
|
16643
17748
|
* Get process instance statistics by version
|
|
16644
17749
|
*
|
|
16645
17750
|
* Get statistics about process instances, grouped by version for a given process definition.
|
|
17751
|
+
* The process definition ID must be provided as a required field in the request body filter.
|
|
16646
17752
|
*
|
|
16647
17753
|
*/
|
|
16648
17754
|
declare const getProcessDefinitionInstanceVersionStatistics: <ThrowOnError extends boolean = true>(options: Options<GetProcessDefinitionInstanceVersionStatisticsData, ThrowOnError>) => RequestResult<GetProcessDefinitionInstanceVersionStatisticsResponses, GetProcessDefinitionInstanceVersionStatisticsErrors, ThrowOnError, "fields">;
|
|
@@ -16817,10 +17923,19 @@ declare const getResourceContent: <ThrowOnError extends boolean = true>(options:
|
|
|
16817
17923
|
/**
|
|
16818
17924
|
* Delete resource
|
|
16819
17925
|
*
|
|
16820
|
-
* Deletes a deployed resource.
|
|
16821
|
-
*
|
|
16822
|
-
*
|
|
17926
|
+
* Deletes a deployed resource. This can be a process definition, decision requirements
|
|
17927
|
+
* definition, or form definition deployed using the deploy resources endpoint. Specify the
|
|
17928
|
+
* resource you want to delete in the `resourceKey` parameter.
|
|
16823
17929
|
*
|
|
17930
|
+
* Once a resource has been deleted it cannot be recovered. If the resource needs to be
|
|
17931
|
+
* available again, a new deployment of the resource is required.
|
|
17932
|
+
*
|
|
17933
|
+
* By default, only the resource itself is deleted from the runtime state. To also delete the
|
|
17934
|
+
* historic data associated with a resource, set the `deleteHistory` flag in the request body
|
|
17935
|
+
* to `true`. The historic data is deleted asynchronously via a batch operation. The details of
|
|
17936
|
+
* the created batch operation are included in the response. Note that history deletion is only
|
|
17937
|
+
* supported for process resources; for other resource types this flag is ignored and no history
|
|
17938
|
+
* will be deleted.
|
|
16824
17939
|
*/
|
|
16825
17940
|
declare const deleteResource: <ThrowOnError extends boolean = true>(options: Options<DeleteResourceData, ThrowOnError>) => RequestResult<DeleteResourceResponses, DeleteResourceErrors, ThrowOnError, "fields">;
|
|
16826
17941
|
/**
|
|
@@ -17628,18 +18743,18 @@ type createDocumentBody = (NonNullable<createDocumentOptions> extends {
|
|
|
17628
18743
|
body?: infer B;
|
|
17629
18744
|
} ? B : never);
|
|
17630
18745
|
type createDocumentQueryParam_storeId = (NonNullable<createDocumentOptions> extends {
|
|
17631
|
-
query
|
|
17632
|
-
storeId
|
|
18746
|
+
query?: {
|
|
18747
|
+
storeId?: infer Q;
|
|
17633
18748
|
};
|
|
17634
18749
|
} ? Q : any);
|
|
17635
18750
|
type createDocumentQueryParam_documentId = (NonNullable<createDocumentOptions> extends {
|
|
17636
|
-
query
|
|
17637
|
-
documentId
|
|
18751
|
+
query?: {
|
|
18752
|
+
documentId?: infer Q;
|
|
17638
18753
|
};
|
|
17639
18754
|
} ? Q : any);
|
|
17640
18755
|
type createDocumentInput = createDocumentBody & {
|
|
17641
|
-
storeId
|
|
17642
|
-
documentId
|
|
18756
|
+
storeId?: createDocumentQueryParam_storeId;
|
|
18757
|
+
documentId?: createDocumentQueryParam_documentId;
|
|
17643
18758
|
};
|
|
17644
18759
|
type createDocumentLinkOptions = Parameters<typeof createDocumentLink>[0];
|
|
17645
18760
|
type createDocumentLinkBody = (NonNullable<createDocumentLinkOptions> extends {
|
|
@@ -17651,31 +18766,31 @@ type createDocumentLinkPathParam_documentId = (NonNullable<createDocumentLinkOpt
|
|
|
17651
18766
|
};
|
|
17652
18767
|
} ? P : any);
|
|
17653
18768
|
type createDocumentLinkQueryParam_storeId = (NonNullable<createDocumentLinkOptions> extends {
|
|
17654
|
-
query
|
|
17655
|
-
storeId
|
|
18769
|
+
query?: {
|
|
18770
|
+
storeId?: infer Q;
|
|
17656
18771
|
};
|
|
17657
18772
|
} ? Q : any);
|
|
17658
18773
|
type createDocumentLinkQueryParam_contentHash = (NonNullable<createDocumentLinkOptions> extends {
|
|
17659
|
-
query
|
|
17660
|
-
contentHash
|
|
18774
|
+
query?: {
|
|
18775
|
+
contentHash?: infer Q;
|
|
17661
18776
|
};
|
|
17662
18777
|
} ? Q : any);
|
|
17663
18778
|
type createDocumentLinkInput = createDocumentLinkBody & {
|
|
17664
18779
|
documentId: createDocumentLinkPathParam_documentId;
|
|
17665
|
-
storeId
|
|
17666
|
-
contentHash
|
|
18780
|
+
storeId?: createDocumentLinkQueryParam_storeId;
|
|
18781
|
+
contentHash?: createDocumentLinkQueryParam_contentHash;
|
|
17667
18782
|
};
|
|
17668
18783
|
type createDocumentsOptions = Parameters<typeof createDocuments>[0];
|
|
17669
18784
|
type createDocumentsBody = (NonNullable<createDocumentsOptions> extends {
|
|
17670
18785
|
body?: infer B;
|
|
17671
18786
|
} ? B : never);
|
|
17672
18787
|
type createDocumentsQueryParam_storeId = (NonNullable<createDocumentsOptions> extends {
|
|
17673
|
-
query
|
|
17674
|
-
storeId
|
|
18788
|
+
query?: {
|
|
18789
|
+
storeId?: infer Q;
|
|
17675
18790
|
};
|
|
17676
18791
|
} ? Q : any);
|
|
17677
18792
|
type createDocumentsInput = createDocumentsBody & {
|
|
17678
|
-
storeId
|
|
18793
|
+
storeId?: createDocumentsQueryParam_storeId;
|
|
17679
18794
|
};
|
|
17680
18795
|
type createElementInstanceVariablesOptions = Parameters<typeof createElementInstanceVariables>[0];
|
|
17681
18796
|
type createElementInstanceVariablesBody = (NonNullable<createElementInstanceVariablesOptions> extends {
|
|
@@ -17750,6 +18865,33 @@ type deleteAuthorizationPathParam_authorizationKey = (NonNullable<deleteAuthoriz
|
|
|
17750
18865
|
type deleteAuthorizationInput = {
|
|
17751
18866
|
authorizationKey: deleteAuthorizationPathParam_authorizationKey;
|
|
17752
18867
|
};
|
|
18868
|
+
type deleteDecisionInstanceOptions = Parameters<typeof deleteDecisionInstance>[0];
|
|
18869
|
+
type deleteDecisionInstanceBody = (NonNullable<deleteDecisionInstanceOptions> extends {
|
|
18870
|
+
body?: infer B;
|
|
18871
|
+
} ? B : never);
|
|
18872
|
+
type deleteDecisionInstancePathParam_decisionInstanceKey = (NonNullable<deleteDecisionInstanceOptions> extends {
|
|
18873
|
+
path: {
|
|
18874
|
+
decisionInstanceKey: infer P;
|
|
18875
|
+
};
|
|
18876
|
+
} ? P : any);
|
|
18877
|
+
type deleteDecisionInstanceInput = deleteDecisionInstanceBody & {
|
|
18878
|
+
decisionInstanceKey: deleteDecisionInstancePathParam_decisionInstanceKey;
|
|
18879
|
+
};
|
|
18880
|
+
/** Management of eventual consistency **/
|
|
18881
|
+
type deleteDecisionInstanceConsistency = {
|
|
18882
|
+
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
18883
|
+
consistency: ConsistencyOptions<_DataOf<typeof deleteDecisionInstance>>;
|
|
18884
|
+
};
|
|
18885
|
+
type deleteDecisionInstancesBatchOperationOptions = Parameters<typeof deleteDecisionInstancesBatchOperation>[0];
|
|
18886
|
+
type deleteDecisionInstancesBatchOperationBody = (NonNullable<deleteDecisionInstancesBatchOperationOptions> extends {
|
|
18887
|
+
body?: infer B;
|
|
18888
|
+
} ? B : never);
|
|
18889
|
+
type deleteDecisionInstancesBatchOperationInput = deleteDecisionInstancesBatchOperationBody;
|
|
18890
|
+
/** Management of eventual consistency **/
|
|
18891
|
+
type deleteDecisionInstancesBatchOperationConsistency = {
|
|
18892
|
+
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
18893
|
+
consistency: ConsistencyOptions<_DataOf<typeof deleteDecisionInstancesBatchOperation>>;
|
|
18894
|
+
};
|
|
17753
18895
|
type deleteDocumentOptions = Parameters<typeof deleteDocument>[0];
|
|
17754
18896
|
type deleteDocumentPathParam_documentId = (NonNullable<deleteDocumentOptions> extends {
|
|
17755
18897
|
path: {
|
|
@@ -17757,13 +18899,13 @@ type deleteDocumentPathParam_documentId = (NonNullable<deleteDocumentOptions> ex
|
|
|
17757
18899
|
};
|
|
17758
18900
|
} ? P : any);
|
|
17759
18901
|
type deleteDocumentQueryParam_storeId = (NonNullable<deleteDocumentOptions> extends {
|
|
17760
|
-
query
|
|
17761
|
-
storeId
|
|
18902
|
+
query?: {
|
|
18903
|
+
storeId?: infer Q;
|
|
17762
18904
|
};
|
|
17763
18905
|
} ? Q : any);
|
|
17764
18906
|
type deleteDocumentInput = {
|
|
17765
18907
|
documentId: deleteDocumentPathParam_documentId;
|
|
17766
|
-
storeId
|
|
18908
|
+
storeId?: deleteDocumentQueryParam_storeId;
|
|
17767
18909
|
};
|
|
17768
18910
|
type deleteGlobalClusterVariableOptions = Parameters<typeof deleteGlobalClusterVariable>[0];
|
|
17769
18911
|
type deleteGlobalClusterVariablePathParam_name = (NonNullable<deleteGlobalClusterVariableOptions> extends {
|
|
@@ -18024,19 +19166,19 @@ type getDocumentPathParam_documentId = (NonNullable<getDocumentOptions> extends
|
|
|
18024
19166
|
};
|
|
18025
19167
|
} ? P : any);
|
|
18026
19168
|
type getDocumentQueryParam_storeId = (NonNullable<getDocumentOptions> extends {
|
|
18027
|
-
query
|
|
18028
|
-
storeId
|
|
19169
|
+
query?: {
|
|
19170
|
+
storeId?: infer Q;
|
|
18029
19171
|
};
|
|
18030
19172
|
} ? Q : any);
|
|
18031
19173
|
type getDocumentQueryParam_contentHash = (NonNullable<getDocumentOptions> extends {
|
|
18032
|
-
query
|
|
18033
|
-
contentHash
|
|
19174
|
+
query?: {
|
|
19175
|
+
contentHash?: infer Q;
|
|
18034
19176
|
};
|
|
18035
19177
|
} ? Q : any);
|
|
18036
19178
|
type getDocumentInput = {
|
|
18037
19179
|
documentId: getDocumentPathParam_documentId;
|
|
18038
|
-
storeId
|
|
18039
|
-
contentHash
|
|
19180
|
+
storeId?: getDocumentQueryParam_storeId;
|
|
19181
|
+
contentHash?: getDocumentQueryParam_contentHash;
|
|
18040
19182
|
};
|
|
18041
19183
|
type getElementInstanceOptions = Parameters<typeof getElementInstance>[0];
|
|
18042
19184
|
type getElementInstancePathParam_elementInstanceKey = (NonNullable<getElementInstanceOptions> extends {
|
|
@@ -18066,6 +19208,32 @@ type getGlobalClusterVariableConsistency = {
|
|
|
18066
19208
|
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
18067
19209
|
consistency: ConsistencyOptions<_DataOf<typeof getGlobalClusterVariable>>;
|
|
18068
19210
|
};
|
|
19211
|
+
type getGlobalJobStatisticsOptions = Parameters<typeof getGlobalJobStatistics>[0];
|
|
19212
|
+
type getGlobalJobStatisticsQueryParam_from = (NonNullable<getGlobalJobStatisticsOptions> extends {
|
|
19213
|
+
query?: {
|
|
19214
|
+
from?: infer Q;
|
|
19215
|
+
};
|
|
19216
|
+
} ? Q : any);
|
|
19217
|
+
type getGlobalJobStatisticsQueryParam_to = (NonNullable<getGlobalJobStatisticsOptions> extends {
|
|
19218
|
+
query?: {
|
|
19219
|
+
to?: infer Q;
|
|
19220
|
+
};
|
|
19221
|
+
} ? Q : any);
|
|
19222
|
+
type getGlobalJobStatisticsQueryParam_jobType = (NonNullable<getGlobalJobStatisticsOptions> extends {
|
|
19223
|
+
query?: {
|
|
19224
|
+
jobType?: infer Q;
|
|
19225
|
+
};
|
|
19226
|
+
} ? Q : any);
|
|
19227
|
+
type getGlobalJobStatisticsInput = {
|
|
19228
|
+
from: getGlobalJobStatisticsQueryParam_from;
|
|
19229
|
+
to: getGlobalJobStatisticsQueryParam_to;
|
|
19230
|
+
jobType?: getGlobalJobStatisticsQueryParam_jobType;
|
|
19231
|
+
};
|
|
19232
|
+
/** Management of eventual consistency **/
|
|
19233
|
+
type getGlobalJobStatisticsConsistency = {
|
|
19234
|
+
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
19235
|
+
consistency: ConsistencyOptions<_DataOf<typeof getGlobalJobStatistics>>;
|
|
19236
|
+
};
|
|
18069
19237
|
type getGroupOptions = Parameters<typeof getGroup>[0];
|
|
18070
19238
|
type getGroupPathParam_groupId = (NonNullable<getGroupOptions> extends {
|
|
18071
19239
|
path: {
|
|
@@ -18136,14 +19304,7 @@ type getProcessDefinitionInstanceVersionStatisticsOptions = Parameters<typeof ge
|
|
|
18136
19304
|
type getProcessDefinitionInstanceVersionStatisticsBody = (NonNullable<getProcessDefinitionInstanceVersionStatisticsOptions> extends {
|
|
18137
19305
|
body?: infer B;
|
|
18138
19306
|
} ? B : never);
|
|
18139
|
-
type
|
|
18140
|
-
path: {
|
|
18141
|
-
processDefinitionId: infer P;
|
|
18142
|
-
};
|
|
18143
|
-
} ? P : any);
|
|
18144
|
-
type getProcessDefinitionInstanceVersionStatisticsInput = getProcessDefinitionInstanceVersionStatisticsBody & {
|
|
18145
|
-
processDefinitionId: getProcessDefinitionInstanceVersionStatisticsPathParam_processDefinitionId;
|
|
18146
|
-
};
|
|
19307
|
+
type getProcessDefinitionInstanceVersionStatisticsInput = getProcessDefinitionInstanceVersionStatisticsBody;
|
|
18147
19308
|
/** Management of eventual consistency **/
|
|
18148
19309
|
type getProcessDefinitionInstanceVersionStatisticsConsistency = {
|
|
18149
19310
|
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
@@ -18348,30 +19509,30 @@ type getTenantClusterVariableConsistency = {
|
|
|
18348
19509
|
};
|
|
18349
19510
|
type getUsageMetricsOptions = Parameters<typeof getUsageMetrics>[0];
|
|
18350
19511
|
type getUsageMetricsQueryParam_startTime = (NonNullable<getUsageMetricsOptions> extends {
|
|
18351
|
-
query
|
|
18352
|
-
startTime
|
|
19512
|
+
query?: {
|
|
19513
|
+
startTime?: infer Q;
|
|
18353
19514
|
};
|
|
18354
19515
|
} ? Q : any);
|
|
18355
19516
|
type getUsageMetricsQueryParam_endTime = (NonNullable<getUsageMetricsOptions> extends {
|
|
18356
|
-
query
|
|
18357
|
-
endTime
|
|
19517
|
+
query?: {
|
|
19518
|
+
endTime?: infer Q;
|
|
18358
19519
|
};
|
|
18359
19520
|
} ? Q : any);
|
|
18360
19521
|
type getUsageMetricsQueryParam_tenantId = (NonNullable<getUsageMetricsOptions> extends {
|
|
18361
|
-
query
|
|
18362
|
-
tenantId
|
|
19522
|
+
query?: {
|
|
19523
|
+
tenantId?: infer Q;
|
|
18363
19524
|
};
|
|
18364
19525
|
} ? Q : any);
|
|
18365
19526
|
type getUsageMetricsQueryParam_withTenants = (NonNullable<getUsageMetricsOptions> extends {
|
|
18366
|
-
query
|
|
18367
|
-
withTenants
|
|
19527
|
+
query?: {
|
|
19528
|
+
withTenants?: infer Q;
|
|
18368
19529
|
};
|
|
18369
19530
|
} ? Q : any);
|
|
18370
19531
|
type getUsageMetricsInput = {
|
|
18371
19532
|
startTime: getUsageMetricsQueryParam_startTime;
|
|
18372
19533
|
endTime: getUsageMetricsQueryParam_endTime;
|
|
18373
|
-
tenantId
|
|
18374
|
-
withTenants
|
|
19534
|
+
tenantId?: getUsageMetricsQueryParam_tenantId;
|
|
19535
|
+
withTenants?: getUsageMetricsQueryParam_withTenants;
|
|
18375
19536
|
};
|
|
18376
19537
|
/** Management of eventual consistency **/
|
|
18377
19538
|
type getUsageMetricsConsistency = {
|
|
@@ -18637,12 +19798,12 @@ type searchClusterVariablesBody = (NonNullable<searchClusterVariablesOptions> ex
|
|
|
18637
19798
|
body?: infer B;
|
|
18638
19799
|
} ? B : never);
|
|
18639
19800
|
type searchClusterVariablesQueryParam_truncateValues = (NonNullable<searchClusterVariablesOptions> extends {
|
|
18640
|
-
query
|
|
18641
|
-
truncateValues
|
|
19801
|
+
query?: {
|
|
19802
|
+
truncateValues?: infer Q;
|
|
18642
19803
|
};
|
|
18643
19804
|
} ? Q : any);
|
|
18644
19805
|
type searchClusterVariablesInput = searchClusterVariablesBody & {
|
|
18645
|
-
truncateValues
|
|
19806
|
+
truncateValues?: searchClusterVariablesQueryParam_truncateValues;
|
|
18646
19807
|
};
|
|
18647
19808
|
/** Management of eventual consistency **/
|
|
18648
19809
|
type searchClusterVariablesConsistency = {
|
|
@@ -19040,13 +20201,13 @@ type searchUserTaskVariablesPathParam_userTaskKey = (NonNullable<searchUserTaskV
|
|
|
19040
20201
|
};
|
|
19041
20202
|
} ? P : any);
|
|
19042
20203
|
type searchUserTaskVariablesQueryParam_truncateValues = (NonNullable<searchUserTaskVariablesOptions> extends {
|
|
19043
|
-
query
|
|
19044
|
-
truncateValues
|
|
20204
|
+
query?: {
|
|
20205
|
+
truncateValues?: infer Q;
|
|
19045
20206
|
};
|
|
19046
20207
|
} ? Q : any);
|
|
19047
20208
|
type searchUserTaskVariablesInput = searchUserTaskVariablesBody & {
|
|
19048
20209
|
userTaskKey: searchUserTaskVariablesPathParam_userTaskKey;
|
|
19049
|
-
truncateValues
|
|
20210
|
+
truncateValues?: searchUserTaskVariablesQueryParam_truncateValues;
|
|
19050
20211
|
};
|
|
19051
20212
|
/** Management of eventual consistency **/
|
|
19052
20213
|
type searchUserTaskVariablesConsistency = {
|
|
@@ -19058,12 +20219,12 @@ type searchVariablesBody = (NonNullable<searchVariablesOptions> extends {
|
|
|
19058
20219
|
body?: infer B;
|
|
19059
20220
|
} ? B : never);
|
|
19060
20221
|
type searchVariablesQueryParam_truncateValues = (NonNullable<searchVariablesOptions> extends {
|
|
19061
|
-
query
|
|
19062
|
-
truncateValues
|
|
20222
|
+
query?: {
|
|
20223
|
+
truncateValues?: infer Q;
|
|
19063
20224
|
};
|
|
19064
20225
|
} ? Q : any);
|
|
19065
20226
|
type searchVariablesInput = searchVariablesBody & {
|
|
19066
|
-
truncateValues
|
|
20227
|
+
truncateValues?: searchVariablesQueryParam_truncateValues;
|
|
19067
20228
|
};
|
|
19068
20229
|
/** Management of eventual consistency **/
|
|
19069
20230
|
type searchVariablesConsistency = {
|
|
@@ -19300,6 +20461,18 @@ type updateAuthorizationPathParam_authorizationKey = (NonNullable<updateAuthoriz
|
|
|
19300
20461
|
type updateAuthorizationInput = updateAuthorizationBody & {
|
|
19301
20462
|
authorizationKey: updateAuthorizationPathParam_authorizationKey;
|
|
19302
20463
|
};
|
|
20464
|
+
type updateGlobalClusterVariableOptions = Parameters<typeof updateGlobalClusterVariable>[0];
|
|
20465
|
+
type updateGlobalClusterVariableBody = (NonNullable<updateGlobalClusterVariableOptions> extends {
|
|
20466
|
+
body?: infer B;
|
|
20467
|
+
} ? B : never);
|
|
20468
|
+
type updateGlobalClusterVariablePathParam_name = (NonNullable<updateGlobalClusterVariableOptions> extends {
|
|
20469
|
+
path: {
|
|
20470
|
+
name: infer P;
|
|
20471
|
+
};
|
|
20472
|
+
} ? P : any);
|
|
20473
|
+
type updateGlobalClusterVariableInput = updateGlobalClusterVariableBody & {
|
|
20474
|
+
name: updateGlobalClusterVariablePathParam_name;
|
|
20475
|
+
};
|
|
19303
20476
|
type updateGroupOptions = Parameters<typeof updateGroup>[0];
|
|
19304
20477
|
type updateGroupBody = (NonNullable<updateGroupOptions> extends {
|
|
19305
20478
|
body?: infer B;
|
|
@@ -19360,6 +20533,24 @@ type updateTenantPathParam_tenantId = (NonNullable<updateTenantOptions> extends
|
|
|
19360
20533
|
type updateTenantInput = updateTenantBody & {
|
|
19361
20534
|
tenantId: updateTenantPathParam_tenantId;
|
|
19362
20535
|
};
|
|
20536
|
+
type updateTenantClusterVariableOptions = Parameters<typeof updateTenantClusterVariable>[0];
|
|
20537
|
+
type updateTenantClusterVariableBody = (NonNullable<updateTenantClusterVariableOptions> extends {
|
|
20538
|
+
body?: infer B;
|
|
20539
|
+
} ? B : never);
|
|
20540
|
+
type updateTenantClusterVariablePathParam_tenantId = (NonNullable<updateTenantClusterVariableOptions> extends {
|
|
20541
|
+
path: {
|
|
20542
|
+
tenantId: infer P;
|
|
20543
|
+
};
|
|
20544
|
+
} ? P : any);
|
|
20545
|
+
type updateTenantClusterVariablePathParam_name = (NonNullable<updateTenantClusterVariableOptions> extends {
|
|
20546
|
+
path: {
|
|
20547
|
+
name: infer P;
|
|
20548
|
+
};
|
|
20549
|
+
} ? P : any);
|
|
20550
|
+
type updateTenantClusterVariableInput = updateTenantClusterVariableBody & {
|
|
20551
|
+
tenantId: updateTenantClusterVariablePathParam_tenantId;
|
|
20552
|
+
name: updateTenantClusterVariablePathParam_name;
|
|
20553
|
+
};
|
|
19363
20554
|
type updateUserOptions = Parameters<typeof updateUser>[0];
|
|
19364
20555
|
type updateUserBody = (NonNullable<updateUserOptions> extends {
|
|
19365
20556
|
body?: infer B;
|
|
@@ -19892,6 +21083,28 @@ declare class CamundaClient {
|
|
|
19892
21083
|
* @tags Authorization
|
|
19893
21084
|
*/
|
|
19894
21085
|
deleteAuthorization(input: deleteAuthorizationInput): CancelablePromise<_DataOf<typeof deleteAuthorization>>;
|
|
21086
|
+
/**
|
|
21087
|
+
* Delete decision instance
|
|
21088
|
+
*
|
|
21089
|
+
* Delete all associated decision evaluations based on provided key.
|
|
21090
|
+
*
|
|
21091
|
+
* @operationId deleteDecisionInstance
|
|
21092
|
+
* @tags Decision instance
|
|
21093
|
+
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
21094
|
+
*/
|
|
21095
|
+
deleteDecisionInstance(input: deleteDecisionInstanceInput, /** Management of eventual consistency **/ consistencyManagement: deleteDecisionInstanceConsistency): CancelablePromise<_DataOf<typeof deleteDecisionInstance>>;
|
|
21096
|
+
/**
|
|
21097
|
+
* Delete decision instances (batch)
|
|
21098
|
+
*
|
|
21099
|
+
* Delete multiple decision instances. This will delete the historic data from secondary storage.
|
|
21100
|
+
* This is done asynchronously, the progress can be tracked using the batchOperationKey from the response and the batch operation status endpoint (/batch-operations/{batchOperationKey}).
|
|
21101
|
+
*
|
|
21102
|
+
*
|
|
21103
|
+
* @operationId deleteDecisionInstancesBatchOperation
|
|
21104
|
+
* @tags Decision instance
|
|
21105
|
+
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
21106
|
+
*/
|
|
21107
|
+
deleteDecisionInstancesBatchOperation(input: deleteDecisionInstancesBatchOperationInput, /** Management of eventual consistency **/ consistencyManagement: deleteDecisionInstancesBatchOperationConsistency): CancelablePromise<_DataOf<typeof deleteDecisionInstancesBatchOperation>>;
|
|
19895
21108
|
/**
|
|
19896
21109
|
* Delete document
|
|
19897
21110
|
*
|
|
@@ -19956,10 +21169,19 @@ declare class CamundaClient {
|
|
|
19956
21169
|
/**
|
|
19957
21170
|
* Delete resource
|
|
19958
21171
|
*
|
|
19959
|
-
* Deletes a deployed resource.
|
|
19960
|
-
*
|
|
19961
|
-
*
|
|
21172
|
+
* Deletes a deployed resource. This can be a process definition, decision requirements
|
|
21173
|
+
* definition, or form definition deployed using the deploy resources endpoint. Specify the
|
|
21174
|
+
* resource you want to delete in the `resourceKey` parameter.
|
|
19962
21175
|
*
|
|
21176
|
+
* Once a resource has been deleted it cannot be recovered. If the resource needs to be
|
|
21177
|
+
* available again, a new deployment of the resource is required.
|
|
21178
|
+
*
|
|
21179
|
+
* By default, only the resource itself is deleted from the runtime state. To also delete the
|
|
21180
|
+
* historic data associated with a resource, set the `deleteHistory` flag in the request body
|
|
21181
|
+
* to `true`. The historic data is deleted asynchronously via a batch operation. The details of
|
|
21182
|
+
* the created batch operation are included in the response. Note that history deletion is only
|
|
21183
|
+
* supported for process resources; for other resource types this flag is ignored and no history
|
|
21184
|
+
* will be deleted.
|
|
19963
21185
|
*
|
|
19964
21186
|
* @operationId deleteResource
|
|
19965
21187
|
* @tags Resource
|
|
@@ -20163,6 +21385,17 @@ declare class CamundaClient {
|
|
|
20163
21385
|
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
20164
21386
|
*/
|
|
20165
21387
|
getGlobalClusterVariable(input: getGlobalClusterVariableInput, /** Management of eventual consistency **/ consistencyManagement: getGlobalClusterVariableConsistency): CancelablePromise<_DataOf<typeof getGlobalClusterVariable>>;
|
|
21388
|
+
/**
|
|
21389
|
+
* Global job statistics
|
|
21390
|
+
*
|
|
21391
|
+
* Returns global aggregated counts for jobs. Optionally filter by the creation time window and/or jobType.
|
|
21392
|
+
*
|
|
21393
|
+
*
|
|
21394
|
+
* @operationId getGlobalJobStatistics
|
|
21395
|
+
* @tags Job
|
|
21396
|
+
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
21397
|
+
*/
|
|
21398
|
+
getGlobalJobStatistics(input: getGlobalJobStatisticsInput, /** Management of eventual consistency **/ consistencyManagement: getGlobalJobStatisticsConsistency): CancelablePromise<_DataOf<typeof getGlobalJobStatistics>>;
|
|
20166
21399
|
/**
|
|
20167
21400
|
* Get group
|
|
20168
21401
|
*
|
|
@@ -20229,6 +21462,7 @@ declare class CamundaClient {
|
|
|
20229
21462
|
* Get process instance statistics by version
|
|
20230
21463
|
*
|
|
20231
21464
|
* Get statistics about process instances, grouped by version for a given process definition.
|
|
21465
|
+
* The process definition ID must be provided as a required field in the request body filter.
|
|
20232
21466
|
*
|
|
20233
21467
|
*
|
|
20234
21468
|
* @operationId getProcessDefinitionInstanceVersionStatistics
|
|
@@ -21184,6 +22418,17 @@ declare class CamundaClient {
|
|
|
21184
22418
|
* @tags Authorization
|
|
21185
22419
|
*/
|
|
21186
22420
|
updateAuthorization(input: updateAuthorizationInput): CancelablePromise<_DataOf<typeof updateAuthorization>>;
|
|
22421
|
+
/**
|
|
22422
|
+
* Update a global-scoped cluster variable
|
|
22423
|
+
*
|
|
22424
|
+
* Updates the value of an existing global cluster variable.
|
|
22425
|
+
* The variable must exist, otherwise a 404 error is returned.
|
|
22426
|
+
*
|
|
22427
|
+
*
|
|
22428
|
+
* @operationId updateGlobalClusterVariable
|
|
22429
|
+
* @tags Cluster Variable
|
|
22430
|
+
*/
|
|
22431
|
+
updateGlobalClusterVariable(input: updateGlobalClusterVariableInput): CancelablePromise<_DataOf<typeof updateGlobalClusterVariable>>;
|
|
21187
22432
|
/**
|
|
21188
22433
|
* Update group
|
|
21189
22434
|
*
|
|
@@ -21230,6 +22475,17 @@ declare class CamundaClient {
|
|
|
21230
22475
|
* @tags Tenant
|
|
21231
22476
|
*/
|
|
21232
22477
|
updateTenant(input: updateTenantInput): CancelablePromise<_DataOf<typeof updateTenant>>;
|
|
22478
|
+
/**
|
|
22479
|
+
* Update a tenant-scoped cluster variable
|
|
22480
|
+
*
|
|
22481
|
+
* Updates the value of an existing tenant-scoped cluster variable.
|
|
22482
|
+
* The variable must exist, otherwise a 404 error is returned.
|
|
22483
|
+
*
|
|
22484
|
+
*
|
|
22485
|
+
* @operationId updateTenantClusterVariable
|
|
22486
|
+
* @tags Cluster Variable
|
|
22487
|
+
*/
|
|
22488
|
+
updateTenantClusterVariable(input: updateTenantClusterVariableInput): CancelablePromise<_DataOf<typeof updateTenantClusterVariable>>;
|
|
21233
22489
|
/**
|
|
21234
22490
|
* Update user
|
|
21235
22491
|
*
|
|
@@ -21350,4 +22606,4 @@ declare function eventuallyTE<E, A>(thunk: () => Promise<A>, predicate: (a: A) =
|
|
|
21350
22606
|
waitUpToMs: number;
|
|
21351
22607
|
}): TaskEither<E, A>;
|
|
21352
22608
|
|
|
21353
|
-
export { type OwnerTypeEnum as $, type AuditLogResult as A, type AdvancedAuditLogEntityKeyFilter as B, type CamundaOptions as C, type EntityTypeFilterProperty as D, type Either as E, type AdvancedEntityTypeFilter as F, type AdvancedOperationTypeFilter as G, type CategoryFilterProperty as H, type AdvancedCategoryFilter as I, type JobWorkerConfig as J, type AuditLogResultFilterProperty as K, type AdvancedResultFilter as L, type AuditLogActorTypeFilterProperty as M, type AdvancedActorTypeFilter as N, type OperationTypeFilterProperty as O, type CamundaUserResult as P, type AuthorizationIdBasedRequest as Q, type AuthorizationPropertyBasedRequest as R, type AuthorizationRequest as S, type AuthorizationSearchQuerySortRequest as T, type AuthorizationSearchQuery as U, type AuthorizationFilter as V, type AuthorizationResult as W, type AuthorizationSearchResult as X, type AuthorizationCreateResult as Y, type PermissionTypeEnum as Z, type ResourceTypeEnum as _, CamundaClient as a, type DecisionInstanceFilter as a$, AuthorizationKey as a0, type BatchOperationCreatedResult as a1, type BatchOperationSearchQuerySortRequest as a2, type BatchOperationSearchQuery as a3, type BatchOperationFilter as a4, type BatchOperationSearchQueryResult as a5, type BatchOperationResponse as a6, type BatchOperationError as a7, type BatchOperationItemSearchQuerySortRequest as a8, type BatchOperationItemSearchQuery as a9, type ClusterVariableSearchQueryRequest as aA, type ClusterVariableSearchQuerySortRequest as aB, type ClusterVariableSearchQueryFilterRequest as aC, type ClusterVariableScopeFilterProperty as aD, type AdvancedClusterVariableScopeFilter as aE, type ClusterVariableSearchQueryResult as aF, type TopologyResponse as aG, type BrokerInfo as aH, type Partition as aI, type ConditionalEvaluationInstruction as aJ, type EvaluateConditionalResult as aK, ConditionalEvaluationKey as aL, type ProcessInstanceReference as aM, StartCursor as aN, EndCursor as aO, type DecisionDefinitionSearchQuerySortRequest as aP, type DecisionDefinitionSearchQuery as aQ, type DecisionDefinitionFilter as aR, type DecisionDefinitionSearchQueryResult as aS, type DecisionDefinitionResult as aT, type DecisionEvaluationInstruction as aU, type DecisionEvaluationById as aV, type DecisionEvaluationByKey as aW, type EvaluateDecisionResult as aX, type EvaluatedDecisionResult as aY, type DecisionInstanceSearchQuerySortRequest as aZ, type DecisionInstanceSearchQuery as a_, type BatchOperationItemFilter as aa, type BatchOperationItemSearchQueryResult as ab, type BatchOperationItemResponse as ac, type ProcessInstanceCancellationBatchOperationRequest as ad, type ProcessInstanceIncidentResolutionBatchOperationRequest as ae, type ProcessInstanceDeletionBatchOperationRequest as af, type ProcessInstanceMigrationBatchOperationRequest as ag, type ProcessInstanceMigrationBatchOperationPlan as ah, type ProcessInstanceModificationBatchOperationRequest as ai, type ProcessInstanceModificationMoveBatchOperationInstruction as aj, type BatchOperationItemStateEnum as ak, type BatchOperationStateEnum as al, type BatchOperationTypeEnum as am, type BatchOperationActorTypeEnum as an, type BatchOperationTypeFilterProperty as ao, type AdvancedBatchOperationTypeFilter as ap, type BatchOperationStateFilterProperty as aq, type AdvancedBatchOperationStateFilter as ar, type BatchOperationItemStateFilterProperty as as, type AdvancedBatchOperationItemStateFilter as at, type ClockPinRequest as au, type ClusterVariableScopeEnum as av, type CreateClusterVariableRequest as aw, type ClusterVariableResult as ax, type ClusterVariableSearchResult as ay, type ClusterVariableResultBase as az, type CancelablePromise as b, type GroupUpdateResult as b$, type DecisionInstanceSearchQueryResult as b0, type DecisionInstanceResult as b1, type DecisionInstanceGetQueryResult as b2, type EvaluatedDecisionInputItem as b3, type EvaluatedDecisionOutputItem as b4, type MatchedDecisionRuleItem as b5, type DecisionDefinitionTypeEnum as b6, type DecisionInstanceStateEnum as b7, type AdvancedDecisionInstanceStateFilter as b8, type DecisionInstanceStateFilterProperty as b9, type DocumentLink as bA, DocumentId as bB, type ElementInstanceSearchQuerySortRequest as bC, type ElementInstanceSearchQuery as bD, type ElementInstanceFilter as bE, type ElementInstanceStateFilterProperty as bF, type AdvancedElementInstanceStateFilter as bG, type ElementInstanceSearchQueryResult as bH, type ElementInstanceResult as bI, type ElementInstanceStateEnum as bJ, type AdHocSubProcessActivateActivitiesInstruction as bK, type AdHocSubProcessActivateActivityReference as bL, type ExpressionEvaluationRequest as bM, type ExpressionEvaluationResult as bN, type LikeFilter as bO, type BasicStringFilter as bP, type AdvancedStringFilter as bQ, type BasicStringFilterProperty as bR, type StringFilterProperty as bS, type AdvancedIntegerFilter as bT, type IntegerFilterProperty as bU, type AdvancedDateTimeFilter as bV, type DateTimeFilterProperty as bW, type FormResult as bX, type GroupCreateRequest as bY, type GroupCreateResult as bZ, type GroupUpdateRequest as b_, type DecisionRequirementsSearchQuerySortRequest as ba, type DecisionRequirementsSearchQuery as bb, type DecisionRequirementsFilter as bc, type DecisionRequirementsSearchQueryResult as bd, type DecisionRequirementsResult as be, type DeploymentResult as bf, type DeploymentMetadataResult as bg, type DeploymentProcessResult as bh, type DeploymentDecisionResult as bi, type DeploymentDecisionRequirementsResult as bj, type DeploymentFormResult as bk, type DeploymentResourceResult as bl, type DeleteResourceRequest as bm, type DeleteResourceResponse as bn, type ResourceResult as bo, DeploymentKey as bp, type ResourceKey as bq, type DeploymentKeyFilterProperty as br, type AdvancedDeploymentKeyFilter as bs, type ResourceKeyFilterProperty as bt, type AdvancedResourceKeyFilter as bu, type DocumentReference as bv, type DocumentCreationFailureDetail as bw, type DocumentCreationBatchResponse as bx, type DocumentMetadata as by, type DocumentLinkRequest as bz, createCamundaClient as c, type JobListenerEventTypeEnum as c$, type GroupResult as c0, type GroupSearchQuerySortRequest as c1, type GroupSearchQueryRequest as c2, type GroupFilter as c3, type GroupSearchQueryResult as c4, type GroupUserResult as c5, type GroupUserSearchResult as c6, type GroupUserSearchQueryRequest as c7, type GroupUserSearchQuerySortRequest as c8, type GroupClientResult as c9, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as cA, type IncidentProcessInstanceStatisticsByDefinitionQuery as cB, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as cC, type IncidentProcessInstanceStatisticsByDefinitionResult as cD, type IncidentProcessInstanceStatisticsByDefinitionFilter as cE, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as cF, type JobActivationRequest as cG, type JobActivationResult as cH, type ActivatedJobResult$1 as cI, type UserTaskProperties as cJ, type JobSearchQuery as cK, type JobSearchQuerySortRequest as cL, type JobFilter as cM, type JobSearchQueryResult as cN, type JobSearchResult as cO, type JobFailRequest as cP, type JobErrorRequest$1 as cQ, type JobCompletionRequest as cR, type JobResult as cS, type JobResultUserTask as cT, type JobResultCorrections as cU, type JobResultAdHocSubProcess as cV, type JobResultActivateElement as cW, type JobUpdateRequest as cX, type JobChangeset as cY, type JobStateEnum as cZ, type JobKindEnum as c_, type GroupClientSearchResult as ca, type GroupClientSearchQueryRequest as cb, type GroupClientSearchQuerySortRequest as cc, ProcessDefinitionId as cd, ElementId as ce, FormId as cf, DecisionDefinitionId as cg, TenantId as ch, Username as ci, Tag as cj, type TagSet as ck, type IncidentSearchQuery as cl, type IncidentFilter as cm, type IncidentErrorTypeFilterProperty as cn, type AdvancedIncidentErrorTypeFilter as co, type IncidentErrorTypeEnum as cp, type IncidentStateFilterProperty as cq, type AdvancedIncidentStateFilter as cr, type IncidentStateEnum as cs, type IncidentSearchQuerySortRequest as ct, type IncidentSearchQueryResult as cu, type IncidentResult as cv, type IncidentResolutionRequest as cw, type IncidentProcessInstanceStatisticsByErrorQuery as cx, type IncidentProcessInstanceStatisticsByErrorQueryResult as cy, type IncidentProcessInstanceStatisticsByErrorResult as cz, JobWorker as d, type MessageSubscriptionSearchQuerySortRequest as d$, type JobKindFilterProperty as d0, type AdvancedJobKindFilter as d1, type JobListenerEventTypeFilterProperty as d2, type AdvancedJobListenerEventTypeFilter as d3, type JobStateFilterProperty as d4, type AdvancedJobStateFilter as d5, type LongKey as d6, ProcessInstanceKey as d7, ProcessDefinitionKey as d8, ElementInstanceKey as d9, type AdvancedScopeKeyFilter as dA, type VariableKeyFilterProperty as dB, type AdvancedVariableKeyFilter as dC, type DecisionEvaluationInstanceKeyFilterProperty as dD, type AdvancedDecisionEvaluationInstanceKeyFilter as dE, type AuditLogKeyFilterProperty as dF, type AdvancedAuditLogKeyFilter as dG, type FormKeyFilterProperty as dH, type AdvancedFormKeyFilter as dI, type LicenseResponse as dJ, type MappingRuleCreateUpdateRequest as dK, type MappingRuleCreateRequest as dL, type MappingRuleUpdateRequest as dM, type MappingRuleCreateUpdateResult as dN, type MappingRuleCreateResult as dO, type MappingRuleUpdateResult as dP, type MappingRuleSearchQueryResult as dQ, type MappingRuleResult as dR, type MappingRuleSearchQuerySortRequest as dS, type MappingRuleSearchQueryRequest as dT, type MappingRuleFilter as dU, type MessageCorrelationRequest as dV, type MessageCorrelationResult as dW, type MessagePublicationRequest as dX, type MessagePublicationResult as dY, type MessageSubscriptionSearchQueryResult as dZ, type MessageSubscriptionResult as d_, UserTaskKey as da, FormKey as db, VariableKey as dc, ScopeKey as dd, IncidentKey as de, JobKey as df, DecisionDefinitionKey as dg, DecisionEvaluationInstanceKey as dh, DecisionEvaluationKey as di, DecisionRequirementsKey as dj, DecisionInstanceKey as dk, BatchOperationKey as dl, type OperationReference as dm, AuditLogKey as dn, type ProcessDefinitionKeyFilterProperty as dp, type AdvancedProcessDefinitionKeyFilter as dq, type ProcessInstanceKeyFilterProperty as dr, type AdvancedProcessInstanceKeyFilter as ds, type ElementInstanceKeyFilterProperty as dt, type AdvancedElementInstanceKeyFilter as du, type JobKeyFilterProperty as dv, type AdvancedJobKeyFilter as dw, type DecisionDefinitionKeyFilterProperty as dx, type AdvancedDecisionDefinitionKeyFilter as dy, type ScopeKeyFilterProperty as dz, type Job as e, type SourceElementIdInstruction as e$, type MessageSubscriptionSearchQuery as e0, type MessageSubscriptionFilter as e1, type CorrelatedMessageSubscriptionSearchQueryResult as e2, type CorrelatedMessageSubscriptionResult as e3, type CorrelatedMessageSubscriptionSearchQuery as e4, type CorrelatedMessageSubscriptionSearchQuerySortRequest as e5, type MessageSubscriptionStateEnum as e6, type CorrelatedMessageSubscriptionFilter as e7, type MessageSubscriptionStateFilterProperty as e8, type AdvancedMessageSubscriptionStateFilter as e9, type ProcessInstanceCreationInstructionById as eA, type ProcessInstanceCreationInstructionByKey as eB, type ProcessInstanceCreationStartInstruction as eC, type ProcessInstanceCreationRuntimeInstruction as eD, type ProcessInstanceCreationTerminateInstruction as eE, type CreateProcessInstanceResult as eF, type ProcessInstanceSearchQuerySortRequest as eG, type ProcessInstanceSearchQuery as eH, type BaseProcessInstanceFilterFields as eI, type ProcessDefinitionStatisticsFilter as eJ, type ProcessInstanceFilterFields as eK, type ProcessInstanceFilter as eL, type ProcessInstanceSearchQueryResult as eM, type ProcessInstanceResult as eN, type CancelProcessInstanceRequest as eO, type DeleteProcessInstanceRequest as eP, type ProcessInstanceCallHierarchyEntry as eQ, type ProcessInstanceSequenceFlowsQueryResult as eR, type ProcessInstanceSequenceFlowResult as eS, type ProcessInstanceElementStatisticsQueryResult as eT, type ProcessInstanceMigrationInstruction as eU, type MigrateProcessInstanceMappingInstruction as eV, type ProcessInstanceModificationInstruction as eW, type ProcessInstanceModificationActivateInstruction as eX, type ModifyProcessInstanceVariableInstruction as eY, type ProcessInstanceModificationMoveInstruction as eZ, type SourceElementInstruction as e_, type AdvancedMessageSubscriptionKeyFilter as ea, type MessageSubscriptionKeyFilterProperty as eb, MessageSubscriptionKey as ec, MessageKey as ed, type ProblemDetail as ee, type ProcessDefinitionSearchQuerySortRequest as ef, type ProcessDefinitionSearchQuery as eg, type ProcessDefinitionFilter as eh, type ProcessDefinitionSearchQueryResult as ei, type ProcessDefinitionResult as ej, type ProcessDefinitionElementStatisticsQuery as ek, type ProcessDefinitionElementStatisticsQueryResult as el, type ProcessElementStatisticsResult as em, type ProcessDefinitionMessageSubscriptionStatisticsQuery as en, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as eo, type ProcessDefinitionMessageSubscriptionStatisticsResult as ep, type ProcessDefinitionInstanceStatisticsQuery as eq, type ProcessDefinitionInstanceStatisticsQueryResult as er, type ProcessDefinitionInstanceStatisticsResult as es, type ProcessDefinitionInstanceStatisticsQuerySortRequest as et, type ProcessDefinitionInstanceVersionStatisticsQuery as eu, type ProcessDefinitionInstanceVersionStatisticsFilter as ev, type ProcessDefinitionInstanceVersionStatisticsQueryResult as ew, type ProcessDefinitionInstanceVersionStatisticsResult as ex, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as ey, type ProcessInstanceCreationInstruction as ez, JobActionReceipt as f, type TenantGroupResult as f$, type SourceElementInstanceKeyInstruction as f0, type AncestorScopeInstruction as f1, type DirectAncestorKeyInstruction as f2, type InferredAncestorKeyInstruction as f3, type UseSourceParentKeyInstruction as f4, type ProcessInstanceModificationTerminateInstruction as f5, type ProcessInstanceModificationTerminateByIdInstruction as f6, type ProcessInstanceModificationTerminateByKeyInstruction as f7, type ProcessInstanceStateEnum as f8, type AdvancedProcessInstanceStateFilter as f9, type CursorForwardPagination as fA, type CursorBackwardPagination as fB, type SearchQueryResponse as fC, type SortOrderEnum as fD, type SearchQueryPageResponse as fE, type SignalBroadcastRequest as fF, type SignalBroadcastResult as fG, SignalKey as fH, type UsageMetricsResponse as fI, type UsageMetricsResponseItem as fJ, type TenantCreateRequest as fK, type TenantCreateResult as fL, type TenantUpdateRequest as fM, type TenantUpdateResult as fN, type TenantResult as fO, type TenantSearchQuerySortRequest as fP, type TenantSearchQueryRequest as fQ, type TenantFilter as fR, type TenantSearchQueryResult as fS, type TenantUserResult as fT, type TenantUserSearchResult as fU, type TenantUserSearchQueryRequest as fV, type TenantUserSearchQuerySortRequest as fW, type TenantClientResult as fX, type TenantClientSearchResult as fY, type TenantClientSearchQueryRequest as fZ, type TenantClientSearchQuerySortRequest as f_, type ProcessInstanceStateFilterProperty as fa, type RoleCreateRequest as fb, type RoleCreateResult as fc, type RoleUpdateRequest as fd, type RoleUpdateResult as fe, type RoleResult as ff, type RoleSearchQuerySortRequest as fg, type RoleSearchQueryRequest as fh, type RoleFilter as fi, type RoleSearchQueryResult as fj, type RoleUserResult as fk, type RoleUserSearchResult as fl, type RoleUserSearchQueryRequest as fm, type RoleUserSearchQuerySortRequest as fn, type RoleClientResult as fo, type RoleClientSearchResult as fp, type RoleClientSearchQueryRequest as fq, type RoleClientSearchQuerySortRequest as fr, type RoleGroupResult as fs, type RoleGroupSearchResult as ft, type RoleGroupSearchQueryRequest as fu, type RoleGroupSearchQuerySortRequest as fv, type SearchQueryRequest as fw, type SearchQueryPageRequest as fx, type LimitPagination as fy, type OffsetPagination as fz, createCamundaFpClient as g, type DeleteAuthorizationData as g$, type TenantGroupSearchResult as g0, type TenantGroupSearchQueryRequest as g1, type TenantGroupSearchQuerySortRequest as g2, type UserTaskSearchQuerySortRequest as g3, type UserTaskSearchQuery as g4, type UserTaskFilter as g5, type UserTaskSearchQueryResult as g6, type UserTaskResult as g7, type UserTaskCompletionRequest as g8, type UserTaskAssignmentRequest as g9, type VariableValueFilterProperty as gA, type SetVariableRequest as gB, type SearchAuditLogsData as gC, type SearchAuditLogsErrors as gD, type SearchAuditLogsError as gE, type SearchAuditLogsResponses as gF, type SearchAuditLogsResponse as gG, type GetAuditLogData as gH, type GetAuditLogErrors as gI, type GetAuditLogError as gJ, type GetAuditLogResponses as gK, type GetAuditLogResponse as gL, type GetAuthenticationData as gM, type GetAuthenticationErrors as gN, type GetAuthenticationError as gO, type GetAuthenticationResponses as gP, type GetAuthenticationResponse as gQ, type CreateAuthorizationData as gR, type CreateAuthorizationErrors as gS, type CreateAuthorizationError as gT, type CreateAuthorizationResponses as gU, type CreateAuthorizationResponse as gV, type SearchAuthorizationsData as gW, type SearchAuthorizationsErrors as gX, type SearchAuthorizationsError as gY, type SearchAuthorizationsResponses as gZ, type SearchAuthorizationsResponse as g_, type UserTaskUpdateRequest as ga, type Changeset as gb, type UserTaskVariableSearchQuerySortRequest as gc, type UserTaskVariableSearchQueryRequest as gd, type UserTaskAuditLogSearchQueryRequest as ge, type UserTaskStateEnum as gf, type UserTaskVariableFilter as gg, type UserTaskStateFilterProperty as gh, type AdvancedUserTaskStateFilter as gi, type UserTaskAuditLogFilter as gj, type UserRequest as gk, type UserCreateResult as gl, type UserUpdateRequest as gm, type UserUpdateResult as gn, type UserResult as go, type UserSearchQuerySortRequest as gp, type UserSearchQueryRequest as gq, type UserFilter as gr, type UserSearchResult as gs, type VariableSearchQuerySortRequest as gt, type VariableSearchQuery as gu, type VariableFilter as gv, type VariableSearchQueryResult as gw, type VariableSearchResult as gx, type VariableResult as gy, type VariableResultBase as gz, type CamundaFpClient as h, type DeleteGlobalClusterVariableResponse as h$, type DeleteAuthorizationErrors as h0, type DeleteAuthorizationError as h1, type DeleteAuthorizationResponses as h2, type DeleteAuthorizationResponse as h3, type GetAuthorizationData as h4, type GetAuthorizationErrors as h5, type GetAuthorizationError as h6, type GetAuthorizationResponses as h7, type GetAuthorizationResponse as h8, type UpdateAuthorizationData as h9, type ResumeBatchOperationError as hA, type ResumeBatchOperationResponses as hB, type ResumeBatchOperationResponse as hC, type SuspendBatchOperationData as hD, type SuspendBatchOperationErrors as hE, type SuspendBatchOperationError as hF, type SuspendBatchOperationResponses as hG, type SuspendBatchOperationResponse as hH, type PinClockData as hI, type PinClockErrors as hJ, type PinClockError as hK, type PinClockResponses as hL, type PinClockResponse as hM, type ResetClockData as hN, type ResetClockErrors as hO, type ResetClockError as hP, type ResetClockResponses as hQ, type ResetClockResponse as hR, type CreateGlobalClusterVariableData as hS, type CreateGlobalClusterVariableErrors as hT, type CreateGlobalClusterVariableError as hU, type CreateGlobalClusterVariableResponses as hV, type CreateGlobalClusterVariableResponse as hW, type DeleteGlobalClusterVariableData as hX, type DeleteGlobalClusterVariableErrors as hY, type DeleteGlobalClusterVariableError as hZ, type DeleteGlobalClusterVariableResponses as h_, type UpdateAuthorizationErrors as ha, type UpdateAuthorizationError as hb, type UpdateAuthorizationResponses as hc, type UpdateAuthorizationResponse as hd, type SearchBatchOperationItemsData as he, type SearchBatchOperationItemsErrors as hf, type SearchBatchOperationItemsError as hg, type SearchBatchOperationItemsResponses as hh, type SearchBatchOperationItemsResponse as hi, type SearchBatchOperationsData as hj, type SearchBatchOperationsErrors as hk, type SearchBatchOperationsError as hl, type SearchBatchOperationsResponses as hm, type SearchBatchOperationsResponse as hn, type GetBatchOperationData as ho, type GetBatchOperationErrors as hp, type GetBatchOperationError as hq, type GetBatchOperationResponses as hr, type GetBatchOperationResponse as hs, type CancelBatchOperationData as ht, type CancelBatchOperationErrors as hu, type CancelBatchOperationError as hv, type CancelBatchOperationResponses as hw, type CancelBatchOperationResponse as hx, type ResumeBatchOperationData as hy, type ResumeBatchOperationErrors as hz, isLeft as i, type GetDecisionInstanceErrors as i$, type GetGlobalClusterVariableData as i0, type GetGlobalClusterVariableErrors as i1, type GetGlobalClusterVariableError as i2, type GetGlobalClusterVariableResponses as i3, type GetGlobalClusterVariableResponse as i4, type SearchClusterVariablesData as i5, type SearchClusterVariablesErrors as i6, type SearchClusterVariablesError as i7, type SearchClusterVariablesResponses as i8, type SearchClusterVariablesResponse as i9, type SearchCorrelatedMessageSubscriptionsResponse as iA, type EvaluateDecisionData as iB, type EvaluateDecisionErrors as iC, type EvaluateDecisionError as iD, type EvaluateDecisionResponses as iE, type EvaluateDecisionResponse as iF, type SearchDecisionDefinitionsData as iG, type SearchDecisionDefinitionsErrors as iH, type SearchDecisionDefinitionsError as iI, type SearchDecisionDefinitionsResponses as iJ, type SearchDecisionDefinitionsResponse as iK, type GetDecisionDefinitionData as iL, type GetDecisionDefinitionErrors as iM, type GetDecisionDefinitionError as iN, type GetDecisionDefinitionResponses as iO, type GetDecisionDefinitionResponse as iP, type GetDecisionDefinitionXmlData as iQ, type GetDecisionDefinitionXmlErrors as iR, type GetDecisionDefinitionXmlError as iS, type GetDecisionDefinitionXmlResponses as iT, type GetDecisionDefinitionXmlResponse as iU, type SearchDecisionInstancesData as iV, type SearchDecisionInstancesErrors as iW, type SearchDecisionInstancesError as iX, type SearchDecisionInstancesResponses as iY, type SearchDecisionInstancesResponse as iZ, type GetDecisionInstanceData as i_, type CreateTenantClusterVariableData as ia, type CreateTenantClusterVariableErrors as ib, type CreateTenantClusterVariableError as ic, type CreateTenantClusterVariableResponses as id, type CreateTenantClusterVariableResponse as ie, type DeleteTenantClusterVariableData as ig, type DeleteTenantClusterVariableErrors as ih, type DeleteTenantClusterVariableError as ii, type DeleteTenantClusterVariableResponses as ij, type DeleteTenantClusterVariableResponse as ik, type GetTenantClusterVariableData as il, type GetTenantClusterVariableErrors as im, type GetTenantClusterVariableError as io, type GetTenantClusterVariableResponses as ip, type GetTenantClusterVariableResponse as iq, type EvaluateConditionalsData as ir, type EvaluateConditionalsErrors as is, type EvaluateConditionalsError as it, type EvaluateConditionalsResponses as iu, type EvaluateConditionalsResponse as iv, type SearchCorrelatedMessageSubscriptionsData as iw, type SearchCorrelatedMessageSubscriptionsErrors as ix, type SearchCorrelatedMessageSubscriptionsError as iy, type SearchCorrelatedMessageSubscriptionsResponses as iz, isRight as j, type SearchElementInstanceIncidentsData as j$, type GetDecisionInstanceError as j0, type GetDecisionInstanceResponses as j1, type GetDecisionInstanceResponse as j2, type SearchDecisionRequirementsData as j3, type SearchDecisionRequirementsErrors as j4, type SearchDecisionRequirementsError as j5, type SearchDecisionRequirementsResponses as j6, type SearchDecisionRequirementsResponse as j7, type GetDecisionRequirementsData as j8, type GetDecisionRequirementsErrors as j9, type DeleteDocumentResponses as jA, type DeleteDocumentResponse as jB, type GetDocumentData as jC, type GetDocumentErrors as jD, type GetDocumentError as jE, type GetDocumentResponses as jF, type GetDocumentResponse as jG, type CreateDocumentLinkData as jH, type CreateDocumentLinkErrors as jI, type CreateDocumentLinkError as jJ, type CreateDocumentLinkResponses as jK, type CreateDocumentLinkResponse as jL, type ActivateAdHocSubProcessActivitiesData as jM, type ActivateAdHocSubProcessActivitiesErrors as jN, type ActivateAdHocSubProcessActivitiesError as jO, type ActivateAdHocSubProcessActivitiesResponses as jP, type ActivateAdHocSubProcessActivitiesResponse as jQ, type SearchElementInstancesData as jR, type SearchElementInstancesErrors as jS, type SearchElementInstancesError as jT, type SearchElementInstancesResponses as jU, type SearchElementInstancesResponse as jV, type GetElementInstanceData as jW, type GetElementInstanceErrors as jX, type GetElementInstanceError as jY, type GetElementInstanceResponses as jZ, type GetElementInstanceResponse as j_, type GetDecisionRequirementsError as ja, type GetDecisionRequirementsResponses as jb, type GetDecisionRequirementsResponse as jc, type GetDecisionRequirementsXmlData as jd, type GetDecisionRequirementsXmlErrors as je, type GetDecisionRequirementsXmlError as jf, type GetDecisionRequirementsXmlResponses as jg, type GetDecisionRequirementsXmlResponse as jh, type CreateDeploymentData as ji, type CreateDeploymentErrors as jj, type CreateDeploymentError as jk, type CreateDeploymentResponses as jl, type CreateDeploymentResponse as jm, type CreateDocumentData as jn, type CreateDocumentErrors as jo, type CreateDocumentError as jp, type CreateDocumentResponses as jq, type CreateDocumentResponse as jr, type CreateDocumentsData as js, type CreateDocumentsErrors as jt, type CreateDocumentsError as ju, type CreateDocumentsResponses as jv, type CreateDocumentsResponse as jw, type DeleteDocumentData as jx, type DeleteDocumentErrors as jy, type DeleteDocumentError as jz, CamundaValidationError as k, type UnassignMappingRuleFromGroupResponse as k$, type SearchElementInstanceIncidentsErrors as k0, type SearchElementInstanceIncidentsError as k1, type SearchElementInstanceIncidentsResponses as k2, type SearchElementInstanceIncidentsResponse as k3, type CreateElementInstanceVariablesData as k4, type CreateElementInstanceVariablesErrors as k5, type CreateElementInstanceVariablesError as k6, type CreateElementInstanceVariablesResponses as k7, type CreateElementInstanceVariablesResponse as k8, type EvaluateExpressionData as k9, type UpdateGroupError as kA, type UpdateGroupResponses as kB, type UpdateGroupResponse as kC, type SearchClientsForGroupData as kD, type SearchClientsForGroupErrors as kE, type SearchClientsForGroupError as kF, type SearchClientsForGroupResponses as kG, type SearchClientsForGroupResponse as kH, type UnassignClientFromGroupData as kI, type UnassignClientFromGroupErrors as kJ, type UnassignClientFromGroupError as kK, type UnassignClientFromGroupResponses as kL, type UnassignClientFromGroupResponse as kM, type AssignClientToGroupData as kN, type AssignClientToGroupErrors as kO, type AssignClientToGroupError as kP, type AssignClientToGroupResponses as kQ, type AssignClientToGroupResponse as kR, type SearchMappingRulesForGroupData as kS, type SearchMappingRulesForGroupErrors as kT, type SearchMappingRulesForGroupError as kU, type SearchMappingRulesForGroupResponses as kV, type SearchMappingRulesForGroupResponse as kW, type UnassignMappingRuleFromGroupData as kX, type UnassignMappingRuleFromGroupErrors as kY, type UnassignMappingRuleFromGroupError as kZ, type UnassignMappingRuleFromGroupResponses as k_, type EvaluateExpressionErrors as ka, type EvaluateExpressionError as kb, type EvaluateExpressionResponses as kc, type EvaluateExpressionResponse as kd, type CreateGroupData as ke, type CreateGroupErrors as kf, type CreateGroupError as kg, type CreateGroupResponses as kh, type CreateGroupResponse as ki, type SearchGroupsData as kj, type SearchGroupsErrors as kk, type SearchGroupsError as kl, type SearchGroupsResponses as km, type SearchGroupsResponse as kn, type DeleteGroupData as ko, type DeleteGroupErrors as kp, type DeleteGroupError as kq, type DeleteGroupResponses as kr, type DeleteGroupResponse as ks, type GetGroupData as kt, type GetGroupErrors as ku, type GetGroupError as kv, type GetGroupResponses as kw, type GetGroupResponse as kx, type UpdateGroupData as ky, type UpdateGroupErrors as kz, EventualConsistencyTimeoutError as l, type UpdateJobResponses as l$, type AssignMappingRuleToGroupData as l0, type AssignMappingRuleToGroupErrors as l1, type AssignMappingRuleToGroupError as l2, type AssignMappingRuleToGroupResponses as l3, type AssignMappingRuleToGroupResponse as l4, type SearchRolesForGroupData as l5, type SearchRolesForGroupErrors as l6, type SearchRolesForGroupError as l7, type SearchRolesForGroupResponses as l8, type SearchRolesForGroupResponse as l9, type ResolveIncidentErrors as lA, type ResolveIncidentError as lB, type ResolveIncidentResponses as lC, type ResolveIncidentResponse as lD, type GetProcessInstanceStatisticsByDefinitionData as lE, type GetProcessInstanceStatisticsByDefinitionErrors as lF, type GetProcessInstanceStatisticsByDefinitionError as lG, type GetProcessInstanceStatisticsByDefinitionResponses as lH, type GetProcessInstanceStatisticsByDefinitionResponse as lI, type GetProcessInstanceStatisticsByErrorData as lJ, type GetProcessInstanceStatisticsByErrorErrors as lK, type GetProcessInstanceStatisticsByErrorError as lL, type GetProcessInstanceStatisticsByErrorResponses as lM, type GetProcessInstanceStatisticsByErrorResponse as lN, type ActivateJobsData as lO, type ActivateJobsErrors as lP, type ActivateJobsError as lQ, type ActivateJobsResponses as lR, type ActivateJobsResponse as lS, type SearchJobsData as lT, type SearchJobsErrors as lU, type SearchJobsError as lV, type SearchJobsResponses as lW, type SearchJobsResponse as lX, type UpdateJobData as lY, type UpdateJobErrors as lZ, type UpdateJobError as l_, type SearchUsersForGroupData as la, type SearchUsersForGroupErrors as lb, type SearchUsersForGroupError as lc, type SearchUsersForGroupResponses as ld, type SearchUsersForGroupResponse as le, type UnassignUserFromGroupData as lf, type UnassignUserFromGroupErrors as lg, type UnassignUserFromGroupError as lh, type UnassignUserFromGroupResponses as li, type UnassignUserFromGroupResponse as lj, type AssignUserToGroupData as lk, type AssignUserToGroupErrors as ll, type AssignUserToGroupError as lm, type AssignUserToGroupResponses as ln, type AssignUserToGroupResponse as lo, type SearchIncidentsData as lp, type SearchIncidentsErrors as lq, type SearchIncidentsError as lr, type SearchIncidentsResponses as ls, type SearchIncidentsResponse as lt, type GetIncidentData as lu, type GetIncidentErrors as lv, type GetIncidentError as lw, type GetIncidentResponses as lx, type GetIncidentResponse as ly, type ResolveIncidentData as lz, type EnrichedActivatedJob as m, type SearchProcessDefinitionsError as m$, type UpdateJobResponse as m0, type CompleteJobData as m1, type CompleteJobErrors as m2, type CompleteJobError as m3, type CompleteJobResponses as m4, type CompleteJobResponse as m5, type ThrowJobErrorData as m6, type ThrowJobErrorErrors as m7, type ThrowJobErrorError as m8, type ThrowJobErrorResponses as m9, type GetMappingRuleData as mA, type GetMappingRuleErrors as mB, type GetMappingRuleError as mC, type GetMappingRuleResponses as mD, type GetMappingRuleResponse as mE, type UpdateMappingRuleData as mF, type UpdateMappingRuleErrors as mG, type UpdateMappingRuleError as mH, type UpdateMappingRuleResponses as mI, type UpdateMappingRuleResponse as mJ, type SearchMessageSubscriptionsData as mK, type SearchMessageSubscriptionsErrors as mL, type SearchMessageSubscriptionsError as mM, type SearchMessageSubscriptionsResponses as mN, type SearchMessageSubscriptionsResponse as mO, type CorrelateMessageData as mP, type CorrelateMessageErrors as mQ, type CorrelateMessageError as mR, type CorrelateMessageResponses as mS, type CorrelateMessageResponse as mT, type PublishMessageData as mU, type PublishMessageErrors as mV, type PublishMessageError as mW, type PublishMessageResponses as mX, type PublishMessageResponse as mY, type SearchProcessDefinitionsData as mZ, type SearchProcessDefinitionsErrors as m_, type ThrowJobErrorResponse as ma, type FailJobData as mb, type FailJobErrors as mc, type FailJobError as md, type FailJobResponses as me, type FailJobResponse as mf, type GetLicenseData as mg, type GetLicenseErrors as mh, type GetLicenseError as mi, type GetLicenseResponses as mj, type GetLicenseResponse as mk, type CreateMappingRuleData as ml, type CreateMappingRuleErrors as mm, type CreateMappingRuleError as mn, type CreateMappingRuleResponses as mo, type CreateMappingRuleResponse as mp, type SearchMappingRuleData as mq, type SearchMappingRuleErrors as mr, type SearchMappingRuleError as ms, type SearchMappingRuleResponses as mt, type SearchMappingRuleResponse as mu, type DeleteMappingRuleData as mv, type DeleteMappingRuleErrors as mw, type DeleteMappingRuleError as mx, type DeleteMappingRuleResponses as my, type DeleteMappingRuleResponse as mz, type CamundaKey as n, type ModifyProcessInstancesBatchOperationErrors as n$, type SearchProcessDefinitionsResponses as n0, type SearchProcessDefinitionsResponse as n1, type GetProcessDefinitionMessageSubscriptionStatisticsData as n2, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as n3, type GetProcessDefinitionMessageSubscriptionStatisticsError as n4, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as n5, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as n6, type GetProcessDefinitionInstanceStatisticsData as n7, type GetProcessDefinitionInstanceStatisticsErrors as n8, type GetProcessDefinitionInstanceStatisticsError as n9, type GetProcessDefinitionInstanceVersionStatisticsResponse as nA, type CreateProcessInstanceData as nB, type CreateProcessInstanceErrors as nC, type CreateProcessInstanceError as nD, type CreateProcessInstanceResponses as nE, type CreateProcessInstanceResponse as nF, type CancelProcessInstancesBatchOperationData as nG, type CancelProcessInstancesBatchOperationErrors as nH, type CancelProcessInstancesBatchOperationError as nI, type CancelProcessInstancesBatchOperationResponses as nJ, type CancelProcessInstancesBatchOperationResponse as nK, type DeleteProcessInstancesBatchOperationData as nL, type DeleteProcessInstancesBatchOperationErrors as nM, type DeleteProcessInstancesBatchOperationError as nN, type DeleteProcessInstancesBatchOperationResponses as nO, type DeleteProcessInstancesBatchOperationResponse as nP, type ResolveIncidentsBatchOperationData as nQ, type ResolveIncidentsBatchOperationErrors as nR, type ResolveIncidentsBatchOperationError as nS, type ResolveIncidentsBatchOperationResponses as nT, type ResolveIncidentsBatchOperationResponse as nU, type MigrateProcessInstancesBatchOperationData as nV, type MigrateProcessInstancesBatchOperationErrors as nW, type MigrateProcessInstancesBatchOperationError as nX, type MigrateProcessInstancesBatchOperationResponses as nY, type MigrateProcessInstancesBatchOperationResponse as nZ, type ModifyProcessInstancesBatchOperationData as n_, type GetProcessDefinitionInstanceStatisticsResponses as na, type GetProcessDefinitionInstanceStatisticsResponse as nb, type GetProcessDefinitionData as nc, type GetProcessDefinitionErrors as nd, type GetProcessDefinitionError as ne, type GetProcessDefinitionResponses as nf, type GetProcessDefinitionResponse as ng, type GetStartProcessFormData as nh, type GetStartProcessFormErrors as ni, type GetStartProcessFormError as nj, type GetStartProcessFormResponses as nk, type GetStartProcessFormResponse as nl, type GetProcessDefinitionStatisticsData as nm, type GetProcessDefinitionStatisticsErrors as nn, type GetProcessDefinitionStatisticsError as no, type GetProcessDefinitionStatisticsResponses as np, type GetProcessDefinitionStatisticsResponse as nq, type GetProcessDefinitionXmlData as nr, type GetProcessDefinitionXmlErrors as ns, type GetProcessDefinitionXmlError as nt, type GetProcessDefinitionXmlResponses as nu, type GetProcessDefinitionXmlResponse as nv, type GetProcessDefinitionInstanceVersionStatisticsData as nw, type GetProcessDefinitionInstanceVersionStatisticsErrors as nx, type GetProcessDefinitionInstanceVersionStatisticsError as ny, type GetProcessDefinitionInstanceVersionStatisticsResponses as nz, type ClientOptions as o, type GetResourceContentData as o$, type ModifyProcessInstancesBatchOperationError as o0, type ModifyProcessInstancesBatchOperationResponses as o1, type ModifyProcessInstancesBatchOperationResponse as o2, type SearchProcessInstancesData as o3, type SearchProcessInstancesErrors as o4, type SearchProcessInstancesError as o5, type SearchProcessInstancesResponses as o6, type SearchProcessInstancesResponse as o7, type GetProcessInstanceData as o8, type GetProcessInstanceErrors as o9, type SearchProcessInstanceIncidentsResponses as oA, type SearchProcessInstanceIncidentsResponse as oB, type MigrateProcessInstanceData as oC, type MigrateProcessInstanceErrors as oD, type MigrateProcessInstanceError as oE, type MigrateProcessInstanceResponses as oF, type MigrateProcessInstanceResponse as oG, type ModifyProcessInstanceData as oH, type ModifyProcessInstanceErrors as oI, type ModifyProcessInstanceError as oJ, type ModifyProcessInstanceResponses as oK, type ModifyProcessInstanceResponse as oL, type GetProcessInstanceSequenceFlowsData as oM, type GetProcessInstanceSequenceFlowsErrors as oN, type GetProcessInstanceSequenceFlowsError as oO, type GetProcessInstanceSequenceFlowsResponses as oP, type GetProcessInstanceSequenceFlowsResponse as oQ, type GetProcessInstanceStatisticsData as oR, type GetProcessInstanceStatisticsErrors as oS, type GetProcessInstanceStatisticsError as oT, type GetProcessInstanceStatisticsResponses as oU, type GetProcessInstanceStatisticsResponse as oV, type GetResourceData as oW, type GetResourceErrors as oX, type GetResourceError as oY, type GetResourceResponses as oZ, type GetResourceResponse as o_, type GetProcessInstanceError as oa, type GetProcessInstanceResponses as ob, type GetProcessInstanceResponse as oc, type GetProcessInstanceCallHierarchyData as od, type GetProcessInstanceCallHierarchyErrors as oe, type GetProcessInstanceCallHierarchyError as of, type GetProcessInstanceCallHierarchyResponses as og, type GetProcessInstanceCallHierarchyResponse as oh, type CancelProcessInstanceData as oi, type CancelProcessInstanceErrors as oj, type CancelProcessInstanceError as ok, type CancelProcessInstanceResponses as ol, type CancelProcessInstanceResponse as om, type DeleteProcessInstanceData as on, type DeleteProcessInstanceErrors as oo, type DeleteProcessInstanceError as op, type DeleteProcessInstanceResponses as oq, type DeleteProcessInstanceResponse as or, type ResolveProcessInstanceIncidentsData as os, type ResolveProcessInstanceIncidentsErrors as ot, type ResolveProcessInstanceIncidentsError as ou, type ResolveProcessInstanceIncidentsResponses as ov, type ResolveProcessInstanceIncidentsResponse as ow, type SearchProcessInstanceIncidentsData as ox, type SearchProcessInstanceIncidentsErrors as oy, type SearchProcessInstanceIncidentsError as oz, type AuditLogSearchQuerySortRequest as p, type AssignRoleToGroupResponse as p$, type GetResourceContentErrors as p0, type GetResourceContentError as p1, type GetResourceContentResponses as p2, type GetResourceContentResponse as p3, type DeleteResourceData as p4, type DeleteResourceErrors as p5, type DeleteResourceError as p6, type DeleteResourceResponses as p7, type DeleteResourceResponse2 as p8, type CreateRoleData as p9, type SearchClientsForRoleError as pA, type SearchClientsForRoleResponses as pB, type SearchClientsForRoleResponse as pC, type UnassignRoleFromClientData as pD, type UnassignRoleFromClientErrors as pE, type UnassignRoleFromClientError as pF, type UnassignRoleFromClientResponses as pG, type UnassignRoleFromClientResponse as pH, type AssignRoleToClientData as pI, type AssignRoleToClientErrors as pJ, type AssignRoleToClientError as pK, type AssignRoleToClientResponses as pL, type AssignRoleToClientResponse as pM, type SearchGroupsForRoleData as pN, type SearchGroupsForRoleErrors as pO, type SearchGroupsForRoleError as pP, type SearchGroupsForRoleResponses as pQ, type SearchGroupsForRoleResponse as pR, type UnassignRoleFromGroupData as pS, type UnassignRoleFromGroupErrors as pT, type UnassignRoleFromGroupError as pU, type UnassignRoleFromGroupResponses as pV, type UnassignRoleFromGroupResponse as pW, type AssignRoleToGroupData as pX, type AssignRoleToGroupErrors as pY, type AssignRoleToGroupError as pZ, type AssignRoleToGroupResponses as p_, type CreateRoleErrors as pa, type CreateRoleError as pb, type CreateRoleResponses as pc, type CreateRoleResponse as pd, type SearchRolesData as pe, type SearchRolesErrors as pf, type SearchRolesError as pg, type SearchRolesResponses as ph, type SearchRolesResponse as pi, type DeleteRoleData as pj, type DeleteRoleErrors as pk, type DeleteRoleError as pl, type DeleteRoleResponses as pm, type DeleteRoleResponse as pn, type GetRoleData as po, type GetRoleErrors as pp, type GetRoleError as pq, type GetRoleResponses as pr, type GetRoleResponse as ps, type UpdateRoleData as pt, type UpdateRoleErrors as pu, type UpdateRoleError as pv, type UpdateRoleResponses as pw, type UpdateRoleResponse as px, type SearchClientsForRoleData as py, type SearchClientsForRoleErrors as pz, type AuditLogSearchQueryRequest as q, type GetTenantData as q$, type SearchMappingRulesForRoleData as q0, type SearchMappingRulesForRoleErrors as q1, type SearchMappingRulesForRoleError as q2, type SearchMappingRulesForRoleResponses as q3, type SearchMappingRulesForRoleResponse as q4, type UnassignRoleFromMappingRuleData as q5, type UnassignRoleFromMappingRuleErrors as q6, type UnassignRoleFromMappingRuleError as q7, type UnassignRoleFromMappingRuleResponses as q8, type UnassignRoleFromMappingRuleResponse as q9, type BroadcastSignalError as qA, type BroadcastSignalResponses as qB, type BroadcastSignalResponse as qC, type GetStatusData as qD, type GetStatusErrors as qE, type GetStatusResponses as qF, type GetStatusResponse as qG, type GetUsageMetricsData as qH, type GetUsageMetricsErrors as qI, type GetUsageMetricsError as qJ, type GetUsageMetricsResponses as qK, type GetUsageMetricsResponse as qL, type CreateTenantData as qM, type CreateTenantErrors as qN, type CreateTenantError as qO, type CreateTenantResponses as qP, type CreateTenantResponse as qQ, type SearchTenantsData as qR, type SearchTenantsErrors as qS, type SearchTenantsError as qT, type SearchTenantsResponses as qU, type SearchTenantsResponse as qV, type DeleteTenantData as qW, type DeleteTenantErrors as qX, type DeleteTenantError as qY, type DeleteTenantResponses as qZ, type DeleteTenantResponse as q_, type AssignRoleToMappingRuleData as qa, type AssignRoleToMappingRuleErrors as qb, type AssignRoleToMappingRuleError as qc, type AssignRoleToMappingRuleResponses as qd, type AssignRoleToMappingRuleResponse as qe, type SearchUsersForRoleData as qf, type SearchUsersForRoleErrors as qg, type SearchUsersForRoleError as qh, type SearchUsersForRoleResponses as qi, type SearchUsersForRoleResponse as qj, type UnassignRoleFromUserData as qk, type UnassignRoleFromUserErrors as ql, type UnassignRoleFromUserError as qm, type UnassignRoleFromUserResponses as qn, type UnassignRoleFromUserResponse as qo, type AssignRoleToUserData as qp, type AssignRoleToUserErrors as qq, type AssignRoleToUserError as qr, type AssignRoleToUserResponses as qs, type AssignRoleToUserResponse as qt, type CreateAdminUserData as qu, type CreateAdminUserErrors as qv, type CreateAdminUserError as qw, type CreateAdminUserResponses as qx, type BroadcastSignalData as qy, type BroadcastSignalErrors as qz, type AuditLogFilter as r, type SearchUsersForTenantResponse as r$, type GetTenantErrors as r0, type GetTenantError as r1, type GetTenantResponses as r2, type GetTenantResponse as r3, type UpdateTenantData as r4, type UpdateTenantErrors as r5, type UpdateTenantError as r6, type UpdateTenantResponses as r7, type UpdateTenantResponse as r8, type SearchClientsForTenantData as r9, type SearchMappingRulesForTenantResponses as rA, type SearchMappingRulesForTenantResponse as rB, type UnassignMappingRuleFromTenantData as rC, type UnassignMappingRuleFromTenantErrors as rD, type UnassignMappingRuleFromTenantError as rE, type UnassignMappingRuleFromTenantResponses as rF, type UnassignMappingRuleFromTenantResponse as rG, type AssignMappingRuleToTenantData as rH, type AssignMappingRuleToTenantErrors as rI, type AssignMappingRuleToTenantError as rJ, type AssignMappingRuleToTenantResponses as rK, type AssignMappingRuleToTenantResponse as rL, type SearchRolesForTenantData as rM, type SearchRolesForTenantResponses as rN, type SearchRolesForTenantResponse as rO, type UnassignRoleFromTenantData as rP, type UnassignRoleFromTenantErrors as rQ, type UnassignRoleFromTenantError as rR, type UnassignRoleFromTenantResponses as rS, type UnassignRoleFromTenantResponse as rT, type AssignRoleToTenantData as rU, type AssignRoleToTenantErrors as rV, type AssignRoleToTenantError as rW, type AssignRoleToTenantResponses as rX, type AssignRoleToTenantResponse as rY, type SearchUsersForTenantData as rZ, type SearchUsersForTenantResponses as r_, type SearchClientsForTenantResponses as ra, type SearchClientsForTenantResponse as rb, type UnassignClientFromTenantData as rc, type UnassignClientFromTenantErrors as rd, type UnassignClientFromTenantError as re, type UnassignClientFromTenantResponses as rf, type UnassignClientFromTenantResponse as rg, type AssignClientToTenantData as rh, type AssignClientToTenantErrors as ri, type AssignClientToTenantError as rj, type AssignClientToTenantResponses as rk, type AssignClientToTenantResponse as rl, type SearchGroupIdsForTenantData as rm, type SearchGroupIdsForTenantResponses as rn, type SearchGroupIdsForTenantResponse as ro, type UnassignGroupFromTenantData as rp, type UnassignGroupFromTenantErrors as rq, type UnassignGroupFromTenantError as rr, type UnassignGroupFromTenantResponses as rs, type UnassignGroupFromTenantResponse as rt, type AssignGroupToTenantData as ru, type AssignGroupToTenantErrors as rv, type AssignGroupToTenantError as rw, type AssignGroupToTenantResponses as rx, type AssignGroupToTenantResponse as ry, type SearchMappingRulesForTenantData as rz, type AuditLogSearchQueryResult as s, type AssignUserTaskResponses as s$, type UnassignUserFromTenantData as s0, type UnassignUserFromTenantErrors as s1, type UnassignUserFromTenantError as s2, type UnassignUserFromTenantResponses as s3, type UnassignUserFromTenantResponse as s4, type AssignUserToTenantData as s5, type AssignUserToTenantErrors as s6, type AssignUserToTenantError as s7, type AssignUserToTenantResponses as s8, type AssignUserToTenantResponse as s9, type UpdateUserErrors as sA, type UpdateUserError as sB, type UpdateUserResponses as sC, type UpdateUserResponse as sD, type SearchUserTasksData as sE, type SearchUserTasksErrors as sF, type SearchUserTasksError as sG, type SearchUserTasksResponses as sH, type SearchUserTasksResponse as sI, type GetUserTaskData as sJ, type GetUserTaskErrors as sK, type GetUserTaskError as sL, type GetUserTaskResponses as sM, type GetUserTaskResponse as sN, type UpdateUserTaskData as sO, type UpdateUserTaskErrors as sP, type UpdateUserTaskError as sQ, type UpdateUserTaskResponses as sR, type UpdateUserTaskResponse as sS, type UnassignUserTaskData as sT, type UnassignUserTaskErrors as sU, type UnassignUserTaskError as sV, type UnassignUserTaskResponses as sW, type UnassignUserTaskResponse as sX, type AssignUserTaskData as sY, type AssignUserTaskErrors as sZ, type AssignUserTaskError as s_, type GetTopologyData as sa, type GetTopologyErrors as sb, type GetTopologyError as sc, type GetTopologyResponses as sd, type GetTopologyResponse as se, type CreateUserData as sf, type CreateUserErrors as sg, type CreateUserError as sh, type CreateUserResponses as si, type CreateUserResponse as sj, type SearchUsersData as sk, type SearchUsersErrors as sl, type SearchUsersError as sm, type SearchUsersResponses as sn, type SearchUsersResponse as so, type DeleteUserData as sp, type DeleteUserErrors as sq, type DeleteUserError as sr, type DeleteUserResponses as ss, type DeleteUserResponse as st, type GetUserData as su, type GetUserErrors as sv, type GetUserError as sw, type GetUserResponses as sx, type GetUserResponse as sy, type UpdateUserData as sz, AuditLogEntityKey as t, type AssignUserTaskResponse as t0, type SearchUserTaskAuditLogsData as t1, type SearchUserTaskAuditLogsErrors as t2, type SearchUserTaskAuditLogsError as t3, type SearchUserTaskAuditLogsResponses as t4, type SearchUserTaskAuditLogsResponse as t5, type CompleteUserTaskData as t6, type CompleteUserTaskErrors as t7, type CompleteUserTaskError as t8, type CompleteUserTaskResponses as t9, retryTE as tA, withTimeoutTE as tB, eventuallyTE as tC, foldDomainError as tD, classifyDomainError as tE, type TaskEither as tF, type CompleteUserTaskResponse as ta, type GetUserTaskFormData as tb, type GetUserTaskFormErrors as tc, type GetUserTaskFormError as td, type GetUserTaskFormResponses as te, type GetUserTaskFormResponse as tf, type SearchUserTaskVariablesData as tg, type SearchUserTaskVariablesErrors as th, type SearchUserTaskVariablesError as ti, type SearchUserTaskVariablesResponses as tj, type SearchUserTaskVariablesResponse as tk, type SearchVariablesData as tl, type SearchVariablesErrors as tm, type SearchVariablesError as tn, type SearchVariablesResponses as to, type SearchVariablesResponse as tp, type GetVariableData as tq, type GetVariableErrors as tr, type GetVariableError as ts, type GetVariableResponses as tt, type GetVariableResponse as tu, assertConstraint as tv, type Fpify as tw, type DomainError as tx, type Left as ty, type Right as tz, type AuditLogEntityTypeEnum as u, type AuditLogOperationTypeEnum as v, type AuditLogActorTypeEnum as w, type AuditLogResultEnum as x, type AuditLogCategoryEnum as y, type AuditLogEntityKeyFilterProperty as z };
|
|
22609
|
+
export { type OwnerTypeEnum as $, type AuditLogResult as A, type AdvancedAuditLogEntityKeyFilter as B, type CamundaOptions as C, type EntityTypeFilterProperty as D, type Either as E, type AdvancedEntityTypeFilter as F, type AdvancedOperationTypeFilter as G, type CategoryFilterProperty as H, type AdvancedCategoryFilter as I, type JobWorkerConfig as J, type AuditLogResultFilterProperty as K, type AdvancedResultFilter as L, type AuditLogActorTypeFilterProperty as M, type AdvancedActorTypeFilter as N, type OperationTypeFilterProperty as O, type CamundaUserResult as P, type AuthorizationIdBasedRequest as Q, type AuthorizationPropertyBasedRequest as R, type AuthorizationRequest as S, type AuthorizationSearchQuerySortRequest as T, type AuthorizationSearchQuery as U, type AuthorizationFilter as V, type AuthorizationResult as W, type AuthorizationSearchResult as X, type AuthorizationCreateResult as Y, type PermissionTypeEnum as Z, type ResourceTypeEnum as _, CamundaClient as a, type DecisionInstanceSearchQuery as a$, AuthorizationKey as a0, type BatchOperationCreatedResult as a1, type BatchOperationSearchQuerySortRequest as a2, type BatchOperationSearchQuery as a3, type BatchOperationFilter as a4, type BatchOperationSearchQueryResult as a5, type BatchOperationResponse as a6, type BatchOperationError as a7, type BatchOperationItemSearchQuerySortRequest as a8, type BatchOperationItemSearchQuery as a9, type ClusterVariableResultBase as aA, type ClusterVariableSearchQueryRequest as aB, type ClusterVariableSearchQuerySortRequest as aC, type ClusterVariableSearchQueryFilterRequest as aD, type ClusterVariableScopeFilterProperty as aE, type AdvancedClusterVariableScopeFilter as aF, type ClusterVariableSearchQueryResult as aG, type TopologyResponse as aH, type BrokerInfo as aI, type Partition as aJ, type ConditionalEvaluationInstruction as aK, type EvaluateConditionalResult as aL, ConditionalEvaluationKey as aM, type ProcessInstanceReference as aN, StartCursor as aO, EndCursor as aP, type DecisionDefinitionSearchQuerySortRequest as aQ, type DecisionDefinitionSearchQuery as aR, type DecisionDefinitionFilter as aS, type DecisionDefinitionSearchQueryResult as aT, type DecisionDefinitionResult as aU, type DecisionEvaluationInstruction as aV, type DecisionEvaluationById as aW, type DecisionEvaluationByKey as aX, type EvaluateDecisionResult as aY, type EvaluatedDecisionResult as aZ, type DecisionInstanceSearchQuerySortRequest as a_, type BatchOperationItemFilter as aa, type BatchOperationItemSearchQueryResult as ab, type BatchOperationItemResponse as ac, type DecisionInstanceDeletionBatchOperationRequest as ad, type ProcessInstanceCancellationBatchOperationRequest as ae, type ProcessInstanceIncidentResolutionBatchOperationRequest as af, type ProcessInstanceDeletionBatchOperationRequest as ag, type ProcessInstanceMigrationBatchOperationRequest as ah, type ProcessInstanceMigrationBatchOperationPlan as ai, type ProcessInstanceModificationBatchOperationRequest as aj, type ProcessInstanceModificationMoveBatchOperationInstruction as ak, type BatchOperationItemStateEnum as al, type BatchOperationStateEnum as am, type BatchOperationTypeEnum as an, type BatchOperationTypeFilterProperty as ao, type AdvancedBatchOperationTypeFilter as ap, type BatchOperationStateFilterProperty as aq, type AdvancedBatchOperationStateFilter as ar, type BatchOperationItemStateFilterProperty as as, type AdvancedBatchOperationItemStateFilter as at, type ClockPinRequest as au, type ClusterVariableScopeEnum as av, type CreateClusterVariableRequest as aw, type UpdateClusterVariableRequest as ax, type ClusterVariableResult as ay, type ClusterVariableSearchResult as az, type CancelablePromise as b, type GroupCreateResult as b$, type DecisionInstanceFilter as b0, type DeleteDecisionInstanceRequest as b1, type DecisionInstanceSearchQueryResult as b2, type DecisionInstanceResult as b3, type DecisionInstanceGetQueryResult as b4, type EvaluatedDecisionInputItem as b5, type EvaluatedDecisionOutputItem as b6, type MatchedDecisionRuleItem as b7, type DecisionDefinitionTypeEnum as b8, type DecisionInstanceStateEnum as b9, type DocumentMetadata as bA, type DocumentLinkRequest as bB, type DocumentLink as bC, DocumentId as bD, type ElementInstanceSearchQuerySortRequest as bE, type ElementInstanceSearchQuery as bF, type ElementInstanceFilter as bG, type ElementInstanceStateFilterProperty as bH, type AdvancedElementInstanceStateFilter as bI, type ElementInstanceSearchQueryResult as bJ, type ElementInstanceResult as bK, type ElementInstanceStateEnum as bL, type AdHocSubProcessActivateActivitiesInstruction as bM, type AdHocSubProcessActivateActivityReference as bN, type ExpressionEvaluationRequest as bO, type ExpressionEvaluationResult as bP, type LikeFilter as bQ, type BasicStringFilter as bR, type AdvancedStringFilter as bS, type BasicStringFilterProperty as bT, type StringFilterProperty as bU, type AdvancedIntegerFilter as bV, type IntegerFilterProperty as bW, type AdvancedDateTimeFilter as bX, type DateTimeFilterProperty as bY, type FormResult as bZ, type GroupCreateRequest as b_, type AdvancedDecisionInstanceStateFilter as ba, type DecisionInstanceStateFilterProperty as bb, type DecisionRequirementsSearchQuerySortRequest as bc, type DecisionRequirementsSearchQuery as bd, type DecisionRequirementsFilter as be, type DecisionRequirementsSearchQueryResult as bf, type DecisionRequirementsResult as bg, type DeploymentResult as bh, type DeploymentMetadataResult as bi, type DeploymentProcessResult as bj, type DeploymentDecisionResult as bk, type DeploymentDecisionRequirementsResult as bl, type DeploymentFormResult as bm, type DeploymentResourceResult as bn, type DeleteResourceRequest as bo, type DeleteResourceResponse as bp, type ResourceResult as bq, DeploymentKey as br, type ResourceKey as bs, type DeploymentKeyFilterProperty as bt, type AdvancedDeploymentKeyFilter as bu, type ResourceKeyFilterProperty as bv, type AdvancedResourceKeyFilter as bw, type DocumentReference as bx, type DocumentCreationFailureDetail as by, type DocumentCreationBatchResponse as bz, createCamundaClient as c, type JobUpdateRequest as c$, type GroupUpdateRequest as c0, type GroupUpdateResult as c1, type GroupResult as c2, type GroupSearchQuerySortRequest as c3, type GroupSearchQueryRequest as c4, type GroupFilter as c5, type GroupSearchQueryResult as c6, type GroupUserResult as c7, type GroupUserSearchResult as c8, type GroupUserSearchQueryRequest as c9, type IncidentProcessInstanceStatisticsByErrorQueryResult as cA, type IncidentProcessInstanceStatisticsByErrorResult as cB, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as cC, type IncidentProcessInstanceStatisticsByDefinitionQuery as cD, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as cE, type IncidentProcessInstanceStatisticsByDefinitionResult as cF, type IncidentProcessInstanceStatisticsByDefinitionFilter as cG, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as cH, type GlobalJobStatisticsQueryResult as cI, type StatusMetric as cJ, type JobActivationRequest as cK, type JobActivationResult as cL, type ActivatedJobResult$1 as cM, type UserTaskProperties as cN, type JobSearchQuery as cO, type JobSearchQuerySortRequest as cP, type JobFilter as cQ, type JobSearchQueryResult as cR, type JobSearchResult as cS, type JobFailRequest as cT, type JobErrorRequest$1 as cU, type JobCompletionRequest as cV, type JobResult as cW, type JobResultUserTask as cX, type JobResultCorrections as cY, type JobResultAdHocSubProcess as cZ, type JobResultActivateElement as c_, type GroupUserSearchQuerySortRequest as ca, type GroupClientResult as cb, type GroupClientSearchResult as cc, type GroupClientSearchQueryRequest as cd, type GroupClientSearchQuerySortRequest as ce, ProcessDefinitionId as cf, ElementId as cg, FormId as ch, DecisionDefinitionId as ci, TenantId as cj, Username as ck, Tag as cl, type TagSet as cm, type IncidentSearchQuery as cn, type IncidentFilter as co, type IncidentErrorTypeFilterProperty as cp, type AdvancedIncidentErrorTypeFilter as cq, type IncidentErrorTypeEnum as cr, type IncidentStateFilterProperty as cs, type AdvancedIncidentStateFilter as ct, type IncidentStateEnum as cu, type IncidentSearchQuerySortRequest as cv, type IncidentSearchQueryResult as cw, type IncidentResult as cx, type IncidentResolutionRequest as cy, type IncidentProcessInstanceStatisticsByErrorQuery as cz, JobWorker as d, type MappingRuleResult as d$, type JobChangeset as d0, type TenantFilterEnum as d1, type JobStateEnum as d2, type JobKindEnum as d3, type JobListenerEventTypeEnum as d4, type JobKindFilterProperty as d5, type AdvancedJobKindFilter as d6, type JobListenerEventTypeFilterProperty as d7, type AdvancedJobListenerEventTypeFilter as d8, type JobStateFilterProperty as d9, type AdvancedElementInstanceKeyFilter as dA, type JobKeyFilterProperty as dB, type AdvancedJobKeyFilter as dC, type DecisionDefinitionKeyFilterProperty as dD, type AdvancedDecisionDefinitionKeyFilter as dE, type ScopeKeyFilterProperty as dF, type AdvancedScopeKeyFilter as dG, type VariableKeyFilterProperty as dH, type AdvancedVariableKeyFilter as dI, type DecisionEvaluationInstanceKeyFilterProperty as dJ, type AdvancedDecisionEvaluationInstanceKeyFilter as dK, type AuditLogKeyFilterProperty as dL, type AdvancedAuditLogKeyFilter as dM, type FormKeyFilterProperty as dN, type AdvancedFormKeyFilter as dO, type DecisionEvaluationKeyFilterProperty as dP, type AdvancedDecisionEvaluationKeyFilter as dQ, type DecisionRequirementsKeyFilterProperty as dR, type AdvancedDecisionRequirementsKeyFilter as dS, type LicenseResponse as dT, type MappingRuleCreateUpdateRequest as dU, type MappingRuleCreateRequest as dV, type MappingRuleUpdateRequest as dW, type MappingRuleCreateUpdateResult as dX, type MappingRuleCreateResult as dY, type MappingRuleUpdateResult as dZ, type MappingRuleSearchQueryResult as d_, type AdvancedJobStateFilter as da, type LongKey as db, ProcessInstanceKey as dc, RootProcessInstanceKey as dd, ProcessDefinitionKey as de, ElementInstanceKey as df, UserTaskKey as dg, FormKey as dh, VariableKey as di, ScopeKey as dj, IncidentKey as dk, JobKey as dl, DecisionDefinitionKey as dm, DecisionEvaluationInstanceKey as dn, DecisionEvaluationKey as dp, DecisionRequirementsKey as dq, DecisionInstanceKey as dr, BatchOperationKey as ds, type OperationReference as dt, AuditLogKey as du, type ProcessDefinitionKeyFilterProperty as dv, type AdvancedProcessDefinitionKeyFilter as dw, type ProcessInstanceKeyFilterProperty as dx, type AdvancedProcessInstanceKeyFilter as dy, type ElementInstanceKeyFilterProperty as dz, type Job as e, type ProcessInstanceSequenceFlowsQueryResult as e$, type MappingRuleSearchQuerySortRequest as e0, type MappingRuleSearchQueryRequest as e1, type MappingRuleFilter as e2, type MessageCorrelationRequest as e3, type MessageCorrelationResult as e4, type MessagePublicationRequest as e5, type MessagePublicationResult as e6, type MessageSubscriptionSearchQueryResult as e7, type MessageSubscriptionResult as e8, type MessageSubscriptionSearchQuerySortRequest as e9, type ProcessDefinitionInstanceStatisticsQuery as eA, type ProcessDefinitionInstanceStatisticsQueryResult as eB, type ProcessDefinitionInstanceStatisticsResult as eC, type ProcessDefinitionInstanceStatisticsQuerySortRequest as eD, type ProcessDefinitionInstanceVersionStatisticsQuery as eE, type ProcessDefinitionInstanceVersionStatisticsFilter as eF, type ProcessDefinitionInstanceVersionStatisticsQueryResult as eG, type ProcessDefinitionInstanceVersionStatisticsResult as eH, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as eI, type ProcessInstanceCreationInstruction as eJ, type ProcessInstanceCreationInstructionById as eK, type ProcessInstanceCreationInstructionByKey as eL, type ProcessInstanceCreationStartInstruction as eM, type ProcessInstanceCreationRuntimeInstruction as eN, type ProcessInstanceCreationTerminateInstruction as eO, type CreateProcessInstanceResult as eP, type ProcessInstanceSearchQuerySortRequest as eQ, type ProcessInstanceSearchQuery as eR, type BaseProcessInstanceFilterFields as eS, type ProcessDefinitionStatisticsFilter as eT, type ProcessInstanceFilterFields as eU, type ProcessInstanceFilter as eV, type ProcessInstanceSearchQueryResult as eW, type ProcessInstanceResult as eX, type CancelProcessInstanceRequest as eY, type DeleteProcessInstanceRequest as eZ, type ProcessInstanceCallHierarchyEntry as e_, type MessageSubscriptionSearchQuery as ea, type MessageSubscriptionFilter as eb, type CorrelatedMessageSubscriptionSearchQueryResult as ec, type CorrelatedMessageSubscriptionResult as ed, type CorrelatedMessageSubscriptionSearchQuery as ee, type CorrelatedMessageSubscriptionSearchQuerySortRequest as ef, type MessageSubscriptionStateEnum as eg, type CorrelatedMessageSubscriptionFilter as eh, type MessageSubscriptionStateFilterProperty as ei, type AdvancedMessageSubscriptionStateFilter as ej, type AdvancedMessageSubscriptionKeyFilter as ek, type MessageSubscriptionKeyFilterProperty as el, MessageSubscriptionKey as em, MessageKey as en, type ProblemDetail as eo, type ProcessDefinitionSearchQuerySortRequest as ep, type ProcessDefinitionSearchQuery as eq, type ProcessDefinitionFilter as er, type ProcessDefinitionSearchQueryResult as es, type ProcessDefinitionResult as et, type ProcessDefinitionElementStatisticsQuery as eu, type ProcessDefinitionElementStatisticsQueryResult as ev, type ProcessElementStatisticsResult as ew, type ProcessDefinitionMessageSubscriptionStatisticsQuery as ex, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as ey, type ProcessDefinitionMessageSubscriptionStatisticsResult as ez, JobActionReceipt as f, type TenantFilter as f$, type ProcessInstanceSequenceFlowResult as f0, type ProcessInstanceElementStatisticsQueryResult as f1, type ProcessInstanceMigrationInstruction as f2, type MigrateProcessInstanceMappingInstruction as f3, type ProcessInstanceModificationInstruction as f4, type ProcessInstanceModificationActivateInstruction as f5, type ModifyProcessInstanceVariableInstruction as f6, type ProcessInstanceModificationMoveInstruction as f7, type SourceElementInstruction as f8, type SourceElementIdInstruction as f9, type RoleClientSearchQueryRequest as fA, type RoleClientSearchQuerySortRequest as fB, type RoleGroupResult as fC, type RoleGroupSearchResult as fD, type RoleGroupSearchQueryRequest as fE, type RoleGroupSearchQuerySortRequest as fF, type SearchQueryRequest as fG, type SearchQueryPageRequest as fH, type LimitPagination as fI, type OffsetPagination as fJ, type CursorForwardPagination as fK, type CursorBackwardPagination as fL, type SearchQueryResponse as fM, type SortOrderEnum as fN, type SearchQueryPageResponse as fO, type SignalBroadcastRequest as fP, type SignalBroadcastResult as fQ, SignalKey as fR, type UsageMetricsResponse as fS, type UsageMetricsResponseItem as fT, type TenantCreateRequest as fU, type TenantCreateResult as fV, type TenantUpdateRequest as fW, type TenantUpdateResult as fX, type TenantResult as fY, type TenantSearchQuerySortRequest as fZ, type TenantSearchQueryRequest as f_, type SourceElementInstanceKeyInstruction as fa, type AncestorScopeInstruction as fb, type DirectAncestorKeyInstruction as fc, type InferredAncestorKeyInstruction as fd, type UseSourceParentKeyInstruction as fe, type ProcessInstanceModificationTerminateInstruction as ff, type ProcessInstanceModificationTerminateByIdInstruction as fg, type ProcessInstanceModificationTerminateByKeyInstruction as fh, type ProcessInstanceStateEnum as fi, type AdvancedProcessInstanceStateFilter as fj, type ProcessInstanceStateFilterProperty as fk, type RoleCreateRequest as fl, type RoleCreateResult as fm, type RoleUpdateRequest as fn, type RoleUpdateResult as fo, type RoleResult as fp, type RoleSearchQuerySortRequest as fq, type RoleSearchQueryRequest as fr, type RoleFilter as fs, type RoleSearchQueryResult as ft, type RoleUserResult as fu, type RoleUserSearchResult as fv, type RoleUserSearchQueryRequest as fw, type RoleUserSearchQuerySortRequest as fx, type RoleClientResult as fy, type RoleClientSearchResult as fz, createCamundaFpClient as g, type CreateAuthorizationData as g$, type TenantSearchQueryResult as g0, type TenantUserResult as g1, type TenantUserSearchResult as g2, type TenantUserSearchQueryRequest as g3, type TenantUserSearchQuerySortRequest as g4, type TenantClientResult as g5, type TenantClientSearchResult as g6, type TenantClientSearchQueryRequest as g7, type TenantClientSearchQuerySortRequest as g8, type TenantGroupResult as g9, type UserSearchQueryRequest as gA, type UserFilter as gB, type UserSearchResult as gC, type VariableSearchQuerySortRequest as gD, type VariableSearchQuery as gE, type VariableFilter as gF, type VariableSearchQueryResult as gG, type VariableSearchResult as gH, type VariableResult as gI, type VariableResultBase as gJ, type VariableValueFilterProperty as gK, type SetVariableRequest as gL, type SearchAuditLogsData as gM, type SearchAuditLogsErrors as gN, type SearchAuditLogsError as gO, type SearchAuditLogsResponses as gP, type SearchAuditLogsResponse as gQ, type GetAuditLogData as gR, type GetAuditLogErrors as gS, type GetAuditLogError as gT, type GetAuditLogResponses as gU, type GetAuditLogResponse as gV, type GetAuthenticationData as gW, type GetAuthenticationErrors as gX, type GetAuthenticationError as gY, type GetAuthenticationResponses as gZ, type GetAuthenticationResponse as g_, type TenantGroupSearchResult as ga, type TenantGroupSearchQueryRequest as gb, type TenantGroupSearchQuerySortRequest as gc, type UserTaskSearchQuerySortRequest as gd, type UserTaskSearchQuery as ge, type UserTaskFilter as gf, type UserTaskSearchQueryResult as gg, type UserTaskResult as gh, type UserTaskCompletionRequest as gi, type UserTaskAssignmentRequest as gj, type UserTaskUpdateRequest as gk, type Changeset as gl, type UserTaskVariableSearchQuerySortRequest as gm, type UserTaskVariableSearchQueryRequest as gn, type UserTaskAuditLogSearchQueryRequest as go, type UserTaskStateEnum as gp, type UserTaskVariableFilter as gq, type UserTaskStateFilterProperty as gr, type AdvancedUserTaskStateFilter as gs, type UserTaskAuditLogFilter as gt, type UserRequest as gu, type UserCreateResult as gv, type UserUpdateRequest as gw, type UserUpdateResult as gx, type UserResult as gy, type UserSearchQuerySortRequest as gz, type CamundaFpClient as h, type ResetClockResponse as h$, type CreateAuthorizationErrors as h0, type CreateAuthorizationError as h1, type CreateAuthorizationResponses as h2, type CreateAuthorizationResponse as h3, type SearchAuthorizationsData as h4, type SearchAuthorizationsErrors as h5, type SearchAuthorizationsError as h6, type SearchAuthorizationsResponses as h7, type SearchAuthorizationsResponse as h8, type DeleteAuthorizationData as h9, type GetBatchOperationError as hA, type GetBatchOperationResponses as hB, type GetBatchOperationResponse as hC, type CancelBatchOperationData as hD, type CancelBatchOperationErrors as hE, type CancelBatchOperationError as hF, type CancelBatchOperationResponses as hG, type CancelBatchOperationResponse as hH, type ResumeBatchOperationData as hI, type ResumeBatchOperationErrors as hJ, type ResumeBatchOperationError as hK, type ResumeBatchOperationResponses as hL, type ResumeBatchOperationResponse as hM, type SuspendBatchOperationData as hN, type SuspendBatchOperationErrors as hO, type SuspendBatchOperationError as hP, type SuspendBatchOperationResponses as hQ, type SuspendBatchOperationResponse as hR, type PinClockData as hS, type PinClockErrors as hT, type PinClockError as hU, type PinClockResponses as hV, type PinClockResponse as hW, type ResetClockData as hX, type ResetClockErrors as hY, type ResetClockError as hZ, type ResetClockResponses as h_, type DeleteAuthorizationErrors as ha, type DeleteAuthorizationError as hb, type DeleteAuthorizationResponses as hc, type DeleteAuthorizationResponse as hd, type GetAuthorizationData as he, type GetAuthorizationErrors as hf, type GetAuthorizationError as hg, type GetAuthorizationResponses as hh, type GetAuthorizationResponse as hi, type UpdateAuthorizationData as hj, type UpdateAuthorizationErrors as hk, type UpdateAuthorizationError as hl, type UpdateAuthorizationResponses as hm, type UpdateAuthorizationResponse as hn, type SearchBatchOperationItemsData as ho, type SearchBatchOperationItemsErrors as hp, type SearchBatchOperationItemsError as hq, type SearchBatchOperationItemsResponses as hr, type SearchBatchOperationItemsResponse as hs, type SearchBatchOperationsData as ht, type SearchBatchOperationsErrors as hu, type SearchBatchOperationsError as hv, type SearchBatchOperationsResponses as hw, type SearchBatchOperationsResponse as hx, type GetBatchOperationData as hy, type GetBatchOperationErrors as hz, isLeft as i, type SearchDecisionDefinitionsErrors as i$, type CreateGlobalClusterVariableData as i0, type CreateGlobalClusterVariableErrors as i1, type CreateGlobalClusterVariableError as i2, type CreateGlobalClusterVariableResponses as i3, type CreateGlobalClusterVariableResponse as i4, type DeleteGlobalClusterVariableData as i5, type DeleteGlobalClusterVariableErrors as i6, type DeleteGlobalClusterVariableError as i7, type DeleteGlobalClusterVariableResponses as i8, type DeleteGlobalClusterVariableResponse as i9, type DeleteTenantClusterVariableResponse as iA, type GetTenantClusterVariableData as iB, type GetTenantClusterVariableErrors as iC, type GetTenantClusterVariableError as iD, type GetTenantClusterVariableResponses as iE, type GetTenantClusterVariableResponse as iF, type UpdateTenantClusterVariableData as iG, type UpdateTenantClusterVariableErrors as iH, type UpdateTenantClusterVariableError as iI, type UpdateTenantClusterVariableResponses as iJ, type UpdateTenantClusterVariableResponse as iK, type EvaluateConditionalsData as iL, type EvaluateConditionalsErrors as iM, type EvaluateConditionalsError as iN, type EvaluateConditionalsResponses as iO, type EvaluateConditionalsResponse as iP, type SearchCorrelatedMessageSubscriptionsData as iQ, type SearchCorrelatedMessageSubscriptionsErrors as iR, type SearchCorrelatedMessageSubscriptionsError as iS, type SearchCorrelatedMessageSubscriptionsResponses as iT, type SearchCorrelatedMessageSubscriptionsResponse as iU, type EvaluateDecisionData as iV, type EvaluateDecisionErrors as iW, type EvaluateDecisionError as iX, type EvaluateDecisionResponses as iY, type EvaluateDecisionResponse as iZ, type SearchDecisionDefinitionsData as i_, type GetGlobalClusterVariableData as ia, type GetGlobalClusterVariableErrors as ib, type GetGlobalClusterVariableError as ic, type GetGlobalClusterVariableResponses as id, type GetGlobalClusterVariableResponse as ie, type UpdateGlobalClusterVariableData as ig, type UpdateGlobalClusterVariableErrors as ih, type UpdateGlobalClusterVariableError as ii, type UpdateGlobalClusterVariableResponses as ij, type UpdateGlobalClusterVariableResponse as ik, type SearchClusterVariablesData as il, type SearchClusterVariablesErrors as im, type SearchClusterVariablesError as io, type SearchClusterVariablesResponses as ip, type SearchClusterVariablesResponse as iq, type CreateTenantClusterVariableData as ir, type CreateTenantClusterVariableErrors as is, type CreateTenantClusterVariableError as it, type CreateTenantClusterVariableResponses as iu, type CreateTenantClusterVariableResponse as iv, type DeleteTenantClusterVariableData as iw, type DeleteTenantClusterVariableErrors as ix, type DeleteTenantClusterVariableError as iy, type DeleteTenantClusterVariableResponses as iz, isRight as j, type DeleteDocumentData as j$, type SearchDecisionDefinitionsError as j0, type SearchDecisionDefinitionsResponses as j1, type SearchDecisionDefinitionsResponse as j2, type GetDecisionDefinitionData as j3, type GetDecisionDefinitionErrors as j4, type GetDecisionDefinitionError as j5, type GetDecisionDefinitionResponses as j6, type GetDecisionDefinitionResponse as j7, type GetDecisionDefinitionXmlData as j8, type GetDecisionDefinitionXmlErrors as j9, type SearchDecisionRequirementsResponses as jA, type SearchDecisionRequirementsResponse as jB, type GetDecisionRequirementsData as jC, type GetDecisionRequirementsErrors as jD, type GetDecisionRequirementsError as jE, type GetDecisionRequirementsResponses as jF, type GetDecisionRequirementsResponse as jG, type GetDecisionRequirementsXmlData as jH, type GetDecisionRequirementsXmlErrors as jI, type GetDecisionRequirementsXmlError as jJ, type GetDecisionRequirementsXmlResponses as jK, type GetDecisionRequirementsXmlResponse as jL, type CreateDeploymentData as jM, type CreateDeploymentErrors as jN, type CreateDeploymentError as jO, type CreateDeploymentResponses as jP, type CreateDeploymentResponse as jQ, type CreateDocumentData as jR, type CreateDocumentErrors as jS, type CreateDocumentError as jT, type CreateDocumentResponses as jU, type CreateDocumentResponse as jV, type CreateDocumentsData as jW, type CreateDocumentsErrors as jX, type CreateDocumentsError as jY, type CreateDocumentsResponses as jZ, type CreateDocumentsResponse as j_, type GetDecisionDefinitionXmlError as ja, type GetDecisionDefinitionXmlResponses as jb, type GetDecisionDefinitionXmlResponse as jc, type SearchDecisionInstancesData as jd, type SearchDecisionInstancesErrors as je, type SearchDecisionInstancesError as jf, type SearchDecisionInstancesResponses as jg, type SearchDecisionInstancesResponse as jh, type GetDecisionInstanceData as ji, type GetDecisionInstanceErrors as jj, type GetDecisionInstanceError as jk, type GetDecisionInstanceResponses as jl, type GetDecisionInstanceResponse as jm, type DeleteDecisionInstanceData as jn, type DeleteDecisionInstanceErrors as jo, type DeleteDecisionInstanceError as jp, type DeleteDecisionInstanceResponses as jq, type DeleteDecisionInstanceResponse as jr, type DeleteDecisionInstancesBatchOperationData as js, type DeleteDecisionInstancesBatchOperationErrors as jt, type DeleteDecisionInstancesBatchOperationError as ju, type DeleteDecisionInstancesBatchOperationResponses as jv, type DeleteDecisionInstancesBatchOperationResponse as jw, type SearchDecisionRequirementsData as jx, type SearchDecisionRequirementsErrors as jy, type SearchDecisionRequirementsError as jz, CamundaValidationError as k, type GetGroupResponse as k$, type DeleteDocumentErrors as k0, type DeleteDocumentError as k1, type DeleteDocumentResponses as k2, type DeleteDocumentResponse as k3, type GetDocumentData as k4, type GetDocumentErrors as k5, type GetDocumentError as k6, type GetDocumentResponses as k7, type GetDocumentResponse as k8, type CreateDocumentLinkData as k9, type CreateElementInstanceVariablesError as kA, type CreateElementInstanceVariablesResponses as kB, type CreateElementInstanceVariablesResponse as kC, type EvaluateExpressionData as kD, type EvaluateExpressionErrors as kE, type EvaluateExpressionError as kF, type EvaluateExpressionResponses as kG, type EvaluateExpressionResponse as kH, type CreateGroupData as kI, type CreateGroupErrors as kJ, type CreateGroupError as kK, type CreateGroupResponses as kL, type CreateGroupResponse as kM, type SearchGroupsData as kN, type SearchGroupsErrors as kO, type SearchGroupsError as kP, type SearchGroupsResponses as kQ, type SearchGroupsResponse as kR, type DeleteGroupData as kS, type DeleteGroupErrors as kT, type DeleteGroupError as kU, type DeleteGroupResponses as kV, type DeleteGroupResponse as kW, type GetGroupData as kX, type GetGroupErrors as kY, type GetGroupError as kZ, type GetGroupResponses as k_, type CreateDocumentLinkErrors as ka, type CreateDocumentLinkError as kb, type CreateDocumentLinkResponses as kc, type CreateDocumentLinkResponse as kd, type ActivateAdHocSubProcessActivitiesData as ke, type ActivateAdHocSubProcessActivitiesErrors as kf, type ActivateAdHocSubProcessActivitiesError as kg, type ActivateAdHocSubProcessActivitiesResponses as kh, type ActivateAdHocSubProcessActivitiesResponse as ki, type SearchElementInstancesData as kj, type SearchElementInstancesErrors as kk, type SearchElementInstancesError as kl, type SearchElementInstancesResponses as km, type SearchElementInstancesResponse as kn, type GetElementInstanceData as ko, type GetElementInstanceErrors as kp, type GetElementInstanceError as kq, type GetElementInstanceResponses as kr, type GetElementInstanceResponse as ks, type SearchElementInstanceIncidentsData as kt, type SearchElementInstanceIncidentsErrors as ku, type SearchElementInstanceIncidentsError as kv, type SearchElementInstanceIncidentsResponses as kw, type SearchElementInstanceIncidentsResponse as kx, type CreateElementInstanceVariablesData as ky, type CreateElementInstanceVariablesErrors as kz, EventualConsistencyTimeoutError as l, type GetIncidentResponses as l$, type UpdateGroupData as l0, type UpdateGroupErrors as l1, type UpdateGroupError as l2, type UpdateGroupResponses as l3, type UpdateGroupResponse as l4, type SearchClientsForGroupData as l5, type SearchClientsForGroupErrors as l6, type SearchClientsForGroupError as l7, type SearchClientsForGroupResponses as l8, type SearchClientsForGroupResponse as l9, type SearchRolesForGroupErrors as lA, type SearchRolesForGroupError as lB, type SearchRolesForGroupResponses as lC, type SearchRolesForGroupResponse as lD, type SearchUsersForGroupData as lE, type SearchUsersForGroupErrors as lF, type SearchUsersForGroupError as lG, type SearchUsersForGroupResponses as lH, type SearchUsersForGroupResponse as lI, type UnassignUserFromGroupData as lJ, type UnassignUserFromGroupErrors as lK, type UnassignUserFromGroupError as lL, type UnassignUserFromGroupResponses as lM, type UnassignUserFromGroupResponse as lN, type AssignUserToGroupData as lO, type AssignUserToGroupErrors as lP, type AssignUserToGroupError as lQ, type AssignUserToGroupResponses as lR, type AssignUserToGroupResponse as lS, type SearchIncidentsData as lT, type SearchIncidentsErrors as lU, type SearchIncidentsError as lV, type SearchIncidentsResponses as lW, type SearchIncidentsResponse as lX, type GetIncidentData as lY, type GetIncidentErrors as lZ, type GetIncidentError as l_, type UnassignClientFromGroupData as la, type UnassignClientFromGroupErrors as lb, type UnassignClientFromGroupError as lc, type UnassignClientFromGroupResponses as ld, type UnassignClientFromGroupResponse as le, type AssignClientToGroupData as lf, type AssignClientToGroupErrors as lg, type AssignClientToGroupError as lh, type AssignClientToGroupResponses as li, type AssignClientToGroupResponse as lj, type SearchMappingRulesForGroupData as lk, type SearchMappingRulesForGroupErrors as ll, type SearchMappingRulesForGroupError as lm, type SearchMappingRulesForGroupResponses as ln, type SearchMappingRulesForGroupResponse as lo, type UnassignMappingRuleFromGroupData as lp, type UnassignMappingRuleFromGroupErrors as lq, type UnassignMappingRuleFromGroupError as lr, type UnassignMappingRuleFromGroupResponses as ls, type UnassignMappingRuleFromGroupResponse as lt, type AssignMappingRuleToGroupData as lu, type AssignMappingRuleToGroupErrors as lv, type AssignMappingRuleToGroupError as lw, type AssignMappingRuleToGroupResponses as lx, type AssignMappingRuleToGroupResponse as ly, type SearchRolesForGroupData as lz, type EnrichedActivatedJob as m, type SearchMappingRuleError as m$, type GetIncidentResponse as m0, type ResolveIncidentData as m1, type ResolveIncidentErrors as m2, type ResolveIncidentError as m3, type ResolveIncidentResponses as m4, type ResolveIncidentResponse as m5, type GetProcessInstanceStatisticsByDefinitionData as m6, type GetProcessInstanceStatisticsByDefinitionErrors as m7, type GetProcessInstanceStatisticsByDefinitionError as m8, type GetProcessInstanceStatisticsByDefinitionResponses as m9, type ThrowJobErrorData as mA, type ThrowJobErrorErrors as mB, type ThrowJobErrorError as mC, type ThrowJobErrorResponses as mD, type ThrowJobErrorResponse as mE, type FailJobData as mF, type FailJobErrors as mG, type FailJobError as mH, type FailJobResponses as mI, type FailJobResponse as mJ, type GetGlobalJobStatisticsData as mK, type GetGlobalJobStatisticsErrors as mL, type GetGlobalJobStatisticsError as mM, type GetGlobalJobStatisticsResponses as mN, type GetGlobalJobStatisticsResponse as mO, type GetLicenseData as mP, type GetLicenseErrors as mQ, type GetLicenseError as mR, type GetLicenseResponses as mS, type GetLicenseResponse as mT, type CreateMappingRuleData as mU, type CreateMappingRuleErrors as mV, type CreateMappingRuleError as mW, type CreateMappingRuleResponses as mX, type CreateMappingRuleResponse as mY, type SearchMappingRuleData as mZ, type SearchMappingRuleErrors as m_, type GetProcessInstanceStatisticsByDefinitionResponse as ma, type GetProcessInstanceStatisticsByErrorData as mb, type GetProcessInstanceStatisticsByErrorErrors as mc, type GetProcessInstanceStatisticsByErrorError as md, type GetProcessInstanceStatisticsByErrorResponses as me, type GetProcessInstanceStatisticsByErrorResponse as mf, type ActivateJobsData as mg, type ActivateJobsErrors as mh, type ActivateJobsError as mi, type ActivateJobsResponses as mj, type ActivateJobsResponse as mk, type SearchJobsData as ml, type SearchJobsErrors as mm, type SearchJobsError as mn, type SearchJobsResponses as mo, type SearchJobsResponse as mp, type UpdateJobData as mq, type UpdateJobErrors as mr, type UpdateJobError as ms, type UpdateJobResponses as mt, type UpdateJobResponse as mu, type CompleteJobData as mv, type CompleteJobErrors as mw, type CompleteJobError as mx, type CompleteJobResponses as my, type CompleteJobResponse as mz, type CamundaKey as n, type GetProcessDefinitionXmlErrors as n$, type SearchMappingRuleResponses as n0, type SearchMappingRuleResponse as n1, type DeleteMappingRuleData as n2, type DeleteMappingRuleErrors as n3, type DeleteMappingRuleError as n4, type DeleteMappingRuleResponses as n5, type DeleteMappingRuleResponse as n6, type GetMappingRuleData as n7, type GetMappingRuleErrors as n8, type GetMappingRuleError as n9, type SearchProcessDefinitionsResponse as nA, type GetProcessDefinitionMessageSubscriptionStatisticsData as nB, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as nC, type GetProcessDefinitionMessageSubscriptionStatisticsError as nD, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as nE, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as nF, type GetProcessDefinitionInstanceStatisticsData as nG, type GetProcessDefinitionInstanceStatisticsErrors as nH, type GetProcessDefinitionInstanceStatisticsError as nI, type GetProcessDefinitionInstanceStatisticsResponses as nJ, type GetProcessDefinitionInstanceStatisticsResponse as nK, type GetProcessDefinitionData as nL, type GetProcessDefinitionErrors as nM, type GetProcessDefinitionError as nN, type GetProcessDefinitionResponses as nO, type GetProcessDefinitionResponse as nP, type GetStartProcessFormData as nQ, type GetStartProcessFormErrors as nR, type GetStartProcessFormError as nS, type GetStartProcessFormResponses as nT, type GetStartProcessFormResponse as nU, type GetProcessDefinitionStatisticsData as nV, type GetProcessDefinitionStatisticsErrors as nW, type GetProcessDefinitionStatisticsError as nX, type GetProcessDefinitionStatisticsResponses as nY, type GetProcessDefinitionStatisticsResponse as nZ, type GetProcessDefinitionXmlData as n_, type GetMappingRuleResponses as na, type GetMappingRuleResponse as nb, type UpdateMappingRuleData as nc, type UpdateMappingRuleErrors as nd, type UpdateMappingRuleError as ne, type UpdateMappingRuleResponses as nf, type UpdateMappingRuleResponse as ng, type SearchMessageSubscriptionsData as nh, type SearchMessageSubscriptionsErrors as ni, type SearchMessageSubscriptionsError as nj, type SearchMessageSubscriptionsResponses as nk, type SearchMessageSubscriptionsResponse as nl, type CorrelateMessageData as nm, type CorrelateMessageErrors as nn, type CorrelateMessageError as no, type CorrelateMessageResponses as np, type CorrelateMessageResponse as nq, type PublishMessageData as nr, type PublishMessageErrors as ns, type PublishMessageError as nt, type PublishMessageResponses as nu, type PublishMessageResponse as nv, type SearchProcessDefinitionsData as nw, type SearchProcessDefinitionsErrors as nx, type SearchProcessDefinitionsError as ny, type SearchProcessDefinitionsResponses as nz, type ClientOptions as o, type ResolveProcessInstanceIncidentsData as o$, type GetProcessDefinitionXmlError as o0, type GetProcessDefinitionXmlResponses as o1, type GetProcessDefinitionXmlResponse as o2, type GetProcessDefinitionInstanceVersionStatisticsData as o3, type GetProcessDefinitionInstanceVersionStatisticsErrors as o4, type GetProcessDefinitionInstanceVersionStatisticsError as o5, type GetProcessDefinitionInstanceVersionStatisticsResponses as o6, type GetProcessDefinitionInstanceVersionStatisticsResponse as o7, type CreateProcessInstanceData as o8, type CreateProcessInstanceErrors as o9, type ModifyProcessInstancesBatchOperationResponses as oA, type ModifyProcessInstancesBatchOperationResponse as oB, type SearchProcessInstancesData as oC, type SearchProcessInstancesErrors as oD, type SearchProcessInstancesError as oE, type SearchProcessInstancesResponses as oF, type SearchProcessInstancesResponse as oG, type GetProcessInstanceData as oH, type GetProcessInstanceErrors as oI, type GetProcessInstanceError as oJ, type GetProcessInstanceResponses as oK, type GetProcessInstanceResponse as oL, type GetProcessInstanceCallHierarchyData as oM, type GetProcessInstanceCallHierarchyErrors as oN, type GetProcessInstanceCallHierarchyError as oO, type GetProcessInstanceCallHierarchyResponses as oP, type GetProcessInstanceCallHierarchyResponse as oQ, type CancelProcessInstanceData as oR, type CancelProcessInstanceErrors as oS, type CancelProcessInstanceError as oT, type CancelProcessInstanceResponses as oU, type CancelProcessInstanceResponse as oV, type DeleteProcessInstanceData as oW, type DeleteProcessInstanceErrors as oX, type DeleteProcessInstanceError as oY, type DeleteProcessInstanceResponses as oZ, type DeleteProcessInstanceResponse as o_, type CreateProcessInstanceError as oa, type CreateProcessInstanceResponses as ob, type CreateProcessInstanceResponse as oc, type CancelProcessInstancesBatchOperationData as od, type CancelProcessInstancesBatchOperationErrors as oe, type CancelProcessInstancesBatchOperationError as of, type CancelProcessInstancesBatchOperationResponses as og, type CancelProcessInstancesBatchOperationResponse as oh, type DeleteProcessInstancesBatchOperationData as oi, type DeleteProcessInstancesBatchOperationErrors as oj, type DeleteProcessInstancesBatchOperationError as ok, type DeleteProcessInstancesBatchOperationResponses as ol, type DeleteProcessInstancesBatchOperationResponse as om, type ResolveIncidentsBatchOperationData as on, type ResolveIncidentsBatchOperationErrors as oo, type ResolveIncidentsBatchOperationError as op, type ResolveIncidentsBatchOperationResponses as oq, type ResolveIncidentsBatchOperationResponse as or, type MigrateProcessInstancesBatchOperationData as os, type MigrateProcessInstancesBatchOperationErrors as ot, type MigrateProcessInstancesBatchOperationError as ou, type MigrateProcessInstancesBatchOperationResponses as ov, type MigrateProcessInstancesBatchOperationResponse as ow, type ModifyProcessInstancesBatchOperationData as ox, type ModifyProcessInstancesBatchOperationErrors as oy, type ModifyProcessInstancesBatchOperationError as oz, type AuditLogSearchQuerySortRequest as p, type GetRoleResponse as p$, type ResolveProcessInstanceIncidentsErrors as p0, type ResolveProcessInstanceIncidentsError as p1, type ResolveProcessInstanceIncidentsResponses as p2, type ResolveProcessInstanceIncidentsResponse as p3, type SearchProcessInstanceIncidentsData as p4, type SearchProcessInstanceIncidentsErrors as p5, type SearchProcessInstanceIncidentsError as p6, type SearchProcessInstanceIncidentsResponses as p7, type SearchProcessInstanceIncidentsResponse as p8, type MigrateProcessInstanceData as p9, type GetResourceContentError as pA, type GetResourceContentResponses as pB, type GetResourceContentResponse as pC, type DeleteResourceData as pD, type DeleteResourceErrors as pE, type DeleteResourceError as pF, type DeleteResourceResponses as pG, type DeleteResourceResponse2 as pH, type CreateRoleData as pI, type CreateRoleErrors as pJ, type CreateRoleError as pK, type CreateRoleResponses as pL, type CreateRoleResponse as pM, type SearchRolesData as pN, type SearchRolesErrors as pO, type SearchRolesError as pP, type SearchRolesResponses as pQ, type SearchRolesResponse as pR, type DeleteRoleData as pS, type DeleteRoleErrors as pT, type DeleteRoleError as pU, type DeleteRoleResponses as pV, type DeleteRoleResponse as pW, type GetRoleData as pX, type GetRoleErrors as pY, type GetRoleError as pZ, type GetRoleResponses as p_, type MigrateProcessInstanceErrors as pa, type MigrateProcessInstanceError as pb, type MigrateProcessInstanceResponses as pc, type MigrateProcessInstanceResponse as pd, type ModifyProcessInstanceData as pe, type ModifyProcessInstanceErrors as pf, type ModifyProcessInstanceError as pg, type ModifyProcessInstanceResponses as ph, type ModifyProcessInstanceResponse as pi, type GetProcessInstanceSequenceFlowsData as pj, type GetProcessInstanceSequenceFlowsErrors as pk, type GetProcessInstanceSequenceFlowsError as pl, type GetProcessInstanceSequenceFlowsResponses as pm, type GetProcessInstanceSequenceFlowsResponse as pn, type GetProcessInstanceStatisticsData as po, type GetProcessInstanceStatisticsErrors as pp, type GetProcessInstanceStatisticsError as pq, type GetProcessInstanceStatisticsResponses as pr, type GetProcessInstanceStatisticsResponse as ps, type GetResourceData as pt, type GetResourceErrors as pu, type GetResourceError as pv, type GetResourceResponses as pw, type GetResourceResponse as px, type GetResourceContentData as py, type GetResourceContentErrors as pz, type AuditLogSearchQueryRequest as q, type AssignRoleToUserResponses as q$, type UpdateRoleData as q0, type UpdateRoleErrors as q1, type UpdateRoleError as q2, type UpdateRoleResponses as q3, type UpdateRoleResponse as q4, type SearchClientsForRoleData as q5, type SearchClientsForRoleErrors as q6, type SearchClientsForRoleError as q7, type SearchClientsForRoleResponses as q8, type SearchClientsForRoleResponse as q9, type SearchMappingRulesForRoleErrors as qA, type SearchMappingRulesForRoleError as qB, type SearchMappingRulesForRoleResponses as qC, type SearchMappingRulesForRoleResponse as qD, type UnassignRoleFromMappingRuleData as qE, type UnassignRoleFromMappingRuleErrors as qF, type UnassignRoleFromMappingRuleError as qG, type UnassignRoleFromMappingRuleResponses as qH, type UnassignRoleFromMappingRuleResponse as qI, type AssignRoleToMappingRuleData as qJ, type AssignRoleToMappingRuleErrors as qK, type AssignRoleToMappingRuleError as qL, type AssignRoleToMappingRuleResponses as qM, type AssignRoleToMappingRuleResponse as qN, type SearchUsersForRoleData as qO, type SearchUsersForRoleErrors as qP, type SearchUsersForRoleError as qQ, type SearchUsersForRoleResponses as qR, type SearchUsersForRoleResponse as qS, type UnassignRoleFromUserData as qT, type UnassignRoleFromUserErrors as qU, type UnassignRoleFromUserError as qV, type UnassignRoleFromUserResponses as qW, type UnassignRoleFromUserResponse as qX, type AssignRoleToUserData as qY, type AssignRoleToUserErrors as qZ, type AssignRoleToUserError as q_, type UnassignRoleFromClientData as qa, type UnassignRoleFromClientErrors as qb, type UnassignRoleFromClientError as qc, type UnassignRoleFromClientResponses as qd, type UnassignRoleFromClientResponse as qe, type AssignRoleToClientData as qf, type AssignRoleToClientErrors as qg, type AssignRoleToClientError as qh, type AssignRoleToClientResponses as qi, type AssignRoleToClientResponse as qj, type SearchGroupsForRoleData as qk, type SearchGroupsForRoleErrors as ql, type SearchGroupsForRoleError as qm, type SearchGroupsForRoleResponses as qn, type SearchGroupsForRoleResponse as qo, type UnassignRoleFromGroupData as qp, type UnassignRoleFromGroupErrors as qq, type UnassignRoleFromGroupError as qr, type UnassignRoleFromGroupResponses as qs, type UnassignRoleFromGroupResponse as qt, type AssignRoleToGroupData as qu, type AssignRoleToGroupErrors as qv, type AssignRoleToGroupError as qw, type AssignRoleToGroupResponses as qx, type AssignRoleToGroupResponse as qy, type SearchMappingRulesForRoleData as qz, type AuditLogFilter as r, type UnassignGroupFromTenantResponses as r$, type AssignRoleToUserResponse as r0, type CreateAdminUserData as r1, type CreateAdminUserErrors as r2, type CreateAdminUserError as r3, type CreateAdminUserResponses as r4, type BroadcastSignalData as r5, type BroadcastSignalErrors as r6, type BroadcastSignalError as r7, type BroadcastSignalResponses as r8, type BroadcastSignalResponse as r9, type GetTenantError as rA, type GetTenantResponses as rB, type GetTenantResponse as rC, type UpdateTenantData as rD, type UpdateTenantErrors as rE, type UpdateTenantError as rF, type UpdateTenantResponses as rG, type UpdateTenantResponse as rH, type SearchClientsForTenantData as rI, type SearchClientsForTenantResponses as rJ, type SearchClientsForTenantResponse as rK, type UnassignClientFromTenantData as rL, type UnassignClientFromTenantErrors as rM, type UnassignClientFromTenantError as rN, type UnassignClientFromTenantResponses as rO, type UnassignClientFromTenantResponse as rP, type AssignClientToTenantData as rQ, type AssignClientToTenantErrors as rR, type AssignClientToTenantError as rS, type AssignClientToTenantResponses as rT, type AssignClientToTenantResponse as rU, type SearchGroupIdsForTenantData as rV, type SearchGroupIdsForTenantResponses as rW, type SearchGroupIdsForTenantResponse as rX, type UnassignGroupFromTenantData as rY, type UnassignGroupFromTenantErrors as rZ, type UnassignGroupFromTenantError as r_, type GetStatusData as ra, type GetStatusErrors as rb, type GetStatusResponses as rc, type GetStatusResponse as rd, type GetUsageMetricsData as re, type GetUsageMetricsErrors as rf, type GetUsageMetricsError as rg, type GetUsageMetricsResponses as rh, type GetUsageMetricsResponse as ri, type CreateTenantData as rj, type CreateTenantErrors as rk, type CreateTenantError as rl, type CreateTenantResponses as rm, type CreateTenantResponse as rn, type SearchTenantsData as ro, type SearchTenantsErrors as rp, type SearchTenantsError as rq, type SearchTenantsResponses as rr, type SearchTenantsResponse as rs, type DeleteTenantData as rt, type DeleteTenantErrors as ru, type DeleteTenantError as rv, type DeleteTenantResponses as rw, type DeleteTenantResponse as rx, type GetTenantData as ry, type GetTenantErrors as rz, type AuditLogSearchQueryResult as s, type DeleteUserResponses as s$, type UnassignGroupFromTenantResponse as s0, type AssignGroupToTenantData as s1, type AssignGroupToTenantErrors as s2, type AssignGroupToTenantError as s3, type AssignGroupToTenantResponses as s4, type AssignGroupToTenantResponse as s5, type SearchMappingRulesForTenantData as s6, type SearchMappingRulesForTenantResponses as s7, type SearchMappingRulesForTenantResponse as s8, type UnassignMappingRuleFromTenantData as s9, type UnassignUserFromTenantErrors as sA, type UnassignUserFromTenantError as sB, type UnassignUserFromTenantResponses as sC, type UnassignUserFromTenantResponse as sD, type AssignUserToTenantData as sE, type AssignUserToTenantErrors as sF, type AssignUserToTenantError as sG, type AssignUserToTenantResponses as sH, type AssignUserToTenantResponse as sI, type GetTopologyData as sJ, type GetTopologyErrors as sK, type GetTopologyError as sL, type GetTopologyResponses as sM, type GetTopologyResponse as sN, type CreateUserData as sO, type CreateUserErrors as sP, type CreateUserError as sQ, type CreateUserResponses as sR, type CreateUserResponse as sS, type SearchUsersData as sT, type SearchUsersErrors as sU, type SearchUsersError as sV, type SearchUsersResponses as sW, type SearchUsersResponse as sX, type DeleteUserData as sY, type DeleteUserErrors as sZ, type DeleteUserError as s_, type UnassignMappingRuleFromTenantErrors as sa, type UnassignMappingRuleFromTenantError as sb, type UnassignMappingRuleFromTenantResponses as sc, type UnassignMappingRuleFromTenantResponse as sd, type AssignMappingRuleToTenantData as se, type AssignMappingRuleToTenantErrors as sf, type AssignMappingRuleToTenantError as sg, type AssignMappingRuleToTenantResponses as sh, type AssignMappingRuleToTenantResponse as si, type SearchRolesForTenantData as sj, type SearchRolesForTenantResponses as sk, type SearchRolesForTenantResponse as sl, type UnassignRoleFromTenantData as sm, type UnassignRoleFromTenantErrors as sn, type UnassignRoleFromTenantError as so, type UnassignRoleFromTenantResponses as sp, type UnassignRoleFromTenantResponse as sq, type AssignRoleToTenantData as sr, type AssignRoleToTenantErrors as ss, type AssignRoleToTenantError as st, type AssignRoleToTenantResponses as su, type AssignRoleToTenantResponse as sv, type SearchUsersForTenantData as sw, type SearchUsersForTenantResponses as sx, type SearchUsersForTenantResponse as sy, type UnassignUserFromTenantData as sz, AuditLogEntityKey as t, type GetVariableError as t$, type DeleteUserResponse as t0, type GetUserData as t1, type GetUserErrors as t2, type GetUserError as t3, type GetUserResponses as t4, type GetUserResponse as t5, type UpdateUserData as t6, type UpdateUserErrors as t7, type UpdateUserError as t8, type UpdateUserResponses as t9, type SearchUserTaskAuditLogsData as tA, type SearchUserTaskAuditLogsErrors as tB, type SearchUserTaskAuditLogsError as tC, type SearchUserTaskAuditLogsResponses as tD, type SearchUserTaskAuditLogsResponse as tE, type CompleteUserTaskData as tF, type CompleteUserTaskErrors as tG, type CompleteUserTaskError as tH, type CompleteUserTaskResponses as tI, type CompleteUserTaskResponse as tJ, type GetUserTaskFormData as tK, type GetUserTaskFormErrors as tL, type GetUserTaskFormError as tM, type GetUserTaskFormResponses as tN, type GetUserTaskFormResponse as tO, type SearchUserTaskVariablesData as tP, type SearchUserTaskVariablesErrors as tQ, type SearchUserTaskVariablesError as tR, type SearchUserTaskVariablesResponses as tS, type SearchUserTaskVariablesResponse as tT, type SearchVariablesData as tU, type SearchVariablesErrors as tV, type SearchVariablesError as tW, type SearchVariablesResponses as tX, type SearchVariablesResponse as tY, type GetVariableData as tZ, type GetVariableErrors as t_, type UpdateUserResponse as ta, type SearchUserTasksData as tb, type SearchUserTasksErrors as tc, type SearchUserTasksError as td, type SearchUserTasksResponses as te, type SearchUserTasksResponse as tf, type GetUserTaskData as tg, type GetUserTaskErrors as th, type GetUserTaskError as ti, type GetUserTaskResponses as tj, type GetUserTaskResponse as tk, type UpdateUserTaskData as tl, type UpdateUserTaskErrors as tm, type UpdateUserTaskError as tn, type UpdateUserTaskResponses as to, type UpdateUserTaskResponse as tp, type UnassignUserTaskData as tq, type UnassignUserTaskErrors as tr, type UnassignUserTaskError as ts, type UnassignUserTaskResponses as tt, type UnassignUserTaskResponse as tu, type AssignUserTaskData as tv, type AssignUserTaskErrors as tw, type AssignUserTaskError as tx, type AssignUserTaskResponses as ty, type AssignUserTaskResponse as tz, type AuditLogEntityTypeEnum as u, type GetVariableResponses as u0, type GetVariableResponse as u1, assertConstraint as u2, type Fpify as u3, type DomainError as u4, type Left as u5, type Right as u6, retryTE as u7, withTimeoutTE as u8, eventuallyTE as u9, foldDomainError as ua, classifyDomainError as ub, type TaskEither as uc, type AuditLogOperationTypeEnum as v, type AuditLogActorTypeEnum as w, type AuditLogResultEnum as x, type AuditLogCategoryEnum as y, type AuditLogEntityKeyFilterProperty as z };
|