@camunda8/orchestration-cluster-api 10.0.0-alpha.2 → 10.0.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 +8 -0
- package/dist/{chunk-MPDW3NIE.js → chunk-JP44BUAM.js} +15 -7
- package/dist/chunk-JP44BUAM.js.map +1 -0
- package/dist/fp/index.cjs +167 -49
- 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-NxMS1fuh.d.ts → index-CtFmBFXM.d.ts} +253 -19
- package/dist/{index-DCO1POBR.d.cts → index-CvA10E3U.d.cts} +253 -19
- package/dist/index.cjs +177 -52
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +10 -4
- package/dist/index.js.map +1 -1
- package/dist/{zod.gen-J3DNBFMQ.js → zod.gen-WZT74U4Q.js} +154 -44
- package/dist/zod.gen-WZT74U4Q.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-MPDW3NIE.js.map +0 -1
- package/dist/zod.gen-J3DNBFMQ.js.map +0 -1
|
@@ -1703,9 +1703,12 @@ type BatchOperationItemResponse = {
|
|
|
1703
1703
|
*/
|
|
1704
1704
|
itemKey: string;
|
|
1705
1705
|
/**
|
|
1706
|
-
*
|
|
1706
|
+
* The process instance key of the processed item. Null for batch-op types whose targets
|
|
1707
|
+
* are not process instances (e.g. DELETE_DECISION_INSTANCE, DELETE_DECISION_DEFINITION,
|
|
1708
|
+
* DELETE_PROCESS_DEFINITION).
|
|
1709
|
+
*
|
|
1707
1710
|
*/
|
|
1708
|
-
processInstanceKey: ProcessInstanceKey;
|
|
1711
|
+
processInstanceKey: ProcessInstanceKey | null;
|
|
1709
1712
|
/**
|
|
1710
1713
|
* The key of the root process instance. The root process instance is the top-level
|
|
1711
1714
|
* ancestor in the process instance hierarchy. This field is only present for data
|
|
@@ -3297,12 +3300,12 @@ type ElementInstanceFilter = {
|
|
|
3297
3300
|
/**
|
|
3298
3301
|
* The element ID for this element instance.
|
|
3299
3302
|
*/
|
|
3300
|
-
elementId?:
|
|
3303
|
+
elementId?: ElementIdFilterProperty;
|
|
3301
3304
|
/**
|
|
3302
3305
|
* The element 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.
|
|
3303
3306
|
*
|
|
3304
3307
|
*/
|
|
3305
|
-
elementName?:
|
|
3308
|
+
elementName?: StringFilterProperty;
|
|
3306
3309
|
/**
|
|
3307
3310
|
* Shows whether this element instance has an incident related to.
|
|
3308
3311
|
*/
|
|
@@ -4012,6 +4015,70 @@ type GroupClientSearchQuerySortRequest = {
|
|
|
4012
4015
|
type TagSet = Array<Tag> & {
|
|
4013
4016
|
readonly length: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
4014
4017
|
};
|
|
4018
|
+
/**
|
|
4019
|
+
* ElementId property with full advanced search capabilities.
|
|
4020
|
+
*/
|
|
4021
|
+
type ElementIdFilterProperty = ElementIdExactMatch | AdvancedElementIdFilter;
|
|
4022
|
+
/**
|
|
4023
|
+
* Advanced filter
|
|
4024
|
+
*
|
|
4025
|
+
* Advanced ElementId filter.
|
|
4026
|
+
*/
|
|
4027
|
+
type AdvancedElementIdFilter = {
|
|
4028
|
+
/**
|
|
4029
|
+
* Checks for equality with the provided value.
|
|
4030
|
+
*/
|
|
4031
|
+
$eq?: ElementId;
|
|
4032
|
+
/**
|
|
4033
|
+
* Checks for inequality with the provided value.
|
|
4034
|
+
*/
|
|
4035
|
+
$neq?: ElementId;
|
|
4036
|
+
/**
|
|
4037
|
+
* Checks if the current property exists.
|
|
4038
|
+
*/
|
|
4039
|
+
$exists?: boolean;
|
|
4040
|
+
/**
|
|
4041
|
+
* Checks if the property matches any of the provided values.
|
|
4042
|
+
*/
|
|
4043
|
+
$in?: Array<ElementId>;
|
|
4044
|
+
/**
|
|
4045
|
+
* Checks if the property matches none of the provided values.
|
|
4046
|
+
*/
|
|
4047
|
+
$notIn?: Array<ElementId>;
|
|
4048
|
+
$like?: LikeFilter;
|
|
4049
|
+
};
|
|
4050
|
+
/**
|
|
4051
|
+
* ProcessDefinitionId property with full advanced search capabilities.
|
|
4052
|
+
*/
|
|
4053
|
+
type ProcessDefinitionIdFilterProperty = ProcessDefinitionIdExactMatch | AdvancedProcessDefinitionIdFilter;
|
|
4054
|
+
/**
|
|
4055
|
+
* Advanced filter
|
|
4056
|
+
*
|
|
4057
|
+
* Advanced ProcessDefinitionId filter.
|
|
4058
|
+
*/
|
|
4059
|
+
type AdvancedProcessDefinitionIdFilter = {
|
|
4060
|
+
/**
|
|
4061
|
+
* Checks for equality with the provided value.
|
|
4062
|
+
*/
|
|
4063
|
+
$eq?: ProcessDefinitionId;
|
|
4064
|
+
/**
|
|
4065
|
+
* Checks for inequality with the provided value.
|
|
4066
|
+
*/
|
|
4067
|
+
$neq?: ProcessDefinitionId;
|
|
4068
|
+
/**
|
|
4069
|
+
* Checks if the current property exists.
|
|
4070
|
+
*/
|
|
4071
|
+
$exists?: boolean;
|
|
4072
|
+
/**
|
|
4073
|
+
* Checks if the property matches any of the provided values.
|
|
4074
|
+
*/
|
|
4075
|
+
$in?: Array<ProcessDefinitionId>;
|
|
4076
|
+
/**
|
|
4077
|
+
* Checks if the property matches none of the provided values.
|
|
4078
|
+
*/
|
|
4079
|
+
$notIn?: Array<ProcessDefinitionId>;
|
|
4080
|
+
$like?: LikeFilter;
|
|
4081
|
+
};
|
|
4015
4082
|
type IncidentSearchQuery = SearchQueryRequest & {
|
|
4016
4083
|
/**
|
|
4017
4084
|
* Sort field criteria.
|
|
@@ -5193,6 +5260,7 @@ type JobKindEnum = (typeof JobKindEnum)[keyof typeof JobKindEnum];
|
|
|
5193
5260
|
*/
|
|
5194
5261
|
declare const JobListenerEventTypeEnum: {
|
|
5195
5262
|
readonly ASSIGNING: "ASSIGNING";
|
|
5263
|
+
readonly BEFORE_ALL: "BEFORE_ALL";
|
|
5196
5264
|
readonly CANCELING: "CANCELING";
|
|
5197
5265
|
readonly COMPLETING: "COMPLETING";
|
|
5198
5266
|
readonly CREATING: "CREATING";
|
|
@@ -5904,6 +5972,8 @@ type MessageSubscriptionResult = {
|
|
|
5904
5972
|
processDefinitionKey: ProcessDefinitionKey | null;
|
|
5905
5973
|
/**
|
|
5906
5974
|
* The process instance key associated with this message subscription.
|
|
5975
|
+
* Only populated for intermediate event entities.
|
|
5976
|
+
*
|
|
5907
5977
|
*/
|
|
5908
5978
|
processInstanceKey: ProcessInstanceKey | null;
|
|
5909
5979
|
/**
|
|
@@ -5919,6 +5989,8 @@ type MessageSubscriptionResult = {
|
|
|
5919
5989
|
elementId: ElementId;
|
|
5920
5990
|
/**
|
|
5921
5991
|
* The element instance key associated with this message subscription.
|
|
5992
|
+
* Only populated for intermediate event entities.
|
|
5993
|
+
*
|
|
5922
5994
|
*/
|
|
5923
5995
|
elementInstanceKey: ElementInstanceKey | null;
|
|
5924
5996
|
messageSubscriptionState: MessageSubscriptionStateEnum;
|
|
@@ -5934,13 +6006,42 @@ type MessageSubscriptionResult = {
|
|
|
5934
6006
|
* The correlation key of the message subscription.
|
|
5935
6007
|
*/
|
|
5936
6008
|
correlationKey: string | null;
|
|
6009
|
+
messageSubscriptionType: MessageSubscriptionTypeEnum;
|
|
6010
|
+
/**
|
|
6011
|
+
* The `zeebe:properties` extension properties extracted from the BPMN element associated
|
|
6012
|
+
* with this subscription. Empty object when no properties are defined.
|
|
6013
|
+
*
|
|
6014
|
+
*/
|
|
6015
|
+
extensionProperties: {
|
|
6016
|
+
[key: string]: string;
|
|
6017
|
+
};
|
|
6018
|
+
/**
|
|
6019
|
+
* The name of the process definition associated with this message subscription.
|
|
6020
|
+
*/
|
|
6021
|
+
processDefinitionName: string | null;
|
|
6022
|
+
/**
|
|
6023
|
+
* The version of the process definition associated with this message subscription.
|
|
6024
|
+
*/
|
|
6025
|
+
processDefinitionVersion: number | null;
|
|
6026
|
+
/**
|
|
6027
|
+
* Tool name extracted from the `io.camunda.tool:name` zeebe:property.
|
|
6028
|
+
* Null when the property is absent.
|
|
6029
|
+
*
|
|
6030
|
+
*/
|
|
6031
|
+
toolName: string | null;
|
|
6032
|
+
/**
|
|
6033
|
+
* Inbound connector type extracted from the `inbound.type` zeebe:property.
|
|
6034
|
+
* Null when the property is absent.
|
|
6035
|
+
*
|
|
6036
|
+
*/
|
|
6037
|
+
inboundConnectorType: string | null;
|
|
5937
6038
|
tenantId: TenantId;
|
|
5938
6039
|
};
|
|
5939
6040
|
type MessageSubscriptionSearchQuerySortRequest = {
|
|
5940
6041
|
/**
|
|
5941
6042
|
* The field to sort by.
|
|
5942
6043
|
*/
|
|
5943
|
-
field: 'messageSubscriptionKey' | 'processDefinitionId' | 'processInstanceKey' | 'elementId' | 'elementInstanceKey' | 'messageSubscriptionState' | 'lastUpdatedDate' | 'messageName' | 'correlationKey' | 'tenantId';
|
|
6044
|
+
field: 'messageSubscriptionKey' | 'processDefinitionId' | 'processDefinitionName' | 'processDefinitionVersion' | 'processInstanceKey' | 'elementId' | 'elementInstanceKey' | 'messageSubscriptionState' | 'messageSubscriptionType' | 'lastUpdatedDate' | 'messageName' | 'correlationKey' | 'tenantId' | 'toolName' | 'inboundConnectorType';
|
|
5944
6045
|
order?: SortOrderEnum;
|
|
5945
6046
|
};
|
|
5946
6047
|
type MessageSubscriptionSearchQuery = SearchQueryRequest & {
|
|
@@ -6001,6 +6102,29 @@ type MessageSubscriptionFilter = {
|
|
|
6001
6102
|
* The unique external tenant ID.
|
|
6002
6103
|
*/
|
|
6003
6104
|
tenantId?: StringFilterProperty;
|
|
6105
|
+
/**
|
|
6106
|
+
* The type of message subscription to filter by. When omitted, both
|
|
6107
|
+
* `START_EVENT` and `PROCESS_EVENT` are returned. Only available for data
|
|
6108
|
+
* created with Camunda 8.10 or later.
|
|
6109
|
+
*
|
|
6110
|
+
*/
|
|
6111
|
+
messageSubscriptionType?: MessageSubscriptionTypeFilterProperty;
|
|
6112
|
+
/**
|
|
6113
|
+
* The name of the process definition associated with this message subscription.
|
|
6114
|
+
*/
|
|
6115
|
+
processDefinitionName?: StringFilterProperty;
|
|
6116
|
+
/**
|
|
6117
|
+
* The version of the process definition associated with this message subscription.
|
|
6118
|
+
*/
|
|
6119
|
+
processDefinitionVersion?: IntegerFilterProperty;
|
|
6120
|
+
/**
|
|
6121
|
+
* Filter by tool name extracted from the `io.camunda.tool:name` zeebe:property.
|
|
6122
|
+
*/
|
|
6123
|
+
toolName?: StringFilterProperty;
|
|
6124
|
+
/**
|
|
6125
|
+
* Filter by inbound connector type extracted from the `inbound.type` zeebe:property.
|
|
6126
|
+
*/
|
|
6127
|
+
inboundConnectorType?: StringFilterProperty;
|
|
6004
6128
|
};
|
|
6005
6129
|
type CorrelatedMessageSubscriptionSearchQueryResult = SearchQueryResponse & {
|
|
6006
6130
|
/**
|
|
@@ -6094,6 +6218,19 @@ declare const MessageSubscriptionStateEnum: {
|
|
|
6094
6218
|
readonly MIGRATED: "MIGRATED";
|
|
6095
6219
|
};
|
|
6096
6220
|
type MessageSubscriptionStateEnum = (typeof MessageSubscriptionStateEnum)[keyof typeof MessageSubscriptionStateEnum];
|
|
6221
|
+
/**
|
|
6222
|
+
* The type of message subscription.
|
|
6223
|
+
* `START_EVENT` is definition-scoped (process start events). Always has a value; only
|
|
6224
|
+
* captured from Camunda 8.10 onwards.
|
|
6225
|
+
* `PROCESS_EVENT` is instance-scoped (intermediate catch events). Pre-8.10 entries have
|
|
6226
|
+
* no value stored; the API returns `PROCESS_EVENT` as a default for those entries.
|
|
6227
|
+
*
|
|
6228
|
+
*/
|
|
6229
|
+
declare const MessageSubscriptionTypeEnum: {
|
|
6230
|
+
readonly START_EVENT: "START_EVENT";
|
|
6231
|
+
readonly PROCESS_EVENT: "PROCESS_EVENT";
|
|
6232
|
+
};
|
|
6233
|
+
type MessageSubscriptionTypeEnum = (typeof MessageSubscriptionTypeEnum)[keyof typeof MessageSubscriptionTypeEnum];
|
|
6097
6234
|
/**
|
|
6098
6235
|
* Correlated message subscriptions search filter.
|
|
6099
6236
|
*/
|
|
@@ -6147,6 +6284,34 @@ type CorrelatedMessageSubscriptionFilter = {
|
|
|
6147
6284
|
*/
|
|
6148
6285
|
tenantId?: StringFilterProperty;
|
|
6149
6286
|
};
|
|
6287
|
+
/**
|
|
6288
|
+
* MessageSubscriptionTypeEnum with full advanced search capabilities.
|
|
6289
|
+
*/
|
|
6290
|
+
type MessageSubscriptionTypeFilterProperty = MessageSubscriptionTypeExactMatch | AdvancedMessageSubscriptionTypeFilter;
|
|
6291
|
+
/**
|
|
6292
|
+
* Advanced filter
|
|
6293
|
+
*
|
|
6294
|
+
* Advanced MessageSubscriptionTypeEnum filter
|
|
6295
|
+
*/
|
|
6296
|
+
type AdvancedMessageSubscriptionTypeFilter = {
|
|
6297
|
+
/**
|
|
6298
|
+
* Checks for equality with the provided value.
|
|
6299
|
+
*/
|
|
6300
|
+
$eq?: MessageSubscriptionTypeEnum;
|
|
6301
|
+
/**
|
|
6302
|
+
* Checks for inequality with the provided value.
|
|
6303
|
+
*/
|
|
6304
|
+
$neq?: MessageSubscriptionTypeEnum;
|
|
6305
|
+
/**
|
|
6306
|
+
* Checks if the current property exists.
|
|
6307
|
+
*/
|
|
6308
|
+
$exists?: boolean;
|
|
6309
|
+
/**
|
|
6310
|
+
* Checks if the property matches any of the provided values.
|
|
6311
|
+
*/
|
|
6312
|
+
$in?: Array<MessageSubscriptionTypeEnum>;
|
|
6313
|
+
$like?: LikeFilter;
|
|
6314
|
+
};
|
|
6150
6315
|
/**
|
|
6151
6316
|
* MessageSubscriptionStateEnum with full advanced search capabilities.
|
|
6152
6317
|
*/
|
|
@@ -7960,7 +8125,7 @@ type UserTaskFilter = {
|
|
|
7960
8125
|
/**
|
|
7961
8126
|
* The ID of the process definition.
|
|
7962
8127
|
*/
|
|
7963
|
-
processDefinitionId?:
|
|
8128
|
+
processDefinitionId?: ProcessDefinitionIdFilterProperty;
|
|
7964
8129
|
/**
|
|
7965
8130
|
* The user task creation date.
|
|
7966
8131
|
*/
|
|
@@ -7992,11 +8157,11 @@ type UserTaskFilter = {
|
|
|
7992
8157
|
/**
|
|
7993
8158
|
* The key of the process definition.
|
|
7994
8159
|
*/
|
|
7995
|
-
processDefinitionKey?:
|
|
8160
|
+
processDefinitionKey?: ProcessDefinitionKeyFilterProperty;
|
|
7996
8161
|
/**
|
|
7997
8162
|
* The key of the process instance.
|
|
7998
8163
|
*/
|
|
7999
|
-
processInstanceKey?:
|
|
8164
|
+
processInstanceKey?: ProcessInstanceKeyFilterProperty;
|
|
8000
8165
|
/**
|
|
8001
8166
|
* The key of the element instance.
|
|
8002
8167
|
*/
|
|
@@ -8684,6 +8849,18 @@ type GlobalListenerSourceExactMatch = GlobalListenerSourceEnum;
|
|
|
8684
8849
|
* Matches the value exactly.
|
|
8685
8850
|
*/
|
|
8686
8851
|
type GlobalTaskListenerEventTypeExactMatch = GlobalTaskListenerEventTypeEnum;
|
|
8852
|
+
/**
|
|
8853
|
+
* Exact match
|
|
8854
|
+
*
|
|
8855
|
+
* Matches the value exactly.
|
|
8856
|
+
*/
|
|
8857
|
+
type ElementIdExactMatch = ElementId;
|
|
8858
|
+
/**
|
|
8859
|
+
* Exact match
|
|
8860
|
+
*
|
|
8861
|
+
* Matches the value exactly.
|
|
8862
|
+
*/
|
|
8863
|
+
type ProcessDefinitionIdExactMatch = ProcessDefinitionId;
|
|
8687
8864
|
/**
|
|
8688
8865
|
* Exact match
|
|
8689
8866
|
*
|
|
@@ -8786,6 +8963,12 @@ type DecisionEvaluationKeyExactMatch = DecisionEvaluationKey;
|
|
|
8786
8963
|
* Matches the value exactly.
|
|
8787
8964
|
*/
|
|
8788
8965
|
type DecisionRequirementsKeyExactMatch = DecisionRequirementsKey;
|
|
8966
|
+
/**
|
|
8967
|
+
* Exact match
|
|
8968
|
+
*
|
|
8969
|
+
* Matches the value exactly.
|
|
8970
|
+
*/
|
|
8971
|
+
type MessageSubscriptionTypeExactMatch = MessageSubscriptionTypeEnum;
|
|
8789
8972
|
/**
|
|
8790
8973
|
* Exact match
|
|
8791
8974
|
*
|
|
@@ -9565,6 +9748,10 @@ type CreateTenantClusterVariableErrors = {
|
|
|
9565
9748
|
* Forbidden. The request is not allowed.
|
|
9566
9749
|
*/
|
|
9567
9750
|
403: ProblemDetail;
|
|
9751
|
+
/**
|
|
9752
|
+
* The tenant with the given ID was not found.
|
|
9753
|
+
*/
|
|
9754
|
+
404: ProblemDetail;
|
|
9568
9755
|
/**
|
|
9569
9756
|
* An internal error occurred while processing the request.
|
|
9570
9757
|
*/
|
|
@@ -13466,7 +13653,7 @@ type GetResourceContentResponses = {
|
|
|
13466
13653
|
/**
|
|
13467
13654
|
* The resource content is successfully returned.
|
|
13468
13655
|
*/
|
|
13469
|
-
200:
|
|
13656
|
+
200: Blob | File;
|
|
13470
13657
|
};
|
|
13471
13658
|
type GetResourceContentResponse = GetResourceContentResponses[keyof GetResourceContentResponses];
|
|
13472
13659
|
type DeleteResourceData = {
|
|
@@ -16127,7 +16314,10 @@ declare namespace DecisionDefinitionKey {
|
|
|
16127
16314
|
function isValid(value: string): boolean;
|
|
16128
16315
|
}
|
|
16129
16316
|
/**
|
|
16130
|
-
* System-generated
|
|
16317
|
+
* System-generated identifier for a decision evaluation instance. It is composed of the
|
|
16318
|
+
* parent decision evaluation key and the 1-based index of the evaluated decision within
|
|
16319
|
+
* that evaluation, joined by a hyphen (format: `<decisionEvaluationKey>-<index>`).
|
|
16320
|
+
*
|
|
16131
16321
|
*/
|
|
16132
16322
|
type DecisionEvaluationInstanceKey = CamundaKey<'DecisionEvaluationInstanceKey'>;
|
|
16133
16323
|
declare namespace DecisionEvaluationInstanceKey {
|
|
@@ -17037,6 +17227,19 @@ declare const updateMappingRule: <ThrowOnError extends boolean = true>(options:
|
|
|
17037
17227
|
* Search message subscriptions
|
|
17038
17228
|
*
|
|
17039
17229
|
* Search for message subscriptions based on given criteria.
|
|
17230
|
+
*
|
|
17231
|
+
* By default, both start and intermediate event subscriptions are returned. Use the
|
|
17232
|
+
* `messageSubscriptionType` filter to restrict results to a single type.
|
|
17233
|
+
*
|
|
17234
|
+
* **Version notes:**
|
|
17235
|
+
* - Start event subscriptions are only captured for deployments made with 8.10 or later.
|
|
17236
|
+
* - The `messageSubscriptionType` field is only populated for data created
|
|
17237
|
+
* with Camunda 8.10 or later. For pre-8.10 data, intermediate event entries have no
|
|
17238
|
+
* `messageSubscriptionType` value stored. For convenience, the API returns `PROCESS_EVENT`
|
|
17239
|
+
* as a default for such search results, though.
|
|
17240
|
+
* - Searching for intermediate event subscriptions **including legacy data** can be achieved
|
|
17241
|
+
* by filtering for `messageSubscriptionType` not matching `START_EVENT`.
|
|
17242
|
+
*
|
|
17040
17243
|
*/
|
|
17041
17244
|
declare const searchMessageSubscriptions: <ThrowOnError extends boolean = true>(options?: Options<SearchMessageSubscriptionsData, ThrowOnError>) => RequestResult<SearchMessageSubscriptionsResponses, SearchMessageSubscriptionsErrors, ThrowOnError, "fields">;
|
|
17042
17245
|
/**
|
|
@@ -19070,6 +19273,11 @@ type getResourcePathParam_resourceKey = (NonNullable<getResourceOptions> extends
|
|
|
19070
19273
|
type getResourceInput = {
|
|
19071
19274
|
resourceKey: getResourcePathParam_resourceKey;
|
|
19072
19275
|
};
|
|
19276
|
+
/** Management of eventual consistency **/
|
|
19277
|
+
type getResourceConsistency = {
|
|
19278
|
+
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
19279
|
+
consistency: ConsistencyOptions<_DataOf<typeof getResource>>;
|
|
19280
|
+
};
|
|
19073
19281
|
type getResourceContentOptions = Parameters<typeof getResourceContent>[0];
|
|
19074
19282
|
type getResourceContentPathParam_resourceKey = (NonNullable<getResourceContentOptions> extends {
|
|
19075
19283
|
path: {
|
|
@@ -19079,6 +19287,11 @@ type getResourceContentPathParam_resourceKey = (NonNullable<getResourceContentOp
|
|
|
19079
19287
|
type getResourceContentInput = {
|
|
19080
19288
|
resourceKey: getResourceContentPathParam_resourceKey;
|
|
19081
19289
|
};
|
|
19290
|
+
/** Management of eventual consistency **/
|
|
19291
|
+
type getResourceContentConsistency = {
|
|
19292
|
+
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
19293
|
+
consistency: ConsistencyOptions<_DataOf<typeof getResourceContent>>;
|
|
19294
|
+
};
|
|
19082
19295
|
type getRoleOptions = Parameters<typeof getRole>[0];
|
|
19083
19296
|
type getRolePathParam_roleId = (NonNullable<getRoleOptions> extends {
|
|
19084
19297
|
path: {
|
|
@@ -22549,17 +22762,21 @@ declare class CamundaClient {
|
|
|
22549
22762
|
* async function getResourceExample(resourceKey: ProcessDefinitionKey) {
|
|
22550
22763
|
* const camunda = createCamundaClient();
|
|
22551
22764
|
*
|
|
22552
|
-
* const resource = await camunda.getResource(
|
|
22553
|
-
*
|
|
22554
|
-
*
|
|
22765
|
+
* const resource = await camunda.getResource(
|
|
22766
|
+
* {
|
|
22767
|
+
* resourceKey,
|
|
22768
|
+
* },
|
|
22769
|
+
* { consistency: { waitUpToMs: 0 } }
|
|
22770
|
+
* );
|
|
22555
22771
|
*
|
|
22556
22772
|
* console.log(`Resource: ${resource.resourceName} (${resource.resourceId})`);
|
|
22557
22773
|
* }
|
|
22558
22774
|
* ```
|
|
22559
22775
|
* @operationId getResource
|
|
22560
22776
|
* @tags Resource
|
|
22777
|
+
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
22561
22778
|
*/
|
|
22562
|
-
getResource(input: getResourceInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof getResource>>;
|
|
22779
|
+
getResource(input: getResourceInput, /** Management of eventual consistency **/ consistencyManagement: getResourceConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof getResource>>;
|
|
22563
22780
|
/**
|
|
22564
22781
|
* Get resource content
|
|
22565
22782
|
*
|
|
@@ -22574,17 +22791,21 @@ declare class CamundaClient {
|
|
|
22574
22791
|
* async function getResourceContentExample(resourceKey: ProcessDefinitionKey) {
|
|
22575
22792
|
* const camunda = createCamundaClient();
|
|
22576
22793
|
*
|
|
22577
|
-
* const content = await camunda.getResourceContent(
|
|
22578
|
-
*
|
|
22579
|
-
*
|
|
22794
|
+
* const content = await camunda.getResourceContent(
|
|
22795
|
+
* {
|
|
22796
|
+
* resourceKey,
|
|
22797
|
+
* },
|
|
22798
|
+
* { consistency: { waitUpToMs: 0 } }
|
|
22799
|
+
* );
|
|
22580
22800
|
*
|
|
22581
22801
|
* console.log(`Content retrieved (type: ${typeof content})`);
|
|
22582
22802
|
* }
|
|
22583
22803
|
* ```
|
|
22584
22804
|
* @operationId getResourceContent
|
|
22585
22805
|
* @tags Resource
|
|
22806
|
+
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
22586
22807
|
*/
|
|
22587
|
-
getResourceContent(input: getResourceContentInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof getResourceContent>>;
|
|
22808
|
+
getResourceContent(input: getResourceContentInput, /** Management of eventual consistency **/ consistencyManagement: getResourceContentConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof getResourceContent>>;
|
|
22588
22809
|
/**
|
|
22589
22810
|
* Get role
|
|
22590
22811
|
*
|
|
@@ -23830,6 +24051,19 @@ declare class CamundaClient {
|
|
|
23830
24051
|
* Search message subscriptions
|
|
23831
24052
|
*
|
|
23832
24053
|
* Search for message subscriptions based on given criteria.
|
|
24054
|
+
*
|
|
24055
|
+
* By default, both start and intermediate event subscriptions are returned. Use the
|
|
24056
|
+
* `messageSubscriptionType` filter to restrict results to a single type.
|
|
24057
|
+
*
|
|
24058
|
+
* **Version notes:**
|
|
24059
|
+
* - Start event subscriptions are only captured for deployments made with 8.10 or later.
|
|
24060
|
+
* - The `messageSubscriptionType` field is only populated for data created
|
|
24061
|
+
* with Camunda 8.10 or later. For pre-8.10 data, intermediate event entries have no
|
|
24062
|
+
* `messageSubscriptionType` value stored. For convenience, the API returns `PROCESS_EVENT`
|
|
24063
|
+
* as a default for such search results, though.
|
|
24064
|
+
* - Searching for intermediate event subscriptions **including legacy data** can be achieved
|
|
24065
|
+
* by filtering for `messageSubscriptionType` not matching `START_EVENT`.
|
|
24066
|
+
*
|
|
23833
24067
|
*
|
|
23834
24068
|
* @example Search message subscriptions
|
|
23835
24069
|
* ```ts
|
|
@@ -25071,4 +25305,4 @@ declare function eventuallyTE<E, A>(thunk: () => Promise<A>, predicate: (a: A) =
|
|
|
25071
25305
|
waitUpToMs: number;
|
|
25072
25306
|
}): TaskEither<E, A>;
|
|
25073
25307
|
|
|
25074
|
-
export { type createAdminUserInput as $, type AuthStrategy as A, type SearchUserTaskAuditLogsData as A0, type SearchUserTaskAuditLogsErrors as A1, type SearchUserTaskAuditLogsError as A2, type SearchUserTaskAuditLogsResponses as A3, type SearchUserTaskAuditLogsResponse as A4, type CompleteUserTaskData as A5, type CompleteUserTaskErrors as A6, type CompleteUserTaskError as A7, type CompleteUserTaskResponses as A8, type CompleteUserTaskResponse as A9, classifyDomainError as AA, type DomainError as AB, type DomainErrorTag as AC, eventuallyTE as AD, type FnKeys as AE, type Fpify as AF, foldDomainError as AG, type HttpError as AH, type Left as AI, type Right as AJ, retryTE as AK, type TaskEither as AL, withTimeoutTE as AM, type SearchUserTaskEffectiveVariablesData as Aa, type SearchUserTaskEffectiveVariablesErrors as Ab, type SearchUserTaskEffectiveVariablesError as Ac, type SearchUserTaskEffectiveVariablesResponses as Ad, type SearchUserTaskEffectiveVariablesResponse as Ae, type GetUserTaskFormData as Af, type GetUserTaskFormErrors as Ag, type GetUserTaskFormError as Ah, type GetUserTaskFormResponses as Ai, type GetUserTaskFormResponse as Aj, type SearchUserTaskVariablesData as Ak, type SearchUserTaskVariablesErrors as Al, type SearchUserTaskVariablesError as Am, type SearchUserTaskVariablesResponses as An, type SearchUserTaskVariablesResponse as Ao, type SearchVariablesData as Ap, type SearchVariablesErrors as Aq, type SearchVariablesError as Ar, type SearchVariablesResponses as As, type SearchVariablesResponse as At, type GetVariableData as Au, type GetVariableErrors as Av, type GetVariableError as Aw, type GetVariableResponses as Ax, type GetVariableResponse as Ay, assertConstraint as Az, type BackpressureSeverity as B, CamundaClient as C, type assignMappingRuleToGroupInput as D, type Either as E, type assignMappingRuleToTenantInput as F, type assignRoleToClientInput as G, type HttpRetryPolicy as H, type assignRoleToGroupInput as I, type Job as J, type assignRoleToMappingRuleInput as K, type assignRoleToTenantInput as L, type assignRoleToUserInput as M, type assignUserTaskInput as N, type OperationOptions as O, type assignUserToGroupInput as P, type assignUserToTenantInput as Q, type broadcastSignalInput as R, type SdkError as S, type TelemetryHooks as T, type cancelBatchOperationInput as U, type ValidationMode as V, type cancelProcessInstanceInput as W, type cancelProcessInstancesBatchOperationInput as X, type completeJobInput as Y, type completeUserTaskInput as Z, type correlateMessageInput as _, type CamundaOptions as a, type getIncidentConsistency as a$, type createAuthorizationInput as a0, type createDeploymentInput as a1, type createDocumentInput as a2, type createDocumentLinkInput as a3, type createDocumentsInput as a4, type createElementInstanceVariablesInput as a5, type createGlobalClusterVariableInput as a6, type createGlobalTaskListenerInput as a7, type createGroupInput as a8, type createMappingRuleInput as a9, type getAuthenticationInput as aA, type getAuthorizationInput as aB, type getAuthorizationConsistency as aC, type getBatchOperationInput as aD, type getBatchOperationConsistency as aE, type getDecisionDefinitionInput as aF, type getDecisionDefinitionConsistency as aG, type getDecisionDefinitionXmlInput as aH, type getDecisionDefinitionXmlConsistency as aI, type getDecisionInstanceInput as aJ, type getDecisionInstanceConsistency as aK, type getDecisionRequirementsInput as aL, type getDecisionRequirementsConsistency as aM, type getDecisionRequirementsXmlInput as aN, type getDecisionRequirementsXmlConsistency as aO, type getDocumentInput as aP, type getElementInstanceInput as aQ, type getElementInstanceConsistency as aR, type getGlobalClusterVariableInput as aS, type getGlobalClusterVariableConsistency as aT, type getGlobalJobStatisticsInput as aU, type getGlobalJobStatisticsConsistency as aV, type getGlobalTaskListenerInput as aW, type getGlobalTaskListenerConsistency as aX, type getGroupInput as aY, type getGroupConsistency as aZ, type getIncidentInput as a_, type createProcessInstanceInput as aa, type createRoleInput as ab, type createTenantInput as ac, type createTenantClusterVariableInput as ad, type createUserInput as ae, type deleteAuthorizationInput as af, type deleteDecisionInstanceInput as ag, type deleteDecisionInstancesBatchOperationInput as ah, type deleteDocumentInput as ai, type deleteGlobalClusterVariableInput as aj, type deleteGlobalTaskListenerInput as ak, type deleteGroupInput as al, type deleteMappingRuleInput as am, type deleteProcessInstanceInput as an, type deleteProcessInstancesBatchOperationInput as ao, type deleteResourceInput as ap, type deleteRoleInput as aq, type deleteTenantInput as ar, type deleteTenantClusterVariableInput as as, type deleteUserInput as at, type evaluateConditionalsInput as au, type evaluateDecisionInput as av, type evaluateExpressionInput as aw, type failJobInput as ax, type getAuditLogInput as ay, type getAuditLogConsistency as az, type CancelablePromise as b, type publishMessageInput as b$, type getJobErrorStatisticsInput as b0, type getJobErrorStatisticsConsistency as b1, type getJobTimeSeriesStatisticsInput as b2, type getJobTimeSeriesStatisticsConsistency as b3, type getJobTypeStatisticsInput as b4, type getJobTypeStatisticsConsistency as b5, type getJobWorkerStatisticsInput as b6, type getJobWorkerStatisticsConsistency as b7, type getLicenseInput as b8, type getMappingRuleInput as b9, type getResourceContentInput as bA, type getRoleInput as bB, type getRoleConsistency as bC, type getStartProcessFormInput as bD, type getStartProcessFormConsistency as bE, type getStatusInput as bF, type getSystemConfigurationInput as bG, type getTenantInput as bH, type getTenantConsistency as bI, type getTenantClusterVariableInput as bJ, type getTenantClusterVariableConsistency as bK, type getTopologyInput as bL, type getUsageMetricsInput as bM, type getUsageMetricsConsistency as bN, type getUserInput as bO, type getUserConsistency as bP, type getUserTaskInput as bQ, type getUserTaskConsistency as bR, type getUserTaskFormInput as bS, type getUserTaskFormConsistency as bT, type getVariableInput as bU, type getVariableConsistency as bV, type migrateProcessInstanceInput as bW, type migrateProcessInstancesBatchOperationInput as bX, type modifyProcessInstanceInput as bY, type modifyProcessInstancesBatchOperationInput as bZ, type pinClockInput as b_, type getMappingRuleConsistency as ba, type getProcessDefinitionInput as bb, type getProcessDefinitionConsistency as bc, type getProcessDefinitionInstanceStatisticsInput as bd, type getProcessDefinitionInstanceStatisticsConsistency as be, type getProcessDefinitionInstanceVersionStatisticsInput as bf, type getProcessDefinitionInstanceVersionStatisticsConsistency as bg, type getProcessDefinitionMessageSubscriptionStatisticsInput as bh, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as bi, type getProcessDefinitionStatisticsInput as bj, type getProcessDefinitionStatisticsConsistency as bk, type getProcessDefinitionXmlInput as bl, type getProcessDefinitionXmlConsistency as bm, type getProcessInstanceInput as bn, type getProcessInstanceConsistency as bo, type getProcessInstanceCallHierarchyInput as bp, type getProcessInstanceCallHierarchyConsistency as bq, type getProcessInstanceSequenceFlowsInput as br, type getProcessInstanceSequenceFlowsConsistency as bs, type getProcessInstanceStatisticsInput as bt, type getProcessInstanceStatisticsConsistency as bu, type getProcessInstanceStatisticsByDefinitionInput as bv, type getProcessInstanceStatisticsByDefinitionConsistency as bw, type getProcessInstanceStatisticsByErrorInput as bx, type getProcessInstanceStatisticsByErrorConsistency as by, type getResourceInput as bz, createCamundaClient as c, type searchRolesForGroupInput as c$, type resetClockInput as c0, type resolveIncidentInput as c1, type resolveIncidentsBatchOperationInput as c2, type resolveProcessInstanceIncidentsInput as c3, type resumeBatchOperationInput as c4, type searchAuditLogsInput as c5, type searchAuditLogsConsistency as c6, type searchAuthorizationsInput as c7, type searchAuthorizationsConsistency as c8, type searchBatchOperationItemsInput as c9, type searchGroupIdsForTenantConsistency as cA, type searchGroupsInput as cB, type searchGroupsConsistency as cC, type searchGroupsForRoleInput as cD, type searchGroupsForRoleConsistency as cE, type searchIncidentsInput as cF, type searchIncidentsConsistency as cG, type searchJobsInput as cH, type searchJobsConsistency as cI, type searchMappingRuleInput as cJ, type searchMappingRuleConsistency as cK, type searchMappingRulesForGroupInput as cL, type searchMappingRulesForGroupConsistency as cM, type searchMappingRulesForRoleInput as cN, type searchMappingRulesForRoleConsistency as cO, type searchMappingRulesForTenantInput as cP, type searchMappingRulesForTenantConsistency as cQ, type searchMessageSubscriptionsInput as cR, type searchMessageSubscriptionsConsistency as cS, type searchProcessDefinitionsInput as cT, type searchProcessDefinitionsConsistency as cU, type searchProcessInstanceIncidentsInput as cV, type searchProcessInstanceIncidentsConsistency as cW, type searchProcessInstancesInput as cX, type searchProcessInstancesConsistency as cY, type searchRolesInput as cZ, type searchRolesConsistency as c_, type searchBatchOperationItemsConsistency as ca, type searchBatchOperationsInput as cb, type searchBatchOperationsConsistency as cc, type searchClientsForGroupInput as cd, type searchClientsForGroupConsistency as ce, type searchClientsForRoleInput as cf, type searchClientsForRoleConsistency as cg, type searchClientsForTenantInput as ch, type searchClientsForTenantConsistency as ci, type searchClusterVariablesInput as cj, type searchClusterVariablesConsistency as ck, type searchCorrelatedMessageSubscriptionsInput as cl, type searchCorrelatedMessageSubscriptionsConsistency as cm, type searchDecisionDefinitionsInput as cn, type searchDecisionDefinitionsConsistency as co, type searchDecisionInstancesInput as cp, type searchDecisionInstancesConsistency as cq, type searchDecisionRequirementsInput as cr, type searchDecisionRequirementsConsistency as cs, type searchElementInstanceIncidentsInput as ct, type searchElementInstanceIncidentsConsistency as cu, type searchElementInstancesInput as cv, type searchElementInstancesConsistency as cw, type searchGlobalTaskListenersInput as cx, type searchGlobalTaskListenersConsistency as cy, type searchGroupIdsForTenantInput as cz, type CamundaFpClient as d, AuditLogResultEnum as d$, type searchRolesForGroupConsistency as d0, type searchRolesForTenantInput as d1, type searchRolesForTenantConsistency as d2, type searchTenantsInput as d3, type searchTenantsConsistency as d4, type searchUsersInput as d5, type searchUsersConsistency as d6, type searchUsersForGroupInput as d7, type searchUsersForGroupConsistency as d8, type searchUsersForRoleInput as d9, type unassignUserFromGroupInput as dA, type unassignUserFromTenantInput as dB, type unassignUserTaskInput as dC, type updateAuthorizationInput as dD, type updateGlobalClusterVariableInput as dE, type updateGlobalTaskListenerInput as dF, type updateGroupInput as dG, type updateJobInput as dH, type updateMappingRuleInput as dI, type updateRoleInput as dJ, type updateTenantInput as dK, type updateTenantClusterVariableInput as dL, type updateUserInput as dM, type updateUserTaskInput as dN, type ExtendedDeploymentResult as dO, CancelError as dP, type CamundaKey as dQ, type ClientOptions as dR, type AuditLogResult as dS, type AuditLogSearchQuerySortRequest as dT, type AuditLogSearchQueryRequest as dU, type AuditLogFilter as dV, type AuditLogSearchQueryResult as dW, AuditLogEntityKey as dX, AuditLogEntityTypeEnum as dY, AuditLogOperationTypeEnum as dZ, AuditLogActorTypeEnum as d_, type searchUsersForRoleConsistency as da, type searchUsersForTenantInput as db, type searchUsersForTenantConsistency as dc, type searchUserTaskAuditLogsInput as dd, type searchUserTaskAuditLogsConsistency as de, type searchUserTaskEffectiveVariablesInput as df, type searchUserTaskEffectiveVariablesConsistency as dg, type searchUserTasksInput as dh, type searchUserTasksConsistency as di, type searchUserTaskVariablesInput as dj, type searchUserTaskVariablesConsistency as dk, type searchVariablesInput as dl, type searchVariablesConsistency as dm, type suspendBatchOperationInput as dn, type throwJobErrorInput as dp, type unassignClientFromGroupInput as dq, type unassignClientFromTenantInput as dr, type unassignGroupFromTenantInput as ds, type unassignMappingRuleFromGroupInput as dt, type unassignMappingRuleFromTenantInput as du, type unassignRoleFromClientInput as dv, type unassignRoleFromGroupInput as dw, type unassignRoleFromMappingRuleInput as dx, type unassignRoleFromTenantInput as dy, type unassignRoleFromUserInput as dz, createCamundaFpClient as e, type ClusterVariableSearchQueryRequest as e$, AuditLogCategoryEnum as e0, type AuditLogEntityKeyFilterProperty as e1, type AdvancedAuditLogEntityKeyFilter as e2, type EntityTypeFilterProperty as e3, type AdvancedEntityTypeFilter as e4, type OperationTypeFilterProperty as e5, type AdvancedOperationTypeFilter as e6, type CategoryFilterProperty as e7, type AdvancedCategoryFilter as e8, type AuditLogResultFilterProperty as e9, type BatchOperationItemFilter as eA, type BatchOperationItemSearchQueryResult as eB, type BatchOperationItemResponse as eC, type DecisionInstanceDeletionBatchOperationRequest as eD, type ProcessInstanceCancellationBatchOperationRequest as eE, type ProcessInstanceIncidentResolutionBatchOperationRequest as eF, type ProcessInstanceDeletionBatchOperationRequest as eG, type ProcessInstanceMigrationBatchOperationRequest as eH, type ProcessInstanceMigrationBatchOperationPlan as eI, type ProcessInstanceModificationBatchOperationRequest as eJ, type ProcessInstanceModificationMoveBatchOperationInstruction as eK, BatchOperationItemStateEnum as eL, BatchOperationStateEnum as eM, BatchOperationTypeEnum as eN, type BatchOperationTypeFilterProperty as eO, type AdvancedBatchOperationTypeFilter as eP, type BatchOperationStateFilterProperty as eQ, type AdvancedBatchOperationStateFilter as eR, type BatchOperationItemStateFilterProperty as eS, type AdvancedBatchOperationItemStateFilter as eT, type ClockPinRequest as eU, ClusterVariableScopeEnum as eV, type CreateClusterVariableRequest as eW, type UpdateClusterVariableRequest as eX, type ClusterVariableResult as eY, type ClusterVariableSearchResult as eZ, type ClusterVariableResultBase as e_, type AdvancedResultFilter as ea, type AuditLogActorTypeFilterProperty as eb, type AdvancedActorTypeFilter as ec, type CamundaUserResult as ed, type AuthorizationIdBasedRequest as ee, type AuthorizationPropertyBasedRequest as ef, type AuthorizationRequest as eg, type AuthorizationSearchQuerySortRequest as eh, type AuthorizationSearchQuery as ei, type AuthorizationFilter as ej, type AuthorizationResult as ek, type AuthorizationSearchResult as el, type AuthorizationCreateResult as em, PermissionTypeEnum as en, ResourceTypeEnum as eo, OwnerTypeEnum as ep, AuthorizationKey as eq, type BatchOperationCreatedResult as er, type BatchOperationSearchQuerySortRequest as es, type BatchOperationSearchQuery as et, type BatchOperationFilter as eu, type BatchOperationSearchQueryResult as ev, type BatchOperationResponse as ew, type BatchOperationError as ex, type BatchOperationItemSearchQuerySortRequest as ey, type BatchOperationItemSearchQuery as ez, isRight as f, type DocumentMetadataResponse as f$, type ClusterVariableSearchQuerySortRequest as f0, type ClusterVariableSearchQueryFilterRequest as f1, type ClusterVariableScopeFilterProperty as f2, type AdvancedClusterVariableScopeFilter as f3, type ClusterVariableSearchQueryResult as f4, type TopologyResponse as f5, type BrokerInfo as f6, type Partition as f7, type ConditionalEvaluationInstruction as f8, type EvaluateConditionalResult as f9, type AdvancedDecisionInstanceStateFilter as fA, type DecisionInstanceStateFilterProperty as fB, type DecisionRequirementsSearchQuerySortRequest as fC, type DecisionRequirementsSearchQuery as fD, type DecisionRequirementsFilter as fE, type DecisionRequirementsSearchQueryResult as fF, type DecisionRequirementsResult as fG, type DeploymentResult as fH, type DeploymentMetadataResult as fI, type DeploymentProcessResult as fJ, type DeploymentDecisionResult as fK, type DeploymentDecisionRequirementsResult as fL, type DeploymentFormResult as fM, type DeploymentResourceResult as fN, type DeleteResourceRequest as fO, type DeleteResourceResponse as fP, type ResourceResult as fQ, DeploymentKey as fR, type ResourceKey as fS, type DeploymentKeyFilterProperty as fT, type AdvancedDeploymentKeyFilter as fU, type ResourceKeyFilterProperty as fV, type AdvancedResourceKeyFilter as fW, type DocumentReference as fX, type DocumentCreationFailureDetail as fY, type DocumentCreationBatchResponse as fZ, type DocumentMetadata as f_, ConditionalEvaluationKey as fa, type ProcessInstanceReference as fb, StartCursor as fc, EndCursor as fd, type DecisionDefinitionSearchQuerySortRequest as fe, type DecisionDefinitionSearchQuery as ff, type DecisionDefinitionFilter as fg, type DecisionDefinitionSearchQueryResult as fh, type DecisionDefinitionResult as fi, type DecisionEvaluationInstruction as fj, type DecisionEvaluationById as fk, type DecisionEvaluationByKey as fl, type EvaluateDecisionResult as fm, type EvaluatedDecisionResult as fn, type DecisionInstanceSearchQuerySortRequest as fo, type DecisionInstanceSearchQuery as fp, type DecisionInstanceFilter as fq, type DeleteDecisionInstanceRequest as fr, type DecisionInstanceSearchQueryResult as fs, type DecisionInstanceResult as ft, type DecisionInstanceGetQueryResult as fu, type EvaluatedDecisionInputItem as fv, type EvaluatedDecisionOutputItem as fw, type MatchedDecisionRuleItem as fx, DecisionDefinitionTypeEnum as fy, DecisionInstanceStateEnum as fz, CamundaValidationError as g, FormId as g$, type DocumentLinkRequest as g0, type DocumentLink as g1, DocumentId as g2, type ElementInstanceSearchQuerySortRequest as g3, type ElementInstanceSearchQuery as g4, type ElementInstanceFilter as g5, type ElementInstanceStateFilterProperty as g6, type AdvancedElementInstanceStateFilter as g7, type ElementInstanceSearchQueryResult as g8, type ElementInstanceResult as g9, type GlobalTaskListenerSearchQueryFilterRequest as gA, type GlobalListenerSourceFilterProperty as gB, type AdvancedGlobalListenerSourceFilter as gC, type GlobalTaskListenerEventTypeFilterProperty as gD, type AdvancedGlobalTaskListenerEventTypeFilter as gE, type GlobalTaskListenerSearchQueryResult as gF, type GroupCreateRequest as gG, type GroupCreateResult as gH, type GroupUpdateRequest as gI, type GroupUpdateResult as gJ, type GroupResult as gK, type GroupSearchQuerySortRequest as gL, type GroupSearchQueryRequest as gM, type GroupFilter as gN, type GroupSearchQueryResult as gO, type GroupUserResult as gP, type GroupUserSearchResult as gQ, type GroupUserSearchQueryRequest as gR, type GroupUserSearchQuerySortRequest as gS, type GroupClientResult as gT, type GroupClientSearchResult as gU, type GroupClientSearchQueryRequest as gV, type GroupMappingRuleSearchResult as gW, type GroupRoleSearchResult as gX, type GroupClientSearchQuerySortRequest as gY, ProcessDefinitionId as gZ, ElementId as g_, ElementInstanceStateEnum as ga, type AdHocSubProcessActivateActivitiesInstruction as gb, type AdHocSubProcessActivateActivityReference as gc, type ExpressionEvaluationRequest as gd, type ExpressionEvaluationResult as ge, type ExpressionEvaluationWarningItem as gf, type LikeFilter as gg, type BasicStringFilter as gh, type AdvancedStringFilter as gi, type BasicStringFilterProperty as gj, type StringFilterProperty as gk, type AdvancedIntegerFilter as gl, type IntegerFilterProperty as gm, type AdvancedDateTimeFilter as gn, type DateTimeFilterProperty as go, type FormResult as gp, GlobalListenerSourceEnum as gq, GlobalTaskListenerEventTypeEnum as gr, type GlobalListenerBase as gs, type GlobalTaskListenerBase as gt, type GlobalTaskListenerEventTypes as gu, type CreateGlobalTaskListenerRequest as gv, type UpdateGlobalTaskListenerRequest as gw, type GlobalTaskListenerResult as gx, type GlobalTaskListenerSearchQueryRequest as gy, type GlobalTaskListenerSearchQuerySortRequest as gz, EventualConsistencyTimeoutError as h, type JobUpdateRequest as h$, DecisionDefinitionId as h0, GlobalListenerId as h1, TenantId as h2, Username as h3, Tag as h4, type TagSet as h5, BusinessId as h6, type IncidentSearchQuery as h7, type IncidentFilter as h8, type IncidentErrorTypeFilterProperty as h9, type JobWorkerStatisticsQueryResult as hA, type JobWorkerStatisticsItem as hB, type JobTimeSeriesStatisticsQuery as hC, type JobTimeSeriesStatisticsFilter as hD, type JobTimeSeriesStatisticsQueryResult as hE, type JobTimeSeriesStatisticsItem as hF, type JobErrorStatisticsQuery as hG, type JobErrorStatisticsFilter as hH, type JobErrorStatisticsQueryResult as hI, type JobErrorStatisticsItem as hJ, type JobActivationRequest as hK, type JobActivationResult as hL, type ActivatedJobResult$1 as hM, type UserTaskProperties as hN, type JobSearchQuery as hO, type JobSearchQuerySortRequest as hP, type JobFilter as hQ, type JobSearchQueryResult as hR, type JobSearchResult as hS, type JobFailRequest as hT, type JobErrorRequest$1 as hU, type JobCompletionRequest as hV, type JobResult as hW, type JobResultUserTask as hX, type JobResultCorrections as hY, type JobResultAdHocSubProcess as hZ, type JobResultActivateElement as h_, type AdvancedIncidentErrorTypeFilter as ha, IncidentErrorTypeEnum as hb, type IncidentStateFilterProperty as hc, type AdvancedIncidentStateFilter as hd, IncidentStateEnum as he, type IncidentSearchQuerySortRequest as hf, type IncidentSearchQueryResult as hg, type IncidentResult as hh, type IncidentResolutionRequest as hi, type IncidentProcessInstanceStatisticsByErrorQuery as hj, type IncidentProcessInstanceStatisticsByErrorQueryResult as hk, type IncidentProcessInstanceStatisticsByErrorResult as hl, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as hm, type IncidentProcessInstanceStatisticsByDefinitionQuery as hn, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as ho, type IncidentProcessInstanceStatisticsByDefinitionResult as hp, type IncidentProcessInstanceStatisticsByDefinitionFilter as hq, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as hr, type GlobalJobStatisticsQueryResult as hs, type StatusMetric as ht, type JobTypeStatisticsQuery as hu, type JobTypeStatisticsFilter as hv, type JobTypeStatisticsQueryResult as hw, type JobTypeStatisticsItem as hx, type JobWorkerStatisticsQuery as hy, type JobWorkerStatisticsFilter as hz, isLeft as i, type MappingRuleResult as i$, type JobChangeset as i0, TenantFilterEnum as i1, JobStateEnum as i2, JobKindEnum as i3, JobListenerEventTypeEnum as i4, type JobKindFilterProperty as i5, type AdvancedJobKindFilter as i6, type JobListenerEventTypeFilterProperty as i7, type AdvancedJobListenerEventTypeFilter as i8, type JobStateFilterProperty as i9, type AdvancedElementInstanceKeyFilter as iA, type JobKeyFilterProperty as iB, type AdvancedJobKeyFilter as iC, type DecisionDefinitionKeyFilterProperty as iD, type AdvancedDecisionDefinitionKeyFilter as iE, type ScopeKeyFilterProperty as iF, type AdvancedScopeKeyFilter as iG, type VariableKeyFilterProperty as iH, type AdvancedVariableKeyFilter as iI, type DecisionEvaluationInstanceKeyFilterProperty as iJ, type AdvancedDecisionEvaluationInstanceKeyFilter as iK, type AuditLogKeyFilterProperty as iL, type AdvancedAuditLogKeyFilter as iM, type FormKeyFilterProperty as iN, type AdvancedFormKeyFilter as iO, type DecisionEvaluationKeyFilterProperty as iP, type AdvancedDecisionEvaluationKeyFilter as iQ, type DecisionRequirementsKeyFilterProperty as iR, type AdvancedDecisionRequirementsKeyFilter as iS, type LicenseResponse as iT, type MappingRuleCreateUpdateRequest as iU, type MappingRuleCreateRequest as iV, type MappingRuleUpdateRequest as iW, type MappingRuleCreateUpdateResult as iX, type MappingRuleCreateResult as iY, type MappingRuleUpdateResult as iZ, type MappingRuleSearchQueryResult as i_, type AdvancedJobStateFilter as ia, type LongKey as ib, ProcessInstanceKey as ic, ProcessDefinitionKey as id, ElementInstanceKey as ie, UserTaskKey as ig, FormKey as ih, VariableKey as ii, type ScopeKey as ij, IncidentKey as ik, JobKey as il, DecisionDefinitionKey as im, DecisionEvaluationInstanceKey as io, DecisionEvaluationKey as ip, DecisionRequirementsKey as iq, DecisionInstanceKey as ir, BatchOperationKey as is, type OperationReference as it, AuditLogKey as iu, type ProcessDefinitionKeyFilterProperty as iv, type AdvancedProcessDefinitionKeyFilter as iw, type ProcessInstanceKeyFilterProperty as ix, type AdvancedProcessInstanceKeyFilter as iy, type ElementInstanceKeyFilterProperty as iz, isSdkError as j, type ProcessInstanceSequenceFlowsQueryResult as j$, type MappingRuleSearchQuerySortRequest as j0, type MappingRuleSearchQueryRequest as j1, type MappingRuleFilter as j2, type MessageCorrelationRequest as j3, type MessageCorrelationResult as j4, type MessagePublicationRequest as j5, type MessagePublicationResult as j6, type MessageSubscriptionSearchQueryResult as j7, type MessageSubscriptionResult as j8, type MessageSubscriptionSearchQuerySortRequest as j9, type ProcessDefinitionInstanceStatisticsQuery as jA, type ProcessDefinitionInstanceStatisticsQueryResult as jB, type ProcessDefinitionInstanceStatisticsResult as jC, type ProcessDefinitionInstanceStatisticsQuerySortRequest as jD, type ProcessDefinitionInstanceVersionStatisticsQuery as jE, type ProcessDefinitionInstanceVersionStatisticsFilter as jF, type ProcessDefinitionInstanceVersionStatisticsQueryResult as jG, type ProcessDefinitionInstanceVersionStatisticsResult as jH, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as jI, type ProcessInstanceCreationInstruction as jJ, type ProcessInstanceCreationInstructionById as jK, type ProcessInstanceCreationInstructionByKey as jL, type ProcessInstanceCreationStartInstruction as jM, type ProcessInstanceCreationRuntimeInstruction as jN, type ProcessInstanceCreationTerminateInstruction as jO, type CreateProcessInstanceResult as jP, type ProcessInstanceSearchQuerySortRequest as jQ, type ProcessInstanceSearchQuery as jR, type BaseProcessInstanceFilterFields as jS, type ProcessDefinitionStatisticsFilter as jT, type ProcessInstanceFilterFields as jU, type ProcessInstanceFilter as jV, type ProcessInstanceSearchQueryResult as jW, type ProcessInstanceResult as jX, type CancelProcessInstanceRequest as jY, type DeleteProcessInstanceRequest as jZ, type ProcessInstanceCallHierarchyEntry as j_, type MessageSubscriptionSearchQuery as ja, type MessageSubscriptionFilter as jb, type CorrelatedMessageSubscriptionSearchQueryResult as jc, type CorrelatedMessageSubscriptionResult as jd, type CorrelatedMessageSubscriptionSearchQuery as je, type CorrelatedMessageSubscriptionSearchQuerySortRequest as jf, MessageSubscriptionStateEnum as jg, type CorrelatedMessageSubscriptionFilter as jh, type MessageSubscriptionStateFilterProperty as ji, type AdvancedMessageSubscriptionStateFilter as jj, type AdvancedMessageSubscriptionKeyFilter as jk, type MessageSubscriptionKeyFilterProperty as jl, MessageSubscriptionKey as jm, MessageKey as jn, type ProblemDetail as jo, type ProcessDefinitionSearchQuerySortRequest as jp, type ProcessDefinitionSearchQuery as jq, type ProcessDefinitionFilter as jr, type ProcessDefinitionSearchQueryResult as js, type ProcessDefinitionResult as jt, type ProcessDefinitionElementStatisticsQuery as ju, type ProcessDefinitionElementStatisticsQueryResult as jv, type ProcessElementStatisticsResult as jw, type ProcessDefinitionMessageSubscriptionStatisticsQuery as jx, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as jy, type ProcessDefinitionMessageSubscriptionStatisticsResult as jz, type EnrichedActivatedJob as k, type TenantResult as k$, type ProcessInstanceSequenceFlowResult as k0, type ProcessInstanceElementStatisticsQueryResult as k1, type ProcessInstanceMigrationInstruction as k2, type MigrateProcessInstanceMappingInstruction as k3, type ProcessInstanceModificationInstruction as k4, type ProcessInstanceModificationActivateInstruction as k5, type ModifyProcessInstanceVariableInstruction as k6, type ProcessInstanceModificationMoveInstruction as k7, type SourceElementInstruction as k8, type SourceElementIdInstruction as k9, type RoleClientSearchQueryRequest as kA, type RoleClientSearchQuerySortRequest as kB, type RoleGroupResult as kC, type RoleGroupSearchResult as kD, type RoleGroupSearchQueryRequest as kE, type RoleMappingRuleSearchResult as kF, type RoleGroupSearchQuerySortRequest as kG, type SearchQueryRequest as kH, type SearchQueryPageRequest as kI, type LimitPagination as kJ, type OffsetPagination as kK, type CursorForwardPagination as kL, type CursorBackwardPagination as kM, type SearchQueryResponse as kN, SortOrderEnum as kO, type SearchQueryPageResponse as kP, type SignalBroadcastRequest as kQ, type SignalBroadcastResult as kR, SignalKey as kS, type UsageMetricsResponse as kT, type UsageMetricsResponseItem as kU, type SystemConfigurationResponse as kV, type JobMetricsConfigurationResponse as kW, type TenantCreateRequest as kX, type TenantCreateResult as kY, type TenantUpdateRequest as kZ, type TenantUpdateResult as k_, type SourceElementInstanceKeyInstruction as ka, type AncestorScopeInstruction as kb, type DirectAncestorKeyInstruction as kc, type InferredAncestorKeyInstruction as kd, type UseSourceParentKeyInstruction as ke, type ProcessInstanceModificationTerminateInstruction as kf, type ProcessInstanceModificationTerminateByIdInstruction as kg, type ProcessInstanceModificationTerminateByKeyInstruction as kh, ProcessInstanceStateEnum as ki, type AdvancedProcessInstanceStateFilter as kj, type ProcessInstanceStateFilterProperty as kk, type RoleCreateRequest as kl, type RoleCreateResult as km, type RoleUpdateRequest as kn, type RoleUpdateResult as ko, type RoleResult as kp, type RoleSearchQuerySortRequest as kq, type RoleSearchQueryRequest as kr, type RoleFilter as ks, type RoleSearchQueryResult as kt, type RoleUserResult as ku, type RoleUserSearchResult as kv, type RoleUserSearchQueryRequest as kw, type RoleUserSearchQuerySortRequest as kx, type RoleClientResult as ky, type RoleClientSearchResult as kz, JobActionReceipt as l, type ClusterVariableScopeExactMatch as l$, type TenantSearchQuerySortRequest as l0, type TenantSearchQueryRequest as l1, type TenantFilter as l2, type TenantSearchQueryResult as l3, type TenantUserResult as l4, type TenantUserSearchResult as l5, type TenantUserSearchQueryRequest as l6, type TenantUserSearchQuerySortRequest as l7, type TenantClientResult as l8, type TenantClientSearchResult as l9, type UserRequest as lA, type UserCreateResult as lB, type UserUpdateRequest as lC, type UserUpdateResult as lD, type UserResult as lE, type UserSearchQuerySortRequest as lF, type UserSearchQueryRequest as lG, type UserFilter as lH, type UserSearchResult as lI, type VariableSearchQuerySortRequest as lJ, type VariableSearchQuery as lK, type VariableFilter as lL, type VariableSearchQueryResult as lM, type VariableSearchResult as lN, type VariableResult as lO, type VariableResultBase as lP, type VariableValueFilterProperty as lQ, type SetVariableRequest as lR, type AuditLogEntityKeyExactMatch as lS, type EntityTypeExactMatch as lT, type OperationTypeExactMatch as lU, type CategoryExactMatch as lV, type AuditLogResultExactMatch as lW, type AuditLogActorTypeExactMatch as lX, type BatchOperationTypeExactMatch as lY, type BatchOperationStateExactMatch as lZ, type BatchOperationItemStateExactMatch as l_, type TenantClientSearchQueryRequest as la, type TenantClientSearchQuerySortRequest as lb, type TenantGroupResult as lc, type TenantGroupSearchResult as ld, type TenantGroupSearchQueryRequest as le, type TenantRoleSearchResult as lf, type TenantMappingRuleSearchResult as lg, type TenantGroupSearchQuerySortRequest as lh, type UserTaskSearchQuerySortRequest as li, type UserTaskSearchQuery as lj, type UserTaskFilter as lk, type UserTaskSearchQueryResult as ll, type UserTaskResult as lm, type UserTaskCompletionRequest as ln, type UserTaskAssignmentRequest as lo, type UserTaskUpdateRequest as lp, type Changeset as lq, type UserTaskVariableSearchQuerySortRequest as lr, type UserTaskVariableSearchQueryRequest as ls, type UserTaskEffectiveVariableSearchQueryRequest as lt, type UserTaskAuditLogSearchQueryRequest as lu, UserTaskStateEnum as lv, type UserTaskVariableFilter as lw, type UserTaskStateFilterProperty as lx, type AdvancedUserTaskStateFilter as ly, type UserTaskAuditLogFilter as lz, JobWorker as m, type UpdateAuthorizationErrors as m$, type DecisionInstanceStateExactMatch as m0, type DeploymentKeyExactMatch as m1, type ResourceKeyExactMatch as m2, type ElementInstanceStateExactMatch as m3, type GlobalListenerSourceExactMatch as m4, type GlobalTaskListenerEventTypeExactMatch as m5, type IncidentErrorTypeExactMatch as m6, type IncidentStateExactMatch as m7, type JobKindExactMatch as m8, type JobListenerEventTypeExactMatch as m9, type GetAuditLogResponse as mA, type GetAuthenticationData as mB, type GetAuthenticationErrors as mC, type GetAuthenticationError as mD, type GetAuthenticationResponses as mE, type GetAuthenticationResponse as mF, type CreateAuthorizationData as mG, type CreateAuthorizationErrors as mH, type CreateAuthorizationError as mI, type CreateAuthorizationResponses as mJ, type CreateAuthorizationResponse as mK, type SearchAuthorizationsData as mL, type SearchAuthorizationsErrors as mM, type SearchAuthorizationsError as mN, type SearchAuthorizationsResponses as mO, type SearchAuthorizationsResponse as mP, type DeleteAuthorizationData as mQ, type DeleteAuthorizationErrors as mR, type DeleteAuthorizationError as mS, type DeleteAuthorizationResponses as mT, type DeleteAuthorizationResponse as mU, type GetAuthorizationData as mV, type GetAuthorizationErrors as mW, type GetAuthorizationError as mX, type GetAuthorizationResponses as mY, type GetAuthorizationResponse as mZ, type UpdateAuthorizationData as m_, type JobStateExactMatch as ma, type ProcessDefinitionKeyExactMatch as mb, type ProcessInstanceKeyExactMatch as mc, type ElementInstanceKeyExactMatch as md, type JobKeyExactMatch as me, type DecisionDefinitionKeyExactMatch as mf, type ScopeKeyExactMatch as mg, type VariableKeyExactMatch as mh, type DecisionEvaluationInstanceKeyExactMatch as mi, type AuditLogKeyExactMatch as mj, type FormKeyExactMatch as mk, type DecisionEvaluationKeyExactMatch as ml, type DecisionRequirementsKeyExactMatch as mm, type MessageSubscriptionStateExactMatch as mn, type MessageSubscriptionKeyExactMatch as mo, type ProcessInstanceStateExactMatch as mp, type UserTaskStateExactMatch as mq, type SearchAuditLogsData as mr, type SearchAuditLogsErrors as ms, type SearchAuditLogsError as mt, type SearchAuditLogsResponses as mu, type SearchAuditLogsResponse as mv, type GetAuditLogData as mw, type GetAuditLogErrors as mx, type GetAuditLogError as my, type GetAuditLogResponses as mz, type JobWorkerConfig as n, type SearchClusterVariablesData as n$, type UpdateAuthorizationError as n0, type UpdateAuthorizationResponses as n1, type UpdateAuthorizationResponse as n2, type SearchBatchOperationItemsData as n3, type SearchBatchOperationItemsErrors as n4, type SearchBatchOperationItemsError as n5, type SearchBatchOperationItemsResponses as n6, type SearchBatchOperationItemsResponse as n7, type SearchBatchOperationsData as n8, type SearchBatchOperationsErrors as n9, type PinClockResponses as nA, type PinClockResponse as nB, type ResetClockData as nC, type ResetClockErrors as nD, type ResetClockError as nE, type ResetClockResponses as nF, type ResetClockResponse as nG, type CreateGlobalClusterVariableData as nH, type CreateGlobalClusterVariableErrors as nI, type CreateGlobalClusterVariableError as nJ, type CreateGlobalClusterVariableResponses as nK, type CreateGlobalClusterVariableResponse as nL, type DeleteGlobalClusterVariableData as nM, type DeleteGlobalClusterVariableErrors as nN, type DeleteGlobalClusterVariableError as nO, type DeleteGlobalClusterVariableResponses as nP, type DeleteGlobalClusterVariableResponse as nQ, type GetGlobalClusterVariableData as nR, type GetGlobalClusterVariableErrors as nS, type GetGlobalClusterVariableError as nT, type GetGlobalClusterVariableResponses as nU, type GetGlobalClusterVariableResponse as nV, type UpdateGlobalClusterVariableData as nW, type UpdateGlobalClusterVariableErrors as nX, type UpdateGlobalClusterVariableError as nY, type UpdateGlobalClusterVariableResponses as nZ, type UpdateGlobalClusterVariableResponse as n_, type SearchBatchOperationsError as na, type SearchBatchOperationsResponses as nb, type SearchBatchOperationsResponse as nc, type GetBatchOperationData as nd, type GetBatchOperationErrors as ne, type GetBatchOperationError as nf, type GetBatchOperationResponses as ng, type GetBatchOperationResponse as nh, type CancelBatchOperationData as ni, type CancelBatchOperationErrors as nj, type CancelBatchOperationError as nk, type CancelBatchOperationResponses as nl, type CancelBatchOperationResponse as nm, type ResumeBatchOperationData as nn, type ResumeBatchOperationErrors as no, type ResumeBatchOperationError as np, type ResumeBatchOperationResponses as nq, type ResumeBatchOperationResponse as nr, type SuspendBatchOperationData as ns, type SuspendBatchOperationErrors as nt, type SuspendBatchOperationError as nu, type SuspendBatchOperationResponses as nv, type SuspendBatchOperationResponse as nw, type PinClockData as nx, type PinClockErrors as ny, type PinClockError as nz, type SupportLogger as o, type GetDecisionInstanceResponse as o$, type SearchClusterVariablesErrors as o0, type SearchClusterVariablesError as o1, type SearchClusterVariablesResponses as o2, type SearchClusterVariablesResponse as o3, type CreateTenantClusterVariableData as o4, type CreateTenantClusterVariableErrors as o5, type CreateTenantClusterVariableError as o6, type CreateTenantClusterVariableResponses as o7, type CreateTenantClusterVariableResponse as o8, type DeleteTenantClusterVariableData as o9, type EvaluateDecisionError as oA, type EvaluateDecisionResponses as oB, type EvaluateDecisionResponse as oC, type SearchDecisionDefinitionsData as oD, type SearchDecisionDefinitionsErrors as oE, type SearchDecisionDefinitionsError as oF, type SearchDecisionDefinitionsResponses as oG, type SearchDecisionDefinitionsResponse as oH, type GetDecisionDefinitionData as oI, type GetDecisionDefinitionErrors as oJ, type GetDecisionDefinitionError as oK, type GetDecisionDefinitionResponses as oL, type GetDecisionDefinitionResponse as oM, type GetDecisionDefinitionXmlData as oN, type GetDecisionDefinitionXmlErrors as oO, type GetDecisionDefinitionXmlError as oP, type GetDecisionDefinitionXmlResponses as oQ, type GetDecisionDefinitionXmlResponse as oR, type SearchDecisionInstancesData as oS, type SearchDecisionInstancesErrors as oT, type SearchDecisionInstancesError as oU, type SearchDecisionInstancesResponses as oV, type SearchDecisionInstancesResponse as oW, type GetDecisionInstanceData as oX, type GetDecisionInstanceErrors as oY, type GetDecisionInstanceError as oZ, type GetDecisionInstanceResponses as o_, type DeleteTenantClusterVariableErrors as oa, type DeleteTenantClusterVariableError as ob, type DeleteTenantClusterVariableResponses as oc, type DeleteTenantClusterVariableResponse as od, type GetTenantClusterVariableData as oe, type GetTenantClusterVariableErrors as of, type GetTenantClusterVariableError as og, type GetTenantClusterVariableResponses as oh, type GetTenantClusterVariableResponse as oi, type UpdateTenantClusterVariableData as oj, type UpdateTenantClusterVariableErrors as ok, type UpdateTenantClusterVariableError as ol, type UpdateTenantClusterVariableResponses as om, type UpdateTenantClusterVariableResponse as on, type EvaluateConditionalsData as oo, type EvaluateConditionalsErrors as op, type EvaluateConditionalsError as oq, type EvaluateConditionalsResponses as or, type EvaluateConditionalsResponse as os, type SearchCorrelatedMessageSubscriptionsData as ot, type SearchCorrelatedMessageSubscriptionsErrors as ou, type SearchCorrelatedMessageSubscriptionsError as ov, type SearchCorrelatedMessageSubscriptionsResponses as ow, type SearchCorrelatedMessageSubscriptionsResponse as ox, type EvaluateDecisionData as oy, type EvaluateDecisionErrors as oz, type ThreadedJob as p, type SearchElementInstancesResponses as p$, type DeleteDecisionInstanceData as p0, type DeleteDecisionInstanceErrors as p1, type DeleteDecisionInstanceError as p2, type DeleteDecisionInstanceResponses as p3, type DeleteDecisionInstanceResponse as p4, type DeleteDecisionInstancesBatchOperationData as p5, type DeleteDecisionInstancesBatchOperationErrors as p6, type DeleteDecisionInstancesBatchOperationError as p7, type DeleteDecisionInstancesBatchOperationResponses as p8, type DeleteDecisionInstancesBatchOperationResponse as p9, type CreateDocumentsErrors as pA, type CreateDocumentsError as pB, type CreateDocumentsResponses as pC, type CreateDocumentsResponse as pD, type DeleteDocumentData as pE, type DeleteDocumentErrors as pF, type DeleteDocumentError as pG, type DeleteDocumentResponses as pH, type DeleteDocumentResponse as pI, type GetDocumentData as pJ, type GetDocumentErrors as pK, type GetDocumentError as pL, type GetDocumentResponses as pM, type GetDocumentResponse as pN, type CreateDocumentLinkData as pO, type CreateDocumentLinkErrors as pP, type CreateDocumentLinkError as pQ, type CreateDocumentLinkResponses as pR, type CreateDocumentLinkResponse as pS, type ActivateAdHocSubProcessActivitiesData as pT, type ActivateAdHocSubProcessActivitiesErrors as pU, type ActivateAdHocSubProcessActivitiesError as pV, type ActivateAdHocSubProcessActivitiesResponses as pW, type ActivateAdHocSubProcessActivitiesResponse as pX, type SearchElementInstancesData as pY, type SearchElementInstancesErrors as pZ, type SearchElementInstancesError as p_, type SearchDecisionRequirementsData as pa, type SearchDecisionRequirementsErrors as pb, type SearchDecisionRequirementsError as pc, type SearchDecisionRequirementsResponses as pd, type SearchDecisionRequirementsResponse as pe, type GetDecisionRequirementsData as pf, type GetDecisionRequirementsErrors as pg, type GetDecisionRequirementsError as ph, type GetDecisionRequirementsResponses as pi, type GetDecisionRequirementsResponse as pj, type GetDecisionRequirementsXmlData as pk, type GetDecisionRequirementsXmlErrors as pl, type GetDecisionRequirementsXmlError as pm, type GetDecisionRequirementsXmlResponses as pn, type GetDecisionRequirementsXmlResponse as po, type CreateDeploymentData as pp, type CreateDeploymentErrors as pq, type CreateDeploymentError as pr, type CreateDeploymentResponses as ps, type CreateDeploymentResponse as pt, type CreateDocumentData as pu, type CreateDocumentErrors as pv, type CreateDocumentError as pw, type CreateDocumentResponses as px, type CreateDocumentResponse as py, type CreateDocumentsData as pz, type ThreadedJobHandler as q, type GetGroupError as q$, type SearchElementInstancesResponse as q0, type GetElementInstanceData as q1, type GetElementInstanceErrors as q2, type GetElementInstanceError as q3, type GetElementInstanceResponses as q4, type GetElementInstanceResponse as q5, type SearchElementInstanceIncidentsData as q6, type SearchElementInstanceIncidentsErrors as q7, type SearchElementInstanceIncidentsError as q8, type SearchElementInstanceIncidentsResponses as q9, type UpdateGlobalTaskListenerData as qA, type UpdateGlobalTaskListenerErrors as qB, type UpdateGlobalTaskListenerError as qC, type UpdateGlobalTaskListenerResponses as qD, type UpdateGlobalTaskListenerResponse as qE, type SearchGlobalTaskListenersData as qF, type SearchGlobalTaskListenersErrors as qG, type SearchGlobalTaskListenersError as qH, type SearchGlobalTaskListenersResponses as qI, type SearchGlobalTaskListenersResponse as qJ, type CreateGroupData as qK, type CreateGroupErrors as qL, type CreateGroupError as qM, type CreateGroupResponses as qN, type CreateGroupResponse as qO, type SearchGroupsData as qP, type SearchGroupsErrors as qQ, type SearchGroupsError as qR, type SearchGroupsResponses as qS, type SearchGroupsResponse as qT, type DeleteGroupData as qU, type DeleteGroupErrors as qV, type DeleteGroupError as qW, type DeleteGroupResponses as qX, type DeleteGroupResponse as qY, type GetGroupData as qZ, type GetGroupErrors as q_, type SearchElementInstanceIncidentsResponse as qa, type CreateElementInstanceVariablesData as qb, type CreateElementInstanceVariablesErrors as qc, type CreateElementInstanceVariablesError as qd, type CreateElementInstanceVariablesResponses as qe, type CreateElementInstanceVariablesResponse as qf, type EvaluateExpressionData as qg, type EvaluateExpressionErrors as qh, type EvaluateExpressionError as qi, type EvaluateExpressionResponses as qj, type EvaluateExpressionResponse as qk, type CreateGlobalTaskListenerData as ql, type CreateGlobalTaskListenerErrors as qm, type CreateGlobalTaskListenerError as qn, type CreateGlobalTaskListenerResponses as qo, type CreateGlobalTaskListenerResponse as qp, type DeleteGlobalTaskListenerData as qq, type DeleteGlobalTaskListenerErrors as qr, type DeleteGlobalTaskListenerError as qs, type DeleteGlobalTaskListenerResponses as qt, type DeleteGlobalTaskListenerResponse as qu, type GetGlobalTaskListenerData as qv, type GetGlobalTaskListenerErrors as qw, type GetGlobalTaskListenerError as qx, type GetGlobalTaskListenerResponses as qy, type GetGlobalTaskListenerResponse as qz, ThreadedJobWorker as r, type GetIncidentErrors as r$, type GetGroupResponses as r0, type GetGroupResponse as r1, type UpdateGroupData as r2, type UpdateGroupErrors as r3, type UpdateGroupError as r4, type UpdateGroupResponses as r5, type UpdateGroupResponse as r6, type SearchClientsForGroupData as r7, type SearchClientsForGroupErrors as r8, type SearchClientsForGroupError as r9, type AssignMappingRuleToGroupResponse as rA, type SearchRolesForGroupData as rB, type SearchRolesForGroupErrors as rC, type SearchRolesForGroupError as rD, type SearchRolesForGroupResponses as rE, type SearchRolesForGroupResponse as rF, type SearchUsersForGroupData as rG, type SearchUsersForGroupErrors as rH, type SearchUsersForGroupError as rI, type SearchUsersForGroupResponses as rJ, type SearchUsersForGroupResponse as rK, type UnassignUserFromGroupData as rL, type UnassignUserFromGroupErrors as rM, type UnassignUserFromGroupError as rN, type UnassignUserFromGroupResponses as rO, type UnassignUserFromGroupResponse as rP, type AssignUserToGroupData as rQ, type AssignUserToGroupErrors as rR, type AssignUserToGroupError as rS, type AssignUserToGroupResponses as rT, type AssignUserToGroupResponse as rU, type SearchIncidentsData as rV, type SearchIncidentsErrors as rW, type SearchIncidentsError as rX, type SearchIncidentsResponses as rY, type SearchIncidentsResponse as rZ, type GetIncidentData as r_, type SearchClientsForGroupResponses as ra, type SearchClientsForGroupResponse as rb, type UnassignClientFromGroupData as rc, type UnassignClientFromGroupErrors as rd, type UnassignClientFromGroupError as re, type UnassignClientFromGroupResponses as rf, type UnassignClientFromGroupResponse as rg, type AssignClientToGroupData as rh, type AssignClientToGroupErrors as ri, type AssignClientToGroupError as rj, type AssignClientToGroupResponses as rk, type AssignClientToGroupResponse as rl, type SearchMappingRulesForGroupData as rm, type SearchMappingRulesForGroupErrors as rn, type SearchMappingRulesForGroupError as ro, type SearchMappingRulesForGroupResponses as rp, type SearchMappingRulesForGroupResponse as rq, type UnassignMappingRuleFromGroupData as rr, type UnassignMappingRuleFromGroupErrors as rs, type UnassignMappingRuleFromGroupError as rt, type UnassignMappingRuleFromGroupResponses as ru, type UnassignMappingRuleFromGroupResponse as rv, type AssignMappingRuleToGroupData as rw, type AssignMappingRuleToGroupErrors as rx, type AssignMappingRuleToGroupError as ry, type AssignMappingRuleToGroupResponses as rz, type ThreadedJobWorkerConfig as s, type GetJobTimeSeriesStatisticsData as s$, type GetIncidentError as s0, type GetIncidentResponses as s1, type GetIncidentResponse as s2, type ResolveIncidentData as s3, type ResolveIncidentErrors as s4, type ResolveIncidentError as s5, type ResolveIncidentResponses as s6, type ResolveIncidentResponse as s7, type GetProcessInstanceStatisticsByDefinitionData as s8, type GetProcessInstanceStatisticsByDefinitionErrors as s9, type CompleteJobResponses as sA, type CompleteJobResponse as sB, type ThrowJobErrorData as sC, type ThrowJobErrorErrors as sD, type ThrowJobErrorError as sE, type ThrowJobErrorResponses as sF, type ThrowJobErrorResponse as sG, type FailJobData as sH, type FailJobErrors as sI, type FailJobError as sJ, type FailJobResponses as sK, type FailJobResponse as sL, type GetGlobalJobStatisticsData as sM, type GetGlobalJobStatisticsErrors as sN, type GetGlobalJobStatisticsError as sO, type GetGlobalJobStatisticsResponses as sP, type GetGlobalJobStatisticsResponse as sQ, type GetJobTypeStatisticsData as sR, type GetJobTypeStatisticsErrors as sS, type GetJobTypeStatisticsError as sT, type GetJobTypeStatisticsResponses as sU, type GetJobTypeStatisticsResponse as sV, type GetJobWorkerStatisticsData as sW, type GetJobWorkerStatisticsErrors as sX, type GetJobWorkerStatisticsError as sY, type GetJobWorkerStatisticsResponses as sZ, type GetJobWorkerStatisticsResponse as s_, type GetProcessInstanceStatisticsByDefinitionError as sa, type GetProcessInstanceStatisticsByDefinitionResponses as sb, type GetProcessInstanceStatisticsByDefinitionResponse as sc, type GetProcessInstanceStatisticsByErrorData as sd, type GetProcessInstanceStatisticsByErrorErrors as se, type GetProcessInstanceStatisticsByErrorError as sf, type GetProcessInstanceStatisticsByErrorResponses as sg, type GetProcessInstanceStatisticsByErrorResponse as sh, type ActivateJobsData as si, type ActivateJobsErrors as sj, type ActivateJobsError as sk, type ActivateJobsResponses as sl, type ActivateJobsResponse as sm, type SearchJobsData as sn, type SearchJobsErrors as so, type SearchJobsError as sp, type SearchJobsResponses as sq, type SearchJobsResponse as sr, type UpdateJobData as ss, type UpdateJobErrors as st, type UpdateJobError as su, type UpdateJobResponses as sv, type UpdateJobResponse as sw, type CompleteJobData as sx, type CompleteJobErrors as sy, type CompleteJobError as sz, ThreadPool as t, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as t$, type GetJobTimeSeriesStatisticsErrors as t0, type GetJobTimeSeriesStatisticsError as t1, type GetJobTimeSeriesStatisticsResponses as t2, type GetJobTimeSeriesStatisticsResponse as t3, type GetJobErrorStatisticsData as t4, type GetJobErrorStatisticsErrors as t5, type GetJobErrorStatisticsError as t6, type GetJobErrorStatisticsResponses as t7, type GetJobErrorStatisticsResponse as t8, type GetLicenseData as t9, type UpdateMappingRuleError as tA, type UpdateMappingRuleResponses as tB, type UpdateMappingRuleResponse as tC, type SearchMessageSubscriptionsData as tD, type SearchMessageSubscriptionsErrors as tE, type SearchMessageSubscriptionsError as tF, type SearchMessageSubscriptionsResponses as tG, type SearchMessageSubscriptionsResponse as tH, type CorrelateMessageData as tI, type CorrelateMessageErrors as tJ, type CorrelateMessageError as tK, type CorrelateMessageResponses as tL, type CorrelateMessageResponse as tM, type PublishMessageData as tN, type PublishMessageErrors as tO, type PublishMessageError as tP, type PublishMessageResponses as tQ, type PublishMessageResponse as tR, type SearchProcessDefinitionsData as tS, type SearchProcessDefinitionsErrors as tT, type SearchProcessDefinitionsError as tU, type SearchProcessDefinitionsResponses as tV, type SearchProcessDefinitionsResponse as tW, type GetProcessDefinitionMessageSubscriptionStatisticsData as tX, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as tY, type GetProcessDefinitionMessageSubscriptionStatisticsError as tZ, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as t_, type GetLicenseErrors as ta, type GetLicenseError as tb, type GetLicenseResponses as tc, type GetLicenseResponse as td, type CreateMappingRuleData as te, type CreateMappingRuleErrors as tf, type CreateMappingRuleError as tg, type CreateMappingRuleResponses as th, type CreateMappingRuleResponse as ti, type SearchMappingRuleData as tj, type SearchMappingRuleErrors as tk, type SearchMappingRuleError as tl, type SearchMappingRuleResponses as tm, type SearchMappingRuleResponse as tn, type DeleteMappingRuleData as to, type DeleteMappingRuleErrors as tp, type DeleteMappingRuleError as tq, type DeleteMappingRuleResponses as tr, type DeleteMappingRuleResponse as ts, type GetMappingRuleData as tt, type GetMappingRuleErrors as tu, type GetMappingRuleError as tv, type GetMappingRuleResponses as tw, type GetMappingRuleResponse as tx, type UpdateMappingRuleData as ty, type UpdateMappingRuleErrors as tz, type CamundaConfig as u, type SearchProcessInstancesResponses as u$, type GetProcessDefinitionInstanceStatisticsData as u0, type GetProcessDefinitionInstanceStatisticsErrors as u1, type GetProcessDefinitionInstanceStatisticsError as u2, type GetProcessDefinitionInstanceStatisticsResponses as u3, type GetProcessDefinitionInstanceStatisticsResponse as u4, type GetProcessDefinitionData as u5, type GetProcessDefinitionErrors as u6, type GetProcessDefinitionError as u7, type GetProcessDefinitionResponses as u8, type GetProcessDefinitionResponse as u9, type CancelProcessInstancesBatchOperationErrors as uA, type CancelProcessInstancesBatchOperationError as uB, type CancelProcessInstancesBatchOperationResponses as uC, type CancelProcessInstancesBatchOperationResponse as uD, type DeleteProcessInstancesBatchOperationData as uE, type DeleteProcessInstancesBatchOperationErrors as uF, type DeleteProcessInstancesBatchOperationError as uG, type DeleteProcessInstancesBatchOperationResponses as uH, type DeleteProcessInstancesBatchOperationResponse as uI, type ResolveIncidentsBatchOperationData as uJ, type ResolveIncidentsBatchOperationErrors as uK, type ResolveIncidentsBatchOperationError as uL, type ResolveIncidentsBatchOperationResponses as uM, type ResolveIncidentsBatchOperationResponse as uN, type MigrateProcessInstancesBatchOperationData as uO, type MigrateProcessInstancesBatchOperationErrors as uP, type MigrateProcessInstancesBatchOperationError as uQ, type MigrateProcessInstancesBatchOperationResponses as uR, type MigrateProcessInstancesBatchOperationResponse as uS, type ModifyProcessInstancesBatchOperationData as uT, type ModifyProcessInstancesBatchOperationErrors as uU, type ModifyProcessInstancesBatchOperationError as uV, type ModifyProcessInstancesBatchOperationResponses as uW, type ModifyProcessInstancesBatchOperationResponse as uX, type SearchProcessInstancesData as uY, type SearchProcessInstancesErrors as uZ, type SearchProcessInstancesError as u_, type GetStartProcessFormData as ua, type GetStartProcessFormErrors as ub, type GetStartProcessFormError as uc, type GetStartProcessFormResponses as ud, type GetStartProcessFormResponse as ue, type GetProcessDefinitionStatisticsData as uf, type GetProcessDefinitionStatisticsErrors as ug, type GetProcessDefinitionStatisticsError as uh, type GetProcessDefinitionStatisticsResponses as ui, type GetProcessDefinitionStatisticsResponse as uj, type GetProcessDefinitionXmlData as uk, type GetProcessDefinitionXmlErrors as ul, type GetProcessDefinitionXmlError as um, type GetProcessDefinitionXmlResponses as un, type GetProcessDefinitionXmlResponse as uo, type GetProcessDefinitionInstanceVersionStatisticsData as up, type GetProcessDefinitionInstanceVersionStatisticsErrors as uq, type GetProcessDefinitionInstanceVersionStatisticsError as ur, type GetProcessDefinitionInstanceVersionStatisticsResponses as us, type GetProcessDefinitionInstanceVersionStatisticsResponse as ut, type CreateProcessInstanceData as uu, type CreateProcessInstanceErrors as uv, type CreateProcessInstanceError as uw, type CreateProcessInstanceResponses as ux, type CreateProcessInstanceResponse as uy, type CancelProcessInstancesBatchOperationData as uz, type activateAdHocSubProcessActivitiesInput as v, type DeleteResourceError as v$, type SearchProcessInstancesResponse as v0, type GetProcessInstanceData as v1, type GetProcessInstanceErrors as v2, type GetProcessInstanceError as v3, type GetProcessInstanceResponses as v4, type GetProcessInstanceResponse as v5, type GetProcessInstanceCallHierarchyData as v6, type GetProcessInstanceCallHierarchyErrors as v7, type GetProcessInstanceCallHierarchyError as v8, type GetProcessInstanceCallHierarchyResponses as v9, type ModifyProcessInstanceData as vA, type ModifyProcessInstanceErrors as vB, type ModifyProcessInstanceError as vC, type ModifyProcessInstanceResponses as vD, type ModifyProcessInstanceResponse as vE, type GetProcessInstanceSequenceFlowsData as vF, type GetProcessInstanceSequenceFlowsErrors as vG, type GetProcessInstanceSequenceFlowsError as vH, type GetProcessInstanceSequenceFlowsResponses as vI, type GetProcessInstanceSequenceFlowsResponse as vJ, type GetProcessInstanceStatisticsData as vK, type GetProcessInstanceStatisticsErrors as vL, type GetProcessInstanceStatisticsError as vM, type GetProcessInstanceStatisticsResponses as vN, type GetProcessInstanceStatisticsResponse as vO, type GetResourceData as vP, type GetResourceErrors as vQ, type GetResourceError as vR, type GetResourceResponses as vS, type GetResourceResponse as vT, type GetResourceContentData as vU, type GetResourceContentErrors as vV, type GetResourceContentError as vW, type GetResourceContentResponses as vX, type GetResourceContentResponse as vY, type DeleteResourceData as vZ, type DeleteResourceErrors as v_, type GetProcessInstanceCallHierarchyResponse as va, type CancelProcessInstanceData as vb, type CancelProcessInstanceErrors as vc, type CancelProcessInstanceError as vd, type CancelProcessInstanceResponses as ve, type CancelProcessInstanceResponse as vf, type DeleteProcessInstanceData as vg, type DeleteProcessInstanceErrors as vh, type DeleteProcessInstanceError as vi, type DeleteProcessInstanceResponses as vj, type DeleteProcessInstanceResponse as vk, type ResolveProcessInstanceIncidentsData as vl, type ResolveProcessInstanceIncidentsErrors as vm, type ResolveProcessInstanceIncidentsError as vn, type ResolveProcessInstanceIncidentsResponses as vo, type ResolveProcessInstanceIncidentsResponse as vp, type SearchProcessInstanceIncidentsData as vq, type SearchProcessInstanceIncidentsErrors as vr, type SearchProcessInstanceIncidentsError as vs, type SearchProcessInstanceIncidentsResponses as vt, type SearchProcessInstanceIncidentsResponse as vu, type MigrateProcessInstanceData as vv, type MigrateProcessInstanceErrors as vw, type MigrateProcessInstanceError as vx, type MigrateProcessInstanceResponses as vy, type MigrateProcessInstanceResponse as vz, type activateJobsInput as w, type UnassignRoleFromMappingRuleErrors as w$, type DeleteResourceResponses as w0, type DeleteResourceResponse2 as w1, type CreateRoleData as w2, type CreateRoleErrors as w3, type CreateRoleError as w4, type CreateRoleResponses as w5, type CreateRoleResponse as w6, type SearchRolesData as w7, type SearchRolesErrors as w8, type SearchRolesError as w9, type UnassignRoleFromClientResponse as wA, type AssignRoleToClientData as wB, type AssignRoleToClientErrors as wC, type AssignRoleToClientError as wD, type AssignRoleToClientResponses as wE, type AssignRoleToClientResponse as wF, type SearchGroupsForRoleData as wG, type SearchGroupsForRoleErrors as wH, type SearchGroupsForRoleError as wI, type SearchGroupsForRoleResponses as wJ, type SearchGroupsForRoleResponse as wK, type UnassignRoleFromGroupData as wL, type UnassignRoleFromGroupErrors as wM, type UnassignRoleFromGroupError as wN, type UnassignRoleFromGroupResponses as wO, type UnassignRoleFromGroupResponse as wP, type AssignRoleToGroupData as wQ, type AssignRoleToGroupErrors as wR, type AssignRoleToGroupError as wS, type AssignRoleToGroupResponses as wT, type AssignRoleToGroupResponse as wU, type SearchMappingRulesForRoleData as wV, type SearchMappingRulesForRoleErrors as wW, type SearchMappingRulesForRoleError as wX, type SearchMappingRulesForRoleResponses as wY, type SearchMappingRulesForRoleResponse as wZ, type UnassignRoleFromMappingRuleData as w_, type SearchRolesResponses as wa, type SearchRolesResponse as wb, type DeleteRoleData as wc, type DeleteRoleErrors as wd, type DeleteRoleError as we, type DeleteRoleResponses as wf, type DeleteRoleResponse as wg, type GetRoleData as wh, type GetRoleErrors as wi, type GetRoleError as wj, type GetRoleResponses as wk, type GetRoleResponse as wl, type UpdateRoleData as wm, type UpdateRoleErrors as wn, type UpdateRoleError as wo, type UpdateRoleResponses as wp, type UpdateRoleResponse as wq, type SearchClientsForRoleData as wr, type SearchClientsForRoleErrors as ws, type SearchClientsForRoleError as wt, type SearchClientsForRoleResponses as wu, type SearchClientsForRoleResponse as wv, type UnassignRoleFromClientData as ww, type UnassignRoleFromClientErrors as wx, type UnassignRoleFromClientError as wy, type UnassignRoleFromClientResponses as wz, type assignClientToGroupInput as x, type GetTenantErrors as x$, type UnassignRoleFromMappingRuleError as x0, type UnassignRoleFromMappingRuleResponses as x1, type UnassignRoleFromMappingRuleResponse as x2, type AssignRoleToMappingRuleData as x3, type AssignRoleToMappingRuleErrors as x4, type AssignRoleToMappingRuleError as x5, type AssignRoleToMappingRuleResponses as x6, type AssignRoleToMappingRuleResponse as x7, type SearchUsersForRoleData as x8, type SearchUsersForRoleErrors as x9, type GetStatusResponse as xA, type GetUsageMetricsData as xB, type GetUsageMetricsErrors as xC, type GetUsageMetricsError as xD, type GetUsageMetricsResponses as xE, type GetUsageMetricsResponse as xF, type GetSystemConfigurationData as xG, type GetSystemConfigurationErrors as xH, type GetSystemConfigurationError as xI, type GetSystemConfigurationResponses as xJ, type GetSystemConfigurationResponse as xK, type CreateTenantData as xL, type CreateTenantErrors as xM, type CreateTenantError as xN, type CreateTenantResponses as xO, type CreateTenantResponse as xP, type SearchTenantsData as xQ, type SearchTenantsErrors as xR, type SearchTenantsError as xS, type SearchTenantsResponses as xT, type SearchTenantsResponse as xU, type DeleteTenantData as xV, type DeleteTenantErrors as xW, type DeleteTenantError as xX, type DeleteTenantResponses as xY, type DeleteTenantResponse as xZ, type GetTenantData as x_, type SearchUsersForRoleError as xa, type SearchUsersForRoleResponses as xb, type SearchUsersForRoleResponse as xc, type UnassignRoleFromUserData as xd, type UnassignRoleFromUserErrors as xe, type UnassignRoleFromUserError as xf, type UnassignRoleFromUserResponses as xg, type UnassignRoleFromUserResponse as xh, type AssignRoleToUserData as xi, type AssignRoleToUserErrors as xj, type AssignRoleToUserError as xk, type AssignRoleToUserResponses as xl, type AssignRoleToUserResponse as xm, type CreateAdminUserData as xn, type CreateAdminUserErrors as xo, type CreateAdminUserError as xp, type CreateAdminUserResponses as xq, type CreateAdminUserResponse as xr, type BroadcastSignalData as xs, type BroadcastSignalErrors as xt, type BroadcastSignalError as xu, type BroadcastSignalResponses as xv, type BroadcastSignalResponse as xw, type GetStatusData as xx, type GetStatusErrors as xy, type GetStatusResponses as xz, type assignClientToTenantInput as y, type UnassignUserFromTenantData as y$, type GetTenantError as y0, type GetTenantResponses as y1, type GetTenantResponse as y2, type UpdateTenantData as y3, type UpdateTenantErrors as y4, type UpdateTenantError as y5, type UpdateTenantResponses as y6, type UpdateTenantResponse as y7, type SearchClientsForTenantData as y8, type SearchClientsForTenantResponses as y9, type SearchMappingRulesForTenantResponse as yA, type UnassignMappingRuleFromTenantData as yB, type UnassignMappingRuleFromTenantErrors as yC, type UnassignMappingRuleFromTenantError as yD, type UnassignMappingRuleFromTenantResponses as yE, type UnassignMappingRuleFromTenantResponse as yF, type AssignMappingRuleToTenantData as yG, type AssignMappingRuleToTenantErrors as yH, type AssignMappingRuleToTenantError as yI, type AssignMappingRuleToTenantResponses as yJ, type AssignMappingRuleToTenantResponse as yK, type SearchRolesForTenantData as yL, type SearchRolesForTenantResponses as yM, type SearchRolesForTenantResponse as yN, type UnassignRoleFromTenantData as yO, type UnassignRoleFromTenantErrors as yP, type UnassignRoleFromTenantError as yQ, type UnassignRoleFromTenantResponses as yR, type UnassignRoleFromTenantResponse as yS, type AssignRoleToTenantData as yT, type AssignRoleToTenantErrors as yU, type AssignRoleToTenantError as yV, type AssignRoleToTenantResponses as yW, type AssignRoleToTenantResponse as yX, type SearchUsersForTenantData as yY, type SearchUsersForTenantResponses as yZ, type SearchUsersForTenantResponse as y_, type SearchClientsForTenantResponse as ya, type UnassignClientFromTenantData as yb, type UnassignClientFromTenantErrors as yc, type UnassignClientFromTenantError as yd, type UnassignClientFromTenantResponses as ye, type UnassignClientFromTenantResponse as yf, type AssignClientToTenantData as yg, type AssignClientToTenantErrors as yh, type AssignClientToTenantError as yi, type AssignClientToTenantResponses as yj, type AssignClientToTenantResponse as yk, type SearchGroupIdsForTenantData as yl, type SearchGroupIdsForTenantResponses as ym, type SearchGroupIdsForTenantResponse as yn, type UnassignGroupFromTenantData as yo, type UnassignGroupFromTenantErrors as yp, type UnassignGroupFromTenantError as yq, type UnassignGroupFromTenantResponses as yr, type UnassignGroupFromTenantResponse as ys, type AssignGroupToTenantData as yt, type AssignGroupToTenantErrors as yu, type AssignGroupToTenantError as yv, type AssignGroupToTenantResponses as yw, type AssignGroupToTenantResponse as yx, type SearchMappingRulesForTenantData as yy, type SearchMappingRulesForTenantResponses as yz, type assignGroupToTenantInput as z, type AssignUserTaskResponse as z$, type UnassignUserFromTenantErrors as z0, type UnassignUserFromTenantError as z1, type UnassignUserFromTenantResponses as z2, type UnassignUserFromTenantResponse as z3, type AssignUserToTenantData as z4, type AssignUserToTenantErrors as z5, type AssignUserToTenantError as z6, type AssignUserToTenantResponses as z7, type AssignUserToTenantResponse as z8, type GetTopologyData as z9, type UpdateUserError as zA, type UpdateUserResponses as zB, type UpdateUserResponse as zC, type SearchUserTasksData as zD, type SearchUserTasksErrors as zE, type SearchUserTasksError as zF, type SearchUserTasksResponses as zG, type SearchUserTasksResponse as zH, type GetUserTaskData as zI, type GetUserTaskErrors as zJ, type GetUserTaskError as zK, type GetUserTaskResponses as zL, type GetUserTaskResponse as zM, type UpdateUserTaskData as zN, type UpdateUserTaskErrors as zO, type UpdateUserTaskError as zP, type UpdateUserTaskResponses as zQ, type UpdateUserTaskResponse as zR, type UnassignUserTaskData as zS, type UnassignUserTaskErrors as zT, type UnassignUserTaskError as zU, type UnassignUserTaskResponses as zV, type UnassignUserTaskResponse as zW, type AssignUserTaskData as zX, type AssignUserTaskErrors as zY, type AssignUserTaskError as zZ, type AssignUserTaskResponses as z_, type GetTopologyErrors as za, type GetTopologyError as zb, type GetTopologyResponses as zc, type GetTopologyResponse as zd, type CreateUserData as ze, type CreateUserErrors as zf, type CreateUserError as zg, type CreateUserResponses as zh, type CreateUserResponse as zi, type SearchUsersData as zj, type SearchUsersErrors as zk, type SearchUsersError as zl, type SearchUsersResponses as zm, type SearchUsersResponse as zn, type DeleteUserData as zo, type DeleteUserErrors as zp, type DeleteUserError as zq, type DeleteUserResponses as zr, type DeleteUserResponse as zs, type GetUserData as zt, type GetUserErrors as zu, type GetUserError as zv, type GetUserResponses as zw, type GetUserResponse as zx, type UpdateUserData as zy, type UpdateUserErrors as zz };
|
|
25308
|
+
export { type createAdminUserInput as $, type AuthStrategy as A, type UpdateUserTaskResponses as A0, type UpdateUserTaskResponse as A1, type UnassignUserTaskData as A2, type UnassignUserTaskErrors as A3, type UnassignUserTaskError as A4, type UnassignUserTaskResponses as A5, type UnassignUserTaskResponse as A6, type AssignUserTaskData as A7, type AssignUserTaskErrors as A8, type AssignUserTaskError as A9, type SearchUserTaskVariablesResponse as AA, type SearchVariablesData as AB, type SearchVariablesErrors as AC, type SearchVariablesError as AD, type SearchVariablesResponses as AE, type SearchVariablesResponse as AF, type GetVariableData as AG, type GetVariableErrors as AH, type GetVariableError as AI, type GetVariableResponses as AJ, type GetVariableResponse as AK, assertConstraint as AL, classifyDomainError as AM, type DomainError as AN, type DomainErrorTag as AO, eventuallyTE as AP, type FnKeys as AQ, type Fpify as AR, foldDomainError as AS, type HttpError as AT, type Left as AU, type Right as AV, retryTE as AW, type TaskEither as AX, withTimeoutTE as AY, type AssignUserTaskResponses as Aa, type AssignUserTaskResponse as Ab, type SearchUserTaskAuditLogsData as Ac, type SearchUserTaskAuditLogsErrors as Ad, type SearchUserTaskAuditLogsError as Ae, type SearchUserTaskAuditLogsResponses as Af, type SearchUserTaskAuditLogsResponse as Ag, type CompleteUserTaskData as Ah, type CompleteUserTaskErrors as Ai, type CompleteUserTaskError as Aj, type CompleteUserTaskResponses as Ak, type CompleteUserTaskResponse as Al, type SearchUserTaskEffectiveVariablesData as Am, type SearchUserTaskEffectiveVariablesErrors as An, type SearchUserTaskEffectiveVariablesError as Ao, type SearchUserTaskEffectiveVariablesResponses as Ap, type SearchUserTaskEffectiveVariablesResponse as Aq, type GetUserTaskFormData as Ar, type GetUserTaskFormErrors as As, type GetUserTaskFormError as At, type GetUserTaskFormResponses as Au, type GetUserTaskFormResponse as Av, type SearchUserTaskVariablesData as Aw, type SearchUserTaskVariablesErrors as Ax, type SearchUserTaskVariablesError as Ay, type SearchUserTaskVariablesResponses as Az, type BackpressureSeverity as B, CamundaClient as C, type assignMappingRuleToGroupInput as D, type Either as E, type assignMappingRuleToTenantInput as F, type assignRoleToClientInput as G, type HttpRetryPolicy as H, type assignRoleToGroupInput as I, type Job as J, type assignRoleToMappingRuleInput as K, type assignRoleToTenantInput as L, type assignRoleToUserInput as M, type assignUserTaskInput as N, type OperationOptions as O, type assignUserToGroupInput as P, type assignUserToTenantInput as Q, type broadcastSignalInput as R, type SdkError as S, type TelemetryHooks as T, type cancelBatchOperationInput as U, type ValidationMode as V, type cancelProcessInstanceInput as W, type cancelProcessInstancesBatchOperationInput as X, type completeJobInput as Y, type completeUserTaskInput as Z, type correlateMessageInput as _, type CamundaOptions as a, type getIncidentConsistency as a$, type createAuthorizationInput as a0, type createDeploymentInput as a1, type createDocumentInput as a2, type createDocumentLinkInput as a3, type createDocumentsInput as a4, type createElementInstanceVariablesInput as a5, type createGlobalClusterVariableInput as a6, type createGlobalTaskListenerInput as a7, type createGroupInput as a8, type createMappingRuleInput as a9, type getAuthenticationInput as aA, type getAuthorizationInput as aB, type getAuthorizationConsistency as aC, type getBatchOperationInput as aD, type getBatchOperationConsistency as aE, type getDecisionDefinitionInput as aF, type getDecisionDefinitionConsistency as aG, type getDecisionDefinitionXmlInput as aH, type getDecisionDefinitionXmlConsistency as aI, type getDecisionInstanceInput as aJ, type getDecisionInstanceConsistency as aK, type getDecisionRequirementsInput as aL, type getDecisionRequirementsConsistency as aM, type getDecisionRequirementsXmlInput as aN, type getDecisionRequirementsXmlConsistency as aO, type getDocumentInput as aP, type getElementInstanceInput as aQ, type getElementInstanceConsistency as aR, type getGlobalClusterVariableInput as aS, type getGlobalClusterVariableConsistency as aT, type getGlobalJobStatisticsInput as aU, type getGlobalJobStatisticsConsistency as aV, type getGlobalTaskListenerInput as aW, type getGlobalTaskListenerConsistency as aX, type getGroupInput as aY, type getGroupConsistency as aZ, type getIncidentInput as a_, type createProcessInstanceInput as aa, type createRoleInput as ab, type createTenantInput as ac, type createTenantClusterVariableInput as ad, type createUserInput as ae, type deleteAuthorizationInput as af, type deleteDecisionInstanceInput as ag, type deleteDecisionInstancesBatchOperationInput as ah, type deleteDocumentInput as ai, type deleteGlobalClusterVariableInput as aj, type deleteGlobalTaskListenerInput as ak, type deleteGroupInput as al, type deleteMappingRuleInput as am, type deleteProcessInstanceInput as an, type deleteProcessInstancesBatchOperationInput as ao, type deleteResourceInput as ap, type deleteRoleInput as aq, type deleteTenantInput as ar, type deleteTenantClusterVariableInput as as, type deleteUserInput as at, type evaluateConditionalsInput as au, type evaluateDecisionInput as av, type evaluateExpressionInput as aw, type failJobInput as ax, type getAuditLogInput as ay, type getAuditLogConsistency as az, type CancelablePromise as b, type modifyProcessInstancesBatchOperationInput as b$, type getJobErrorStatisticsInput as b0, type getJobErrorStatisticsConsistency as b1, type getJobTimeSeriesStatisticsInput as b2, type getJobTimeSeriesStatisticsConsistency as b3, type getJobTypeStatisticsInput as b4, type getJobTypeStatisticsConsistency as b5, type getJobWorkerStatisticsInput as b6, type getJobWorkerStatisticsConsistency as b7, type getLicenseInput as b8, type getMappingRuleInput as b9, type getResourceConsistency as bA, type getResourceContentInput as bB, type getResourceContentConsistency as bC, type getRoleInput as bD, type getRoleConsistency as bE, type getStartProcessFormInput as bF, type getStartProcessFormConsistency as bG, type getStatusInput as bH, type getSystemConfigurationInput as bI, type getTenantInput as bJ, type getTenantConsistency as bK, type getTenantClusterVariableInput as bL, type getTenantClusterVariableConsistency as bM, type getTopologyInput as bN, type getUsageMetricsInput as bO, type getUsageMetricsConsistency as bP, type getUserInput as bQ, type getUserConsistency as bR, type getUserTaskInput as bS, type getUserTaskConsistency as bT, type getUserTaskFormInput as bU, type getUserTaskFormConsistency as bV, type getVariableInput as bW, type getVariableConsistency as bX, type migrateProcessInstanceInput as bY, type migrateProcessInstancesBatchOperationInput as bZ, type modifyProcessInstanceInput as b_, type getMappingRuleConsistency as ba, type getProcessDefinitionInput as bb, type getProcessDefinitionConsistency as bc, type getProcessDefinitionInstanceStatisticsInput as bd, type getProcessDefinitionInstanceStatisticsConsistency as be, type getProcessDefinitionInstanceVersionStatisticsInput as bf, type getProcessDefinitionInstanceVersionStatisticsConsistency as bg, type getProcessDefinitionMessageSubscriptionStatisticsInput as bh, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as bi, type getProcessDefinitionStatisticsInput as bj, type getProcessDefinitionStatisticsConsistency as bk, type getProcessDefinitionXmlInput as bl, type getProcessDefinitionXmlConsistency as bm, type getProcessInstanceInput as bn, type getProcessInstanceConsistency as bo, type getProcessInstanceCallHierarchyInput as bp, type getProcessInstanceCallHierarchyConsistency as bq, type getProcessInstanceSequenceFlowsInput as br, type getProcessInstanceSequenceFlowsConsistency as bs, type getProcessInstanceStatisticsInput as bt, type getProcessInstanceStatisticsConsistency as bu, type getProcessInstanceStatisticsByDefinitionInput as bv, type getProcessInstanceStatisticsByDefinitionConsistency as bw, type getProcessInstanceStatisticsByErrorInput as bx, type getProcessInstanceStatisticsByErrorConsistency as by, type getResourceInput as bz, createCamundaClient as c, type searchRolesInput as c$, type pinClockInput as c0, type publishMessageInput as c1, type resetClockInput as c2, type resolveIncidentInput as c3, type resolveIncidentsBatchOperationInput as c4, type resolveProcessInstanceIncidentsInput as c5, type resumeBatchOperationInput as c6, type searchAuditLogsInput as c7, type searchAuditLogsConsistency as c8, type searchAuthorizationsInput as c9, type searchGlobalTaskListenersConsistency as cA, type searchGroupIdsForTenantInput as cB, type searchGroupIdsForTenantConsistency as cC, type searchGroupsInput as cD, type searchGroupsConsistency as cE, type searchGroupsForRoleInput as cF, type searchGroupsForRoleConsistency as cG, type searchIncidentsInput as cH, type searchIncidentsConsistency as cI, type searchJobsInput as cJ, type searchJobsConsistency as cK, type searchMappingRuleInput as cL, type searchMappingRuleConsistency as cM, type searchMappingRulesForGroupInput as cN, type searchMappingRulesForGroupConsistency as cO, type searchMappingRulesForRoleInput as cP, type searchMappingRulesForRoleConsistency as cQ, type searchMappingRulesForTenantInput as cR, type searchMappingRulesForTenantConsistency as cS, type searchMessageSubscriptionsInput as cT, type searchMessageSubscriptionsConsistency as cU, type searchProcessDefinitionsInput as cV, type searchProcessDefinitionsConsistency as cW, type searchProcessInstanceIncidentsInput as cX, type searchProcessInstanceIncidentsConsistency as cY, type searchProcessInstancesInput as cZ, type searchProcessInstancesConsistency as c_, type searchAuthorizationsConsistency as ca, type searchBatchOperationItemsInput as cb, type searchBatchOperationItemsConsistency as cc, type searchBatchOperationsInput as cd, type searchBatchOperationsConsistency as ce, type searchClientsForGroupInput as cf, type searchClientsForGroupConsistency as cg, type searchClientsForRoleInput as ch, type searchClientsForRoleConsistency as ci, type searchClientsForTenantInput as cj, type searchClientsForTenantConsistency as ck, type searchClusterVariablesInput as cl, type searchClusterVariablesConsistency as cm, type searchCorrelatedMessageSubscriptionsInput as cn, type searchCorrelatedMessageSubscriptionsConsistency as co, type searchDecisionDefinitionsInput as cp, type searchDecisionDefinitionsConsistency as cq, type searchDecisionInstancesInput as cr, type searchDecisionInstancesConsistency as cs, type searchDecisionRequirementsInput as ct, type searchDecisionRequirementsConsistency as cu, type searchElementInstanceIncidentsInput as cv, type searchElementInstanceIncidentsConsistency as cw, type searchElementInstancesInput as cx, type searchElementInstancesConsistency as cy, type searchGlobalTaskListenersInput as cz, type CamundaFpClient as d, AuditLogOperationTypeEnum as d$, type searchRolesConsistency as d0, type searchRolesForGroupInput as d1, type searchRolesForGroupConsistency as d2, type searchRolesForTenantInput as d3, type searchRolesForTenantConsistency as d4, type searchTenantsInput as d5, type searchTenantsConsistency as d6, type searchUsersInput as d7, type searchUsersConsistency as d8, type searchUsersForGroupInput as d9, type unassignRoleFromTenantInput as dA, type unassignRoleFromUserInput as dB, type unassignUserFromGroupInput as dC, type unassignUserFromTenantInput as dD, type unassignUserTaskInput as dE, type updateAuthorizationInput as dF, type updateGlobalClusterVariableInput as dG, type updateGlobalTaskListenerInput as dH, type updateGroupInput as dI, type updateJobInput as dJ, type updateMappingRuleInput as dK, type updateRoleInput as dL, type updateTenantInput as dM, type updateTenantClusterVariableInput as dN, type updateUserInput as dO, type updateUserTaskInput as dP, type ExtendedDeploymentResult as dQ, CancelError as dR, type CamundaKey as dS, type ClientOptions as dT, type AuditLogResult as dU, type AuditLogSearchQuerySortRequest as dV, type AuditLogSearchQueryRequest as dW, type AuditLogFilter as dX, type AuditLogSearchQueryResult as dY, AuditLogEntityKey as dZ, AuditLogEntityTypeEnum as d_, type searchUsersForGroupConsistency as da, type searchUsersForRoleInput as db, type searchUsersForRoleConsistency as dc, type searchUsersForTenantInput as dd, type searchUsersForTenantConsistency as de, type searchUserTaskAuditLogsInput as df, type searchUserTaskAuditLogsConsistency as dg, type searchUserTaskEffectiveVariablesInput as dh, type searchUserTaskEffectiveVariablesConsistency as di, type searchUserTasksInput as dj, type searchUserTasksConsistency as dk, type searchUserTaskVariablesInput as dl, type searchUserTaskVariablesConsistency as dm, type searchVariablesInput as dn, type searchVariablesConsistency as dp, type suspendBatchOperationInput as dq, type throwJobErrorInput as dr, type unassignClientFromGroupInput as ds, type unassignClientFromTenantInput as dt, type unassignGroupFromTenantInput as du, type unassignMappingRuleFromGroupInput as dv, type unassignMappingRuleFromTenantInput as dw, type unassignRoleFromClientInput as dx, type unassignRoleFromGroupInput as dy, type unassignRoleFromMappingRuleInput as dz, createCamundaFpClient as e, type ClusterVariableSearchResult as e$, AuditLogActorTypeEnum as e0, AuditLogResultEnum as e1, AuditLogCategoryEnum as e2, type AuditLogEntityKeyFilterProperty as e3, type AdvancedAuditLogEntityKeyFilter as e4, type EntityTypeFilterProperty as e5, type AdvancedEntityTypeFilter as e6, type OperationTypeFilterProperty as e7, type AdvancedOperationTypeFilter as e8, type CategoryFilterProperty as e9, type BatchOperationItemSearchQuerySortRequest as eA, type BatchOperationItemSearchQuery as eB, type BatchOperationItemFilter as eC, type BatchOperationItemSearchQueryResult as eD, type BatchOperationItemResponse as eE, type DecisionInstanceDeletionBatchOperationRequest as eF, type ProcessInstanceCancellationBatchOperationRequest as eG, type ProcessInstanceIncidentResolutionBatchOperationRequest as eH, type ProcessInstanceDeletionBatchOperationRequest as eI, type ProcessInstanceMigrationBatchOperationRequest as eJ, type ProcessInstanceMigrationBatchOperationPlan as eK, type ProcessInstanceModificationBatchOperationRequest as eL, type ProcessInstanceModificationMoveBatchOperationInstruction as eM, BatchOperationItemStateEnum as eN, BatchOperationStateEnum as eO, BatchOperationTypeEnum as eP, type BatchOperationTypeFilterProperty as eQ, type AdvancedBatchOperationTypeFilter as eR, type BatchOperationStateFilterProperty as eS, type AdvancedBatchOperationStateFilter as eT, type BatchOperationItemStateFilterProperty as eU, type AdvancedBatchOperationItemStateFilter as eV, type ClockPinRequest as eW, ClusterVariableScopeEnum as eX, type CreateClusterVariableRequest as eY, type UpdateClusterVariableRequest as eZ, type ClusterVariableResult as e_, type AdvancedCategoryFilter as ea, type AuditLogResultFilterProperty as eb, type AdvancedResultFilter as ec, type AuditLogActorTypeFilterProperty as ed, type AdvancedActorTypeFilter as ee, type CamundaUserResult as ef, type AuthorizationIdBasedRequest as eg, type AuthorizationPropertyBasedRequest as eh, type AuthorizationRequest as ei, type AuthorizationSearchQuerySortRequest as ej, type AuthorizationSearchQuery as ek, type AuthorizationFilter as el, type AuthorizationResult as em, type AuthorizationSearchResult as en, type AuthorizationCreateResult as eo, PermissionTypeEnum as ep, ResourceTypeEnum as eq, OwnerTypeEnum as er, AuthorizationKey as es, type BatchOperationCreatedResult as et, type BatchOperationSearchQuerySortRequest as eu, type BatchOperationSearchQuery as ev, type BatchOperationFilter as ew, type BatchOperationSearchQueryResult as ex, type BatchOperationResponse as ey, type BatchOperationError as ez, isRight as f, type DocumentCreationBatchResponse as f$, type ClusterVariableResultBase as f0, type ClusterVariableSearchQueryRequest as f1, type ClusterVariableSearchQuerySortRequest as f2, type ClusterVariableSearchQueryFilterRequest as f3, type ClusterVariableScopeFilterProperty as f4, type AdvancedClusterVariableScopeFilter as f5, type ClusterVariableSearchQueryResult as f6, type TopologyResponse as f7, type BrokerInfo as f8, type Partition as f9, DecisionDefinitionTypeEnum as fA, DecisionInstanceStateEnum as fB, type AdvancedDecisionInstanceStateFilter as fC, type DecisionInstanceStateFilterProperty as fD, type DecisionRequirementsSearchQuerySortRequest as fE, type DecisionRequirementsSearchQuery as fF, type DecisionRequirementsFilter as fG, type DecisionRequirementsSearchQueryResult as fH, type DecisionRequirementsResult as fI, type DeploymentResult as fJ, type DeploymentMetadataResult as fK, type DeploymentProcessResult as fL, type DeploymentDecisionResult as fM, type DeploymentDecisionRequirementsResult as fN, type DeploymentFormResult as fO, type DeploymentResourceResult as fP, type DeleteResourceRequest as fQ, type DeleteResourceResponse as fR, type ResourceResult as fS, DeploymentKey as fT, type ResourceKey as fU, type DeploymentKeyFilterProperty as fV, type AdvancedDeploymentKeyFilter as fW, type ResourceKeyFilterProperty as fX, type AdvancedResourceKeyFilter as fY, type DocumentReference as fZ, type DocumentCreationFailureDetail as f_, type ConditionalEvaluationInstruction as fa, type EvaluateConditionalResult as fb, ConditionalEvaluationKey as fc, type ProcessInstanceReference as fd, StartCursor as fe, EndCursor as ff, type DecisionDefinitionSearchQuerySortRequest as fg, type DecisionDefinitionSearchQuery as fh, type DecisionDefinitionFilter as fi, type DecisionDefinitionSearchQueryResult as fj, type DecisionDefinitionResult as fk, type DecisionEvaluationInstruction as fl, type DecisionEvaluationById as fm, type DecisionEvaluationByKey as fn, type EvaluateDecisionResult as fo, type EvaluatedDecisionResult as fp, type DecisionInstanceSearchQuerySortRequest as fq, type DecisionInstanceSearchQuery as fr, type DecisionInstanceFilter as fs, type DeleteDecisionInstanceRequest as ft, type DecisionInstanceSearchQueryResult as fu, type DecisionInstanceResult as fv, type DecisionInstanceGetQueryResult as fw, type EvaluatedDecisionInputItem as fx, type EvaluatedDecisionOutputItem as fy, type MatchedDecisionRuleItem as fz, CamundaValidationError as g, ProcessDefinitionId as g$, type DocumentMetadata as g0, type DocumentMetadataResponse as g1, type DocumentLinkRequest as g2, type DocumentLink as g3, DocumentId as g4, type ElementInstanceSearchQuerySortRequest as g5, type ElementInstanceSearchQuery as g6, type ElementInstanceFilter as g7, type ElementInstanceStateFilterProperty as g8, type AdvancedElementInstanceStateFilter as g9, type GlobalTaskListenerSearchQueryRequest as gA, type GlobalTaskListenerSearchQuerySortRequest as gB, type GlobalTaskListenerSearchQueryFilterRequest as gC, type GlobalListenerSourceFilterProperty as gD, type AdvancedGlobalListenerSourceFilter as gE, type GlobalTaskListenerEventTypeFilterProperty as gF, type AdvancedGlobalTaskListenerEventTypeFilter as gG, type GlobalTaskListenerSearchQueryResult as gH, type GroupCreateRequest as gI, type GroupCreateResult as gJ, type GroupUpdateRequest as gK, type GroupUpdateResult as gL, type GroupResult as gM, type GroupSearchQuerySortRequest as gN, type GroupSearchQueryRequest as gO, type GroupFilter as gP, type GroupSearchQueryResult as gQ, type GroupUserResult as gR, type GroupUserSearchResult as gS, type GroupUserSearchQueryRequest as gT, type GroupUserSearchQuerySortRequest as gU, type GroupClientResult as gV, type GroupClientSearchResult as gW, type GroupClientSearchQueryRequest as gX, type GroupMappingRuleSearchResult as gY, type GroupRoleSearchResult as gZ, type GroupClientSearchQuerySortRequest as g_, type ElementInstanceSearchQueryResult as ga, type ElementInstanceResult as gb, ElementInstanceStateEnum as gc, type AdHocSubProcessActivateActivitiesInstruction as gd, type AdHocSubProcessActivateActivityReference as ge, type ExpressionEvaluationRequest as gf, type ExpressionEvaluationResult as gg, type ExpressionEvaluationWarningItem as gh, type LikeFilter as gi, type BasicStringFilter as gj, type AdvancedStringFilter as gk, type BasicStringFilterProperty as gl, type StringFilterProperty as gm, type AdvancedIntegerFilter as gn, type IntegerFilterProperty as go, type AdvancedDateTimeFilter as gp, type DateTimeFilterProperty as gq, type FormResult as gr, GlobalListenerSourceEnum as gs, GlobalTaskListenerEventTypeEnum as gt, type GlobalListenerBase as gu, type GlobalTaskListenerBase as gv, type GlobalTaskListenerEventTypes as gw, type CreateGlobalTaskListenerRequest as gx, type UpdateGlobalTaskListenerRequest as gy, type GlobalTaskListenerResult as gz, EventualConsistencyTimeoutError as h, type JobCompletionRequest as h$, ElementId as h0, FormId as h1, DecisionDefinitionId as h2, GlobalListenerId as h3, TenantId as h4, Username as h5, Tag as h6, type TagSet as h7, BusinessId as h8, type ElementIdFilterProperty as h9, type JobTypeStatisticsQuery as hA, type JobTypeStatisticsFilter as hB, type JobTypeStatisticsQueryResult as hC, type JobTypeStatisticsItem as hD, type JobWorkerStatisticsQuery as hE, type JobWorkerStatisticsFilter as hF, type JobWorkerStatisticsQueryResult as hG, type JobWorkerStatisticsItem as hH, type JobTimeSeriesStatisticsQuery as hI, type JobTimeSeriesStatisticsFilter as hJ, type JobTimeSeriesStatisticsQueryResult as hK, type JobTimeSeriesStatisticsItem as hL, type JobErrorStatisticsQuery as hM, type JobErrorStatisticsFilter as hN, type JobErrorStatisticsQueryResult as hO, type JobErrorStatisticsItem as hP, type JobActivationRequest as hQ, type JobActivationResult as hR, type ActivatedJobResult$1 as hS, type UserTaskProperties as hT, type JobSearchQuery as hU, type JobSearchQuerySortRequest as hV, type JobFilter as hW, type JobSearchQueryResult as hX, type JobSearchResult as hY, type JobFailRequest as hZ, type JobErrorRequest$1 as h_, type AdvancedElementIdFilter as ha, type ProcessDefinitionIdFilterProperty as hb, type AdvancedProcessDefinitionIdFilter as hc, type IncidentSearchQuery as hd, type IncidentFilter as he, type IncidentErrorTypeFilterProperty as hf, type AdvancedIncidentErrorTypeFilter as hg, IncidentErrorTypeEnum as hh, type IncidentStateFilterProperty as hi, type AdvancedIncidentStateFilter as hj, IncidentStateEnum as hk, type IncidentSearchQuerySortRequest as hl, type IncidentSearchQueryResult as hm, type IncidentResult as hn, type IncidentResolutionRequest as ho, type IncidentProcessInstanceStatisticsByErrorQuery as hp, type IncidentProcessInstanceStatisticsByErrorQueryResult as hq, type IncidentProcessInstanceStatisticsByErrorResult as hr, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as hs, type IncidentProcessInstanceStatisticsByDefinitionQuery as ht, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as hu, type IncidentProcessInstanceStatisticsByDefinitionResult as hv, type IncidentProcessInstanceStatisticsByDefinitionFilter as hw, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as hx, type GlobalJobStatisticsQueryResult as hy, type StatusMetric as hz, isLeft as i, type MappingRuleCreateRequest as i$, type JobResult as i0, type JobResultUserTask as i1, type JobResultCorrections as i2, type JobResultAdHocSubProcess as i3, type JobResultActivateElement as i4, type JobUpdateRequest as i5, type JobChangeset as i6, TenantFilterEnum as i7, JobStateEnum as i8, JobKindEnum as i9, AuditLogKey as iA, type ProcessDefinitionKeyFilterProperty as iB, type AdvancedProcessDefinitionKeyFilter as iC, type ProcessInstanceKeyFilterProperty as iD, type AdvancedProcessInstanceKeyFilter as iE, type ElementInstanceKeyFilterProperty as iF, type AdvancedElementInstanceKeyFilter as iG, type JobKeyFilterProperty as iH, type AdvancedJobKeyFilter as iI, type DecisionDefinitionKeyFilterProperty as iJ, type AdvancedDecisionDefinitionKeyFilter as iK, type ScopeKeyFilterProperty as iL, type AdvancedScopeKeyFilter as iM, type VariableKeyFilterProperty as iN, type AdvancedVariableKeyFilter as iO, type DecisionEvaluationInstanceKeyFilterProperty as iP, type AdvancedDecisionEvaluationInstanceKeyFilter as iQ, type AuditLogKeyFilterProperty as iR, type AdvancedAuditLogKeyFilter as iS, type FormKeyFilterProperty as iT, type AdvancedFormKeyFilter as iU, type DecisionEvaluationKeyFilterProperty as iV, type AdvancedDecisionEvaluationKeyFilter as iW, type DecisionRequirementsKeyFilterProperty as iX, type AdvancedDecisionRequirementsKeyFilter as iY, type LicenseResponse as iZ, type MappingRuleCreateUpdateRequest as i_, JobListenerEventTypeEnum as ia, type JobKindFilterProperty as ib, type AdvancedJobKindFilter as ic, type JobListenerEventTypeFilterProperty as id, type AdvancedJobListenerEventTypeFilter as ie, type JobStateFilterProperty as ig, type AdvancedJobStateFilter as ih, type LongKey as ii, ProcessInstanceKey as ij, ProcessDefinitionKey as ik, ElementInstanceKey as il, UserTaskKey as im, FormKey as io, VariableKey as ip, type ScopeKey as iq, IncidentKey as ir, JobKey as is, DecisionDefinitionKey as it, DecisionEvaluationInstanceKey as iu, DecisionEvaluationKey as iv, DecisionRequirementsKey as iw, DecisionInstanceKey as ix, BatchOperationKey as iy, type OperationReference as iz, isSdkError as j, type BaseProcessInstanceFilterFields as j$, type MappingRuleUpdateRequest as j0, type MappingRuleCreateUpdateResult as j1, type MappingRuleCreateResult as j2, type MappingRuleUpdateResult as j3, type MappingRuleSearchQueryResult as j4, type MappingRuleResult as j5, type MappingRuleSearchQuerySortRequest as j6, type MappingRuleSearchQueryRequest as j7, type MappingRuleFilter as j8, type MessageCorrelationRequest as j9, type ProcessDefinitionFilter as jA, type ProcessDefinitionSearchQueryResult as jB, type ProcessDefinitionResult as jC, type ProcessDefinitionElementStatisticsQuery as jD, type ProcessDefinitionElementStatisticsQueryResult as jE, type ProcessElementStatisticsResult as jF, type ProcessDefinitionMessageSubscriptionStatisticsQuery as jG, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as jH, type ProcessDefinitionMessageSubscriptionStatisticsResult as jI, type ProcessDefinitionInstanceStatisticsQuery as jJ, type ProcessDefinitionInstanceStatisticsQueryResult as jK, type ProcessDefinitionInstanceStatisticsResult as jL, type ProcessDefinitionInstanceStatisticsQuerySortRequest as jM, type ProcessDefinitionInstanceVersionStatisticsQuery as jN, type ProcessDefinitionInstanceVersionStatisticsFilter as jO, type ProcessDefinitionInstanceVersionStatisticsQueryResult as jP, type ProcessDefinitionInstanceVersionStatisticsResult as jQ, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as jR, type ProcessInstanceCreationInstruction as jS, type ProcessInstanceCreationInstructionById as jT, type ProcessInstanceCreationInstructionByKey as jU, type ProcessInstanceCreationStartInstruction as jV, type ProcessInstanceCreationRuntimeInstruction as jW, type ProcessInstanceCreationTerminateInstruction as jX, type CreateProcessInstanceResult as jY, type ProcessInstanceSearchQuerySortRequest as jZ, type ProcessInstanceSearchQuery as j_, type MessageCorrelationResult as ja, type MessagePublicationRequest as jb, type MessagePublicationResult as jc, type MessageSubscriptionSearchQueryResult as jd, type MessageSubscriptionResult as je, type MessageSubscriptionSearchQuerySortRequest as jf, type MessageSubscriptionSearchQuery as jg, type MessageSubscriptionFilter as jh, type CorrelatedMessageSubscriptionSearchQueryResult as ji, type CorrelatedMessageSubscriptionResult as jj, type CorrelatedMessageSubscriptionSearchQuery as jk, type CorrelatedMessageSubscriptionSearchQuerySortRequest as jl, MessageSubscriptionStateEnum as jm, MessageSubscriptionTypeEnum as jn, type CorrelatedMessageSubscriptionFilter as jo, type MessageSubscriptionTypeFilterProperty as jp, type AdvancedMessageSubscriptionTypeFilter as jq, type MessageSubscriptionStateFilterProperty as jr, type AdvancedMessageSubscriptionStateFilter as js, type AdvancedMessageSubscriptionKeyFilter as jt, type MessageSubscriptionKeyFilterProperty as ju, MessageSubscriptionKey as jv, MessageKey as jw, type ProblemDetail as jx, type ProcessDefinitionSearchQuerySortRequest as jy, type ProcessDefinitionSearchQuery as jz, type EnrichedActivatedJob as k, SignalKey as k$, type ProcessDefinitionStatisticsFilter as k0, type ProcessInstanceFilterFields as k1, type ProcessInstanceFilter as k2, type ProcessInstanceSearchQueryResult as k3, type ProcessInstanceResult as k4, type CancelProcessInstanceRequest as k5, type DeleteProcessInstanceRequest as k6, type ProcessInstanceCallHierarchyEntry as k7, type ProcessInstanceSequenceFlowsQueryResult as k8, type ProcessInstanceSequenceFlowResult as k9, type RoleSearchQueryRequest as kA, type RoleFilter as kB, type RoleSearchQueryResult as kC, type RoleUserResult as kD, type RoleUserSearchResult as kE, type RoleUserSearchQueryRequest as kF, type RoleUserSearchQuerySortRequest as kG, type RoleClientResult as kH, type RoleClientSearchResult as kI, type RoleClientSearchQueryRequest as kJ, type RoleClientSearchQuerySortRequest as kK, type RoleGroupResult as kL, type RoleGroupSearchResult as kM, type RoleGroupSearchQueryRequest as kN, type RoleMappingRuleSearchResult as kO, type RoleGroupSearchQuerySortRequest as kP, type SearchQueryRequest as kQ, type SearchQueryPageRequest as kR, type LimitPagination as kS, type OffsetPagination as kT, type CursorForwardPagination as kU, type CursorBackwardPagination as kV, type SearchQueryResponse as kW, SortOrderEnum as kX, type SearchQueryPageResponse as kY, type SignalBroadcastRequest as kZ, type SignalBroadcastResult as k_, type ProcessInstanceElementStatisticsQueryResult as ka, type ProcessInstanceMigrationInstruction as kb, type MigrateProcessInstanceMappingInstruction as kc, type ProcessInstanceModificationInstruction as kd, type ProcessInstanceModificationActivateInstruction as ke, type ModifyProcessInstanceVariableInstruction as kf, type ProcessInstanceModificationMoveInstruction as kg, type SourceElementInstruction as kh, type SourceElementIdInstruction as ki, type SourceElementInstanceKeyInstruction as kj, type AncestorScopeInstruction as kk, type DirectAncestorKeyInstruction as kl, type InferredAncestorKeyInstruction as km, type UseSourceParentKeyInstruction as kn, type ProcessInstanceModificationTerminateInstruction as ko, type ProcessInstanceModificationTerminateByIdInstruction as kp, type ProcessInstanceModificationTerminateByKeyInstruction as kq, ProcessInstanceStateEnum as kr, type AdvancedProcessInstanceStateFilter as ks, type ProcessInstanceStateFilterProperty as kt, type RoleCreateRequest as ku, type RoleCreateResult as kv, type RoleUpdateRequest as kw, type RoleUpdateResult as kx, type RoleResult as ky, type RoleSearchQuerySortRequest as kz, JobActionReceipt as l, type AuditLogEntityKeyExactMatch as l$, type UsageMetricsResponse as l0, type UsageMetricsResponseItem as l1, type SystemConfigurationResponse as l2, type JobMetricsConfigurationResponse as l3, type TenantCreateRequest as l4, type TenantCreateResult as l5, type TenantUpdateRequest as l6, type TenantUpdateResult as l7, type TenantResult as l8, type TenantSearchQuerySortRequest as l9, type UserTaskVariableSearchQuerySortRequest as lA, type UserTaskVariableSearchQueryRequest as lB, type UserTaskEffectiveVariableSearchQueryRequest as lC, type UserTaskAuditLogSearchQueryRequest as lD, UserTaskStateEnum as lE, type UserTaskVariableFilter as lF, type UserTaskStateFilterProperty as lG, type AdvancedUserTaskStateFilter as lH, type UserTaskAuditLogFilter as lI, type UserRequest as lJ, type UserCreateResult as lK, type UserUpdateRequest as lL, type UserUpdateResult as lM, type UserResult as lN, type UserSearchQuerySortRequest as lO, type UserSearchQueryRequest as lP, type UserFilter as lQ, type UserSearchResult as lR, type VariableSearchQuerySortRequest as lS, type VariableSearchQuery as lT, type VariableFilter as lU, type VariableSearchQueryResult as lV, type VariableSearchResult as lW, type VariableResult as lX, type VariableResultBase as lY, type VariableValueFilterProperty as lZ, type SetVariableRequest as l_, type TenantSearchQueryRequest as la, type TenantFilter as lb, type TenantSearchQueryResult as lc, type TenantUserResult as ld, type TenantUserSearchResult as le, type TenantUserSearchQueryRequest as lf, type TenantUserSearchQuerySortRequest as lg, type TenantClientResult as lh, type TenantClientSearchResult as li, type TenantClientSearchQueryRequest as lj, type TenantClientSearchQuerySortRequest as lk, type TenantGroupResult as ll, type TenantGroupSearchResult as lm, type TenantGroupSearchQueryRequest as ln, type TenantRoleSearchResult as lo, type TenantMappingRuleSearchResult as lp, type TenantGroupSearchQuerySortRequest as lq, type UserTaskSearchQuerySortRequest as lr, type UserTaskSearchQuery as ls, type UserTaskFilter as lt, type UserTaskSearchQueryResult as lu, type UserTaskResult as lv, type UserTaskCompletionRequest as lw, type UserTaskAssignmentRequest as lx, type UserTaskUpdateRequest as ly, type Changeset as lz, JobWorker as m, type SearchAuthorizationsResponse as m$, type EntityTypeExactMatch as m0, type OperationTypeExactMatch as m1, type CategoryExactMatch as m2, type AuditLogResultExactMatch as m3, type AuditLogActorTypeExactMatch as m4, type BatchOperationTypeExactMatch as m5, type BatchOperationStateExactMatch as m6, type BatchOperationItemStateExactMatch as m7, type ClusterVariableScopeExactMatch as m8, type DecisionInstanceStateExactMatch as m9, type MessageSubscriptionKeyExactMatch as mA, type ProcessInstanceStateExactMatch as mB, type UserTaskStateExactMatch as mC, type SearchAuditLogsData as mD, type SearchAuditLogsErrors as mE, type SearchAuditLogsError as mF, type SearchAuditLogsResponses as mG, type SearchAuditLogsResponse as mH, type GetAuditLogData as mI, type GetAuditLogErrors as mJ, type GetAuditLogError as mK, type GetAuditLogResponses as mL, type GetAuditLogResponse as mM, type GetAuthenticationData as mN, type GetAuthenticationErrors as mO, type GetAuthenticationError as mP, type GetAuthenticationResponses as mQ, type GetAuthenticationResponse as mR, type CreateAuthorizationData as mS, type CreateAuthorizationErrors as mT, type CreateAuthorizationError as mU, type CreateAuthorizationResponses as mV, type CreateAuthorizationResponse as mW, type SearchAuthorizationsData as mX, type SearchAuthorizationsErrors as mY, type SearchAuthorizationsError as mZ, type SearchAuthorizationsResponses as m_, type DeploymentKeyExactMatch as ma, type ResourceKeyExactMatch as mb, type ElementInstanceStateExactMatch as mc, type GlobalListenerSourceExactMatch as md, type GlobalTaskListenerEventTypeExactMatch as me, type ElementIdExactMatch as mf, type ProcessDefinitionIdExactMatch as mg, type IncidentErrorTypeExactMatch as mh, type IncidentStateExactMatch as mi, type JobKindExactMatch as mj, type JobListenerEventTypeExactMatch as mk, type JobStateExactMatch as ml, type ProcessDefinitionKeyExactMatch as mm, type ProcessInstanceKeyExactMatch as mn, type ElementInstanceKeyExactMatch as mo, type JobKeyExactMatch as mp, type DecisionDefinitionKeyExactMatch as mq, type ScopeKeyExactMatch as mr, type VariableKeyExactMatch as ms, type DecisionEvaluationInstanceKeyExactMatch as mt, type AuditLogKeyExactMatch as mu, type FormKeyExactMatch as mv, type DecisionEvaluationKeyExactMatch as mw, type DecisionRequirementsKeyExactMatch as mx, type MessageSubscriptionTypeExactMatch as my, type MessageSubscriptionStateExactMatch as mz, type JobWorkerConfig as n, type DeleteGlobalClusterVariableResponses as n$, type DeleteAuthorizationData as n0, type DeleteAuthorizationErrors as n1, type DeleteAuthorizationError as n2, type DeleteAuthorizationResponses as n3, type DeleteAuthorizationResponse as n4, type GetAuthorizationData as n5, type GetAuthorizationErrors as n6, type GetAuthorizationError as n7, type GetAuthorizationResponses as n8, type GetAuthorizationResponse as n9, type ResumeBatchOperationErrors as nA, type ResumeBatchOperationError as nB, type ResumeBatchOperationResponses as nC, type ResumeBatchOperationResponse as nD, type SuspendBatchOperationData as nE, type SuspendBatchOperationErrors as nF, type SuspendBatchOperationError as nG, type SuspendBatchOperationResponses as nH, type SuspendBatchOperationResponse as nI, type PinClockData as nJ, type PinClockErrors as nK, type PinClockError as nL, type PinClockResponses as nM, type PinClockResponse as nN, type ResetClockData as nO, type ResetClockErrors as nP, type ResetClockError as nQ, type ResetClockResponses as nR, type ResetClockResponse as nS, type CreateGlobalClusterVariableData as nT, type CreateGlobalClusterVariableErrors as nU, type CreateGlobalClusterVariableError as nV, type CreateGlobalClusterVariableResponses as nW, type CreateGlobalClusterVariableResponse as nX, type DeleteGlobalClusterVariableData as nY, type DeleteGlobalClusterVariableErrors as nZ, type DeleteGlobalClusterVariableError as n_, type UpdateAuthorizationData as na, type UpdateAuthorizationErrors as nb, type UpdateAuthorizationError as nc, type UpdateAuthorizationResponses as nd, type UpdateAuthorizationResponse as ne, type SearchBatchOperationItemsData as nf, type SearchBatchOperationItemsErrors as ng, type SearchBatchOperationItemsError as nh, type SearchBatchOperationItemsResponses as ni, type SearchBatchOperationItemsResponse as nj, type SearchBatchOperationsData as nk, type SearchBatchOperationsErrors as nl, type SearchBatchOperationsError as nm, type SearchBatchOperationsResponses as nn, type SearchBatchOperationsResponse as no, type GetBatchOperationData as np, type GetBatchOperationErrors as nq, type GetBatchOperationError as nr, type GetBatchOperationResponses as ns, type GetBatchOperationResponse as nt, type CancelBatchOperationData as nu, type CancelBatchOperationErrors as nv, type CancelBatchOperationError as nw, type CancelBatchOperationResponses as nx, type CancelBatchOperationResponse as ny, type ResumeBatchOperationData as nz, type SupportLogger as o, type GetDecisionDefinitionXmlError as o$, type DeleteGlobalClusterVariableResponse as o0, type GetGlobalClusterVariableData as o1, type GetGlobalClusterVariableErrors as o2, type GetGlobalClusterVariableError as o3, type GetGlobalClusterVariableResponses as o4, type GetGlobalClusterVariableResponse as o5, type UpdateGlobalClusterVariableData as o6, type UpdateGlobalClusterVariableErrors as o7, type UpdateGlobalClusterVariableError as o8, type UpdateGlobalClusterVariableResponses as o9, type EvaluateConditionalsData as oA, type EvaluateConditionalsErrors as oB, type EvaluateConditionalsError as oC, type EvaluateConditionalsResponses as oD, type EvaluateConditionalsResponse as oE, type SearchCorrelatedMessageSubscriptionsData as oF, type SearchCorrelatedMessageSubscriptionsErrors as oG, type SearchCorrelatedMessageSubscriptionsError as oH, type SearchCorrelatedMessageSubscriptionsResponses as oI, type SearchCorrelatedMessageSubscriptionsResponse as oJ, type EvaluateDecisionData as oK, type EvaluateDecisionErrors as oL, type EvaluateDecisionError as oM, type EvaluateDecisionResponses as oN, type EvaluateDecisionResponse as oO, type SearchDecisionDefinitionsData as oP, type SearchDecisionDefinitionsErrors as oQ, type SearchDecisionDefinitionsError as oR, type SearchDecisionDefinitionsResponses as oS, type SearchDecisionDefinitionsResponse as oT, type GetDecisionDefinitionData as oU, type GetDecisionDefinitionErrors as oV, type GetDecisionDefinitionError as oW, type GetDecisionDefinitionResponses as oX, type GetDecisionDefinitionResponse as oY, type GetDecisionDefinitionXmlData as oZ, type GetDecisionDefinitionXmlErrors as o_, type UpdateGlobalClusterVariableResponse as oa, type SearchClusterVariablesData as ob, type SearchClusterVariablesErrors as oc, type SearchClusterVariablesError as od, type SearchClusterVariablesResponses as oe, type SearchClusterVariablesResponse as of, type CreateTenantClusterVariableData as og, type CreateTenantClusterVariableErrors as oh, type CreateTenantClusterVariableError as oi, type CreateTenantClusterVariableResponses as oj, type CreateTenantClusterVariableResponse as ok, type DeleteTenantClusterVariableData as ol, type DeleteTenantClusterVariableErrors as om, type DeleteTenantClusterVariableError as on, type DeleteTenantClusterVariableResponses as oo, type DeleteTenantClusterVariableResponse as op, type GetTenantClusterVariableData as oq, type GetTenantClusterVariableErrors as or, type GetTenantClusterVariableError as os, type GetTenantClusterVariableResponses as ot, type GetTenantClusterVariableResponse as ou, type UpdateTenantClusterVariableData as ov, type UpdateTenantClusterVariableErrors as ow, type UpdateTenantClusterVariableError as ox, type UpdateTenantClusterVariableResponses as oy, type UpdateTenantClusterVariableResponse as oz, type ThreadedJob as p, type CreateDocumentLinkErrors as p$, type GetDecisionDefinitionXmlResponses as p0, type GetDecisionDefinitionXmlResponse as p1, type SearchDecisionInstancesData as p2, type SearchDecisionInstancesErrors as p3, type SearchDecisionInstancesError as p4, type SearchDecisionInstancesResponses as p5, type SearchDecisionInstancesResponse as p6, type GetDecisionInstanceData as p7, type GetDecisionInstanceErrors as p8, type GetDecisionInstanceError as p9, type GetDecisionRequirementsXmlResponse as pA, type CreateDeploymentData as pB, type CreateDeploymentErrors as pC, type CreateDeploymentError as pD, type CreateDeploymentResponses as pE, type CreateDeploymentResponse as pF, type CreateDocumentData as pG, type CreateDocumentErrors as pH, type CreateDocumentError as pI, type CreateDocumentResponses as pJ, type CreateDocumentResponse as pK, type CreateDocumentsData as pL, type CreateDocumentsErrors as pM, type CreateDocumentsError as pN, type CreateDocumentsResponses as pO, type CreateDocumentsResponse as pP, type DeleteDocumentData as pQ, type DeleteDocumentErrors as pR, type DeleteDocumentError as pS, type DeleteDocumentResponses as pT, type DeleteDocumentResponse as pU, type GetDocumentData as pV, type GetDocumentErrors as pW, type GetDocumentError as pX, type GetDocumentResponses as pY, type GetDocumentResponse as pZ, type CreateDocumentLinkData as p_, type GetDecisionInstanceResponses as pa, type GetDecisionInstanceResponse as pb, type DeleteDecisionInstanceData as pc, type DeleteDecisionInstanceErrors as pd, type DeleteDecisionInstanceError as pe, type DeleteDecisionInstanceResponses as pf, type DeleteDecisionInstanceResponse as pg, type DeleteDecisionInstancesBatchOperationData as ph, type DeleteDecisionInstancesBatchOperationErrors as pi, type DeleteDecisionInstancesBatchOperationError as pj, type DeleteDecisionInstancesBatchOperationResponses as pk, type DeleteDecisionInstancesBatchOperationResponse as pl, type SearchDecisionRequirementsData as pm, type SearchDecisionRequirementsErrors as pn, type SearchDecisionRequirementsError as po, type SearchDecisionRequirementsResponses as pp, type SearchDecisionRequirementsResponse as pq, type GetDecisionRequirementsData as pr, type GetDecisionRequirementsErrors as ps, type GetDecisionRequirementsError as pt, type GetDecisionRequirementsResponses as pu, type GetDecisionRequirementsResponse as pv, type GetDecisionRequirementsXmlData as pw, type GetDecisionRequirementsXmlErrors as px, type GetDecisionRequirementsXmlError as py, type GetDecisionRequirementsXmlResponses as pz, type ThreadedJobHandler as q, type SearchGroupsData as q$, type CreateDocumentLinkError as q0, type CreateDocumentLinkResponses as q1, type CreateDocumentLinkResponse as q2, type ActivateAdHocSubProcessActivitiesData as q3, type ActivateAdHocSubProcessActivitiesErrors as q4, type ActivateAdHocSubProcessActivitiesError as q5, type ActivateAdHocSubProcessActivitiesResponses as q6, type ActivateAdHocSubProcessActivitiesResponse as q7, type SearchElementInstancesData as q8, type SearchElementInstancesErrors as q9, type CreateGlobalTaskListenerResponses as qA, type CreateGlobalTaskListenerResponse as qB, type DeleteGlobalTaskListenerData as qC, type DeleteGlobalTaskListenerErrors as qD, type DeleteGlobalTaskListenerError as qE, type DeleteGlobalTaskListenerResponses as qF, type DeleteGlobalTaskListenerResponse as qG, type GetGlobalTaskListenerData as qH, type GetGlobalTaskListenerErrors as qI, type GetGlobalTaskListenerError as qJ, type GetGlobalTaskListenerResponses as qK, type GetGlobalTaskListenerResponse as qL, type UpdateGlobalTaskListenerData as qM, type UpdateGlobalTaskListenerErrors as qN, type UpdateGlobalTaskListenerError as qO, type UpdateGlobalTaskListenerResponses as qP, type UpdateGlobalTaskListenerResponse as qQ, type SearchGlobalTaskListenersData as qR, type SearchGlobalTaskListenersErrors as qS, type SearchGlobalTaskListenersError as qT, type SearchGlobalTaskListenersResponses as qU, type SearchGlobalTaskListenersResponse as qV, type CreateGroupData as qW, type CreateGroupErrors as qX, type CreateGroupError as qY, type CreateGroupResponses as qZ, type CreateGroupResponse as q_, type SearchElementInstancesError as qa, type SearchElementInstancesResponses as qb, type SearchElementInstancesResponse as qc, type GetElementInstanceData as qd, type GetElementInstanceErrors as qe, type GetElementInstanceError as qf, type GetElementInstanceResponses as qg, type GetElementInstanceResponse as qh, type SearchElementInstanceIncidentsData as qi, type SearchElementInstanceIncidentsErrors as qj, type SearchElementInstanceIncidentsError as qk, type SearchElementInstanceIncidentsResponses as ql, type SearchElementInstanceIncidentsResponse as qm, type CreateElementInstanceVariablesData as qn, type CreateElementInstanceVariablesErrors as qo, type CreateElementInstanceVariablesError as qp, type CreateElementInstanceVariablesResponses as qq, type CreateElementInstanceVariablesResponse as qr, type EvaluateExpressionData as qs, type EvaluateExpressionErrors as qt, type EvaluateExpressionError as qu, type EvaluateExpressionResponses as qv, type EvaluateExpressionResponse as qw, type CreateGlobalTaskListenerData as qx, type CreateGlobalTaskListenerErrors as qy, type CreateGlobalTaskListenerError as qz, ThreadedJobWorker as r, type UnassignUserFromGroupResponse as r$, type SearchGroupsErrors as r0, type SearchGroupsError as r1, type SearchGroupsResponses as r2, type SearchGroupsResponse as r3, type DeleteGroupData as r4, type DeleteGroupErrors as r5, type DeleteGroupError as r6, type DeleteGroupResponses as r7, type DeleteGroupResponse as r8, type GetGroupData as r9, type SearchMappingRulesForGroupError as rA, type SearchMappingRulesForGroupResponses as rB, type SearchMappingRulesForGroupResponse as rC, type UnassignMappingRuleFromGroupData as rD, type UnassignMappingRuleFromGroupErrors as rE, type UnassignMappingRuleFromGroupError as rF, type UnassignMappingRuleFromGroupResponses as rG, type UnassignMappingRuleFromGroupResponse as rH, type AssignMappingRuleToGroupData as rI, type AssignMappingRuleToGroupErrors as rJ, type AssignMappingRuleToGroupError as rK, type AssignMappingRuleToGroupResponses as rL, type AssignMappingRuleToGroupResponse as rM, type SearchRolesForGroupData as rN, type SearchRolesForGroupErrors as rO, type SearchRolesForGroupError as rP, type SearchRolesForGroupResponses as rQ, type SearchRolesForGroupResponse as rR, type SearchUsersForGroupData as rS, type SearchUsersForGroupErrors as rT, type SearchUsersForGroupError as rU, type SearchUsersForGroupResponses as rV, type SearchUsersForGroupResponse as rW, type UnassignUserFromGroupData as rX, type UnassignUserFromGroupErrors as rY, type UnassignUserFromGroupError as rZ, type UnassignUserFromGroupResponses as r_, type GetGroupErrors as ra, type GetGroupError as rb, type GetGroupResponses as rc, type GetGroupResponse as rd, type UpdateGroupData as re, type UpdateGroupErrors as rf, type UpdateGroupError as rg, type UpdateGroupResponses as rh, type UpdateGroupResponse as ri, type SearchClientsForGroupData as rj, type SearchClientsForGroupErrors as rk, type SearchClientsForGroupError as rl, type SearchClientsForGroupResponses as rm, type SearchClientsForGroupResponse as rn, type UnassignClientFromGroupData as ro, type UnassignClientFromGroupErrors as rp, type UnassignClientFromGroupError as rq, type UnassignClientFromGroupResponses as rr, type UnassignClientFromGroupResponse as rs, type AssignClientToGroupData as rt, type AssignClientToGroupErrors as ru, type AssignClientToGroupError as rv, type AssignClientToGroupResponses as rw, type AssignClientToGroupResponse as rx, type SearchMappingRulesForGroupData as ry, type SearchMappingRulesForGroupErrors as rz, type ThreadedJobWorkerConfig as s, type GetGlobalJobStatisticsResponses as s$, type AssignUserToGroupData as s0, type AssignUserToGroupErrors as s1, type AssignUserToGroupError as s2, type AssignUserToGroupResponses as s3, type AssignUserToGroupResponse as s4, type SearchIncidentsData as s5, type SearchIncidentsErrors as s6, type SearchIncidentsError as s7, type SearchIncidentsResponses as s8, type SearchIncidentsResponse as s9, type SearchJobsErrors as sA, type SearchJobsError as sB, type SearchJobsResponses as sC, type SearchJobsResponse as sD, type UpdateJobData as sE, type UpdateJobErrors as sF, type UpdateJobError as sG, type UpdateJobResponses as sH, type UpdateJobResponse as sI, type CompleteJobData as sJ, type CompleteJobErrors as sK, type CompleteJobError as sL, type CompleteJobResponses as sM, type CompleteJobResponse as sN, type ThrowJobErrorData as sO, type ThrowJobErrorErrors as sP, type ThrowJobErrorError as sQ, type ThrowJobErrorResponses as sR, type ThrowJobErrorResponse as sS, type FailJobData as sT, type FailJobErrors as sU, type FailJobError as sV, type FailJobResponses as sW, type FailJobResponse as sX, type GetGlobalJobStatisticsData as sY, type GetGlobalJobStatisticsErrors as sZ, type GetGlobalJobStatisticsError as s_, type GetIncidentData as sa, type GetIncidentErrors as sb, type GetIncidentError as sc, type GetIncidentResponses as sd, type GetIncidentResponse as se, type ResolveIncidentData as sf, type ResolveIncidentErrors as sg, type ResolveIncidentError as sh, type ResolveIncidentResponses as si, type ResolveIncidentResponse as sj, type GetProcessInstanceStatisticsByDefinitionData as sk, type GetProcessInstanceStatisticsByDefinitionErrors as sl, type GetProcessInstanceStatisticsByDefinitionError as sm, type GetProcessInstanceStatisticsByDefinitionResponses as sn, type GetProcessInstanceStatisticsByDefinitionResponse as so, type GetProcessInstanceStatisticsByErrorData as sp, type GetProcessInstanceStatisticsByErrorErrors as sq, type GetProcessInstanceStatisticsByErrorError as sr, type GetProcessInstanceStatisticsByErrorResponses as ss, type GetProcessInstanceStatisticsByErrorResponse as st, type ActivateJobsData as su, type ActivateJobsErrors as sv, type ActivateJobsError as sw, type ActivateJobsResponses as sx, type ActivateJobsResponse as sy, type SearchJobsData as sz, ThreadPool as t, type PublishMessageError as t$, type GetGlobalJobStatisticsResponse as t0, type GetJobTypeStatisticsData as t1, type GetJobTypeStatisticsErrors as t2, type GetJobTypeStatisticsError as t3, type GetJobTypeStatisticsResponses as t4, type GetJobTypeStatisticsResponse as t5, type GetJobWorkerStatisticsData as t6, type GetJobWorkerStatisticsErrors as t7, type GetJobWorkerStatisticsError as t8, type GetJobWorkerStatisticsResponses as t9, type DeleteMappingRuleData as tA, type DeleteMappingRuleErrors as tB, type DeleteMappingRuleError as tC, type DeleteMappingRuleResponses as tD, type DeleteMappingRuleResponse as tE, type GetMappingRuleData as tF, type GetMappingRuleErrors as tG, type GetMappingRuleError as tH, type GetMappingRuleResponses as tI, type GetMappingRuleResponse as tJ, type UpdateMappingRuleData as tK, type UpdateMappingRuleErrors as tL, type UpdateMappingRuleError as tM, type UpdateMappingRuleResponses as tN, type UpdateMappingRuleResponse as tO, type SearchMessageSubscriptionsData as tP, type SearchMessageSubscriptionsErrors as tQ, type SearchMessageSubscriptionsError as tR, type SearchMessageSubscriptionsResponses as tS, type SearchMessageSubscriptionsResponse as tT, type CorrelateMessageData as tU, type CorrelateMessageErrors as tV, type CorrelateMessageError as tW, type CorrelateMessageResponses as tX, type CorrelateMessageResponse as tY, type PublishMessageData as tZ, type PublishMessageErrors as t_, type GetJobWorkerStatisticsResponse as ta, type GetJobTimeSeriesStatisticsData as tb, type GetJobTimeSeriesStatisticsErrors as tc, type GetJobTimeSeriesStatisticsError as td, type GetJobTimeSeriesStatisticsResponses as te, type GetJobTimeSeriesStatisticsResponse as tf, type GetJobErrorStatisticsData as tg, type GetJobErrorStatisticsErrors as th, type GetJobErrorStatisticsError as ti, type GetJobErrorStatisticsResponses as tj, type GetJobErrorStatisticsResponse as tk, type GetLicenseData as tl, type GetLicenseErrors as tm, type GetLicenseError as tn, type GetLicenseResponses as to, type GetLicenseResponse as tp, type CreateMappingRuleData as tq, type CreateMappingRuleErrors as tr, type CreateMappingRuleError as ts, type CreateMappingRuleResponses as tt, type CreateMappingRuleResponse as tu, type SearchMappingRuleData as tv, type SearchMappingRuleErrors as tw, type SearchMappingRuleError as tx, type SearchMappingRuleResponses as ty, type SearchMappingRuleResponse as tz, type CamundaConfig as u, type MigrateProcessInstancesBatchOperationErrors as u$, type PublishMessageResponses as u0, type PublishMessageResponse as u1, type SearchProcessDefinitionsData as u2, type SearchProcessDefinitionsErrors as u3, type SearchProcessDefinitionsError as u4, type SearchProcessDefinitionsResponses as u5, type SearchProcessDefinitionsResponse as u6, type GetProcessDefinitionMessageSubscriptionStatisticsData as u7, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as u8, type GetProcessDefinitionMessageSubscriptionStatisticsError as u9, type GetProcessDefinitionXmlResponse as uA, type GetProcessDefinitionInstanceVersionStatisticsData as uB, type GetProcessDefinitionInstanceVersionStatisticsErrors as uC, type GetProcessDefinitionInstanceVersionStatisticsError as uD, type GetProcessDefinitionInstanceVersionStatisticsResponses as uE, type GetProcessDefinitionInstanceVersionStatisticsResponse as uF, type CreateProcessInstanceData as uG, type CreateProcessInstanceErrors as uH, type CreateProcessInstanceError as uI, type CreateProcessInstanceResponses as uJ, type CreateProcessInstanceResponse as uK, type CancelProcessInstancesBatchOperationData as uL, type CancelProcessInstancesBatchOperationErrors as uM, type CancelProcessInstancesBatchOperationError as uN, type CancelProcessInstancesBatchOperationResponses as uO, type CancelProcessInstancesBatchOperationResponse as uP, type DeleteProcessInstancesBatchOperationData as uQ, type DeleteProcessInstancesBatchOperationErrors as uR, type DeleteProcessInstancesBatchOperationError as uS, type DeleteProcessInstancesBatchOperationResponses as uT, type DeleteProcessInstancesBatchOperationResponse as uU, type ResolveIncidentsBatchOperationData as uV, type ResolveIncidentsBatchOperationErrors as uW, type ResolveIncidentsBatchOperationError as uX, type ResolveIncidentsBatchOperationResponses as uY, type ResolveIncidentsBatchOperationResponse as uZ, type MigrateProcessInstancesBatchOperationData as u_, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as ua, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as ub, type GetProcessDefinitionInstanceStatisticsData as uc, type GetProcessDefinitionInstanceStatisticsErrors as ud, type GetProcessDefinitionInstanceStatisticsError as ue, type GetProcessDefinitionInstanceStatisticsResponses as uf, type GetProcessDefinitionInstanceStatisticsResponse as ug, type GetProcessDefinitionData as uh, type GetProcessDefinitionErrors as ui, type GetProcessDefinitionError as uj, type GetProcessDefinitionResponses as uk, type GetProcessDefinitionResponse as ul, type GetStartProcessFormData as um, type GetStartProcessFormErrors as un, type GetStartProcessFormError as uo, type GetStartProcessFormResponses as up, type GetStartProcessFormResponse as uq, type GetProcessDefinitionStatisticsData as ur, type GetProcessDefinitionStatisticsErrors as us, type GetProcessDefinitionStatisticsError as ut, type GetProcessDefinitionStatisticsResponses as uu, type GetProcessDefinitionStatisticsResponse as uv, type GetProcessDefinitionXmlData as uw, type GetProcessDefinitionXmlErrors as ux, type GetProcessDefinitionXmlError as uy, type GetProcessDefinitionXmlResponses as uz, type activateAdHocSubProcessActivitiesInput as v, type GetResourceData as v$, type MigrateProcessInstancesBatchOperationError as v0, type MigrateProcessInstancesBatchOperationResponses as v1, type MigrateProcessInstancesBatchOperationResponse as v2, type ModifyProcessInstancesBatchOperationData as v3, type ModifyProcessInstancesBatchOperationErrors as v4, type ModifyProcessInstancesBatchOperationError as v5, type ModifyProcessInstancesBatchOperationResponses as v6, type ModifyProcessInstancesBatchOperationResponse as v7, type SearchProcessInstancesData as v8, type SearchProcessInstancesErrors as v9, type ResolveProcessInstanceIncidentsResponses as vA, type ResolveProcessInstanceIncidentsResponse as vB, type SearchProcessInstanceIncidentsData as vC, type SearchProcessInstanceIncidentsErrors as vD, type SearchProcessInstanceIncidentsError as vE, type SearchProcessInstanceIncidentsResponses as vF, type SearchProcessInstanceIncidentsResponse as vG, type MigrateProcessInstanceData as vH, type MigrateProcessInstanceErrors as vI, type MigrateProcessInstanceError as vJ, type MigrateProcessInstanceResponses as vK, type MigrateProcessInstanceResponse as vL, type ModifyProcessInstanceData as vM, type ModifyProcessInstanceErrors as vN, type ModifyProcessInstanceError as vO, type ModifyProcessInstanceResponses as vP, type ModifyProcessInstanceResponse as vQ, type GetProcessInstanceSequenceFlowsData as vR, type GetProcessInstanceSequenceFlowsErrors as vS, type GetProcessInstanceSequenceFlowsError as vT, type GetProcessInstanceSequenceFlowsResponses as vU, type GetProcessInstanceSequenceFlowsResponse as vV, type GetProcessInstanceStatisticsData as vW, type GetProcessInstanceStatisticsErrors as vX, type GetProcessInstanceStatisticsError as vY, type GetProcessInstanceStatisticsResponses as vZ, type GetProcessInstanceStatisticsResponse as v_, type SearchProcessInstancesError as va, type SearchProcessInstancesResponses as vb, type SearchProcessInstancesResponse as vc, type GetProcessInstanceData as vd, type GetProcessInstanceErrors as ve, type GetProcessInstanceError as vf, type GetProcessInstanceResponses as vg, type GetProcessInstanceResponse as vh, type GetProcessInstanceCallHierarchyData as vi, type GetProcessInstanceCallHierarchyErrors as vj, type GetProcessInstanceCallHierarchyError as vk, type GetProcessInstanceCallHierarchyResponses as vl, type GetProcessInstanceCallHierarchyResponse as vm, type CancelProcessInstanceData as vn, type CancelProcessInstanceErrors as vo, type CancelProcessInstanceError as vp, type CancelProcessInstanceResponses as vq, type CancelProcessInstanceResponse as vr, type DeleteProcessInstanceData as vs, type DeleteProcessInstanceErrors as vt, type DeleteProcessInstanceError as vu, type DeleteProcessInstanceResponses as vv, type DeleteProcessInstanceResponse as vw, type ResolveProcessInstanceIncidentsData as vx, type ResolveProcessInstanceIncidentsErrors as vy, type ResolveProcessInstanceIncidentsError as vz, type activateJobsInput as w, type UnassignRoleFromGroupResponse as w$, type GetResourceErrors as w0, type GetResourceError as w1, type GetResourceResponses as w2, type GetResourceResponse as w3, type GetResourceContentData as w4, type GetResourceContentErrors as w5, type GetResourceContentError as w6, type GetResourceContentResponses as w7, type GetResourceContentResponse as w8, type DeleteResourceData as w9, type UpdateRoleError as wA, type UpdateRoleResponses as wB, type UpdateRoleResponse as wC, type SearchClientsForRoleData as wD, type SearchClientsForRoleErrors as wE, type SearchClientsForRoleError as wF, type SearchClientsForRoleResponses as wG, type SearchClientsForRoleResponse as wH, type UnassignRoleFromClientData as wI, type UnassignRoleFromClientErrors as wJ, type UnassignRoleFromClientError as wK, type UnassignRoleFromClientResponses as wL, type UnassignRoleFromClientResponse as wM, type AssignRoleToClientData as wN, type AssignRoleToClientErrors as wO, type AssignRoleToClientError as wP, type AssignRoleToClientResponses as wQ, type AssignRoleToClientResponse as wR, type SearchGroupsForRoleData as wS, type SearchGroupsForRoleErrors as wT, type SearchGroupsForRoleError as wU, type SearchGroupsForRoleResponses as wV, type SearchGroupsForRoleResponse as wW, type UnassignRoleFromGroupData as wX, type UnassignRoleFromGroupErrors as wY, type UnassignRoleFromGroupError as wZ, type UnassignRoleFromGroupResponses as w_, type DeleteResourceErrors as wa, type DeleteResourceError as wb, type DeleteResourceResponses as wc, type DeleteResourceResponse2 as wd, type CreateRoleData as we, type CreateRoleErrors as wf, type CreateRoleError as wg, type CreateRoleResponses as wh, type CreateRoleResponse as wi, type SearchRolesData as wj, type SearchRolesErrors as wk, type SearchRolesError as wl, type SearchRolesResponses as wm, type SearchRolesResponse as wn, type DeleteRoleData as wo, type DeleteRoleErrors as wp, type DeleteRoleError as wq, type DeleteRoleResponses as wr, type DeleteRoleResponse as ws, type GetRoleData as wt, type GetRoleErrors as wu, type GetRoleError as wv, type GetRoleResponses as ww, type GetRoleResponse as wx, type UpdateRoleData as wy, type UpdateRoleErrors as wz, type assignClientToGroupInput as x, type CreateTenantResponse as x$, type AssignRoleToGroupData as x0, type AssignRoleToGroupErrors as x1, type AssignRoleToGroupError as x2, type AssignRoleToGroupResponses as x3, type AssignRoleToGroupResponse as x4, type SearchMappingRulesForRoleData as x5, type SearchMappingRulesForRoleErrors as x6, type SearchMappingRulesForRoleError as x7, type SearchMappingRulesForRoleResponses as x8, type SearchMappingRulesForRoleResponse as x9, type CreateAdminUserErrors as xA, type CreateAdminUserError as xB, type CreateAdminUserResponses as xC, type CreateAdminUserResponse as xD, type BroadcastSignalData as xE, type BroadcastSignalErrors as xF, type BroadcastSignalError as xG, type BroadcastSignalResponses as xH, type BroadcastSignalResponse as xI, type GetStatusData as xJ, type GetStatusErrors as xK, type GetStatusResponses as xL, type GetStatusResponse as xM, type GetUsageMetricsData as xN, type GetUsageMetricsErrors as xO, type GetUsageMetricsError as xP, type GetUsageMetricsResponses as xQ, type GetUsageMetricsResponse as xR, type GetSystemConfigurationData as xS, type GetSystemConfigurationErrors as xT, type GetSystemConfigurationError as xU, type GetSystemConfigurationResponses as xV, type GetSystemConfigurationResponse as xW, type CreateTenantData as xX, type CreateTenantErrors as xY, type CreateTenantError as xZ, type CreateTenantResponses as x_, type UnassignRoleFromMappingRuleData as xa, type UnassignRoleFromMappingRuleErrors as xb, type UnassignRoleFromMappingRuleError as xc, type UnassignRoleFromMappingRuleResponses as xd, type UnassignRoleFromMappingRuleResponse as xe, type AssignRoleToMappingRuleData as xf, type AssignRoleToMappingRuleErrors as xg, type AssignRoleToMappingRuleError as xh, type AssignRoleToMappingRuleResponses as xi, type AssignRoleToMappingRuleResponse as xj, type SearchUsersForRoleData as xk, type SearchUsersForRoleErrors as xl, type SearchUsersForRoleError as xm, type SearchUsersForRoleResponses as xn, type SearchUsersForRoleResponse as xo, type UnassignRoleFromUserData as xp, type UnassignRoleFromUserErrors as xq, type UnassignRoleFromUserError as xr, type UnassignRoleFromUserResponses as xs, type UnassignRoleFromUserResponse as xt, type AssignRoleToUserData as xu, type AssignRoleToUserErrors as xv, type AssignRoleToUserError as xw, type AssignRoleToUserResponses as xx, type AssignRoleToUserResponse as xy, type CreateAdminUserData as xz, type assignClientToTenantInput as y, type UnassignRoleFromTenantErrors as y$, type SearchTenantsData as y0, type SearchTenantsErrors as y1, type SearchTenantsError as y2, type SearchTenantsResponses as y3, type SearchTenantsResponse as y4, type DeleteTenantData as y5, type DeleteTenantErrors as y6, type DeleteTenantError as y7, type DeleteTenantResponses as y8, type DeleteTenantResponse as y9, type UnassignGroupFromTenantData as yA, type UnassignGroupFromTenantErrors as yB, type UnassignGroupFromTenantError as yC, type UnassignGroupFromTenantResponses as yD, type UnassignGroupFromTenantResponse as yE, type AssignGroupToTenantData as yF, type AssignGroupToTenantErrors as yG, type AssignGroupToTenantError as yH, type AssignGroupToTenantResponses as yI, type AssignGroupToTenantResponse as yJ, type SearchMappingRulesForTenantData as yK, type SearchMappingRulesForTenantResponses as yL, type SearchMappingRulesForTenantResponse as yM, type UnassignMappingRuleFromTenantData as yN, type UnassignMappingRuleFromTenantErrors as yO, type UnassignMappingRuleFromTenantError as yP, type UnassignMappingRuleFromTenantResponses as yQ, type UnassignMappingRuleFromTenantResponse as yR, type AssignMappingRuleToTenantData as yS, type AssignMappingRuleToTenantErrors as yT, type AssignMappingRuleToTenantError as yU, type AssignMappingRuleToTenantResponses as yV, type AssignMappingRuleToTenantResponse as yW, type SearchRolesForTenantData as yX, type SearchRolesForTenantResponses as yY, type SearchRolesForTenantResponse as yZ, type UnassignRoleFromTenantData as y_, type GetTenantData as ya, type GetTenantErrors as yb, type GetTenantError as yc, type GetTenantResponses as yd, type GetTenantResponse as ye, type UpdateTenantData as yf, type UpdateTenantErrors as yg, type UpdateTenantError as yh, type UpdateTenantResponses as yi, type UpdateTenantResponse as yj, type SearchClientsForTenantData as yk, type SearchClientsForTenantResponses as yl, type SearchClientsForTenantResponse as ym, type UnassignClientFromTenantData as yn, type UnassignClientFromTenantErrors as yo, type UnassignClientFromTenantError as yp, type UnassignClientFromTenantResponses as yq, type UnassignClientFromTenantResponse as yr, type AssignClientToTenantData as ys, type AssignClientToTenantErrors as yt, type AssignClientToTenantError as yu, type AssignClientToTenantResponses as yv, type AssignClientToTenantResponse as yw, type SearchGroupIdsForTenantData as yx, type SearchGroupIdsForTenantResponses as yy, type SearchGroupIdsForTenantResponse as yz, type assignGroupToTenantInput as z, type UpdateUserTaskError as z$, type UnassignRoleFromTenantError as z0, type UnassignRoleFromTenantResponses as z1, type UnassignRoleFromTenantResponse as z2, type AssignRoleToTenantData as z3, type AssignRoleToTenantErrors as z4, type AssignRoleToTenantError as z5, type AssignRoleToTenantResponses as z6, type AssignRoleToTenantResponse as z7, type SearchUsersForTenantData as z8, type SearchUsersForTenantResponses as z9, type DeleteUserData as zA, type DeleteUserErrors as zB, type DeleteUserError as zC, type DeleteUserResponses as zD, type DeleteUserResponse as zE, type GetUserData as zF, type GetUserErrors as zG, type GetUserError as zH, type GetUserResponses as zI, type GetUserResponse as zJ, type UpdateUserData as zK, type UpdateUserErrors as zL, type UpdateUserError as zM, type UpdateUserResponses as zN, type UpdateUserResponse as zO, type SearchUserTasksData as zP, type SearchUserTasksErrors as zQ, type SearchUserTasksError as zR, type SearchUserTasksResponses as zS, type SearchUserTasksResponse as zT, type GetUserTaskData as zU, type GetUserTaskErrors as zV, type GetUserTaskError as zW, type GetUserTaskResponses as zX, type GetUserTaskResponse as zY, type UpdateUserTaskData as zZ, type UpdateUserTaskErrors as z_, type SearchUsersForTenantResponse as za, type UnassignUserFromTenantData as zb, type UnassignUserFromTenantErrors as zc, type UnassignUserFromTenantError as zd, type UnassignUserFromTenantResponses as ze, type UnassignUserFromTenantResponse as zf, type AssignUserToTenantData as zg, type AssignUserToTenantErrors as zh, type AssignUserToTenantError as zi, type AssignUserToTenantResponses as zj, type AssignUserToTenantResponse as zk, type GetTopologyData as zl, type GetTopologyErrors as zm, type GetTopologyError as zn, type GetTopologyResponses as zo, type GetTopologyResponse as zp, type CreateUserData as zq, type CreateUserErrors as zr, type CreateUserError as zs, type CreateUserResponses as zt, type CreateUserResponse as zu, type SearchUsersData as zv, type SearchUsersErrors as zw, type SearchUsersError as zx, type SearchUsersResponses as zy, type SearchUsersResponse as zz };
|