@camunda8/orchestration-cluster-api 10.0.0-alpha.12 → 10.0.0-alpha.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/dist/{chunk-5MVQWZJT.js → chunk-IV7WMOID.js} +207 -7
- package/dist/chunk-IV7WMOID.js.map +1 -0
- package/dist/fp/index.cjs +307 -11
- 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-DMHMquxl.d.ts → index-BNm2kRb2.d.ts} +297 -5
- package/dist/{index-D5QMBVou.d.cts → index-DIIosqf7.d.cts} +297 -5
- package/dist/index.cjs +312 -13
- 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 +6 -3
- package/dist/index.js.map +1 -1
- package/dist/{zod.gen-RVXPM54Y.js → zod.gen-7PI6QBPP.js} +102 -6
- package/dist/zod.gen-7PI6QBPP.js.map +1 -0
- package/package.json +12 -11
- package/dist/chunk-5MVQWZJT.js.map +0 -1
- package/dist/zod.gen-RVXPM54Y.js.map +0 -1
|
@@ -2201,6 +2201,7 @@ declare const PermissionTypeEnum: {
|
|
|
2201
2201
|
readonly CREATE_BATCH_OPERATION_MIGRATE_PROCESS_INSTANCE: "CREATE_BATCH_OPERATION_MIGRATE_PROCESS_INSTANCE";
|
|
2202
2202
|
readonly CREATE_BATCH_OPERATION_MODIFY_PROCESS_INSTANCE: "CREATE_BATCH_OPERATION_MODIFY_PROCESS_INSTANCE";
|
|
2203
2203
|
readonly CREATE_BATCH_OPERATION_RESOLVE_INCIDENT: "CREATE_BATCH_OPERATION_RESOLVE_INCIDENT";
|
|
2204
|
+
readonly CREATE_BATCH_OPERATION_UPDATE_JOB: "CREATE_BATCH_OPERATION_UPDATE_JOB";
|
|
2204
2205
|
readonly CREATE_DECISION_INSTANCE: "CREATE_DECISION_INSTANCE";
|
|
2205
2206
|
readonly CREATE_PROCESS_INSTANCE: "CREATE_PROCESS_INSTANCE";
|
|
2206
2207
|
readonly CREATE_TASK_LISTENER: "CREATE_TASK_LISTENER";
|
|
@@ -2616,6 +2617,7 @@ declare const BatchOperationTypeEnum: {
|
|
|
2616
2617
|
readonly MIGRATE_PROCESS_INSTANCE: "MIGRATE_PROCESS_INSTANCE";
|
|
2617
2618
|
readonly MODIFY_PROCESS_INSTANCE: "MODIFY_PROCESS_INSTANCE";
|
|
2618
2619
|
readonly RESOLVE_INCIDENT: "RESOLVE_INCIDENT";
|
|
2620
|
+
readonly UPDATE_JOB: "UPDATE_JOB";
|
|
2619
2621
|
readonly UPDATE_VARIABLE: "UPDATE_VARIABLE";
|
|
2620
2622
|
};
|
|
2621
2623
|
type BatchOperationTypeEnum = (typeof BatchOperationTypeEnum)[keyof typeof BatchOperationTypeEnum];
|
|
@@ -3227,7 +3229,7 @@ type DecisionInstanceSearchQuerySortRequest = {
|
|
|
3227
3229
|
/**
|
|
3228
3230
|
* The field to sort by.
|
|
3229
3231
|
*/
|
|
3230
|
-
field: 'decisionDefinitionId' | 'decisionDefinitionKey' | 'decisionDefinitionName' | 'decisionDefinitionType' | 'decisionDefinitionVersion' | 'decisionEvaluationInstanceKey' | 'decisionEvaluationKey' | 'elementInstanceKey' | 'evaluationDate' | 'evaluationFailure' | 'processDefinitionKey' | 'processInstanceKey' | 'rootDecisionDefinitionKey' | 'state' | 'tenantId';
|
|
3232
|
+
field: 'businessId' | 'decisionDefinitionId' | 'decisionDefinitionKey' | 'decisionDefinitionName' | 'decisionDefinitionType' | 'decisionDefinitionVersion' | 'decisionEvaluationInstanceKey' | 'decisionEvaluationKey' | 'elementInstanceKey' | 'evaluationDate' | 'evaluationFailure' | 'processDefinitionKey' | 'processInstanceKey' | 'rootDecisionDefinitionKey' | 'state' | 'tenantId';
|
|
3231
3233
|
order?: SortOrderEnum;
|
|
3232
3234
|
};
|
|
3233
3235
|
type DecisionInstanceSearchQuery = SearchQueryRequest & {
|
|
@@ -3290,6 +3292,11 @@ type DecisionInstanceFilter = {
|
|
|
3290
3292
|
* The key of the process instance.
|
|
3291
3293
|
*/
|
|
3292
3294
|
processInstanceKey?: ProcessInstanceKey;
|
|
3295
|
+
/**
|
|
3296
|
+
* The business ID of the owning process instance the decision instance belongs to. This only works for decision instances created with 8.10 and onwards. Decision instances from prior versions and standalone evaluations don't contain this data and cannot be found.
|
|
3297
|
+
*
|
|
3298
|
+
*/
|
|
3299
|
+
businessId?: StringFilterProperty;
|
|
3293
3300
|
/**
|
|
3294
3301
|
* The key of the decision.
|
|
3295
3302
|
*/
|
|
@@ -3317,6 +3324,14 @@ type DecisionInstanceSearchQueryResult = SearchQueryResponse & {
|
|
|
3317
3324
|
items: Array<DecisionInstanceResult>;
|
|
3318
3325
|
};
|
|
3319
3326
|
type DecisionInstanceResult = {
|
|
3327
|
+
/**
|
|
3328
|
+
* The business ID of the owning process instance, inherited when the decision instance was
|
|
3329
|
+
* evaluated. This is `null` for decision instances created before version 8.10, for
|
|
3330
|
+
* standalone decision evaluations, and for decision instances whose owning process instance
|
|
3331
|
+
* has no business ID.
|
|
3332
|
+
*
|
|
3333
|
+
*/
|
|
3334
|
+
businessId: BusinessId | null;
|
|
3320
3335
|
/**
|
|
3321
3336
|
* The ID of the DMN decision.
|
|
3322
3337
|
*/
|
|
@@ -4488,7 +4503,9 @@ type WaitStateDetails = ({
|
|
|
4488
4503
|
waitStateType: 'TIMER';
|
|
4489
4504
|
} & TimerWaitStateDetails) | ({
|
|
4490
4505
|
waitStateType: 'SIGNAL';
|
|
4491
|
-
} & SignalWaitStateDetails)
|
|
4506
|
+
} & SignalWaitStateDetails) | ({
|
|
4507
|
+
waitStateType: 'CONDITION';
|
|
4508
|
+
} & ConditionWaitStateDetails);
|
|
4492
4509
|
/**
|
|
4493
4510
|
* The type of waiting state an element instance is in.
|
|
4494
4511
|
*/
|
|
@@ -4498,6 +4515,7 @@ declare const WaitStateTypeEnum: {
|
|
|
4498
4515
|
readonly USER_TASK: "USER_TASK";
|
|
4499
4516
|
readonly TIMER: "TIMER";
|
|
4500
4517
|
readonly SIGNAL: "SIGNAL";
|
|
4518
|
+
readonly CONDITION: "CONDITION";
|
|
4501
4519
|
};
|
|
4502
4520
|
type WaitStateTypeEnum = (typeof WaitStateTypeEnum)[keyof typeof WaitStateTypeEnum];
|
|
4503
4521
|
/**
|
|
@@ -4587,6 +4605,20 @@ type SignalWaitStateDetails = BaseWaitStateDetails & {
|
|
|
4587
4605
|
*/
|
|
4588
4606
|
waitStateType: string;
|
|
4589
4607
|
};
|
|
4608
|
+
type ConditionWaitStateDetails = BaseWaitStateDetails & {
|
|
4609
|
+
/**
|
|
4610
|
+
* The condition expression that must evaluate to true to proceed.
|
|
4611
|
+
*/
|
|
4612
|
+
expression: string;
|
|
4613
|
+
/**
|
|
4614
|
+
* The variable events that trigger condition re-evaluation. Empty means all events.
|
|
4615
|
+
*/
|
|
4616
|
+
events: Array<'create' | 'update'>;
|
|
4617
|
+
/**
|
|
4618
|
+
* The wait state type discriminator.
|
|
4619
|
+
*/
|
|
4620
|
+
waitStateType: string;
|
|
4621
|
+
};
|
|
4590
4622
|
type AdHocSubProcessActivateActivityReference = {
|
|
4591
4623
|
/**
|
|
4592
4624
|
* The ID of the element that should be activated.
|
|
@@ -5936,6 +5968,13 @@ type ActivatedJobResult$1 = {
|
|
|
5936
5968
|
*
|
|
5937
5969
|
*/
|
|
5938
5970
|
rootProcessInstanceKey: ProcessInstanceKey | null;
|
|
5971
|
+
/**
|
|
5972
|
+
* The business ID of the owning process instance, inherited when the job was created.
|
|
5973
|
+
* This is `null` for jobs created before version 8.10 and for jobs whose owning process
|
|
5974
|
+
* instance has no business ID.
|
|
5975
|
+
*
|
|
5976
|
+
*/
|
|
5977
|
+
businessId: BusinessId | null;
|
|
5939
5978
|
/**
|
|
5940
5979
|
* The priority of the job. Higher values indicate higher priority. Jobs created before 8.10 have no stored priority; the API returns 0 for such jobs.
|
|
5941
5980
|
*
|
|
@@ -6184,6 +6223,13 @@ type JobSearchResult = {
|
|
|
6184
6223
|
*
|
|
6185
6224
|
*/
|
|
6186
6225
|
rootProcessInstanceKey: ProcessInstanceKey | null;
|
|
6226
|
+
/**
|
|
6227
|
+
* The business ID of the owning process instance, inherited when the job was created.
|
|
6228
|
+
* This is `null` for jobs created before version 8.10 and for jobs whose owning process
|
|
6229
|
+
* instance has no business ID.
|
|
6230
|
+
*
|
|
6231
|
+
*/
|
|
6232
|
+
businessId: BusinessId | null;
|
|
6187
6233
|
/**
|
|
6188
6234
|
* The amount of retries left to this job.
|
|
6189
6235
|
*/
|
|
@@ -6385,6 +6431,25 @@ type JobChangeset = {
|
|
|
6385
6431
|
* The new timeout for the job in milliseconds.
|
|
6386
6432
|
*/
|
|
6387
6433
|
timeout?: number | null;
|
|
6434
|
+
/**
|
|
6435
|
+
* The new priority for the job. Higher values indicate higher priority.
|
|
6436
|
+
*/
|
|
6437
|
+
priority?: number | null;
|
|
6438
|
+
};
|
|
6439
|
+
/**
|
|
6440
|
+
* The filter and changeset for a batch job update operation. The filter defines which jobs are updated; the changeset defines what to update. At least one changeset field must be non-null.
|
|
6441
|
+
*
|
|
6442
|
+
*/
|
|
6443
|
+
type JobBatchUpdateRequest = {
|
|
6444
|
+
/**
|
|
6445
|
+
* The job filter. At least one dimension must be set.
|
|
6446
|
+
*/
|
|
6447
|
+
filter: JobFilter;
|
|
6448
|
+
/**
|
|
6449
|
+
* The fields to update. At least one field must be non-null.
|
|
6450
|
+
*/
|
|
6451
|
+
changeset: JobChangeset;
|
|
6452
|
+
operationReference?: OperationReference;
|
|
6388
6453
|
};
|
|
6389
6454
|
/**
|
|
6390
6455
|
* The tenant filtering strategy for job activation. Determines whether to use tenant IDs provided in the request or tenant IDs assigned to the authenticated principal.
|
|
@@ -7116,6 +7181,15 @@ type MessageCorrelationRequest = {
|
|
|
7116
7181
|
* the tenant for which the message is published
|
|
7117
7182
|
*/
|
|
7118
7183
|
tenantId?: TenantId;
|
|
7184
|
+
/**
|
|
7185
|
+
* An optional business id used to enforce uniqueness of the process instance that a
|
|
7186
|
+
* message start event would create. If provided and uniqueness enforcement is enabled,
|
|
7187
|
+
* the engine rejects starting a new process instance when another root process instance
|
|
7188
|
+
* with the same business id is already active for the same process definition. It has no
|
|
7189
|
+
* effect when the message correlates to a catch, boundary, or intermediate event.
|
|
7190
|
+
*
|
|
7191
|
+
*/
|
|
7192
|
+
businessId?: BusinessId;
|
|
7119
7193
|
};
|
|
7120
7194
|
/**
|
|
7121
7195
|
* The message key of the correlated message, as well as the first process instance key it
|
|
@@ -7165,6 +7239,15 @@ type MessagePublicationRequest = {
|
|
|
7165
7239
|
* The tenant of the message sender.
|
|
7166
7240
|
*/
|
|
7167
7241
|
tenantId?: TenantId;
|
|
7242
|
+
/**
|
|
7243
|
+
* An optional business id used to enforce uniqueness of the process instance that a
|
|
7244
|
+
* message start event would create. If provided and uniqueness enforcement is enabled,
|
|
7245
|
+
* the engine rejects starting a new process instance when another root process instance
|
|
7246
|
+
* with the same business id is already active for the same process definition. It has no
|
|
7247
|
+
* effect when the message correlates to a catch, boundary, or intermediate event.
|
|
7248
|
+
*
|
|
7249
|
+
*/
|
|
7250
|
+
businessId?: BusinessId;
|
|
7168
7251
|
};
|
|
7169
7252
|
/**
|
|
7170
7253
|
* The message key of the published message.
|
|
@@ -7362,6 +7445,16 @@ type CorrelatedMessageSubscriptionSearchQueryResult = SearchQueryResponse & {
|
|
|
7362
7445
|
items: Array<CorrelatedMessageSubscriptionResult>;
|
|
7363
7446
|
};
|
|
7364
7447
|
type CorrelatedMessageSubscriptionResult = {
|
|
7448
|
+
/**
|
|
7449
|
+
* The business id associated with this correlated message subscription. For a message
|
|
7450
|
+
* start event correlation, it is the business id carried by the correlating message that
|
|
7451
|
+
* was stamped on the started process instance to enforce its uniqueness. For a catch,
|
|
7452
|
+
* boundary, or intermediate event correlation, it is the business id of the subscribing
|
|
7453
|
+
* process instance, captured when the subscription was opened. It is `null` when the
|
|
7454
|
+
* relevant process instance has no business id.
|
|
7455
|
+
*
|
|
7456
|
+
*/
|
|
7457
|
+
businessId: BusinessId | null;
|
|
7365
7458
|
/**
|
|
7366
7459
|
* The correlation key of the message.
|
|
7367
7460
|
*/
|
|
@@ -7434,7 +7527,7 @@ type CorrelatedMessageSubscriptionSearchQuerySortRequest = {
|
|
|
7434
7527
|
/**
|
|
7435
7528
|
* The field to sort by.
|
|
7436
7529
|
*/
|
|
7437
|
-
field: 'correlationKey' | 'correlationTime' | 'elementId' | 'elementInstanceKey' | 'messageKey' | 'messageName' | 'partitionId' | 'processDefinitionId' | 'processDefinitionKey' | 'processInstanceKey' | 'subscriptionKey' | 'tenantId';
|
|
7530
|
+
field: 'businessId' | 'correlationKey' | 'correlationTime' | 'elementId' | 'elementInstanceKey' | 'messageKey' | 'messageName' | 'partitionId' | 'processDefinitionId' | 'processDefinitionKey' | 'processInstanceKey' | 'subscriptionKey' | 'tenantId';
|
|
7438
7531
|
order?: SortOrderEnum;
|
|
7439
7532
|
};
|
|
7440
7533
|
/**
|
|
@@ -7469,6 +7562,14 @@ type MessageSubscriptionTypeEnum = (typeof MessageSubscriptionTypeEnum)[keyof ty
|
|
|
7469
7562
|
* Correlated message subscriptions search filter.
|
|
7470
7563
|
*/
|
|
7471
7564
|
type CorrelatedMessageSubscriptionFilter = {
|
|
7565
|
+
/**
|
|
7566
|
+
* Filter by the business id stored on the correlated message subscription — for message
|
|
7567
|
+
* start event correlations the correlating message's business id, and for catch, boundary,
|
|
7568
|
+
* or intermediate event correlations the subscribing process instance's business id.
|
|
7569
|
+
* Supports advanced string filtering, including `$like` with `*`/`?` wildcards.
|
|
7570
|
+
*
|
|
7571
|
+
*/
|
|
7572
|
+
businessId?: StringFilterProperty;
|
|
7472
7573
|
/**
|
|
7473
7574
|
* The correlation key of the message.
|
|
7474
7575
|
*/
|
|
@@ -8492,6 +8593,28 @@ type ProcessInstanceElementStatisticsQueryResult = {
|
|
|
8492
8593
|
*/
|
|
8493
8594
|
items: Array<ProcessElementStatisticsResult>;
|
|
8494
8595
|
};
|
|
8596
|
+
/**
|
|
8597
|
+
* Process instance wait state statistics query response.
|
|
8598
|
+
*/
|
|
8599
|
+
type ProcessInstanceWaitStateStatisticsQueryResult = {
|
|
8600
|
+
/**
|
|
8601
|
+
* The wait state statistics.
|
|
8602
|
+
*/
|
|
8603
|
+
items: Array<ProcessInstanceWaitStateStatisticsResult>;
|
|
8604
|
+
};
|
|
8605
|
+
/**
|
|
8606
|
+
* Process instance wait state statistics response item.
|
|
8607
|
+
*/
|
|
8608
|
+
type ProcessInstanceWaitStateStatisticsResult = {
|
|
8609
|
+
/**
|
|
8610
|
+
* The element id for which the wait states are aggregated.
|
|
8611
|
+
*/
|
|
8612
|
+
elementId: ElementId;
|
|
8613
|
+
/**
|
|
8614
|
+
* The total number of waiting instances of the element.
|
|
8615
|
+
*/
|
|
8616
|
+
waitingCount: number;
|
|
8617
|
+
};
|
|
8495
8618
|
/**
|
|
8496
8619
|
* The migration instructions describe how to migrate a process instance from one process definition to another.
|
|
8497
8620
|
*
|
|
@@ -9374,7 +9497,7 @@ type UserTaskSearchQuerySortRequest = {
|
|
|
9374
9497
|
/**
|
|
9375
9498
|
* The field to sort by.
|
|
9376
9499
|
*/
|
|
9377
|
-
field: 'creationDate' | 'completionDate' | 'followUpDate' | 'dueDate' | 'priority' | 'name';
|
|
9500
|
+
field: 'creationDate' | 'completionDate' | 'followUpDate' | 'dueDate' | 'priority' | 'name' | 'businessId';
|
|
9378
9501
|
order?: SortOrderEnum;
|
|
9379
9502
|
};
|
|
9380
9503
|
/**
|
|
@@ -9402,6 +9525,11 @@ type UserTaskFilter = {
|
|
|
9402
9525
|
* The assignee of the user task.
|
|
9403
9526
|
*/
|
|
9404
9527
|
assignee?: StringFilterProperty;
|
|
9528
|
+
/**
|
|
9529
|
+
* The business ID of the owning process instance the user task belongs to. This only works for user tasks created with 8.10 and onwards. Tasks from prior versions don't contain this data and cannot be found.
|
|
9530
|
+
*
|
|
9531
|
+
*/
|
|
9532
|
+
businessId?: StringFilterProperty;
|
|
9405
9533
|
/**
|
|
9406
9534
|
* The priority of the user task.
|
|
9407
9535
|
*/
|
|
@@ -9572,6 +9700,13 @@ type UserTaskResult = {
|
|
|
9572
9700
|
*
|
|
9573
9701
|
*/
|
|
9574
9702
|
rootProcessInstanceKey: ProcessInstanceKey | null;
|
|
9703
|
+
/**
|
|
9704
|
+
* The business ID of the owning process instance, inherited when the user task was
|
|
9705
|
+
* created. This is `null` for user tasks created before version 8.10, and for user tasks
|
|
9706
|
+
* whose owning process instance has no business ID.
|
|
9707
|
+
*
|
|
9708
|
+
*/
|
|
9709
|
+
businessId: BusinessId | null;
|
|
9575
9710
|
/**
|
|
9576
9711
|
* The key of the form.
|
|
9577
9712
|
*/
|
|
@@ -13810,6 +13945,39 @@ type FailJobResponses = {
|
|
|
13810
13945
|
204: void;
|
|
13811
13946
|
};
|
|
13812
13947
|
type FailJobResponse = FailJobResponses[keyof FailJobResponses];
|
|
13948
|
+
type UpdateJobsBatchOperationData = {
|
|
13949
|
+
body: JobBatchUpdateRequest;
|
|
13950
|
+
path?: never;
|
|
13951
|
+
query?: never;
|
|
13952
|
+
url: '/jobs/batch-update';
|
|
13953
|
+
};
|
|
13954
|
+
type UpdateJobsBatchOperationErrors = {
|
|
13955
|
+
/**
|
|
13956
|
+
* The job batch update operation failed. More details are provided in the response body.
|
|
13957
|
+
*
|
|
13958
|
+
*/
|
|
13959
|
+
400: ProblemDetail;
|
|
13960
|
+
/**
|
|
13961
|
+
* The request lacks valid authentication credentials.
|
|
13962
|
+
*/
|
|
13963
|
+
401: ProblemDetail;
|
|
13964
|
+
/**
|
|
13965
|
+
* Forbidden. The request is not allowed.
|
|
13966
|
+
*/
|
|
13967
|
+
403: ProblemDetail;
|
|
13968
|
+
/**
|
|
13969
|
+
* An internal error occurred while processing the request.
|
|
13970
|
+
*/
|
|
13971
|
+
500: ProblemDetail;
|
|
13972
|
+
};
|
|
13973
|
+
type UpdateJobsBatchOperationError = UpdateJobsBatchOperationErrors[keyof UpdateJobsBatchOperationErrors];
|
|
13974
|
+
type UpdateJobsBatchOperationResponses = {
|
|
13975
|
+
/**
|
|
13976
|
+
* The batch operation was created.
|
|
13977
|
+
*/
|
|
13978
|
+
200: BatchOperationCreatedResult;
|
|
13979
|
+
};
|
|
13980
|
+
type UpdateJobsBatchOperationResponse = UpdateJobsBatchOperationResponses[keyof UpdateJobsBatchOperationResponses];
|
|
13813
13981
|
type GetGlobalJobStatisticsData = {
|
|
13814
13982
|
body?: never;
|
|
13815
13983
|
path?: never;
|
|
@@ -15241,6 +15409,43 @@ type GetProcessInstanceStatisticsResponses = {
|
|
|
15241
15409
|
200: ProcessInstanceElementStatisticsQueryResult;
|
|
15242
15410
|
};
|
|
15243
15411
|
type GetProcessInstanceStatisticsResponse = GetProcessInstanceStatisticsResponses[keyof GetProcessInstanceStatisticsResponses];
|
|
15412
|
+
type GetProcessInstanceWaitStateStatisticsData = {
|
|
15413
|
+
body?: never;
|
|
15414
|
+
path: {
|
|
15415
|
+
/**
|
|
15416
|
+
* The assigned key of the process instance, which acts as a unique identifier for this process instance.
|
|
15417
|
+
*/
|
|
15418
|
+
processInstanceKey: ProcessInstanceKey;
|
|
15419
|
+
};
|
|
15420
|
+
query?: never;
|
|
15421
|
+
url: '/process-instances/{processInstanceKey}/statistics/wait-states';
|
|
15422
|
+
};
|
|
15423
|
+
type GetProcessInstanceWaitStateStatisticsErrors = {
|
|
15424
|
+
/**
|
|
15425
|
+
* The provided data is not valid.
|
|
15426
|
+
*/
|
|
15427
|
+
400: ProblemDetail;
|
|
15428
|
+
/**
|
|
15429
|
+
* The request lacks valid authentication credentials.
|
|
15430
|
+
*/
|
|
15431
|
+
401: ProblemDetail;
|
|
15432
|
+
/**
|
|
15433
|
+
* Forbidden. The request is not allowed.
|
|
15434
|
+
*/
|
|
15435
|
+
403: ProblemDetail;
|
|
15436
|
+
/**
|
|
15437
|
+
* An internal error occurred while processing the request.
|
|
15438
|
+
*/
|
|
15439
|
+
500: ProblemDetail;
|
|
15440
|
+
};
|
|
15441
|
+
type GetProcessInstanceWaitStateStatisticsError = GetProcessInstanceWaitStateStatisticsErrors[keyof GetProcessInstanceWaitStateStatisticsErrors];
|
|
15442
|
+
type GetProcessInstanceWaitStateStatisticsResponses = {
|
|
15443
|
+
/**
|
|
15444
|
+
* The process instance wait state statistics result.
|
|
15445
|
+
*/
|
|
15446
|
+
200: ProcessInstanceWaitStateStatisticsQueryResult;
|
|
15447
|
+
};
|
|
15448
|
+
type GetProcessInstanceWaitStateStatisticsResponse = GetProcessInstanceWaitStateStatisticsResponses[keyof GetProcessInstanceWaitStateStatisticsResponses];
|
|
15244
15449
|
type SearchResourcesData = {
|
|
15245
15450
|
body?: ResourceSearchQuery;
|
|
15246
15451
|
path?: never;
|
|
@@ -18843,6 +19048,13 @@ declare const throwJobError: <ThrowOnError extends boolean = true>(options: Opti
|
|
|
18843
19048
|
*
|
|
18844
19049
|
*/
|
|
18845
19050
|
declare const failJob: <ThrowOnError extends boolean = true>(options: Options<FailJobData, ThrowOnError>) => RequestResult<FailJobResponses, FailJobErrors, ThrowOnError, "fields">;
|
|
19051
|
+
/**
|
|
19052
|
+
* Update jobs (batch)
|
|
19053
|
+
*
|
|
19054
|
+
* Creates a batch operation to update jobs matching the given filter. At least one changeset field must be non-null. This is done asynchronously; the progress can be tracked using the batchOperationKey from the response and the batch operation status endpoint (/batch-operations/{batchOperationKey}).
|
|
19055
|
+
*
|
|
19056
|
+
*/
|
|
19057
|
+
declare const updateJobsBatchOperation: <ThrowOnError extends boolean = true>(options: Options<UpdateJobsBatchOperationData, ThrowOnError>) => RequestResult<UpdateJobsBatchOperationResponses, UpdateJobsBatchOperationErrors, ThrowOnError, "fields">;
|
|
18846
19058
|
/**
|
|
18847
19059
|
* Global job statistics
|
|
18848
19060
|
*
|
|
@@ -19164,6 +19376,12 @@ declare const getProcessInstanceSequenceFlows: <ThrowOnError extends boolean = t
|
|
|
19164
19376
|
* Get statistics about elements by the process instance key.
|
|
19165
19377
|
*/
|
|
19166
19378
|
declare const getProcessInstanceStatistics: <ThrowOnError extends boolean = true>(options: Options<GetProcessInstanceStatisticsData, ThrowOnError>) => RequestResult<GetProcessInstanceStatisticsResponses, GetProcessInstanceStatisticsErrors, ThrowOnError, "fields">;
|
|
19379
|
+
/**
|
|
19380
|
+
* Get wait state statistics
|
|
19381
|
+
*
|
|
19382
|
+
* Get statistics about waiting element instances by the process instance key, grouped by element id.
|
|
19383
|
+
*/
|
|
19384
|
+
declare const getProcessInstanceWaitStateStatistics: <ThrowOnError extends boolean = true>(options: Options<GetProcessInstanceWaitStateStatisticsData, ThrowOnError>) => RequestResult<GetProcessInstanceWaitStateStatisticsResponses, GetProcessInstanceWaitStateStatisticsErrors, ThrowOnError, "fields">;
|
|
19167
19385
|
/**
|
|
19168
19386
|
* Search resources
|
|
19169
19387
|
*
|
|
@@ -21186,6 +21404,20 @@ type getProcessInstanceStatisticsByErrorConsistency = {
|
|
|
21186
21404
|
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
21187
21405
|
consistency: ConsistencyOptions<_DataOf<typeof getProcessInstanceStatisticsByError>>;
|
|
21188
21406
|
};
|
|
21407
|
+
type getProcessInstanceWaitStateStatisticsOptions = Parameters<typeof getProcessInstanceWaitStateStatistics>[0];
|
|
21408
|
+
type getProcessInstanceWaitStateStatisticsPathParam_processInstanceKey = (NonNullable<getProcessInstanceWaitStateStatisticsOptions> extends {
|
|
21409
|
+
path: {
|
|
21410
|
+
processInstanceKey: infer P;
|
|
21411
|
+
};
|
|
21412
|
+
} ? P : any);
|
|
21413
|
+
type getProcessInstanceWaitStateStatisticsInput = {
|
|
21414
|
+
processInstanceKey: getProcessInstanceWaitStateStatisticsPathParam_processInstanceKey;
|
|
21415
|
+
};
|
|
21416
|
+
/** Management of eventual consistency **/
|
|
21417
|
+
type getProcessInstanceWaitStateStatisticsConsistency = {
|
|
21418
|
+
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
21419
|
+
consistency: ConsistencyOptions<_DataOf<typeof getProcessInstanceWaitStateStatistics>>;
|
|
21420
|
+
};
|
|
21189
21421
|
type getResourceOptions = Parameters<typeof getResource>[0];
|
|
21190
21422
|
type getResourcePathParam_resourceKey = (NonNullable<getResourceOptions> extends {
|
|
21191
21423
|
path: {
|
|
@@ -22358,6 +22590,11 @@ type updateJobPathParam_jobKey = (NonNullable<updateJobOptions> extends {
|
|
|
22358
22590
|
type updateJobInput = updateJobBody & {
|
|
22359
22591
|
jobKey: updateJobPathParam_jobKey;
|
|
22360
22592
|
};
|
|
22593
|
+
type updateJobsBatchOperationOptions = Parameters<typeof updateJobsBatchOperation>[0];
|
|
22594
|
+
type updateJobsBatchOperationBody = (NonNullable<updateJobsBatchOperationOptions> extends {
|
|
22595
|
+
body?: infer B;
|
|
22596
|
+
} ? B : never);
|
|
22597
|
+
type updateJobsBatchOperationInput = updateJobsBatchOperationBody;
|
|
22361
22598
|
type updateMappingRuleOptions = Parameters<typeof updateMappingRule>[0];
|
|
22362
22599
|
type updateMappingRuleBody = (NonNullable<updateMappingRuleOptions> extends {
|
|
22363
22600
|
body?: infer B;
|
|
@@ -24875,6 +25112,33 @@ declare class CamundaClient {
|
|
|
24875
25112
|
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
24876
25113
|
*/
|
|
24877
25114
|
getProcessInstanceStatisticsByError(input: getProcessInstanceStatisticsByErrorInput, /** Management of eventual consistency **/ consistencyManagement: getProcessInstanceStatisticsByErrorConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof getProcessInstanceStatisticsByError>>;
|
|
25115
|
+
/**
|
|
25116
|
+
* Get wait state statistics
|
|
25117
|
+
*
|
|
25118
|
+
* Get statistics about waiting element instances by the process instance key, grouped by element id.
|
|
25119
|
+
*
|
|
25120
|
+
* @example Get process instance wait state statistics
|
|
25121
|
+
* ```ts
|
|
25122
|
+
* async function getProcessInstanceWaitStateStatisticsExample(
|
|
25123
|
+
* processInstanceKey: ProcessInstanceKey
|
|
25124
|
+
* ) {
|
|
25125
|
+
* const camunda = createCamundaClient();
|
|
25126
|
+
*
|
|
25127
|
+
* const result = await camunda.getProcessInstanceWaitStateStatistics(
|
|
25128
|
+
* { processInstanceKey },
|
|
25129
|
+
* { consistency: { waitUpToMs: 5000 } }
|
|
25130
|
+
* );
|
|
25131
|
+
*
|
|
25132
|
+
* for (const stat of result.items ?? []) {
|
|
25133
|
+
* console.log(`Element ${stat.elementId}: waiting=${stat.waitingCount}`);
|
|
25134
|
+
* }
|
|
25135
|
+
* }
|
|
25136
|
+
* ```
|
|
25137
|
+
* @operationId getProcessInstanceWaitStateStatistics
|
|
25138
|
+
* @tags Process instance
|
|
25139
|
+
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
25140
|
+
*/
|
|
25141
|
+
getProcessInstanceWaitStateStatistics(input: getProcessInstanceWaitStateStatisticsInput, /** Management of eventual consistency **/ consistencyManagement: getProcessInstanceWaitStateStatisticsConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof getProcessInstanceWaitStateStatistics>>;
|
|
24878
25142
|
/**
|
|
24879
25143
|
* Get resource
|
|
24880
25144
|
*
|
|
@@ -27296,6 +27560,34 @@ declare class CamundaClient {
|
|
|
27296
27560
|
* @tags Job
|
|
27297
27561
|
*/
|
|
27298
27562
|
updateJob(input: updateJobInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof updateJob>>;
|
|
27563
|
+
/**
|
|
27564
|
+
* Update jobs (batch)
|
|
27565
|
+
*
|
|
27566
|
+
* Creates a batch operation to update jobs matching the given filter. At least one changeset field must be non-null. This is done asynchronously; the progress can be tracked using the batchOperationKey from the response and the batch operation status endpoint (/batch-operations/{batchOperationKey}).
|
|
27567
|
+
*
|
|
27568
|
+
*
|
|
27569
|
+
* @example Update jobs in batch
|
|
27570
|
+
* ```ts
|
|
27571
|
+
* async function updateJobsBatchOperationExample() {
|
|
27572
|
+
* const camunda = createCamundaClient();
|
|
27573
|
+
*
|
|
27574
|
+
* const result = await camunda.updateJobsBatchOperation({
|
|
27575
|
+
* filter: {
|
|
27576
|
+
* type: 'payment-processing',
|
|
27577
|
+
* hasFailedWithRetriesLeft: false,
|
|
27578
|
+
* },
|
|
27579
|
+
* changeset: {
|
|
27580
|
+
* retries: 3,
|
|
27581
|
+
* },
|
|
27582
|
+
* });
|
|
27583
|
+
*
|
|
27584
|
+
* console.log(`Batch operation key: ${result.batchOperationKey}`);
|
|
27585
|
+
* }
|
|
27586
|
+
* ```
|
|
27587
|
+
* @operationId updateJobsBatchOperation
|
|
27588
|
+
* @tags Job
|
|
27589
|
+
*/
|
|
27590
|
+
updateJobsBatchOperation(input: updateJobsBatchOperationInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof updateJobsBatchOperation>>;
|
|
27299
27591
|
/**
|
|
27300
27592
|
* Update mapping rule
|
|
27301
27593
|
*
|
|
@@ -27681,4 +27973,4 @@ declare function eventuallyTE<E, A>(thunk: () => Promise<A>, predicate: (a: A) =
|
|
|
27681
27973
|
waitUpToMs: number;
|
|
27682
27974
|
}): TaskEither<E, A>;
|
|
27683
27975
|
|
|
27684
|
-
export { type assignUserTaskInput as $, type AnyVariableSchema as A, type AssignClientToTenantErrors as A$, type AssignRoleToUserData as A0, type AssignRoleToUserErrors as A1, type AssignRoleToUserError as A2, type AssignRoleToUserResponses as A3, type AssignRoleToUserResponse as A4, type CreateAdminUserData as A5, type CreateAdminUserErrors as A6, type CreateAdminUserError as A7, type CreateAdminUserResponses as A8, type CreateAdminUserResponse as A9, type SearchTenantsError as AA, type SearchTenantsResponses as AB, type SearchTenantsResponse as AC, type DeleteTenantData as AD, type DeleteTenantErrors as AE, type DeleteTenantError as AF, type DeleteTenantResponses as AG, type DeleteTenantResponse as AH, type GetTenantData as AI, type GetTenantErrors as AJ, type GetTenantError as AK, type GetTenantResponses as AL, type GetTenantResponse as AM, type UpdateTenantData as AN, type UpdateTenantErrors as AO, type UpdateTenantError as AP, type UpdateTenantResponses as AQ, type UpdateTenantResponse as AR, type SearchClientsForTenantData as AS, type SearchClientsForTenantResponses as AT, type SearchClientsForTenantResponse as AU, type UnassignClientFromTenantData as AV, type UnassignClientFromTenantErrors as AW, type UnassignClientFromTenantError as AX, type UnassignClientFromTenantResponses as AY, type UnassignClientFromTenantResponse as AZ, type AssignClientToTenantData as A_, type BroadcastSignalData as Aa, type BroadcastSignalErrors as Ab, type BroadcastSignalError as Ac, type BroadcastSignalResponses as Ad, type BroadcastSignalResponse as Ae, type GetStatusData as Af, type GetStatusErrors as Ag, type GetStatusResponses as Ah, type GetStatusResponse as Ai, type GetUsageMetricsData as Aj, type GetUsageMetricsErrors as Ak, type GetUsageMetricsError as Al, type GetUsageMetricsResponses as Am, type GetUsageMetricsResponse as An, type GetSystemConfigurationData as Ao, type GetSystemConfigurationErrors as Ap, type GetSystemConfigurationError as Aq, type GetSystemConfigurationResponses as Ar, type GetSystemConfigurationResponse as As, type CreateTenantData as At, type CreateTenantErrors as Au, type CreateTenantError as Av, type CreateTenantResponses as Aw, type CreateTenantResponse as Ax, type SearchTenantsData as Ay, type SearchTenantsErrors as Az, type BackpressureSeverity as B, type CreateUserResponses as B$, type AssignClientToTenantError as B0, type AssignClientToTenantResponses as B1, type AssignClientToTenantResponse as B2, type SearchGroupIdsForTenantData as B3, type SearchGroupIdsForTenantResponses as B4, type SearchGroupIdsForTenantResponse as B5, type UnassignGroupFromTenantData as B6, type UnassignGroupFromTenantErrors as B7, type UnassignGroupFromTenantError as B8, type UnassignGroupFromTenantResponses as B9, type UnassignRoleFromTenantResponse as BA, type AssignRoleToTenantData as BB, type AssignRoleToTenantErrors as BC, type AssignRoleToTenantError as BD, type AssignRoleToTenantResponses as BE, type AssignRoleToTenantResponse as BF, type SearchUsersForTenantData as BG, type SearchUsersForTenantResponses as BH, type SearchUsersForTenantResponse as BI, type UnassignUserFromTenantData as BJ, type UnassignUserFromTenantErrors as BK, type UnassignUserFromTenantError as BL, type UnassignUserFromTenantResponses as BM, type UnassignUserFromTenantResponse as BN, type AssignUserToTenantData as BO, type AssignUserToTenantErrors as BP, type AssignUserToTenantError as BQ, type AssignUserToTenantResponses as BR, type AssignUserToTenantResponse as BS, type GetTopologyData as BT, type GetTopologyErrors as BU, type GetTopologyError as BV, type GetTopologyResponses as BW, type GetTopologyResponse as BX, type CreateUserData as BY, type CreateUserErrors as BZ, type CreateUserError as B_, type UnassignGroupFromTenantResponse as Ba, type AssignGroupToTenantData as Bb, type AssignGroupToTenantErrors as Bc, type AssignGroupToTenantError as Bd, type AssignGroupToTenantResponses as Be, type AssignGroupToTenantResponse as Bf, type SearchMappingRulesForTenantData as Bg, type SearchMappingRulesForTenantResponses as Bh, type SearchMappingRulesForTenantResponse as Bi, type UnassignMappingRuleFromTenantData as Bj, type UnassignMappingRuleFromTenantErrors as Bk, type UnassignMappingRuleFromTenantError as Bl, type UnassignMappingRuleFromTenantResponses as Bm, type UnassignMappingRuleFromTenantResponse as Bn, type AssignMappingRuleToTenantData as Bo, type AssignMappingRuleToTenantErrors as Bp, type AssignMappingRuleToTenantError as Bq, type AssignMappingRuleToTenantResponses as Br, type AssignMappingRuleToTenantResponse as Bs, type SearchRolesForTenantData as Bt, type SearchRolesForTenantResponses as Bu, type SearchRolesForTenantResponse as Bv, type UnassignRoleFromTenantData as Bw, type UnassignRoleFromTenantErrors as Bx, type UnassignRoleFromTenantError as By, type UnassignRoleFromTenantResponses as Bz, CamundaClient as C, type GetUserTaskFormError as C$, type CreateUserResponse as C0, type SearchUsersData as C1, type SearchUsersErrors as C2, type SearchUsersError as C3, type SearchUsersResponses as C4, type SearchUsersResponse as C5, type DeleteUserData as C6, type DeleteUserErrors as C7, type DeleteUserError as C8, type DeleteUserResponses as C9, type UnassignUserTaskData as CA, type UnassignUserTaskErrors as CB, type UnassignUserTaskError as CC, type UnassignUserTaskResponses as CD, type UnassignUserTaskResponse as CE, type AssignUserTaskData as CF, type AssignUserTaskErrors as CG, type AssignUserTaskError as CH, type AssignUserTaskResponses as CI, type AssignUserTaskResponse as CJ, type SearchUserTaskAuditLogsData as CK, type SearchUserTaskAuditLogsErrors as CL, type SearchUserTaskAuditLogsError as CM, type SearchUserTaskAuditLogsResponses as CN, type SearchUserTaskAuditLogsResponse as CO, type CompleteUserTaskData as CP, type CompleteUserTaskErrors as CQ, type CompleteUserTaskError as CR, type CompleteUserTaskResponses as CS, type CompleteUserTaskResponse as CT, type SearchUserTaskEffectiveVariablesData as CU, type SearchUserTaskEffectiveVariablesErrors as CV, type SearchUserTaskEffectiveVariablesError as CW, type SearchUserTaskEffectiveVariablesResponses as CX, type SearchUserTaskEffectiveVariablesResponse as CY, type GetUserTaskFormData as CZ, type GetUserTaskFormErrors as C_, type DeleteUserResponse as Ca, type GetUserData as Cb, type GetUserErrors as Cc, type GetUserError as Cd, type GetUserResponses as Ce, type GetUserResponse as Cf, type UpdateUserData as Cg, type UpdateUserErrors as Ch, type UpdateUserError as Ci, type UpdateUserResponses as Cj, type UpdateUserResponse as Ck, type SearchUserTasksData as Cl, type SearchUserTasksErrors as Cm, type SearchUserTasksError as Cn, type SearchUserTasksResponses as Co, type SearchUserTasksResponse as Cp, type GetUserTaskData as Cq, type GetUserTaskErrors as Cr, type GetUserTaskError as Cs, type GetUserTaskResponses as Ct, type GetUserTaskResponse as Cu, type UpdateUserTaskData as Cv, type UpdateUserTaskErrors as Cw, type UpdateUserTaskError as Cx, type UpdateUserTaskResponses as Cy, type UpdateUserTaskResponse as Cz, VariableScopeCollisionError as D, type GetUserTaskFormResponses as D0, type GetUserTaskFormResponse as D1, type SearchUserTaskVariablesData as D2, type SearchUserTaskVariablesErrors as D3, type SearchUserTaskVariablesError as D4, type SearchUserTaskVariablesResponses as D5, type SearchUserTaskVariablesResponse as D6, type SearchVariablesData as D7, type SearchVariablesErrors as D8, type SearchVariablesError as D9, type SearchVariablesResponses as Da, type SearchVariablesResponse as Db, type GetVariableData as Dc, type GetVariableErrors as Dd, type GetVariableError as De, type GetVariableResponses as Df, type GetVariableResponse as Dg, assertConstraint as Dh, classifyDomainError as Di, type DomainError as Dj, type DomainErrorTag as Dk, eventuallyTE as Dl, type FnKeys as Dm, type Fpify as Dn, foldDomainError as Do, type HttpError as Dp, type Left as Dq, type Right as Dr, retryTE as Ds, type TaskEither as Dt, withTimeoutTE as Du, type Either as E, variableNamesFromSchema as F, type AuthStrategy as G, type HttpRetryPolicy as H, type CamundaConfig as I, type Job as J, type ValidationMode as K, type activateAdHocSubProcessActivitiesInput as L, type activateJobsInput as M, type assignClientToGroupInput as N, type OperationOptions as O, type assignClientToTenantInput as P, type assignGroupToTenantInput as Q, type assignMappingRuleToGroupInput as R, type SdkError as S, type TelemetryHooks as T, type assignMappingRuleToTenantInput as U, VariableCollector as V, type assignRoleToClientInput as W, type assignRoleToGroupInput as X, type assignRoleToMappingRuleInput as Y, type assignRoleToTenantInput as Z, type assignRoleToUserInput as _, type CamundaOptions as a, type getDecisionRequirementsXmlInput as a$, type assignUserToGroupInput as a0, type assignUserToTenantInput as a1, type broadcastSignalInput as a2, type cancelBatchOperationInput as a3, type cancelProcessInstanceInput as a4, type cancelProcessInstancesBatchOperationInput as a5, type completeJobInput as a6, type completeUserTaskInput as a7, type correlateMessageInput as a8, type createAdminUserInput as a9, type deleteProcessInstancesBatchOperationInput as aA, type deleteResourceInput as aB, type deleteRoleInput as aC, type deleteTenantInput as aD, type deleteTenantClusterVariableInput as aE, type deleteUserInput as aF, type evaluateConditionalsInput as aG, type evaluateDecisionInput as aH, type evaluateExpressionInput as aI, type failJobInput as aJ, type getAgentInstanceInput as aK, type getAgentInstanceConsistency as aL, type getAuditLogInput as aM, type getAuditLogConsistency as aN, type getAuthenticationInput as aO, type getAuthorizationInput as aP, type getAuthorizationConsistency as aQ, type getBatchOperationInput as aR, type getBatchOperationConsistency as aS, type getDecisionDefinitionInput as aT, type getDecisionDefinitionConsistency as aU, type getDecisionDefinitionXmlInput as aV, type getDecisionDefinitionXmlConsistency as aW, type getDecisionInstanceInput as aX, type getDecisionInstanceConsistency as aY, type getDecisionRequirementsInput as aZ, type getDecisionRequirementsConsistency as a_, type createAgentInstanceInput as aa, type createAgentInstanceHistoryItemInput as ab, type createAuthorizationInput as ac, type createDeploymentInput as ad, type createDocumentInput as ae, type createDocumentLinkInput as af, type createDocumentsInput as ag, type createElementInstanceVariablesInput as ah, type createGlobalClusterVariableInput as ai, type createGlobalTaskListenerInput as aj, type createGroupInput as ak, type createMappingRuleInput as al, type createProcessInstanceInput as am, type createRoleInput as an, type createTenantInput as ao, type createTenantClusterVariableInput as ap, type createUserInput as aq, type deleteAuthorizationInput as ar, type deleteDecisionInstanceInput as as, type deleteDecisionInstancesBatchOperationInput as at, type deleteDocumentInput as au, type deleteGlobalClusterVariableInput as av, type deleteGlobalTaskListenerInput as aw, type deleteGroupInput as ax, type deleteMappingRuleInput as ay, type deleteProcessInstanceInput as az, type CancelablePromise as b, type getTenantInput as b$, type getDecisionRequirementsXmlConsistency as b0, type getDocumentInput as b1, type getElementInstanceInput as b2, type getElementInstanceConsistency as b3, type getFormByKeyInput as b4, type getFormByKeyConsistency as b5, type getGlobalClusterVariableInput as b6, type getGlobalClusterVariableConsistency as b7, type getGlobalJobStatisticsInput as b8, type getGlobalJobStatisticsConsistency as b9, type getProcessDefinitionStatisticsConsistency as bA, type getProcessDefinitionXmlInput as bB, type getProcessDefinitionXmlConsistency as bC, type getProcessInstanceInput as bD, type getProcessInstanceConsistency as bE, type getProcessInstanceCallHierarchyInput as bF, type getProcessInstanceCallHierarchyConsistency as bG, type getProcessInstanceSequenceFlowsInput as bH, type getProcessInstanceSequenceFlowsConsistency as bI, type getProcessInstanceStatisticsInput as bJ, type getProcessInstanceStatisticsConsistency as bK, type getProcessInstanceStatisticsByDefinitionInput as bL, type getProcessInstanceStatisticsByDefinitionConsistency as bM, type getProcessInstanceStatisticsByErrorInput as bN, type getProcessInstanceStatisticsByErrorConsistency as bO, type getResourceInput as bP, type getResourceConsistency as bQ, type getResourceContentInput as bR, type getResourceContentConsistency as bS, type getResourceContentBinaryInput as bT, type getResourceContentBinaryConsistency as bU, type getRoleInput as bV, type getRoleConsistency as bW, type getStartProcessFormInput as bX, type getStartProcessFormConsistency as bY, type getStatusInput as bZ, type getSystemConfigurationInput as b_, type getGlobalTaskListenerInput as ba, type getGlobalTaskListenerConsistency as bb, type getGroupInput as bc, type getGroupConsistency as bd, type getIncidentInput as be, type getIncidentConsistency as bf, type getJobErrorStatisticsInput as bg, type getJobErrorStatisticsConsistency as bh, type getJobTimeSeriesStatisticsInput as bi, type getJobTimeSeriesStatisticsConsistency as bj, type getJobTypeStatisticsInput as bk, type getJobTypeStatisticsConsistency as bl, type getJobWorkerStatisticsInput as bm, type getJobWorkerStatisticsConsistency as bn, type getLicenseInput as bo, type getMappingRuleInput as bp, type getMappingRuleConsistency as bq, type getProcessDefinitionInput as br, type getProcessDefinitionConsistency as bs, type getProcessDefinitionInstanceStatisticsInput as bt, type getProcessDefinitionInstanceStatisticsConsistency as bu, type getProcessDefinitionInstanceVersionStatisticsInput as bv, type getProcessDefinitionInstanceVersionStatisticsConsistency as bw, type getProcessDefinitionMessageSubscriptionStatisticsInput as bx, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as by, type getProcessDefinitionStatisticsInput as bz, createCamundaClient as c, type searchGroupsInput as c$, type getTenantConsistency as c0, type getTenantClusterVariableInput as c1, type getTenantClusterVariableConsistency as c2, type getTopologyInput as c3, type getUsageMetricsInput as c4, type getUsageMetricsConsistency as c5, type getUserInput as c6, type getUserConsistency as c7, type getUserTaskInput as c8, type getUserTaskConsistency as c9, type searchBatchOperationsConsistency as cA, type searchClientsForGroupInput as cB, type searchClientsForGroupConsistency as cC, type searchClientsForRoleInput as cD, type searchClientsForRoleConsistency as cE, type searchClientsForTenantInput as cF, type searchClientsForTenantConsistency as cG, type searchClusterVariablesInput as cH, type searchClusterVariablesConsistency as cI, type searchCorrelatedMessageSubscriptionsInput as cJ, type searchCorrelatedMessageSubscriptionsConsistency as cK, type searchDecisionDefinitionsInput as cL, type searchDecisionDefinitionsConsistency as cM, type searchDecisionInstancesInput as cN, type searchDecisionInstancesConsistency as cO, type searchDecisionRequirementsInput as cP, type searchDecisionRequirementsConsistency as cQ, type searchElementInstanceIncidentsInput as cR, type searchElementInstanceIncidentsConsistency as cS, type searchElementInstancesInput as cT, type searchElementInstancesConsistency as cU, type searchElementInstanceWaitStatesInput as cV, type searchElementInstanceWaitStatesConsistency as cW, type searchGlobalTaskListenersInput as cX, type searchGlobalTaskListenersConsistency as cY, type searchGroupIdsForTenantInput as cZ, type searchGroupIdsForTenantConsistency as c_, type getUserTaskFormInput as ca, type getUserTaskFormConsistency as cb, type getVariableInput as cc, type getVariableConsistency as cd, type migrateProcessInstanceInput as ce, type migrateProcessInstancesBatchOperationInput as cf, type modifyProcessInstanceInput as cg, type modifyProcessInstancesBatchOperationInput as ch, type pinClockInput as ci, type publishMessageInput as cj, type resetClockInput as ck, type resolveIncidentInput as cl, type resolveIncidentsBatchOperationInput as cm, type resolveProcessInstanceIncidentsInput as cn, type resumeBatchOperationInput as co, type searchAgentInstanceHistoryInput as cp, type searchAgentInstanceHistoryConsistency as cq, type searchAgentInstancesInput as cr, type searchAgentInstancesConsistency as cs, type searchAuditLogsInput as ct, type searchAuditLogsConsistency as cu, type searchAuthorizationsInput as cv, type searchAuthorizationsConsistency as cw, type searchBatchOperationItemsInput as cx, type searchBatchOperationItemsConsistency as cy, type searchBatchOperationsInput as cz, type CamundaFpClient as d, type unassignRoleFromUserInput as d$, type searchGroupsConsistency as d0, type searchGroupsForRoleInput as d1, type searchGroupsForRoleConsistency as d2, type searchIncidentsInput as d3, type searchIncidentsConsistency as d4, type searchJobsInput as d5, type searchJobsConsistency as d6, type searchMappingRuleInput as d7, type searchMappingRuleConsistency as d8, type searchMappingRulesForGroupInput as d9, type searchUsersForGroupInput as dA, type searchUsersForGroupConsistency as dB, type searchUsersForRoleInput as dC, type searchUsersForRoleConsistency as dD, type searchUsersForTenantInput as dE, type searchUsersForTenantConsistency as dF, type searchUserTaskAuditLogsInput as dG, type searchUserTaskAuditLogsConsistency as dH, type searchUserTaskEffectiveVariablesInput as dI, type searchUserTaskEffectiveVariablesConsistency as dJ, type searchUserTasksInput as dK, type searchUserTasksConsistency as dL, type searchUserTaskVariablesInput as dM, type searchUserTaskVariablesConsistency as dN, type searchVariablesInput as dO, 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, type unassignRoleFromTenantInput as d_, type searchMappingRulesForGroupConsistency as da, type searchMappingRulesForRoleInput as db, type searchMappingRulesForRoleConsistency as dc, type searchMappingRulesForTenantInput as dd, type searchMappingRulesForTenantConsistency as de, type searchMessageSubscriptionsInput as df, type searchMessageSubscriptionsConsistency as dg, type searchProcessDefinitionsInput as dh, type searchProcessDefinitionsConsistency as di, type searchProcessInstanceIncidentsInput as dj, type searchProcessInstanceIncidentsConsistency as dk, type searchProcessInstancesInput as dl, type searchProcessInstancesConsistency as dm, type searchResourcesInput as dn, type searchResourcesConsistency as dp, type searchRolesInput as dq, type searchRolesConsistency as dr, type searchRolesForGroupInput as ds, type searchRolesForGroupConsistency as dt, type searchRolesForTenantInput as du, type searchRolesForTenantConsistency as dv, type searchTenantsInput as dw, type searchTenantsConsistency as dx, type searchUsersInput as dy, type searchUsersConsistency as dz, createCamundaFpClient as e, AuditLogOperationTypeEnum as e$, type unassignUserFromGroupInput as e0, type unassignUserFromTenantInput as e1, type unassignUserTaskInput as e2, type updateAgentInstanceInput as e3, type updateAuthorizationInput as e4, type updateGlobalClusterVariableInput as e5, type updateGlobalTaskListenerInput as e6, type updateGroupInput as e7, type updateJobInput as e8, type updateMappingRuleInput as e9, type AgentInstanceHistoryItemRequest as eA, type AgentInstanceHistoryItemCreationResult as eB, type AgentInstanceHistorySearchQuerySortRequest as eC, type AgentInstanceHistorySearchQuery as eD, type AgentInstanceHistoryFilter as eE, type AgentInstanceHistorySearchQueryResult as eF, type AgentInstanceHistoryItemResult as eG, AgentInstanceHistoryRoleEnum as eH, AgentInstanceHistoryCommitStatusEnum as eI, type AgentInstanceMessageContent as eJ, type AgentInstanceTextContent as eK, type AgentInstanceDocumentContent as eL, type AgentInstanceObjectContent as eM, AgentInstanceMessageContentTypeEnum as eN, type AgentInstanceToolCall as eO, type AgentInstanceHistoryItemMetrics as eP, type AgentInstanceHistoryRoleFilterProperty as eQ, type AdvancedAgentInstanceHistoryRoleFilter as eR, type AgentInstanceHistoryCommitStatusFilterProperty as eS, type AdvancedAgentInstanceHistoryCommitStatusFilter as eT, type AuditLogResult as eU, type AuditLogSearchQuerySortRequest as eV, type AuditLogSearchQueryRequest as eW, type AuditLogFilter as eX, type AuditLogSearchQueryResult as eY, AuditLogEntityKey as eZ, AuditLogEntityTypeEnum as e_, type updateRoleInput as ea, type updateTenantInput as eb, type updateTenantClusterVariableInput as ec, type updateUserInput as ed, type updateUserTaskInput as ee, type ExtendedDeploymentResult as ef, CancelError as eg, type CamundaKey as eh, type ClientOptions as ei, type AgentInstanceSearchQuerySortRequest as ej, type AgentInstanceSearchQuery as ek, type AgentInstanceFilter as el, type AgentInstanceSearchQueryResult as em, type AgentInstanceResult as en, type AgentInstanceDefinition as eo, type AgentTool as ep, type AgentInstanceMetrics as eq, type AgentInstanceLimits as er, AgentInstanceStatusEnum as es, AgentInstanceUpdateStatusEnum as et, type AgentInstanceCreationRequest as eu, type AgentInstanceCreationResult as ev, type AgentInstanceMetricsDelta as ew, type AgentInstanceUpdateRequest as ex, type AgentInstanceStatusFilterProperty as ey, type AdvancedAgentInstanceStatusFilter as ez, isRight as f, type ClusterVariableSearchResult as f$, AuditLogActorTypeEnum as f0, AuditLogResultEnum as f1, AuditLogCategoryEnum as f2, type AuditLogEntityKeyFilterProperty as f3, type AdvancedAuditLogEntityKeyFilter as f4, type EntityTypeFilterProperty as f5, type AdvancedEntityTypeFilter as f6, type OperationTypeFilterProperty as f7, type AdvancedOperationTypeFilter as f8, type CategoryFilterProperty as f9, type BatchOperationItemSearchQuerySortRequest as fA, type BatchOperationItemSearchQuery as fB, type BatchOperationItemFilter as fC, type BatchOperationItemSearchQueryResult as fD, type BatchOperationItemResponse as fE, type DecisionInstanceDeletionBatchOperationRequest as fF, type ProcessInstanceCancellationBatchOperationRequest as fG, type ProcessInstanceIncidentResolutionBatchOperationRequest as fH, type ProcessInstanceDeletionBatchOperationRequest as fI, type ProcessInstanceMigrationBatchOperationRequest as fJ, type ProcessInstanceMigrationBatchOperationPlan as fK, type ProcessInstanceModificationBatchOperationRequest as fL, type ProcessInstanceModificationMoveBatchOperationInstruction as fM, BatchOperationItemStateEnum as fN, BatchOperationStateEnum as fO, BatchOperationTypeEnum as fP, type BatchOperationTypeFilterProperty as fQ, type AdvancedBatchOperationTypeFilter as fR, type BatchOperationStateFilterProperty as fS, type AdvancedBatchOperationStateFilter as fT, type BatchOperationItemStateFilterProperty as fU, type AdvancedBatchOperationItemStateFilter as fV, type ClockPinRequest as fW, ClusterVariableScopeEnum as fX, type CreateClusterVariableRequest as fY, type UpdateClusterVariableRequest as fZ, type ClusterVariableResult as f_, type AdvancedCategoryFilter as fa, type AuditLogResultFilterProperty as fb, type AdvancedResultFilter as fc, type AuditLogActorTypeFilterProperty as fd, type AdvancedActorTypeFilter as fe, type CamundaUserResult as ff, type AuthorizationIdBasedRequest as fg, type AuthorizationPropertyBasedRequest as fh, type AuthorizationRequest as fi, type AuthorizationSearchQuerySortRequest as fj, type AuthorizationSearchQuery as fk, type AuthorizationFilter as fl, type AuthorizationResult as fm, type AuthorizationSearchResult as fn, type AuthorizationCreateResult as fo, PermissionTypeEnum as fp, ResourceTypeEnum as fq, OwnerTypeEnum as fr, AuthorizationKey as fs, type BatchOperationCreatedResult as ft, type BatchOperationSearchQuerySortRequest as fu, type BatchOperationSearchQuery as fv, type BatchOperationFilter as fw, type BatchOperationSearchQueryResult as fx, type BatchOperationResponse as fy, type BatchOperationError as fz, CamundaValidationError as g, type ResourceFilter as g$, type ClusterVariableResultBase as g0, type ClusterVariableSearchQueryRequest as g1, type ClusterVariableSearchQuerySortRequest as g2, type ClusterVariableSearchQueryFilterRequest as g3, type ClusterVariableScopeFilterProperty as g4, type AdvancedClusterVariableScopeFilter as g5, type ClusterVariableSearchQueryResult as g6, type TopologyResponse as g7, type BrokerInfo as g8, type Partition as g9, DecisionDefinitionTypeEnum as gA, DecisionInstanceStateEnum as gB, type AdvancedDecisionInstanceStateFilter as gC, type DecisionInstanceStateFilterProperty as gD, type DecisionRequirementsSearchQuerySortRequest as gE, type DecisionRequirementsSearchQuery as gF, type DecisionRequirementsFilter as gG, type DecisionRequirementsSearchQueryResult as gH, type DecisionRequirementsResult as gI, type DeploymentResult as gJ, type DeploymentMetadataResult as gK, type DeploymentProcessResult as gL, type DeploymentDecisionResult as gM, type DeploymentDecisionRequirementsResult as gN, type DeploymentFormResult as gO, type DeploymentResourceResult as gP, type DeleteResourceRequest as gQ, type DeleteResourceResponse as gR, type ResourceResult as gS, DeploymentKey as gT, type ResourceKey as gU, type DeploymentKeyFilterProperty as gV, type AdvancedDeploymentKeyFilter as gW, type ResourceKeyFilterProperty as gX, type AdvancedResourceKeyFilter as gY, type ResourceSearchQuerySortRequest as gZ, type ResourceSearchQuery as g_, type ConditionalEvaluationInstruction as ga, type EvaluateConditionalResult as gb, ConditionalEvaluationKey as gc, type ProcessInstanceReference as gd, StartCursor as ge, EndCursor as gf, type DecisionDefinitionSearchQuerySortRequest as gg, type DecisionDefinitionSearchQuery as gh, type DecisionDefinitionFilter as gi, type DecisionDefinitionSearchQueryResult as gj, type DecisionDefinitionResult as gk, type DecisionEvaluationInstruction as gl, type DecisionEvaluationById as gm, type DecisionEvaluationByKey as gn, type EvaluateDecisionResult as go, type EvaluatedDecisionResult as gp, type DecisionInstanceSearchQuerySortRequest as gq, type DecisionInstanceSearchQuery as gr, type DecisionInstanceFilter as gs, type DeleteDecisionInstanceRequest as gt, type DecisionInstanceSearchQueryResult as gu, type DecisionInstanceResult as gv, type DecisionInstanceGetQueryResult as gw, type EvaluatedDecisionInputItem as gx, type EvaluatedDecisionOutputItem as gy, type MatchedDecisionRuleItem as gz, EventualConsistencyTimeoutError as h, type AdvancedGlobalListenerSourceFilter as h$, type ResourceSearchQueryResult as h0, type DocumentReference as h1, type DocumentCreationFailureDetail as h2, type DocumentCreationBatchResponse as h3, type DocumentMetadata as h4, type DocumentMetadataResponse as h5, type DocumentLinkRequest as h6, type DocumentLink as h7, DocumentId as h8, type ElementInstanceSearchQuerySortRequest as h9, type SignalWaitStateDetails as hA, type AdHocSubProcessActivateActivityReference as hB, type ExpressionEvaluationRequest as hC, type ExpressionEvaluationResult as hD, type ExpressionEvaluationWarningItem as hE, type LikeFilter as hF, type BasicStringFilter as hG, type AdvancedStringFilter as hH, type BasicStringFilterProperty as hI, type StringFilterProperty as hJ, type AdvancedIntegerFilter as hK, type IntegerFilterProperty as hL, type AdvancedDateTimeFilter as hM, type DateTimeFilterProperty as hN, type FormResult as hO, GlobalListenerSourceEnum as hP, GlobalTaskListenerEventTypeEnum as hQ, type GlobalListenerBase as hR, type GlobalTaskListenerBase as hS, type GlobalTaskListenerEventTypes as hT, type CreateGlobalTaskListenerRequest as hU, type UpdateGlobalTaskListenerRequest as hV, type GlobalTaskListenerResult as hW, type GlobalTaskListenerSearchQueryRequest as hX, type GlobalTaskListenerSearchQuerySortRequest as hY, type GlobalTaskListenerSearchQueryFilterRequest as hZ, type GlobalListenerSourceFilterProperty as h_, type ElementInstanceWaitStateQuerySortRequest as ha, type ElementInstanceSearchQuery as hb, type ElementInstanceFilter as hc, type ElementInstanceFilterFields as hd, type ElementInstanceStateFilterProperty as he, type AdvancedElementInstanceStateFilter as hf, type ElementInstanceSearchQueryResult as hg, type ElementInstanceResult as hh, ElementInstanceStateEnum as hi, type AdHocSubProcessActivateActivitiesInstruction as hj, type ElementInstanceWaitStateQuery as hk, type ElementInstanceWaitStateFilter as hl, type WaitStateElementTypeFilterProperty as hm, type AdvancedWaitStateElementTypeFilter as hn, WaitStateElementTypeEnum as ho, type WaitStateTypeFilterProperty as hp, type AdvancedWaitStateTypeFilter as hq, type ElementInstanceWaitStateQueryResult as hr, type ElementInstanceWaitStateResult as hs, type WaitStateDetails as ht, WaitStateTypeEnum as hu, type BaseWaitStateDetails as hv, type JobWaitStateDetails as hw, type MessageWaitStateDetails as hx, type UserTaskWaitStateDetails as hy, type TimerWaitStateDetails as hz, isLeft as i, type IncidentProcessInstanceStatisticsByDefinitionFilter as i$, type GlobalTaskListenerEventTypeFilterProperty as i0, type AdvancedGlobalTaskListenerEventTypeFilter as i1, type GlobalTaskListenerSearchQueryResult as i2, type GroupCreateRequest as i3, type GroupCreateResult as i4, type GroupUpdateRequest as i5, type GroupUpdateResult as i6, type GroupResult as i7, type GroupSearchQuerySortRequest as i8, type GroupSearchQueryRequest as i9, Tag as iA, type TagSet as iB, BusinessId as iC, type IterationId as iD, type ElementIdFilterProperty as iE, type AdvancedElementIdFilter as iF, type ProcessDefinitionIdFilterProperty as iG, type AdvancedProcessDefinitionIdFilter as iH, type IncidentSearchQuery as iI, type IncidentFilter as iJ, type IncidentErrorTypeFilterProperty as iK, type AdvancedIncidentErrorTypeFilter as iL, IncidentErrorTypeEnum as iM, type IncidentStateFilterProperty as iN, type AdvancedIncidentStateFilter as iO, IncidentStateEnum as iP, type IncidentSearchQuerySortRequest as iQ, type IncidentSearchQueryResult as iR, type IncidentResult as iS, type IncidentResolutionRequest as iT, type IncidentProcessInstanceStatisticsByErrorQuery as iU, type IncidentProcessInstanceStatisticsByErrorQueryResult as iV, type IncidentProcessInstanceStatisticsByErrorResult as iW, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as iX, type IncidentProcessInstanceStatisticsByDefinitionQuery as iY, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as iZ, type IncidentProcessInstanceStatisticsByDefinitionResult as i_, type GroupFilter as ia, type GroupSearchQueryResult as ib, type GroupUserResult as ic, type GroupUserSearchResult as id, type GroupUserSearchQueryRequest as ie, type GroupUserSearchQuerySortRequest as ig, type GroupClientResult as ih, type GroupClientSearchResult as ii, type GroupClientSearchQueryRequest as ij, type GroupMappingRuleSearchResult as ik, type GroupRoleSearchResult as il, type GroupClientSearchQuerySortRequest as im, ProcessDefinitionId as io, ElementId as ip, FormId as iq, DecisionDefinitionId as ir, GlobalListenerId as is, TenantId as it, Username as iu, RoleId as iv, GroupId as iw, MappingRuleId as ix, ClientId as iy, ClusterVariableName as iz, isSdkError as j, BatchOperationKey as j$, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as j0, type GlobalJobStatisticsQueryResult as j1, type StatusMetric as j2, type JobTypeStatisticsQuery as j3, type JobTypeStatisticsFilter as j4, type JobTypeStatisticsQueryResult as j5, type JobTypeStatisticsItem as j6, type JobWorkerStatisticsQuery as j7, type JobWorkerStatisticsFilter as j8, type JobWorkerStatisticsQueryResult as j9, type JobUpdateRequest as jA, type JobChangeset as jB, TenantFilterEnum as jC, JobStateEnum as jD, JobKindEnum as jE, JobListenerEventTypeEnum as jF, type JobKindFilterProperty as jG, type AdvancedJobKindFilter as jH, type JobListenerEventTypeFilterProperty as jI, type AdvancedJobListenerEventTypeFilter as jJ, type JobStateFilterProperty as jK, type AdvancedJobStateFilter as jL, type LongKey as jM, ProcessInstanceKey as jN, ProcessDefinitionKey as jO, ElementInstanceKey as jP, UserTaskKey as jQ, FormKey as jR, VariableKey as jS, type ScopeKey as jT, IncidentKey as jU, JobKey as jV, DecisionDefinitionKey as jW, DecisionEvaluationInstanceKey as jX, DecisionEvaluationKey as jY, DecisionRequirementsKey as jZ, DecisionInstanceKey as j_, type JobWorkerStatisticsItem as ja, type JobTimeSeriesStatisticsQuery as jb, type JobTimeSeriesStatisticsFilter as jc, type JobTimeSeriesStatisticsQueryResult as jd, type JobTimeSeriesStatisticsItem as je, type JobErrorStatisticsQuery as jf, type JobErrorStatisticsFilter as jg, type JobErrorStatisticsQueryResult as jh, type JobErrorStatisticsItem as ji, type JobActivationRequest as jj, type JobActivationResult as jk, type ActivatedJobResult$1 as jl, type UserTaskProperties as jm, type JobSearchQuery as jn, type JobSearchQuerySortRequest as jo, type JobFilter as jp, type JobSearchQueryResult as jq, type JobSearchResult as jr, type JobFailRequest as js, type JobErrorRequest$1 as jt, type JobCompletionRequest as ju, type JobResult as jv, type JobResultUserTask as jw, type JobResultCorrections as jx, type JobResultAdHocSubProcess as jy, type JobResultActivateElement as jz, type EnrichedActivatedJob as k, type AdvancedMessageSubscriptionStateFilter as k$, type OperationReference as k0, AgentInstanceKey as k1, AgentHistoryItemKey as k2, AuditLogKey as k3, type ProcessDefinitionKeyFilterProperty as k4, type AdvancedProcessDefinitionKeyFilter as k5, type ProcessInstanceKeyFilterProperty as k6, type AdvancedProcessInstanceKeyFilter as k7, type ElementInstanceKeyFilterProperty as k8, type AdvancedElementInstanceKeyFilter as k9, type MappingRuleCreateUpdateResult as kA, type MappingRuleCreateResult as kB, type MappingRuleUpdateResult as kC, type MappingRuleSearchQueryResult as kD, type MappingRuleResult as kE, type MappingRuleSearchQuerySortRequest as kF, type MappingRuleSearchQueryRequest as kG, type MappingRuleFilter as kH, type MessageCorrelationRequest as kI, type MessageCorrelationResult as kJ, type MessagePublicationRequest as kK, type MessagePublicationResult as kL, type MessageSubscriptionSearchQueryResult as kM, type MessageSubscriptionResult as kN, type MessageSubscriptionSearchQuerySortRequest as kO, type MessageSubscriptionSearchQuery as kP, type MessageSubscriptionFilter as kQ, type CorrelatedMessageSubscriptionSearchQueryResult as kR, type CorrelatedMessageSubscriptionResult as kS, type CorrelatedMessageSubscriptionSearchQuery as kT, type CorrelatedMessageSubscriptionSearchQuerySortRequest as kU, MessageSubscriptionStateEnum as kV, MessageSubscriptionTypeEnum as kW, type CorrelatedMessageSubscriptionFilter as kX, type MessageSubscriptionTypeFilterProperty as kY, type AdvancedMessageSubscriptionTypeFilter as kZ, type MessageSubscriptionStateFilterProperty as k_, type JobKeyFilterProperty as ka, type AdvancedJobKeyFilter as kb, type DecisionDefinitionKeyFilterProperty as kc, type AdvancedDecisionDefinitionKeyFilter as kd, type ScopeKeyFilterProperty as ke, type AdvancedScopeKeyFilter as kf, type VariableKeyFilterProperty as kg, type AdvancedVariableKeyFilter as kh, type DecisionEvaluationInstanceKeyFilterProperty as ki, type AdvancedDecisionEvaluationInstanceKeyFilter as kj, type AgentInstanceKeyFilterProperty as kk, type AdvancedAgentInstanceKeyFilter as kl, type AgentHistoryItemKeyFilterProperty as km, type AdvancedAgentHistoryItemKeyFilter as kn, type AuditLogKeyFilterProperty as ko, type AdvancedAuditLogKeyFilter as kp, type FormKeyFilterProperty as kq, type AdvancedFormKeyFilter as kr, type DecisionEvaluationKeyFilterProperty as ks, type AdvancedDecisionEvaluationKeyFilter as kt, type DecisionRequirementsKeyFilterProperty as ku, type AdvancedDecisionRequirementsKeyFilter as kv, type LicenseResponse as kw, type MappingRuleCreateUpdateRequest as kx, type MappingRuleCreateRequest as ky, type MappingRuleUpdateRequest as kz, JobActionReceipt as l, type AdvancedProcessInstanceStateFilter as l$, type AdvancedMessageSubscriptionKeyFilter as l0, type MessageSubscriptionKeyFilterProperty as l1, MessageSubscriptionKey as l2, MessageKey as l3, type ProblemDetail as l4, type ProcessDefinitionSearchQuerySortRequest as l5, type ProcessDefinitionSearchQuery as l6, type ProcessDefinitionFilter as l7, type ProcessDefinitionSearchQueryResult as l8, type ProcessDefinitionResult as l9, type ProcessInstanceFilterFields as lA, type ProcessInstanceFilter as lB, type ProcessInstanceSearchQueryResult as lC, type ProcessInstanceResult as lD, type CancelProcessInstanceRequest as lE, type DeleteProcessInstanceRequest as lF, type ProcessInstanceCallHierarchyEntry as lG, type ProcessInstanceSequenceFlowsQueryResult as lH, type ProcessInstanceSequenceFlowResult as lI, type ProcessInstanceElementStatisticsQueryResult as lJ, type ProcessInstanceMigrationInstruction as lK, type MigrateProcessInstanceMappingInstruction as lL, type ProcessInstanceModificationInstruction as lM, type ProcessInstanceModificationActivateInstruction as lN, type ModifyProcessInstanceVariableInstruction as lO, type ProcessInstanceModificationMoveInstruction as lP, type SourceElementInstruction as lQ, type SourceElementIdInstruction as lR, type SourceElementInstanceKeyInstruction as lS, type AncestorScopeInstruction as lT, type DirectAncestorKeyInstruction as lU, type InferredAncestorKeyInstruction as lV, type UseSourceParentKeyInstruction as lW, type ProcessInstanceModificationTerminateInstruction as lX, type ProcessInstanceModificationTerminateByIdInstruction as lY, type ProcessInstanceModificationTerminateByKeyInstruction as lZ, ProcessInstanceStateEnum as l_, type ProcessDefinitionElementStatisticsQuery as la, type ProcessDefinitionElementStatisticsQueryResult as lb, type ProcessElementStatisticsResult as lc, type ProcessDefinitionMessageSubscriptionStatisticsQuery as ld, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as le, type ProcessDefinitionMessageSubscriptionStatisticsResult as lf, type ProcessDefinitionInstanceStatisticsQuery as lg, type ProcessDefinitionInstanceStatisticsQueryResult as lh, type ProcessDefinitionInstanceStatisticsResult as li, type ProcessDefinitionInstanceStatisticsQuerySortRequest as lj, type ProcessDefinitionInstanceVersionStatisticsQuery as lk, type ProcessDefinitionInstanceVersionStatisticsFilter as ll, type ProcessDefinitionInstanceVersionStatisticsQueryResult as lm, type ProcessDefinitionInstanceVersionStatisticsResult as ln, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as lo, type ProcessInstanceCreationInstruction as lp, type ProcessInstanceCreationInstructionById as lq, type ProcessInstanceCreationInstructionByKey as lr, type ProcessInstanceCreationStartInstruction as ls, type ProcessInstanceCreationRuntimeInstruction as lt, type ProcessInstanceCreationTerminateInstruction as lu, type CreateProcessInstanceResult as lv, type ProcessInstanceSearchQuerySortRequest as lw, type ProcessInstanceSearchQuery as lx, type BaseProcessInstanceFilterFields as ly, type ProcessDefinitionStatisticsFilter as lz, JobWorker as m, type TenantGroupSearchResult as m$, type ProcessInstanceStateFilterProperty as m0, type RoleCreateRequest as m1, type RoleCreateResult as m2, type RoleUpdateRequest as m3, type RoleUpdateResult as m4, type RoleResult as m5, type RoleSearchQuerySortRequest as m6, type RoleSearchQueryRequest as m7, type RoleFilter as m8, type RoleSearchQueryResult as m9, type UsageMetricsResponseItem as mA, type SystemConfigurationResponse as mB, type JobMetricsConfigurationResponse as mC, type ComponentsConfigurationResponse as mD, type DeploymentConfigurationResponse as mE, type AuthenticationConfigurationResponse as mF, type CloudConfigurationResponse as mG, type WebappComponent as mH, type CloudStage as mI, type TenantCreateRequest as mJ, type TenantCreateResult as mK, type TenantUpdateRequest as mL, type TenantUpdateResult as mM, type TenantResult as mN, type TenantSearchQuerySortRequest as mO, type TenantSearchQueryRequest as mP, type TenantFilter as mQ, type TenantSearchQueryResult as mR, type TenantUserResult as mS, type TenantUserSearchResult as mT, type TenantUserSearchQueryRequest as mU, type TenantUserSearchQuerySortRequest as mV, type TenantClientResult as mW, type TenantClientSearchResult as mX, type TenantClientSearchQueryRequest as mY, type TenantClientSearchQuerySortRequest as mZ, type TenantGroupResult as m_, type RoleUserResult as ma, type RoleUserSearchResult as mb, type RoleUserSearchQueryRequest as mc, type RoleUserSearchQuerySortRequest as md, type RoleClientResult as me, type RoleClientSearchResult as mf, type RoleClientSearchQueryRequest as mg, type RoleClientSearchQuerySortRequest as mh, type RoleGroupResult as mi, type RoleGroupSearchResult as mj, type RoleGroupSearchQueryRequest as mk, type RoleMappingRuleSearchResult as ml, type RoleGroupSearchQuerySortRequest as mm, type SearchQueryRequest as mn, type SearchQueryPageRequest as mo, type LimitPagination as mp, type OffsetPagination as mq, type CursorForwardPagination as mr, type CursorBackwardPagination as ms, type SearchQueryResponse as mt, SortOrderEnum as mu, type SearchQueryPageResponse as mv, type SignalBroadcastRequest as mw, type SignalBroadcastResult as mx, SignalKey as my, type UsageMetricsResponse as mz, type JobWorkerConfig as n, type IncidentErrorTypeExactMatch as n$, type TenantGroupSearchQueryRequest as n0, type TenantRoleSearchResult as n1, type TenantMappingRuleSearchResult as n2, type TenantGroupSearchQuerySortRequest as n3, type UserTaskSearchQuerySortRequest as n4, type UserTaskSearchQuery as n5, type UserTaskFilter as n6, type UserTaskSearchQueryResult as n7, type UserTaskResult as n8, type UserTaskCompletionRequest as n9, type VariableResult as nA, type VariableResultBase as nB, type VariableValueFilterProperty as nC, type SetVariableRequest as nD, type AgentInstanceStatusExactMatch as nE, type AgentInstanceHistoryRoleExactMatch as nF, type AgentInstanceHistoryCommitStatusExactMatch as nG, type AuditLogEntityKeyExactMatch as nH, type EntityTypeExactMatch as nI, type OperationTypeExactMatch as nJ, type CategoryExactMatch as nK, type AuditLogResultExactMatch as nL, type AuditLogActorTypeExactMatch as nM, type BatchOperationTypeExactMatch as nN, type BatchOperationStateExactMatch as nO, type BatchOperationItemStateExactMatch as nP, type ClusterVariableScopeExactMatch as nQ, type DecisionInstanceStateExactMatch as nR, type DeploymentKeyExactMatch as nS, type ResourceKeyExactMatch as nT, type ElementInstanceStateExactMatch as nU, type WaitStateElementTypeExactMatch as nV, type WaitStateTypeExactMatch as nW, type GlobalListenerSourceExactMatch as nX, type GlobalTaskListenerEventTypeExactMatch as nY, type ElementIdExactMatch as nZ, type ProcessDefinitionIdExactMatch as n_, type UserTaskAssignmentRequest as na, type UserTaskUpdateRequest as nb, type Changeset as nc, type UserTaskVariableSearchQuerySortRequest as nd, type UserTaskVariableSearchQueryRequest as ne, type UserTaskEffectiveVariableSearchQueryRequest as nf, type UserTaskAuditLogSearchQueryRequest as ng, UserTaskStateEnum as nh, type UserTaskVariableFilter as ni, type UserTaskStateFilterProperty as nj, type AdvancedUserTaskStateFilter as nk, type UserTaskAuditLogFilter as nl, type UserRequest as nm, type UserCreateResult as nn, type UserUpdateRequest as no, type UserUpdateResult as np, type UserResult as nq, type UserSearchQuerySortRequest as nr, type UserSearchQueryRequest as ns, type UserFilter as nt, type UserSearchResult as nu, type VariableSearchQuerySortRequest as nv, type VariableSearchQuery as nw, type VariableFilter as nx, type VariableSearchQueryResult as ny, type VariableSearchResult as nz, type SupportLogger as o, type GetAuthenticationData as o$, type IncidentStateExactMatch as o0, type JobKindExactMatch as o1, type JobListenerEventTypeExactMatch as o2, type JobStateExactMatch as o3, type ProcessDefinitionKeyExactMatch as o4, type ProcessInstanceKeyExactMatch as o5, type ElementInstanceKeyExactMatch as o6, type JobKeyExactMatch as o7, type DecisionDefinitionKeyExactMatch as o8, type ScopeKeyExactMatch as o9, type UpdateAgentInstanceResponses as oA, type UpdateAgentInstanceResponse as oB, type SearchAgentInstancesData as oC, type SearchAgentInstancesErrors as oD, type SearchAgentInstancesError as oE, type SearchAgentInstancesResponses as oF, type SearchAgentInstancesResponse as oG, type CreateAgentInstanceHistoryItemData as oH, type CreateAgentInstanceHistoryItemErrors as oI, type CreateAgentInstanceHistoryItemError as oJ, type CreateAgentInstanceHistoryItemResponses as oK, type CreateAgentInstanceHistoryItemResponse as oL, type SearchAgentInstanceHistoryData as oM, type SearchAgentInstanceHistoryErrors as oN, type SearchAgentInstanceHistoryError as oO, type SearchAgentInstanceHistoryResponses as oP, type SearchAgentInstanceHistoryResponse as oQ, type SearchAuditLogsData as oR, type SearchAuditLogsErrors as oS, type SearchAuditLogsError as oT, type SearchAuditLogsResponses as oU, type SearchAuditLogsResponse as oV, type GetAuditLogData as oW, type GetAuditLogErrors as oX, type GetAuditLogError as oY, type GetAuditLogResponses as oZ, type GetAuditLogResponse as o_, type VariableKeyExactMatch as oa, type DecisionEvaluationInstanceKeyExactMatch as ob, type AgentInstanceKeyExactMatch as oc, type AgentHistoryItemKeyExactMatch as od, type AuditLogKeyExactMatch as oe, type FormKeyExactMatch as of, type DecisionEvaluationKeyExactMatch as og, type DecisionRequirementsKeyExactMatch as oh, type MessageSubscriptionTypeExactMatch as oi, type MessageSubscriptionStateExactMatch as oj, type MessageSubscriptionKeyExactMatch as ok, type ProcessInstanceStateExactMatch as ol, type UserTaskStateExactMatch as om, type CreateAgentInstanceData as on, type CreateAgentInstanceErrors as oo, type CreateAgentInstanceError as op, type CreateAgentInstanceResponses as oq, type CreateAgentInstanceResponse as or, type GetAgentInstanceData as os, type GetAgentInstanceErrors as ot, type GetAgentInstanceError as ou, type GetAgentInstanceResponses as ov, type GetAgentInstanceResponse as ow, type UpdateAgentInstanceData as ox, type UpdateAgentInstanceErrors as oy, type UpdateAgentInstanceError as oz, type ThreadedJob as p, type PinClockResponse as p$, type GetAuthenticationErrors as p0, type GetAuthenticationError as p1, type GetAuthenticationResponses as p2, type GetAuthenticationResponse as p3, type CreateAuthorizationData as p4, type CreateAuthorizationErrors as p5, type CreateAuthorizationError as p6, type CreateAuthorizationResponses as p7, type CreateAuthorizationResponse as p8, type SearchAuthorizationsData as p9, type SearchBatchOperationsError as pA, type SearchBatchOperationsResponses as pB, type SearchBatchOperationsResponse as pC, type GetBatchOperationData as pD, type GetBatchOperationErrors as pE, type GetBatchOperationError as pF, type GetBatchOperationResponses as pG, type GetBatchOperationResponse as pH, type CancelBatchOperationData as pI, type CancelBatchOperationErrors as pJ, type CancelBatchOperationError as pK, type CancelBatchOperationResponses as pL, type CancelBatchOperationResponse as pM, type ResumeBatchOperationData as pN, type ResumeBatchOperationErrors as pO, type ResumeBatchOperationError as pP, type ResumeBatchOperationResponses as pQ, type ResumeBatchOperationResponse as pR, type SuspendBatchOperationData as pS, type SuspendBatchOperationErrors as pT, type SuspendBatchOperationError as pU, type SuspendBatchOperationResponses as pV, type SuspendBatchOperationResponse as pW, type PinClockData as pX, type PinClockErrors as pY, type PinClockError as pZ, type PinClockResponses as p_, type SearchAuthorizationsErrors as pa, type SearchAuthorizationsError as pb, type SearchAuthorizationsResponses as pc, type SearchAuthorizationsResponse as pd, type DeleteAuthorizationData as pe, type DeleteAuthorizationErrors as pf, type DeleteAuthorizationError as pg, type DeleteAuthorizationResponses as ph, type DeleteAuthorizationResponse as pi, type GetAuthorizationData as pj, type GetAuthorizationErrors as pk, type GetAuthorizationError as pl, type GetAuthorizationResponses as pm, type GetAuthorizationResponse as pn, type UpdateAuthorizationData as po, type UpdateAuthorizationErrors as pp, type UpdateAuthorizationError as pq, type UpdateAuthorizationResponses as pr, type UpdateAuthorizationResponse as ps, type SearchBatchOperationItemsData as pt, type SearchBatchOperationItemsErrors as pu, type SearchBatchOperationItemsError as pv, type SearchBatchOperationItemsResponses as pw, type SearchBatchOperationItemsResponse as px, type SearchBatchOperationsData as py, type SearchBatchOperationsErrors as pz, type ThreadedJobHandler as q, type EvaluateDecisionResponses as q$, type ResetClockData as q0, type ResetClockErrors as q1, type ResetClockError as q2, type ResetClockResponses as q3, type ResetClockResponse as q4, type CreateGlobalClusterVariableData as q5, type CreateGlobalClusterVariableErrors as q6, type CreateGlobalClusterVariableError as q7, type CreateGlobalClusterVariableResponses as q8, type CreateGlobalClusterVariableResponse as q9, type DeleteTenantClusterVariableErrors as qA, type DeleteTenantClusterVariableError as qB, type DeleteTenantClusterVariableResponses as qC, type DeleteTenantClusterVariableResponse as qD, type GetTenantClusterVariableData as qE, type GetTenantClusterVariableErrors as qF, type GetTenantClusterVariableError as qG, type GetTenantClusterVariableResponses as qH, type GetTenantClusterVariableResponse as qI, type UpdateTenantClusterVariableData as qJ, type UpdateTenantClusterVariableErrors as qK, type UpdateTenantClusterVariableError as qL, type UpdateTenantClusterVariableResponses as qM, type UpdateTenantClusterVariableResponse as qN, type EvaluateConditionalsData as qO, type EvaluateConditionalsErrors as qP, type EvaluateConditionalsError as qQ, type EvaluateConditionalsResponses as qR, type EvaluateConditionalsResponse as qS, type SearchCorrelatedMessageSubscriptionsData as qT, type SearchCorrelatedMessageSubscriptionsErrors as qU, type SearchCorrelatedMessageSubscriptionsError as qV, type SearchCorrelatedMessageSubscriptionsResponses as qW, type SearchCorrelatedMessageSubscriptionsResponse as qX, type EvaluateDecisionData as qY, type EvaluateDecisionErrors as qZ, type EvaluateDecisionError as q_, type DeleteGlobalClusterVariableData as qa, type DeleteGlobalClusterVariableErrors as qb, type DeleteGlobalClusterVariableError as qc, type DeleteGlobalClusterVariableResponses as qd, type DeleteGlobalClusterVariableResponse as qe, type GetGlobalClusterVariableData as qf, type GetGlobalClusterVariableErrors as qg, type GetGlobalClusterVariableError as qh, type GetGlobalClusterVariableResponses as qi, type GetGlobalClusterVariableResponse as qj, type UpdateGlobalClusterVariableData as qk, type UpdateGlobalClusterVariableErrors as ql, type UpdateGlobalClusterVariableError as qm, type UpdateGlobalClusterVariableResponses as qn, type UpdateGlobalClusterVariableResponse as qo, type SearchClusterVariablesData as qp, type SearchClusterVariablesErrors as qq, type SearchClusterVariablesError as qr, type SearchClusterVariablesResponses as qs, type SearchClusterVariablesResponse as qt, type CreateTenantClusterVariableData as qu, type CreateTenantClusterVariableErrors as qv, type CreateTenantClusterVariableError as qw, type CreateTenantClusterVariableResponses as qx, type CreateTenantClusterVariableResponse as qy, type DeleteTenantClusterVariableData as qz, ThreadedJobWorker as r, type CreateDocumentsError as r$, type EvaluateDecisionResponse as r0, type SearchDecisionDefinitionsData as r1, type SearchDecisionDefinitionsErrors as r2, type SearchDecisionDefinitionsError as r3, type SearchDecisionDefinitionsResponses as r4, type SearchDecisionDefinitionsResponse as r5, type GetDecisionDefinitionData as r6, type GetDecisionDefinitionErrors as r7, type GetDecisionDefinitionError as r8, type GetDecisionDefinitionResponses as r9, type SearchDecisionRequirementsData as rA, type SearchDecisionRequirementsErrors as rB, type SearchDecisionRequirementsError as rC, type SearchDecisionRequirementsResponses as rD, type SearchDecisionRequirementsResponse as rE, type GetDecisionRequirementsData as rF, type GetDecisionRequirementsErrors as rG, type GetDecisionRequirementsError as rH, type GetDecisionRequirementsResponses as rI, type GetDecisionRequirementsResponse as rJ, type GetDecisionRequirementsXmlData as rK, type GetDecisionRequirementsXmlErrors as rL, type GetDecisionRequirementsXmlError as rM, type GetDecisionRequirementsXmlResponses as rN, type GetDecisionRequirementsXmlResponse as rO, type CreateDeploymentData as rP, type CreateDeploymentErrors as rQ, type CreateDeploymentError as rR, type CreateDeploymentResponses as rS, type CreateDeploymentResponse as rT, type CreateDocumentData as rU, type CreateDocumentErrors as rV, type CreateDocumentError as rW, type CreateDocumentResponses as rX, type CreateDocumentResponse as rY, type CreateDocumentsData as rZ, type CreateDocumentsErrors as r_, type GetDecisionDefinitionResponse as ra, type GetDecisionDefinitionXmlData as rb, type GetDecisionDefinitionXmlErrors as rc, type GetDecisionDefinitionXmlError as rd, type GetDecisionDefinitionXmlResponses as re, type GetDecisionDefinitionXmlResponse as rf, type SearchDecisionInstancesData as rg, type SearchDecisionInstancesErrors as rh, type SearchDecisionInstancesError as ri, type SearchDecisionInstancesResponses as rj, type SearchDecisionInstancesResponse as rk, type GetDecisionInstanceData as rl, type GetDecisionInstanceErrors as rm, type GetDecisionInstanceError as rn, type GetDecisionInstanceResponses as ro, type GetDecisionInstanceResponse as rp, type DeleteDecisionInstanceData as rq, type DeleteDecisionInstanceErrors as rr, type DeleteDecisionInstanceError as rs, type DeleteDecisionInstanceResponses as rt, type DeleteDecisionInstanceResponse as ru, type DeleteDecisionInstancesBatchOperationData as rv, type DeleteDecisionInstancesBatchOperationErrors as rw, type DeleteDecisionInstancesBatchOperationError as rx, type DeleteDecisionInstancesBatchOperationResponses as ry, type DeleteDecisionInstancesBatchOperationResponse as rz, type ThreadedJobWorkerConfig as s, type DeleteGlobalTaskListenerErrors as s$, type CreateDocumentsResponses as s0, type CreateDocumentsResponse as s1, type DeleteDocumentData as s2, type DeleteDocumentErrors as s3, type DeleteDocumentError as s4, type DeleteDocumentResponses as s5, type DeleteDocumentResponse as s6, type GetDocumentData as s7, type GetDocumentErrors as s8, type GetDocumentError as s9, type GetElementInstanceResponse as sA, type SearchElementInstanceIncidentsData as sB, type SearchElementInstanceIncidentsErrors as sC, type SearchElementInstanceIncidentsError as sD, type SearchElementInstanceIncidentsResponses as sE, type SearchElementInstanceIncidentsResponse as sF, type CreateElementInstanceVariablesData as sG, type CreateElementInstanceVariablesErrors as sH, type CreateElementInstanceVariablesError as sI, type CreateElementInstanceVariablesResponses as sJ, type CreateElementInstanceVariablesResponse as sK, type EvaluateExpressionData as sL, type EvaluateExpressionErrors as sM, type EvaluateExpressionError as sN, type EvaluateExpressionResponses as sO, type EvaluateExpressionResponse as sP, type GetFormByKeyData as sQ, type GetFormByKeyErrors as sR, type GetFormByKeyError as sS, type GetFormByKeyResponses as sT, type GetFormByKeyResponse as sU, type CreateGlobalTaskListenerData as sV, type CreateGlobalTaskListenerErrors as sW, type CreateGlobalTaskListenerError as sX, type CreateGlobalTaskListenerResponses as sY, type CreateGlobalTaskListenerResponse as sZ, type DeleteGlobalTaskListenerData as s_, type GetDocumentResponses as sa, type GetDocumentResponse as sb, type CreateDocumentLinkData as sc, type CreateDocumentLinkErrors as sd, type CreateDocumentLinkError as se, type CreateDocumentLinkResponses as sf, type CreateDocumentLinkResponse as sg, type ActivateAdHocSubProcessActivitiesData as sh, type ActivateAdHocSubProcessActivitiesErrors as si, type ActivateAdHocSubProcessActivitiesError as sj, type ActivateAdHocSubProcessActivitiesResponses as sk, type ActivateAdHocSubProcessActivitiesResponse as sl, type SearchElementInstanceWaitStatesData as sm, type SearchElementInstanceWaitStatesErrors as sn, type SearchElementInstanceWaitStatesError as so, type SearchElementInstanceWaitStatesResponses as sp, type SearchElementInstanceWaitStatesResponse as sq, type SearchElementInstancesData as sr, type SearchElementInstancesErrors as ss, type SearchElementInstancesError as st, type SearchElementInstancesResponses as su, type SearchElementInstancesResponse as sv, type GetElementInstanceData as sw, type GetElementInstanceErrors as sx, type GetElementInstanceError as sy, type GetElementInstanceResponses as sz, ThreadPool as t, type UnassignMappingRuleFromGroupData as t$, type DeleteGlobalTaskListenerError as t0, type DeleteGlobalTaskListenerResponses as t1, type DeleteGlobalTaskListenerResponse as t2, type GetGlobalTaskListenerData as t3, type GetGlobalTaskListenerErrors as t4, type GetGlobalTaskListenerError as t5, type GetGlobalTaskListenerResponses as t6, type GetGlobalTaskListenerResponse as t7, type UpdateGlobalTaskListenerData as t8, type UpdateGlobalTaskListenerErrors as t9, type GetGroupResponses as tA, type GetGroupResponse as tB, type UpdateGroupData as tC, type UpdateGroupErrors as tD, type UpdateGroupError as tE, type UpdateGroupResponses as tF, type UpdateGroupResponse as tG, type SearchClientsForGroupData as tH, type SearchClientsForGroupErrors as tI, type SearchClientsForGroupError as tJ, type SearchClientsForGroupResponses as tK, type SearchClientsForGroupResponse as tL, type UnassignClientFromGroupData as tM, type UnassignClientFromGroupErrors as tN, type UnassignClientFromGroupError as tO, type UnassignClientFromGroupResponses as tP, type UnassignClientFromGroupResponse as tQ, type AssignClientToGroupData as tR, type AssignClientToGroupErrors as tS, type AssignClientToGroupError as tT, type AssignClientToGroupResponses as tU, type AssignClientToGroupResponse as tV, type SearchMappingRulesForGroupData as tW, type SearchMappingRulesForGroupErrors as tX, type SearchMappingRulesForGroupError as tY, type SearchMappingRulesForGroupResponses as tZ, type SearchMappingRulesForGroupResponse as t_, type UpdateGlobalTaskListenerError as ta, type UpdateGlobalTaskListenerResponses as tb, type UpdateGlobalTaskListenerResponse as tc, type SearchGlobalTaskListenersData as td, type SearchGlobalTaskListenersErrors as te, type SearchGlobalTaskListenersError as tf, type SearchGlobalTaskListenersResponses as tg, type SearchGlobalTaskListenersResponse as th, type CreateGroupData as ti, type CreateGroupErrors as tj, type CreateGroupError as tk, type CreateGroupResponses as tl, type CreateGroupResponse as tm, type SearchGroupsData as tn, type SearchGroupsErrors as to, type SearchGroupsError as tp, type SearchGroupsResponses as tq, type SearchGroupsResponse as tr, type DeleteGroupData as ts, type DeleteGroupErrors as tt, type DeleteGroupError as tu, type DeleteGroupResponses as tv, type DeleteGroupResponse as tw, type GetGroupData as tx, type GetGroupErrors as ty, type GetGroupError as tz, collectTypedVariables as u, type SearchJobsResponse as u$, type UnassignMappingRuleFromGroupErrors as u0, type UnassignMappingRuleFromGroupError as u1, type UnassignMappingRuleFromGroupResponses as u2, type UnassignMappingRuleFromGroupResponse as u3, type AssignMappingRuleToGroupData as u4, type AssignMappingRuleToGroupErrors as u5, type AssignMappingRuleToGroupError as u6, type AssignMappingRuleToGroupResponses as u7, type AssignMappingRuleToGroupResponse as u8, type SearchRolesForGroupData as u9, type GetIncidentError as uA, type GetIncidentResponses as uB, type GetIncidentResponse as uC, type ResolveIncidentData as uD, type ResolveIncidentErrors as uE, type ResolveIncidentError as uF, type ResolveIncidentResponses as uG, type ResolveIncidentResponse as uH, type GetProcessInstanceStatisticsByDefinitionData as uI, type GetProcessInstanceStatisticsByDefinitionErrors as uJ, type GetProcessInstanceStatisticsByDefinitionError as uK, type GetProcessInstanceStatisticsByDefinitionResponses as uL, type GetProcessInstanceStatisticsByDefinitionResponse as uM, type GetProcessInstanceStatisticsByErrorData as uN, type GetProcessInstanceStatisticsByErrorErrors as uO, type GetProcessInstanceStatisticsByErrorError as uP, type GetProcessInstanceStatisticsByErrorResponses as uQ, type GetProcessInstanceStatisticsByErrorResponse as uR, type ActivateJobsData as uS, type ActivateJobsErrors as uT, type ActivateJobsError as uU, type ActivateJobsResponses as uV, type ActivateJobsResponse as uW, type SearchJobsData as uX, type SearchJobsErrors as uY, type SearchJobsError as uZ, type SearchJobsResponses as u_, type SearchRolesForGroupErrors as ua, type SearchRolesForGroupError as ub, type SearchRolesForGroupResponses as uc, type SearchRolesForGroupResponse as ud, type SearchUsersForGroupData as ue, type SearchUsersForGroupErrors as uf, type SearchUsersForGroupError as ug, type SearchUsersForGroupResponses as uh, type SearchUsersForGroupResponse as ui, type UnassignUserFromGroupData as uj, type UnassignUserFromGroupErrors as uk, type UnassignUserFromGroupError as ul, type UnassignUserFromGroupResponses as um, type UnassignUserFromGroupResponse as un, type AssignUserToGroupData as uo, type AssignUserToGroupErrors as up, type AssignUserToGroupError as uq, type AssignUserToGroupResponses as ur, type AssignUserToGroupResponse as us, type SearchIncidentsData as ut, type SearchIncidentsErrors as uu, type SearchIncidentsError as uv, type SearchIncidentsResponses as uw, type SearchIncidentsResponse as ux, type GetIncidentData as uy, type GetIncidentErrors as uz, type TypedVariableItem as v, type DeleteMappingRuleResponses as v$, type UpdateJobData as v0, type UpdateJobErrors as v1, type UpdateJobError as v2, type UpdateJobResponses as v3, type UpdateJobResponse as v4, type CompleteJobData as v5, type CompleteJobErrors as v6, type CompleteJobError as v7, type CompleteJobResponses as v8, type CompleteJobResponse as v9, type GetJobTimeSeriesStatisticsErrors as vA, type GetJobTimeSeriesStatisticsError as vB, type GetJobTimeSeriesStatisticsResponses as vC, type GetJobTimeSeriesStatisticsResponse as vD, type GetJobErrorStatisticsData as vE, type GetJobErrorStatisticsErrors as vF, type GetJobErrorStatisticsError as vG, type GetJobErrorStatisticsResponses as vH, type GetJobErrorStatisticsResponse as vI, type GetLicenseData as vJ, type GetLicenseErrors as vK, type GetLicenseError as vL, type GetLicenseResponses as vM, type GetLicenseResponse as vN, type CreateMappingRuleData as vO, type CreateMappingRuleErrors as vP, type CreateMappingRuleError as vQ, type CreateMappingRuleResponses as vR, type CreateMappingRuleResponse as vS, type SearchMappingRuleData as vT, type SearchMappingRuleErrors as vU, type SearchMappingRuleError as vV, type SearchMappingRuleResponses as vW, type SearchMappingRuleResponse as vX, type DeleteMappingRuleData as vY, type DeleteMappingRuleErrors as vZ, type DeleteMappingRuleError as v_, type ThrowJobErrorData as va, type ThrowJobErrorErrors as vb, type ThrowJobErrorError as vc, type ThrowJobErrorResponses as vd, type ThrowJobErrorResponse as ve, type FailJobData as vf, type FailJobErrors as vg, type FailJobError as vh, type FailJobResponses as vi, type FailJobResponse as vj, type GetGlobalJobStatisticsData as vk, type GetGlobalJobStatisticsErrors as vl, type GetGlobalJobStatisticsError as vm, type GetGlobalJobStatisticsResponses as vn, type GetGlobalJobStatisticsResponse as vo, type GetJobTypeStatisticsData as vp, type GetJobTypeStatisticsErrors as vq, type GetJobTypeStatisticsError as vr, type GetJobTypeStatisticsResponses as vs, type GetJobTypeStatisticsResponse as vt, type GetJobWorkerStatisticsData as vu, type GetJobWorkerStatisticsErrors as vv, type GetJobWorkerStatisticsError as vw, type GetJobWorkerStatisticsResponses as vx, type GetJobWorkerStatisticsResponse as vy, type GetJobTimeSeriesStatisticsData as vz, type TypedVariablePage as w, type GetProcessDefinitionInstanceVersionStatisticsError as w$, type DeleteMappingRuleResponse as w0, type GetMappingRuleData as w1, type GetMappingRuleErrors as w2, type GetMappingRuleError as w3, type GetMappingRuleResponses as w4, type GetMappingRuleResponse as w5, type UpdateMappingRuleData as w6, type UpdateMappingRuleErrors as w7, type UpdateMappingRuleError as w8, type UpdateMappingRuleResponses as w9, type GetProcessDefinitionInstanceStatisticsData as wA, type GetProcessDefinitionInstanceStatisticsErrors as wB, type GetProcessDefinitionInstanceStatisticsError as wC, type GetProcessDefinitionInstanceStatisticsResponses as wD, type GetProcessDefinitionInstanceStatisticsResponse as wE, type GetProcessDefinitionData as wF, type GetProcessDefinitionErrors as wG, type GetProcessDefinitionError as wH, type GetProcessDefinitionResponses as wI, type GetProcessDefinitionResponse as wJ, type GetStartProcessFormData as wK, type GetStartProcessFormErrors as wL, type GetStartProcessFormError as wM, type GetStartProcessFormResponses as wN, type GetStartProcessFormResponse as wO, type GetProcessDefinitionStatisticsData as wP, type GetProcessDefinitionStatisticsErrors as wQ, type GetProcessDefinitionStatisticsError as wR, type GetProcessDefinitionStatisticsResponses as wS, type GetProcessDefinitionStatisticsResponse as wT, type GetProcessDefinitionXmlData as wU, type GetProcessDefinitionXmlErrors as wV, type GetProcessDefinitionXmlError as wW, type GetProcessDefinitionXmlResponses as wX, type GetProcessDefinitionXmlResponse as wY, type GetProcessDefinitionInstanceVersionStatisticsData as wZ, type GetProcessDefinitionInstanceVersionStatisticsErrors as w_, type UpdateMappingRuleResponse as wa, type SearchMessageSubscriptionsData as wb, type SearchMessageSubscriptionsErrors as wc, type SearchMessageSubscriptionsError as wd, type SearchMessageSubscriptionsResponses as we, type SearchMessageSubscriptionsResponse as wf, type CorrelateMessageData as wg, type CorrelateMessageErrors as wh, type CorrelateMessageError as wi, type CorrelateMessageResponses as wj, type CorrelateMessageResponse as wk, type PublishMessageData as wl, type PublishMessageErrors as wm, type PublishMessageError as wn, type PublishMessageResponses as wo, type PublishMessageResponse as wp, type SearchProcessDefinitionsData as wq, type SearchProcessDefinitionsErrors as wr, type SearchProcessDefinitionsError as ws, type SearchProcessDefinitionsResponses as wt, type SearchProcessDefinitionsResponse as wu, type GetProcessDefinitionMessageSubscriptionStatisticsData as wv, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as ww, type GetProcessDefinitionMessageSubscriptionStatisticsError as wx, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as wy, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as wz, TypedVariablesError as x, type SearchProcessInstanceIncidentsErrors as x$, type GetProcessDefinitionInstanceVersionStatisticsResponses as x0, type GetProcessDefinitionInstanceVersionStatisticsResponse as x1, type CreateProcessInstanceData as x2, type CreateProcessInstanceErrors as x3, type CreateProcessInstanceError as x4, type CreateProcessInstanceResponses as x5, type CreateProcessInstanceResponse as x6, type CancelProcessInstancesBatchOperationData as x7, type CancelProcessInstancesBatchOperationErrors as x8, type CancelProcessInstancesBatchOperationError as x9, type SearchProcessInstancesResponse as xA, type GetProcessInstanceData as xB, type GetProcessInstanceErrors as xC, type GetProcessInstanceError as xD, type GetProcessInstanceResponses as xE, type GetProcessInstanceResponse as xF, type GetProcessInstanceCallHierarchyData as xG, type GetProcessInstanceCallHierarchyErrors as xH, type GetProcessInstanceCallHierarchyError as xI, type GetProcessInstanceCallHierarchyResponses as xJ, type GetProcessInstanceCallHierarchyResponse as xK, type CancelProcessInstanceData as xL, type CancelProcessInstanceErrors as xM, type CancelProcessInstanceError as xN, type CancelProcessInstanceResponses as xO, type CancelProcessInstanceResponse as xP, type DeleteProcessInstanceData as xQ, type DeleteProcessInstanceErrors as xR, type DeleteProcessInstanceError as xS, type DeleteProcessInstanceResponses as xT, type DeleteProcessInstanceResponse as xU, type ResolveProcessInstanceIncidentsData as xV, type ResolveProcessInstanceIncidentsErrors as xW, type ResolveProcessInstanceIncidentsError as xX, type ResolveProcessInstanceIncidentsResponses as xY, type ResolveProcessInstanceIncidentsResponse as xZ, type SearchProcessInstanceIncidentsData as x_, type CancelProcessInstancesBatchOperationResponses as xa, type CancelProcessInstancesBatchOperationResponse as xb, type DeleteProcessInstancesBatchOperationData as xc, type DeleteProcessInstancesBatchOperationErrors as xd, type DeleteProcessInstancesBatchOperationError as xe, type DeleteProcessInstancesBatchOperationResponses as xf, type DeleteProcessInstancesBatchOperationResponse as xg, type ResolveIncidentsBatchOperationData as xh, type ResolveIncidentsBatchOperationErrors as xi, type ResolveIncidentsBatchOperationError as xj, type ResolveIncidentsBatchOperationResponses as xk, type ResolveIncidentsBatchOperationResponse as xl, type MigrateProcessInstancesBatchOperationData as xm, type MigrateProcessInstancesBatchOperationErrors as xn, type MigrateProcessInstancesBatchOperationError as xo, type MigrateProcessInstancesBatchOperationResponses as xp, type MigrateProcessInstancesBatchOperationResponse as xq, type ModifyProcessInstancesBatchOperationData as xr, type ModifyProcessInstancesBatchOperationErrors as xs, type ModifyProcessInstancesBatchOperationError as xt, type ModifyProcessInstancesBatchOperationResponses as xu, type ModifyProcessInstancesBatchOperationResponse as xv, type SearchProcessInstancesData as xw, type SearchProcessInstancesErrors as xx, type SearchProcessInstancesError as xy, type SearchProcessInstancesResponses as xz, VariableDeserializationError as y, type GetRoleData as y$, type SearchProcessInstanceIncidentsError as y0, type SearchProcessInstanceIncidentsResponses as y1, type SearchProcessInstanceIncidentsResponse as y2, type MigrateProcessInstanceData as y3, type MigrateProcessInstanceErrors as y4, type MigrateProcessInstanceError as y5, type MigrateProcessInstanceResponses as y6, type MigrateProcessInstanceResponse as y7, type ModifyProcessInstanceData as y8, type ModifyProcessInstanceErrors as y9, type GetResourceContentResponses as yA, type GetResourceContentResponse as yB, type GetResourceContentBinaryData as yC, type GetResourceContentBinaryErrors as yD, type GetResourceContentBinaryError as yE, type GetResourceContentBinaryResponses as yF, type GetResourceContentBinaryResponse as yG, type DeleteResourceData as yH, type DeleteResourceErrors as yI, type DeleteResourceError as yJ, type DeleteResourceResponses as yK, type DeleteResourceResponse2 as yL, type CreateRoleData as yM, type CreateRoleErrors as yN, type CreateRoleError as yO, type CreateRoleResponses as yP, type CreateRoleResponse as yQ, type SearchRolesData as yR, type SearchRolesErrors as yS, type SearchRolesError as yT, type SearchRolesResponses as yU, type SearchRolesResponse as yV, type DeleteRoleData as yW, type DeleteRoleErrors as yX, type DeleteRoleError as yY, type DeleteRoleResponses as yZ, type DeleteRoleResponse as y_, type ModifyProcessInstanceError as ya, type ModifyProcessInstanceResponses as yb, type ModifyProcessInstanceResponse as yc, type GetProcessInstanceSequenceFlowsData as yd, type GetProcessInstanceSequenceFlowsErrors as ye, type GetProcessInstanceSequenceFlowsError as yf, type GetProcessInstanceSequenceFlowsResponses as yg, type GetProcessInstanceSequenceFlowsResponse as yh, type GetProcessInstanceStatisticsData as yi, type GetProcessInstanceStatisticsErrors as yj, type GetProcessInstanceStatisticsError as yk, type GetProcessInstanceStatisticsResponses as yl, type GetProcessInstanceStatisticsResponse as ym, type SearchResourcesData as yn, type SearchResourcesErrors as yo, type SearchResourcesError as yp, type SearchResourcesResponses as yq, type SearchResourcesResponse as yr, type GetResourceData as ys, type GetResourceErrors as yt, type GetResourceError as yu, type GetResourceResponses as yv, type GetResourceResponse as yw, type GetResourceContentData as yx, type GetResourceContentErrors as yy, type GetResourceContentError as yz, VariableMap as z, type UnassignRoleFromUserResponse as z$, type GetRoleErrors as z0, type GetRoleError as z1, type GetRoleResponses as z2, type GetRoleResponse as z3, type UpdateRoleData as z4, type UpdateRoleErrors as z5, type UpdateRoleError as z6, type UpdateRoleResponses as z7, type UpdateRoleResponse as z8, type SearchClientsForRoleData as z9, type AssignRoleToGroupError as zA, type AssignRoleToGroupResponses as zB, type AssignRoleToGroupResponse as zC, type SearchMappingRulesForRoleData as zD, type SearchMappingRulesForRoleErrors as zE, type SearchMappingRulesForRoleError as zF, type SearchMappingRulesForRoleResponses as zG, type SearchMappingRulesForRoleResponse as zH, type UnassignRoleFromMappingRuleData as zI, type UnassignRoleFromMappingRuleErrors as zJ, type UnassignRoleFromMappingRuleError as zK, type UnassignRoleFromMappingRuleResponses as zL, type UnassignRoleFromMappingRuleResponse as zM, type AssignRoleToMappingRuleData as zN, type AssignRoleToMappingRuleErrors as zO, type AssignRoleToMappingRuleError as zP, type AssignRoleToMappingRuleResponses as zQ, type AssignRoleToMappingRuleResponse as zR, type SearchUsersForRoleData as zS, type SearchUsersForRoleErrors as zT, type SearchUsersForRoleError as zU, type SearchUsersForRoleResponses as zV, type SearchUsersForRoleResponse as zW, type UnassignRoleFromUserData as zX, type UnassignRoleFromUserErrors as zY, type UnassignRoleFromUserError as zZ, type UnassignRoleFromUserResponses as z_, type SearchClientsForRoleErrors as za, type SearchClientsForRoleError as zb, type SearchClientsForRoleResponses as zc, type SearchClientsForRoleResponse as zd, type UnassignRoleFromClientData as ze, type UnassignRoleFromClientErrors as zf, type UnassignRoleFromClientError as zg, type UnassignRoleFromClientResponses as zh, type UnassignRoleFromClientResponse as zi, type AssignRoleToClientData as zj, type AssignRoleToClientErrors as zk, type AssignRoleToClientError as zl, type AssignRoleToClientResponses as zm, type AssignRoleToClientResponse as zn, type SearchGroupsForRoleData as zo, type SearchGroupsForRoleErrors as zp, type SearchGroupsForRoleError as zq, type SearchGroupsForRoleResponses as zr, type SearchGroupsForRoleResponse as zs, type UnassignRoleFromGroupData as zt, type UnassignRoleFromGroupErrors as zu, type UnassignRoleFromGroupError as zv, type UnassignRoleFromGroupResponses as zw, type UnassignRoleFromGroupResponse as zx, type AssignRoleToGroupData as zy, type AssignRoleToGroupErrors as zz };
|
|
27976
|
+
export { type assignUserTaskInput as $, type AnyVariableSchema as A, type GetTenantError as A$, type UnassignRoleFromMappingRuleResponses as A0, type UnassignRoleFromMappingRuleResponse as A1, type AssignRoleToMappingRuleData as A2, type AssignRoleToMappingRuleErrors as A3, type AssignRoleToMappingRuleError as A4, type AssignRoleToMappingRuleResponses as A5, type AssignRoleToMappingRuleResponse as A6, type SearchUsersForRoleData as A7, type SearchUsersForRoleErrors as A8, type SearchUsersForRoleError as A9, type GetUsageMetricsData as AA, type GetUsageMetricsErrors as AB, type GetUsageMetricsError as AC, type GetUsageMetricsResponses as AD, type GetUsageMetricsResponse as AE, type GetSystemConfigurationData as AF, type GetSystemConfigurationErrors as AG, type GetSystemConfigurationError as AH, type GetSystemConfigurationResponses as AI, type GetSystemConfigurationResponse as AJ, type CreateTenantData as AK, type CreateTenantErrors as AL, type CreateTenantError as AM, type CreateTenantResponses as AN, type CreateTenantResponse as AO, type SearchTenantsData as AP, type SearchTenantsErrors as AQ, type SearchTenantsError as AR, type SearchTenantsResponses as AS, type SearchTenantsResponse as AT, type DeleteTenantData as AU, type DeleteTenantErrors as AV, type DeleteTenantError as AW, type DeleteTenantResponses as AX, type DeleteTenantResponse as AY, type GetTenantData as AZ, type GetTenantErrors as A_, type SearchUsersForRoleResponses as Aa, type SearchUsersForRoleResponse as Ab, type UnassignRoleFromUserData as Ac, type UnassignRoleFromUserErrors as Ad, type UnassignRoleFromUserError as Ae, type UnassignRoleFromUserResponses as Af, type UnassignRoleFromUserResponse as Ag, type AssignRoleToUserData as Ah, type AssignRoleToUserErrors as Ai, type AssignRoleToUserError as Aj, type AssignRoleToUserResponses as Ak, type AssignRoleToUserResponse as Al, type CreateAdminUserData as Am, type CreateAdminUserErrors as An, type CreateAdminUserError as Ao, type CreateAdminUserResponses as Ap, type CreateAdminUserResponse as Aq, type BroadcastSignalData as Ar, type BroadcastSignalErrors as As, type BroadcastSignalError as At, type BroadcastSignalResponses as Au, type BroadcastSignalResponse as Av, type GetStatusData as Aw, type GetStatusErrors as Ax, type GetStatusResponses as Ay, type GetStatusResponse as Az, type BackpressureSeverity as B, type UnassignUserFromTenantErrors as B$, type GetTenantResponses as B0, type GetTenantResponse as B1, type UpdateTenantData as B2, type UpdateTenantErrors as B3, type UpdateTenantError as B4, type UpdateTenantResponses as B5, type UpdateTenantResponse as B6, type SearchClientsForTenantData as B7, type SearchClientsForTenantResponses as B8, type SearchClientsForTenantResponse as B9, type UnassignMappingRuleFromTenantData as BA, type UnassignMappingRuleFromTenantErrors as BB, type UnassignMappingRuleFromTenantError as BC, type UnassignMappingRuleFromTenantResponses as BD, type UnassignMappingRuleFromTenantResponse as BE, type AssignMappingRuleToTenantData as BF, type AssignMappingRuleToTenantErrors as BG, type AssignMappingRuleToTenantError as BH, type AssignMappingRuleToTenantResponses as BI, type AssignMappingRuleToTenantResponse as BJ, type SearchRolesForTenantData as BK, type SearchRolesForTenantResponses as BL, type SearchRolesForTenantResponse as BM, type UnassignRoleFromTenantData as BN, type UnassignRoleFromTenantErrors as BO, type UnassignRoleFromTenantError as BP, type UnassignRoleFromTenantResponses as BQ, type UnassignRoleFromTenantResponse as BR, type AssignRoleToTenantData as BS, type AssignRoleToTenantErrors as BT, type AssignRoleToTenantError as BU, type AssignRoleToTenantResponses as BV, type AssignRoleToTenantResponse as BW, type SearchUsersForTenantData as BX, type SearchUsersForTenantResponses as BY, type SearchUsersForTenantResponse as BZ, type UnassignUserFromTenantData as B_, type UnassignClientFromTenantData as Ba, type UnassignClientFromTenantErrors as Bb, type UnassignClientFromTenantError as Bc, type UnassignClientFromTenantResponses as Bd, type UnassignClientFromTenantResponse as Be, type AssignClientToTenantData as Bf, type AssignClientToTenantErrors as Bg, type AssignClientToTenantError as Bh, type AssignClientToTenantResponses as Bi, type AssignClientToTenantResponse as Bj, type SearchGroupIdsForTenantData as Bk, type SearchGroupIdsForTenantResponses as Bl, type SearchGroupIdsForTenantResponse as Bm, type UnassignGroupFromTenantData as Bn, type UnassignGroupFromTenantErrors as Bo, type UnassignGroupFromTenantError as Bp, type UnassignGroupFromTenantResponses as Bq, type UnassignGroupFromTenantResponse as Br, type AssignGroupToTenantData as Bs, type AssignGroupToTenantErrors as Bt, type AssignGroupToTenantError as Bu, type AssignGroupToTenantResponses as Bv, type AssignGroupToTenantResponse as Bw, type SearchMappingRulesForTenantData as Bx, type SearchMappingRulesForTenantResponses as By, type SearchMappingRulesForTenantResponse as Bz, CamundaClient as C, type SearchUserTaskAuditLogsData as C$, type UnassignUserFromTenantError as C0, type UnassignUserFromTenantResponses as C1, type UnassignUserFromTenantResponse as C2, type AssignUserToTenantData as C3, type AssignUserToTenantErrors as C4, type AssignUserToTenantError as C5, type AssignUserToTenantResponses as C6, type AssignUserToTenantResponse as C7, type GetTopologyData as C8, type GetTopologyErrors as C9, type UpdateUserResponses as CA, type UpdateUserResponse as CB, type SearchUserTasksData as CC, type SearchUserTasksErrors as CD, type SearchUserTasksError as CE, type SearchUserTasksResponses as CF, type SearchUserTasksResponse as CG, type GetUserTaskData as CH, type GetUserTaskErrors as CI, type GetUserTaskError as CJ, type GetUserTaskResponses as CK, type GetUserTaskResponse as CL, type UpdateUserTaskData as CM, type UpdateUserTaskErrors as CN, type UpdateUserTaskError as CO, type UpdateUserTaskResponses as CP, type UpdateUserTaskResponse as CQ, type UnassignUserTaskData as CR, type UnassignUserTaskErrors as CS, type UnassignUserTaskError as CT, type UnassignUserTaskResponses as CU, type UnassignUserTaskResponse as CV, type AssignUserTaskData as CW, type AssignUserTaskErrors as CX, type AssignUserTaskError as CY, type AssignUserTaskResponses as CZ, type AssignUserTaskResponse as C_, type GetTopologyError as Ca, type GetTopologyResponses as Cb, type GetTopologyResponse as Cc, type CreateUserData as Cd, type CreateUserErrors as Ce, type CreateUserError as Cf, type CreateUserResponses as Cg, type CreateUserResponse as Ch, type SearchUsersData as Ci, type SearchUsersErrors as Cj, type SearchUsersError as Ck, type SearchUsersResponses as Cl, type SearchUsersResponse as Cm, type DeleteUserData as Cn, type DeleteUserErrors as Co, type DeleteUserError as Cp, type DeleteUserResponses as Cq, type DeleteUserResponse as Cr, type GetUserData as Cs, type GetUserErrors as Ct, type GetUserError as Cu, type GetUserResponses as Cv, type GetUserResponse as Cw, type UpdateUserData as Cx, type UpdateUserErrors as Cy, type UpdateUserError as Cz, VariableScopeCollisionError as D, type SearchUserTaskAuditLogsErrors as D0, type SearchUserTaskAuditLogsError as D1, type SearchUserTaskAuditLogsResponses as D2, type SearchUserTaskAuditLogsResponse as D3, type CompleteUserTaskData as D4, type CompleteUserTaskErrors as D5, type CompleteUserTaskError as D6, type CompleteUserTaskResponses as D7, type CompleteUserTaskResponse as D8, type SearchUserTaskEffectiveVariablesData as D9, type DomainError as DA, type DomainErrorTag as DB, eventuallyTE as DC, type FnKeys as DD, type Fpify as DE, foldDomainError as DF, type HttpError as DG, type Left as DH, type Right as DI, retryTE as DJ, type TaskEither as DK, withTimeoutTE as DL, type SearchUserTaskEffectiveVariablesErrors as Da, type SearchUserTaskEffectiveVariablesError as Db, type SearchUserTaskEffectiveVariablesResponses as Dc, type SearchUserTaskEffectiveVariablesResponse as Dd, type GetUserTaskFormData as De, type GetUserTaskFormErrors as Df, type GetUserTaskFormError as Dg, type GetUserTaskFormResponses as Dh, type GetUserTaskFormResponse as Di, type SearchUserTaskVariablesData as Dj, type SearchUserTaskVariablesErrors as Dk, type SearchUserTaskVariablesError as Dl, type SearchUserTaskVariablesResponses as Dm, type SearchUserTaskVariablesResponse as Dn, type SearchVariablesData as Do, type SearchVariablesErrors as Dp, type SearchVariablesError as Dq, type SearchVariablesResponses as Dr, type SearchVariablesResponse as Ds, type GetVariableData as Dt, type GetVariableErrors as Du, type GetVariableError as Dv, type GetVariableResponses as Dw, type GetVariableResponse as Dx, assertConstraint as Dy, classifyDomainError as Dz, type Either as E, variableNamesFromSchema as F, type AuthStrategy as G, type HttpRetryPolicy as H, type CamundaConfig as I, type Job as J, type ValidationMode as K, type activateAdHocSubProcessActivitiesInput as L, type activateJobsInput as M, type assignClientToGroupInput as N, type OperationOptions as O, type assignClientToTenantInput as P, type assignGroupToTenantInput as Q, type assignMappingRuleToGroupInput as R, type SdkError as S, type TelemetryHooks as T, type assignMappingRuleToTenantInput as U, VariableCollector as V, type assignRoleToClientInput as W, type assignRoleToGroupInput as X, type assignRoleToMappingRuleInput as Y, type assignRoleToTenantInput as Z, type assignRoleToUserInput as _, type CamundaOptions as a, type getDecisionRequirementsXmlInput as a$, type assignUserToGroupInput as a0, type assignUserToTenantInput as a1, type broadcastSignalInput as a2, type cancelBatchOperationInput as a3, type cancelProcessInstanceInput as a4, type cancelProcessInstancesBatchOperationInput as a5, type completeJobInput as a6, type completeUserTaskInput as a7, type correlateMessageInput as a8, type createAdminUserInput as a9, type deleteProcessInstancesBatchOperationInput as aA, type deleteResourceInput as aB, type deleteRoleInput as aC, type deleteTenantInput as aD, type deleteTenantClusterVariableInput as aE, type deleteUserInput as aF, type evaluateConditionalsInput as aG, type evaluateDecisionInput as aH, type evaluateExpressionInput as aI, type failJobInput as aJ, type getAgentInstanceInput as aK, type getAgentInstanceConsistency as aL, type getAuditLogInput as aM, type getAuditLogConsistency as aN, type getAuthenticationInput as aO, type getAuthorizationInput as aP, type getAuthorizationConsistency as aQ, type getBatchOperationInput as aR, type getBatchOperationConsistency as aS, type getDecisionDefinitionInput as aT, type getDecisionDefinitionConsistency as aU, type getDecisionDefinitionXmlInput as aV, type getDecisionDefinitionXmlConsistency as aW, type getDecisionInstanceInput as aX, type getDecisionInstanceConsistency as aY, type getDecisionRequirementsInput as aZ, type getDecisionRequirementsConsistency as a_, type createAgentInstanceInput as aa, type createAgentInstanceHistoryItemInput as ab, type createAuthorizationInput as ac, type createDeploymentInput as ad, type createDocumentInput as ae, type createDocumentLinkInput as af, type createDocumentsInput as ag, type createElementInstanceVariablesInput as ah, type createGlobalClusterVariableInput as ai, type createGlobalTaskListenerInput as aj, type createGroupInput as ak, type createMappingRuleInput as al, type createProcessInstanceInput as am, type createRoleInput as an, type createTenantInput as ao, type createTenantClusterVariableInput as ap, type createUserInput as aq, type deleteAuthorizationInput as ar, type deleteDecisionInstanceInput as as, type deleteDecisionInstancesBatchOperationInput as at, type deleteDocumentInput as au, type deleteGlobalClusterVariableInput as av, type deleteGlobalTaskListenerInput as aw, type deleteGroupInput as ax, type deleteMappingRuleInput as ay, type deleteProcessInstanceInput as az, type CancelablePromise as b, type getStatusInput as b$, type getDecisionRequirementsXmlConsistency as b0, type getDocumentInput as b1, type getElementInstanceInput as b2, type getElementInstanceConsistency as b3, type getFormByKeyInput as b4, type getFormByKeyConsistency as b5, type getGlobalClusterVariableInput as b6, type getGlobalClusterVariableConsistency as b7, type getGlobalJobStatisticsInput as b8, type getGlobalJobStatisticsConsistency as b9, type getProcessDefinitionStatisticsConsistency as bA, type getProcessDefinitionXmlInput as bB, type getProcessDefinitionXmlConsistency as bC, type getProcessInstanceInput as bD, type getProcessInstanceConsistency as bE, type getProcessInstanceCallHierarchyInput as bF, type getProcessInstanceCallHierarchyConsistency as bG, type getProcessInstanceSequenceFlowsInput as bH, type getProcessInstanceSequenceFlowsConsistency as bI, type getProcessInstanceStatisticsInput as bJ, type getProcessInstanceStatisticsConsistency as bK, type getProcessInstanceStatisticsByDefinitionInput as bL, type getProcessInstanceStatisticsByDefinitionConsistency as bM, type getProcessInstanceStatisticsByErrorInput as bN, type getProcessInstanceStatisticsByErrorConsistency as bO, type getProcessInstanceWaitStateStatisticsInput as bP, type getProcessInstanceWaitStateStatisticsConsistency as bQ, type getResourceInput as bR, type getResourceConsistency as bS, type getResourceContentInput as bT, type getResourceContentConsistency as bU, type getResourceContentBinaryInput as bV, type getResourceContentBinaryConsistency as bW, type getRoleInput as bX, type getRoleConsistency as bY, type getStartProcessFormInput as bZ, type getStartProcessFormConsistency as b_, type getGlobalTaskListenerInput as ba, type getGlobalTaskListenerConsistency as bb, type getGroupInput as bc, type getGroupConsistency as bd, type getIncidentInput as be, type getIncidentConsistency as bf, type getJobErrorStatisticsInput as bg, type getJobErrorStatisticsConsistency as bh, type getJobTimeSeriesStatisticsInput as bi, type getJobTimeSeriesStatisticsConsistency as bj, type getJobTypeStatisticsInput as bk, type getJobTypeStatisticsConsistency as bl, type getJobWorkerStatisticsInput as bm, type getJobWorkerStatisticsConsistency as bn, type getLicenseInput as bo, type getMappingRuleInput as bp, type getMappingRuleConsistency as bq, type getProcessDefinitionInput as br, type getProcessDefinitionConsistency as bs, type getProcessDefinitionInstanceStatisticsInput as bt, type getProcessDefinitionInstanceStatisticsConsistency as bu, type getProcessDefinitionInstanceVersionStatisticsInput as bv, type getProcessDefinitionInstanceVersionStatisticsConsistency as bw, type getProcessDefinitionMessageSubscriptionStatisticsInput as bx, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as by, type getProcessDefinitionStatisticsInput as bz, createCamundaClient as c, type searchGroupIdsForTenantInput as c$, type getSystemConfigurationInput as c0, type getTenantInput as c1, type getTenantConsistency as c2, type getTenantClusterVariableInput as c3, type getTenantClusterVariableConsistency as c4, type getTopologyInput as c5, type getUsageMetricsInput as c6, type getUsageMetricsConsistency as c7, type getUserInput as c8, type getUserConsistency as c9, 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 searchElementInstanceWaitStatesInput as cX, type searchElementInstanceWaitStatesConsistency as cY, type searchGlobalTaskListenersInput as cZ, type searchGlobalTaskListenersConsistency as c_, type getUserTaskInput as ca, type getUserTaskConsistency as cb, type getUserTaskFormInput as cc, type getUserTaskFormConsistency as cd, type getVariableInput as ce, type getVariableConsistency as cf, type migrateProcessInstanceInput as cg, type migrateProcessInstancesBatchOperationInput as ch, type modifyProcessInstanceInput as ci, type modifyProcessInstancesBatchOperationInput as cj, type pinClockInput as ck, type publishMessageInput as cl, type resetClockInput as cm, type resolveIncidentInput as cn, type resolveIncidentsBatchOperationInput as co, type resolveProcessInstanceIncidentsInput as cp, type resumeBatchOperationInput as cq, type searchAgentInstanceHistoryInput as cr, type searchAgentInstanceHistoryConsistency as cs, type searchAgentInstancesInput as ct, type searchAgentInstancesConsistency as cu, type searchAuditLogsInput as cv, type searchAuditLogsConsistency as cw, type searchAuthorizationsInput as cx, type searchAuthorizationsConsistency as cy, type searchBatchOperationItemsInput as cz, type CamundaFpClient as d, type unassignRoleFromMappingRuleInput as d$, type searchGroupIdsForTenantConsistency as d0, type searchGroupsInput as d1, type searchGroupsConsistency as d2, type searchGroupsForRoleInput as d3, type searchGroupsForRoleConsistency as d4, type searchIncidentsInput as d5, type searchIncidentsConsistency as d6, type searchJobsInput as d7, type searchJobsConsistency as d8, type searchMappingRuleInput as d9, type searchUsersInput as dA, type searchUsersConsistency as dB, type searchUsersForGroupInput as dC, type searchUsersForGroupConsistency as dD, type searchUsersForRoleInput as dE, type searchUsersForRoleConsistency as dF, type searchUsersForTenantInput as dG, type searchUsersForTenantConsistency as dH, type searchUserTaskAuditLogsInput as dI, type searchUserTaskAuditLogsConsistency as dJ, type searchUserTaskEffectiveVariablesInput as dK, type searchUserTaskEffectiveVariablesConsistency as dL, type searchUserTasksInput as dM, type searchUserTasksConsistency as dN, type searchUserTaskVariablesInput as dO, type searchUserTaskVariablesConsistency as dP, type searchVariablesInput as dQ, type searchVariablesConsistency as dR, type suspendBatchOperationInput as dS, type throwJobErrorInput as dT, type unassignClientFromGroupInput as dU, type unassignClientFromTenantInput as dV, type unassignGroupFromTenantInput as dW, type unassignMappingRuleFromGroupInput as dX, type unassignMappingRuleFromTenantInput as dY, type unassignRoleFromClientInput as dZ, type unassignRoleFromGroupInput as d_, type searchMappingRuleConsistency as da, type searchMappingRulesForGroupInput as db, type searchMappingRulesForGroupConsistency as dc, type searchMappingRulesForRoleInput as dd, type searchMappingRulesForRoleConsistency as de, type searchMappingRulesForTenantInput as df, type searchMappingRulesForTenantConsistency as dg, type searchMessageSubscriptionsInput as dh, type searchMessageSubscriptionsConsistency as di, type searchProcessDefinitionsInput as dj, type searchProcessDefinitionsConsistency as dk, type searchProcessInstanceIncidentsInput as dl, type searchProcessInstanceIncidentsConsistency as dm, type searchProcessInstancesInput as dn, type searchProcessInstancesConsistency as dp, type searchResourcesInput as dq, type searchResourcesConsistency as dr, type searchRolesInput as ds, type searchRolesConsistency as dt, type searchRolesForGroupInput as du, type searchRolesForGroupConsistency as dv, type searchRolesForTenantInput as dw, type searchRolesForTenantConsistency as dx, type searchTenantsInput as dy, type searchTenantsConsistency as dz, createCamundaFpClient as e, type AuditLogSearchQueryResult as e$, type unassignRoleFromTenantInput as e0, type unassignRoleFromUserInput as e1, type unassignUserFromGroupInput as e2, type unassignUserFromTenantInput as e3, type unassignUserTaskInput as e4, type updateAgentInstanceInput as e5, type updateAuthorizationInput as e6, type updateGlobalClusterVariableInput as e7, type updateGlobalTaskListenerInput as e8, type updateGroupInput as e9, type AgentInstanceUpdateRequest as eA, type AgentInstanceStatusFilterProperty as eB, type AdvancedAgentInstanceStatusFilter as eC, type AgentInstanceHistoryItemRequest as eD, type AgentInstanceHistoryItemCreationResult as eE, type AgentInstanceHistorySearchQuerySortRequest as eF, type AgentInstanceHistorySearchQuery as eG, type AgentInstanceHistoryFilter as eH, type AgentInstanceHistorySearchQueryResult as eI, type AgentInstanceHistoryItemResult as eJ, AgentInstanceHistoryRoleEnum as eK, AgentInstanceHistoryCommitStatusEnum as eL, type AgentInstanceMessageContent as eM, type AgentInstanceTextContent as eN, type AgentInstanceDocumentContent as eO, type AgentInstanceObjectContent as eP, AgentInstanceMessageContentTypeEnum as eQ, type AgentInstanceToolCall as eR, type AgentInstanceHistoryItemMetrics as eS, type AgentInstanceHistoryRoleFilterProperty as eT, type AdvancedAgentInstanceHistoryRoleFilter as eU, type AgentInstanceHistoryCommitStatusFilterProperty as eV, type AdvancedAgentInstanceHistoryCommitStatusFilter as eW, type AuditLogResult as eX, type AuditLogSearchQuerySortRequest as eY, type AuditLogSearchQueryRequest as eZ, type AuditLogFilter as e_, type updateJobInput as ea, type updateJobsBatchOperationInput as eb, type updateMappingRuleInput as ec, type updateRoleInput as ed, type updateTenantInput as ee, type updateTenantClusterVariableInput as ef, type updateUserInput as eg, type updateUserTaskInput as eh, type ExtendedDeploymentResult as ei, CancelError as ej, type CamundaKey as ek, type ClientOptions as el, type AgentInstanceSearchQuerySortRequest as em, type AgentInstanceSearchQuery as en, type AgentInstanceFilter as eo, type AgentInstanceSearchQueryResult as ep, type AgentInstanceResult as eq, type AgentInstanceDefinition as er, type AgentTool as es, type AgentInstanceMetrics as et, type AgentInstanceLimits as eu, AgentInstanceStatusEnum as ev, AgentInstanceUpdateStatusEnum as ew, type AgentInstanceCreationRequest as ex, type AgentInstanceCreationResult as ey, type AgentInstanceMetricsDelta as ez, isRight as f, type CreateClusterVariableRequest as f$, AuditLogEntityKey as f0, AuditLogEntityTypeEnum as f1, AuditLogOperationTypeEnum as f2, AuditLogActorTypeEnum as f3, AuditLogResultEnum as f4, AuditLogCategoryEnum as f5, type AuditLogEntityKeyFilterProperty as f6, type AdvancedAuditLogEntityKeyFilter as f7, type EntityTypeFilterProperty as f8, type AdvancedEntityTypeFilter as f9, type BatchOperationSearchQueryResult as fA, type BatchOperationResponse as fB, type BatchOperationError as fC, type BatchOperationItemSearchQuerySortRequest as fD, type BatchOperationItemSearchQuery as fE, type BatchOperationItemFilter as fF, type BatchOperationItemSearchQueryResult as fG, type BatchOperationItemResponse as fH, type DecisionInstanceDeletionBatchOperationRequest as fI, type ProcessInstanceCancellationBatchOperationRequest as fJ, type ProcessInstanceIncidentResolutionBatchOperationRequest as fK, type ProcessInstanceDeletionBatchOperationRequest as fL, type ProcessInstanceMigrationBatchOperationRequest as fM, type ProcessInstanceMigrationBatchOperationPlan as fN, type ProcessInstanceModificationBatchOperationRequest as fO, type ProcessInstanceModificationMoveBatchOperationInstruction as fP, BatchOperationItemStateEnum as fQ, BatchOperationStateEnum as fR, BatchOperationTypeEnum as fS, type BatchOperationTypeFilterProperty as fT, type AdvancedBatchOperationTypeFilter as fU, type BatchOperationStateFilterProperty as fV, type AdvancedBatchOperationStateFilter as fW, type BatchOperationItemStateFilterProperty as fX, type AdvancedBatchOperationItemStateFilter as fY, type ClockPinRequest as fZ, ClusterVariableScopeEnum as f_, type OperationTypeFilterProperty as fa, type AdvancedOperationTypeFilter as fb, type CategoryFilterProperty as fc, type AdvancedCategoryFilter as fd, type AuditLogResultFilterProperty as fe, type AdvancedResultFilter as ff, type AuditLogActorTypeFilterProperty as fg, type AdvancedActorTypeFilter as fh, type CamundaUserResult as fi, type AuthorizationIdBasedRequest as fj, type AuthorizationPropertyBasedRequest as fk, type AuthorizationRequest as fl, type AuthorizationSearchQuerySortRequest as fm, type AuthorizationSearchQuery as fn, type AuthorizationFilter as fo, type AuthorizationResult as fp, type AuthorizationSearchResult as fq, type AuthorizationCreateResult as fr, PermissionTypeEnum as fs, ResourceTypeEnum as ft, OwnerTypeEnum as fu, AuthorizationKey as fv, type BatchOperationCreatedResult as fw, type BatchOperationSearchQuerySortRequest as fx, type BatchOperationSearchQuery as fy, type BatchOperationFilter as fz, CamundaValidationError as g, type AdvancedResourceKeyFilter as g$, type UpdateClusterVariableRequest as g0, type ClusterVariableResult as g1, type ClusterVariableSearchResult as g2, type ClusterVariableResultBase as g3, type ClusterVariableSearchQueryRequest as g4, type ClusterVariableSearchQuerySortRequest as g5, type ClusterVariableSearchQueryFilterRequest as g6, type ClusterVariableScopeFilterProperty as g7, type AdvancedClusterVariableScopeFilter as g8, type ClusterVariableSearchQueryResult as g9, type EvaluatedDecisionInputItem as gA, type EvaluatedDecisionOutputItem as gB, type MatchedDecisionRuleItem as gC, DecisionDefinitionTypeEnum as gD, DecisionInstanceStateEnum as gE, type AdvancedDecisionInstanceStateFilter as gF, type DecisionInstanceStateFilterProperty as gG, type DecisionRequirementsSearchQuerySortRequest as gH, type DecisionRequirementsSearchQuery as gI, type DecisionRequirementsFilter as gJ, type DecisionRequirementsSearchQueryResult as gK, type DecisionRequirementsResult as gL, type DeploymentResult as gM, type DeploymentMetadataResult as gN, type DeploymentProcessResult as gO, type DeploymentDecisionResult as gP, type DeploymentDecisionRequirementsResult as gQ, type DeploymentFormResult as gR, type DeploymentResourceResult as gS, type DeleteResourceRequest as gT, type DeleteResourceResponse as gU, type ResourceResult as gV, DeploymentKey as gW, type ResourceKey as gX, type DeploymentKeyFilterProperty as gY, type AdvancedDeploymentKeyFilter as gZ, type ResourceKeyFilterProperty as g_, type TopologyResponse as ga, type BrokerInfo as gb, type Partition as gc, type ConditionalEvaluationInstruction as gd, type EvaluateConditionalResult as ge, ConditionalEvaluationKey as gf, type ProcessInstanceReference as gg, StartCursor as gh, EndCursor as gi, type DecisionDefinitionSearchQuerySortRequest as gj, type DecisionDefinitionSearchQuery as gk, type DecisionDefinitionFilter as gl, type DecisionDefinitionSearchQueryResult as gm, type DecisionDefinitionResult as gn, type DecisionEvaluationInstruction as go, type DecisionEvaluationById as gp, type DecisionEvaluationByKey as gq, type EvaluateDecisionResult as gr, type EvaluatedDecisionResult as gs, type DecisionInstanceSearchQuerySortRequest as gt, type DecisionInstanceSearchQuery as gu, type DecisionInstanceFilter as gv, type DeleteDecisionInstanceRequest as gw, type DecisionInstanceSearchQueryResult as gx, type DecisionInstanceResult as gy, type DecisionInstanceGetQueryResult as gz, EventualConsistencyTimeoutError as h, type GlobalTaskListenerSearchQueryRequest as h$, type ResourceSearchQuerySortRequest as h0, type ResourceSearchQuery as h1, type ResourceFilter as h2, type ResourceSearchQueryResult as h3, type DocumentReference as h4, type DocumentCreationFailureDetail as h5, type DocumentCreationBatchResponse as h6, type DocumentMetadata as h7, type DocumentMetadataResponse as h8, type DocumentLinkRequest as h9, type MessageWaitStateDetails as hA, type UserTaskWaitStateDetails as hB, type TimerWaitStateDetails as hC, type SignalWaitStateDetails as hD, type ConditionWaitStateDetails as hE, type AdHocSubProcessActivateActivityReference as hF, type ExpressionEvaluationRequest as hG, type ExpressionEvaluationResult as hH, type ExpressionEvaluationWarningItem as hI, type LikeFilter as hJ, type BasicStringFilter as hK, type AdvancedStringFilter as hL, type BasicStringFilterProperty as hM, type StringFilterProperty as hN, type AdvancedIntegerFilter as hO, type IntegerFilterProperty as hP, type AdvancedDateTimeFilter as hQ, type DateTimeFilterProperty as hR, type FormResult as hS, GlobalListenerSourceEnum as hT, GlobalTaskListenerEventTypeEnum as hU, type GlobalListenerBase as hV, type GlobalTaskListenerBase as hW, type GlobalTaskListenerEventTypes as hX, type CreateGlobalTaskListenerRequest as hY, type UpdateGlobalTaskListenerRequest as hZ, type GlobalTaskListenerResult as h_, type DocumentLink as ha, DocumentId as hb, type ElementInstanceSearchQuerySortRequest as hc, type ElementInstanceWaitStateQuerySortRequest as hd, type ElementInstanceSearchQuery as he, type ElementInstanceFilter as hf, type ElementInstanceFilterFields as hg, type ElementInstanceStateFilterProperty as hh, type AdvancedElementInstanceStateFilter as hi, type ElementInstanceSearchQueryResult as hj, type ElementInstanceResult as hk, ElementInstanceStateEnum as hl, type AdHocSubProcessActivateActivitiesInstruction as hm, type ElementInstanceWaitStateQuery as hn, type ElementInstanceWaitStateFilter as ho, type WaitStateElementTypeFilterProperty as hp, type AdvancedWaitStateElementTypeFilter as hq, WaitStateElementTypeEnum as hr, type WaitStateTypeFilterProperty as hs, type AdvancedWaitStateTypeFilter as ht, type ElementInstanceWaitStateQueryResult as hu, type ElementInstanceWaitStateResult as hv, type WaitStateDetails as hw, WaitStateTypeEnum as hx, type BaseWaitStateDetails as hy, type JobWaitStateDetails as hz, isLeft as i, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as i$, type GlobalTaskListenerSearchQuerySortRequest as i0, type GlobalTaskListenerSearchQueryFilterRequest as i1, type GlobalListenerSourceFilterProperty as i2, type AdvancedGlobalListenerSourceFilter as i3, type GlobalTaskListenerEventTypeFilterProperty as i4, type AdvancedGlobalTaskListenerEventTypeFilter as i5, type GlobalTaskListenerSearchQueryResult as i6, type GroupCreateRequest as i7, type GroupCreateResult as i8, type GroupUpdateRequest as i9, GroupId as iA, MappingRuleId as iB, ClientId as iC, ClusterVariableName as iD, Tag as iE, type TagSet as iF, BusinessId as iG, type IterationId as iH, type ElementIdFilterProperty as iI, type AdvancedElementIdFilter as iJ, type ProcessDefinitionIdFilterProperty as iK, type AdvancedProcessDefinitionIdFilter as iL, type IncidentSearchQuery as iM, type IncidentFilter as iN, type IncidentErrorTypeFilterProperty as iO, type AdvancedIncidentErrorTypeFilter as iP, IncidentErrorTypeEnum as iQ, type IncidentStateFilterProperty as iR, type AdvancedIncidentStateFilter as iS, IncidentStateEnum as iT, type IncidentSearchQuerySortRequest as iU, type IncidentSearchQueryResult as iV, type IncidentResult as iW, type IncidentResolutionRequest as iX, type IncidentProcessInstanceStatisticsByErrorQuery as iY, type IncidentProcessInstanceStatisticsByErrorQueryResult as iZ, type IncidentProcessInstanceStatisticsByErrorResult as i_, type GroupUpdateResult as ia, type GroupResult as ib, type GroupSearchQuerySortRequest as ic, type GroupSearchQueryRequest as id, type GroupFilter as ie, type GroupSearchQueryResult as ig, type GroupUserResult as ih, type GroupUserSearchResult as ii, type GroupUserSearchQueryRequest as ij, type GroupUserSearchQuerySortRequest as ik, type GroupClientResult as il, type GroupClientSearchResult as im, type GroupClientSearchQueryRequest as io, type GroupMappingRuleSearchResult as ip, type GroupRoleSearchResult as iq, type GroupClientSearchQuerySortRequest as ir, ProcessDefinitionId as is, ElementId as it, FormId as iu, DecisionDefinitionId as iv, GlobalListenerId as iw, TenantId as ix, Username as iy, RoleId as iz, isSdkError as j, DecisionDefinitionKey as j$, type IncidentProcessInstanceStatisticsByDefinitionQuery as j0, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as j1, type IncidentProcessInstanceStatisticsByDefinitionResult as j2, type IncidentProcessInstanceStatisticsByDefinitionFilter as j3, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as j4, type GlobalJobStatisticsQueryResult as j5, type StatusMetric as j6, type JobTypeStatisticsQuery as j7, type JobTypeStatisticsFilter as j8, type JobTypeStatisticsQueryResult as j9, type JobResultUserTask as jA, type JobResultCorrections as jB, type JobResultAdHocSubProcess as jC, type JobResultActivateElement as jD, type JobUpdateRequest as jE, type JobChangeset as jF, type JobBatchUpdateRequest as jG, TenantFilterEnum as jH, JobStateEnum as jI, JobKindEnum as jJ, JobListenerEventTypeEnum as jK, type JobKindFilterProperty as jL, type AdvancedJobKindFilter as jM, type JobListenerEventTypeFilterProperty as jN, type AdvancedJobListenerEventTypeFilter as jO, type JobStateFilterProperty as jP, type AdvancedJobStateFilter as jQ, type LongKey as jR, ProcessInstanceKey as jS, ProcessDefinitionKey as jT, ElementInstanceKey as jU, UserTaskKey as jV, FormKey as jW, VariableKey as jX, type ScopeKey as jY, IncidentKey as jZ, JobKey as j_, type JobTypeStatisticsItem as ja, type JobWorkerStatisticsQuery as jb, type JobWorkerStatisticsFilter as jc, type JobWorkerStatisticsQueryResult as jd, type JobWorkerStatisticsItem as je, type JobTimeSeriesStatisticsQuery as jf, type JobTimeSeriesStatisticsFilter as jg, type JobTimeSeriesStatisticsQueryResult as jh, type JobTimeSeriesStatisticsItem as ji, type JobErrorStatisticsQuery as jj, type JobErrorStatisticsFilter as jk, type JobErrorStatisticsQueryResult as jl, type JobErrorStatisticsItem as jm, type JobActivationRequest as jn, type JobActivationResult as jo, type ActivatedJobResult$1 as jp, type UserTaskProperties as jq, type JobSearchQuery as jr, type JobSearchQuerySortRequest as js, type JobFilter as jt, type JobSearchQueryResult as ju, type JobSearchResult as jv, type JobFailRequest as jw, type JobErrorRequest$1 as jx, type JobCompletionRequest as jy, type JobResult as jz, type EnrichedActivatedJob as k, MessageSubscriptionTypeEnum as k$, DecisionEvaluationInstanceKey as k0, DecisionEvaluationKey as k1, DecisionRequirementsKey as k2, DecisionInstanceKey as k3, BatchOperationKey as k4, type OperationReference as k5, AgentInstanceKey as k6, AgentHistoryItemKey as k7, AuditLogKey as k8, type ProcessDefinitionKeyFilterProperty as k9, type AdvancedDecisionRequirementsKeyFilter as kA, type LicenseResponse as kB, type MappingRuleCreateUpdateRequest as kC, type MappingRuleCreateRequest as kD, type MappingRuleUpdateRequest as kE, type MappingRuleCreateUpdateResult as kF, type MappingRuleCreateResult as kG, type MappingRuleUpdateResult as kH, type MappingRuleSearchQueryResult as kI, type MappingRuleResult as kJ, type MappingRuleSearchQuerySortRequest as kK, type MappingRuleSearchQueryRequest as kL, type MappingRuleFilter as kM, type MessageCorrelationRequest as kN, type MessageCorrelationResult as kO, type MessagePublicationRequest as kP, type MessagePublicationResult as kQ, type MessageSubscriptionSearchQueryResult as kR, type MessageSubscriptionResult as kS, type MessageSubscriptionSearchQuerySortRequest as kT, type MessageSubscriptionSearchQuery as kU, type MessageSubscriptionFilter as kV, type CorrelatedMessageSubscriptionSearchQueryResult as kW, type CorrelatedMessageSubscriptionResult as kX, type CorrelatedMessageSubscriptionSearchQuery as kY, type CorrelatedMessageSubscriptionSearchQuerySortRequest as kZ, MessageSubscriptionStateEnum as k_, type AdvancedProcessDefinitionKeyFilter as ka, type ProcessInstanceKeyFilterProperty as kb, type AdvancedProcessInstanceKeyFilter as kc, type ElementInstanceKeyFilterProperty as kd, type AdvancedElementInstanceKeyFilter as ke, type JobKeyFilterProperty as kf, type AdvancedJobKeyFilter as kg, type DecisionDefinitionKeyFilterProperty as kh, type AdvancedDecisionDefinitionKeyFilter as ki, type ScopeKeyFilterProperty as kj, type AdvancedScopeKeyFilter as kk, type VariableKeyFilterProperty as kl, type AdvancedVariableKeyFilter as km, type DecisionEvaluationInstanceKeyFilterProperty as kn, type AdvancedDecisionEvaluationInstanceKeyFilter as ko, type AgentInstanceKeyFilterProperty as kp, type AdvancedAgentInstanceKeyFilter as kq, type AgentHistoryItemKeyFilterProperty as kr, type AdvancedAgentHistoryItemKeyFilter as ks, type AuditLogKeyFilterProperty as kt, type AdvancedAuditLogKeyFilter as ku, type FormKeyFilterProperty as kv, type AdvancedFormKeyFilter as kw, type DecisionEvaluationKeyFilterProperty as kx, type AdvancedDecisionEvaluationKeyFilter as ky, type DecisionRequirementsKeyFilterProperty as kz, JobActionReceipt as l, type DirectAncestorKeyInstruction as l$, type CorrelatedMessageSubscriptionFilter as l0, type MessageSubscriptionTypeFilterProperty as l1, type AdvancedMessageSubscriptionTypeFilter as l2, type MessageSubscriptionStateFilterProperty as l3, type AdvancedMessageSubscriptionStateFilter as l4, type AdvancedMessageSubscriptionKeyFilter as l5, type MessageSubscriptionKeyFilterProperty as l6, MessageSubscriptionKey as l7, MessageKey as l8, type ProblemDetail as l9, type CreateProcessInstanceResult as lA, type ProcessInstanceSearchQuerySortRequest as lB, type ProcessInstanceSearchQuery as lC, type BaseProcessInstanceFilterFields as lD, type ProcessDefinitionStatisticsFilter as lE, type ProcessInstanceFilterFields as lF, type ProcessInstanceFilter as lG, type ProcessInstanceSearchQueryResult as lH, type ProcessInstanceResult as lI, type CancelProcessInstanceRequest as lJ, type DeleteProcessInstanceRequest as lK, type ProcessInstanceCallHierarchyEntry as lL, type ProcessInstanceSequenceFlowsQueryResult as lM, type ProcessInstanceSequenceFlowResult as lN, type ProcessInstanceElementStatisticsQueryResult as lO, type ProcessInstanceWaitStateStatisticsQueryResult as lP, type ProcessInstanceWaitStateStatisticsResult as lQ, type ProcessInstanceMigrationInstruction as lR, type MigrateProcessInstanceMappingInstruction as lS, type ProcessInstanceModificationInstruction as lT, type ProcessInstanceModificationActivateInstruction as lU, type ModifyProcessInstanceVariableInstruction as lV, type ProcessInstanceModificationMoveInstruction as lW, type SourceElementInstruction as lX, type SourceElementIdInstruction as lY, type SourceElementInstanceKeyInstruction as lZ, type AncestorScopeInstruction as l_, type ProcessDefinitionSearchQuerySortRequest as la, type ProcessDefinitionSearchQuery as lb, type ProcessDefinitionFilter as lc, type ProcessDefinitionSearchQueryResult as ld, type ProcessDefinitionResult as le, type ProcessDefinitionElementStatisticsQuery as lf, type ProcessDefinitionElementStatisticsQueryResult as lg, type ProcessElementStatisticsResult as lh, type ProcessDefinitionMessageSubscriptionStatisticsQuery as li, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as lj, type ProcessDefinitionMessageSubscriptionStatisticsResult as lk, type ProcessDefinitionInstanceStatisticsQuery as ll, type ProcessDefinitionInstanceStatisticsQueryResult as lm, type ProcessDefinitionInstanceStatisticsResult as ln, type ProcessDefinitionInstanceStatisticsQuerySortRequest as lo, type ProcessDefinitionInstanceVersionStatisticsQuery as lp, type ProcessDefinitionInstanceVersionStatisticsFilter as lq, type ProcessDefinitionInstanceVersionStatisticsQueryResult as lr, type ProcessDefinitionInstanceVersionStatisticsResult as ls, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as lt, type ProcessInstanceCreationInstruction as lu, type ProcessInstanceCreationInstructionById as lv, type ProcessInstanceCreationInstructionByKey as lw, type ProcessInstanceCreationStartInstruction as lx, type ProcessInstanceCreationRuntimeInstruction as ly, type ProcessInstanceCreationTerminateInstruction as lz, JobWorker as m, type TenantUserSearchQueryRequest as m$, type InferredAncestorKeyInstruction as m0, type UseSourceParentKeyInstruction as m1, type ProcessInstanceModificationTerminateInstruction as m2, type ProcessInstanceModificationTerminateByIdInstruction as m3, type ProcessInstanceModificationTerminateByKeyInstruction as m4, ProcessInstanceStateEnum as m5, type AdvancedProcessInstanceStateFilter as m6, type ProcessInstanceStateFilterProperty as m7, type RoleCreateRequest as m8, type RoleCreateResult as m9, type SearchQueryResponse as mA, SortOrderEnum as mB, type SearchQueryPageResponse as mC, type SignalBroadcastRequest as mD, type SignalBroadcastResult as mE, SignalKey as mF, type UsageMetricsResponse as mG, type UsageMetricsResponseItem as mH, type SystemConfigurationResponse as mI, type JobMetricsConfigurationResponse as mJ, type ComponentsConfigurationResponse as mK, type DeploymentConfigurationResponse as mL, type AuthenticationConfigurationResponse as mM, type CloudConfigurationResponse as mN, type WebappComponent as mO, type CloudStage as mP, type TenantCreateRequest as mQ, type TenantCreateResult as mR, type TenantUpdateRequest as mS, type TenantUpdateResult as mT, type TenantResult as mU, type TenantSearchQuerySortRequest as mV, type TenantSearchQueryRequest as mW, type TenantFilter as mX, type TenantSearchQueryResult as mY, type TenantUserResult as mZ, type TenantUserSearchResult as m_, type RoleUpdateRequest as ma, type RoleUpdateResult as mb, type RoleResult as mc, type RoleSearchQuerySortRequest as md, type RoleSearchQueryRequest as me, type RoleFilter as mf, type RoleSearchQueryResult as mg, type RoleUserResult as mh, type RoleUserSearchResult as mi, type RoleUserSearchQueryRequest as mj, type RoleUserSearchQuerySortRequest as mk, type RoleClientResult as ml, type RoleClientSearchResult as mm, type RoleClientSearchQueryRequest as mn, type RoleClientSearchQuerySortRequest as mo, type RoleGroupResult as mp, type RoleGroupSearchResult as mq, type RoleGroupSearchQueryRequest as mr, type RoleMappingRuleSearchResult as ms, type RoleGroupSearchQuerySortRequest as mt, type SearchQueryRequest as mu, type SearchQueryPageRequest as mv, type LimitPagination as mw, type OffsetPagination as mx, type CursorForwardPagination as my, type CursorBackwardPagination as mz, type JobWorkerConfig as n, type ElementInstanceStateExactMatch as n$, type TenantUserSearchQuerySortRequest as n0, type TenantClientResult as n1, type TenantClientSearchResult as n2, type TenantClientSearchQueryRequest as n3, type TenantClientSearchQuerySortRequest as n4, type TenantGroupResult as n5, type TenantGroupSearchResult as n6, type TenantGroupSearchQueryRequest as n7, type TenantRoleSearchResult as n8, type TenantMappingRuleSearchResult as n9, type UserFilter as nA, type UserSearchResult as nB, type VariableSearchQuerySortRequest as nC, type VariableSearchQuery as nD, type VariableFilter as nE, type VariableSearchQueryResult as nF, type VariableSearchResult as nG, type VariableResult as nH, type VariableResultBase as nI, type VariableValueFilterProperty as nJ, type SetVariableRequest as nK, type AgentInstanceStatusExactMatch as nL, type AgentInstanceHistoryRoleExactMatch as nM, type AgentInstanceHistoryCommitStatusExactMatch as nN, type AuditLogEntityKeyExactMatch as nO, type EntityTypeExactMatch as nP, type OperationTypeExactMatch as nQ, type CategoryExactMatch as nR, type AuditLogResultExactMatch as nS, type AuditLogActorTypeExactMatch as nT, type BatchOperationTypeExactMatch as nU, type BatchOperationStateExactMatch as nV, type BatchOperationItemStateExactMatch as nW, type ClusterVariableScopeExactMatch as nX, type DecisionInstanceStateExactMatch as nY, type DeploymentKeyExactMatch as nZ, type ResourceKeyExactMatch as n_, type TenantGroupSearchQuerySortRequest as na, type UserTaskSearchQuerySortRequest as nb, type UserTaskSearchQuery as nc, type UserTaskFilter as nd, type UserTaskSearchQueryResult as ne, type UserTaskResult as nf, type UserTaskCompletionRequest as ng, type UserTaskAssignmentRequest as nh, type UserTaskUpdateRequest as ni, type Changeset as nj, type UserTaskVariableSearchQuerySortRequest as nk, type UserTaskVariableSearchQueryRequest as nl, type UserTaskEffectiveVariableSearchQueryRequest as nm, type UserTaskAuditLogSearchQueryRequest as nn, UserTaskStateEnum as no, type UserTaskVariableFilter as np, type UserTaskStateFilterProperty as nq, type AdvancedUserTaskStateFilter as nr, type UserTaskAuditLogFilter as ns, type UserRequest as nt, type UserCreateResult as nu, type UserUpdateRequest as nv, type UserUpdateResult as nw, type UserResult as nx, type UserSearchQuerySortRequest as ny, type UserSearchQueryRequest as nz, type SupportLogger as o, type SearchAuditLogsResponses as o$, type WaitStateElementTypeExactMatch as o0, type WaitStateTypeExactMatch as o1, type GlobalListenerSourceExactMatch as o2, type GlobalTaskListenerEventTypeExactMatch as o3, type ElementIdExactMatch as o4, type ProcessDefinitionIdExactMatch as o5, type IncidentErrorTypeExactMatch as o6, type IncidentStateExactMatch as o7, type JobKindExactMatch as o8, type JobListenerEventTypeExactMatch as o9, type GetAgentInstanceErrors as oA, type GetAgentInstanceError as oB, type GetAgentInstanceResponses as oC, type GetAgentInstanceResponse as oD, type UpdateAgentInstanceData as oE, type UpdateAgentInstanceErrors as oF, type UpdateAgentInstanceError as oG, type UpdateAgentInstanceResponses as oH, type UpdateAgentInstanceResponse as oI, type SearchAgentInstancesData as oJ, type SearchAgentInstancesErrors as oK, type SearchAgentInstancesError as oL, type SearchAgentInstancesResponses as oM, type SearchAgentInstancesResponse as oN, type CreateAgentInstanceHistoryItemData as oO, type CreateAgentInstanceHistoryItemErrors as oP, type CreateAgentInstanceHistoryItemError as oQ, type CreateAgentInstanceHistoryItemResponses as oR, type CreateAgentInstanceHistoryItemResponse as oS, type SearchAgentInstanceHistoryData as oT, type SearchAgentInstanceHistoryErrors as oU, type SearchAgentInstanceHistoryError as oV, type SearchAgentInstanceHistoryResponses as oW, type SearchAgentInstanceHistoryResponse as oX, type SearchAuditLogsData as oY, type SearchAuditLogsErrors as oZ, type SearchAuditLogsError as o_, type JobStateExactMatch as oa, type ProcessDefinitionKeyExactMatch as ob, type ProcessInstanceKeyExactMatch as oc, type ElementInstanceKeyExactMatch as od, type JobKeyExactMatch as oe, type DecisionDefinitionKeyExactMatch as of, type ScopeKeyExactMatch as og, type VariableKeyExactMatch as oh, type DecisionEvaluationInstanceKeyExactMatch as oi, type AgentInstanceKeyExactMatch as oj, type AgentHistoryItemKeyExactMatch as ok, type AuditLogKeyExactMatch as ol, type FormKeyExactMatch as om, type DecisionEvaluationKeyExactMatch as on, type DecisionRequirementsKeyExactMatch as oo, type MessageSubscriptionTypeExactMatch as op, type MessageSubscriptionStateExactMatch as oq, type MessageSubscriptionKeyExactMatch as or, type ProcessInstanceStateExactMatch as os, type UserTaskStateExactMatch as ot, type CreateAgentInstanceData as ou, type CreateAgentInstanceErrors as ov, type CreateAgentInstanceError as ow, type CreateAgentInstanceResponses as ox, type CreateAgentInstanceResponse as oy, type GetAgentInstanceData as oz, type ThreadedJob as p, type SuspendBatchOperationError as p$, type SearchAuditLogsResponse as p0, type GetAuditLogData as p1, type GetAuditLogErrors as p2, type GetAuditLogError as p3, type GetAuditLogResponses as p4, type GetAuditLogResponse as p5, type GetAuthenticationData as p6, type GetAuthenticationErrors as p7, type GetAuthenticationError as p8, type GetAuthenticationResponses as p9, type SearchBatchOperationItemsData as pA, type SearchBatchOperationItemsErrors as pB, type SearchBatchOperationItemsError as pC, type SearchBatchOperationItemsResponses as pD, type SearchBatchOperationItemsResponse as pE, type SearchBatchOperationsData as pF, type SearchBatchOperationsErrors as pG, type SearchBatchOperationsError as pH, type SearchBatchOperationsResponses as pI, type SearchBatchOperationsResponse as pJ, type GetBatchOperationData as pK, type GetBatchOperationErrors as pL, type GetBatchOperationError as pM, type GetBatchOperationResponses as pN, type GetBatchOperationResponse as pO, type CancelBatchOperationData as pP, type CancelBatchOperationErrors as pQ, type CancelBatchOperationError as pR, type CancelBatchOperationResponses as pS, type CancelBatchOperationResponse as pT, type ResumeBatchOperationData as pU, type ResumeBatchOperationErrors as pV, type ResumeBatchOperationError as pW, type ResumeBatchOperationResponses as pX, type ResumeBatchOperationResponse as pY, type SuspendBatchOperationData as pZ, type SuspendBatchOperationErrors as p_, type GetAuthenticationResponse as pa, type CreateAuthorizationData as pb, type CreateAuthorizationErrors as pc, type CreateAuthorizationError as pd, type CreateAuthorizationResponses as pe, type CreateAuthorizationResponse as pf, type SearchAuthorizationsData as pg, type SearchAuthorizationsErrors as ph, type SearchAuthorizationsError as pi, type SearchAuthorizationsResponses as pj, type SearchAuthorizationsResponse as pk, type DeleteAuthorizationData as pl, type DeleteAuthorizationErrors as pm, type DeleteAuthorizationError as pn, type DeleteAuthorizationResponses as po, type DeleteAuthorizationResponse as pp, type GetAuthorizationData as pq, type GetAuthorizationErrors as pr, type GetAuthorizationError as ps, type GetAuthorizationResponses as pt, type GetAuthorizationResponse as pu, type UpdateAuthorizationData as pv, type UpdateAuthorizationErrors as pw, type UpdateAuthorizationError as px, type UpdateAuthorizationResponses as py, type UpdateAuthorizationResponse as pz, type ThreadedJobHandler as q, type SearchCorrelatedMessageSubscriptionsErrors as q$, type SuspendBatchOperationResponses as q0, type SuspendBatchOperationResponse as q1, type PinClockData as q2, type PinClockErrors as q3, type PinClockError as q4, type PinClockResponses as q5, type PinClockResponse as q6, type ResetClockData as q7, type ResetClockErrors as q8, type ResetClockError as q9, type SearchClusterVariablesResponse as qA, type CreateTenantClusterVariableData as qB, type CreateTenantClusterVariableErrors as qC, type CreateTenantClusterVariableError as qD, type CreateTenantClusterVariableResponses as qE, type CreateTenantClusterVariableResponse as qF, type DeleteTenantClusterVariableData as qG, type DeleteTenantClusterVariableErrors as qH, type DeleteTenantClusterVariableError as qI, type DeleteTenantClusterVariableResponses as qJ, type DeleteTenantClusterVariableResponse as qK, type GetTenantClusterVariableData as qL, type GetTenantClusterVariableErrors as qM, type GetTenantClusterVariableError as qN, type GetTenantClusterVariableResponses as qO, type GetTenantClusterVariableResponse as qP, type UpdateTenantClusterVariableData as qQ, type UpdateTenantClusterVariableErrors as qR, type UpdateTenantClusterVariableError as qS, type UpdateTenantClusterVariableResponses as qT, type UpdateTenantClusterVariableResponse as qU, type EvaluateConditionalsData as qV, type EvaluateConditionalsErrors as qW, type EvaluateConditionalsError as qX, type EvaluateConditionalsResponses as qY, type EvaluateConditionalsResponse as qZ, type SearchCorrelatedMessageSubscriptionsData as q_, type ResetClockResponses as qa, type ResetClockResponse as qb, type CreateGlobalClusterVariableData as qc, type CreateGlobalClusterVariableErrors as qd, type CreateGlobalClusterVariableError as qe, type CreateGlobalClusterVariableResponses as qf, type CreateGlobalClusterVariableResponse as qg, type DeleteGlobalClusterVariableData as qh, type DeleteGlobalClusterVariableErrors as qi, type DeleteGlobalClusterVariableError as qj, type DeleteGlobalClusterVariableResponses as qk, type DeleteGlobalClusterVariableResponse as ql, type GetGlobalClusterVariableData as qm, type GetGlobalClusterVariableErrors as qn, type GetGlobalClusterVariableError as qo, type GetGlobalClusterVariableResponses as qp, type GetGlobalClusterVariableResponse as qq, type UpdateGlobalClusterVariableData as qr, type UpdateGlobalClusterVariableErrors as qs, type UpdateGlobalClusterVariableError as qt, type UpdateGlobalClusterVariableResponses as qu, type UpdateGlobalClusterVariableResponse as qv, type SearchClusterVariablesData as qw, type SearchClusterVariablesErrors as qx, type SearchClusterVariablesError as qy, type SearchClusterVariablesResponses as qz, ThreadedJobWorker as r, type CreateDocumentData as r$, type SearchCorrelatedMessageSubscriptionsError as r0, type SearchCorrelatedMessageSubscriptionsResponses as r1, type SearchCorrelatedMessageSubscriptionsResponse as r2, type EvaluateDecisionData as r3, type EvaluateDecisionErrors as r4, type EvaluateDecisionError as r5, type EvaluateDecisionResponses as r6, type EvaluateDecisionResponse as r7, type SearchDecisionDefinitionsData as r8, type SearchDecisionDefinitionsErrors as r9, type DeleteDecisionInstanceResponses as rA, type DeleteDecisionInstanceResponse as rB, type DeleteDecisionInstancesBatchOperationData as rC, type DeleteDecisionInstancesBatchOperationErrors as rD, type DeleteDecisionInstancesBatchOperationError as rE, type DeleteDecisionInstancesBatchOperationResponses as rF, type DeleteDecisionInstancesBatchOperationResponse as rG, type SearchDecisionRequirementsData as rH, type SearchDecisionRequirementsErrors as rI, type SearchDecisionRequirementsError as rJ, type SearchDecisionRequirementsResponses as rK, type SearchDecisionRequirementsResponse as rL, type GetDecisionRequirementsData as rM, type GetDecisionRequirementsErrors as rN, type GetDecisionRequirementsError as rO, type GetDecisionRequirementsResponses as rP, type GetDecisionRequirementsResponse as rQ, type GetDecisionRequirementsXmlData as rR, type GetDecisionRequirementsXmlErrors as rS, type GetDecisionRequirementsXmlError as rT, type GetDecisionRequirementsXmlResponses as rU, type GetDecisionRequirementsXmlResponse as rV, type CreateDeploymentData as rW, type CreateDeploymentErrors as rX, type CreateDeploymentError as rY, type CreateDeploymentResponses as rZ, type CreateDeploymentResponse as r_, type SearchDecisionDefinitionsError as ra, type SearchDecisionDefinitionsResponses as rb, type SearchDecisionDefinitionsResponse as rc, type GetDecisionDefinitionData as rd, type GetDecisionDefinitionErrors as re, type GetDecisionDefinitionError as rf, type GetDecisionDefinitionResponses as rg, type GetDecisionDefinitionResponse as rh, type GetDecisionDefinitionXmlData as ri, type GetDecisionDefinitionXmlErrors as rj, type GetDecisionDefinitionXmlError as rk, type GetDecisionDefinitionXmlResponses as rl, type GetDecisionDefinitionXmlResponse as rm, type SearchDecisionInstancesData as rn, type SearchDecisionInstancesErrors as ro, type SearchDecisionInstancesError as rp, type SearchDecisionInstancesResponses as rq, type SearchDecisionInstancesResponse as rr, type GetDecisionInstanceData as rs, type GetDecisionInstanceErrors as rt, type GetDecisionInstanceError as ru, type GetDecisionInstanceResponses as rv, type GetDecisionInstanceResponse as rw, type DeleteDecisionInstanceData as rx, type DeleteDecisionInstanceErrors as ry, type DeleteDecisionInstanceError as rz, type ThreadedJobWorkerConfig as s, type GetFormByKeyResponse as s$, type CreateDocumentErrors as s0, type CreateDocumentError as s1, type CreateDocumentResponses as s2, type CreateDocumentResponse as s3, type CreateDocumentsData as s4, type CreateDocumentsErrors as s5, type CreateDocumentsError as s6, type CreateDocumentsResponses as s7, type CreateDocumentsResponse as s8, type DeleteDocumentData as s9, type SearchElementInstancesError as sA, type SearchElementInstancesResponses as sB, type SearchElementInstancesResponse as sC, type GetElementInstanceData as sD, type GetElementInstanceErrors as sE, type GetElementInstanceError as sF, type GetElementInstanceResponses as sG, type GetElementInstanceResponse as sH, type SearchElementInstanceIncidentsData as sI, type SearchElementInstanceIncidentsErrors as sJ, type SearchElementInstanceIncidentsError as sK, type SearchElementInstanceIncidentsResponses as sL, type SearchElementInstanceIncidentsResponse as sM, type CreateElementInstanceVariablesData as sN, type CreateElementInstanceVariablesErrors as sO, type CreateElementInstanceVariablesError as sP, type CreateElementInstanceVariablesResponses as sQ, type CreateElementInstanceVariablesResponse as sR, type EvaluateExpressionData as sS, type EvaluateExpressionErrors as sT, type EvaluateExpressionError as sU, type EvaluateExpressionResponses as sV, type EvaluateExpressionResponse as sW, type GetFormByKeyData as sX, type GetFormByKeyErrors as sY, type GetFormByKeyError as sZ, type GetFormByKeyResponses as s_, type DeleteDocumentErrors as sa, type DeleteDocumentError as sb, type DeleteDocumentResponses as sc, type DeleteDocumentResponse as sd, type GetDocumentData as se, type GetDocumentErrors as sf, type GetDocumentError as sg, type GetDocumentResponses as sh, type GetDocumentResponse as si, type CreateDocumentLinkData as sj, type CreateDocumentLinkErrors as sk, type CreateDocumentLinkError as sl, type CreateDocumentLinkResponses as sm, type CreateDocumentLinkResponse as sn, type ActivateAdHocSubProcessActivitiesData as so, type ActivateAdHocSubProcessActivitiesErrors as sp, type ActivateAdHocSubProcessActivitiesError as sq, type ActivateAdHocSubProcessActivitiesResponses as sr, type ActivateAdHocSubProcessActivitiesResponse as ss, type SearchElementInstanceWaitStatesData as st, type SearchElementInstanceWaitStatesErrors as su, type SearchElementInstanceWaitStatesError as sv, type SearchElementInstanceWaitStatesResponses as sw, type SearchElementInstanceWaitStatesResponse as sx, type SearchElementInstancesData as sy, type SearchElementInstancesErrors as sz, ThreadPool as t, type AssignClientToGroupResponses as t$, type CreateGlobalTaskListenerData as t0, type CreateGlobalTaskListenerErrors as t1, type CreateGlobalTaskListenerError as t2, type CreateGlobalTaskListenerResponses as t3, type CreateGlobalTaskListenerResponse as t4, type DeleteGlobalTaskListenerData as t5, type DeleteGlobalTaskListenerErrors as t6, type DeleteGlobalTaskListenerError as t7, type DeleteGlobalTaskListenerResponses as t8, type DeleteGlobalTaskListenerResponse as t9, type DeleteGroupErrors as tA, type DeleteGroupError as tB, type DeleteGroupResponses as tC, type DeleteGroupResponse as tD, type GetGroupData as tE, type GetGroupErrors as tF, type GetGroupError as tG, type GetGroupResponses as tH, type GetGroupResponse as tI, type UpdateGroupData as tJ, type UpdateGroupErrors as tK, type UpdateGroupError as tL, type UpdateGroupResponses as tM, type UpdateGroupResponse as tN, type SearchClientsForGroupData as tO, type SearchClientsForGroupErrors as tP, type SearchClientsForGroupError as tQ, type SearchClientsForGroupResponses as tR, type SearchClientsForGroupResponse as tS, type UnassignClientFromGroupData as tT, type UnassignClientFromGroupErrors as tU, type UnassignClientFromGroupError as tV, type UnassignClientFromGroupResponses as tW, type UnassignClientFromGroupResponse as tX, type AssignClientToGroupData as tY, type AssignClientToGroupErrors as tZ, type AssignClientToGroupError as t_, type GetGlobalTaskListenerData as ta, type GetGlobalTaskListenerErrors as tb, type GetGlobalTaskListenerError as tc, type GetGlobalTaskListenerResponses as td, type GetGlobalTaskListenerResponse as te, type UpdateGlobalTaskListenerData as tf, type UpdateGlobalTaskListenerErrors as tg, type UpdateGlobalTaskListenerError as th, type UpdateGlobalTaskListenerResponses as ti, type UpdateGlobalTaskListenerResponse as tj, type SearchGlobalTaskListenersData as tk, type SearchGlobalTaskListenersErrors as tl, type SearchGlobalTaskListenersError as tm, type SearchGlobalTaskListenersResponses as tn, type SearchGlobalTaskListenersResponse as to, type CreateGroupData as tp, type CreateGroupErrors as tq, type CreateGroupError as tr, type CreateGroupResponses as ts, type CreateGroupResponse as tt, type SearchGroupsData as tu, type SearchGroupsErrors as tv, type SearchGroupsError as tw, type SearchGroupsResponses as tx, type SearchGroupsResponse as ty, type DeleteGroupData as tz, collectTypedVariables as u, type ActivateJobsError as u$, type AssignClientToGroupResponse as u0, type SearchMappingRulesForGroupData as u1, type SearchMappingRulesForGroupErrors as u2, type SearchMappingRulesForGroupError as u3, type SearchMappingRulesForGroupResponses as u4, type SearchMappingRulesForGroupResponse as u5, type UnassignMappingRuleFromGroupData as u6, type UnassignMappingRuleFromGroupErrors as u7, type UnassignMappingRuleFromGroupError as u8, type UnassignMappingRuleFromGroupResponses as u9, type SearchIncidentsData as uA, type SearchIncidentsErrors as uB, type SearchIncidentsError as uC, type SearchIncidentsResponses as uD, type SearchIncidentsResponse as uE, type GetIncidentData as uF, type GetIncidentErrors as uG, type GetIncidentError as uH, type GetIncidentResponses as uI, type GetIncidentResponse as uJ, type ResolveIncidentData as uK, type ResolveIncidentErrors as uL, type ResolveIncidentError as uM, type ResolveIncidentResponses as uN, type ResolveIncidentResponse as uO, type GetProcessInstanceStatisticsByDefinitionData as uP, type GetProcessInstanceStatisticsByDefinitionErrors as uQ, type GetProcessInstanceStatisticsByDefinitionError as uR, type GetProcessInstanceStatisticsByDefinitionResponses as uS, type GetProcessInstanceStatisticsByDefinitionResponse as uT, type GetProcessInstanceStatisticsByErrorData as uU, type GetProcessInstanceStatisticsByErrorErrors as uV, type GetProcessInstanceStatisticsByErrorError as uW, type GetProcessInstanceStatisticsByErrorResponses as uX, type GetProcessInstanceStatisticsByErrorResponse as uY, type ActivateJobsData as uZ, type ActivateJobsErrors as u_, type UnassignMappingRuleFromGroupResponse as ua, type AssignMappingRuleToGroupData as ub, type AssignMappingRuleToGroupErrors as uc, type AssignMappingRuleToGroupError as ud, type AssignMappingRuleToGroupResponses as ue, type AssignMappingRuleToGroupResponse as uf, type SearchRolesForGroupData as ug, type SearchRolesForGroupErrors as uh, type SearchRolesForGroupError as ui, type SearchRolesForGroupResponses as uj, type SearchRolesForGroupResponse as uk, type SearchUsersForGroupData as ul, type SearchUsersForGroupErrors as um, type SearchUsersForGroupError as un, type SearchUsersForGroupResponses as uo, type SearchUsersForGroupResponse as up, type UnassignUserFromGroupData as uq, type UnassignUserFromGroupErrors as ur, type UnassignUserFromGroupError as us, type UnassignUserFromGroupResponses as ut, type UnassignUserFromGroupResponse as uu, type AssignUserToGroupData as uv, type AssignUserToGroupErrors as uw, type AssignUserToGroupError as ux, type AssignUserToGroupResponses as uy, type AssignUserToGroupResponse as uz, type TypedVariableItem as v, type CreateMappingRuleErrors as v$, type ActivateJobsResponses as v0, type ActivateJobsResponse as v1, type SearchJobsData as v2, type SearchJobsErrors as v3, type SearchJobsError as v4, type SearchJobsResponses as v5, type SearchJobsResponse as v6, type UpdateJobData as v7, type UpdateJobErrors as v8, type UpdateJobError as v9, type GetGlobalJobStatisticsResponse as vA, type GetJobTypeStatisticsData as vB, type GetJobTypeStatisticsErrors as vC, type GetJobTypeStatisticsError as vD, type GetJobTypeStatisticsResponses as vE, type GetJobTypeStatisticsResponse as vF, type GetJobWorkerStatisticsData as vG, type GetJobWorkerStatisticsErrors as vH, type GetJobWorkerStatisticsError as vI, type GetJobWorkerStatisticsResponses as vJ, type GetJobWorkerStatisticsResponse as vK, type GetJobTimeSeriesStatisticsData as vL, type GetJobTimeSeriesStatisticsErrors as vM, type GetJobTimeSeriesStatisticsError as vN, type GetJobTimeSeriesStatisticsResponses as vO, type GetJobTimeSeriesStatisticsResponse as vP, type GetJobErrorStatisticsData as vQ, type GetJobErrorStatisticsErrors as vR, type GetJobErrorStatisticsError as vS, type GetJobErrorStatisticsResponses as vT, type GetJobErrorStatisticsResponse as vU, type GetLicenseData as vV, type GetLicenseErrors as vW, type GetLicenseError as vX, type GetLicenseResponses as vY, type GetLicenseResponse as vZ, type CreateMappingRuleData as v_, type UpdateJobResponses as va, type UpdateJobResponse as vb, type CompleteJobData as vc, type CompleteJobErrors as vd, type CompleteJobError as ve, type CompleteJobResponses as vf, type CompleteJobResponse as vg, type ThrowJobErrorData as vh, type ThrowJobErrorErrors as vi, type ThrowJobErrorError as vj, type ThrowJobErrorResponses as vk, type ThrowJobErrorResponse as vl, type FailJobData as vm, type FailJobErrors as vn, type FailJobError as vo, type FailJobResponses as vp, type FailJobResponse as vq, type UpdateJobsBatchOperationData as vr, type UpdateJobsBatchOperationErrors as vs, type UpdateJobsBatchOperationError as vt, type UpdateJobsBatchOperationResponses as vu, type UpdateJobsBatchOperationResponse as vv, type GetGlobalJobStatisticsData as vw, type GetGlobalJobStatisticsErrors as vx, type GetGlobalJobStatisticsError as vy, type GetGlobalJobStatisticsResponses as vz, type TypedVariablePage as w, type GetProcessDefinitionStatisticsData as w$, type CreateMappingRuleError as w0, type CreateMappingRuleResponses as w1, type CreateMappingRuleResponse as w2, type SearchMappingRuleData as w3, type SearchMappingRuleErrors as w4, type SearchMappingRuleError as w5, type SearchMappingRuleResponses as w6, type SearchMappingRuleResponse as w7, type DeleteMappingRuleData as w8, type DeleteMappingRuleErrors as w9, type PublishMessageResponses as wA, type PublishMessageResponse as wB, type SearchProcessDefinitionsData as wC, type SearchProcessDefinitionsErrors as wD, type SearchProcessDefinitionsError as wE, type SearchProcessDefinitionsResponses as wF, type SearchProcessDefinitionsResponse as wG, type GetProcessDefinitionMessageSubscriptionStatisticsData as wH, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as wI, type GetProcessDefinitionMessageSubscriptionStatisticsError as wJ, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as wK, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as wL, type GetProcessDefinitionInstanceStatisticsData as wM, type GetProcessDefinitionInstanceStatisticsErrors as wN, type GetProcessDefinitionInstanceStatisticsError as wO, type GetProcessDefinitionInstanceStatisticsResponses as wP, type GetProcessDefinitionInstanceStatisticsResponse as wQ, type GetProcessDefinitionData as wR, type GetProcessDefinitionErrors as wS, type GetProcessDefinitionError as wT, type GetProcessDefinitionResponses as wU, type GetProcessDefinitionResponse as wV, type GetStartProcessFormData as wW, type GetStartProcessFormErrors as wX, type GetStartProcessFormError as wY, type GetStartProcessFormResponses as wZ, type GetStartProcessFormResponse as w_, type DeleteMappingRuleError as wa, type DeleteMappingRuleResponses as wb, type DeleteMappingRuleResponse as wc, type GetMappingRuleData as wd, type GetMappingRuleErrors as we, type GetMappingRuleError as wf, type GetMappingRuleResponses as wg, type GetMappingRuleResponse as wh, type UpdateMappingRuleData as wi, type UpdateMappingRuleErrors as wj, type UpdateMappingRuleError as wk, type UpdateMappingRuleResponses as wl, type UpdateMappingRuleResponse as wm, type SearchMessageSubscriptionsData as wn, type SearchMessageSubscriptionsErrors as wo, type SearchMessageSubscriptionsError as wp, type SearchMessageSubscriptionsResponses as wq, type SearchMessageSubscriptionsResponse as wr, type CorrelateMessageData as ws, type CorrelateMessageErrors as wt, type CorrelateMessageError as wu, type CorrelateMessageResponses as wv, type CorrelateMessageResponse as ww, type PublishMessageData as wx, type PublishMessageErrors as wy, type PublishMessageError as wz, TypedVariablesError as x, type CancelProcessInstanceResponse as x$, type GetProcessDefinitionStatisticsErrors as x0, type GetProcessDefinitionStatisticsError as x1, type GetProcessDefinitionStatisticsResponses as x2, type GetProcessDefinitionStatisticsResponse as x3, type GetProcessDefinitionXmlData as x4, type GetProcessDefinitionXmlErrors as x5, type GetProcessDefinitionXmlError as x6, type GetProcessDefinitionXmlResponses as x7, type GetProcessDefinitionXmlResponse as x8, type GetProcessDefinitionInstanceVersionStatisticsData as x9, type MigrateProcessInstancesBatchOperationError as xA, type MigrateProcessInstancesBatchOperationResponses as xB, type MigrateProcessInstancesBatchOperationResponse as xC, type ModifyProcessInstancesBatchOperationData as xD, type ModifyProcessInstancesBatchOperationErrors as xE, type ModifyProcessInstancesBatchOperationError as xF, type ModifyProcessInstancesBatchOperationResponses as xG, type ModifyProcessInstancesBatchOperationResponse as xH, type SearchProcessInstancesData as xI, type SearchProcessInstancesErrors as xJ, type SearchProcessInstancesError as xK, type SearchProcessInstancesResponses as xL, type SearchProcessInstancesResponse as xM, type GetProcessInstanceData as xN, type GetProcessInstanceErrors as xO, type GetProcessInstanceError as xP, type GetProcessInstanceResponses as xQ, type GetProcessInstanceResponse as xR, type GetProcessInstanceCallHierarchyData as xS, type GetProcessInstanceCallHierarchyErrors as xT, type GetProcessInstanceCallHierarchyError as xU, type GetProcessInstanceCallHierarchyResponses as xV, type GetProcessInstanceCallHierarchyResponse as xW, type CancelProcessInstanceData as xX, type CancelProcessInstanceErrors as xY, type CancelProcessInstanceError as xZ, type CancelProcessInstanceResponses as x_, type GetProcessDefinitionInstanceVersionStatisticsErrors as xa, type GetProcessDefinitionInstanceVersionStatisticsError as xb, type GetProcessDefinitionInstanceVersionStatisticsResponses as xc, type GetProcessDefinitionInstanceVersionStatisticsResponse as xd, type CreateProcessInstanceData as xe, type CreateProcessInstanceErrors as xf, type CreateProcessInstanceError as xg, type CreateProcessInstanceResponses as xh, type CreateProcessInstanceResponse as xi, type CancelProcessInstancesBatchOperationData as xj, type CancelProcessInstancesBatchOperationErrors as xk, type CancelProcessInstancesBatchOperationError as xl, type CancelProcessInstancesBatchOperationResponses as xm, type CancelProcessInstancesBatchOperationResponse as xn, type DeleteProcessInstancesBatchOperationData as xo, type DeleteProcessInstancesBatchOperationErrors as xp, type DeleteProcessInstancesBatchOperationError as xq, type DeleteProcessInstancesBatchOperationResponses as xr, type DeleteProcessInstancesBatchOperationResponse as xs, type ResolveIncidentsBatchOperationData as xt, type ResolveIncidentsBatchOperationErrors as xu, type ResolveIncidentsBatchOperationError as xv, type ResolveIncidentsBatchOperationResponses as xw, type ResolveIncidentsBatchOperationResponse as xx, type MigrateProcessInstancesBatchOperationData as xy, type MigrateProcessInstancesBatchOperationErrors as xz, VariableDeserializationError as y, type DeleteResourceResponses as y$, type DeleteProcessInstanceData as y0, type DeleteProcessInstanceErrors as y1, type DeleteProcessInstanceError as y2, type DeleteProcessInstanceResponses as y3, type DeleteProcessInstanceResponse as y4, type ResolveProcessInstanceIncidentsData as y5, type ResolveProcessInstanceIncidentsErrors as y6, type ResolveProcessInstanceIncidentsError as y7, type ResolveProcessInstanceIncidentsResponses as y8, type ResolveProcessInstanceIncidentsResponse as y9, type GetProcessInstanceWaitStateStatisticsErrors as yA, type GetProcessInstanceWaitStateStatisticsError as yB, type GetProcessInstanceWaitStateStatisticsResponses as yC, type GetProcessInstanceWaitStateStatisticsResponse as yD, type SearchResourcesData as yE, type SearchResourcesErrors as yF, type SearchResourcesError as yG, type SearchResourcesResponses as yH, type SearchResourcesResponse as yI, type GetResourceData as yJ, type GetResourceErrors as yK, type GetResourceError as yL, type GetResourceResponses as yM, type GetResourceResponse as yN, type GetResourceContentData as yO, type GetResourceContentErrors as yP, type GetResourceContentError as yQ, type GetResourceContentResponses as yR, type GetResourceContentResponse as yS, type GetResourceContentBinaryData as yT, type GetResourceContentBinaryErrors as yU, type GetResourceContentBinaryError as yV, type GetResourceContentBinaryResponses as yW, type GetResourceContentBinaryResponse as yX, type DeleteResourceData as yY, type DeleteResourceErrors as yZ, type DeleteResourceError as y_, type SearchProcessInstanceIncidentsData as ya, type SearchProcessInstanceIncidentsErrors as yb, type SearchProcessInstanceIncidentsError as yc, type SearchProcessInstanceIncidentsResponses as yd, type SearchProcessInstanceIncidentsResponse as ye, type MigrateProcessInstanceData as yf, type MigrateProcessInstanceErrors as yg, type MigrateProcessInstanceError as yh, type MigrateProcessInstanceResponses as yi, type MigrateProcessInstanceResponse as yj, type ModifyProcessInstanceData as yk, type ModifyProcessInstanceErrors as yl, type ModifyProcessInstanceError as ym, type ModifyProcessInstanceResponses as yn, type ModifyProcessInstanceResponse as yo, type GetProcessInstanceSequenceFlowsData as yp, type GetProcessInstanceSequenceFlowsErrors as yq, type GetProcessInstanceSequenceFlowsError as yr, type GetProcessInstanceSequenceFlowsResponses as ys, type GetProcessInstanceSequenceFlowsResponse as yt, type GetProcessInstanceStatisticsData as yu, type GetProcessInstanceStatisticsErrors as yv, type GetProcessInstanceStatisticsError as yw, type GetProcessInstanceStatisticsResponses as yx, type GetProcessInstanceStatisticsResponse as yy, type GetProcessInstanceWaitStateStatisticsData as yz, VariableMap as z, type UnassignRoleFromMappingRuleError as z$, type DeleteResourceResponse2 as z0, type CreateRoleData as z1, type CreateRoleErrors as z2, type CreateRoleError as z3, type CreateRoleResponses as z4, type CreateRoleResponse as z5, type SearchRolesData as z6, type SearchRolesErrors as z7, type SearchRolesError as z8, type SearchRolesResponses as z9, type AssignRoleToClientData as zA, type AssignRoleToClientErrors as zB, type AssignRoleToClientError as zC, type AssignRoleToClientResponses as zD, type AssignRoleToClientResponse as zE, type SearchGroupsForRoleData as zF, type SearchGroupsForRoleErrors as zG, type SearchGroupsForRoleError as zH, type SearchGroupsForRoleResponses as zI, type SearchGroupsForRoleResponse as zJ, type UnassignRoleFromGroupData as zK, type UnassignRoleFromGroupErrors as zL, type UnassignRoleFromGroupError as zM, type UnassignRoleFromGroupResponses as zN, type UnassignRoleFromGroupResponse as zO, type AssignRoleToGroupData as zP, type AssignRoleToGroupErrors as zQ, type AssignRoleToGroupError as zR, type AssignRoleToGroupResponses as zS, type AssignRoleToGroupResponse as zT, type SearchMappingRulesForRoleData as zU, type SearchMappingRulesForRoleErrors as zV, type SearchMappingRulesForRoleError as zW, type SearchMappingRulesForRoleResponses as zX, type SearchMappingRulesForRoleResponse as zY, type UnassignRoleFromMappingRuleData as zZ, type UnassignRoleFromMappingRuleErrors as z_, type SearchRolesResponse as za, type DeleteRoleData as zb, type DeleteRoleErrors as zc, type DeleteRoleError as zd, type DeleteRoleResponses as ze, type DeleteRoleResponse as zf, type GetRoleData as zg, type GetRoleErrors as zh, type GetRoleError as zi, type GetRoleResponses as zj, type GetRoleResponse as zk, type UpdateRoleData as zl, type UpdateRoleErrors as zm, type UpdateRoleError as zn, type UpdateRoleResponses as zo, type UpdateRoleResponse as zp, type SearchClientsForRoleData as zq, type SearchClientsForRoleErrors as zr, type SearchClientsForRoleError as zs, type SearchClientsForRoleResponses as zt, type SearchClientsForRoleResponse as zu, type UnassignRoleFromClientData as zv, type UnassignRoleFromClientErrors as zw, type UnassignRoleFromClientError as zx, type UnassignRoleFromClientResponses as zy, type UnassignRoleFromClientResponse as zz };
|