@camunda8/orchestration-cluster-api 10.0.0-alpha.11 → 10.0.0-alpha.13
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 +16 -0
- package/dist/{chunk-KNIFT3MW.js → chunk-DXAJ2KS4.js} +133 -7
- package/dist/chunk-DXAJ2KS4.js.map +1 -0
- package/dist/fp/index.cjs +250 -16
- 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-BvcNReIq.d.cts → index-D-gpJ9NR.d.cts} +248 -13
- package/dist/{index-EZJB3buU.d.ts → index-DVAV_u0f.d.ts} +248 -13
- package/dist/index.cjs +259 -18
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +10 -3
- package/dist/index.js.map +1 -1
- package/dist/{zod.gen-OZQ2MXOA.js → zod.gen-E45JJSLK.js} +119 -11
- package/dist/zod.gen-E45JJSLK.js.map +1 -0
- package/package.json +11 -10
- package/dist/chunk-KNIFT3MW.js.map +0 -1
- package/dist/zod.gen-OZQ2MXOA.js.map +0 -1
|
@@ -1292,9 +1292,9 @@ type AgentInstanceHistoryItemResult = {
|
|
|
1292
1292
|
*/
|
|
1293
1293
|
toolCalls: Array<AgentInstanceToolCall>;
|
|
1294
1294
|
/**
|
|
1295
|
-
* Per-call token and latency metrics.
|
|
1295
|
+
* Per-call token and latency metrics. Zero-valued when not available.
|
|
1296
1296
|
*/
|
|
1297
|
-
metrics: AgentInstanceHistoryItemMetrics
|
|
1297
|
+
metrics: AgentInstanceHistoryItemMetrics;
|
|
1298
1298
|
/**
|
|
1299
1299
|
* The commit status of this history item.
|
|
1300
1300
|
*/
|
|
@@ -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
|
*/
|
|
@@ -4466,6 +4481,10 @@ type ElementInstanceWaitStateResult = {
|
|
|
4466
4481
|
* The tenant ID of the element instance.
|
|
4467
4482
|
*/
|
|
4468
4483
|
tenantId: TenantId;
|
|
4484
|
+
/**
|
|
4485
|
+
* The BPMN process ID of the process definition associated to this element instance.
|
|
4486
|
+
*/
|
|
4487
|
+
bpmnProcessId: string;
|
|
4469
4488
|
/**
|
|
4470
4489
|
* Wait-state-specific details, resolved by waitStateType.
|
|
4471
4490
|
*/
|
|
@@ -4478,13 +4497,25 @@ type WaitStateDetails = ({
|
|
|
4478
4497
|
waitStateType: 'JOB';
|
|
4479
4498
|
} & JobWaitStateDetails) | ({
|
|
4480
4499
|
waitStateType: 'MESSAGE';
|
|
4481
|
-
} & MessageWaitStateDetails)
|
|
4500
|
+
} & MessageWaitStateDetails) | ({
|
|
4501
|
+
waitStateType: 'USER_TASK';
|
|
4502
|
+
} & UserTaskWaitStateDetails) | ({
|
|
4503
|
+
waitStateType: 'TIMER';
|
|
4504
|
+
} & TimerWaitStateDetails) | ({
|
|
4505
|
+
waitStateType: 'SIGNAL';
|
|
4506
|
+
} & SignalWaitStateDetails) | ({
|
|
4507
|
+
waitStateType: 'CONDITION';
|
|
4508
|
+
} & ConditionWaitStateDetails);
|
|
4482
4509
|
/**
|
|
4483
4510
|
* The type of waiting state an element instance is in.
|
|
4484
4511
|
*/
|
|
4485
4512
|
declare const WaitStateTypeEnum: {
|
|
4486
4513
|
readonly JOB: "JOB";
|
|
4487
4514
|
readonly MESSAGE: "MESSAGE";
|
|
4515
|
+
readonly USER_TASK: "USER_TASK";
|
|
4516
|
+
readonly TIMER: "TIMER";
|
|
4517
|
+
readonly SIGNAL: "SIGNAL";
|
|
4518
|
+
readonly CONDITION: "CONDITION";
|
|
4488
4519
|
};
|
|
4489
4520
|
type WaitStateTypeEnum = (typeof WaitStateTypeEnum)[keyof typeof WaitStateTypeEnum];
|
|
4490
4521
|
/**
|
|
@@ -4536,6 +4567,58 @@ type MessageWaitStateDetails = BaseWaitStateDetails & {
|
|
|
4536
4567
|
*/
|
|
4537
4568
|
waitStateType: string;
|
|
4538
4569
|
};
|
|
4570
|
+
type UserTaskWaitStateDetails = BaseWaitStateDetails & {
|
|
4571
|
+
/**
|
|
4572
|
+
* The key of the user task.
|
|
4573
|
+
*/
|
|
4574
|
+
taskKey: UserTaskKey;
|
|
4575
|
+
/**
|
|
4576
|
+
* The due date of the user task, if set.
|
|
4577
|
+
*/
|
|
4578
|
+
dueDate: string | null;
|
|
4579
|
+
/**
|
|
4580
|
+
* The wait state type discriminator.
|
|
4581
|
+
*/
|
|
4582
|
+
waitStateType: string;
|
|
4583
|
+
};
|
|
4584
|
+
type TimerWaitStateDetails = BaseWaitStateDetails & {
|
|
4585
|
+
/**
|
|
4586
|
+
* When the timer is due, as a UNIX epoch timestamp in milliseconds.
|
|
4587
|
+
*/
|
|
4588
|
+
dueDate: number | null;
|
|
4589
|
+
/**
|
|
4590
|
+
* The number of remaining timer repetitions (-1 for infinite, 0 for non-repeating).
|
|
4591
|
+
*/
|
|
4592
|
+
repetitions: number | null;
|
|
4593
|
+
/**
|
|
4594
|
+
* The wait state type discriminator.
|
|
4595
|
+
*/
|
|
4596
|
+
waitStateType: string;
|
|
4597
|
+
};
|
|
4598
|
+
type SignalWaitStateDetails = BaseWaitStateDetails & {
|
|
4599
|
+
/**
|
|
4600
|
+
* The name of the signal being awaited.
|
|
4601
|
+
*/
|
|
4602
|
+
signalName: string;
|
|
4603
|
+
/**
|
|
4604
|
+
* The wait state type discriminator.
|
|
4605
|
+
*/
|
|
4606
|
+
waitStateType: string;
|
|
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
|
+
};
|
|
4539
4622
|
type AdHocSubProcessActivateActivityReference = {
|
|
4540
4623
|
/**
|
|
4541
4624
|
* The ID of the element that should be activated.
|
|
@@ -6334,6 +6417,25 @@ type JobChangeset = {
|
|
|
6334
6417
|
* The new timeout for the job in milliseconds.
|
|
6335
6418
|
*/
|
|
6336
6419
|
timeout?: number | null;
|
|
6420
|
+
/**
|
|
6421
|
+
* The new priority for the job. Higher values indicate higher priority.
|
|
6422
|
+
*/
|
|
6423
|
+
priority?: number | null;
|
|
6424
|
+
};
|
|
6425
|
+
/**
|
|
6426
|
+
* 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.
|
|
6427
|
+
*
|
|
6428
|
+
*/
|
|
6429
|
+
type JobBatchUpdateRequest = {
|
|
6430
|
+
/**
|
|
6431
|
+
* The job filter. At least one dimension must be set.
|
|
6432
|
+
*/
|
|
6433
|
+
filter: JobFilter;
|
|
6434
|
+
/**
|
|
6435
|
+
* The fields to update. At least one field must be non-null.
|
|
6436
|
+
*/
|
|
6437
|
+
changeset: JobChangeset;
|
|
6438
|
+
operationReference?: OperationReference;
|
|
6337
6439
|
};
|
|
6338
6440
|
/**
|
|
6339
6441
|
* 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.
|
|
@@ -6354,6 +6456,7 @@ declare const JobStateEnum: {
|
|
|
6354
6456
|
readonly ERROR_THROWN: "ERROR_THROWN";
|
|
6355
6457
|
readonly FAILED: "FAILED";
|
|
6356
6458
|
readonly MIGRATED: "MIGRATED";
|
|
6459
|
+
readonly PRIORITY_UPDATED: "PRIORITY_UPDATED";
|
|
6357
6460
|
readonly RETRIES_UPDATED: "RETRIES_UPDATED";
|
|
6358
6461
|
readonly TIMED_OUT: "TIMED_OUT";
|
|
6359
6462
|
};
|
|
@@ -7064,6 +7167,15 @@ type MessageCorrelationRequest = {
|
|
|
7064
7167
|
* the tenant for which the message is published
|
|
7065
7168
|
*/
|
|
7066
7169
|
tenantId?: TenantId;
|
|
7170
|
+
/**
|
|
7171
|
+
* An optional business id used to enforce uniqueness of the process instance that a
|
|
7172
|
+
* message start event would create. If provided and uniqueness enforcement is enabled,
|
|
7173
|
+
* the engine rejects starting a new process instance when another root process instance
|
|
7174
|
+
* with the same business id is already active for the same process definition. It has no
|
|
7175
|
+
* effect when the message correlates to a catch, boundary, or intermediate event.
|
|
7176
|
+
*
|
|
7177
|
+
*/
|
|
7178
|
+
businessId?: BusinessId;
|
|
7067
7179
|
};
|
|
7068
7180
|
/**
|
|
7069
7181
|
* The message key of the correlated message, as well as the first process instance key it
|
|
@@ -7113,6 +7225,15 @@ type MessagePublicationRequest = {
|
|
|
7113
7225
|
* The tenant of the message sender.
|
|
7114
7226
|
*/
|
|
7115
7227
|
tenantId?: TenantId;
|
|
7228
|
+
/**
|
|
7229
|
+
* An optional business id used to enforce uniqueness of the process instance that a
|
|
7230
|
+
* message start event would create. If provided and uniqueness enforcement is enabled,
|
|
7231
|
+
* the engine rejects starting a new process instance when another root process instance
|
|
7232
|
+
* with the same business id is already active for the same process definition. It has no
|
|
7233
|
+
* effect when the message correlates to a catch, boundary, or intermediate event.
|
|
7234
|
+
*
|
|
7235
|
+
*/
|
|
7236
|
+
businessId?: BusinessId;
|
|
7116
7237
|
};
|
|
7117
7238
|
/**
|
|
7118
7239
|
* The message key of the published message.
|
|
@@ -7310,6 +7431,16 @@ type CorrelatedMessageSubscriptionSearchQueryResult = SearchQueryResponse & {
|
|
|
7310
7431
|
items: Array<CorrelatedMessageSubscriptionResult>;
|
|
7311
7432
|
};
|
|
7312
7433
|
type CorrelatedMessageSubscriptionResult = {
|
|
7434
|
+
/**
|
|
7435
|
+
* The business id associated with this correlated message subscription. For a message
|
|
7436
|
+
* start event correlation, it is the business id carried by the correlating message that
|
|
7437
|
+
* was stamped on the started process instance to enforce its uniqueness. For a catch,
|
|
7438
|
+
* boundary, or intermediate event correlation, it is the business id of the subscribing
|
|
7439
|
+
* process instance, captured when the subscription was opened. It is `null` when the
|
|
7440
|
+
* relevant process instance has no business id.
|
|
7441
|
+
*
|
|
7442
|
+
*/
|
|
7443
|
+
businessId: BusinessId | null;
|
|
7313
7444
|
/**
|
|
7314
7445
|
* The correlation key of the message.
|
|
7315
7446
|
*/
|
|
@@ -7382,11 +7513,16 @@ type CorrelatedMessageSubscriptionSearchQuerySortRequest = {
|
|
|
7382
7513
|
/**
|
|
7383
7514
|
* The field to sort by.
|
|
7384
7515
|
*/
|
|
7385
|
-
field: 'correlationKey' | 'correlationTime' | 'elementId' | 'elementInstanceKey' | 'messageKey' | 'messageName' | 'partitionId' | 'processDefinitionId' | 'processDefinitionKey' | 'processInstanceKey' | 'subscriptionKey' | 'tenantId';
|
|
7516
|
+
field: 'businessId' | 'correlationKey' | 'correlationTime' | 'elementId' | 'elementInstanceKey' | 'messageKey' | 'messageName' | 'partitionId' | 'processDefinitionId' | 'processDefinitionKey' | 'processInstanceKey' | 'subscriptionKey' | 'tenantId';
|
|
7386
7517
|
order?: SortOrderEnum;
|
|
7387
7518
|
};
|
|
7388
7519
|
/**
|
|
7389
7520
|
* The state of message subscription.
|
|
7521
|
+
*
|
|
7522
|
+
* **Note for `START_EVENT` subscriptions:** The `CORRELATED` and `MIGRATED` states are not
|
|
7523
|
+
* tracked for these subscriptions. To query correlation history for process start events,
|
|
7524
|
+
* use the `/correlated-message-subscriptions/search` endpoint.
|
|
7525
|
+
*
|
|
7390
7526
|
*/
|
|
7391
7527
|
declare const MessageSubscriptionStateEnum: {
|
|
7392
7528
|
readonly CORRELATED: "CORRELATED";
|
|
@@ -7412,6 +7548,14 @@ type MessageSubscriptionTypeEnum = (typeof MessageSubscriptionTypeEnum)[keyof ty
|
|
|
7412
7548
|
* Correlated message subscriptions search filter.
|
|
7413
7549
|
*/
|
|
7414
7550
|
type CorrelatedMessageSubscriptionFilter = {
|
|
7551
|
+
/**
|
|
7552
|
+
* Filter by the business id stored on the correlated message subscription — for message
|
|
7553
|
+
* start event correlations the correlating message's business id, and for catch, boundary,
|
|
7554
|
+
* or intermediate event correlations the subscribing process instance's business id.
|
|
7555
|
+
* Supports advanced string filtering, including `$like` with `*`/`?` wildcards.
|
|
7556
|
+
*
|
|
7557
|
+
*/
|
|
7558
|
+
businessId?: StringFilterProperty;
|
|
7415
7559
|
/**
|
|
7416
7560
|
* The correlation key of the message.
|
|
7417
7561
|
*/
|
|
@@ -9317,7 +9461,7 @@ type UserTaskSearchQuerySortRequest = {
|
|
|
9317
9461
|
/**
|
|
9318
9462
|
* The field to sort by.
|
|
9319
9463
|
*/
|
|
9320
|
-
field: 'creationDate' | 'completionDate' | 'followUpDate' | 'dueDate' | 'priority' | 'name';
|
|
9464
|
+
field: 'creationDate' | 'completionDate' | 'followUpDate' | 'dueDate' | 'priority' | 'name' | 'businessId';
|
|
9321
9465
|
order?: SortOrderEnum;
|
|
9322
9466
|
};
|
|
9323
9467
|
/**
|
|
@@ -9345,6 +9489,11 @@ type UserTaskFilter = {
|
|
|
9345
9489
|
* The assignee of the user task.
|
|
9346
9490
|
*/
|
|
9347
9491
|
assignee?: StringFilterProperty;
|
|
9492
|
+
/**
|
|
9493
|
+
* 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.
|
|
9494
|
+
*
|
|
9495
|
+
*/
|
|
9496
|
+
businessId?: StringFilterProperty;
|
|
9348
9497
|
/**
|
|
9349
9498
|
* The priority of the user task.
|
|
9350
9499
|
*/
|
|
@@ -9515,6 +9664,13 @@ type UserTaskResult = {
|
|
|
9515
9664
|
*
|
|
9516
9665
|
*/
|
|
9517
9666
|
rootProcessInstanceKey: ProcessInstanceKey | null;
|
|
9667
|
+
/**
|
|
9668
|
+
* The business ID of the owning process instance, inherited when the user task was
|
|
9669
|
+
* created. This is `null` for user tasks created before version 8.10, and for user tasks
|
|
9670
|
+
* whose owning process instance has no business ID.
|
|
9671
|
+
*
|
|
9672
|
+
*/
|
|
9673
|
+
businessId: BusinessId | null;
|
|
9518
9674
|
/**
|
|
9519
9675
|
* The key of the form.
|
|
9520
9676
|
*/
|
|
@@ -13753,6 +13909,39 @@ type FailJobResponses = {
|
|
|
13753
13909
|
204: void;
|
|
13754
13910
|
};
|
|
13755
13911
|
type FailJobResponse = FailJobResponses[keyof FailJobResponses];
|
|
13912
|
+
type UpdateJobsBatchOperationData = {
|
|
13913
|
+
body: JobBatchUpdateRequest;
|
|
13914
|
+
path?: never;
|
|
13915
|
+
query?: never;
|
|
13916
|
+
url: '/jobs/batch-update';
|
|
13917
|
+
};
|
|
13918
|
+
type UpdateJobsBatchOperationErrors = {
|
|
13919
|
+
/**
|
|
13920
|
+
* The job batch update operation failed. More details are provided in the response body.
|
|
13921
|
+
*
|
|
13922
|
+
*/
|
|
13923
|
+
400: ProblemDetail;
|
|
13924
|
+
/**
|
|
13925
|
+
* The request lacks valid authentication credentials.
|
|
13926
|
+
*/
|
|
13927
|
+
401: ProblemDetail;
|
|
13928
|
+
/**
|
|
13929
|
+
* Forbidden. The request is not allowed.
|
|
13930
|
+
*/
|
|
13931
|
+
403: ProblemDetail;
|
|
13932
|
+
/**
|
|
13933
|
+
* An internal error occurred while processing the request.
|
|
13934
|
+
*/
|
|
13935
|
+
500: ProblemDetail;
|
|
13936
|
+
};
|
|
13937
|
+
type UpdateJobsBatchOperationError = UpdateJobsBatchOperationErrors[keyof UpdateJobsBatchOperationErrors];
|
|
13938
|
+
type UpdateJobsBatchOperationResponses = {
|
|
13939
|
+
/**
|
|
13940
|
+
* The batch operation was created.
|
|
13941
|
+
*/
|
|
13942
|
+
200: BatchOperationCreatedResult;
|
|
13943
|
+
};
|
|
13944
|
+
type UpdateJobsBatchOperationResponse = UpdateJobsBatchOperationResponses[keyof UpdateJobsBatchOperationResponses];
|
|
13756
13945
|
type GetGlobalJobStatisticsData = {
|
|
13757
13946
|
body?: never;
|
|
13758
13947
|
path?: never;
|
|
@@ -18430,7 +18619,8 @@ declare const getDecisionRequirementsXml: <ThrowOnError extends boolean = true>(
|
|
|
18430
18619
|
/**
|
|
18431
18620
|
* Deploy resources
|
|
18432
18621
|
*
|
|
18433
|
-
* Deploys one or more resources
|
|
18622
|
+
* Deploys one or more resources, including BPMN processes, DMN decision models, forms, RPA resources, and generic files.
|
|
18623
|
+
* A deployment can contain any file type. Files that are not interpreted as BPMN, DMN, form, or RPA resources are stored as deployable generic resources in the engine.
|
|
18434
18624
|
* This is an atomic call, i.e. either all resources are deployed or none of them are.
|
|
18435
18625
|
*
|
|
18436
18626
|
*/
|
|
@@ -18785,6 +18975,13 @@ declare const throwJobError: <ThrowOnError extends boolean = true>(options: Opti
|
|
|
18785
18975
|
*
|
|
18786
18976
|
*/
|
|
18787
18977
|
declare const failJob: <ThrowOnError extends boolean = true>(options: Options<FailJobData, ThrowOnError>) => RequestResult<FailJobResponses, FailJobErrors, ThrowOnError, "fields">;
|
|
18978
|
+
/**
|
|
18979
|
+
* Update jobs (batch)
|
|
18980
|
+
*
|
|
18981
|
+
* 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}).
|
|
18982
|
+
*
|
|
18983
|
+
*/
|
|
18984
|
+
declare const updateJobsBatchOperation: <ThrowOnError extends boolean = true>(options: Options<UpdateJobsBatchOperationData, ThrowOnError>) => RequestResult<UpdateJobsBatchOperationResponses, UpdateJobsBatchOperationErrors, ThrowOnError, "fields">;
|
|
18788
18985
|
/**
|
|
18789
18986
|
* Global job statistics
|
|
18790
18987
|
*
|
|
@@ -22300,6 +22497,11 @@ type updateJobPathParam_jobKey = (NonNullable<updateJobOptions> extends {
|
|
|
22300
22497
|
type updateJobInput = updateJobBody & {
|
|
22301
22498
|
jobKey: updateJobPathParam_jobKey;
|
|
22302
22499
|
};
|
|
22500
|
+
type updateJobsBatchOperationOptions = Parameters<typeof updateJobsBatchOperation>[0];
|
|
22501
|
+
type updateJobsBatchOperationBody = (NonNullable<updateJobsBatchOperationOptions> extends {
|
|
22502
|
+
body?: infer B;
|
|
22503
|
+
} ? B : never);
|
|
22504
|
+
type updateJobsBatchOperationInput = updateJobsBatchOperationBody;
|
|
22303
22505
|
type updateMappingRuleOptions = Parameters<typeof updateMappingRule>[0];
|
|
22304
22506
|
type updateMappingRuleBody = (NonNullable<updateMappingRuleOptions> extends {
|
|
22305
22507
|
body?: infer B;
|
|
@@ -23112,7 +23314,8 @@ declare class CamundaClient {
|
|
|
23112
23314
|
/**
|
|
23113
23315
|
* Deploy resources
|
|
23114
23316
|
*
|
|
23115
|
-
* Deploys one or more resources
|
|
23317
|
+
* Deploys one or more resources, including BPMN processes, DMN decision models, forms, RPA resources, and generic files.
|
|
23318
|
+
* A deployment can contain any file type. Files that are not interpreted as BPMN, DMN, form, or RPA resources are stored as deployable generic resources in the engine.
|
|
23116
23319
|
* This is an atomic call, i.e. either all resources are deployed or none of them are.
|
|
23117
23320
|
*
|
|
23118
23321
|
*
|
|
@@ -25971,10 +26174,14 @@ declare class CamundaClient {
|
|
|
25971
26174
|
*
|
|
25972
26175
|
* for (const waitState of result.items ?? []) {
|
|
25973
26176
|
* const { details } = waitState;
|
|
25974
|
-
*
|
|
25975
|
-
*
|
|
25976
|
-
*
|
|
25977
|
-
*
|
|
26177
|
+
* let description: string;
|
|
26178
|
+
* if (details.waitStateType === 'JOB') {
|
|
26179
|
+
* description = `waiting on job '${details.jobType}'`;
|
|
26180
|
+
* } else if (details.waitStateType === 'MESSAGE') {
|
|
26181
|
+
* description = `waiting for message '${details.messageName}'`;
|
|
26182
|
+
* } else {
|
|
26183
|
+
* description = `waiting (${details.waitStateType})`;
|
|
26184
|
+
* }
|
|
25978
26185
|
* console.log(`${waitState.elementId}: ${description}`);
|
|
25979
26186
|
* }
|
|
25980
26187
|
* }
|
|
@@ -27233,6 +27440,34 @@ declare class CamundaClient {
|
|
|
27233
27440
|
* @tags Job
|
|
27234
27441
|
*/
|
|
27235
27442
|
updateJob(input: updateJobInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof updateJob>>;
|
|
27443
|
+
/**
|
|
27444
|
+
* Update jobs (batch)
|
|
27445
|
+
*
|
|
27446
|
+
* 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}).
|
|
27447
|
+
*
|
|
27448
|
+
*
|
|
27449
|
+
* @example Update jobs in batch
|
|
27450
|
+
* ```ts
|
|
27451
|
+
* async function updateJobsBatchOperationExample() {
|
|
27452
|
+
* const camunda = createCamundaClient();
|
|
27453
|
+
*
|
|
27454
|
+
* const result = await camunda.updateJobsBatchOperation({
|
|
27455
|
+
* filter: {
|
|
27456
|
+
* type: 'payment-processing',
|
|
27457
|
+
* hasFailedWithRetriesLeft: false,
|
|
27458
|
+
* },
|
|
27459
|
+
* changeset: {
|
|
27460
|
+
* retries: 3,
|
|
27461
|
+
* },
|
|
27462
|
+
* });
|
|
27463
|
+
*
|
|
27464
|
+
* console.log(`Batch operation key: ${result.batchOperationKey}`);
|
|
27465
|
+
* }
|
|
27466
|
+
* ```
|
|
27467
|
+
* @operationId updateJobsBatchOperation
|
|
27468
|
+
* @tags Job
|
|
27469
|
+
*/
|
|
27470
|
+
updateJobsBatchOperation(input: updateJobsBatchOperationInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof updateJobsBatchOperation>>;
|
|
27236
27471
|
/**
|
|
27237
27472
|
* Update mapping rule
|
|
27238
27473
|
*
|
|
@@ -27618,4 +27853,4 @@ declare function eventuallyTE<E, A>(thunk: () => Promise<A>, predicate: (a: A) =
|
|
|
27618
27853
|
waitUpToMs: number;
|
|
27619
27854
|
}): TaskEither<E, A>;
|
|
27620
27855
|
|
|
27621
|
-
export { type assignUserTaskInput as $, type AnyVariableSchema as A, type AssignClientToTenantResponse as A$, type AssignRoleToUserResponses as A0, type AssignRoleToUserResponse as A1, type CreateAdminUserData as A2, type CreateAdminUserErrors as A3, type CreateAdminUserError as A4, type CreateAdminUserResponses as A5, type CreateAdminUserResponse as A6, type BroadcastSignalData as A7, type BroadcastSignalErrors as A8, type BroadcastSignalError as A9, type DeleteTenantData as AA, type DeleteTenantErrors as AB, type DeleteTenantError as AC, type DeleteTenantResponses as AD, type DeleteTenantResponse as AE, type GetTenantData as AF, type GetTenantErrors as AG, type GetTenantError as AH, type GetTenantResponses as AI, type GetTenantResponse as AJ, type UpdateTenantData as AK, type UpdateTenantErrors as AL, type UpdateTenantError as AM, type UpdateTenantResponses as AN, type UpdateTenantResponse as AO, type SearchClientsForTenantData as AP, type SearchClientsForTenantResponses as AQ, type SearchClientsForTenantResponse as AR, type UnassignClientFromTenantData as AS, type UnassignClientFromTenantErrors as AT, type UnassignClientFromTenantError as AU, type UnassignClientFromTenantResponses as AV, type UnassignClientFromTenantResponse as AW, type AssignClientToTenantData as AX, type AssignClientToTenantErrors as AY, type AssignClientToTenantError as AZ, type AssignClientToTenantResponses as A_, type BroadcastSignalResponses as Aa, type BroadcastSignalResponse as Ab, type GetStatusData as Ac, type GetStatusErrors as Ad, type GetStatusResponses as Ae, type GetStatusResponse as Af, type GetUsageMetricsData as Ag, type GetUsageMetricsErrors as Ah, type GetUsageMetricsError as Ai, type GetUsageMetricsResponses as Aj, type GetUsageMetricsResponse as Ak, type GetSystemConfigurationData as Al, type GetSystemConfigurationErrors as Am, type GetSystemConfigurationError as An, type GetSystemConfigurationResponses as Ao, type GetSystemConfigurationResponse as Ap, type CreateTenantData as Aq, type CreateTenantErrors as Ar, type CreateTenantError as As, type CreateTenantResponses as At, type CreateTenantResponse as Au, type SearchTenantsData as Av, type SearchTenantsErrors as Aw, type SearchTenantsError as Ax, type SearchTenantsResponses as Ay, type SearchTenantsResponse as Az, type BackpressureSeverity as B, type SearchUsersErrors as B$, type SearchGroupIdsForTenantData as B0, type SearchGroupIdsForTenantResponses as B1, type SearchGroupIdsForTenantResponse as B2, type UnassignGroupFromTenantData as B3, type UnassignGroupFromTenantErrors as B4, type UnassignGroupFromTenantError as B5, type UnassignGroupFromTenantResponses as B6, type UnassignGroupFromTenantResponse as B7, type AssignGroupToTenantData as B8, type AssignGroupToTenantErrors as B9, type AssignRoleToTenantError as BA, type AssignRoleToTenantResponses as BB, type AssignRoleToTenantResponse as BC, type SearchUsersForTenantData as BD, type SearchUsersForTenantResponses as BE, type SearchUsersForTenantResponse as BF, type UnassignUserFromTenantData as BG, type UnassignUserFromTenantErrors as BH, type UnassignUserFromTenantError as BI, type UnassignUserFromTenantResponses as BJ, type UnassignUserFromTenantResponse as BK, type AssignUserToTenantData as BL, type AssignUserToTenantErrors as BM, type AssignUserToTenantError as BN, type AssignUserToTenantResponses as BO, type AssignUserToTenantResponse as BP, type GetTopologyData as BQ, type GetTopologyErrors as BR, type GetTopologyError as BS, type GetTopologyResponses as BT, type GetTopologyResponse as BU, type CreateUserData as BV, type CreateUserErrors as BW, type CreateUserError as BX, type CreateUserResponses as BY, type CreateUserResponse as BZ, type SearchUsersData as B_, type AssignGroupToTenantError as Ba, type AssignGroupToTenantResponses as Bb, type AssignGroupToTenantResponse as Bc, type SearchMappingRulesForTenantData as Bd, type SearchMappingRulesForTenantResponses as Be, type SearchMappingRulesForTenantResponse as Bf, type UnassignMappingRuleFromTenantData as Bg, type UnassignMappingRuleFromTenantErrors as Bh, type UnassignMappingRuleFromTenantError as Bi, type UnassignMappingRuleFromTenantResponses as Bj, type UnassignMappingRuleFromTenantResponse as Bk, type AssignMappingRuleToTenantData as Bl, type AssignMappingRuleToTenantErrors as Bm, type AssignMappingRuleToTenantError as Bn, type AssignMappingRuleToTenantResponses as Bo, type AssignMappingRuleToTenantResponse as Bp, type SearchRolesForTenantData as Bq, type SearchRolesForTenantResponses as Br, type SearchRolesForTenantResponse as Bs, type UnassignRoleFromTenantData as Bt, type UnassignRoleFromTenantErrors as Bu, type UnassignRoleFromTenantError as Bv, type UnassignRoleFromTenantResponses as Bw, type UnassignRoleFromTenantResponse as Bx, type AssignRoleToTenantData as By, type AssignRoleToTenantErrors as Bz, CamundaClient as C, type SearchUserTaskVariablesData as C$, type SearchUsersError as C0, type SearchUsersResponses as C1, type SearchUsersResponse as C2, type DeleteUserData as C3, type DeleteUserErrors as C4, type DeleteUserError as C5, type DeleteUserResponses as C6, type DeleteUserResponse as C7, type GetUserData as C8, type GetUserErrors as C9, type UnassignUserTaskResponses as CA, type UnassignUserTaskResponse as CB, type AssignUserTaskData as CC, type AssignUserTaskErrors as CD, type AssignUserTaskError as CE, type AssignUserTaskResponses as CF, type AssignUserTaskResponse as CG, type SearchUserTaskAuditLogsData as CH, type SearchUserTaskAuditLogsErrors as CI, type SearchUserTaskAuditLogsError as CJ, type SearchUserTaskAuditLogsResponses as CK, type SearchUserTaskAuditLogsResponse as CL, type CompleteUserTaskData as CM, type CompleteUserTaskErrors as CN, type CompleteUserTaskError as CO, type CompleteUserTaskResponses as CP, type CompleteUserTaskResponse as CQ, type SearchUserTaskEffectiveVariablesData as CR, type SearchUserTaskEffectiveVariablesErrors as CS, type SearchUserTaskEffectiveVariablesError as CT, type SearchUserTaskEffectiveVariablesResponses as CU, type SearchUserTaskEffectiveVariablesResponse as CV, type GetUserTaskFormData as CW, type GetUserTaskFormErrors as CX, type GetUserTaskFormError as CY, type GetUserTaskFormResponses as CZ, type GetUserTaskFormResponse as C_, type GetUserError as Ca, type GetUserResponses as Cb, type GetUserResponse as Cc, type UpdateUserData as Cd, type UpdateUserErrors as Ce, type UpdateUserError as Cf, type UpdateUserResponses as Cg, type UpdateUserResponse as Ch, type SearchUserTasksData as Ci, type SearchUserTasksErrors as Cj, type SearchUserTasksError as Ck, type SearchUserTasksResponses as Cl, type SearchUserTasksResponse as Cm, type GetUserTaskData as Cn, type GetUserTaskErrors as Co, type GetUserTaskError as Cp, type GetUserTaskResponses as Cq, type GetUserTaskResponse as Cr, type UpdateUserTaskData as Cs, type UpdateUserTaskErrors as Ct, type UpdateUserTaskError as Cu, type UpdateUserTaskResponses as Cv, type UpdateUserTaskResponse as Cw, type UnassignUserTaskData as Cx, type UnassignUserTaskErrors as Cy, type UnassignUserTaskError as Cz, VariableScopeCollisionError as D, type SearchUserTaskVariablesErrors as D0, type SearchUserTaskVariablesError as D1, type SearchUserTaskVariablesResponses as D2, type SearchUserTaskVariablesResponse as D3, type SearchVariablesData as D4, type SearchVariablesErrors as D5, type SearchVariablesError as D6, type SearchVariablesResponses as D7, type SearchVariablesResponse as D8, type GetVariableData as D9, type GetVariableErrors as Da, type GetVariableError as Db, type GetVariableResponses as Dc, type GetVariableResponse as Dd, assertConstraint as De, classifyDomainError as Df, type DomainError as Dg, type DomainErrorTag as Dh, eventuallyTE as Di, type FnKeys as Dj, type Fpify as Dk, foldDomainError as Dl, type HttpError as Dm, type Left as Dn, type Right as Do, retryTE as Dp, type TaskEither as Dq, withTimeoutTE as Dr, 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 GlobalTaskListenerSearchQueryResult 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 ExpressionEvaluationResult as hA, type ExpressionEvaluationWarningItem as hB, type LikeFilter as hC, type BasicStringFilter as hD, type AdvancedStringFilter as hE, type BasicStringFilterProperty as hF, type StringFilterProperty as hG, type AdvancedIntegerFilter as hH, type IntegerFilterProperty as hI, type AdvancedDateTimeFilter as hJ, type DateTimeFilterProperty as hK, type FormResult as hL, GlobalListenerSourceEnum as hM, GlobalTaskListenerEventTypeEnum as hN, type GlobalListenerBase as hO, type GlobalTaskListenerBase as hP, type GlobalTaskListenerEventTypes as hQ, type CreateGlobalTaskListenerRequest as hR, type UpdateGlobalTaskListenerRequest as hS, type GlobalTaskListenerResult as hT, type GlobalTaskListenerSearchQueryRequest as hU, type GlobalTaskListenerSearchQuerySortRequest as hV, type GlobalTaskListenerSearchQueryFilterRequest as hW, type GlobalListenerSourceFilterProperty as hX, type AdvancedGlobalListenerSourceFilter as hY, type GlobalTaskListenerEventTypeFilterProperty as hZ, type AdvancedGlobalTaskListenerEventTypeFilter 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 AdHocSubProcessActivateActivityReference as hy, type ExpressionEvaluationRequest as hz, isLeft as i, type StatusMetric as i$, type GroupCreateRequest as i0, type GroupCreateResult as i1, type GroupUpdateRequest as i2, type GroupUpdateResult as i3, type GroupResult as i4, type GroupSearchQuerySortRequest as i5, type GroupSearchQueryRequest as i6, type GroupFilter as i7, type GroupSearchQueryResult as i8, type GroupUserResult as i9, type IterationId as iA, type ElementIdFilterProperty as iB, type AdvancedElementIdFilter as iC, type ProcessDefinitionIdFilterProperty as iD, type AdvancedProcessDefinitionIdFilter as iE, type IncidentSearchQuery as iF, type IncidentFilter as iG, type IncidentErrorTypeFilterProperty as iH, type AdvancedIncidentErrorTypeFilter as iI, IncidentErrorTypeEnum as iJ, type IncidentStateFilterProperty as iK, type AdvancedIncidentStateFilter as iL, IncidentStateEnum as iM, type IncidentSearchQuerySortRequest as iN, type IncidentSearchQueryResult as iO, type IncidentResult as iP, type IncidentResolutionRequest as iQ, type IncidentProcessInstanceStatisticsByErrorQuery as iR, type IncidentProcessInstanceStatisticsByErrorQueryResult as iS, type IncidentProcessInstanceStatisticsByErrorResult as iT, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as iU, type IncidentProcessInstanceStatisticsByDefinitionQuery as iV, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as iW, type IncidentProcessInstanceStatisticsByDefinitionResult as iX, type IncidentProcessInstanceStatisticsByDefinitionFilter as iY, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as iZ, type GlobalJobStatisticsQueryResult as i_, type GroupUserSearchResult as ia, type GroupUserSearchQueryRequest as ib, type GroupUserSearchQuerySortRequest as ic, type GroupClientResult as id, type GroupClientSearchResult as ie, type GroupClientSearchQueryRequest as ig, type GroupMappingRuleSearchResult as ih, type GroupRoleSearchResult as ii, type GroupClientSearchQuerySortRequest as ij, ProcessDefinitionId as ik, ElementId as il, FormId as im, DecisionDefinitionId as io, GlobalListenerId as ip, TenantId as iq, Username as ir, RoleId as is, GroupId as it, MappingRuleId as iu, ClientId as iv, ClusterVariableName as iw, Tag as ix, type TagSet as iy, BusinessId as iz, isSdkError as j, AgentHistoryItemKey as j$, type JobTypeStatisticsQuery as j0, type JobTypeStatisticsFilter as j1, type JobTypeStatisticsQueryResult as j2, type JobTypeStatisticsItem as j3, type JobWorkerStatisticsQuery as j4, type JobWorkerStatisticsFilter as j5, type JobWorkerStatisticsQueryResult as j6, type JobWorkerStatisticsItem as j7, type JobTimeSeriesStatisticsQuery as j8, type JobTimeSeriesStatisticsFilter as j9, JobStateEnum as jA, JobKindEnum as jB, JobListenerEventTypeEnum as jC, type JobKindFilterProperty as jD, type AdvancedJobKindFilter as jE, type JobListenerEventTypeFilterProperty as jF, type AdvancedJobListenerEventTypeFilter as jG, type JobStateFilterProperty as jH, type AdvancedJobStateFilter as jI, type LongKey as jJ, ProcessInstanceKey as jK, ProcessDefinitionKey as jL, ElementInstanceKey as jM, UserTaskKey as jN, FormKey as jO, VariableKey as jP, type ScopeKey as jQ, IncidentKey as jR, JobKey as jS, DecisionDefinitionKey as jT, DecisionEvaluationInstanceKey as jU, DecisionEvaluationKey as jV, DecisionRequirementsKey as jW, DecisionInstanceKey as jX, BatchOperationKey as jY, type OperationReference as jZ, AgentInstanceKey as j_, type JobTimeSeriesStatisticsQueryResult as ja, type JobTimeSeriesStatisticsItem as jb, type JobErrorStatisticsQuery as jc, type JobErrorStatisticsFilter as jd, type JobErrorStatisticsQueryResult as je, type JobErrorStatisticsItem as jf, type JobActivationRequest as jg, type JobActivationResult as jh, type ActivatedJobResult$1 as ji, type UserTaskProperties as jj, type JobSearchQuery as jk, type JobSearchQuerySortRequest as jl, type JobFilter as jm, type JobSearchQueryResult as jn, type JobSearchResult as jo, type JobFailRequest as jp, type JobErrorRequest$1 as jq, type JobCompletionRequest as jr, type JobResult as js, type JobResultUserTask as jt, type JobResultCorrections as ju, type JobResultAdHocSubProcess as jv, type JobResultActivateElement as jw, type JobUpdateRequest as jx, type JobChangeset as jy, TenantFilterEnum as jz, type EnrichedActivatedJob as k, MessageSubscriptionKey as k$, AuditLogKey as k0, type ProcessDefinitionKeyFilterProperty as k1, type AdvancedProcessDefinitionKeyFilter as k2, type ProcessInstanceKeyFilterProperty as k3, type AdvancedProcessInstanceKeyFilter as k4, type ElementInstanceKeyFilterProperty as k5, type AdvancedElementInstanceKeyFilter as k6, type JobKeyFilterProperty as k7, type AdvancedJobKeyFilter as k8, type DecisionDefinitionKeyFilterProperty as k9, type MappingRuleSearchQueryResult as kA, type MappingRuleResult as kB, type MappingRuleSearchQuerySortRequest as kC, type MappingRuleSearchQueryRequest as kD, type MappingRuleFilter as kE, type MessageCorrelationRequest as kF, type MessageCorrelationResult as kG, type MessagePublicationRequest as kH, type MessagePublicationResult as kI, type MessageSubscriptionSearchQueryResult as kJ, type MessageSubscriptionResult as kK, type MessageSubscriptionSearchQuerySortRequest as kL, type MessageSubscriptionSearchQuery as kM, type MessageSubscriptionFilter as kN, type CorrelatedMessageSubscriptionSearchQueryResult as kO, type CorrelatedMessageSubscriptionResult as kP, type CorrelatedMessageSubscriptionSearchQuery as kQ, type CorrelatedMessageSubscriptionSearchQuerySortRequest as kR, MessageSubscriptionStateEnum as kS, MessageSubscriptionTypeEnum as kT, type CorrelatedMessageSubscriptionFilter as kU, type MessageSubscriptionTypeFilterProperty as kV, type AdvancedMessageSubscriptionTypeFilter as kW, type MessageSubscriptionStateFilterProperty as kX, type AdvancedMessageSubscriptionStateFilter as kY, type AdvancedMessageSubscriptionKeyFilter as kZ, type MessageSubscriptionKeyFilterProperty as k_, type AdvancedDecisionDefinitionKeyFilter as ka, type ScopeKeyFilterProperty as kb, type AdvancedScopeKeyFilter as kc, type VariableKeyFilterProperty as kd, type AdvancedVariableKeyFilter as ke, type DecisionEvaluationInstanceKeyFilterProperty as kf, type AdvancedDecisionEvaluationInstanceKeyFilter as kg, type AgentInstanceKeyFilterProperty as kh, type AdvancedAgentInstanceKeyFilter as ki, type AgentHistoryItemKeyFilterProperty as kj, type AdvancedAgentHistoryItemKeyFilter as kk, type AuditLogKeyFilterProperty as kl, type AdvancedAuditLogKeyFilter as km, type FormKeyFilterProperty as kn, type AdvancedFormKeyFilter as ko, type DecisionEvaluationKeyFilterProperty as kp, type AdvancedDecisionEvaluationKeyFilter as kq, type DecisionRequirementsKeyFilterProperty as kr, type AdvancedDecisionRequirementsKeyFilter as ks, type LicenseResponse as kt, type MappingRuleCreateUpdateRequest as ku, type MappingRuleCreateRequest as kv, type MappingRuleUpdateRequest as kw, type MappingRuleCreateUpdateResult as kx, type MappingRuleCreateResult as ky, type MappingRuleUpdateResult as kz, JobActionReceipt as l, type RoleCreateResult as l$, MessageKey as l0, type ProblemDetail as l1, type ProcessDefinitionSearchQuerySortRequest as l2, type ProcessDefinitionSearchQuery as l3, type ProcessDefinitionFilter as l4, type ProcessDefinitionSearchQueryResult as l5, type ProcessDefinitionResult as l6, type ProcessDefinitionElementStatisticsQuery as l7, type ProcessDefinitionElementStatisticsQueryResult as l8, type ProcessElementStatisticsResult as l9, type ProcessInstanceResult as lA, type CancelProcessInstanceRequest as lB, type DeleteProcessInstanceRequest as lC, type ProcessInstanceCallHierarchyEntry as lD, type ProcessInstanceSequenceFlowsQueryResult as lE, type ProcessInstanceSequenceFlowResult as lF, type ProcessInstanceElementStatisticsQueryResult as lG, type ProcessInstanceMigrationInstruction as lH, type MigrateProcessInstanceMappingInstruction as lI, type ProcessInstanceModificationInstruction as lJ, type ProcessInstanceModificationActivateInstruction as lK, type ModifyProcessInstanceVariableInstruction as lL, type ProcessInstanceModificationMoveInstruction as lM, type SourceElementInstruction as lN, type SourceElementIdInstruction as lO, type SourceElementInstanceKeyInstruction as lP, type AncestorScopeInstruction as lQ, type DirectAncestorKeyInstruction as lR, type InferredAncestorKeyInstruction as lS, type UseSourceParentKeyInstruction as lT, type ProcessInstanceModificationTerminateInstruction as lU, type ProcessInstanceModificationTerminateByIdInstruction as lV, type ProcessInstanceModificationTerminateByKeyInstruction as lW, ProcessInstanceStateEnum as lX, type AdvancedProcessInstanceStateFilter as lY, type ProcessInstanceStateFilterProperty as lZ, type RoleCreateRequest as l_, type ProcessDefinitionMessageSubscriptionStatisticsQuery as la, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as lb, type ProcessDefinitionMessageSubscriptionStatisticsResult as lc, type ProcessDefinitionInstanceStatisticsQuery as ld, type ProcessDefinitionInstanceStatisticsQueryResult as le, type ProcessDefinitionInstanceStatisticsResult as lf, type ProcessDefinitionInstanceStatisticsQuerySortRequest as lg, type ProcessDefinitionInstanceVersionStatisticsQuery as lh, type ProcessDefinitionInstanceVersionStatisticsFilter as li, type ProcessDefinitionInstanceVersionStatisticsQueryResult as lj, type ProcessDefinitionInstanceVersionStatisticsResult as lk, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as ll, type ProcessInstanceCreationInstruction as lm, type ProcessInstanceCreationInstructionById as ln, type ProcessInstanceCreationInstructionByKey as lo, type ProcessInstanceCreationStartInstruction as lp, type ProcessInstanceCreationRuntimeInstruction as lq, type ProcessInstanceCreationTerminateInstruction as lr, type CreateProcessInstanceResult as ls, type ProcessInstanceSearchQuerySortRequest as lt, type ProcessInstanceSearchQuery as lu, type BaseProcessInstanceFilterFields as lv, type ProcessDefinitionStatisticsFilter as lw, type ProcessInstanceFilterFields as lx, type ProcessInstanceFilter as ly, type ProcessInstanceSearchQueryResult as lz, JobWorker as m, type TenantMappingRuleSearchResult as m$, type RoleUpdateRequest as m0, type RoleUpdateResult as m1, type RoleResult as m2, type RoleSearchQuerySortRequest as m3, type RoleSearchQueryRequest as m4, type RoleFilter as m5, type RoleSearchQueryResult as m6, type RoleUserResult as m7, type RoleUserSearchResult as m8, type RoleUserSearchQueryRequest as m9, type ComponentsConfigurationResponse as mA, type DeploymentConfigurationResponse as mB, type AuthenticationConfigurationResponse as mC, type CloudConfigurationResponse as mD, type WebappComponent as mE, type CloudStage as mF, type TenantCreateRequest as mG, type TenantCreateResult as mH, type TenantUpdateRequest as mI, type TenantUpdateResult as mJ, type TenantResult as mK, type TenantSearchQuerySortRequest as mL, type TenantSearchQueryRequest as mM, type TenantFilter as mN, type TenantSearchQueryResult as mO, type TenantUserResult as mP, type TenantUserSearchResult as mQ, type TenantUserSearchQueryRequest as mR, type TenantUserSearchQuerySortRequest as mS, type TenantClientResult as mT, type TenantClientSearchResult as mU, type TenantClientSearchQueryRequest as mV, type TenantClientSearchQuerySortRequest as mW, type TenantGroupResult as mX, type TenantGroupSearchResult as mY, type TenantGroupSearchQueryRequest as mZ, type TenantRoleSearchResult as m_, type RoleUserSearchQuerySortRequest as ma, type RoleClientResult as mb, type RoleClientSearchResult as mc, type RoleClientSearchQueryRequest as md, type RoleClientSearchQuerySortRequest as me, type RoleGroupResult as mf, type RoleGroupSearchResult as mg, type RoleGroupSearchQueryRequest as mh, type RoleMappingRuleSearchResult as mi, type RoleGroupSearchQuerySortRequest as mj, type SearchQueryRequest as mk, type SearchQueryPageRequest as ml, type LimitPagination as mm, type OffsetPagination as mn, type CursorForwardPagination as mo, type CursorBackwardPagination as mp, type SearchQueryResponse as mq, SortOrderEnum as mr, type SearchQueryPageResponse as ms, type SignalBroadcastRequest as mt, type SignalBroadcastResult as mu, SignalKey as mv, type UsageMetricsResponse as mw, type UsageMetricsResponseItem as mx, type SystemConfigurationResponse as my, type JobMetricsConfigurationResponse as mz, type JobWorkerConfig as n, type JobListenerEventTypeExactMatch as n$, type TenantGroupSearchQuerySortRequest as n0, type UserTaskSearchQuerySortRequest as n1, type UserTaskSearchQuery as n2, type UserTaskFilter as n3, type UserTaskSearchQueryResult as n4, type UserTaskResult as n5, type UserTaskCompletionRequest as n6, type UserTaskAssignmentRequest as n7, type UserTaskUpdateRequest as n8, type Changeset as n9, type SetVariableRequest as nA, type AgentInstanceStatusExactMatch as nB, type AgentInstanceHistoryRoleExactMatch as nC, type AgentInstanceHistoryCommitStatusExactMatch as nD, type AuditLogEntityKeyExactMatch as nE, type EntityTypeExactMatch as nF, type OperationTypeExactMatch as nG, type CategoryExactMatch as nH, type AuditLogResultExactMatch as nI, type AuditLogActorTypeExactMatch as nJ, type BatchOperationTypeExactMatch as nK, type BatchOperationStateExactMatch as nL, type BatchOperationItemStateExactMatch as nM, type ClusterVariableScopeExactMatch as nN, type DecisionInstanceStateExactMatch as nO, type DeploymentKeyExactMatch as nP, type ResourceKeyExactMatch as nQ, type ElementInstanceStateExactMatch as nR, type WaitStateElementTypeExactMatch as nS, type WaitStateTypeExactMatch as nT, type GlobalListenerSourceExactMatch as nU, type GlobalTaskListenerEventTypeExactMatch as nV, type ElementIdExactMatch as nW, type ProcessDefinitionIdExactMatch as nX, type IncidentErrorTypeExactMatch as nY, type IncidentStateExactMatch as nZ, type JobKindExactMatch as n_, type UserTaskVariableSearchQuerySortRequest as na, type UserTaskVariableSearchQueryRequest as nb, type UserTaskEffectiveVariableSearchQueryRequest as nc, type UserTaskAuditLogSearchQueryRequest as nd, UserTaskStateEnum as ne, type UserTaskVariableFilter as nf, type UserTaskStateFilterProperty as ng, type AdvancedUserTaskStateFilter as nh, type UserTaskAuditLogFilter as ni, type UserRequest as nj, type UserCreateResult as nk, type UserUpdateRequest as nl, type UserUpdateResult as nm, type UserResult as nn, type UserSearchQuerySortRequest as no, type UserSearchQueryRequest as np, type UserFilter as nq, type UserSearchResult as nr, type VariableSearchQuerySortRequest as ns, type VariableSearchQuery as nt, type VariableFilter as nu, type VariableSearchQueryResult as nv, type VariableSearchResult as nw, type VariableResult as nx, type VariableResultBase as ny, type VariableValueFilterProperty as nz, type SupportLogger as o, type GetAuthenticationResponses as o$, type JobStateExactMatch as o0, type ProcessDefinitionKeyExactMatch as o1, type ProcessInstanceKeyExactMatch as o2, type ElementInstanceKeyExactMatch as o3, type JobKeyExactMatch as o4, type DecisionDefinitionKeyExactMatch as o5, type ScopeKeyExactMatch as o6, type VariableKeyExactMatch as o7, type DecisionEvaluationInstanceKeyExactMatch as o8, type AgentInstanceKeyExactMatch as o9, type SearchAgentInstancesErrors as oA, type SearchAgentInstancesError as oB, type SearchAgentInstancesResponses as oC, type SearchAgentInstancesResponse as oD, type CreateAgentInstanceHistoryItemData as oE, type CreateAgentInstanceHistoryItemErrors as oF, type CreateAgentInstanceHistoryItemError as oG, type CreateAgentInstanceHistoryItemResponses as oH, type CreateAgentInstanceHistoryItemResponse as oI, type SearchAgentInstanceHistoryData as oJ, type SearchAgentInstanceHistoryErrors as oK, type SearchAgentInstanceHistoryError as oL, type SearchAgentInstanceHistoryResponses as oM, type SearchAgentInstanceHistoryResponse as oN, type SearchAuditLogsData as oO, type SearchAuditLogsErrors as oP, type SearchAuditLogsError as oQ, type SearchAuditLogsResponses as oR, type SearchAuditLogsResponse as oS, type GetAuditLogData as oT, type GetAuditLogErrors as oU, type GetAuditLogError as oV, type GetAuditLogResponses as oW, type GetAuditLogResponse as oX, type GetAuthenticationData as oY, type GetAuthenticationErrors as oZ, type GetAuthenticationError as o_, type AgentHistoryItemKeyExactMatch as oa, type AuditLogKeyExactMatch as ob, type FormKeyExactMatch as oc, type DecisionEvaluationKeyExactMatch as od, type DecisionRequirementsKeyExactMatch as oe, type MessageSubscriptionTypeExactMatch as of, type MessageSubscriptionStateExactMatch as og, type MessageSubscriptionKeyExactMatch as oh, type ProcessInstanceStateExactMatch as oi, type UserTaskStateExactMatch as oj, type CreateAgentInstanceData as ok, type CreateAgentInstanceErrors as ol, type CreateAgentInstanceError as om, type CreateAgentInstanceResponses as on, type CreateAgentInstanceResponse as oo, type GetAgentInstanceData as op, type GetAgentInstanceErrors as oq, type GetAgentInstanceError as or, type GetAgentInstanceResponses as os, type GetAgentInstanceResponse as ot, type UpdateAgentInstanceData as ou, type UpdateAgentInstanceErrors as ov, type UpdateAgentInstanceError as ow, type UpdateAgentInstanceResponses as ox, type UpdateAgentInstanceResponse as oy, type SearchAgentInstancesData as oz, type ThreadedJob as p, type ResetClockError as p$, type GetAuthenticationResponse as p0, type CreateAuthorizationData as p1, type CreateAuthorizationErrors as p2, type CreateAuthorizationError as p3, type CreateAuthorizationResponses as p4, type CreateAuthorizationResponse as p5, type SearchAuthorizationsData as p6, type SearchAuthorizationsErrors as p7, type SearchAuthorizationsError as p8, type SearchAuthorizationsResponses as p9, type GetBatchOperationData as pA, type GetBatchOperationErrors as pB, type GetBatchOperationError as pC, type GetBatchOperationResponses as pD, type GetBatchOperationResponse as pE, type CancelBatchOperationData as pF, type CancelBatchOperationErrors as pG, type CancelBatchOperationError as pH, type CancelBatchOperationResponses as pI, type CancelBatchOperationResponse as pJ, type ResumeBatchOperationData as pK, type ResumeBatchOperationErrors as pL, type ResumeBatchOperationError as pM, type ResumeBatchOperationResponses as pN, type ResumeBatchOperationResponse as pO, type SuspendBatchOperationData as pP, type SuspendBatchOperationErrors as pQ, type SuspendBatchOperationError as pR, type SuspendBatchOperationResponses as pS, type SuspendBatchOperationResponse as pT, type PinClockData as pU, type PinClockErrors as pV, type PinClockError as pW, type PinClockResponses as pX, type PinClockResponse as pY, type ResetClockData as pZ, type ResetClockErrors as p_, type SearchAuthorizationsResponse as pa, type DeleteAuthorizationData as pb, type DeleteAuthorizationErrors as pc, type DeleteAuthorizationError as pd, type DeleteAuthorizationResponses as pe, type DeleteAuthorizationResponse as pf, type GetAuthorizationData as pg, type GetAuthorizationErrors as ph, type GetAuthorizationError as pi, type GetAuthorizationResponses as pj, type GetAuthorizationResponse as pk, type UpdateAuthorizationData as pl, type UpdateAuthorizationErrors as pm, type UpdateAuthorizationError as pn, type UpdateAuthorizationResponses as po, type UpdateAuthorizationResponse as pp, type SearchBatchOperationItemsData as pq, type SearchBatchOperationItemsErrors as pr, type SearchBatchOperationItemsError as ps, type SearchBatchOperationItemsResponses as pt, type SearchBatchOperationItemsResponse as pu, type SearchBatchOperationsData as pv, type SearchBatchOperationsErrors as pw, type SearchBatchOperationsError as px, type SearchBatchOperationsResponses as py, type SearchBatchOperationsResponse as pz, type ThreadedJobHandler as q, type SearchDecisionDefinitionsErrors as q$, type ResetClockResponses as q0, type ResetClockResponse as q1, type CreateGlobalClusterVariableData as q2, type CreateGlobalClusterVariableErrors as q3, type CreateGlobalClusterVariableError as q4, type CreateGlobalClusterVariableResponses as q5, type CreateGlobalClusterVariableResponse as q6, type DeleteGlobalClusterVariableData as q7, type DeleteGlobalClusterVariableErrors as q8, type DeleteGlobalClusterVariableError as q9, type DeleteTenantClusterVariableResponse as qA, type GetTenantClusterVariableData as qB, type GetTenantClusterVariableErrors as qC, type GetTenantClusterVariableError as qD, type GetTenantClusterVariableResponses as qE, type GetTenantClusterVariableResponse as qF, type UpdateTenantClusterVariableData as qG, type UpdateTenantClusterVariableErrors as qH, type UpdateTenantClusterVariableError as qI, type UpdateTenantClusterVariableResponses as qJ, type UpdateTenantClusterVariableResponse as qK, type EvaluateConditionalsData as qL, type EvaluateConditionalsErrors as qM, type EvaluateConditionalsError as qN, type EvaluateConditionalsResponses as qO, type EvaluateConditionalsResponse as qP, type SearchCorrelatedMessageSubscriptionsData as qQ, type SearchCorrelatedMessageSubscriptionsErrors as qR, type SearchCorrelatedMessageSubscriptionsError as qS, type SearchCorrelatedMessageSubscriptionsResponses as qT, type SearchCorrelatedMessageSubscriptionsResponse as qU, type EvaluateDecisionData as qV, type EvaluateDecisionErrors as qW, type EvaluateDecisionError as qX, type EvaluateDecisionResponses as qY, type EvaluateDecisionResponse as qZ, type SearchDecisionDefinitionsData as q_, type DeleteGlobalClusterVariableResponses as qa, type DeleteGlobalClusterVariableResponse as qb, type GetGlobalClusterVariableData as qc, type GetGlobalClusterVariableErrors as qd, type GetGlobalClusterVariableError as qe, type GetGlobalClusterVariableResponses as qf, type GetGlobalClusterVariableResponse as qg, type UpdateGlobalClusterVariableData as qh, type UpdateGlobalClusterVariableErrors as qi, type UpdateGlobalClusterVariableError as qj, type UpdateGlobalClusterVariableResponses as qk, type UpdateGlobalClusterVariableResponse as ql, type SearchClusterVariablesData as qm, type SearchClusterVariablesErrors as qn, type SearchClusterVariablesError as qo, type SearchClusterVariablesResponses as qp, type SearchClusterVariablesResponse as qq, type CreateTenantClusterVariableData as qr, type CreateTenantClusterVariableErrors as qs, type CreateTenantClusterVariableError as qt, type CreateTenantClusterVariableResponses as qu, type CreateTenantClusterVariableResponse as qv, type DeleteTenantClusterVariableData as qw, type DeleteTenantClusterVariableErrors as qx, type DeleteTenantClusterVariableError as qy, type DeleteTenantClusterVariableResponses as qz, ThreadedJobWorker as r, type DeleteDocumentData as r$, type SearchDecisionDefinitionsError as r0, type SearchDecisionDefinitionsResponses as r1, type SearchDecisionDefinitionsResponse as r2, type GetDecisionDefinitionData as r3, type GetDecisionDefinitionErrors as r4, type GetDecisionDefinitionError as r5, type GetDecisionDefinitionResponses as r6, type GetDecisionDefinitionResponse as r7, type GetDecisionDefinitionXmlData as r8, type GetDecisionDefinitionXmlErrors as r9, type SearchDecisionRequirementsResponses as rA, type SearchDecisionRequirementsResponse as rB, type GetDecisionRequirementsData as rC, type GetDecisionRequirementsErrors as rD, type GetDecisionRequirementsError as rE, type GetDecisionRequirementsResponses as rF, type GetDecisionRequirementsResponse as rG, type GetDecisionRequirementsXmlData as rH, type GetDecisionRequirementsXmlErrors as rI, type GetDecisionRequirementsXmlError as rJ, type GetDecisionRequirementsXmlResponses as rK, type GetDecisionRequirementsXmlResponse as rL, type CreateDeploymentData as rM, type CreateDeploymentErrors as rN, type CreateDeploymentError as rO, type CreateDeploymentResponses as rP, type CreateDeploymentResponse as rQ, type CreateDocumentData as rR, type CreateDocumentErrors as rS, type CreateDocumentError as rT, type CreateDocumentResponses as rU, type CreateDocumentResponse as rV, type CreateDocumentsData as rW, type CreateDocumentsErrors as rX, type CreateDocumentsError as rY, type CreateDocumentsResponses as rZ, type CreateDocumentsResponse as r_, type GetDecisionDefinitionXmlError as ra, type GetDecisionDefinitionXmlResponses as rb, type GetDecisionDefinitionXmlResponse as rc, type SearchDecisionInstancesData as rd, type SearchDecisionInstancesErrors as re, type SearchDecisionInstancesError as rf, type SearchDecisionInstancesResponses as rg, type SearchDecisionInstancesResponse as rh, type GetDecisionInstanceData as ri, type GetDecisionInstanceErrors as rj, type GetDecisionInstanceError as rk, type GetDecisionInstanceResponses as rl, type GetDecisionInstanceResponse as rm, type DeleteDecisionInstanceData as rn, type DeleteDecisionInstanceErrors as ro, type DeleteDecisionInstanceError as rp, type DeleteDecisionInstanceResponses as rq, type DeleteDecisionInstanceResponse as rr, type DeleteDecisionInstancesBatchOperationData as rs, type DeleteDecisionInstancesBatchOperationErrors as rt, type DeleteDecisionInstancesBatchOperationError as ru, type DeleteDecisionInstancesBatchOperationResponses as rv, type DeleteDecisionInstancesBatchOperationResponse as rw, type SearchDecisionRequirementsData as rx, type SearchDecisionRequirementsErrors as ry, type SearchDecisionRequirementsError as rz, type ThreadedJobWorkerConfig as s, type DeleteGlobalTaskListenerResponse as s$, type DeleteDocumentErrors as s0, type DeleteDocumentError as s1, type DeleteDocumentResponses as s2, type DeleteDocumentResponse as s3, type GetDocumentData as s4, type GetDocumentErrors as s5, type GetDocumentError as s6, type GetDocumentResponses as s7, type GetDocumentResponse as s8, type CreateDocumentLinkData as s9, type SearchElementInstanceIncidentsError as sA, type SearchElementInstanceIncidentsResponses as sB, type SearchElementInstanceIncidentsResponse as sC, type CreateElementInstanceVariablesData as sD, type CreateElementInstanceVariablesErrors as sE, type CreateElementInstanceVariablesError as sF, type CreateElementInstanceVariablesResponses as sG, type CreateElementInstanceVariablesResponse as sH, type EvaluateExpressionData as sI, type EvaluateExpressionErrors as sJ, type EvaluateExpressionError as sK, type EvaluateExpressionResponses as sL, type EvaluateExpressionResponse as sM, type GetFormByKeyData as sN, type GetFormByKeyErrors as sO, type GetFormByKeyError as sP, type GetFormByKeyResponses as sQ, type GetFormByKeyResponse as sR, type CreateGlobalTaskListenerData as sS, type CreateGlobalTaskListenerErrors as sT, type CreateGlobalTaskListenerError as sU, type CreateGlobalTaskListenerResponses as sV, type CreateGlobalTaskListenerResponse as sW, type DeleteGlobalTaskListenerData as sX, type DeleteGlobalTaskListenerErrors as sY, type DeleteGlobalTaskListenerError as sZ, type DeleteGlobalTaskListenerResponses as s_, type CreateDocumentLinkErrors as sa, type CreateDocumentLinkError as sb, type CreateDocumentLinkResponses as sc, type CreateDocumentLinkResponse as sd, type ActivateAdHocSubProcessActivitiesData as se, type ActivateAdHocSubProcessActivitiesErrors as sf, type ActivateAdHocSubProcessActivitiesError as sg, type ActivateAdHocSubProcessActivitiesResponses as sh, type ActivateAdHocSubProcessActivitiesResponse as si, type SearchElementInstanceWaitStatesData as sj, type SearchElementInstanceWaitStatesErrors as sk, type SearchElementInstanceWaitStatesError as sl, type SearchElementInstanceWaitStatesResponses as sm, type SearchElementInstanceWaitStatesResponse as sn, type SearchElementInstancesData as so, type SearchElementInstancesErrors as sp, type SearchElementInstancesError as sq, type SearchElementInstancesResponses as sr, type SearchElementInstancesResponse as ss, type GetElementInstanceData as st, type GetElementInstanceErrors as su, type GetElementInstanceError as sv, type GetElementInstanceResponses as sw, type GetElementInstanceResponse as sx, type SearchElementInstanceIncidentsData as sy, type SearchElementInstanceIncidentsErrors as sz, ThreadPool as t, type UnassignMappingRuleFromGroupResponses as t$, type GetGlobalTaskListenerData as t0, type GetGlobalTaskListenerErrors as t1, type GetGlobalTaskListenerError as t2, type GetGlobalTaskListenerResponses as t3, type GetGlobalTaskListenerResponse as t4, type UpdateGlobalTaskListenerData as t5, type UpdateGlobalTaskListenerErrors as t6, type UpdateGlobalTaskListenerError as t7, type UpdateGlobalTaskListenerResponses as t8, type UpdateGlobalTaskListenerResponse as t9, type UpdateGroupErrors as tA, type UpdateGroupError as tB, type UpdateGroupResponses as tC, type UpdateGroupResponse as tD, type SearchClientsForGroupData as tE, type SearchClientsForGroupErrors as tF, type SearchClientsForGroupError as tG, type SearchClientsForGroupResponses as tH, type SearchClientsForGroupResponse as tI, type UnassignClientFromGroupData as tJ, type UnassignClientFromGroupErrors as tK, type UnassignClientFromGroupError as tL, type UnassignClientFromGroupResponses as tM, type UnassignClientFromGroupResponse as tN, type AssignClientToGroupData as tO, type AssignClientToGroupErrors as tP, type AssignClientToGroupError as tQ, type AssignClientToGroupResponses as tR, type AssignClientToGroupResponse as tS, type SearchMappingRulesForGroupData as tT, type SearchMappingRulesForGroupErrors as tU, type SearchMappingRulesForGroupError as tV, type SearchMappingRulesForGroupResponses as tW, type SearchMappingRulesForGroupResponse as tX, type UnassignMappingRuleFromGroupData as tY, type UnassignMappingRuleFromGroupErrors as tZ, type UnassignMappingRuleFromGroupError as t_, type SearchGlobalTaskListenersData as ta, type SearchGlobalTaskListenersErrors as tb, type SearchGlobalTaskListenersError as tc, type SearchGlobalTaskListenersResponses as td, type SearchGlobalTaskListenersResponse as te, type CreateGroupData as tf, type CreateGroupErrors as tg, type CreateGroupError as th, type CreateGroupResponses as ti, type CreateGroupResponse as tj, type SearchGroupsData as tk, type SearchGroupsErrors as tl, type SearchGroupsError as tm, type SearchGroupsResponses as tn, type SearchGroupsResponse as to, type DeleteGroupData as tp, type DeleteGroupErrors as tq, type DeleteGroupError as tr, type DeleteGroupResponses as ts, type DeleteGroupResponse as tt, type GetGroupData as tu, type GetGroupErrors as tv, type GetGroupError as tw, type GetGroupResponses as tx, type GetGroupResponse as ty, type UpdateGroupData as tz, collectTypedVariables as u, type UpdateJobError as u$, type UnassignMappingRuleFromGroupResponse as u0, type AssignMappingRuleToGroupData as u1, type AssignMappingRuleToGroupErrors as u2, type AssignMappingRuleToGroupError as u3, type AssignMappingRuleToGroupResponses as u4, type AssignMappingRuleToGroupResponse as u5, type SearchRolesForGroupData as u6, type SearchRolesForGroupErrors as u7, type SearchRolesForGroupError as u8, type SearchRolesForGroupResponses as u9, type ResolveIncidentData as uA, type ResolveIncidentErrors as uB, type ResolveIncidentError as uC, type ResolveIncidentResponses as uD, type ResolveIncidentResponse as uE, type GetProcessInstanceStatisticsByDefinitionData as uF, type GetProcessInstanceStatisticsByDefinitionErrors as uG, type GetProcessInstanceStatisticsByDefinitionError as uH, type GetProcessInstanceStatisticsByDefinitionResponses as uI, type GetProcessInstanceStatisticsByDefinitionResponse as uJ, type GetProcessInstanceStatisticsByErrorData as uK, type GetProcessInstanceStatisticsByErrorErrors as uL, type GetProcessInstanceStatisticsByErrorError as uM, type GetProcessInstanceStatisticsByErrorResponses as uN, type GetProcessInstanceStatisticsByErrorResponse as uO, type ActivateJobsData as uP, type ActivateJobsErrors as uQ, type ActivateJobsError as uR, type ActivateJobsResponses as uS, type ActivateJobsResponse as uT, type SearchJobsData as uU, type SearchJobsErrors as uV, type SearchJobsError as uW, type SearchJobsResponses as uX, type SearchJobsResponse as uY, type UpdateJobData as uZ, type UpdateJobErrors as u_, type SearchRolesForGroupResponse as ua, type SearchUsersForGroupData as ub, type SearchUsersForGroupErrors as uc, type SearchUsersForGroupError as ud, type SearchUsersForGroupResponses as ue, type SearchUsersForGroupResponse as uf, type UnassignUserFromGroupData as ug, type UnassignUserFromGroupErrors as uh, type UnassignUserFromGroupError as ui, type UnassignUserFromGroupResponses as uj, type UnassignUserFromGroupResponse as uk, type AssignUserToGroupData as ul, type AssignUserToGroupErrors as um, type AssignUserToGroupError as un, type AssignUserToGroupResponses as uo, type AssignUserToGroupResponse as up, type SearchIncidentsData as uq, type SearchIncidentsErrors as ur, type SearchIncidentsError as us, type SearchIncidentsResponses as ut, type SearchIncidentsResponse as uu, type GetIncidentData as uv, type GetIncidentErrors as uw, type GetIncidentError as ux, type GetIncidentResponses as uy, type GetIncidentResponse as uz, type TypedVariableItem as v, type GetMappingRuleErrors as v$, type UpdateJobResponses as v0, type UpdateJobResponse as v1, type CompleteJobData as v2, type CompleteJobErrors as v3, type CompleteJobError as v4, type CompleteJobResponses as v5, type CompleteJobResponse as v6, type ThrowJobErrorData as v7, type ThrowJobErrorErrors as v8, type ThrowJobErrorError as v9, type GetJobTimeSeriesStatisticsResponse as vA, type GetJobErrorStatisticsData as vB, type GetJobErrorStatisticsErrors as vC, type GetJobErrorStatisticsError as vD, type GetJobErrorStatisticsResponses as vE, type GetJobErrorStatisticsResponse as vF, type GetLicenseData as vG, type GetLicenseErrors as vH, type GetLicenseError as vI, type GetLicenseResponses as vJ, type GetLicenseResponse as vK, type CreateMappingRuleData as vL, type CreateMappingRuleErrors as vM, type CreateMappingRuleError as vN, type CreateMappingRuleResponses as vO, type CreateMappingRuleResponse as vP, type SearchMappingRuleData as vQ, type SearchMappingRuleErrors as vR, type SearchMappingRuleError as vS, type SearchMappingRuleResponses as vT, type SearchMappingRuleResponse as vU, type DeleteMappingRuleData as vV, type DeleteMappingRuleErrors as vW, type DeleteMappingRuleError as vX, type DeleteMappingRuleResponses as vY, type DeleteMappingRuleResponse as vZ, type GetMappingRuleData as v_, type ThrowJobErrorResponses as va, type ThrowJobErrorResponse as vb, type FailJobData as vc, type FailJobErrors as vd, type FailJobError as ve, type FailJobResponses as vf, type FailJobResponse as vg, type GetGlobalJobStatisticsData as vh, type GetGlobalJobStatisticsErrors as vi, type GetGlobalJobStatisticsError as vj, type GetGlobalJobStatisticsResponses as vk, type GetGlobalJobStatisticsResponse as vl, type GetJobTypeStatisticsData as vm, type GetJobTypeStatisticsErrors as vn, type GetJobTypeStatisticsError as vo, type GetJobTypeStatisticsResponses as vp, type GetJobTypeStatisticsResponse as vq, type GetJobWorkerStatisticsData as vr, type GetJobWorkerStatisticsErrors as vs, type GetJobWorkerStatisticsError as vt, type GetJobWorkerStatisticsResponses as vu, type GetJobWorkerStatisticsResponse as vv, type GetJobTimeSeriesStatisticsData as vw, type GetJobTimeSeriesStatisticsErrors as vx, type GetJobTimeSeriesStatisticsError as vy, type GetJobTimeSeriesStatisticsResponses as vz, type TypedVariablePage as w, type CreateProcessInstanceData as w$, type GetMappingRuleError as w0, type GetMappingRuleResponses as w1, type GetMappingRuleResponse as w2, type UpdateMappingRuleData as w3, type UpdateMappingRuleErrors as w4, type UpdateMappingRuleError as w5, type UpdateMappingRuleResponses as w6, type UpdateMappingRuleResponse as w7, type SearchMessageSubscriptionsData as w8, type SearchMessageSubscriptionsErrors as w9, type GetProcessDefinitionInstanceStatisticsResponses as wA, type GetProcessDefinitionInstanceStatisticsResponse as wB, type GetProcessDefinitionData as wC, type GetProcessDefinitionErrors as wD, type GetProcessDefinitionError as wE, type GetProcessDefinitionResponses as wF, type GetProcessDefinitionResponse as wG, type GetStartProcessFormData as wH, type GetStartProcessFormErrors as wI, type GetStartProcessFormError as wJ, type GetStartProcessFormResponses as wK, type GetStartProcessFormResponse as wL, type GetProcessDefinitionStatisticsData as wM, type GetProcessDefinitionStatisticsErrors as wN, type GetProcessDefinitionStatisticsError as wO, type GetProcessDefinitionStatisticsResponses as wP, type GetProcessDefinitionStatisticsResponse as wQ, type GetProcessDefinitionXmlData as wR, type GetProcessDefinitionXmlErrors as wS, type GetProcessDefinitionXmlError as wT, type GetProcessDefinitionXmlResponses as wU, type GetProcessDefinitionXmlResponse as wV, type GetProcessDefinitionInstanceVersionStatisticsData as wW, type GetProcessDefinitionInstanceVersionStatisticsErrors as wX, type GetProcessDefinitionInstanceVersionStatisticsError as wY, type GetProcessDefinitionInstanceVersionStatisticsResponses as wZ, type GetProcessDefinitionInstanceVersionStatisticsResponse as w_, type SearchMessageSubscriptionsError as wa, type SearchMessageSubscriptionsResponses as wb, type SearchMessageSubscriptionsResponse as wc, type CorrelateMessageData as wd, type CorrelateMessageErrors as we, type CorrelateMessageError as wf, type CorrelateMessageResponses as wg, type CorrelateMessageResponse as wh, type PublishMessageData as wi, type PublishMessageErrors as wj, type PublishMessageError as wk, type PublishMessageResponses as wl, type PublishMessageResponse as wm, type SearchProcessDefinitionsData as wn, type SearchProcessDefinitionsErrors as wo, type SearchProcessDefinitionsError as wp, type SearchProcessDefinitionsResponses as wq, type SearchProcessDefinitionsResponse as wr, type GetProcessDefinitionMessageSubscriptionStatisticsData as ws, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as wt, type GetProcessDefinitionMessageSubscriptionStatisticsError as wu, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as wv, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as ww, type GetProcessDefinitionInstanceStatisticsData as wx, type GetProcessDefinitionInstanceStatisticsErrors as wy, type GetProcessDefinitionInstanceStatisticsError as wz, TypedVariablesError as x, type SearchProcessInstanceIncidentsResponse as x$, type CreateProcessInstanceErrors as x0, type CreateProcessInstanceError as x1, type CreateProcessInstanceResponses as x2, type CreateProcessInstanceResponse as x3, type CancelProcessInstancesBatchOperationData as x4, type CancelProcessInstancesBatchOperationErrors as x5, type CancelProcessInstancesBatchOperationError as x6, type CancelProcessInstancesBatchOperationResponses as x7, type CancelProcessInstancesBatchOperationResponse as x8, type DeleteProcessInstancesBatchOperationData as x9, type GetProcessInstanceError as xA, type GetProcessInstanceResponses as xB, type GetProcessInstanceResponse as xC, type GetProcessInstanceCallHierarchyData as xD, type GetProcessInstanceCallHierarchyErrors as xE, type GetProcessInstanceCallHierarchyError as xF, type GetProcessInstanceCallHierarchyResponses as xG, type GetProcessInstanceCallHierarchyResponse as xH, type CancelProcessInstanceData as xI, type CancelProcessInstanceErrors as xJ, type CancelProcessInstanceError as xK, type CancelProcessInstanceResponses as xL, type CancelProcessInstanceResponse as xM, type DeleteProcessInstanceData as xN, type DeleteProcessInstanceErrors as xO, type DeleteProcessInstanceError as xP, type DeleteProcessInstanceResponses as xQ, type DeleteProcessInstanceResponse as xR, type ResolveProcessInstanceIncidentsData as xS, type ResolveProcessInstanceIncidentsErrors as xT, type ResolveProcessInstanceIncidentsError as xU, type ResolveProcessInstanceIncidentsResponses as xV, type ResolveProcessInstanceIncidentsResponse as xW, type SearchProcessInstanceIncidentsData as xX, type SearchProcessInstanceIncidentsErrors as xY, type SearchProcessInstanceIncidentsError as xZ, type SearchProcessInstanceIncidentsResponses as x_, type DeleteProcessInstancesBatchOperationErrors as xa, type DeleteProcessInstancesBatchOperationError as xb, type DeleteProcessInstancesBatchOperationResponses as xc, type DeleteProcessInstancesBatchOperationResponse as xd, type ResolveIncidentsBatchOperationData as xe, type ResolveIncidentsBatchOperationErrors as xf, type ResolveIncidentsBatchOperationError as xg, type ResolveIncidentsBatchOperationResponses as xh, type ResolveIncidentsBatchOperationResponse as xi, type MigrateProcessInstancesBatchOperationData as xj, type MigrateProcessInstancesBatchOperationErrors as xk, type MigrateProcessInstancesBatchOperationError as xl, type MigrateProcessInstancesBatchOperationResponses as xm, type MigrateProcessInstancesBatchOperationResponse as xn, type ModifyProcessInstancesBatchOperationData as xo, type ModifyProcessInstancesBatchOperationErrors as xp, type ModifyProcessInstancesBatchOperationError as xq, type ModifyProcessInstancesBatchOperationResponses as xr, type ModifyProcessInstancesBatchOperationResponse as xs, type SearchProcessInstancesData as xt, type SearchProcessInstancesErrors as xu, type SearchProcessInstancesError as xv, type SearchProcessInstancesResponses as xw, type SearchProcessInstancesResponse as xx, type GetProcessInstanceData as xy, type GetProcessInstanceErrors as xz, VariableDeserializationError as y, type GetRoleResponses as y$, type MigrateProcessInstanceData as y0, type MigrateProcessInstanceErrors as y1, type MigrateProcessInstanceError as y2, type MigrateProcessInstanceResponses as y3, type MigrateProcessInstanceResponse as y4, type ModifyProcessInstanceData as y5, type ModifyProcessInstanceErrors as y6, type ModifyProcessInstanceError as y7, type ModifyProcessInstanceResponses as y8, type ModifyProcessInstanceResponse as y9, type GetResourceContentBinaryErrors as yA, type GetResourceContentBinaryError as yB, type GetResourceContentBinaryResponses as yC, type GetResourceContentBinaryResponse as yD, type DeleteResourceData as yE, type DeleteResourceErrors as yF, type DeleteResourceError as yG, type DeleteResourceResponses as yH, type DeleteResourceResponse2 as yI, type CreateRoleData as yJ, type CreateRoleErrors as yK, type CreateRoleError as yL, type CreateRoleResponses as yM, type CreateRoleResponse as yN, type SearchRolesData as yO, type SearchRolesErrors as yP, type SearchRolesError as yQ, type SearchRolesResponses as yR, type SearchRolesResponse as yS, type DeleteRoleData as yT, type DeleteRoleErrors as yU, type DeleteRoleError as yV, type DeleteRoleResponses as yW, type DeleteRoleResponse as yX, type GetRoleData as yY, type GetRoleErrors as yZ, type GetRoleError as y_, type GetProcessInstanceSequenceFlowsData as ya, type GetProcessInstanceSequenceFlowsErrors as yb, type GetProcessInstanceSequenceFlowsError as yc, type GetProcessInstanceSequenceFlowsResponses as yd, type GetProcessInstanceSequenceFlowsResponse as ye, type GetProcessInstanceStatisticsData as yf, type GetProcessInstanceStatisticsErrors as yg, type GetProcessInstanceStatisticsError as yh, type GetProcessInstanceStatisticsResponses as yi, type GetProcessInstanceStatisticsResponse as yj, type SearchResourcesData as yk, type SearchResourcesErrors as yl, type SearchResourcesError as ym, type SearchResourcesResponses as yn, type SearchResourcesResponse as yo, type GetResourceData as yp, type GetResourceErrors as yq, type GetResourceError as yr, type GetResourceResponses as ys, type GetResourceResponse as yt, type GetResourceContentData as yu, type GetResourceContentErrors as yv, type GetResourceContentError as yw, type GetResourceContentResponses as yx, type GetResourceContentResponse as yy, type GetResourceContentBinaryData as yz, VariableMap as z, type AssignRoleToUserError as z$, type GetRoleResponse as z0, type UpdateRoleData as z1, type UpdateRoleErrors as z2, type UpdateRoleError as z3, type UpdateRoleResponses as z4, type UpdateRoleResponse as z5, type SearchClientsForRoleData as z6, type SearchClientsForRoleErrors as z7, type SearchClientsForRoleError as z8, type SearchClientsForRoleResponses as z9, type SearchMappingRulesForRoleData as zA, type SearchMappingRulesForRoleErrors as zB, type SearchMappingRulesForRoleError as zC, type SearchMappingRulesForRoleResponses as zD, type SearchMappingRulesForRoleResponse as zE, type UnassignRoleFromMappingRuleData as zF, type UnassignRoleFromMappingRuleErrors as zG, type UnassignRoleFromMappingRuleError as zH, type UnassignRoleFromMappingRuleResponses as zI, type UnassignRoleFromMappingRuleResponse as zJ, type AssignRoleToMappingRuleData as zK, type AssignRoleToMappingRuleErrors as zL, type AssignRoleToMappingRuleError as zM, type AssignRoleToMappingRuleResponses as zN, type AssignRoleToMappingRuleResponse as zO, type SearchUsersForRoleData as zP, type SearchUsersForRoleErrors as zQ, type SearchUsersForRoleError as zR, type SearchUsersForRoleResponses as zS, type SearchUsersForRoleResponse as zT, type UnassignRoleFromUserData as zU, type UnassignRoleFromUserErrors as zV, type UnassignRoleFromUserError as zW, type UnassignRoleFromUserResponses as zX, type UnassignRoleFromUserResponse as zY, type AssignRoleToUserData as zZ, type AssignRoleToUserErrors as z_, type SearchClientsForRoleResponse as za, type UnassignRoleFromClientData as zb, type UnassignRoleFromClientErrors as zc, type UnassignRoleFromClientError as zd, type UnassignRoleFromClientResponses as ze, type UnassignRoleFromClientResponse as zf, type AssignRoleToClientData as zg, type AssignRoleToClientErrors as zh, type AssignRoleToClientError as zi, type AssignRoleToClientResponses as zj, type AssignRoleToClientResponse as zk, type SearchGroupsForRoleData as zl, type SearchGroupsForRoleErrors as zm, type SearchGroupsForRoleError as zn, type SearchGroupsForRoleResponses as zo, type SearchGroupsForRoleResponse as zp, type UnassignRoleFromGroupData as zq, type UnassignRoleFromGroupErrors as zr, type UnassignRoleFromGroupError as zs, type UnassignRoleFromGroupResponses as zt, type UnassignRoleFromGroupResponse as zu, type AssignRoleToGroupData as zv, type AssignRoleToGroupErrors as zw, type AssignRoleToGroupError as zx, type AssignRoleToGroupResponses as zy, type AssignRoleToGroupResponse as zz };
|
|
27856
|
+
export { type assignUserTaskInput as $, type AnyVariableSchema as A, type SearchClientsForTenantResponses as A$, type SearchUsersForRoleError as A0, type SearchUsersForRoleResponses as A1, type SearchUsersForRoleResponse as A2, type UnassignRoleFromUserData as A3, type UnassignRoleFromUserErrors as A4, type UnassignRoleFromUserError as A5, type UnassignRoleFromUserResponses as A6, type UnassignRoleFromUserResponse as A7, type AssignRoleToUserData as A8, type AssignRoleToUserErrors as A9, type GetSystemConfigurationResponse as AA, type CreateTenantData as AB, type CreateTenantErrors as AC, type CreateTenantError as AD, type CreateTenantResponses as AE, type CreateTenantResponse as AF, type SearchTenantsData as AG, type SearchTenantsErrors as AH, type SearchTenantsError as AI, type SearchTenantsResponses as AJ, type SearchTenantsResponse as AK, type DeleteTenantData as AL, type DeleteTenantErrors as AM, type DeleteTenantError as AN, type DeleteTenantResponses as AO, type DeleteTenantResponse as AP, type GetTenantData as AQ, type GetTenantErrors as AR, type GetTenantError as AS, type GetTenantResponses as AT, type GetTenantResponse as AU, type UpdateTenantData as AV, type UpdateTenantErrors as AW, type UpdateTenantError as AX, type UpdateTenantResponses as AY, type UpdateTenantResponse as AZ, type SearchClientsForTenantData as A_, type AssignRoleToUserError as Aa, type AssignRoleToUserResponses as Ab, type AssignRoleToUserResponse as Ac, type CreateAdminUserData as Ad, type CreateAdminUserErrors as Ae, type CreateAdminUserError as Af, type CreateAdminUserResponses as Ag, type CreateAdminUserResponse as Ah, type BroadcastSignalData as Ai, type BroadcastSignalErrors as Aj, type BroadcastSignalError as Ak, type BroadcastSignalResponses as Al, type BroadcastSignalResponse as Am, type GetStatusData as An, type GetStatusErrors as Ao, type GetStatusResponses as Ap, type GetStatusResponse as Aq, type GetUsageMetricsData as Ar, type GetUsageMetricsErrors as As, type GetUsageMetricsError as At, type GetUsageMetricsResponses as Au, type GetUsageMetricsResponse as Av, type GetSystemConfigurationData as Aw, type GetSystemConfigurationErrors as Ax, type GetSystemConfigurationError as Ay, type GetSystemConfigurationResponses as Az, type BackpressureSeverity as B, type GetTopologyData as B$, type SearchClientsForTenantResponse as B0, type UnassignClientFromTenantData as B1, type UnassignClientFromTenantErrors as B2, type UnassignClientFromTenantError as B3, type UnassignClientFromTenantResponses as B4, type UnassignClientFromTenantResponse as B5, type AssignClientToTenantData as B6, type AssignClientToTenantErrors as B7, type AssignClientToTenantError as B8, type AssignClientToTenantResponses as B9, type AssignMappingRuleToTenantResponse as BA, type SearchRolesForTenantData as BB, type SearchRolesForTenantResponses as BC, type SearchRolesForTenantResponse as BD, type UnassignRoleFromTenantData as BE, type UnassignRoleFromTenantErrors as BF, type UnassignRoleFromTenantError as BG, type UnassignRoleFromTenantResponses as BH, type UnassignRoleFromTenantResponse as BI, type AssignRoleToTenantData as BJ, type AssignRoleToTenantErrors as BK, type AssignRoleToTenantError as BL, type AssignRoleToTenantResponses as BM, type AssignRoleToTenantResponse as BN, type SearchUsersForTenantData as BO, type SearchUsersForTenantResponses as BP, type SearchUsersForTenantResponse as BQ, type UnassignUserFromTenantData as BR, type UnassignUserFromTenantErrors as BS, type UnassignUserFromTenantError as BT, type UnassignUserFromTenantResponses as BU, type UnassignUserFromTenantResponse as BV, type AssignUserToTenantData as BW, type AssignUserToTenantErrors as BX, type AssignUserToTenantError as BY, type AssignUserToTenantResponses as BZ, type AssignUserToTenantResponse as B_, type AssignClientToTenantResponse as Ba, type SearchGroupIdsForTenantData as Bb, type SearchGroupIdsForTenantResponses as Bc, type SearchGroupIdsForTenantResponse as Bd, type UnassignGroupFromTenantData as Be, type UnassignGroupFromTenantErrors as Bf, type UnassignGroupFromTenantError as Bg, type UnassignGroupFromTenantResponses as Bh, type UnassignGroupFromTenantResponse as Bi, type AssignGroupToTenantData as Bj, type AssignGroupToTenantErrors as Bk, type AssignGroupToTenantError as Bl, type AssignGroupToTenantResponses as Bm, type AssignGroupToTenantResponse as Bn, type SearchMappingRulesForTenantData as Bo, type SearchMappingRulesForTenantResponses as Bp, type SearchMappingRulesForTenantResponse as Bq, type UnassignMappingRuleFromTenantData as Br, type UnassignMappingRuleFromTenantErrors as Bs, type UnassignMappingRuleFromTenantError as Bt, type UnassignMappingRuleFromTenantResponses as Bu, type UnassignMappingRuleFromTenantResponse as Bv, type AssignMappingRuleToTenantData as Bw, type AssignMappingRuleToTenantErrors as Bx, type AssignMappingRuleToTenantError as By, type AssignMappingRuleToTenantResponses as Bz, CamundaClient as C, type CompleteUserTaskResponse as C$, type GetTopologyErrors as C0, type GetTopologyError as C1, type GetTopologyResponses as C2, type GetTopologyResponse as C3, type CreateUserData as C4, type CreateUserErrors as C5, type CreateUserError as C6, type CreateUserResponses as C7, type CreateUserResponse as C8, type SearchUsersData as C9, type GetUserTaskError as CA, type GetUserTaskResponses as CB, type GetUserTaskResponse as CC, type UpdateUserTaskData as CD, type UpdateUserTaskErrors as CE, type UpdateUserTaskError as CF, type UpdateUserTaskResponses as CG, type UpdateUserTaskResponse as CH, type UnassignUserTaskData as CI, type UnassignUserTaskErrors as CJ, type UnassignUserTaskError as CK, type UnassignUserTaskResponses as CL, type UnassignUserTaskResponse as CM, type AssignUserTaskData as CN, type AssignUserTaskErrors as CO, type AssignUserTaskError as CP, type AssignUserTaskResponses as CQ, type AssignUserTaskResponse as CR, type SearchUserTaskAuditLogsData as CS, type SearchUserTaskAuditLogsErrors as CT, type SearchUserTaskAuditLogsError as CU, type SearchUserTaskAuditLogsResponses as CV, type SearchUserTaskAuditLogsResponse as CW, type CompleteUserTaskData as CX, type CompleteUserTaskErrors as CY, type CompleteUserTaskError as CZ, type CompleteUserTaskResponses as C_, type SearchUsersErrors as Ca, type SearchUsersError as Cb, type SearchUsersResponses as Cc, type SearchUsersResponse as Cd, type DeleteUserData as Ce, type DeleteUserErrors as Cf, type DeleteUserError as Cg, type DeleteUserResponses as Ch, type DeleteUserResponse as Ci, type GetUserData as Cj, type GetUserErrors as Ck, type GetUserError as Cl, type GetUserResponses as Cm, type GetUserResponse as Cn, type UpdateUserData as Co, type UpdateUserErrors as Cp, type UpdateUserError as Cq, type UpdateUserResponses as Cr, type UpdateUserResponse as Cs, type SearchUserTasksData as Ct, type SearchUserTasksErrors as Cu, type SearchUserTasksError as Cv, type SearchUserTasksResponses as Cw, type SearchUserTasksResponse as Cx, type GetUserTaskData as Cy, type GetUserTaskErrors as Cz, VariableScopeCollisionError as D, type SearchUserTaskEffectiveVariablesData as D0, type SearchUserTaskEffectiveVariablesErrors as D1, type SearchUserTaskEffectiveVariablesError as D2, type SearchUserTaskEffectiveVariablesResponses as D3, type SearchUserTaskEffectiveVariablesResponse as D4, type GetUserTaskFormData as D5, type GetUserTaskFormErrors as D6, type GetUserTaskFormError as D7, type GetUserTaskFormResponses as D8, type GetUserTaskFormResponse as D9, retryTE as DA, type TaskEither as DB, withTimeoutTE as DC, type SearchUserTaskVariablesData as Da, type SearchUserTaskVariablesErrors as Db, type SearchUserTaskVariablesError as Dc, type SearchUserTaskVariablesResponses as Dd, type SearchUserTaskVariablesResponse as De, type SearchVariablesData as Df, type SearchVariablesErrors as Dg, type SearchVariablesError as Dh, type SearchVariablesResponses as Di, type SearchVariablesResponse as Dj, type GetVariableData as Dk, type GetVariableErrors as Dl, type GetVariableError as Dm, type GetVariableResponses as Dn, type GetVariableResponse as Do, assertConstraint as Dp, classifyDomainError as Dq, type DomainError as Dr, type DomainErrorTag as Ds, eventuallyTE as Dt, type FnKeys as Du, type Fpify as Dv, foldDomainError as Dw, type HttpError as Dx, type Left as Dy, type Right 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 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, AuditLogEntityTypeEnum 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 updateJobsBatchOperationInput as e9, type AdvancedAgentInstanceStatusFilter as eA, type AgentInstanceHistoryItemRequest as eB, type AgentInstanceHistoryItemCreationResult as eC, type AgentInstanceHistorySearchQuerySortRequest as eD, type AgentInstanceHistorySearchQuery as eE, type AgentInstanceHistoryFilter as eF, type AgentInstanceHistorySearchQueryResult as eG, type AgentInstanceHistoryItemResult as eH, AgentInstanceHistoryRoleEnum as eI, AgentInstanceHistoryCommitStatusEnum as eJ, type AgentInstanceMessageContent as eK, type AgentInstanceTextContent as eL, type AgentInstanceDocumentContent as eM, type AgentInstanceObjectContent as eN, AgentInstanceMessageContentTypeEnum as eO, type AgentInstanceToolCall as eP, type AgentInstanceHistoryItemMetrics as eQ, type AgentInstanceHistoryRoleFilterProperty as eR, type AdvancedAgentInstanceHistoryRoleFilter as eS, type AgentInstanceHistoryCommitStatusFilterProperty as eT, type AdvancedAgentInstanceHistoryCommitStatusFilter as eU, type AuditLogResult as eV, type AuditLogSearchQuerySortRequest as eW, type AuditLogSearchQueryRequest as eX, type AuditLogFilter as eY, type AuditLogSearchQueryResult as eZ, AuditLogEntityKey as e_, type updateMappingRuleInput as ea, type updateRoleInput as eb, type updateTenantInput as ec, type updateTenantClusterVariableInput as ed, type updateUserInput as ee, type updateUserTaskInput as ef, type ExtendedDeploymentResult as eg, CancelError as eh, type CamundaKey as ei, type ClientOptions as ej, type AgentInstanceSearchQuerySortRequest as ek, type AgentInstanceSearchQuery as el, type AgentInstanceFilter as em, type AgentInstanceSearchQueryResult as en, type AgentInstanceResult as eo, type AgentInstanceDefinition as ep, type AgentTool as eq, type AgentInstanceMetrics as er, type AgentInstanceLimits as es, AgentInstanceStatusEnum as et, AgentInstanceUpdateStatusEnum as eu, type AgentInstanceCreationRequest as ev, type AgentInstanceCreationResult as ew, type AgentInstanceMetricsDelta as ex, type AgentInstanceUpdateRequest as ey, type AgentInstanceStatusFilterProperty as ez, isRight as f, type ClusterVariableResult as f$, AuditLogOperationTypeEnum as f0, AuditLogActorTypeEnum as f1, AuditLogResultEnum as f2, AuditLogCategoryEnum as f3, type AuditLogEntityKeyFilterProperty as f4, type AdvancedAuditLogEntityKeyFilter as f5, type EntityTypeFilterProperty as f6, type AdvancedEntityTypeFilter as f7, type OperationTypeFilterProperty as f8, type AdvancedOperationTypeFilter as f9, type BatchOperationError as fA, type BatchOperationItemSearchQuerySortRequest as fB, type BatchOperationItemSearchQuery as fC, type BatchOperationItemFilter as fD, type BatchOperationItemSearchQueryResult as fE, type BatchOperationItemResponse as fF, type DecisionInstanceDeletionBatchOperationRequest as fG, type ProcessInstanceCancellationBatchOperationRequest as fH, type ProcessInstanceIncidentResolutionBatchOperationRequest as fI, type ProcessInstanceDeletionBatchOperationRequest as fJ, type ProcessInstanceMigrationBatchOperationRequest as fK, type ProcessInstanceMigrationBatchOperationPlan as fL, type ProcessInstanceModificationBatchOperationRequest as fM, type ProcessInstanceModificationMoveBatchOperationInstruction as fN, BatchOperationItemStateEnum as fO, BatchOperationStateEnum as fP, BatchOperationTypeEnum as fQ, type BatchOperationTypeFilterProperty as fR, type AdvancedBatchOperationTypeFilter as fS, type BatchOperationStateFilterProperty as fT, type AdvancedBatchOperationStateFilter as fU, type BatchOperationItemStateFilterProperty as fV, type AdvancedBatchOperationItemStateFilter as fW, type ClockPinRequest as fX, ClusterVariableScopeEnum as fY, type CreateClusterVariableRequest as fZ, type UpdateClusterVariableRequest as f_, type CategoryFilterProperty as fa, type AdvancedCategoryFilter as fb, type AuditLogResultFilterProperty as fc, type AdvancedResultFilter as fd, type AuditLogActorTypeFilterProperty as fe, type AdvancedActorTypeFilter as ff, type CamundaUserResult as fg, type AuthorizationIdBasedRequest as fh, type AuthorizationPropertyBasedRequest as fi, type AuthorizationRequest as fj, type AuthorizationSearchQuerySortRequest as fk, type AuthorizationSearchQuery as fl, type AuthorizationFilter as fm, type AuthorizationResult as fn, type AuthorizationSearchResult as fo, type AuthorizationCreateResult as fp, PermissionTypeEnum as fq, ResourceTypeEnum as fr, OwnerTypeEnum as fs, AuthorizationKey as ft, type BatchOperationCreatedResult as fu, type BatchOperationSearchQuerySortRequest as fv, type BatchOperationSearchQuery as fw, type BatchOperationFilter as fx, type BatchOperationSearchQueryResult as fy, type BatchOperationResponse as fz, CamundaValidationError as g, type ResourceSearchQuery as g$, type ClusterVariableSearchResult as g0, type ClusterVariableResultBase as g1, type ClusterVariableSearchQueryRequest as g2, type ClusterVariableSearchQuerySortRequest as g3, type ClusterVariableSearchQueryFilterRequest as g4, type ClusterVariableScopeFilterProperty as g5, type AdvancedClusterVariableScopeFilter as g6, type ClusterVariableSearchQueryResult as g7, type TopologyResponse as g8, type BrokerInfo as g9, type MatchedDecisionRuleItem as gA, DecisionDefinitionTypeEnum as gB, DecisionInstanceStateEnum as gC, type AdvancedDecisionInstanceStateFilter as gD, type DecisionInstanceStateFilterProperty as gE, type DecisionRequirementsSearchQuerySortRequest as gF, type DecisionRequirementsSearchQuery as gG, type DecisionRequirementsFilter as gH, type DecisionRequirementsSearchQueryResult as gI, type DecisionRequirementsResult as gJ, type DeploymentResult as gK, type DeploymentMetadataResult as gL, type DeploymentProcessResult as gM, type DeploymentDecisionResult as gN, type DeploymentDecisionRequirementsResult as gO, type DeploymentFormResult as gP, type DeploymentResourceResult as gQ, type DeleteResourceRequest as gR, type DeleteResourceResponse as gS, type ResourceResult as gT, DeploymentKey as gU, type ResourceKey as gV, type DeploymentKeyFilterProperty as gW, type AdvancedDeploymentKeyFilter as gX, type ResourceKeyFilterProperty as gY, type AdvancedResourceKeyFilter as gZ, type ResourceSearchQuerySortRequest as g_, type Partition as ga, type ConditionalEvaluationInstruction as gb, type EvaluateConditionalResult as gc, ConditionalEvaluationKey as gd, type ProcessInstanceReference as ge, StartCursor as gf, EndCursor as gg, type DecisionDefinitionSearchQuerySortRequest as gh, type DecisionDefinitionSearchQuery as gi, type DecisionDefinitionFilter as gj, type DecisionDefinitionSearchQueryResult as gk, type DecisionDefinitionResult as gl, type DecisionEvaluationInstruction as gm, type DecisionEvaluationById as gn, type DecisionEvaluationByKey as go, type EvaluateDecisionResult as gp, type EvaluatedDecisionResult as gq, type DecisionInstanceSearchQuerySortRequest as gr, type DecisionInstanceSearchQuery as gs, type DecisionInstanceFilter as gt, type DeleteDecisionInstanceRequest as gu, type DecisionInstanceSearchQueryResult as gv, type DecisionInstanceResult as gw, type DecisionInstanceGetQueryResult as gx, type EvaluatedDecisionInputItem as gy, type EvaluatedDecisionOutputItem as gz, EventualConsistencyTimeoutError as h, type GlobalTaskListenerSearchQueryFilterRequest as h$, type ResourceFilter as h0, type ResourceSearchQueryResult as h1, type DocumentReference as h2, type DocumentCreationFailureDetail as h3, type DocumentCreationBatchResponse as h4, type DocumentMetadata as h5, type DocumentMetadataResponse as h6, type DocumentLinkRequest as h7, type DocumentLink as h8, DocumentId as h9, type TimerWaitStateDetails as hA, type SignalWaitStateDetails as hB, type ConditionWaitStateDetails as hC, type AdHocSubProcessActivateActivityReference as hD, type ExpressionEvaluationRequest as hE, type ExpressionEvaluationResult as hF, type ExpressionEvaluationWarningItem as hG, type LikeFilter as hH, type BasicStringFilter as hI, type AdvancedStringFilter as hJ, type BasicStringFilterProperty as hK, type StringFilterProperty as hL, type AdvancedIntegerFilter as hM, type IntegerFilterProperty as hN, type AdvancedDateTimeFilter as hO, type DateTimeFilterProperty as hP, type FormResult as hQ, GlobalListenerSourceEnum as hR, GlobalTaskListenerEventTypeEnum as hS, type GlobalListenerBase as hT, type GlobalTaskListenerBase as hU, type GlobalTaskListenerEventTypes as hV, type CreateGlobalTaskListenerRequest as hW, type UpdateGlobalTaskListenerRequest as hX, type GlobalTaskListenerResult as hY, type GlobalTaskListenerSearchQueryRequest as hZ, type GlobalTaskListenerSearchQuerySortRequest as h_, type ElementInstanceSearchQuerySortRequest as ha, type ElementInstanceWaitStateQuerySortRequest as hb, type ElementInstanceSearchQuery as hc, type ElementInstanceFilter as hd, type ElementInstanceFilterFields as he, type ElementInstanceStateFilterProperty as hf, type AdvancedElementInstanceStateFilter as hg, type ElementInstanceSearchQueryResult as hh, type ElementInstanceResult as hi, ElementInstanceStateEnum as hj, type AdHocSubProcessActivateActivitiesInstruction as hk, type ElementInstanceWaitStateQuery as hl, type ElementInstanceWaitStateFilter as hm, type WaitStateElementTypeFilterProperty as hn, type AdvancedWaitStateElementTypeFilter as ho, WaitStateElementTypeEnum as hp, type WaitStateTypeFilterProperty as hq, type AdvancedWaitStateTypeFilter as hr, type ElementInstanceWaitStateQueryResult as hs, type ElementInstanceWaitStateResult as ht, type WaitStateDetails as hu, WaitStateTypeEnum as hv, type BaseWaitStateDetails as hw, type JobWaitStateDetails as hx, type MessageWaitStateDetails as hy, type UserTaskWaitStateDetails as hz, isLeft as i, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as i$, type GlobalListenerSourceFilterProperty as i0, type AdvancedGlobalListenerSourceFilter as i1, type GlobalTaskListenerEventTypeFilterProperty as i2, type AdvancedGlobalTaskListenerEventTypeFilter as i3, type GlobalTaskListenerSearchQueryResult as i4, type GroupCreateRequest as i5, type GroupCreateResult as i6, type GroupUpdateRequest as i7, type GroupUpdateResult as i8, type GroupResult as i9, ClientId as iA, ClusterVariableName as iB, Tag as iC, type TagSet as iD, BusinessId as iE, type IterationId as iF, type ElementIdFilterProperty as iG, type AdvancedElementIdFilter as iH, type ProcessDefinitionIdFilterProperty as iI, type AdvancedProcessDefinitionIdFilter as iJ, type IncidentSearchQuery as iK, type IncidentFilter as iL, type IncidentErrorTypeFilterProperty as iM, type AdvancedIncidentErrorTypeFilter as iN, IncidentErrorTypeEnum as iO, type IncidentStateFilterProperty as iP, type AdvancedIncidentStateFilter as iQ, IncidentStateEnum as iR, type IncidentSearchQuerySortRequest as iS, type IncidentSearchQueryResult as iT, type IncidentResult as iU, type IncidentResolutionRequest as iV, type IncidentProcessInstanceStatisticsByErrorQuery as iW, type IncidentProcessInstanceStatisticsByErrorQueryResult as iX, type IncidentProcessInstanceStatisticsByErrorResult as iY, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as iZ, type IncidentProcessInstanceStatisticsByDefinitionQuery as i_, type GroupSearchQuerySortRequest as ia, type GroupSearchQueryRequest as ib, type GroupFilter as ic, type GroupSearchQueryResult as id, type GroupUserResult as ie, type GroupUserSearchResult as ig, type GroupUserSearchQueryRequest as ih, type GroupUserSearchQuerySortRequest as ii, type GroupClientResult as ij, type GroupClientSearchResult as ik, type GroupClientSearchQueryRequest as il, type GroupMappingRuleSearchResult as im, type GroupRoleSearchResult as io, type GroupClientSearchQuerySortRequest as ip, ProcessDefinitionId as iq, ElementId as ir, FormId as is, DecisionDefinitionId as it, GlobalListenerId as iu, TenantId as iv, Username as iw, RoleId as ix, GroupId as iy, MappingRuleId as iz, isSdkError as j, DecisionEvaluationKey as j$, type IncidentProcessInstanceStatisticsByDefinitionResult as j0, type IncidentProcessInstanceStatisticsByDefinitionFilter as j1, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as j2, type GlobalJobStatisticsQueryResult as j3, type StatusMetric as j4, type JobTypeStatisticsQuery as j5, type JobTypeStatisticsFilter as j6, type JobTypeStatisticsQueryResult as j7, type JobTypeStatisticsItem as j8, type JobWorkerStatisticsQuery as j9, type JobResultAdHocSubProcess as jA, type JobResultActivateElement as jB, type JobUpdateRequest as jC, type JobChangeset as jD, type JobBatchUpdateRequest as jE, TenantFilterEnum as jF, JobStateEnum as jG, JobKindEnum as jH, JobListenerEventTypeEnum as jI, type JobKindFilterProperty as jJ, type AdvancedJobKindFilter as jK, type JobListenerEventTypeFilterProperty as jL, type AdvancedJobListenerEventTypeFilter as jM, type JobStateFilterProperty as jN, type AdvancedJobStateFilter as jO, type LongKey as jP, ProcessInstanceKey as jQ, ProcessDefinitionKey as jR, ElementInstanceKey as jS, UserTaskKey as jT, FormKey as jU, VariableKey as jV, type ScopeKey as jW, IncidentKey as jX, JobKey as jY, DecisionDefinitionKey as jZ, DecisionEvaluationInstanceKey as j_, type JobWorkerStatisticsFilter as ja, type JobWorkerStatisticsQueryResult as jb, type JobWorkerStatisticsItem as jc, type JobTimeSeriesStatisticsQuery as jd, type JobTimeSeriesStatisticsFilter as je, type JobTimeSeriesStatisticsQueryResult as jf, type JobTimeSeriesStatisticsItem as jg, type JobErrorStatisticsQuery as jh, type JobErrorStatisticsFilter as ji, type JobErrorStatisticsQueryResult as jj, type JobErrorStatisticsItem as jk, type JobActivationRequest as jl, type JobActivationResult as jm, type ActivatedJobResult$1 as jn, type UserTaskProperties as jo, type JobSearchQuery as jp, type JobSearchQuerySortRequest as jq, type JobFilter as jr, type JobSearchQueryResult as js, type JobSearchResult as jt, type JobFailRequest as ju, type JobErrorRequest$1 as jv, type JobCompletionRequest as jw, type JobResult as jx, type JobResultUserTask as jy, type JobResultCorrections as jz, type EnrichedActivatedJob as k, type MessageSubscriptionTypeFilterProperty as k$, DecisionRequirementsKey as k0, DecisionInstanceKey as k1, BatchOperationKey as k2, type OperationReference as k3, AgentInstanceKey as k4, AgentHistoryItemKey as k5, AuditLogKey as k6, type ProcessDefinitionKeyFilterProperty as k7, type AdvancedProcessDefinitionKeyFilter as k8, type ProcessInstanceKeyFilterProperty as k9, type MappingRuleCreateUpdateRequest as kA, type MappingRuleCreateRequest as kB, type MappingRuleUpdateRequest as kC, type MappingRuleCreateUpdateResult as kD, type MappingRuleCreateResult as kE, type MappingRuleUpdateResult as kF, type MappingRuleSearchQueryResult as kG, type MappingRuleResult as kH, type MappingRuleSearchQuerySortRequest as kI, type MappingRuleSearchQueryRequest as kJ, type MappingRuleFilter as kK, type MessageCorrelationRequest as kL, type MessageCorrelationResult as kM, type MessagePublicationRequest as kN, type MessagePublicationResult as kO, type MessageSubscriptionSearchQueryResult as kP, type MessageSubscriptionResult as kQ, type MessageSubscriptionSearchQuerySortRequest as kR, type MessageSubscriptionSearchQuery as kS, type MessageSubscriptionFilter as kT, type CorrelatedMessageSubscriptionSearchQueryResult as kU, type CorrelatedMessageSubscriptionResult as kV, type CorrelatedMessageSubscriptionSearchQuery as kW, type CorrelatedMessageSubscriptionSearchQuerySortRequest as kX, MessageSubscriptionStateEnum as kY, MessageSubscriptionTypeEnum as kZ, type CorrelatedMessageSubscriptionFilter as k_, type AdvancedProcessInstanceKeyFilter as ka, type ElementInstanceKeyFilterProperty as kb, type AdvancedElementInstanceKeyFilter as kc, type JobKeyFilterProperty as kd, type AdvancedJobKeyFilter as ke, type DecisionDefinitionKeyFilterProperty as kf, type AdvancedDecisionDefinitionKeyFilter as kg, type ScopeKeyFilterProperty as kh, type AdvancedScopeKeyFilter as ki, type VariableKeyFilterProperty as kj, type AdvancedVariableKeyFilter as kk, type DecisionEvaluationInstanceKeyFilterProperty as kl, type AdvancedDecisionEvaluationInstanceKeyFilter as km, type AgentInstanceKeyFilterProperty as kn, type AdvancedAgentInstanceKeyFilter as ko, type AgentHistoryItemKeyFilterProperty as kp, type AdvancedAgentHistoryItemKeyFilter as kq, type AuditLogKeyFilterProperty as kr, type AdvancedAuditLogKeyFilter as ks, type FormKeyFilterProperty as kt, type AdvancedFormKeyFilter as ku, type DecisionEvaluationKeyFilterProperty as kv, type AdvancedDecisionEvaluationKeyFilter as kw, type DecisionRequirementsKeyFilterProperty as kx, type AdvancedDecisionRequirementsKeyFilter as ky, type LicenseResponse as kz, JobActionReceipt as l, type ProcessInstanceModificationTerminateByIdInstruction as l$, type AdvancedMessageSubscriptionTypeFilter as l0, type MessageSubscriptionStateFilterProperty as l1, type AdvancedMessageSubscriptionStateFilter as l2, type AdvancedMessageSubscriptionKeyFilter as l3, type MessageSubscriptionKeyFilterProperty as l4, MessageSubscriptionKey as l5, MessageKey as l6, type ProblemDetail as l7, type ProcessDefinitionSearchQuerySortRequest as l8, type ProcessDefinitionSearchQuery as l9, type ProcessInstanceSearchQuery as lA, type BaseProcessInstanceFilterFields as lB, type ProcessDefinitionStatisticsFilter as lC, type ProcessInstanceFilterFields as lD, type ProcessInstanceFilter as lE, type ProcessInstanceSearchQueryResult as lF, type ProcessInstanceResult as lG, type CancelProcessInstanceRequest as lH, type DeleteProcessInstanceRequest as lI, type ProcessInstanceCallHierarchyEntry as lJ, type ProcessInstanceSequenceFlowsQueryResult as lK, type ProcessInstanceSequenceFlowResult as lL, type ProcessInstanceElementStatisticsQueryResult as lM, type ProcessInstanceMigrationInstruction as lN, type MigrateProcessInstanceMappingInstruction as lO, type ProcessInstanceModificationInstruction as lP, type ProcessInstanceModificationActivateInstruction as lQ, type ModifyProcessInstanceVariableInstruction as lR, type ProcessInstanceModificationMoveInstruction as lS, type SourceElementInstruction as lT, type SourceElementIdInstruction as lU, type SourceElementInstanceKeyInstruction as lV, type AncestorScopeInstruction as lW, type DirectAncestorKeyInstruction as lX, type InferredAncestorKeyInstruction as lY, type UseSourceParentKeyInstruction as lZ, type ProcessInstanceModificationTerminateInstruction as l_, type ProcessDefinitionFilter as la, type ProcessDefinitionSearchQueryResult as lb, type ProcessDefinitionResult as lc, type ProcessDefinitionElementStatisticsQuery as ld, type ProcessDefinitionElementStatisticsQueryResult as le, type ProcessElementStatisticsResult as lf, type ProcessDefinitionMessageSubscriptionStatisticsQuery as lg, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as lh, type ProcessDefinitionMessageSubscriptionStatisticsResult as li, type ProcessDefinitionInstanceStatisticsQuery as lj, type ProcessDefinitionInstanceStatisticsQueryResult as lk, type ProcessDefinitionInstanceStatisticsResult as ll, type ProcessDefinitionInstanceStatisticsQuerySortRequest as lm, type ProcessDefinitionInstanceVersionStatisticsQuery as ln, type ProcessDefinitionInstanceVersionStatisticsFilter as lo, type ProcessDefinitionInstanceVersionStatisticsQueryResult as lp, type ProcessDefinitionInstanceVersionStatisticsResult as lq, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as lr, type ProcessInstanceCreationInstruction as ls, type ProcessInstanceCreationInstructionById as lt, type ProcessInstanceCreationInstructionByKey as lu, type ProcessInstanceCreationStartInstruction as lv, type ProcessInstanceCreationRuntimeInstruction as lw, type ProcessInstanceCreationTerminateInstruction as lx, type CreateProcessInstanceResult as ly, type ProcessInstanceSearchQuerySortRequest as lz, JobWorker as m, type TenantClientSearchQueryRequest as m$, type ProcessInstanceModificationTerminateByKeyInstruction as m0, ProcessInstanceStateEnum as m1, type AdvancedProcessInstanceStateFilter as m2, type ProcessInstanceStateFilterProperty as m3, type RoleCreateRequest as m4, type RoleCreateResult as m5, type RoleUpdateRequest as m6, type RoleUpdateResult as m7, type RoleResult as m8, type RoleSearchQuerySortRequest as m9, type SignalBroadcastResult as mA, SignalKey as mB, type UsageMetricsResponse as mC, type UsageMetricsResponseItem as mD, type SystemConfigurationResponse as mE, type JobMetricsConfigurationResponse as mF, type ComponentsConfigurationResponse as mG, type DeploymentConfigurationResponse as mH, type AuthenticationConfigurationResponse as mI, type CloudConfigurationResponse as mJ, type WebappComponent as mK, type CloudStage as mL, type TenantCreateRequest as mM, type TenantCreateResult as mN, type TenantUpdateRequest as mO, type TenantUpdateResult as mP, type TenantResult as mQ, type TenantSearchQuerySortRequest as mR, type TenantSearchQueryRequest as mS, type TenantFilter as mT, type TenantSearchQueryResult as mU, type TenantUserResult as mV, type TenantUserSearchResult as mW, type TenantUserSearchQueryRequest as mX, type TenantUserSearchQuerySortRequest as mY, type TenantClientResult as mZ, type TenantClientSearchResult as m_, type RoleSearchQueryRequest as ma, type RoleFilter as mb, type RoleSearchQueryResult as mc, type RoleUserResult as md, type RoleUserSearchResult as me, type RoleUserSearchQueryRequest as mf, type RoleUserSearchQuerySortRequest as mg, type RoleClientResult as mh, type RoleClientSearchResult as mi, type RoleClientSearchQueryRequest as mj, type RoleClientSearchQuerySortRequest as mk, type RoleGroupResult as ml, type RoleGroupSearchResult as mm, type RoleGroupSearchQueryRequest as mn, type RoleMappingRuleSearchResult as mo, type RoleGroupSearchQuerySortRequest as mp, type SearchQueryRequest as mq, type SearchQueryPageRequest as mr, type LimitPagination as ms, type OffsetPagination as mt, type CursorForwardPagination as mu, type CursorBackwardPagination as mv, type SearchQueryResponse as mw, SortOrderEnum as mx, type SearchQueryPageResponse as my, type SignalBroadcastRequest as mz, type JobWorkerConfig as n, type GlobalTaskListenerEventTypeExactMatch as n$, type TenantClientSearchQuerySortRequest as n0, type TenantGroupResult as n1, type TenantGroupSearchResult as n2, type TenantGroupSearchQueryRequest as n3, type TenantRoleSearchResult as n4, type TenantMappingRuleSearchResult as n5, type TenantGroupSearchQuerySortRequest as n6, type UserTaskSearchQuerySortRequest as n7, type UserTaskSearchQuery as n8, type UserTaskFilter as n9, type VariableFilter as nA, type VariableSearchQueryResult as nB, type VariableSearchResult as nC, type VariableResult as nD, type VariableResultBase as nE, type VariableValueFilterProperty as nF, type SetVariableRequest as nG, type AgentInstanceStatusExactMatch as nH, type AgentInstanceHistoryRoleExactMatch as nI, type AgentInstanceHistoryCommitStatusExactMatch as nJ, type AuditLogEntityKeyExactMatch as nK, type EntityTypeExactMatch as nL, type OperationTypeExactMatch as nM, type CategoryExactMatch as nN, type AuditLogResultExactMatch as nO, type AuditLogActorTypeExactMatch as nP, type BatchOperationTypeExactMatch as nQ, type BatchOperationStateExactMatch as nR, type BatchOperationItemStateExactMatch as nS, type ClusterVariableScopeExactMatch as nT, type DecisionInstanceStateExactMatch as nU, type DeploymentKeyExactMatch as nV, type ResourceKeyExactMatch as nW, type ElementInstanceStateExactMatch as nX, type WaitStateElementTypeExactMatch as nY, type WaitStateTypeExactMatch as nZ, type GlobalListenerSourceExactMatch as n_, type UserTaskSearchQueryResult as na, type UserTaskResult as nb, type UserTaskCompletionRequest as nc, type UserTaskAssignmentRequest as nd, type UserTaskUpdateRequest as ne, type Changeset as nf, type UserTaskVariableSearchQuerySortRequest as ng, type UserTaskVariableSearchQueryRequest as nh, type UserTaskEffectiveVariableSearchQueryRequest as ni, type UserTaskAuditLogSearchQueryRequest as nj, UserTaskStateEnum as nk, type UserTaskVariableFilter as nl, type UserTaskStateFilterProperty as nm, type AdvancedUserTaskStateFilter as nn, type UserTaskAuditLogFilter as no, type UserRequest as np, type UserCreateResult as nq, type UserUpdateRequest as nr, type UserUpdateResult as ns, type UserResult as nt, type UserSearchQuerySortRequest as nu, type UserSearchQueryRequest as nv, type UserFilter as nw, type UserSearchResult as nx, type VariableSearchQuerySortRequest as ny, type VariableSearchQuery as nz, type SupportLogger as o, type GetAuditLogError as o$, type ElementIdExactMatch as o0, type ProcessDefinitionIdExactMatch as o1, type IncidentErrorTypeExactMatch as o2, type IncidentStateExactMatch as o3, type JobKindExactMatch as o4, type JobListenerEventTypeExactMatch as o5, type JobStateExactMatch as o6, type ProcessDefinitionKeyExactMatch as o7, type ProcessInstanceKeyExactMatch as o8, type ElementInstanceKeyExactMatch as o9, type UpdateAgentInstanceData as oA, type UpdateAgentInstanceErrors as oB, type UpdateAgentInstanceError as oC, type UpdateAgentInstanceResponses as oD, type UpdateAgentInstanceResponse as oE, type SearchAgentInstancesData as oF, type SearchAgentInstancesErrors as oG, type SearchAgentInstancesError as oH, type SearchAgentInstancesResponses as oI, type SearchAgentInstancesResponse as oJ, type CreateAgentInstanceHistoryItemData as oK, type CreateAgentInstanceHistoryItemErrors as oL, type CreateAgentInstanceHistoryItemError as oM, type CreateAgentInstanceHistoryItemResponses as oN, type CreateAgentInstanceHistoryItemResponse as oO, type SearchAgentInstanceHistoryData as oP, type SearchAgentInstanceHistoryErrors as oQ, type SearchAgentInstanceHistoryError as oR, type SearchAgentInstanceHistoryResponses as oS, type SearchAgentInstanceHistoryResponse as oT, type SearchAuditLogsData as oU, type SearchAuditLogsErrors as oV, type SearchAuditLogsError as oW, type SearchAuditLogsResponses as oX, type SearchAuditLogsResponse as oY, type GetAuditLogData as oZ, type GetAuditLogErrors as o_, type JobKeyExactMatch as oa, type DecisionDefinitionKeyExactMatch as ob, type ScopeKeyExactMatch as oc, type VariableKeyExactMatch as od, type DecisionEvaluationInstanceKeyExactMatch as oe, type AgentInstanceKeyExactMatch as of, type AgentHistoryItemKeyExactMatch as og, type AuditLogKeyExactMatch as oh, type FormKeyExactMatch as oi, type DecisionEvaluationKeyExactMatch as oj, type DecisionRequirementsKeyExactMatch as ok, type MessageSubscriptionTypeExactMatch as ol, type MessageSubscriptionStateExactMatch as om, type MessageSubscriptionKeyExactMatch as on, type ProcessInstanceStateExactMatch as oo, type UserTaskStateExactMatch as op, type CreateAgentInstanceData as oq, type CreateAgentInstanceErrors as or, type CreateAgentInstanceError as os, type CreateAgentInstanceResponses as ot, type CreateAgentInstanceResponse as ou, type GetAgentInstanceData as ov, type GetAgentInstanceErrors as ow, type GetAgentInstanceError as ox, type GetAgentInstanceResponses as oy, type GetAgentInstanceResponse as oz, type ThreadedJob as p, type PinClockErrors as p$, type GetAuditLogResponses as p0, type GetAuditLogResponse as p1, type GetAuthenticationData as p2, type GetAuthenticationErrors as p3, type GetAuthenticationError as p4, type GetAuthenticationResponses as p5, type GetAuthenticationResponse as p6, type CreateAuthorizationData as p7, type CreateAuthorizationErrors as p8, type CreateAuthorizationError as p9, type SearchBatchOperationItemsResponse as pA, type SearchBatchOperationsData as pB, type SearchBatchOperationsErrors as pC, type SearchBatchOperationsError as pD, type SearchBatchOperationsResponses as pE, type SearchBatchOperationsResponse as pF, type GetBatchOperationData as pG, type GetBatchOperationErrors as pH, type GetBatchOperationError as pI, type GetBatchOperationResponses as pJ, type GetBatchOperationResponse as pK, type CancelBatchOperationData as pL, type CancelBatchOperationErrors as pM, type CancelBatchOperationError as pN, type CancelBatchOperationResponses as pO, type CancelBatchOperationResponse as pP, type ResumeBatchOperationData as pQ, type ResumeBatchOperationErrors as pR, type ResumeBatchOperationError as pS, type ResumeBatchOperationResponses as pT, type ResumeBatchOperationResponse as pU, type SuspendBatchOperationData as pV, type SuspendBatchOperationErrors as pW, type SuspendBatchOperationError as pX, type SuspendBatchOperationResponses as pY, type SuspendBatchOperationResponse as pZ, type PinClockData as p_, type CreateAuthorizationResponses as pa, type CreateAuthorizationResponse as pb, type SearchAuthorizationsData as pc, type SearchAuthorizationsErrors as pd, type SearchAuthorizationsError as pe, type SearchAuthorizationsResponses as pf, type SearchAuthorizationsResponse as pg, type DeleteAuthorizationData as ph, type DeleteAuthorizationErrors as pi, type DeleteAuthorizationError as pj, type DeleteAuthorizationResponses as pk, type DeleteAuthorizationResponse as pl, type GetAuthorizationData as pm, type GetAuthorizationErrors as pn, type GetAuthorizationError as po, type GetAuthorizationResponses as pp, type GetAuthorizationResponse as pq, type UpdateAuthorizationData as pr, type UpdateAuthorizationErrors as ps, type UpdateAuthorizationError as pt, type UpdateAuthorizationResponses as pu, type UpdateAuthorizationResponse as pv, type SearchBatchOperationItemsData as pw, type SearchBatchOperationItemsErrors as px, type SearchBatchOperationItemsError as py, type SearchBatchOperationItemsResponses as pz, type ThreadedJobHandler as q, type EvaluateDecisionData as q$, type PinClockError as q0, type PinClockResponses as q1, type PinClockResponse as q2, type ResetClockData as q3, type ResetClockErrors as q4, type ResetClockError as q5, type ResetClockResponses as q6, type ResetClockResponse as q7, type CreateGlobalClusterVariableData as q8, type CreateGlobalClusterVariableErrors as q9, type CreateTenantClusterVariableResponses as qA, type CreateTenantClusterVariableResponse as qB, type DeleteTenantClusterVariableData as qC, type DeleteTenantClusterVariableErrors as qD, type DeleteTenantClusterVariableError as qE, type DeleteTenantClusterVariableResponses as qF, type DeleteTenantClusterVariableResponse as qG, type GetTenantClusterVariableData as qH, type GetTenantClusterVariableErrors as qI, type GetTenantClusterVariableError as qJ, type GetTenantClusterVariableResponses as qK, type GetTenantClusterVariableResponse as qL, type UpdateTenantClusterVariableData as qM, type UpdateTenantClusterVariableErrors as qN, type UpdateTenantClusterVariableError as qO, type UpdateTenantClusterVariableResponses as qP, type UpdateTenantClusterVariableResponse as qQ, type EvaluateConditionalsData as qR, type EvaluateConditionalsErrors as qS, type EvaluateConditionalsError as qT, type EvaluateConditionalsResponses as qU, type EvaluateConditionalsResponse as qV, type SearchCorrelatedMessageSubscriptionsData as qW, type SearchCorrelatedMessageSubscriptionsErrors as qX, type SearchCorrelatedMessageSubscriptionsError as qY, type SearchCorrelatedMessageSubscriptionsResponses as qZ, type SearchCorrelatedMessageSubscriptionsResponse as q_, type CreateGlobalClusterVariableError as qa, type CreateGlobalClusterVariableResponses as qb, type CreateGlobalClusterVariableResponse as qc, type DeleteGlobalClusterVariableData as qd, type DeleteGlobalClusterVariableErrors as qe, type DeleteGlobalClusterVariableError as qf, type DeleteGlobalClusterVariableResponses as qg, type DeleteGlobalClusterVariableResponse as qh, type GetGlobalClusterVariableData as qi, type GetGlobalClusterVariableErrors as qj, type GetGlobalClusterVariableError as qk, type GetGlobalClusterVariableResponses as ql, type GetGlobalClusterVariableResponse as qm, type UpdateGlobalClusterVariableData as qn, type UpdateGlobalClusterVariableErrors as qo, type UpdateGlobalClusterVariableError as qp, type UpdateGlobalClusterVariableResponses as qq, type UpdateGlobalClusterVariableResponse as qr, type SearchClusterVariablesData as qs, type SearchClusterVariablesErrors as qt, type SearchClusterVariablesError as qu, type SearchClusterVariablesResponses as qv, type SearchClusterVariablesResponse as qw, type CreateTenantClusterVariableData as qx, type CreateTenantClusterVariableErrors as qy, type CreateTenantClusterVariableError as qz, ThreadedJobWorker as r, type CreateDocumentResponse as r$, type EvaluateDecisionErrors as r0, type EvaluateDecisionError as r1, type EvaluateDecisionResponses as r2, type EvaluateDecisionResponse as r3, type SearchDecisionDefinitionsData as r4, type SearchDecisionDefinitionsErrors as r5, type SearchDecisionDefinitionsError as r6, type SearchDecisionDefinitionsResponses as r7, type SearchDecisionDefinitionsResponse as r8, type GetDecisionDefinitionData as r9, type DeleteDecisionInstancesBatchOperationError as rA, type DeleteDecisionInstancesBatchOperationResponses as rB, type DeleteDecisionInstancesBatchOperationResponse as rC, type SearchDecisionRequirementsData as rD, type SearchDecisionRequirementsErrors as rE, type SearchDecisionRequirementsError as rF, type SearchDecisionRequirementsResponses as rG, type SearchDecisionRequirementsResponse as rH, type GetDecisionRequirementsData as rI, type GetDecisionRequirementsErrors as rJ, type GetDecisionRequirementsError as rK, type GetDecisionRequirementsResponses as rL, type GetDecisionRequirementsResponse as rM, type GetDecisionRequirementsXmlData as rN, type GetDecisionRequirementsXmlErrors as rO, type GetDecisionRequirementsXmlError as rP, type GetDecisionRequirementsXmlResponses as rQ, type GetDecisionRequirementsXmlResponse as rR, type CreateDeploymentData as rS, type CreateDeploymentErrors as rT, type CreateDeploymentError as rU, type CreateDeploymentResponses as rV, type CreateDeploymentResponse as rW, type CreateDocumentData as rX, type CreateDocumentErrors as rY, type CreateDocumentError as rZ, type CreateDocumentResponses as r_, type GetDecisionDefinitionErrors as ra, type GetDecisionDefinitionError as rb, type GetDecisionDefinitionResponses as rc, type GetDecisionDefinitionResponse as rd, type GetDecisionDefinitionXmlData as re, type GetDecisionDefinitionXmlErrors as rf, type GetDecisionDefinitionXmlError as rg, type GetDecisionDefinitionXmlResponses as rh, type GetDecisionDefinitionXmlResponse as ri, type SearchDecisionInstancesData as rj, type SearchDecisionInstancesErrors as rk, type SearchDecisionInstancesError as rl, type SearchDecisionInstancesResponses as rm, type SearchDecisionInstancesResponse as rn, type GetDecisionInstanceData as ro, type GetDecisionInstanceErrors as rp, type GetDecisionInstanceError as rq, type GetDecisionInstanceResponses as rr, type GetDecisionInstanceResponse as rs, type DeleteDecisionInstanceData as rt, type DeleteDecisionInstanceErrors as ru, type DeleteDecisionInstanceError as rv, type DeleteDecisionInstanceResponses as rw, type DeleteDecisionInstanceResponse as rx, type DeleteDecisionInstancesBatchOperationData as ry, type DeleteDecisionInstancesBatchOperationErrors as rz, type ThreadedJobWorkerConfig as s, type CreateGlobalTaskListenerResponses as s$, type CreateDocumentsData as s0, type CreateDocumentsErrors as s1, type CreateDocumentsError as s2, type CreateDocumentsResponses as s3, type CreateDocumentsResponse as s4, type DeleteDocumentData as s5, type DeleteDocumentErrors as s6, type DeleteDocumentError as s7, type DeleteDocumentResponses as s8, type DeleteDocumentResponse as s9, type GetElementInstanceErrors as sA, type GetElementInstanceError as sB, type GetElementInstanceResponses as sC, type GetElementInstanceResponse as sD, type SearchElementInstanceIncidentsData as sE, type SearchElementInstanceIncidentsErrors as sF, type SearchElementInstanceIncidentsError as sG, type SearchElementInstanceIncidentsResponses as sH, type SearchElementInstanceIncidentsResponse as sI, type CreateElementInstanceVariablesData as sJ, type CreateElementInstanceVariablesErrors as sK, type CreateElementInstanceVariablesError as sL, type CreateElementInstanceVariablesResponses as sM, type CreateElementInstanceVariablesResponse as sN, type EvaluateExpressionData as sO, type EvaluateExpressionErrors as sP, type EvaluateExpressionError as sQ, type EvaluateExpressionResponses as sR, type EvaluateExpressionResponse as sS, type GetFormByKeyData as sT, type GetFormByKeyErrors as sU, type GetFormByKeyError as sV, type GetFormByKeyResponses as sW, type GetFormByKeyResponse as sX, type CreateGlobalTaskListenerData as sY, type CreateGlobalTaskListenerErrors as sZ, type CreateGlobalTaskListenerError as s_, type GetDocumentData as sa, type GetDocumentErrors as sb, type GetDocumentError as sc, type GetDocumentResponses as sd, type GetDocumentResponse as se, type CreateDocumentLinkData as sf, type CreateDocumentLinkErrors as sg, type CreateDocumentLinkError as sh, type CreateDocumentLinkResponses as si, type CreateDocumentLinkResponse as sj, type ActivateAdHocSubProcessActivitiesData as sk, type ActivateAdHocSubProcessActivitiesErrors as sl, type ActivateAdHocSubProcessActivitiesError as sm, type ActivateAdHocSubProcessActivitiesResponses as sn, type ActivateAdHocSubProcessActivitiesResponse as so, type SearchElementInstanceWaitStatesData as sp, type SearchElementInstanceWaitStatesErrors as sq, type SearchElementInstanceWaitStatesError as sr, type SearchElementInstanceWaitStatesResponses as ss, type SearchElementInstanceWaitStatesResponse as st, type SearchElementInstancesData as su, type SearchElementInstancesErrors as sv, type SearchElementInstancesError as sw, type SearchElementInstancesResponses as sx, type SearchElementInstancesResponse as sy, type GetElementInstanceData as sz, ThreadPool as t, type SearchMappingRulesForGroupError as t$, type CreateGlobalTaskListenerResponse as t0, type DeleteGlobalTaskListenerData as t1, type DeleteGlobalTaskListenerErrors as t2, type DeleteGlobalTaskListenerError as t3, type DeleteGlobalTaskListenerResponses as t4, type DeleteGlobalTaskListenerResponse as t5, type GetGlobalTaskListenerData as t6, type GetGlobalTaskListenerErrors as t7, type GetGlobalTaskListenerError as t8, type GetGlobalTaskListenerResponses as t9, type GetGroupData as tA, type GetGroupErrors as tB, type GetGroupError as tC, type GetGroupResponses as tD, type GetGroupResponse as tE, type UpdateGroupData as tF, type UpdateGroupErrors as tG, type UpdateGroupError as tH, type UpdateGroupResponses as tI, type UpdateGroupResponse as tJ, type SearchClientsForGroupData as tK, type SearchClientsForGroupErrors as tL, type SearchClientsForGroupError as tM, type SearchClientsForGroupResponses as tN, type SearchClientsForGroupResponse as tO, type UnassignClientFromGroupData as tP, type UnassignClientFromGroupErrors as tQ, type UnassignClientFromGroupError as tR, type UnassignClientFromGroupResponses as tS, type UnassignClientFromGroupResponse as tT, type AssignClientToGroupData as tU, type AssignClientToGroupErrors as tV, type AssignClientToGroupError as tW, type AssignClientToGroupResponses as tX, type AssignClientToGroupResponse as tY, type SearchMappingRulesForGroupData as tZ, type SearchMappingRulesForGroupErrors as t_, type GetGlobalTaskListenerResponse as ta, type UpdateGlobalTaskListenerData as tb, type UpdateGlobalTaskListenerErrors as tc, type UpdateGlobalTaskListenerError as td, type UpdateGlobalTaskListenerResponses as te, type UpdateGlobalTaskListenerResponse as tf, type SearchGlobalTaskListenersData as tg, type SearchGlobalTaskListenersErrors as th, type SearchGlobalTaskListenersError as ti, type SearchGlobalTaskListenersResponses as tj, type SearchGlobalTaskListenersResponse as tk, type CreateGroupData as tl, type CreateGroupErrors as tm, type CreateGroupError as tn, type CreateGroupResponses as to, type CreateGroupResponse as tp, type SearchGroupsData as tq, type SearchGroupsErrors as tr, type SearchGroupsError as ts, type SearchGroupsResponses as tt, type SearchGroupsResponse as tu, type DeleteGroupData as tv, type DeleteGroupErrors as tw, type DeleteGroupError as tx, type DeleteGroupResponses as ty, type DeleteGroupResponse as tz, collectTypedVariables as u, type SearchJobsErrors as u$, type SearchMappingRulesForGroupResponses as u0, type SearchMappingRulesForGroupResponse as u1, type UnassignMappingRuleFromGroupData as u2, type UnassignMappingRuleFromGroupErrors as u3, type UnassignMappingRuleFromGroupError as u4, type UnassignMappingRuleFromGroupResponses as u5, type UnassignMappingRuleFromGroupResponse as u6, type AssignMappingRuleToGroupData as u7, type AssignMappingRuleToGroupErrors as u8, type AssignMappingRuleToGroupError as u9, type SearchIncidentsResponse as uA, type GetIncidentData as uB, type GetIncidentErrors as uC, type GetIncidentError as uD, type GetIncidentResponses as uE, type GetIncidentResponse as uF, type ResolveIncidentData as uG, type ResolveIncidentErrors as uH, type ResolveIncidentError as uI, type ResolveIncidentResponses as uJ, type ResolveIncidentResponse as uK, type GetProcessInstanceStatisticsByDefinitionData as uL, type GetProcessInstanceStatisticsByDefinitionErrors as uM, type GetProcessInstanceStatisticsByDefinitionError as uN, type GetProcessInstanceStatisticsByDefinitionResponses as uO, type GetProcessInstanceStatisticsByDefinitionResponse as uP, type GetProcessInstanceStatisticsByErrorData as uQ, type GetProcessInstanceStatisticsByErrorErrors as uR, type GetProcessInstanceStatisticsByErrorError as uS, type GetProcessInstanceStatisticsByErrorResponses as uT, type GetProcessInstanceStatisticsByErrorResponse as uU, type ActivateJobsData as uV, type ActivateJobsErrors as uW, type ActivateJobsError as uX, type ActivateJobsResponses as uY, type ActivateJobsResponse as uZ, type SearchJobsData as u_, type AssignMappingRuleToGroupResponses as ua, type AssignMappingRuleToGroupResponse as ub, type SearchRolesForGroupData as uc, type SearchRolesForGroupErrors as ud, type SearchRolesForGroupError as ue, type SearchRolesForGroupResponses as uf, type SearchRolesForGroupResponse as ug, type SearchUsersForGroupData as uh, type SearchUsersForGroupErrors as ui, type SearchUsersForGroupError as uj, type SearchUsersForGroupResponses as uk, type SearchUsersForGroupResponse as ul, type UnassignUserFromGroupData as um, type UnassignUserFromGroupErrors as un, type UnassignUserFromGroupError as uo, type UnassignUserFromGroupResponses as up, type UnassignUserFromGroupResponse as uq, type AssignUserToGroupData as ur, type AssignUserToGroupErrors as us, type AssignUserToGroupError as ut, type AssignUserToGroupResponses as uu, type AssignUserToGroupResponse as uv, type SearchIncidentsData as uw, type SearchIncidentsErrors as ux, type SearchIncidentsError as uy, type SearchIncidentsResponses as uz, type TypedVariableItem as v, type SearchMappingRuleData as v$, type SearchJobsError as v0, type SearchJobsResponses as v1, type SearchJobsResponse as v2, type UpdateJobData as v3, type UpdateJobErrors as v4, type UpdateJobError as v5, type UpdateJobResponses as v6, type UpdateJobResponse as v7, type CompleteJobData as v8, type CompleteJobErrors as v9, type GetJobTypeStatisticsResponses as vA, type GetJobTypeStatisticsResponse as vB, type GetJobWorkerStatisticsData as vC, type GetJobWorkerStatisticsErrors as vD, type GetJobWorkerStatisticsError as vE, type GetJobWorkerStatisticsResponses as vF, type GetJobWorkerStatisticsResponse as vG, type GetJobTimeSeriesStatisticsData as vH, type GetJobTimeSeriesStatisticsErrors as vI, type GetJobTimeSeriesStatisticsError as vJ, type GetJobTimeSeriesStatisticsResponses as vK, type GetJobTimeSeriesStatisticsResponse as vL, type GetJobErrorStatisticsData as vM, type GetJobErrorStatisticsErrors as vN, type GetJobErrorStatisticsError as vO, type GetJobErrorStatisticsResponses as vP, type GetJobErrorStatisticsResponse as vQ, type GetLicenseData as vR, type GetLicenseErrors as vS, type GetLicenseError as vT, type GetLicenseResponses as vU, type GetLicenseResponse as vV, type CreateMappingRuleData as vW, type CreateMappingRuleErrors as vX, type CreateMappingRuleError as vY, type CreateMappingRuleResponses as vZ, type CreateMappingRuleResponse as v_, type CompleteJobError as va, type CompleteJobResponses as vb, type CompleteJobResponse as vc, type ThrowJobErrorData as vd, type ThrowJobErrorErrors as ve, type ThrowJobErrorError as vf, type ThrowJobErrorResponses as vg, type ThrowJobErrorResponse as vh, type FailJobData as vi, type FailJobErrors as vj, type FailJobError as vk, type FailJobResponses as vl, type FailJobResponse as vm, type UpdateJobsBatchOperationData as vn, type UpdateJobsBatchOperationErrors as vo, type UpdateJobsBatchOperationError as vp, type UpdateJobsBatchOperationResponses as vq, type UpdateJobsBatchOperationResponse as vr, type GetGlobalJobStatisticsData as vs, type GetGlobalJobStatisticsErrors as vt, type GetGlobalJobStatisticsError as vu, type GetGlobalJobStatisticsResponses as vv, type GetGlobalJobStatisticsResponse as vw, type GetJobTypeStatisticsData as vx, type GetJobTypeStatisticsErrors as vy, type GetJobTypeStatisticsError as vz, type TypedVariablePage as w, type GetProcessDefinitionStatisticsResponse as w$, type SearchMappingRuleErrors as w0, type SearchMappingRuleError as w1, type SearchMappingRuleResponses as w2, type SearchMappingRuleResponse as w3, type DeleteMappingRuleData as w4, type DeleteMappingRuleErrors as w5, type DeleteMappingRuleError as w6, type DeleteMappingRuleResponses as w7, type DeleteMappingRuleResponse as w8, type GetMappingRuleData as w9, type SearchProcessDefinitionsError as wA, type SearchProcessDefinitionsResponses as wB, type SearchProcessDefinitionsResponse as wC, type GetProcessDefinitionMessageSubscriptionStatisticsData as wD, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as wE, type GetProcessDefinitionMessageSubscriptionStatisticsError as wF, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as wG, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as wH, type GetProcessDefinitionInstanceStatisticsData as wI, type GetProcessDefinitionInstanceStatisticsErrors as wJ, type GetProcessDefinitionInstanceStatisticsError as wK, type GetProcessDefinitionInstanceStatisticsResponses as wL, type GetProcessDefinitionInstanceStatisticsResponse as wM, type GetProcessDefinitionData as wN, type GetProcessDefinitionErrors as wO, type GetProcessDefinitionError as wP, type GetProcessDefinitionResponses as wQ, type GetProcessDefinitionResponse as wR, type GetStartProcessFormData as wS, type GetStartProcessFormErrors as wT, type GetStartProcessFormError as wU, type GetStartProcessFormResponses as wV, type GetStartProcessFormResponse as wW, type GetProcessDefinitionStatisticsData as wX, type GetProcessDefinitionStatisticsErrors as wY, type GetProcessDefinitionStatisticsError as wZ, type GetProcessDefinitionStatisticsResponses as w_, type GetMappingRuleErrors as wa, type GetMappingRuleError as wb, type GetMappingRuleResponses as wc, type GetMappingRuleResponse as wd, type UpdateMappingRuleData as we, type UpdateMappingRuleErrors as wf, type UpdateMappingRuleError as wg, type UpdateMappingRuleResponses as wh, type UpdateMappingRuleResponse as wi, type SearchMessageSubscriptionsData as wj, type SearchMessageSubscriptionsErrors as wk, type SearchMessageSubscriptionsError as wl, type SearchMessageSubscriptionsResponses as wm, type SearchMessageSubscriptionsResponse as wn, type CorrelateMessageData as wo, type CorrelateMessageErrors as wp, type CorrelateMessageError as wq, type CorrelateMessageResponses as wr, type CorrelateMessageResponse as ws, type PublishMessageData as wt, type PublishMessageErrors as wu, type PublishMessageError as wv, type PublishMessageResponses as ww, type PublishMessageResponse as wx, type SearchProcessDefinitionsData as wy, type SearchProcessDefinitionsErrors as wz, TypedVariablesError as x, type DeleteProcessInstanceResponses as x$, type GetProcessDefinitionXmlData as x0, type GetProcessDefinitionXmlErrors as x1, type GetProcessDefinitionXmlError as x2, type GetProcessDefinitionXmlResponses as x3, type GetProcessDefinitionXmlResponse as x4, type GetProcessDefinitionInstanceVersionStatisticsData as x5, type GetProcessDefinitionInstanceVersionStatisticsErrors as x6, type GetProcessDefinitionInstanceVersionStatisticsError as x7, type GetProcessDefinitionInstanceVersionStatisticsResponses as x8, type GetProcessDefinitionInstanceVersionStatisticsResponse as x9, type ModifyProcessInstancesBatchOperationErrors as xA, type ModifyProcessInstancesBatchOperationError as xB, type ModifyProcessInstancesBatchOperationResponses as xC, type ModifyProcessInstancesBatchOperationResponse as xD, type SearchProcessInstancesData as xE, type SearchProcessInstancesErrors as xF, type SearchProcessInstancesError as xG, type SearchProcessInstancesResponses as xH, type SearchProcessInstancesResponse as xI, type GetProcessInstanceData as xJ, type GetProcessInstanceErrors as xK, type GetProcessInstanceError as xL, type GetProcessInstanceResponses as xM, type GetProcessInstanceResponse as xN, type GetProcessInstanceCallHierarchyData as xO, type GetProcessInstanceCallHierarchyErrors as xP, type GetProcessInstanceCallHierarchyError as xQ, type GetProcessInstanceCallHierarchyResponses as xR, type GetProcessInstanceCallHierarchyResponse as xS, type CancelProcessInstanceData as xT, type CancelProcessInstanceErrors as xU, type CancelProcessInstanceError as xV, type CancelProcessInstanceResponses as xW, type CancelProcessInstanceResponse as xX, type DeleteProcessInstanceData as xY, type DeleteProcessInstanceErrors as xZ, type DeleteProcessInstanceError as x_, type CreateProcessInstanceData as xa, type CreateProcessInstanceErrors as xb, type CreateProcessInstanceError as xc, type CreateProcessInstanceResponses as xd, type CreateProcessInstanceResponse as xe, type CancelProcessInstancesBatchOperationData as xf, type CancelProcessInstancesBatchOperationErrors as xg, type CancelProcessInstancesBatchOperationError as xh, type CancelProcessInstancesBatchOperationResponses as xi, type CancelProcessInstancesBatchOperationResponse as xj, type DeleteProcessInstancesBatchOperationData as xk, type DeleteProcessInstancesBatchOperationErrors as xl, type DeleteProcessInstancesBatchOperationError as xm, type DeleteProcessInstancesBatchOperationResponses as xn, type DeleteProcessInstancesBatchOperationResponse as xo, type ResolveIncidentsBatchOperationData as xp, type ResolveIncidentsBatchOperationErrors as xq, type ResolveIncidentsBatchOperationError as xr, type ResolveIncidentsBatchOperationResponses as xs, type ResolveIncidentsBatchOperationResponse as xt, type MigrateProcessInstancesBatchOperationData as xu, type MigrateProcessInstancesBatchOperationErrors as xv, type MigrateProcessInstancesBatchOperationError as xw, type MigrateProcessInstancesBatchOperationResponses as xx, type MigrateProcessInstancesBatchOperationResponse as xy, type ModifyProcessInstancesBatchOperationData as xz, VariableDeserializationError as y, type SearchRolesError as y$, type DeleteProcessInstanceResponse as y0, type ResolveProcessInstanceIncidentsData as y1, type ResolveProcessInstanceIncidentsErrors as y2, type ResolveProcessInstanceIncidentsError as y3, type ResolveProcessInstanceIncidentsResponses as y4, type ResolveProcessInstanceIncidentsResponse as y5, type SearchProcessInstanceIncidentsData as y6, type SearchProcessInstanceIncidentsErrors as y7, type SearchProcessInstanceIncidentsError as y8, type SearchProcessInstanceIncidentsResponses as y9, type GetResourceData as yA, type GetResourceErrors as yB, type GetResourceError as yC, type GetResourceResponses as yD, type GetResourceResponse as yE, type GetResourceContentData as yF, type GetResourceContentErrors as yG, type GetResourceContentError as yH, type GetResourceContentResponses as yI, type GetResourceContentResponse as yJ, type GetResourceContentBinaryData as yK, type GetResourceContentBinaryErrors as yL, type GetResourceContentBinaryError as yM, type GetResourceContentBinaryResponses as yN, type GetResourceContentBinaryResponse as yO, type DeleteResourceData as yP, type DeleteResourceErrors as yQ, type DeleteResourceError as yR, type DeleteResourceResponses as yS, type DeleteResourceResponse2 as yT, type CreateRoleData as yU, type CreateRoleErrors as yV, type CreateRoleError as yW, type CreateRoleResponses as yX, type CreateRoleResponse as yY, type SearchRolesData as yZ, type SearchRolesErrors as y_, type SearchProcessInstanceIncidentsResponse as ya, type MigrateProcessInstanceData as yb, type MigrateProcessInstanceErrors as yc, type MigrateProcessInstanceError as yd, type MigrateProcessInstanceResponses as ye, type MigrateProcessInstanceResponse as yf, type ModifyProcessInstanceData as yg, type ModifyProcessInstanceErrors as yh, type ModifyProcessInstanceError as yi, type ModifyProcessInstanceResponses as yj, type ModifyProcessInstanceResponse as yk, type GetProcessInstanceSequenceFlowsData as yl, type GetProcessInstanceSequenceFlowsErrors as ym, type GetProcessInstanceSequenceFlowsError as yn, type GetProcessInstanceSequenceFlowsResponses as yo, type GetProcessInstanceSequenceFlowsResponse as yp, type GetProcessInstanceStatisticsData as yq, type GetProcessInstanceStatisticsErrors as yr, type GetProcessInstanceStatisticsError as ys, type GetProcessInstanceStatisticsResponses as yt, type GetProcessInstanceStatisticsResponse as yu, type SearchResourcesData as yv, type SearchResourcesErrors as yw, type SearchResourcesError as yx, type SearchResourcesResponses as yy, type SearchResourcesResponse as yz, VariableMap as z, type SearchUsersForRoleErrors as z$, type SearchRolesResponses as z0, type SearchRolesResponse as z1, type DeleteRoleData as z2, type DeleteRoleErrors as z3, type DeleteRoleError as z4, type DeleteRoleResponses as z5, type DeleteRoleResponse as z6, type GetRoleData as z7, type GetRoleErrors as z8, type GetRoleError as z9, type SearchGroupsForRoleResponse as zA, type UnassignRoleFromGroupData as zB, type UnassignRoleFromGroupErrors as zC, type UnassignRoleFromGroupError as zD, type UnassignRoleFromGroupResponses as zE, type UnassignRoleFromGroupResponse as zF, type AssignRoleToGroupData as zG, type AssignRoleToGroupErrors as zH, type AssignRoleToGroupError as zI, type AssignRoleToGroupResponses as zJ, type AssignRoleToGroupResponse as zK, type SearchMappingRulesForRoleData as zL, type SearchMappingRulesForRoleErrors as zM, type SearchMappingRulesForRoleError as zN, type SearchMappingRulesForRoleResponses as zO, type SearchMappingRulesForRoleResponse as zP, type UnassignRoleFromMappingRuleData as zQ, type UnassignRoleFromMappingRuleErrors as zR, type UnassignRoleFromMappingRuleError as zS, type UnassignRoleFromMappingRuleResponses as zT, type UnassignRoleFromMappingRuleResponse as zU, type AssignRoleToMappingRuleData as zV, type AssignRoleToMappingRuleErrors as zW, type AssignRoleToMappingRuleError as zX, type AssignRoleToMappingRuleResponses as zY, type AssignRoleToMappingRuleResponse as zZ, type SearchUsersForRoleData as z_, type GetRoleResponses as za, type GetRoleResponse as zb, type UpdateRoleData as zc, type UpdateRoleErrors as zd, type UpdateRoleError as ze, type UpdateRoleResponses as zf, type UpdateRoleResponse as zg, type SearchClientsForRoleData as zh, type SearchClientsForRoleErrors as zi, type SearchClientsForRoleError as zj, type SearchClientsForRoleResponses as zk, type SearchClientsForRoleResponse as zl, type UnassignRoleFromClientData as zm, type UnassignRoleFromClientErrors as zn, type UnassignRoleFromClientError as zo, type UnassignRoleFromClientResponses as zp, type UnassignRoleFromClientResponse as zq, type AssignRoleToClientData as zr, type AssignRoleToClientErrors as zs, type AssignRoleToClientError as zt, type AssignRoleToClientResponses as zu, type AssignRoleToClientResponse as zv, type SearchGroupsForRoleData as zw, type SearchGroupsForRoleErrors as zx, type SearchGroupsForRoleError as zy, type SearchGroupsForRoleResponses as zz };
|