@camunda8/orchestration-cluster-api 10.0.0-alpha.10 → 10.0.0-alpha.12
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-35C35RRO.js → chunk-5MVQWZJT.js} +3 -3
- package/dist/chunk-5MVQWZJT.js.map +1 -0
- package/dist/fp/index.cjs +98 -24
- 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-DiQH0k_q.d.cts → index-D5QMBVou.d.cts} +118 -17
- package/dist/{index-CeCL9PcH.d.ts → index-DMHMquxl.d.ts} +118 -17
- package/dist/index.cjs +104 -26
- 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 +7 -3
- package/dist/index.js.map +1 -1
- package/dist/{zod.gen-LWXJEF77.js → zod.gen-RVXPM54Y.js} +97 -23
- package/dist/zod.gen-RVXPM54Y.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-35C35RRO.js.map +0 -1
- package/dist/zod.gen-LWXJEF77.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
|
*/
|
|
@@ -1610,12 +1610,20 @@ type AuditLogResult = {
|
|
|
1610
1610
|
*
|
|
1611
1611
|
*/
|
|
1612
1612
|
entityDescription: string | null;
|
|
1613
|
+
/**
|
|
1614
|
+
* The type of the inbound channel that triggered the operation (e.g. MCP).
|
|
1615
|
+
*/
|
|
1616
|
+
inboundChannelType: string | null;
|
|
1617
|
+
/**
|
|
1618
|
+
* The tool name of the inbound channel (e.g. the MCP tool that triggered the operation).
|
|
1619
|
+
*/
|
|
1620
|
+
inboundChannelToolName: string | null;
|
|
1613
1621
|
};
|
|
1614
1622
|
type AuditLogSearchQuerySortRequest = {
|
|
1615
1623
|
/**
|
|
1616
1624
|
* The field to sort by.
|
|
1617
1625
|
*/
|
|
1618
|
-
field: 'actorId' | 'actorType' | 'auditLogKey' | 'batchOperationKey' | 'batchOperationType' | 'category' | 'decisionDefinitionId' | 'decisionDefinitionKey' | 'decisionEvaluationKey' | 'decisionRequirementsId' | 'decisionRequirementsKey' | 'elementInstanceKey' | 'entityKey' | 'entityType' | 'jobKey' | 'operationType' | 'processDefinitionId' | 'processDefinitionKey' | 'processInstanceKey' | 'result' | 'tenantId' | 'timestamp' | 'userTaskKey';
|
|
1626
|
+
field: 'actorId' | 'actorType' | 'auditLogKey' | 'batchOperationKey' | 'batchOperationType' | 'category' | 'decisionDefinitionId' | 'decisionDefinitionKey' | 'decisionEvaluationKey' | 'decisionRequirementsId' | 'decisionRequirementsKey' | 'elementInstanceKey' | 'entityKey' | 'entityType' | 'jobKey' | 'operationType' | 'processDefinitionId' | 'processDefinitionKey' | 'processInstanceKey' | 'inboundChannelType' | 'inboundChannelToolName' | 'result' | 'tenantId' | 'timestamp' | 'userTaskKey';
|
|
1619
1627
|
order?: SortOrderEnum;
|
|
1620
1628
|
};
|
|
1621
1629
|
/**
|
|
@@ -1751,6 +1759,14 @@ type AuditLogFilter = {
|
|
|
1751
1759
|
* The entity description filter.
|
|
1752
1760
|
*/
|
|
1753
1761
|
entityDescription?: StringFilterProperty;
|
|
1762
|
+
/**
|
|
1763
|
+
* The inbound channel type search filter (e.g. MCP).
|
|
1764
|
+
*/
|
|
1765
|
+
inboundChannelType?: StringFilterProperty;
|
|
1766
|
+
/**
|
|
1767
|
+
* The inbound channel tool name search filter.
|
|
1768
|
+
*/
|
|
1769
|
+
inboundChannelToolName?: StringFilterProperty;
|
|
1754
1770
|
};
|
|
1755
1771
|
/**
|
|
1756
1772
|
* Audit log search response.
|
|
@@ -4426,10 +4442,6 @@ type ElementInstanceWaitStateQueryResult = SearchQueryResponse & {
|
|
|
4426
4442
|
* An element instance waiting state.
|
|
4427
4443
|
*/
|
|
4428
4444
|
type ElementInstanceWaitStateResult = {
|
|
4429
|
-
/**
|
|
4430
|
-
* The type of waiting state an element instance is in.
|
|
4431
|
-
*/
|
|
4432
|
-
waitStateType: WaitStateTypeEnum;
|
|
4433
4445
|
/**
|
|
4434
4446
|
* Key of the root process instance.
|
|
4435
4447
|
*/
|
|
@@ -4455,23 +4467,49 @@ type ElementInstanceWaitStateResult = {
|
|
|
4455
4467
|
*/
|
|
4456
4468
|
tenantId: TenantId;
|
|
4457
4469
|
/**
|
|
4458
|
-
*
|
|
4470
|
+
* The BPMN process ID of the process definition associated to this element instance.
|
|
4459
4471
|
*/
|
|
4460
|
-
|
|
4472
|
+
bpmnProcessId: string;
|
|
4461
4473
|
/**
|
|
4462
|
-
*
|
|
4474
|
+
* Wait-state-specific details, resolved by waitStateType.
|
|
4463
4475
|
*/
|
|
4464
|
-
|
|
4476
|
+
details: WaitStateDetails;
|
|
4465
4477
|
};
|
|
4478
|
+
/**
|
|
4479
|
+
* Wait-state-specific details of an element instance.
|
|
4480
|
+
*/
|
|
4481
|
+
type WaitStateDetails = ({
|
|
4482
|
+
waitStateType: 'JOB';
|
|
4483
|
+
} & JobWaitStateDetails) | ({
|
|
4484
|
+
waitStateType: 'MESSAGE';
|
|
4485
|
+
} & MessageWaitStateDetails) | ({
|
|
4486
|
+
waitStateType: 'USER_TASK';
|
|
4487
|
+
} & UserTaskWaitStateDetails) | ({
|
|
4488
|
+
waitStateType: 'TIMER';
|
|
4489
|
+
} & TimerWaitStateDetails) | ({
|
|
4490
|
+
waitStateType: 'SIGNAL';
|
|
4491
|
+
} & SignalWaitStateDetails);
|
|
4466
4492
|
/**
|
|
4467
4493
|
* The type of waiting state an element instance is in.
|
|
4468
4494
|
*/
|
|
4469
4495
|
declare const WaitStateTypeEnum: {
|
|
4470
4496
|
readonly JOB: "JOB";
|
|
4471
4497
|
readonly MESSAGE: "MESSAGE";
|
|
4498
|
+
readonly USER_TASK: "USER_TASK";
|
|
4499
|
+
readonly TIMER: "TIMER";
|
|
4500
|
+
readonly SIGNAL: "SIGNAL";
|
|
4472
4501
|
};
|
|
4473
4502
|
type WaitStateTypeEnum = (typeof WaitStateTypeEnum)[keyof typeof WaitStateTypeEnum];
|
|
4474
|
-
|
|
4503
|
+
/**
|
|
4504
|
+
* Common fields shared by all wait-state details variants.
|
|
4505
|
+
*/
|
|
4506
|
+
type BaseWaitStateDetails = {
|
|
4507
|
+
/**
|
|
4508
|
+
* The wait state type discriminator.
|
|
4509
|
+
*/
|
|
4510
|
+
waitStateType: string;
|
|
4511
|
+
};
|
|
4512
|
+
type JobWaitStateDetails = BaseWaitStateDetails & {
|
|
4475
4513
|
/**
|
|
4476
4514
|
* The key of the job.
|
|
4477
4515
|
*/
|
|
@@ -4492,8 +4530,12 @@ type JobWaitStateDetails = {
|
|
|
4492
4530
|
* The number of retries remaining for the job.
|
|
4493
4531
|
*/
|
|
4494
4532
|
retries: number | null;
|
|
4533
|
+
/**
|
|
4534
|
+
* The wait state type discriminator.
|
|
4535
|
+
*/
|
|
4536
|
+
waitStateType: string;
|
|
4495
4537
|
};
|
|
4496
|
-
type MessageWaitStateDetails = {
|
|
4538
|
+
type MessageWaitStateDetails = BaseWaitStateDetails & {
|
|
4497
4539
|
/**
|
|
4498
4540
|
* The name of the message being awaited.
|
|
4499
4541
|
*/
|
|
@@ -4502,6 +4544,48 @@ type MessageWaitStateDetails = {
|
|
|
4502
4544
|
* The correlation key for the message subscription (null for start events).
|
|
4503
4545
|
*/
|
|
4504
4546
|
correlationKey: string | null;
|
|
4547
|
+
/**
|
|
4548
|
+
* The wait state type discriminator.
|
|
4549
|
+
*/
|
|
4550
|
+
waitStateType: string;
|
|
4551
|
+
};
|
|
4552
|
+
type UserTaskWaitStateDetails = BaseWaitStateDetails & {
|
|
4553
|
+
/**
|
|
4554
|
+
* The key of the user task.
|
|
4555
|
+
*/
|
|
4556
|
+
taskKey: UserTaskKey;
|
|
4557
|
+
/**
|
|
4558
|
+
* The due date of the user task, if set.
|
|
4559
|
+
*/
|
|
4560
|
+
dueDate: string | null;
|
|
4561
|
+
/**
|
|
4562
|
+
* The wait state type discriminator.
|
|
4563
|
+
*/
|
|
4564
|
+
waitStateType: string;
|
|
4565
|
+
};
|
|
4566
|
+
type TimerWaitStateDetails = BaseWaitStateDetails & {
|
|
4567
|
+
/**
|
|
4568
|
+
* When the timer is due, as a UNIX epoch timestamp in milliseconds.
|
|
4569
|
+
*/
|
|
4570
|
+
dueDate: number | null;
|
|
4571
|
+
/**
|
|
4572
|
+
* The number of remaining timer repetitions (-1 for infinite, 0 for non-repeating).
|
|
4573
|
+
*/
|
|
4574
|
+
repetitions: number | null;
|
|
4575
|
+
/**
|
|
4576
|
+
* The wait state type discriminator.
|
|
4577
|
+
*/
|
|
4578
|
+
waitStateType: string;
|
|
4579
|
+
};
|
|
4580
|
+
type SignalWaitStateDetails = BaseWaitStateDetails & {
|
|
4581
|
+
/**
|
|
4582
|
+
* The name of the signal being awaited.
|
|
4583
|
+
*/
|
|
4584
|
+
signalName: string;
|
|
4585
|
+
/**
|
|
4586
|
+
* The wait state type discriminator.
|
|
4587
|
+
*/
|
|
4588
|
+
waitStateType: string;
|
|
4505
4589
|
};
|
|
4506
4590
|
type AdHocSubProcessActivateActivityReference = {
|
|
4507
4591
|
/**
|
|
@@ -6321,6 +6405,7 @@ declare const JobStateEnum: {
|
|
|
6321
6405
|
readonly ERROR_THROWN: "ERROR_THROWN";
|
|
6322
6406
|
readonly FAILED: "FAILED";
|
|
6323
6407
|
readonly MIGRATED: "MIGRATED";
|
|
6408
|
+
readonly PRIORITY_UPDATED: "PRIORITY_UPDATED";
|
|
6324
6409
|
readonly RETRIES_UPDATED: "RETRIES_UPDATED";
|
|
6325
6410
|
readonly TIMED_OUT: "TIMED_OUT";
|
|
6326
6411
|
};
|
|
@@ -7354,6 +7439,11 @@ type CorrelatedMessageSubscriptionSearchQuerySortRequest = {
|
|
|
7354
7439
|
};
|
|
7355
7440
|
/**
|
|
7356
7441
|
* The state of message subscription.
|
|
7442
|
+
*
|
|
7443
|
+
* **Note for `START_EVENT` subscriptions:** The `CORRELATED` and `MIGRATED` states are not
|
|
7444
|
+
* tracked for these subscriptions. To query correlation history for process start events,
|
|
7445
|
+
* use the `/correlated-message-subscriptions/search` endpoint.
|
|
7446
|
+
*
|
|
7357
7447
|
*/
|
|
7358
7448
|
declare const MessageSubscriptionStateEnum: {
|
|
7359
7449
|
readonly CORRELATED: "CORRELATED";
|
|
@@ -18397,7 +18487,8 @@ declare const getDecisionRequirementsXml: <ThrowOnError extends boolean = true>(
|
|
|
18397
18487
|
/**
|
|
18398
18488
|
* Deploy resources
|
|
18399
18489
|
*
|
|
18400
|
-
* Deploys one or more resources
|
|
18490
|
+
* Deploys one or more resources, including BPMN processes, DMN decision models, forms, RPA resources, and generic files.
|
|
18491
|
+
* 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.
|
|
18401
18492
|
* This is an atomic call, i.e. either all resources are deployed or none of them are.
|
|
18402
18493
|
*
|
|
18403
18494
|
*/
|
|
@@ -23079,7 +23170,8 @@ declare class CamundaClient {
|
|
|
23079
23170
|
/**
|
|
23080
23171
|
* Deploy resources
|
|
23081
23172
|
*
|
|
23082
|
-
* Deploys one or more resources
|
|
23173
|
+
* Deploys one or more resources, including BPMN processes, DMN decision models, forms, RPA resources, and generic files.
|
|
23174
|
+
* 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.
|
|
23083
23175
|
* This is an atomic call, i.e. either all resources are deployed or none of them are.
|
|
23084
23176
|
*
|
|
23085
23177
|
*
|
|
@@ -25937,7 +26029,16 @@ declare class CamundaClient {
|
|
|
25937
26029
|
* );
|
|
25938
26030
|
*
|
|
25939
26031
|
* for (const waitState of result.items ?? []) {
|
|
25940
|
-
*
|
|
26032
|
+
* const { details } = waitState;
|
|
26033
|
+
* let description: string;
|
|
26034
|
+
* if (details.waitStateType === 'JOB') {
|
|
26035
|
+
* description = `waiting on job '${details.jobType}'`;
|
|
26036
|
+
* } else if (details.waitStateType === 'MESSAGE') {
|
|
26037
|
+
* description = `waiting for message '${details.messageName}'`;
|
|
26038
|
+
* } else {
|
|
26039
|
+
* description = `waiting (${details.waitStateType})`;
|
|
26040
|
+
* }
|
|
26041
|
+
* console.log(`${waitState.elementId}: ${description}`);
|
|
25941
26042
|
* }
|
|
25942
26043
|
* }
|
|
25943
26044
|
* ```
|
|
@@ -27580,4 +27681,4 @@ declare function eventuallyTE<E, A>(thunk: () => Promise<A>, predicate: (a: A) =
|
|
|
27580
27681
|
waitUpToMs: number;
|
|
27581
27682
|
}): TaskEither<E, A>;
|
|
27582
27683
|
|
|
27583
|
-
export { type assignUserTaskInput as $, type AnyVariableSchema as A, type SearchGroupIdsForTenantResponses as A$, type CreateAdminUserData as A0, type CreateAdminUserErrors as A1, type CreateAdminUserError as A2, type CreateAdminUserResponses as A3, type CreateAdminUserResponse as A4, type BroadcastSignalData as A5, type BroadcastSignalErrors as A6, type BroadcastSignalError as A7, type BroadcastSignalResponses as A8, type BroadcastSignalResponse as A9, type DeleteTenantError as AA, type DeleteTenantResponses as AB, type DeleteTenantResponse as AC, type GetTenantData as AD, type GetTenantErrors as AE, type GetTenantError as AF, type GetTenantResponses as AG, type GetTenantResponse as AH, type UpdateTenantData as AI, type UpdateTenantErrors as AJ, type UpdateTenantError as AK, type UpdateTenantResponses as AL, type UpdateTenantResponse as AM, type SearchClientsForTenantData as AN, type SearchClientsForTenantResponses as AO, type SearchClientsForTenantResponse as AP, type UnassignClientFromTenantData as AQ, type UnassignClientFromTenantErrors as AR, type UnassignClientFromTenantError as AS, type UnassignClientFromTenantResponses as AT, type UnassignClientFromTenantResponse as AU, type AssignClientToTenantData as AV, type AssignClientToTenantErrors as AW, type AssignClientToTenantError as AX, type AssignClientToTenantResponses as AY, type AssignClientToTenantResponse as AZ, type SearchGroupIdsForTenantData as A_, type GetStatusData as Aa, type GetStatusErrors as Ab, type GetStatusResponses as Ac, type GetStatusResponse as Ad, type GetUsageMetricsData as Ae, type GetUsageMetricsErrors as Af, type GetUsageMetricsError as Ag, type GetUsageMetricsResponses as Ah, type GetUsageMetricsResponse as Ai, type GetSystemConfigurationData as Aj, type GetSystemConfigurationErrors as Ak, type GetSystemConfigurationError as Al, type GetSystemConfigurationResponses as Am, type GetSystemConfigurationResponse as An, type CreateTenantData as Ao, type CreateTenantErrors as Ap, type CreateTenantError as Aq, type CreateTenantResponses as Ar, type CreateTenantResponse as As, type SearchTenantsData as At, type SearchTenantsErrors as Au, type SearchTenantsError as Av, type SearchTenantsResponses as Aw, type SearchTenantsResponse as Ax, type DeleteTenantData as Ay, type DeleteTenantErrors as Az, type BackpressureSeverity as B, type SearchUsersResponses as B$, type SearchGroupIdsForTenantResponse as B0, type UnassignGroupFromTenantData as B1, type UnassignGroupFromTenantErrors as B2, type UnassignGroupFromTenantError as B3, type UnassignGroupFromTenantResponses as B4, type UnassignGroupFromTenantResponse as B5, type AssignGroupToTenantData as B6, type AssignGroupToTenantErrors as B7, type AssignGroupToTenantError as B8, type AssignGroupToTenantResponses as B9, type AssignRoleToTenantResponse as BA, type SearchUsersForTenantData as BB, type SearchUsersForTenantResponses as BC, type SearchUsersForTenantResponse as BD, type UnassignUserFromTenantData as BE, type UnassignUserFromTenantErrors as BF, type UnassignUserFromTenantError as BG, type UnassignUserFromTenantResponses as BH, type UnassignUserFromTenantResponse as BI, type AssignUserToTenantData as BJ, type AssignUserToTenantErrors as BK, type AssignUserToTenantError as BL, type AssignUserToTenantResponses as BM, type AssignUserToTenantResponse as BN, type GetTopologyData as BO, type GetTopologyErrors as BP, type GetTopologyError as BQ, type GetTopologyResponses as BR, type GetTopologyResponse as BS, type CreateUserData as BT, type CreateUserErrors as BU, type CreateUserError as BV, type CreateUserResponses as BW, type CreateUserResponse as BX, type SearchUsersData as BY, type SearchUsersErrors as BZ, type SearchUsersError as B_, type AssignGroupToTenantResponse as Ba, type SearchMappingRulesForTenantData as Bb, type SearchMappingRulesForTenantResponses as Bc, type SearchMappingRulesForTenantResponse as Bd, type UnassignMappingRuleFromTenantData as Be, type UnassignMappingRuleFromTenantErrors as Bf, type UnassignMappingRuleFromTenantError as Bg, type UnassignMappingRuleFromTenantResponses as Bh, type UnassignMappingRuleFromTenantResponse as Bi, type AssignMappingRuleToTenantData as Bj, type AssignMappingRuleToTenantErrors as Bk, type AssignMappingRuleToTenantError as Bl, type AssignMappingRuleToTenantResponses as Bm, type AssignMappingRuleToTenantResponse as Bn, type SearchRolesForTenantData as Bo, type SearchRolesForTenantResponses as Bp, type SearchRolesForTenantResponse as Bq, type UnassignRoleFromTenantData as Br, type UnassignRoleFromTenantErrors as Bs, type UnassignRoleFromTenantError as Bt, type UnassignRoleFromTenantResponses as Bu, type UnassignRoleFromTenantResponse as Bv, type AssignRoleToTenantData as Bw, type AssignRoleToTenantErrors as Bx, type AssignRoleToTenantError as By, type AssignRoleToTenantResponses as Bz, CamundaClient as C, type SearchUserTaskVariablesError as C$, type SearchUsersResponse as C0, type DeleteUserData as C1, type DeleteUserErrors as C2, type DeleteUserError as C3, type DeleteUserResponses as C4, type DeleteUserResponse as C5, type GetUserData as C6, type GetUserErrors as C7, type GetUserError as C8, type GetUserResponses as C9, type AssignUserTaskData as CA, type AssignUserTaskErrors as CB, type AssignUserTaskError as CC, type AssignUserTaskResponses as CD, type AssignUserTaskResponse as CE, type SearchUserTaskAuditLogsData as CF, type SearchUserTaskAuditLogsErrors as CG, type SearchUserTaskAuditLogsError as CH, type SearchUserTaskAuditLogsResponses as CI, type SearchUserTaskAuditLogsResponse as CJ, type CompleteUserTaskData as CK, type CompleteUserTaskErrors as CL, type CompleteUserTaskError as CM, type CompleteUserTaskResponses as CN, type CompleteUserTaskResponse as CO, type SearchUserTaskEffectiveVariablesData as CP, type SearchUserTaskEffectiveVariablesErrors as CQ, type SearchUserTaskEffectiveVariablesError as CR, type SearchUserTaskEffectiveVariablesResponses as CS, type SearchUserTaskEffectiveVariablesResponse as CT, type GetUserTaskFormData as CU, type GetUserTaskFormErrors as CV, type GetUserTaskFormError as CW, type GetUserTaskFormResponses as CX, type GetUserTaskFormResponse as CY, type SearchUserTaskVariablesData as CZ, type SearchUserTaskVariablesErrors as C_, type GetUserResponse as Ca, type UpdateUserData as Cb, type UpdateUserErrors as Cc, type UpdateUserError as Cd, type UpdateUserResponses as Ce, type UpdateUserResponse as Cf, type SearchUserTasksData as Cg, type SearchUserTasksErrors as Ch, type SearchUserTasksError as Ci, type SearchUserTasksResponses as Cj, type SearchUserTasksResponse as Ck, type GetUserTaskData as Cl, type GetUserTaskErrors as Cm, type GetUserTaskError as Cn, type GetUserTaskResponses as Co, type GetUserTaskResponse as Cp, type UpdateUserTaskData as Cq, type UpdateUserTaskErrors as Cr, type UpdateUserTaskError as Cs, type UpdateUserTaskResponses as Ct, type UpdateUserTaskResponse as Cu, type UnassignUserTaskData as Cv, type UnassignUserTaskErrors as Cw, type UnassignUserTaskError as Cx, type UnassignUserTaskResponses as Cy, type UnassignUserTaskResponse as Cz, VariableScopeCollisionError as D, type SearchUserTaskVariablesResponses as D0, type SearchUserTaskVariablesResponse as D1, type SearchVariablesData as D2, type SearchVariablesErrors as D3, type SearchVariablesError as D4, type SearchVariablesResponses as D5, type SearchVariablesResponse as D6, type GetVariableData as D7, type GetVariableErrors as D8, type GetVariableError as D9, type GetVariableResponses as Da, type GetVariableResponse as Db, assertConstraint as Dc, classifyDomainError as Dd, type DomainError as De, type DomainErrorTag as Df, eventuallyTE as Dg, type FnKeys as Dh, type Fpify as Di, foldDomainError as Dj, type HttpError as Dk, type Left as Dl, type Right as Dm, retryTE as Dn, type TaskEither as Do, withTimeoutTE as Dp, 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 GroupCreateResult 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 LikeFilter as hA, type BasicStringFilter as hB, type AdvancedStringFilter as hC, type BasicStringFilterProperty as hD, type StringFilterProperty as hE, type AdvancedIntegerFilter as hF, type IntegerFilterProperty as hG, type AdvancedDateTimeFilter as hH, type DateTimeFilterProperty as hI, type FormResult as hJ, GlobalListenerSourceEnum as hK, GlobalTaskListenerEventTypeEnum as hL, type GlobalListenerBase as hM, type GlobalTaskListenerBase as hN, type GlobalTaskListenerEventTypes as hO, type CreateGlobalTaskListenerRequest as hP, type UpdateGlobalTaskListenerRequest as hQ, type GlobalTaskListenerResult as hR, type GlobalTaskListenerSearchQueryRequest as hS, type GlobalTaskListenerSearchQuerySortRequest as hT, type GlobalTaskListenerSearchQueryFilterRequest as hU, type GlobalListenerSourceFilterProperty as hV, type AdvancedGlobalListenerSourceFilter as hW, type GlobalTaskListenerEventTypeFilterProperty as hX, type AdvancedGlobalTaskListenerEventTypeFilter as hY, type GlobalTaskListenerSearchQueryResult as hZ, type GroupCreateRequest 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, WaitStateTypeEnum as ht, type JobWaitStateDetails as hu, type MessageWaitStateDetails as hv, type AdHocSubProcessActivateActivityReference as hw, type ExpressionEvaluationRequest as hx, type ExpressionEvaluationResult as hy, type ExpressionEvaluationWarningItem as hz, isLeft as i, type JobTypeStatisticsFilter as i$, type GroupUpdateRequest as i0, type GroupUpdateResult as i1, type GroupResult as i2, type GroupSearchQuerySortRequest as i3, type GroupSearchQueryRequest as i4, type GroupFilter as i5, type GroupSearchQueryResult as i6, type GroupUserResult as i7, type GroupUserSearchResult as i8, type GroupUserSearchQueryRequest as i9, type AdvancedElementIdFilter as iA, type ProcessDefinitionIdFilterProperty as iB, type AdvancedProcessDefinitionIdFilter as iC, type IncidentSearchQuery as iD, type IncidentFilter as iE, type IncidentErrorTypeFilterProperty as iF, type AdvancedIncidentErrorTypeFilter as iG, IncidentErrorTypeEnum as iH, type IncidentStateFilterProperty as iI, type AdvancedIncidentStateFilter as iJ, IncidentStateEnum as iK, type IncidentSearchQuerySortRequest as iL, type IncidentSearchQueryResult as iM, type IncidentResult as iN, type IncidentResolutionRequest as iO, type IncidentProcessInstanceStatisticsByErrorQuery as iP, type IncidentProcessInstanceStatisticsByErrorQueryResult as iQ, type IncidentProcessInstanceStatisticsByErrorResult as iR, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as iS, type IncidentProcessInstanceStatisticsByDefinitionQuery as iT, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as iU, type IncidentProcessInstanceStatisticsByDefinitionResult as iV, type IncidentProcessInstanceStatisticsByDefinitionFilter as iW, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as iX, type GlobalJobStatisticsQueryResult as iY, type StatusMetric as iZ, type JobTypeStatisticsQuery as i_, type GroupUserSearchQuerySortRequest as ia, type GroupClientResult as ib, type GroupClientSearchResult as ic, type GroupClientSearchQueryRequest as id, type GroupMappingRuleSearchResult as ie, type GroupRoleSearchResult as ig, type GroupClientSearchQuerySortRequest as ih, ProcessDefinitionId as ii, ElementId as ij, FormId as ik, DecisionDefinitionId as il, GlobalListenerId as im, TenantId as io, Username as ip, RoleId as iq, GroupId as ir, MappingRuleId as is, ClientId as it, ClusterVariableName as iu, Tag as iv, type TagSet as iw, BusinessId as ix, type IterationId as iy, type ElementIdFilterProperty as iz, isSdkError as j, type ProcessDefinitionKeyFilterProperty as j$, type JobTypeStatisticsQueryResult as j0, type JobTypeStatisticsItem as j1, type JobWorkerStatisticsQuery as j2, type JobWorkerStatisticsFilter as j3, type JobWorkerStatisticsQueryResult as j4, type JobWorkerStatisticsItem as j5, type JobTimeSeriesStatisticsQuery as j6, type JobTimeSeriesStatisticsFilter as j7, type JobTimeSeriesStatisticsQueryResult as j8, type JobTimeSeriesStatisticsItem as j9, JobListenerEventTypeEnum as jA, type JobKindFilterProperty as jB, type AdvancedJobKindFilter as jC, type JobListenerEventTypeFilterProperty as jD, type AdvancedJobListenerEventTypeFilter as jE, type JobStateFilterProperty as jF, type AdvancedJobStateFilter as jG, type LongKey as jH, ProcessInstanceKey as jI, ProcessDefinitionKey as jJ, ElementInstanceKey as jK, UserTaskKey as jL, FormKey as jM, VariableKey as jN, type ScopeKey as jO, IncidentKey as jP, JobKey as jQ, DecisionDefinitionKey as jR, DecisionEvaluationInstanceKey as jS, DecisionEvaluationKey as jT, DecisionRequirementsKey as jU, DecisionInstanceKey as jV, BatchOperationKey as jW, type OperationReference as jX, AgentInstanceKey as jY, AgentHistoryItemKey as jZ, AuditLogKey as j_, type JobErrorStatisticsQuery as ja, type JobErrorStatisticsFilter as jb, type JobErrorStatisticsQueryResult as jc, type JobErrorStatisticsItem as jd, type JobActivationRequest as je, type JobActivationResult as jf, type ActivatedJobResult$1 as jg, type UserTaskProperties as jh, type JobSearchQuery as ji, type JobSearchQuerySortRequest as jj, type JobFilter as jk, type JobSearchQueryResult as jl, type JobSearchResult as jm, type JobFailRequest as jn, type JobErrorRequest$1 as jo, type JobCompletionRequest as jp, type JobResult as jq, type JobResultUserTask as jr, type JobResultCorrections as js, type JobResultAdHocSubProcess as jt, type JobResultActivateElement as ju, type JobUpdateRequest as jv, type JobChangeset as jw, TenantFilterEnum as jx, JobStateEnum as jy, JobKindEnum as jz, type EnrichedActivatedJob as k, type ProblemDetail as k$, type AdvancedProcessDefinitionKeyFilter as k0, type ProcessInstanceKeyFilterProperty as k1, type AdvancedProcessInstanceKeyFilter as k2, type ElementInstanceKeyFilterProperty as k3, type AdvancedElementInstanceKeyFilter as k4, type JobKeyFilterProperty as k5, type AdvancedJobKeyFilter as k6, type DecisionDefinitionKeyFilterProperty as k7, type AdvancedDecisionDefinitionKeyFilter as k8, type ScopeKeyFilterProperty as k9, type MappingRuleSearchQuerySortRequest as kA, type MappingRuleSearchQueryRequest as kB, type MappingRuleFilter as kC, type MessageCorrelationRequest as kD, type MessageCorrelationResult as kE, type MessagePublicationRequest as kF, type MessagePublicationResult as kG, type MessageSubscriptionSearchQueryResult as kH, type MessageSubscriptionResult as kI, type MessageSubscriptionSearchQuerySortRequest as kJ, type MessageSubscriptionSearchQuery as kK, type MessageSubscriptionFilter as kL, type CorrelatedMessageSubscriptionSearchQueryResult as kM, type CorrelatedMessageSubscriptionResult as kN, type CorrelatedMessageSubscriptionSearchQuery as kO, type CorrelatedMessageSubscriptionSearchQuerySortRequest as kP, MessageSubscriptionStateEnum as kQ, MessageSubscriptionTypeEnum as kR, type CorrelatedMessageSubscriptionFilter as kS, type MessageSubscriptionTypeFilterProperty as kT, type AdvancedMessageSubscriptionTypeFilter as kU, type MessageSubscriptionStateFilterProperty as kV, type AdvancedMessageSubscriptionStateFilter as kW, type AdvancedMessageSubscriptionKeyFilter as kX, type MessageSubscriptionKeyFilterProperty as kY, MessageSubscriptionKey as kZ, MessageKey as k_, type AdvancedScopeKeyFilter as ka, type VariableKeyFilterProperty as kb, type AdvancedVariableKeyFilter as kc, type DecisionEvaluationInstanceKeyFilterProperty as kd, type AdvancedDecisionEvaluationInstanceKeyFilter as ke, type AgentInstanceKeyFilterProperty as kf, type AdvancedAgentInstanceKeyFilter as kg, type AgentHistoryItemKeyFilterProperty as kh, type AdvancedAgentHistoryItemKeyFilter as ki, type AuditLogKeyFilterProperty as kj, type AdvancedAuditLogKeyFilter as kk, type FormKeyFilterProperty as kl, type AdvancedFormKeyFilter as km, type DecisionEvaluationKeyFilterProperty as kn, type AdvancedDecisionEvaluationKeyFilter as ko, type DecisionRequirementsKeyFilterProperty as kp, type AdvancedDecisionRequirementsKeyFilter as kq, type LicenseResponse as kr, type MappingRuleCreateUpdateRequest as ks, type MappingRuleCreateRequest as kt, type MappingRuleUpdateRequest as ku, type MappingRuleCreateUpdateResult as kv, type MappingRuleCreateResult as kw, type MappingRuleUpdateResult as kx, type MappingRuleSearchQueryResult as ky, type MappingRuleResult as kz, JobActionReceipt as l, type RoleUpdateResult as l$, type ProcessDefinitionSearchQuerySortRequest as l0, type ProcessDefinitionSearchQuery as l1, type ProcessDefinitionFilter as l2, type ProcessDefinitionSearchQueryResult as l3, type ProcessDefinitionResult as l4, type ProcessDefinitionElementStatisticsQuery as l5, type ProcessDefinitionElementStatisticsQueryResult as l6, type ProcessElementStatisticsResult as l7, type ProcessDefinitionMessageSubscriptionStatisticsQuery as l8, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as l9, type DeleteProcessInstanceRequest as lA, type ProcessInstanceCallHierarchyEntry as lB, type ProcessInstanceSequenceFlowsQueryResult as lC, type ProcessInstanceSequenceFlowResult as lD, type ProcessInstanceElementStatisticsQueryResult as lE, type ProcessInstanceMigrationInstruction as lF, type MigrateProcessInstanceMappingInstruction as lG, type ProcessInstanceModificationInstruction as lH, type ProcessInstanceModificationActivateInstruction as lI, type ModifyProcessInstanceVariableInstruction as lJ, type ProcessInstanceModificationMoveInstruction as lK, type SourceElementInstruction as lL, type SourceElementIdInstruction as lM, type SourceElementInstanceKeyInstruction as lN, type AncestorScopeInstruction as lO, type DirectAncestorKeyInstruction as lP, type InferredAncestorKeyInstruction as lQ, type UseSourceParentKeyInstruction as lR, type ProcessInstanceModificationTerminateInstruction as lS, type ProcessInstanceModificationTerminateByIdInstruction as lT, type ProcessInstanceModificationTerminateByKeyInstruction as lU, ProcessInstanceStateEnum as lV, type AdvancedProcessInstanceStateFilter as lW, type ProcessInstanceStateFilterProperty as lX, type RoleCreateRequest as lY, type RoleCreateResult as lZ, type RoleUpdateRequest as l_, type ProcessDefinitionMessageSubscriptionStatisticsResult as la, type ProcessDefinitionInstanceStatisticsQuery as lb, type ProcessDefinitionInstanceStatisticsQueryResult as lc, type ProcessDefinitionInstanceStatisticsResult as ld, type ProcessDefinitionInstanceStatisticsQuerySortRequest as le, type ProcessDefinitionInstanceVersionStatisticsQuery as lf, type ProcessDefinitionInstanceVersionStatisticsFilter as lg, type ProcessDefinitionInstanceVersionStatisticsQueryResult as lh, type ProcessDefinitionInstanceVersionStatisticsResult as li, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as lj, type ProcessInstanceCreationInstruction as lk, type ProcessInstanceCreationInstructionById as ll, type ProcessInstanceCreationInstructionByKey as lm, type ProcessInstanceCreationStartInstruction as ln, type ProcessInstanceCreationRuntimeInstruction as lo, type ProcessInstanceCreationTerminateInstruction as lp, type CreateProcessInstanceResult as lq, type ProcessInstanceSearchQuerySortRequest as lr, type ProcessInstanceSearchQuery as ls, type BaseProcessInstanceFilterFields as lt, type ProcessDefinitionStatisticsFilter as lu, type ProcessInstanceFilterFields as lv, type ProcessInstanceFilter as lw, type ProcessInstanceSearchQueryResult as lx, type ProcessInstanceResult as ly, type CancelProcessInstanceRequest as lz, JobWorker as m, type UserTaskSearchQuerySortRequest as m$, type RoleResult as m0, type RoleSearchQuerySortRequest as m1, type RoleSearchQueryRequest as m2, type RoleFilter as m3, type RoleSearchQueryResult as m4, type RoleUserResult as m5, type RoleUserSearchResult as m6, type RoleUserSearchQueryRequest as m7, type RoleUserSearchQuerySortRequest as m8, type RoleClientResult as m9, type AuthenticationConfigurationResponse as mA, type CloudConfigurationResponse as mB, type WebappComponent as mC, type CloudStage as mD, type TenantCreateRequest as mE, type TenantCreateResult as mF, type TenantUpdateRequest as mG, type TenantUpdateResult as mH, type TenantResult as mI, type TenantSearchQuerySortRequest as mJ, type TenantSearchQueryRequest as mK, type TenantFilter as mL, type TenantSearchQueryResult as mM, type TenantUserResult as mN, type TenantUserSearchResult as mO, type TenantUserSearchQueryRequest as mP, type TenantUserSearchQuerySortRequest as mQ, type TenantClientResult as mR, type TenantClientSearchResult as mS, type TenantClientSearchQueryRequest as mT, type TenantClientSearchQuerySortRequest as mU, type TenantGroupResult as mV, type TenantGroupSearchResult as mW, type TenantGroupSearchQueryRequest as mX, type TenantRoleSearchResult as mY, type TenantMappingRuleSearchResult as mZ, type TenantGroupSearchQuerySortRequest as m_, type RoleClientSearchResult as ma, type RoleClientSearchQueryRequest as mb, type RoleClientSearchQuerySortRequest as mc, type RoleGroupResult as md, type RoleGroupSearchResult as me, type RoleGroupSearchQueryRequest as mf, type RoleMappingRuleSearchResult as mg, type RoleGroupSearchQuerySortRequest as mh, type SearchQueryRequest as mi, type SearchQueryPageRequest as mj, type LimitPagination as mk, type OffsetPagination as ml, type CursorForwardPagination as mm, type CursorBackwardPagination as mn, type SearchQueryResponse as mo, SortOrderEnum as mp, type SearchQueryPageResponse as mq, type SignalBroadcastRequest as mr, type SignalBroadcastResult as ms, SignalKey as mt, type UsageMetricsResponse as mu, type UsageMetricsResponseItem as mv, type SystemConfigurationResponse as mw, type JobMetricsConfigurationResponse as mx, type ComponentsConfigurationResponse as my, type DeploymentConfigurationResponse as mz, type JobWorkerConfig as n, type ProcessDefinitionKeyExactMatch as n$, type UserTaskSearchQuery as n0, type UserTaskFilter as n1, type UserTaskSearchQueryResult as n2, type UserTaskResult as n3, type UserTaskCompletionRequest as n4, type UserTaskAssignmentRequest as n5, type UserTaskUpdateRequest as n6, type Changeset as n7, type UserTaskVariableSearchQuerySortRequest as n8, type UserTaskVariableSearchQueryRequest as n9, type AgentInstanceHistoryRoleExactMatch as nA, type AgentInstanceHistoryCommitStatusExactMatch as nB, type AuditLogEntityKeyExactMatch as nC, type EntityTypeExactMatch as nD, type OperationTypeExactMatch as nE, type CategoryExactMatch as nF, type AuditLogResultExactMatch as nG, type AuditLogActorTypeExactMatch as nH, type BatchOperationTypeExactMatch as nI, type BatchOperationStateExactMatch as nJ, type BatchOperationItemStateExactMatch as nK, type ClusterVariableScopeExactMatch as nL, type DecisionInstanceStateExactMatch as nM, type DeploymentKeyExactMatch as nN, type ResourceKeyExactMatch as nO, type ElementInstanceStateExactMatch as nP, type WaitStateElementTypeExactMatch as nQ, type WaitStateTypeExactMatch as nR, type GlobalListenerSourceExactMatch as nS, type GlobalTaskListenerEventTypeExactMatch as nT, type ElementIdExactMatch as nU, type ProcessDefinitionIdExactMatch as nV, type IncidentErrorTypeExactMatch as nW, type IncidentStateExactMatch as nX, type JobKindExactMatch as nY, type JobListenerEventTypeExactMatch as nZ, type JobStateExactMatch as n_, type UserTaskEffectiveVariableSearchQueryRequest as na, type UserTaskAuditLogSearchQueryRequest as nb, UserTaskStateEnum as nc, type UserTaskVariableFilter as nd, type UserTaskStateFilterProperty as ne, type AdvancedUserTaskStateFilter as nf, type UserTaskAuditLogFilter as ng, type UserRequest as nh, type UserCreateResult as ni, type UserUpdateRequest as nj, type UserUpdateResult as nk, type UserResult as nl, type UserSearchQuerySortRequest as nm, type UserSearchQueryRequest as nn, type UserFilter as no, type UserSearchResult as np, type VariableSearchQuerySortRequest as nq, type VariableSearchQuery as nr, type VariableFilter as ns, type VariableSearchQueryResult as nt, type VariableSearchResult as nu, type VariableResult as nv, type VariableResultBase as nw, type VariableValueFilterProperty as nx, type SetVariableRequest as ny, type AgentInstanceStatusExactMatch as nz, type SupportLogger as o, type CreateAuthorizationData as o$, type ProcessInstanceKeyExactMatch as o0, type ElementInstanceKeyExactMatch as o1, type JobKeyExactMatch as o2, type DecisionDefinitionKeyExactMatch as o3, type ScopeKeyExactMatch as o4, type VariableKeyExactMatch as o5, type DecisionEvaluationInstanceKeyExactMatch as o6, type AgentInstanceKeyExactMatch as o7, type AgentHistoryItemKeyExactMatch as o8, type AuditLogKeyExactMatch as o9, type SearchAgentInstancesResponses as oA, type SearchAgentInstancesResponse as oB, type CreateAgentInstanceHistoryItemData as oC, type CreateAgentInstanceHistoryItemErrors as oD, type CreateAgentInstanceHistoryItemError as oE, type CreateAgentInstanceHistoryItemResponses as oF, type CreateAgentInstanceHistoryItemResponse as oG, type SearchAgentInstanceHistoryData as oH, type SearchAgentInstanceHistoryErrors as oI, type SearchAgentInstanceHistoryError as oJ, type SearchAgentInstanceHistoryResponses as oK, type SearchAgentInstanceHistoryResponse as oL, type SearchAuditLogsData as oM, type SearchAuditLogsErrors as oN, type SearchAuditLogsError as oO, type SearchAuditLogsResponses as oP, type SearchAuditLogsResponse as oQ, type GetAuditLogData as oR, type GetAuditLogErrors as oS, type GetAuditLogError as oT, type GetAuditLogResponses as oU, type GetAuditLogResponse as oV, type GetAuthenticationData as oW, type GetAuthenticationErrors as oX, type GetAuthenticationError as oY, type GetAuthenticationResponses as oZ, type GetAuthenticationResponse as o_, type FormKeyExactMatch as oa, type DecisionEvaluationKeyExactMatch as ob, type DecisionRequirementsKeyExactMatch as oc, type MessageSubscriptionTypeExactMatch as od, type MessageSubscriptionStateExactMatch as oe, type MessageSubscriptionKeyExactMatch as of, type ProcessInstanceStateExactMatch as og, type UserTaskStateExactMatch as oh, type CreateAgentInstanceData as oi, type CreateAgentInstanceErrors as oj, type CreateAgentInstanceError as ok, type CreateAgentInstanceResponses as ol, type CreateAgentInstanceResponse as om, type GetAgentInstanceData as on, type GetAgentInstanceErrors as oo, type GetAgentInstanceError as op, type GetAgentInstanceResponses as oq, type GetAgentInstanceResponse as or, type UpdateAgentInstanceData as os, type UpdateAgentInstanceErrors as ot, type UpdateAgentInstanceError as ou, type UpdateAgentInstanceResponses as ov, type UpdateAgentInstanceResponse as ow, type SearchAgentInstancesData as ox, type SearchAgentInstancesErrors as oy, type SearchAgentInstancesError as oz, type ThreadedJob as p, type ResetClockResponse as p$, type CreateAuthorizationErrors as p0, type CreateAuthorizationError as p1, type CreateAuthorizationResponses as p2, type CreateAuthorizationResponse as p3, type SearchAuthorizationsData as p4, type SearchAuthorizationsErrors as p5, type SearchAuthorizationsError as p6, type SearchAuthorizationsResponses as p7, type SearchAuthorizationsResponse as p8, type DeleteAuthorizationData as p9, type GetBatchOperationError as pA, type GetBatchOperationResponses as pB, type GetBatchOperationResponse as pC, type CancelBatchOperationData as pD, type CancelBatchOperationErrors as pE, type CancelBatchOperationError as pF, type CancelBatchOperationResponses as pG, type CancelBatchOperationResponse as pH, type ResumeBatchOperationData as pI, type ResumeBatchOperationErrors as pJ, type ResumeBatchOperationError as pK, type ResumeBatchOperationResponses as pL, type ResumeBatchOperationResponse as pM, type SuspendBatchOperationData as pN, type SuspendBatchOperationErrors as pO, type SuspendBatchOperationError as pP, type SuspendBatchOperationResponses as pQ, type SuspendBatchOperationResponse as pR, type PinClockData as pS, type PinClockErrors as pT, type PinClockError as pU, type PinClockResponses as pV, type PinClockResponse as pW, type ResetClockData as pX, type ResetClockErrors as pY, type ResetClockError as pZ, type ResetClockResponses as p_, type DeleteAuthorizationErrors as pa, type DeleteAuthorizationError as pb, type DeleteAuthorizationResponses as pc, type DeleteAuthorizationResponse as pd, type GetAuthorizationData as pe, type GetAuthorizationErrors as pf, type GetAuthorizationError as pg, type GetAuthorizationResponses as ph, type GetAuthorizationResponse as pi, type UpdateAuthorizationData as pj, type UpdateAuthorizationErrors as pk, type UpdateAuthorizationError as pl, type UpdateAuthorizationResponses as pm, type UpdateAuthorizationResponse as pn, type SearchBatchOperationItemsData as po, type SearchBatchOperationItemsErrors as pp, type SearchBatchOperationItemsError as pq, type SearchBatchOperationItemsResponses as pr, type SearchBatchOperationItemsResponse as ps, type SearchBatchOperationsData as pt, type SearchBatchOperationsErrors as pu, type SearchBatchOperationsError as pv, type SearchBatchOperationsResponses as pw, type SearchBatchOperationsResponse as px, type GetBatchOperationData as py, type GetBatchOperationErrors as pz, type ThreadedJobHandler as q, type SearchDecisionDefinitionsResponses as q$, type CreateGlobalClusterVariableData as q0, type CreateGlobalClusterVariableErrors as q1, type CreateGlobalClusterVariableError as q2, type CreateGlobalClusterVariableResponses as q3, type CreateGlobalClusterVariableResponse as q4, type DeleteGlobalClusterVariableData as q5, type DeleteGlobalClusterVariableErrors as q6, type DeleteGlobalClusterVariableError as q7, type DeleteGlobalClusterVariableResponses as q8, type DeleteGlobalClusterVariableResponse as q9, type GetTenantClusterVariableErrors as qA, type GetTenantClusterVariableError as qB, type GetTenantClusterVariableResponses as qC, type GetTenantClusterVariableResponse as qD, type UpdateTenantClusterVariableData as qE, type UpdateTenantClusterVariableErrors as qF, type UpdateTenantClusterVariableError as qG, type UpdateTenantClusterVariableResponses as qH, type UpdateTenantClusterVariableResponse as qI, type EvaluateConditionalsData as qJ, type EvaluateConditionalsErrors as qK, type EvaluateConditionalsError as qL, type EvaluateConditionalsResponses as qM, type EvaluateConditionalsResponse as qN, type SearchCorrelatedMessageSubscriptionsData as qO, type SearchCorrelatedMessageSubscriptionsErrors as qP, type SearchCorrelatedMessageSubscriptionsError as qQ, type SearchCorrelatedMessageSubscriptionsResponses as qR, type SearchCorrelatedMessageSubscriptionsResponse as qS, type EvaluateDecisionData as qT, type EvaluateDecisionErrors as qU, type EvaluateDecisionError as qV, type EvaluateDecisionResponses as qW, type EvaluateDecisionResponse as qX, type SearchDecisionDefinitionsData as qY, type SearchDecisionDefinitionsErrors as qZ, type SearchDecisionDefinitionsError as q_, type GetGlobalClusterVariableData as qa, type GetGlobalClusterVariableErrors as qb, type GetGlobalClusterVariableError as qc, type GetGlobalClusterVariableResponses as qd, type GetGlobalClusterVariableResponse as qe, type UpdateGlobalClusterVariableData as qf, type UpdateGlobalClusterVariableErrors as qg, type UpdateGlobalClusterVariableError as qh, type UpdateGlobalClusterVariableResponses as qi, type UpdateGlobalClusterVariableResponse as qj, type SearchClusterVariablesData as qk, type SearchClusterVariablesErrors as ql, type SearchClusterVariablesError as qm, type SearchClusterVariablesResponses as qn, type SearchClusterVariablesResponse as qo, type CreateTenantClusterVariableData as qp, type CreateTenantClusterVariableErrors as qq, type CreateTenantClusterVariableError as qr, type CreateTenantClusterVariableResponses as qs, type CreateTenantClusterVariableResponse as qt, type DeleteTenantClusterVariableData as qu, type DeleteTenantClusterVariableErrors as qv, type DeleteTenantClusterVariableError as qw, type DeleteTenantClusterVariableResponses as qx, type DeleteTenantClusterVariableResponse as qy, type GetTenantClusterVariableData as qz, ThreadedJobWorker as r, type DeleteDocumentError as r$, type SearchDecisionDefinitionsResponse as r0, type GetDecisionDefinitionData as r1, type GetDecisionDefinitionErrors as r2, type GetDecisionDefinitionError as r3, type GetDecisionDefinitionResponses as r4, type GetDecisionDefinitionResponse as r5, type GetDecisionDefinitionXmlData as r6, type GetDecisionDefinitionXmlErrors as r7, type GetDecisionDefinitionXmlError as r8, type GetDecisionDefinitionXmlResponses as r9, type GetDecisionRequirementsData as rA, type GetDecisionRequirementsErrors as rB, type GetDecisionRequirementsError as rC, type GetDecisionRequirementsResponses as rD, type GetDecisionRequirementsResponse as rE, type GetDecisionRequirementsXmlData as rF, type GetDecisionRequirementsXmlErrors as rG, type GetDecisionRequirementsXmlError as rH, type GetDecisionRequirementsXmlResponses as rI, type GetDecisionRequirementsXmlResponse as rJ, type CreateDeploymentData as rK, type CreateDeploymentErrors as rL, type CreateDeploymentError as rM, type CreateDeploymentResponses as rN, type CreateDeploymentResponse as rO, type CreateDocumentData as rP, type CreateDocumentErrors as rQ, type CreateDocumentError as rR, type CreateDocumentResponses as rS, type CreateDocumentResponse as rT, type CreateDocumentsData as rU, type CreateDocumentsErrors as rV, type CreateDocumentsError as rW, type CreateDocumentsResponses as rX, type CreateDocumentsResponse as rY, type DeleteDocumentData as rZ, type DeleteDocumentErrors as r_, type GetDecisionDefinitionXmlResponse as ra, type SearchDecisionInstancesData as rb, type SearchDecisionInstancesErrors as rc, type SearchDecisionInstancesError as rd, type SearchDecisionInstancesResponses as re, type SearchDecisionInstancesResponse as rf, type GetDecisionInstanceData as rg, type GetDecisionInstanceErrors as rh, type GetDecisionInstanceError as ri, type GetDecisionInstanceResponses as rj, type GetDecisionInstanceResponse as rk, type DeleteDecisionInstanceData as rl, type DeleteDecisionInstanceErrors as rm, type DeleteDecisionInstanceError as rn, type DeleteDecisionInstanceResponses as ro, type DeleteDecisionInstanceResponse as rp, type DeleteDecisionInstancesBatchOperationData as rq, type DeleteDecisionInstancesBatchOperationErrors as rr, type DeleteDecisionInstancesBatchOperationError as rs, type DeleteDecisionInstancesBatchOperationResponses as rt, type DeleteDecisionInstancesBatchOperationResponse as ru, type SearchDecisionRequirementsData as rv, type SearchDecisionRequirementsErrors as rw, type SearchDecisionRequirementsError as rx, type SearchDecisionRequirementsResponses as ry, type SearchDecisionRequirementsResponse as rz, type ThreadedJobWorkerConfig as s, type GetGlobalTaskListenerErrors as s$, type DeleteDocumentResponses as s0, type DeleteDocumentResponse as s1, type GetDocumentData as s2, type GetDocumentErrors as s3, type GetDocumentError as s4, type GetDocumentResponses as s5, type GetDocumentResponse as s6, type CreateDocumentLinkData as s7, type CreateDocumentLinkErrors as s8, type CreateDocumentLinkError as s9, type SearchElementInstanceIncidentsResponse as sA, type CreateElementInstanceVariablesData as sB, type CreateElementInstanceVariablesErrors as sC, type CreateElementInstanceVariablesError as sD, type CreateElementInstanceVariablesResponses as sE, type CreateElementInstanceVariablesResponse as sF, type EvaluateExpressionData as sG, type EvaluateExpressionErrors as sH, type EvaluateExpressionError as sI, type EvaluateExpressionResponses as sJ, type EvaluateExpressionResponse as sK, type GetFormByKeyData as sL, type GetFormByKeyErrors as sM, type GetFormByKeyError as sN, type GetFormByKeyResponses as sO, type GetFormByKeyResponse as sP, type CreateGlobalTaskListenerData as sQ, type CreateGlobalTaskListenerErrors as sR, type CreateGlobalTaskListenerError as sS, type CreateGlobalTaskListenerResponses as sT, type CreateGlobalTaskListenerResponse as sU, type DeleteGlobalTaskListenerData as sV, type DeleteGlobalTaskListenerErrors as sW, type DeleteGlobalTaskListenerError as sX, type DeleteGlobalTaskListenerResponses as sY, type DeleteGlobalTaskListenerResponse as sZ, type GetGlobalTaskListenerData as s_, type CreateDocumentLinkResponses as sa, type CreateDocumentLinkResponse as sb, type ActivateAdHocSubProcessActivitiesData as sc, type ActivateAdHocSubProcessActivitiesErrors as sd, type ActivateAdHocSubProcessActivitiesError as se, type ActivateAdHocSubProcessActivitiesResponses as sf, type ActivateAdHocSubProcessActivitiesResponse as sg, type SearchElementInstanceWaitStatesData as sh, type SearchElementInstanceWaitStatesErrors as si, type SearchElementInstanceWaitStatesError as sj, type SearchElementInstanceWaitStatesResponses as sk, type SearchElementInstanceWaitStatesResponse as sl, type SearchElementInstancesData as sm, type SearchElementInstancesErrors as sn, type SearchElementInstancesError as so, type SearchElementInstancesResponses as sp, type SearchElementInstancesResponse as sq, type GetElementInstanceData as sr, type GetElementInstanceErrors as ss, type GetElementInstanceError as st, type GetElementInstanceResponses as su, type GetElementInstanceResponse as sv, type SearchElementInstanceIncidentsData as sw, type SearchElementInstanceIncidentsErrors as sx, type SearchElementInstanceIncidentsError as sy, type SearchElementInstanceIncidentsResponses as sz, ThreadPool as t, type AssignMappingRuleToGroupData as t$, type GetGlobalTaskListenerError as t0, type GetGlobalTaskListenerResponses as t1, type GetGlobalTaskListenerResponse as t2, type UpdateGlobalTaskListenerData as t3, type UpdateGlobalTaskListenerErrors as t4, type UpdateGlobalTaskListenerError as t5, type UpdateGlobalTaskListenerResponses as t6, type UpdateGlobalTaskListenerResponse as t7, type SearchGlobalTaskListenersData as t8, type SearchGlobalTaskListenersErrors as t9, type UpdateGroupResponses as tA, type UpdateGroupResponse as tB, type SearchClientsForGroupData as tC, type SearchClientsForGroupErrors as tD, type SearchClientsForGroupError as tE, type SearchClientsForGroupResponses as tF, type SearchClientsForGroupResponse as tG, type UnassignClientFromGroupData as tH, type UnassignClientFromGroupErrors as tI, type UnassignClientFromGroupError as tJ, type UnassignClientFromGroupResponses as tK, type UnassignClientFromGroupResponse as tL, type AssignClientToGroupData as tM, type AssignClientToGroupErrors as tN, type AssignClientToGroupError as tO, type AssignClientToGroupResponses as tP, type AssignClientToGroupResponse as tQ, type SearchMappingRulesForGroupData as tR, type SearchMappingRulesForGroupErrors as tS, type SearchMappingRulesForGroupError as tT, type SearchMappingRulesForGroupResponses as tU, type SearchMappingRulesForGroupResponse as tV, type UnassignMappingRuleFromGroupData as tW, type UnassignMappingRuleFromGroupErrors as tX, type UnassignMappingRuleFromGroupError as tY, type UnassignMappingRuleFromGroupResponses as tZ, type UnassignMappingRuleFromGroupResponse as t_, type SearchGlobalTaskListenersError as ta, type SearchGlobalTaskListenersResponses as tb, type SearchGlobalTaskListenersResponse as tc, type CreateGroupData as td, type CreateGroupErrors as te, type CreateGroupError as tf, type CreateGroupResponses as tg, type CreateGroupResponse as th, type SearchGroupsData as ti, type SearchGroupsErrors as tj, type SearchGroupsError as tk, type SearchGroupsResponses as tl, type SearchGroupsResponse as tm, type DeleteGroupData as tn, type DeleteGroupErrors as to, type DeleteGroupError as tp, type DeleteGroupResponses as tq, type DeleteGroupResponse as tr, type GetGroupData as ts, type GetGroupErrors as tt, type GetGroupError as tu, type GetGroupResponses as tv, type GetGroupResponse as tw, type UpdateGroupData as tx, type UpdateGroupErrors as ty, type UpdateGroupError as tz, collectTypedVariables as u, type UpdateJobResponse as u$, type AssignMappingRuleToGroupErrors as u0, type AssignMappingRuleToGroupError as u1, type AssignMappingRuleToGroupResponses as u2, type AssignMappingRuleToGroupResponse as u3, type SearchRolesForGroupData as u4, type SearchRolesForGroupErrors as u5, type SearchRolesForGroupError as u6, type SearchRolesForGroupResponses as u7, type SearchRolesForGroupResponse as u8, type SearchUsersForGroupData as u9, type ResolveIncidentError as uA, type ResolveIncidentResponses as uB, type ResolveIncidentResponse as uC, type GetProcessInstanceStatisticsByDefinitionData as uD, type GetProcessInstanceStatisticsByDefinitionErrors as uE, type GetProcessInstanceStatisticsByDefinitionError as uF, type GetProcessInstanceStatisticsByDefinitionResponses as uG, type GetProcessInstanceStatisticsByDefinitionResponse as uH, type GetProcessInstanceStatisticsByErrorData as uI, type GetProcessInstanceStatisticsByErrorErrors as uJ, type GetProcessInstanceStatisticsByErrorError as uK, type GetProcessInstanceStatisticsByErrorResponses as uL, type GetProcessInstanceStatisticsByErrorResponse as uM, type ActivateJobsData as uN, type ActivateJobsErrors as uO, type ActivateJobsError as uP, type ActivateJobsResponses as uQ, type ActivateJobsResponse as uR, type SearchJobsData as uS, type SearchJobsErrors as uT, type SearchJobsError as uU, type SearchJobsResponses as uV, type SearchJobsResponse as uW, type UpdateJobData as uX, type UpdateJobErrors as uY, type UpdateJobError as uZ, type UpdateJobResponses as u_, type SearchUsersForGroupErrors as ua, type SearchUsersForGroupError as ub, type SearchUsersForGroupResponses as uc, type SearchUsersForGroupResponse as ud, type UnassignUserFromGroupData as ue, type UnassignUserFromGroupErrors as uf, type UnassignUserFromGroupError as ug, type UnassignUserFromGroupResponses as uh, type UnassignUserFromGroupResponse as ui, type AssignUserToGroupData as uj, type AssignUserToGroupErrors as uk, type AssignUserToGroupError as ul, type AssignUserToGroupResponses as um, type AssignUserToGroupResponse as un, type SearchIncidentsData as uo, type SearchIncidentsErrors as up, type SearchIncidentsError as uq, type SearchIncidentsResponses as ur, type SearchIncidentsResponse as us, type GetIncidentData as ut, type GetIncidentErrors as uu, type GetIncidentError as uv, type GetIncidentResponses as uw, type GetIncidentResponse as ux, type ResolveIncidentData as uy, type ResolveIncidentErrors as uz, type TypedVariableItem as v, type GetMappingRuleResponses as v$, type CompleteJobData as v0, type CompleteJobErrors as v1, type CompleteJobError as v2, type CompleteJobResponses as v3, type CompleteJobResponse as v4, type ThrowJobErrorData as v5, type ThrowJobErrorErrors as v6, type ThrowJobErrorError as v7, type ThrowJobErrorResponses as v8, type ThrowJobErrorResponse as v9, type GetJobErrorStatisticsErrors as vA, type GetJobErrorStatisticsError as vB, type GetJobErrorStatisticsResponses as vC, type GetJobErrorStatisticsResponse as vD, type GetLicenseData as vE, type GetLicenseErrors as vF, type GetLicenseError as vG, type GetLicenseResponses as vH, type GetLicenseResponse as vI, type CreateMappingRuleData as vJ, type CreateMappingRuleErrors as vK, type CreateMappingRuleError as vL, type CreateMappingRuleResponses as vM, type CreateMappingRuleResponse as vN, type SearchMappingRuleData as vO, type SearchMappingRuleErrors as vP, type SearchMappingRuleError as vQ, type SearchMappingRuleResponses as vR, type SearchMappingRuleResponse as vS, type DeleteMappingRuleData as vT, type DeleteMappingRuleErrors as vU, type DeleteMappingRuleError as vV, type DeleteMappingRuleResponses as vW, type DeleteMappingRuleResponse as vX, type GetMappingRuleData as vY, type GetMappingRuleErrors as vZ, type GetMappingRuleError as v_, type FailJobData as va, type FailJobErrors as vb, type FailJobError as vc, type FailJobResponses as vd, type FailJobResponse as ve, type GetGlobalJobStatisticsData as vf, type GetGlobalJobStatisticsErrors as vg, type GetGlobalJobStatisticsError as vh, type GetGlobalJobStatisticsResponses as vi, type GetGlobalJobStatisticsResponse as vj, type GetJobTypeStatisticsData as vk, type GetJobTypeStatisticsErrors as vl, type GetJobTypeStatisticsError as vm, type GetJobTypeStatisticsResponses as vn, type GetJobTypeStatisticsResponse as vo, type GetJobWorkerStatisticsData as vp, type GetJobWorkerStatisticsErrors as vq, type GetJobWorkerStatisticsError as vr, type GetJobWorkerStatisticsResponses as vs, type GetJobWorkerStatisticsResponse as vt, type GetJobTimeSeriesStatisticsData as vu, type GetJobTimeSeriesStatisticsErrors as vv, type GetJobTimeSeriesStatisticsError as vw, type GetJobTimeSeriesStatisticsResponses as vx, type GetJobTimeSeriesStatisticsResponse as vy, type GetJobErrorStatisticsData as vz, type TypedVariablePage as w, type CreateProcessInstanceError as w$, type GetMappingRuleResponse as w0, type UpdateMappingRuleData as w1, type UpdateMappingRuleErrors as w2, type UpdateMappingRuleError as w3, type UpdateMappingRuleResponses as w4, type UpdateMappingRuleResponse as w5, type SearchMessageSubscriptionsData as w6, type SearchMessageSubscriptionsErrors as w7, type SearchMessageSubscriptionsError as w8, type SearchMessageSubscriptionsResponses as w9, type GetProcessDefinitionData as wA, type GetProcessDefinitionErrors as wB, type GetProcessDefinitionError as wC, type GetProcessDefinitionResponses as wD, type GetProcessDefinitionResponse as wE, type GetStartProcessFormData as wF, type GetStartProcessFormErrors as wG, type GetStartProcessFormError as wH, type GetStartProcessFormResponses as wI, type GetStartProcessFormResponse as wJ, type GetProcessDefinitionStatisticsData as wK, type GetProcessDefinitionStatisticsErrors as wL, type GetProcessDefinitionStatisticsError as wM, type GetProcessDefinitionStatisticsResponses as wN, type GetProcessDefinitionStatisticsResponse as wO, type GetProcessDefinitionXmlData as wP, type GetProcessDefinitionXmlErrors as wQ, type GetProcessDefinitionXmlError as wR, type GetProcessDefinitionXmlResponses as wS, type GetProcessDefinitionXmlResponse as wT, type GetProcessDefinitionInstanceVersionStatisticsData as wU, type GetProcessDefinitionInstanceVersionStatisticsErrors as wV, type GetProcessDefinitionInstanceVersionStatisticsError as wW, type GetProcessDefinitionInstanceVersionStatisticsResponses as wX, type GetProcessDefinitionInstanceVersionStatisticsResponse as wY, type CreateProcessInstanceData as wZ, type CreateProcessInstanceErrors as w_, type SearchMessageSubscriptionsResponse as wa, type CorrelateMessageData as wb, type CorrelateMessageErrors as wc, type CorrelateMessageError as wd, type CorrelateMessageResponses as we, type CorrelateMessageResponse as wf, type PublishMessageData as wg, type PublishMessageErrors as wh, type PublishMessageError as wi, type PublishMessageResponses as wj, type PublishMessageResponse as wk, type SearchProcessDefinitionsData as wl, type SearchProcessDefinitionsErrors as wm, type SearchProcessDefinitionsError as wn, type SearchProcessDefinitionsResponses as wo, type SearchProcessDefinitionsResponse as wp, type GetProcessDefinitionMessageSubscriptionStatisticsData as wq, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as wr, type GetProcessDefinitionMessageSubscriptionStatisticsError as ws, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as wt, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as wu, type GetProcessDefinitionInstanceStatisticsData as wv, type GetProcessDefinitionInstanceStatisticsErrors as ww, type GetProcessDefinitionInstanceStatisticsError as wx, type GetProcessDefinitionInstanceStatisticsResponses as wy, type GetProcessDefinitionInstanceStatisticsResponse as wz, TypedVariablesError as x, type MigrateProcessInstanceErrors as x$, type CreateProcessInstanceResponses as x0, type CreateProcessInstanceResponse as x1, type CancelProcessInstancesBatchOperationData as x2, type CancelProcessInstancesBatchOperationErrors as x3, type CancelProcessInstancesBatchOperationError as x4, type CancelProcessInstancesBatchOperationResponses as x5, type CancelProcessInstancesBatchOperationResponse as x6, type DeleteProcessInstancesBatchOperationData as x7, type DeleteProcessInstancesBatchOperationErrors as x8, type DeleteProcessInstancesBatchOperationError as x9, type GetProcessInstanceResponse as xA, type GetProcessInstanceCallHierarchyData as xB, type GetProcessInstanceCallHierarchyErrors as xC, type GetProcessInstanceCallHierarchyError as xD, type GetProcessInstanceCallHierarchyResponses as xE, type GetProcessInstanceCallHierarchyResponse as xF, type CancelProcessInstanceData as xG, type CancelProcessInstanceErrors as xH, type CancelProcessInstanceError as xI, type CancelProcessInstanceResponses as xJ, type CancelProcessInstanceResponse as xK, type DeleteProcessInstanceData as xL, type DeleteProcessInstanceErrors as xM, type DeleteProcessInstanceError as xN, type DeleteProcessInstanceResponses as xO, type DeleteProcessInstanceResponse as xP, type ResolveProcessInstanceIncidentsData as xQ, type ResolveProcessInstanceIncidentsErrors as xR, type ResolveProcessInstanceIncidentsError as xS, type ResolveProcessInstanceIncidentsResponses as xT, type ResolveProcessInstanceIncidentsResponse as xU, type SearchProcessInstanceIncidentsData as xV, type SearchProcessInstanceIncidentsErrors as xW, type SearchProcessInstanceIncidentsError as xX, type SearchProcessInstanceIncidentsResponses as xY, type SearchProcessInstanceIncidentsResponse as xZ, type MigrateProcessInstanceData as x_, type DeleteProcessInstancesBatchOperationResponses as xa, type DeleteProcessInstancesBatchOperationResponse as xb, type ResolveIncidentsBatchOperationData as xc, type ResolveIncidentsBatchOperationErrors as xd, type ResolveIncidentsBatchOperationError as xe, type ResolveIncidentsBatchOperationResponses as xf, type ResolveIncidentsBatchOperationResponse as xg, type MigrateProcessInstancesBatchOperationData as xh, type MigrateProcessInstancesBatchOperationErrors as xi, type MigrateProcessInstancesBatchOperationError as xj, type MigrateProcessInstancesBatchOperationResponses as xk, type MigrateProcessInstancesBatchOperationResponse as xl, type ModifyProcessInstancesBatchOperationData as xm, type ModifyProcessInstancesBatchOperationErrors as xn, type ModifyProcessInstancesBatchOperationError as xo, type ModifyProcessInstancesBatchOperationResponses as xp, type ModifyProcessInstancesBatchOperationResponse as xq, type SearchProcessInstancesData as xr, type SearchProcessInstancesErrors as xs, type SearchProcessInstancesError as xt, type SearchProcessInstancesResponses as xu, type SearchProcessInstancesResponse as xv, type GetProcessInstanceData as xw, type GetProcessInstanceErrors as xx, type GetProcessInstanceError as xy, type GetProcessInstanceResponses as xz, VariableDeserializationError as y, type UpdateRoleData as y$, type MigrateProcessInstanceError as y0, type MigrateProcessInstanceResponses as y1, type MigrateProcessInstanceResponse as y2, type ModifyProcessInstanceData as y3, type ModifyProcessInstanceErrors as y4, type ModifyProcessInstanceError as y5, type ModifyProcessInstanceResponses as y6, type ModifyProcessInstanceResponse as y7, type GetProcessInstanceSequenceFlowsData as y8, type GetProcessInstanceSequenceFlowsErrors as y9, type GetResourceContentBinaryResponses as yA, type GetResourceContentBinaryResponse as yB, type DeleteResourceData as yC, type DeleteResourceErrors as yD, type DeleteResourceError as yE, type DeleteResourceResponses as yF, type DeleteResourceResponse2 as yG, type CreateRoleData as yH, type CreateRoleErrors as yI, type CreateRoleError as yJ, type CreateRoleResponses as yK, type CreateRoleResponse as yL, type SearchRolesData as yM, type SearchRolesErrors as yN, type SearchRolesError as yO, type SearchRolesResponses as yP, type SearchRolesResponse as yQ, type DeleteRoleData as yR, type DeleteRoleErrors as yS, type DeleteRoleError as yT, type DeleteRoleResponses as yU, type DeleteRoleResponse as yV, type GetRoleData as yW, type GetRoleErrors as yX, type GetRoleError as yY, type GetRoleResponses as yZ, type GetRoleResponse as y_, type GetProcessInstanceSequenceFlowsError as ya, type GetProcessInstanceSequenceFlowsResponses as yb, type GetProcessInstanceSequenceFlowsResponse as yc, type GetProcessInstanceStatisticsData as yd, type GetProcessInstanceStatisticsErrors as ye, type GetProcessInstanceStatisticsError as yf, type GetProcessInstanceStatisticsResponses as yg, type GetProcessInstanceStatisticsResponse as yh, type SearchResourcesData as yi, type SearchResourcesErrors as yj, type SearchResourcesError as yk, type SearchResourcesResponses as yl, type SearchResourcesResponse as ym, type GetResourceData as yn, type GetResourceErrors as yo, type GetResourceError as yp, type GetResourceResponses as yq, type GetResourceResponse as yr, type GetResourceContentData as ys, type GetResourceContentErrors as yt, type GetResourceContentError as yu, type GetResourceContentResponses as yv, type GetResourceContentResponse as yw, type GetResourceContentBinaryData as yx, type GetResourceContentBinaryErrors as yy, type GetResourceContentBinaryError as yz, VariableMap as z, type AssignRoleToUserResponse as z$, type UpdateRoleErrors as z0, type UpdateRoleError as z1, type UpdateRoleResponses as z2, type UpdateRoleResponse as z3, type SearchClientsForRoleData as z4, type SearchClientsForRoleErrors as z5, type SearchClientsForRoleError as z6, type SearchClientsForRoleResponses as z7, type SearchClientsForRoleResponse as z8, type UnassignRoleFromClientData as z9, type SearchMappingRulesForRoleError as zA, type SearchMappingRulesForRoleResponses as zB, type SearchMappingRulesForRoleResponse as zC, type UnassignRoleFromMappingRuleData as zD, type UnassignRoleFromMappingRuleErrors as zE, type UnassignRoleFromMappingRuleError as zF, type UnassignRoleFromMappingRuleResponses as zG, type UnassignRoleFromMappingRuleResponse as zH, type AssignRoleToMappingRuleData as zI, type AssignRoleToMappingRuleErrors as zJ, type AssignRoleToMappingRuleError as zK, type AssignRoleToMappingRuleResponses as zL, type AssignRoleToMappingRuleResponse as zM, type SearchUsersForRoleData as zN, type SearchUsersForRoleErrors as zO, type SearchUsersForRoleError as zP, type SearchUsersForRoleResponses as zQ, type SearchUsersForRoleResponse as zR, type UnassignRoleFromUserData as zS, type UnassignRoleFromUserErrors as zT, type UnassignRoleFromUserError as zU, type UnassignRoleFromUserResponses as zV, type UnassignRoleFromUserResponse as zW, type AssignRoleToUserData as zX, type AssignRoleToUserErrors as zY, type AssignRoleToUserError as zZ, type AssignRoleToUserResponses as z_, type UnassignRoleFromClientErrors as za, type UnassignRoleFromClientError as zb, type UnassignRoleFromClientResponses as zc, type UnassignRoleFromClientResponse as zd, type AssignRoleToClientData as ze, type AssignRoleToClientErrors as zf, type AssignRoleToClientError as zg, type AssignRoleToClientResponses as zh, type AssignRoleToClientResponse as zi, type SearchGroupsForRoleData as zj, type SearchGroupsForRoleErrors as zk, type SearchGroupsForRoleError as zl, type SearchGroupsForRoleResponses as zm, type SearchGroupsForRoleResponse as zn, type UnassignRoleFromGroupData as zo, type UnassignRoleFromGroupErrors as zp, type UnassignRoleFromGroupError as zq, type UnassignRoleFromGroupResponses as zr, type UnassignRoleFromGroupResponse as zs, type AssignRoleToGroupData as zt, type AssignRoleToGroupErrors as zu, type AssignRoleToGroupError as zv, type AssignRoleToGroupResponses as zw, type AssignRoleToGroupResponse as zx, type SearchMappingRulesForRoleData as zy, type SearchMappingRulesForRoleErrors as zz };
|
|
27684
|
+
export { type assignUserTaskInput as $, type AnyVariableSchema as A, type AssignClientToTenantErrors as A$, type AssignRoleToUserData as A0, type AssignRoleToUserErrors as A1, type AssignRoleToUserError as A2, type AssignRoleToUserResponses as A3, type AssignRoleToUserResponse as A4, type CreateAdminUserData as A5, type CreateAdminUserErrors as A6, type CreateAdminUserError as A7, type CreateAdminUserResponses as A8, type CreateAdminUserResponse as A9, type SearchTenantsError as AA, type SearchTenantsResponses as AB, type SearchTenantsResponse as AC, type DeleteTenantData as AD, type DeleteTenantErrors as AE, type DeleteTenantError as AF, type DeleteTenantResponses as AG, type DeleteTenantResponse as AH, type GetTenantData as AI, type GetTenantErrors as AJ, type GetTenantError as AK, type GetTenantResponses as AL, type GetTenantResponse as AM, type UpdateTenantData as AN, type UpdateTenantErrors as AO, type UpdateTenantError as AP, type UpdateTenantResponses as AQ, type UpdateTenantResponse as AR, type SearchClientsForTenantData as AS, type SearchClientsForTenantResponses as AT, type SearchClientsForTenantResponse as AU, type UnassignClientFromTenantData as AV, type UnassignClientFromTenantErrors as AW, type UnassignClientFromTenantError as AX, type UnassignClientFromTenantResponses as AY, type UnassignClientFromTenantResponse as AZ, type AssignClientToTenantData as A_, type BroadcastSignalData as Aa, type BroadcastSignalErrors as Ab, type BroadcastSignalError as Ac, type BroadcastSignalResponses as Ad, type BroadcastSignalResponse as Ae, type GetStatusData as Af, type GetStatusErrors as Ag, type GetStatusResponses as Ah, type GetStatusResponse as Ai, type GetUsageMetricsData as Aj, type GetUsageMetricsErrors as Ak, type GetUsageMetricsError as Al, type GetUsageMetricsResponses as Am, type GetUsageMetricsResponse as An, type GetSystemConfigurationData as Ao, type GetSystemConfigurationErrors as Ap, type GetSystemConfigurationError as Aq, type GetSystemConfigurationResponses as Ar, type GetSystemConfigurationResponse as As, type CreateTenantData as At, type CreateTenantErrors as Au, type CreateTenantError as Av, type CreateTenantResponses as Aw, type CreateTenantResponse as Ax, type SearchTenantsData as Ay, type SearchTenantsErrors as Az, type BackpressureSeverity as B, type CreateUserResponses as B$, type AssignClientToTenantError as B0, type AssignClientToTenantResponses as B1, type AssignClientToTenantResponse as B2, type SearchGroupIdsForTenantData as B3, type SearchGroupIdsForTenantResponses as B4, type SearchGroupIdsForTenantResponse as B5, type UnassignGroupFromTenantData as B6, type UnassignGroupFromTenantErrors as B7, type UnassignGroupFromTenantError as B8, type UnassignGroupFromTenantResponses as B9, type UnassignRoleFromTenantResponse as BA, type AssignRoleToTenantData as BB, type AssignRoleToTenantErrors as BC, type AssignRoleToTenantError as BD, type AssignRoleToTenantResponses as BE, type AssignRoleToTenantResponse as BF, type SearchUsersForTenantData as BG, type SearchUsersForTenantResponses as BH, type SearchUsersForTenantResponse as BI, type UnassignUserFromTenantData as BJ, type UnassignUserFromTenantErrors as BK, type UnassignUserFromTenantError as BL, type UnassignUserFromTenantResponses as BM, type UnassignUserFromTenantResponse as BN, type AssignUserToTenantData as BO, type AssignUserToTenantErrors as BP, type AssignUserToTenantError as BQ, type AssignUserToTenantResponses as BR, type AssignUserToTenantResponse as BS, type GetTopologyData as BT, type GetTopologyErrors as BU, type GetTopologyError as BV, type GetTopologyResponses as BW, type GetTopologyResponse as BX, type CreateUserData as BY, type CreateUserErrors as BZ, type CreateUserError as B_, type UnassignGroupFromTenantResponse as Ba, type AssignGroupToTenantData as Bb, type AssignGroupToTenantErrors as Bc, type AssignGroupToTenantError as Bd, type AssignGroupToTenantResponses as Be, type AssignGroupToTenantResponse as Bf, type SearchMappingRulesForTenantData as Bg, type SearchMappingRulesForTenantResponses as Bh, type SearchMappingRulesForTenantResponse as Bi, type UnassignMappingRuleFromTenantData as Bj, type UnassignMappingRuleFromTenantErrors as Bk, type UnassignMappingRuleFromTenantError as Bl, type UnassignMappingRuleFromTenantResponses as Bm, type UnassignMappingRuleFromTenantResponse as Bn, type AssignMappingRuleToTenantData as Bo, type AssignMappingRuleToTenantErrors as Bp, type AssignMappingRuleToTenantError as Bq, type AssignMappingRuleToTenantResponses as Br, type AssignMappingRuleToTenantResponse as Bs, type SearchRolesForTenantData as Bt, type SearchRolesForTenantResponses as Bu, type SearchRolesForTenantResponse as Bv, type UnassignRoleFromTenantData as Bw, type UnassignRoleFromTenantErrors as Bx, type UnassignRoleFromTenantError as By, type UnassignRoleFromTenantResponses as Bz, CamundaClient as C, type GetUserTaskFormError as C$, type CreateUserResponse as C0, type SearchUsersData as C1, type SearchUsersErrors as C2, type SearchUsersError as C3, type SearchUsersResponses as C4, type SearchUsersResponse as C5, type DeleteUserData as C6, type DeleteUserErrors as C7, type DeleteUserError as C8, type DeleteUserResponses as C9, type UnassignUserTaskData as CA, type UnassignUserTaskErrors as CB, type UnassignUserTaskError as CC, type UnassignUserTaskResponses as CD, type UnassignUserTaskResponse as CE, type AssignUserTaskData as CF, type AssignUserTaskErrors as CG, type AssignUserTaskError as CH, type AssignUserTaskResponses as CI, type AssignUserTaskResponse as CJ, type SearchUserTaskAuditLogsData as CK, type SearchUserTaskAuditLogsErrors as CL, type SearchUserTaskAuditLogsError as CM, type SearchUserTaskAuditLogsResponses as CN, type SearchUserTaskAuditLogsResponse as CO, type CompleteUserTaskData as CP, type CompleteUserTaskErrors as CQ, type CompleteUserTaskError as CR, type CompleteUserTaskResponses as CS, type CompleteUserTaskResponse as CT, type SearchUserTaskEffectiveVariablesData as CU, type SearchUserTaskEffectiveVariablesErrors as CV, type SearchUserTaskEffectiveVariablesError as CW, type SearchUserTaskEffectiveVariablesResponses as CX, type SearchUserTaskEffectiveVariablesResponse as CY, type GetUserTaskFormData as CZ, type GetUserTaskFormErrors as C_, type DeleteUserResponse as Ca, type GetUserData as Cb, type GetUserErrors as Cc, type GetUserError as Cd, type GetUserResponses as Ce, type GetUserResponse as Cf, type UpdateUserData as Cg, type UpdateUserErrors as Ch, type UpdateUserError as Ci, type UpdateUserResponses as Cj, type UpdateUserResponse as Ck, type SearchUserTasksData as Cl, type SearchUserTasksErrors as Cm, type SearchUserTasksError as Cn, type SearchUserTasksResponses as Co, type SearchUserTasksResponse as Cp, type GetUserTaskData as Cq, type GetUserTaskErrors as Cr, type GetUserTaskError as Cs, type GetUserTaskResponses as Ct, type GetUserTaskResponse as Cu, type UpdateUserTaskData as Cv, type UpdateUserTaskErrors as Cw, type UpdateUserTaskError as Cx, type UpdateUserTaskResponses as Cy, type UpdateUserTaskResponse as Cz, VariableScopeCollisionError as D, type GetUserTaskFormResponses as D0, type GetUserTaskFormResponse as D1, type SearchUserTaskVariablesData as D2, type SearchUserTaskVariablesErrors as D3, type SearchUserTaskVariablesError as D4, type SearchUserTaskVariablesResponses as D5, type SearchUserTaskVariablesResponse as D6, type SearchVariablesData as D7, type SearchVariablesErrors as D8, type SearchVariablesError as D9, type SearchVariablesResponses as Da, type SearchVariablesResponse as Db, type GetVariableData as Dc, type GetVariableErrors as Dd, type GetVariableError as De, type GetVariableResponses as Df, type GetVariableResponse as Dg, assertConstraint as Dh, classifyDomainError as Di, type DomainError as Dj, type DomainErrorTag as Dk, eventuallyTE as Dl, type FnKeys as Dm, type Fpify as Dn, foldDomainError as Do, type HttpError as Dp, type Left as Dq, type Right as Dr, retryTE as Ds, type TaskEither as Dt, withTimeoutTE as Du, type Either as E, variableNamesFromSchema as F, type AuthStrategy as G, type HttpRetryPolicy as H, type CamundaConfig as I, type Job as J, type ValidationMode as K, type activateAdHocSubProcessActivitiesInput as L, type activateJobsInput as M, type assignClientToGroupInput as N, type OperationOptions as O, type assignClientToTenantInput as P, type assignGroupToTenantInput as Q, type assignMappingRuleToGroupInput as R, type SdkError as S, type TelemetryHooks as T, type assignMappingRuleToTenantInput as U, VariableCollector as V, type assignRoleToClientInput as W, type assignRoleToGroupInput as X, type assignRoleToMappingRuleInput as Y, type assignRoleToTenantInput as Z, type assignRoleToUserInput as _, type CamundaOptions as a, type getDecisionRequirementsXmlInput as a$, type assignUserToGroupInput as a0, type assignUserToTenantInput as a1, type broadcastSignalInput as a2, type cancelBatchOperationInput as a3, type cancelProcessInstanceInput as a4, type cancelProcessInstancesBatchOperationInput as a5, type completeJobInput as a6, type completeUserTaskInput as a7, type correlateMessageInput as a8, type createAdminUserInput as a9, type deleteProcessInstancesBatchOperationInput as aA, type deleteResourceInput as aB, type deleteRoleInput as aC, type deleteTenantInput as aD, type deleteTenantClusterVariableInput as aE, type deleteUserInput as aF, type evaluateConditionalsInput as aG, type evaluateDecisionInput as aH, type evaluateExpressionInput as aI, type failJobInput as aJ, type getAgentInstanceInput as aK, type getAgentInstanceConsistency as aL, type getAuditLogInput as aM, type getAuditLogConsistency as aN, type getAuthenticationInput as aO, type getAuthorizationInput as aP, type getAuthorizationConsistency as aQ, type getBatchOperationInput as aR, type getBatchOperationConsistency as aS, type getDecisionDefinitionInput as aT, type getDecisionDefinitionConsistency as aU, type getDecisionDefinitionXmlInput as aV, type getDecisionDefinitionXmlConsistency as aW, type getDecisionInstanceInput as aX, type getDecisionInstanceConsistency as aY, type getDecisionRequirementsInput as aZ, type getDecisionRequirementsConsistency as a_, type createAgentInstanceInput as aa, type createAgentInstanceHistoryItemInput as ab, type createAuthorizationInput as ac, type createDeploymentInput as ad, type createDocumentInput as ae, type createDocumentLinkInput as af, type createDocumentsInput as ag, type createElementInstanceVariablesInput as ah, type createGlobalClusterVariableInput as ai, type createGlobalTaskListenerInput as aj, type createGroupInput as ak, type createMappingRuleInput as al, type createProcessInstanceInput as am, type createRoleInput as an, type createTenantInput as ao, type createTenantClusterVariableInput as ap, type createUserInput as aq, type deleteAuthorizationInput as ar, type deleteDecisionInstanceInput as as, type deleteDecisionInstancesBatchOperationInput as at, type deleteDocumentInput as au, type deleteGlobalClusterVariableInput as av, type deleteGlobalTaskListenerInput as aw, type deleteGroupInput as ax, type deleteMappingRuleInput as ay, type deleteProcessInstanceInput as az, type CancelablePromise as b, type getTenantInput as b$, type getDecisionRequirementsXmlConsistency as b0, type getDocumentInput as b1, type getElementInstanceInput as b2, type getElementInstanceConsistency as b3, type getFormByKeyInput as b4, type getFormByKeyConsistency as b5, type getGlobalClusterVariableInput as b6, type getGlobalClusterVariableConsistency as b7, type getGlobalJobStatisticsInput as b8, type getGlobalJobStatisticsConsistency as b9, type getProcessDefinitionStatisticsConsistency as bA, type getProcessDefinitionXmlInput as bB, type getProcessDefinitionXmlConsistency as bC, type getProcessInstanceInput as bD, type getProcessInstanceConsistency as bE, type getProcessInstanceCallHierarchyInput as bF, type getProcessInstanceCallHierarchyConsistency as bG, type getProcessInstanceSequenceFlowsInput as bH, type getProcessInstanceSequenceFlowsConsistency as bI, type getProcessInstanceStatisticsInput as bJ, type getProcessInstanceStatisticsConsistency as bK, type getProcessInstanceStatisticsByDefinitionInput as bL, type getProcessInstanceStatisticsByDefinitionConsistency as bM, type getProcessInstanceStatisticsByErrorInput as bN, type getProcessInstanceStatisticsByErrorConsistency as bO, type getResourceInput as bP, type getResourceConsistency as bQ, type getResourceContentInput as bR, type getResourceContentConsistency as bS, type getResourceContentBinaryInput as bT, type getResourceContentBinaryConsistency as bU, type getRoleInput as bV, type getRoleConsistency as bW, type getStartProcessFormInput as bX, type getStartProcessFormConsistency as bY, type getStatusInput as bZ, type getSystemConfigurationInput as b_, type getGlobalTaskListenerInput as ba, type getGlobalTaskListenerConsistency as bb, type getGroupInput as bc, type getGroupConsistency as bd, type getIncidentInput as be, type getIncidentConsistency as bf, type getJobErrorStatisticsInput as bg, type getJobErrorStatisticsConsistency as bh, type getJobTimeSeriesStatisticsInput as bi, type getJobTimeSeriesStatisticsConsistency as bj, type getJobTypeStatisticsInput as bk, type getJobTypeStatisticsConsistency as bl, type getJobWorkerStatisticsInput as bm, type getJobWorkerStatisticsConsistency as bn, type getLicenseInput as bo, type getMappingRuleInput as bp, type getMappingRuleConsistency as bq, type getProcessDefinitionInput as br, type getProcessDefinitionConsistency as bs, type getProcessDefinitionInstanceStatisticsInput as bt, type getProcessDefinitionInstanceStatisticsConsistency as bu, type getProcessDefinitionInstanceVersionStatisticsInput as bv, type getProcessDefinitionInstanceVersionStatisticsConsistency as bw, type getProcessDefinitionMessageSubscriptionStatisticsInput as bx, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as by, type getProcessDefinitionStatisticsInput as bz, createCamundaClient as c, type searchGroupsInput as c$, type getTenantConsistency as c0, type getTenantClusterVariableInput as c1, type getTenantClusterVariableConsistency as c2, type getTopologyInput as c3, type getUsageMetricsInput as c4, type getUsageMetricsConsistency as c5, type getUserInput as c6, type getUserConsistency as c7, type getUserTaskInput as c8, type getUserTaskConsistency as c9, type searchBatchOperationsConsistency as cA, type searchClientsForGroupInput as cB, type searchClientsForGroupConsistency as cC, type searchClientsForRoleInput as cD, type searchClientsForRoleConsistency as cE, type searchClientsForTenantInput as cF, type searchClientsForTenantConsistency as cG, type searchClusterVariablesInput as cH, type searchClusterVariablesConsistency as cI, type searchCorrelatedMessageSubscriptionsInput as cJ, type searchCorrelatedMessageSubscriptionsConsistency as cK, type searchDecisionDefinitionsInput as cL, type searchDecisionDefinitionsConsistency as cM, type searchDecisionInstancesInput as cN, type searchDecisionInstancesConsistency as cO, type searchDecisionRequirementsInput as cP, type searchDecisionRequirementsConsistency as cQ, type searchElementInstanceIncidentsInput as cR, type searchElementInstanceIncidentsConsistency as cS, type searchElementInstancesInput as cT, type searchElementInstancesConsistency as cU, type searchElementInstanceWaitStatesInput as cV, type searchElementInstanceWaitStatesConsistency as cW, type searchGlobalTaskListenersInput as cX, type searchGlobalTaskListenersConsistency as cY, type searchGroupIdsForTenantInput as cZ, type searchGroupIdsForTenantConsistency as c_, type getUserTaskFormInput as ca, type getUserTaskFormConsistency as cb, type getVariableInput as cc, type getVariableConsistency as cd, type migrateProcessInstanceInput as ce, type migrateProcessInstancesBatchOperationInput as cf, type modifyProcessInstanceInput as cg, type modifyProcessInstancesBatchOperationInput as ch, type pinClockInput as ci, type publishMessageInput as cj, type resetClockInput as ck, type resolveIncidentInput as cl, type resolveIncidentsBatchOperationInput as cm, type resolveProcessInstanceIncidentsInput as cn, type resumeBatchOperationInput as co, type searchAgentInstanceHistoryInput as cp, type searchAgentInstanceHistoryConsistency as cq, type searchAgentInstancesInput as cr, type searchAgentInstancesConsistency as cs, type searchAuditLogsInput as ct, type searchAuditLogsConsistency as cu, type searchAuthorizationsInput as cv, type searchAuthorizationsConsistency as cw, type searchBatchOperationItemsInput as cx, type searchBatchOperationItemsConsistency as cy, type searchBatchOperationsInput as cz, type CamundaFpClient as d, type unassignRoleFromUserInput as d$, type searchGroupsConsistency as d0, type searchGroupsForRoleInput as d1, type searchGroupsForRoleConsistency as d2, type searchIncidentsInput as d3, type searchIncidentsConsistency as d4, type searchJobsInput as d5, type searchJobsConsistency as d6, type searchMappingRuleInput as d7, type searchMappingRuleConsistency as d8, type searchMappingRulesForGroupInput as d9, type searchUsersForGroupInput as dA, type searchUsersForGroupConsistency as dB, type searchUsersForRoleInput as dC, type searchUsersForRoleConsistency as dD, type searchUsersForTenantInput as dE, type searchUsersForTenantConsistency as dF, type searchUserTaskAuditLogsInput as dG, type searchUserTaskAuditLogsConsistency as dH, type searchUserTaskEffectiveVariablesInput as dI, type searchUserTaskEffectiveVariablesConsistency as dJ, type searchUserTasksInput as dK, type searchUserTasksConsistency as dL, type searchUserTaskVariablesInput as dM, type searchUserTaskVariablesConsistency as dN, type searchVariablesInput as dO, type searchVariablesConsistency as dP, type suspendBatchOperationInput as dQ, type throwJobErrorInput as dR, type unassignClientFromGroupInput as dS, type unassignClientFromTenantInput as dT, type unassignGroupFromTenantInput as dU, type unassignMappingRuleFromGroupInput as dV, type unassignMappingRuleFromTenantInput as dW, type unassignRoleFromClientInput as dX, type unassignRoleFromGroupInput as dY, type unassignRoleFromMappingRuleInput as dZ, type unassignRoleFromTenantInput as d_, type searchMappingRulesForGroupConsistency as da, type searchMappingRulesForRoleInput as db, type searchMappingRulesForRoleConsistency as dc, type searchMappingRulesForTenantInput as dd, type searchMappingRulesForTenantConsistency as de, type searchMessageSubscriptionsInput as df, type searchMessageSubscriptionsConsistency as dg, type searchProcessDefinitionsInput as dh, type searchProcessDefinitionsConsistency as di, type searchProcessInstanceIncidentsInput as dj, type searchProcessInstanceIncidentsConsistency as dk, type searchProcessInstancesInput as dl, type searchProcessInstancesConsistency as dm, type searchResourcesInput as dn, type searchResourcesConsistency as dp, type searchRolesInput as dq, type searchRolesConsistency as dr, type searchRolesForGroupInput as ds, type searchRolesForGroupConsistency as dt, type searchRolesForTenantInput as du, type searchRolesForTenantConsistency as dv, type searchTenantsInput as dw, type searchTenantsConsistency as dx, type searchUsersInput as dy, type searchUsersConsistency as dz, createCamundaFpClient as e, AuditLogOperationTypeEnum as e$, type unassignUserFromGroupInput as e0, type unassignUserFromTenantInput as e1, type unassignUserTaskInput as e2, type updateAgentInstanceInput as e3, type updateAuthorizationInput as e4, type updateGlobalClusterVariableInput as e5, type updateGlobalTaskListenerInput as e6, type updateGroupInput as e7, type updateJobInput as e8, type updateMappingRuleInput as e9, type AgentInstanceHistoryItemRequest as eA, type AgentInstanceHistoryItemCreationResult as eB, type AgentInstanceHistorySearchQuerySortRequest as eC, type AgentInstanceHistorySearchQuery as eD, type AgentInstanceHistoryFilter as eE, type AgentInstanceHistorySearchQueryResult as eF, type AgentInstanceHistoryItemResult as eG, AgentInstanceHistoryRoleEnum as eH, AgentInstanceHistoryCommitStatusEnum as eI, type AgentInstanceMessageContent as eJ, type AgentInstanceTextContent as eK, type AgentInstanceDocumentContent as eL, type AgentInstanceObjectContent as eM, AgentInstanceMessageContentTypeEnum as eN, type AgentInstanceToolCall as eO, type AgentInstanceHistoryItemMetrics as eP, type AgentInstanceHistoryRoleFilterProperty as eQ, type AdvancedAgentInstanceHistoryRoleFilter as eR, type AgentInstanceHistoryCommitStatusFilterProperty as eS, type AdvancedAgentInstanceHistoryCommitStatusFilter as eT, type AuditLogResult as eU, type AuditLogSearchQuerySortRequest as eV, type AuditLogSearchQueryRequest as eW, type AuditLogFilter as eX, type AuditLogSearchQueryResult as eY, AuditLogEntityKey as eZ, AuditLogEntityTypeEnum as e_, type updateRoleInput as ea, type updateTenantInput as eb, type updateTenantClusterVariableInput as ec, type updateUserInput as ed, type updateUserTaskInput as ee, type ExtendedDeploymentResult as ef, CancelError as eg, type CamundaKey as eh, type ClientOptions as ei, type AgentInstanceSearchQuerySortRequest as ej, type AgentInstanceSearchQuery as ek, type AgentInstanceFilter as el, type AgentInstanceSearchQueryResult as em, type AgentInstanceResult as en, type AgentInstanceDefinition as eo, type AgentTool as ep, type AgentInstanceMetrics as eq, type AgentInstanceLimits as er, AgentInstanceStatusEnum as es, AgentInstanceUpdateStatusEnum as et, type AgentInstanceCreationRequest as eu, type AgentInstanceCreationResult as ev, type AgentInstanceMetricsDelta as ew, type AgentInstanceUpdateRequest as ex, type AgentInstanceStatusFilterProperty as ey, type AdvancedAgentInstanceStatusFilter as ez, isRight as f, type ClusterVariableSearchResult as f$, AuditLogActorTypeEnum as f0, AuditLogResultEnum as f1, AuditLogCategoryEnum as f2, type AuditLogEntityKeyFilterProperty as f3, type AdvancedAuditLogEntityKeyFilter as f4, type EntityTypeFilterProperty as f5, type AdvancedEntityTypeFilter as f6, type OperationTypeFilterProperty as f7, type AdvancedOperationTypeFilter as f8, type CategoryFilterProperty as f9, type BatchOperationItemSearchQuerySortRequest as fA, type BatchOperationItemSearchQuery as fB, type BatchOperationItemFilter as fC, type BatchOperationItemSearchQueryResult as fD, type BatchOperationItemResponse as fE, type DecisionInstanceDeletionBatchOperationRequest as fF, type ProcessInstanceCancellationBatchOperationRequest as fG, type ProcessInstanceIncidentResolutionBatchOperationRequest as fH, type ProcessInstanceDeletionBatchOperationRequest as fI, type ProcessInstanceMigrationBatchOperationRequest as fJ, type ProcessInstanceMigrationBatchOperationPlan as fK, type ProcessInstanceModificationBatchOperationRequest as fL, type ProcessInstanceModificationMoveBatchOperationInstruction as fM, BatchOperationItemStateEnum as fN, BatchOperationStateEnum as fO, BatchOperationTypeEnum as fP, type BatchOperationTypeFilterProperty as fQ, type AdvancedBatchOperationTypeFilter as fR, type BatchOperationStateFilterProperty as fS, type AdvancedBatchOperationStateFilter as fT, type BatchOperationItemStateFilterProperty as fU, type AdvancedBatchOperationItemStateFilter as fV, type ClockPinRequest as fW, ClusterVariableScopeEnum as fX, type CreateClusterVariableRequest as fY, type UpdateClusterVariableRequest as fZ, type ClusterVariableResult as f_, type AdvancedCategoryFilter as fa, type AuditLogResultFilterProperty as fb, type AdvancedResultFilter as fc, type AuditLogActorTypeFilterProperty as fd, type AdvancedActorTypeFilter as fe, type CamundaUserResult as ff, type AuthorizationIdBasedRequest as fg, type AuthorizationPropertyBasedRequest as fh, type AuthorizationRequest as fi, type AuthorizationSearchQuerySortRequest as fj, type AuthorizationSearchQuery as fk, type AuthorizationFilter as fl, type AuthorizationResult as fm, type AuthorizationSearchResult as fn, type AuthorizationCreateResult as fo, PermissionTypeEnum as fp, ResourceTypeEnum as fq, OwnerTypeEnum as fr, AuthorizationKey as fs, type BatchOperationCreatedResult as ft, type BatchOperationSearchQuerySortRequest as fu, type BatchOperationSearchQuery as fv, type BatchOperationFilter as fw, type BatchOperationSearchQueryResult as fx, type BatchOperationResponse as fy, type BatchOperationError as fz, CamundaValidationError as g, type ResourceFilter as g$, type ClusterVariableResultBase as g0, type ClusterVariableSearchQueryRequest as g1, type ClusterVariableSearchQuerySortRequest as g2, type ClusterVariableSearchQueryFilterRequest as g3, type ClusterVariableScopeFilterProperty as g4, type AdvancedClusterVariableScopeFilter as g5, type ClusterVariableSearchQueryResult as g6, type TopologyResponse as g7, type BrokerInfo as g8, type Partition as g9, DecisionDefinitionTypeEnum as gA, DecisionInstanceStateEnum as gB, type AdvancedDecisionInstanceStateFilter as gC, type DecisionInstanceStateFilterProperty as gD, type DecisionRequirementsSearchQuerySortRequest as gE, type DecisionRequirementsSearchQuery as gF, type DecisionRequirementsFilter as gG, type DecisionRequirementsSearchQueryResult as gH, type DecisionRequirementsResult as gI, type DeploymentResult as gJ, type DeploymentMetadataResult as gK, type DeploymentProcessResult as gL, type DeploymentDecisionResult as gM, type DeploymentDecisionRequirementsResult as gN, type DeploymentFormResult as gO, type DeploymentResourceResult as gP, type DeleteResourceRequest as gQ, type DeleteResourceResponse as gR, type ResourceResult as gS, DeploymentKey as gT, type ResourceKey as gU, type DeploymentKeyFilterProperty as gV, type AdvancedDeploymentKeyFilter as gW, type ResourceKeyFilterProperty as gX, type AdvancedResourceKeyFilter as gY, type ResourceSearchQuerySortRequest as gZ, type ResourceSearchQuery as g_, type ConditionalEvaluationInstruction as ga, type EvaluateConditionalResult as gb, ConditionalEvaluationKey as gc, type ProcessInstanceReference as gd, StartCursor as ge, EndCursor as gf, type DecisionDefinitionSearchQuerySortRequest as gg, type DecisionDefinitionSearchQuery as gh, type DecisionDefinitionFilter as gi, type DecisionDefinitionSearchQueryResult as gj, type DecisionDefinitionResult as gk, type DecisionEvaluationInstruction as gl, type DecisionEvaluationById as gm, type DecisionEvaluationByKey as gn, type EvaluateDecisionResult as go, type EvaluatedDecisionResult as gp, type DecisionInstanceSearchQuerySortRequest as gq, type DecisionInstanceSearchQuery as gr, type DecisionInstanceFilter as gs, type DeleteDecisionInstanceRequest as gt, type DecisionInstanceSearchQueryResult as gu, type DecisionInstanceResult as gv, type DecisionInstanceGetQueryResult as gw, type EvaluatedDecisionInputItem as gx, type EvaluatedDecisionOutputItem as gy, type MatchedDecisionRuleItem as gz, EventualConsistencyTimeoutError as h, type AdvancedGlobalListenerSourceFilter as h$, type ResourceSearchQueryResult as h0, type DocumentReference as h1, type DocumentCreationFailureDetail as h2, type DocumentCreationBatchResponse as h3, type DocumentMetadata as h4, type DocumentMetadataResponse as h5, type DocumentLinkRequest as h6, type DocumentLink as h7, DocumentId as h8, type ElementInstanceSearchQuerySortRequest as h9, type SignalWaitStateDetails as hA, type AdHocSubProcessActivateActivityReference as hB, type ExpressionEvaluationRequest as hC, type ExpressionEvaluationResult as hD, type ExpressionEvaluationWarningItem as hE, type LikeFilter as hF, type BasicStringFilter as hG, type AdvancedStringFilter as hH, type BasicStringFilterProperty as hI, type StringFilterProperty as hJ, type AdvancedIntegerFilter as hK, type IntegerFilterProperty as hL, type AdvancedDateTimeFilter as hM, type DateTimeFilterProperty as hN, type FormResult as hO, GlobalListenerSourceEnum as hP, GlobalTaskListenerEventTypeEnum as hQ, type GlobalListenerBase as hR, type GlobalTaskListenerBase as hS, type GlobalTaskListenerEventTypes as hT, type CreateGlobalTaskListenerRequest as hU, type UpdateGlobalTaskListenerRequest as hV, type GlobalTaskListenerResult as hW, type GlobalTaskListenerSearchQueryRequest as hX, type GlobalTaskListenerSearchQuerySortRequest as hY, type GlobalTaskListenerSearchQueryFilterRequest as hZ, type GlobalListenerSourceFilterProperty as h_, type ElementInstanceWaitStateQuerySortRequest as ha, type ElementInstanceSearchQuery as hb, type ElementInstanceFilter as hc, type ElementInstanceFilterFields as hd, type ElementInstanceStateFilterProperty as he, type AdvancedElementInstanceStateFilter as hf, type ElementInstanceSearchQueryResult as hg, type ElementInstanceResult as hh, ElementInstanceStateEnum as hi, type AdHocSubProcessActivateActivitiesInstruction as hj, type ElementInstanceWaitStateQuery as hk, type ElementInstanceWaitStateFilter as hl, type WaitStateElementTypeFilterProperty as hm, type AdvancedWaitStateElementTypeFilter as hn, WaitStateElementTypeEnum as ho, type WaitStateTypeFilterProperty as hp, type AdvancedWaitStateTypeFilter as hq, type ElementInstanceWaitStateQueryResult as hr, type ElementInstanceWaitStateResult as hs, type WaitStateDetails as ht, WaitStateTypeEnum as hu, type BaseWaitStateDetails as hv, type JobWaitStateDetails as hw, type MessageWaitStateDetails as hx, type UserTaskWaitStateDetails as hy, type TimerWaitStateDetails as hz, isLeft as i, type IncidentProcessInstanceStatisticsByDefinitionFilter as i$, type GlobalTaskListenerEventTypeFilterProperty as i0, type AdvancedGlobalTaskListenerEventTypeFilter as i1, type GlobalTaskListenerSearchQueryResult as i2, type GroupCreateRequest as i3, type GroupCreateResult as i4, type GroupUpdateRequest as i5, type GroupUpdateResult as i6, type GroupResult as i7, type GroupSearchQuerySortRequest as i8, type GroupSearchQueryRequest as i9, Tag as iA, type TagSet as iB, BusinessId as iC, type IterationId as iD, type ElementIdFilterProperty as iE, type AdvancedElementIdFilter as iF, type ProcessDefinitionIdFilterProperty as iG, type AdvancedProcessDefinitionIdFilter as iH, type IncidentSearchQuery as iI, type IncidentFilter as iJ, type IncidentErrorTypeFilterProperty as iK, type AdvancedIncidentErrorTypeFilter as iL, IncidentErrorTypeEnum as iM, type IncidentStateFilterProperty as iN, type AdvancedIncidentStateFilter as iO, IncidentStateEnum as iP, type IncidentSearchQuerySortRequest as iQ, type IncidentSearchQueryResult as iR, type IncidentResult as iS, type IncidentResolutionRequest as iT, type IncidentProcessInstanceStatisticsByErrorQuery as iU, type IncidentProcessInstanceStatisticsByErrorQueryResult as iV, type IncidentProcessInstanceStatisticsByErrorResult as iW, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as iX, type IncidentProcessInstanceStatisticsByDefinitionQuery as iY, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as iZ, type IncidentProcessInstanceStatisticsByDefinitionResult as i_, type GroupFilter as ia, type GroupSearchQueryResult as ib, type GroupUserResult as ic, type GroupUserSearchResult as id, type GroupUserSearchQueryRequest as ie, type GroupUserSearchQuerySortRequest as ig, type GroupClientResult as ih, type GroupClientSearchResult as ii, type GroupClientSearchQueryRequest as ij, type GroupMappingRuleSearchResult as ik, type GroupRoleSearchResult as il, type GroupClientSearchQuerySortRequest as im, ProcessDefinitionId as io, ElementId as ip, FormId as iq, DecisionDefinitionId as ir, GlobalListenerId as is, TenantId as it, Username as iu, RoleId as iv, GroupId as iw, MappingRuleId as ix, ClientId as iy, ClusterVariableName as iz, isSdkError as j, BatchOperationKey as j$, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as j0, type GlobalJobStatisticsQueryResult as j1, type StatusMetric as j2, type JobTypeStatisticsQuery as j3, type JobTypeStatisticsFilter as j4, type JobTypeStatisticsQueryResult as j5, type JobTypeStatisticsItem as j6, type JobWorkerStatisticsQuery as j7, type JobWorkerStatisticsFilter as j8, type JobWorkerStatisticsQueryResult as j9, type JobUpdateRequest as jA, type JobChangeset as jB, TenantFilterEnum as jC, JobStateEnum as jD, JobKindEnum as jE, JobListenerEventTypeEnum as jF, type JobKindFilterProperty as jG, type AdvancedJobKindFilter as jH, type JobListenerEventTypeFilterProperty as jI, type AdvancedJobListenerEventTypeFilter as jJ, type JobStateFilterProperty as jK, type AdvancedJobStateFilter as jL, type LongKey as jM, ProcessInstanceKey as jN, ProcessDefinitionKey as jO, ElementInstanceKey as jP, UserTaskKey as jQ, FormKey as jR, VariableKey as jS, type ScopeKey as jT, IncidentKey as jU, JobKey as jV, DecisionDefinitionKey as jW, DecisionEvaluationInstanceKey as jX, DecisionEvaluationKey as jY, DecisionRequirementsKey as jZ, DecisionInstanceKey as j_, type JobWorkerStatisticsItem as ja, type JobTimeSeriesStatisticsQuery as jb, type JobTimeSeriesStatisticsFilter as jc, type JobTimeSeriesStatisticsQueryResult as jd, type JobTimeSeriesStatisticsItem as je, type JobErrorStatisticsQuery as jf, type JobErrorStatisticsFilter as jg, type JobErrorStatisticsQueryResult as jh, type JobErrorStatisticsItem as ji, type JobActivationRequest as jj, type JobActivationResult as jk, type ActivatedJobResult$1 as jl, type UserTaskProperties as jm, type JobSearchQuery as jn, type JobSearchQuerySortRequest as jo, type JobFilter as jp, type JobSearchQueryResult as jq, type JobSearchResult as jr, type JobFailRequest as js, type JobErrorRequest$1 as jt, type JobCompletionRequest as ju, type JobResult as jv, type JobResultUserTask as jw, type JobResultCorrections as jx, type JobResultAdHocSubProcess as jy, type JobResultActivateElement as jz, type EnrichedActivatedJob as k, type AdvancedMessageSubscriptionStateFilter as k$, type OperationReference as k0, AgentInstanceKey as k1, AgentHistoryItemKey as k2, AuditLogKey as k3, type ProcessDefinitionKeyFilterProperty as k4, type AdvancedProcessDefinitionKeyFilter as k5, type ProcessInstanceKeyFilterProperty as k6, type AdvancedProcessInstanceKeyFilter as k7, type ElementInstanceKeyFilterProperty as k8, type AdvancedElementInstanceKeyFilter as k9, type MappingRuleCreateUpdateResult as kA, type MappingRuleCreateResult as kB, type MappingRuleUpdateResult as kC, type MappingRuleSearchQueryResult as kD, type MappingRuleResult as kE, type MappingRuleSearchQuerySortRequest as kF, type MappingRuleSearchQueryRequest as kG, type MappingRuleFilter as kH, type MessageCorrelationRequest as kI, type MessageCorrelationResult as kJ, type MessagePublicationRequest as kK, type MessagePublicationResult as kL, type MessageSubscriptionSearchQueryResult as kM, type MessageSubscriptionResult as kN, type MessageSubscriptionSearchQuerySortRequest as kO, type MessageSubscriptionSearchQuery as kP, type MessageSubscriptionFilter as kQ, type CorrelatedMessageSubscriptionSearchQueryResult as kR, type CorrelatedMessageSubscriptionResult as kS, type CorrelatedMessageSubscriptionSearchQuery as kT, type CorrelatedMessageSubscriptionSearchQuerySortRequest as kU, MessageSubscriptionStateEnum as kV, MessageSubscriptionTypeEnum as kW, type CorrelatedMessageSubscriptionFilter as kX, type MessageSubscriptionTypeFilterProperty as kY, type AdvancedMessageSubscriptionTypeFilter as kZ, type MessageSubscriptionStateFilterProperty as k_, type JobKeyFilterProperty as ka, type AdvancedJobKeyFilter as kb, type DecisionDefinitionKeyFilterProperty as kc, type AdvancedDecisionDefinitionKeyFilter as kd, type ScopeKeyFilterProperty as ke, type AdvancedScopeKeyFilter as kf, type VariableKeyFilterProperty as kg, type AdvancedVariableKeyFilter as kh, type DecisionEvaluationInstanceKeyFilterProperty as ki, type AdvancedDecisionEvaluationInstanceKeyFilter as kj, type AgentInstanceKeyFilterProperty as kk, type AdvancedAgentInstanceKeyFilter as kl, type AgentHistoryItemKeyFilterProperty as km, type AdvancedAgentHistoryItemKeyFilter as kn, type AuditLogKeyFilterProperty as ko, type AdvancedAuditLogKeyFilter as kp, type FormKeyFilterProperty as kq, type AdvancedFormKeyFilter as kr, type DecisionEvaluationKeyFilterProperty as ks, type AdvancedDecisionEvaluationKeyFilter as kt, type DecisionRequirementsKeyFilterProperty as ku, type AdvancedDecisionRequirementsKeyFilter as kv, type LicenseResponse as kw, type MappingRuleCreateUpdateRequest as kx, type MappingRuleCreateRequest as ky, type MappingRuleUpdateRequest as kz, JobActionReceipt as l, type AdvancedProcessInstanceStateFilter as l$, type AdvancedMessageSubscriptionKeyFilter as l0, type MessageSubscriptionKeyFilterProperty as l1, MessageSubscriptionKey as l2, MessageKey as l3, type ProblemDetail as l4, type ProcessDefinitionSearchQuerySortRequest as l5, type ProcessDefinitionSearchQuery as l6, type ProcessDefinitionFilter as l7, type ProcessDefinitionSearchQueryResult as l8, type ProcessDefinitionResult as l9, type ProcessInstanceFilterFields as lA, type ProcessInstanceFilter as lB, type ProcessInstanceSearchQueryResult as lC, type ProcessInstanceResult as lD, type CancelProcessInstanceRequest as lE, type DeleteProcessInstanceRequest as lF, type ProcessInstanceCallHierarchyEntry as lG, type ProcessInstanceSequenceFlowsQueryResult as lH, type ProcessInstanceSequenceFlowResult as lI, type ProcessInstanceElementStatisticsQueryResult as lJ, type ProcessInstanceMigrationInstruction as lK, type MigrateProcessInstanceMappingInstruction as lL, type ProcessInstanceModificationInstruction as lM, type ProcessInstanceModificationActivateInstruction as lN, type ModifyProcessInstanceVariableInstruction as lO, type ProcessInstanceModificationMoveInstruction as lP, type SourceElementInstruction as lQ, type SourceElementIdInstruction as lR, type SourceElementInstanceKeyInstruction as lS, type AncestorScopeInstruction as lT, type DirectAncestorKeyInstruction as lU, type InferredAncestorKeyInstruction as lV, type UseSourceParentKeyInstruction as lW, type ProcessInstanceModificationTerminateInstruction as lX, type ProcessInstanceModificationTerminateByIdInstruction as lY, type ProcessInstanceModificationTerminateByKeyInstruction as lZ, ProcessInstanceStateEnum as l_, type ProcessDefinitionElementStatisticsQuery as la, type ProcessDefinitionElementStatisticsQueryResult as lb, type ProcessElementStatisticsResult as lc, type ProcessDefinitionMessageSubscriptionStatisticsQuery as ld, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as le, type ProcessDefinitionMessageSubscriptionStatisticsResult as lf, type ProcessDefinitionInstanceStatisticsQuery as lg, type ProcessDefinitionInstanceStatisticsQueryResult as lh, type ProcessDefinitionInstanceStatisticsResult as li, type ProcessDefinitionInstanceStatisticsQuerySortRequest as lj, type ProcessDefinitionInstanceVersionStatisticsQuery as lk, type ProcessDefinitionInstanceVersionStatisticsFilter as ll, type ProcessDefinitionInstanceVersionStatisticsQueryResult as lm, type ProcessDefinitionInstanceVersionStatisticsResult as ln, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as lo, type ProcessInstanceCreationInstruction as lp, type ProcessInstanceCreationInstructionById as lq, type ProcessInstanceCreationInstructionByKey as lr, type ProcessInstanceCreationStartInstruction as ls, type ProcessInstanceCreationRuntimeInstruction as lt, type ProcessInstanceCreationTerminateInstruction as lu, type CreateProcessInstanceResult as lv, type ProcessInstanceSearchQuerySortRequest as lw, type ProcessInstanceSearchQuery as lx, type BaseProcessInstanceFilterFields as ly, type ProcessDefinitionStatisticsFilter as lz, JobWorker as m, type TenantGroupSearchResult as m$, type ProcessInstanceStateFilterProperty as m0, type RoleCreateRequest as m1, type RoleCreateResult as m2, type RoleUpdateRequest as m3, type RoleUpdateResult as m4, type RoleResult as m5, type RoleSearchQuerySortRequest as m6, type RoleSearchQueryRequest as m7, type RoleFilter as m8, type RoleSearchQueryResult as m9, type UsageMetricsResponseItem as mA, type SystemConfigurationResponse as mB, type JobMetricsConfigurationResponse as mC, type ComponentsConfigurationResponse as mD, type DeploymentConfigurationResponse as mE, type AuthenticationConfigurationResponse as mF, type CloudConfigurationResponse as mG, type WebappComponent as mH, type CloudStage as mI, type TenantCreateRequest as mJ, type TenantCreateResult as mK, type TenantUpdateRequest as mL, type TenantUpdateResult as mM, type TenantResult as mN, type TenantSearchQuerySortRequest as mO, type TenantSearchQueryRequest as mP, type TenantFilter as mQ, type TenantSearchQueryResult as mR, type TenantUserResult as mS, type TenantUserSearchResult as mT, type TenantUserSearchQueryRequest as mU, type TenantUserSearchQuerySortRequest as mV, type TenantClientResult as mW, type TenantClientSearchResult as mX, type TenantClientSearchQueryRequest as mY, type TenantClientSearchQuerySortRequest as mZ, type TenantGroupResult as m_, type RoleUserResult as ma, type RoleUserSearchResult as mb, type RoleUserSearchQueryRequest as mc, type RoleUserSearchQuerySortRequest as md, type RoleClientResult as me, type RoleClientSearchResult as mf, type RoleClientSearchQueryRequest as mg, type RoleClientSearchQuerySortRequest as mh, type RoleGroupResult as mi, type RoleGroupSearchResult as mj, type RoleGroupSearchQueryRequest as mk, type RoleMappingRuleSearchResult as ml, type RoleGroupSearchQuerySortRequest as mm, type SearchQueryRequest as mn, type SearchQueryPageRequest as mo, type LimitPagination as mp, type OffsetPagination as mq, type CursorForwardPagination as mr, type CursorBackwardPagination as ms, type SearchQueryResponse as mt, SortOrderEnum as mu, type SearchQueryPageResponse as mv, type SignalBroadcastRequest as mw, type SignalBroadcastResult as mx, SignalKey as my, type UsageMetricsResponse as mz, type JobWorkerConfig as n, type IncidentErrorTypeExactMatch as n$, type TenantGroupSearchQueryRequest as n0, type TenantRoleSearchResult as n1, type TenantMappingRuleSearchResult as n2, type TenantGroupSearchQuerySortRequest as n3, type UserTaskSearchQuerySortRequest as n4, type UserTaskSearchQuery as n5, type UserTaskFilter as n6, type UserTaskSearchQueryResult as n7, type UserTaskResult as n8, type UserTaskCompletionRequest as n9, type VariableResult as nA, type VariableResultBase as nB, type VariableValueFilterProperty as nC, type SetVariableRequest as nD, type AgentInstanceStatusExactMatch as nE, type AgentInstanceHistoryRoleExactMatch as nF, type AgentInstanceHistoryCommitStatusExactMatch as nG, type AuditLogEntityKeyExactMatch as nH, type EntityTypeExactMatch as nI, type OperationTypeExactMatch as nJ, type CategoryExactMatch as nK, type AuditLogResultExactMatch as nL, type AuditLogActorTypeExactMatch as nM, type BatchOperationTypeExactMatch as nN, type BatchOperationStateExactMatch as nO, type BatchOperationItemStateExactMatch as nP, type ClusterVariableScopeExactMatch as nQ, type DecisionInstanceStateExactMatch as nR, type DeploymentKeyExactMatch as nS, type ResourceKeyExactMatch as nT, type ElementInstanceStateExactMatch as nU, type WaitStateElementTypeExactMatch as nV, type WaitStateTypeExactMatch as nW, type GlobalListenerSourceExactMatch as nX, type GlobalTaskListenerEventTypeExactMatch as nY, type ElementIdExactMatch as nZ, type ProcessDefinitionIdExactMatch as n_, type UserTaskAssignmentRequest as na, type UserTaskUpdateRequest as nb, type Changeset as nc, type UserTaskVariableSearchQuerySortRequest as nd, type UserTaskVariableSearchQueryRequest as ne, type UserTaskEffectiveVariableSearchQueryRequest as nf, type UserTaskAuditLogSearchQueryRequest as ng, UserTaskStateEnum as nh, type UserTaskVariableFilter as ni, type UserTaskStateFilterProperty as nj, type AdvancedUserTaskStateFilter as nk, type UserTaskAuditLogFilter as nl, type UserRequest as nm, type UserCreateResult as nn, type UserUpdateRequest as no, type UserUpdateResult as np, type UserResult as nq, type UserSearchQuerySortRequest as nr, type UserSearchQueryRequest as ns, type UserFilter as nt, type UserSearchResult as nu, type VariableSearchQuerySortRequest as nv, type VariableSearchQuery as nw, type VariableFilter as nx, type VariableSearchQueryResult as ny, type VariableSearchResult as nz, type SupportLogger as o, type GetAuthenticationData as o$, type IncidentStateExactMatch as o0, type JobKindExactMatch as o1, type JobListenerEventTypeExactMatch as o2, type JobStateExactMatch as o3, type ProcessDefinitionKeyExactMatch as o4, type ProcessInstanceKeyExactMatch as o5, type ElementInstanceKeyExactMatch as o6, type JobKeyExactMatch as o7, type DecisionDefinitionKeyExactMatch as o8, type ScopeKeyExactMatch as o9, type UpdateAgentInstanceResponses as oA, type UpdateAgentInstanceResponse as oB, type SearchAgentInstancesData as oC, type SearchAgentInstancesErrors as oD, type SearchAgentInstancesError as oE, type SearchAgentInstancesResponses as oF, type SearchAgentInstancesResponse as oG, type CreateAgentInstanceHistoryItemData as oH, type CreateAgentInstanceHistoryItemErrors as oI, type CreateAgentInstanceHistoryItemError as oJ, type CreateAgentInstanceHistoryItemResponses as oK, type CreateAgentInstanceHistoryItemResponse as oL, type SearchAgentInstanceHistoryData as oM, type SearchAgentInstanceHistoryErrors as oN, type SearchAgentInstanceHistoryError as oO, type SearchAgentInstanceHistoryResponses as oP, type SearchAgentInstanceHistoryResponse as oQ, type SearchAuditLogsData as oR, type SearchAuditLogsErrors as oS, type SearchAuditLogsError as oT, type SearchAuditLogsResponses as oU, type SearchAuditLogsResponse as oV, type GetAuditLogData as oW, type GetAuditLogErrors as oX, type GetAuditLogError as oY, type GetAuditLogResponses as oZ, type GetAuditLogResponse as o_, type VariableKeyExactMatch as oa, type DecisionEvaluationInstanceKeyExactMatch as ob, type AgentInstanceKeyExactMatch as oc, type AgentHistoryItemKeyExactMatch as od, type AuditLogKeyExactMatch as oe, type FormKeyExactMatch as of, type DecisionEvaluationKeyExactMatch as og, type DecisionRequirementsKeyExactMatch as oh, type MessageSubscriptionTypeExactMatch as oi, type MessageSubscriptionStateExactMatch as oj, type MessageSubscriptionKeyExactMatch as ok, type ProcessInstanceStateExactMatch as ol, type UserTaskStateExactMatch as om, type CreateAgentInstanceData as on, type CreateAgentInstanceErrors as oo, type CreateAgentInstanceError as op, type CreateAgentInstanceResponses as oq, type CreateAgentInstanceResponse as or, type GetAgentInstanceData as os, type GetAgentInstanceErrors as ot, type GetAgentInstanceError as ou, type GetAgentInstanceResponses as ov, type GetAgentInstanceResponse as ow, type UpdateAgentInstanceData as ox, type UpdateAgentInstanceErrors as oy, type UpdateAgentInstanceError as oz, type ThreadedJob as p, type PinClockResponse as p$, type GetAuthenticationErrors as p0, type GetAuthenticationError as p1, type GetAuthenticationResponses as p2, type GetAuthenticationResponse as p3, type CreateAuthorizationData as p4, type CreateAuthorizationErrors as p5, type CreateAuthorizationError as p6, type CreateAuthorizationResponses as p7, type CreateAuthorizationResponse as p8, type SearchAuthorizationsData as p9, type SearchBatchOperationsError as pA, type SearchBatchOperationsResponses as pB, type SearchBatchOperationsResponse as pC, type GetBatchOperationData as pD, type GetBatchOperationErrors as pE, type GetBatchOperationError as pF, type GetBatchOperationResponses as pG, type GetBatchOperationResponse as pH, type CancelBatchOperationData as pI, type CancelBatchOperationErrors as pJ, type CancelBatchOperationError as pK, type CancelBatchOperationResponses as pL, type CancelBatchOperationResponse as pM, type ResumeBatchOperationData as pN, type ResumeBatchOperationErrors as pO, type ResumeBatchOperationError as pP, type ResumeBatchOperationResponses as pQ, type ResumeBatchOperationResponse as pR, type SuspendBatchOperationData as pS, type SuspendBatchOperationErrors as pT, type SuspendBatchOperationError as pU, type SuspendBatchOperationResponses as pV, type SuspendBatchOperationResponse as pW, type PinClockData as pX, type PinClockErrors as pY, type PinClockError as pZ, type PinClockResponses as p_, type SearchAuthorizationsErrors as pa, type SearchAuthorizationsError as pb, type SearchAuthorizationsResponses as pc, type SearchAuthorizationsResponse as pd, type DeleteAuthorizationData as pe, type DeleteAuthorizationErrors as pf, type DeleteAuthorizationError as pg, type DeleteAuthorizationResponses as ph, type DeleteAuthorizationResponse as pi, type GetAuthorizationData as pj, type GetAuthorizationErrors as pk, type GetAuthorizationError as pl, type GetAuthorizationResponses as pm, type GetAuthorizationResponse as pn, type UpdateAuthorizationData as po, type UpdateAuthorizationErrors as pp, type UpdateAuthorizationError as pq, type UpdateAuthorizationResponses as pr, type UpdateAuthorizationResponse as ps, type SearchBatchOperationItemsData as pt, type SearchBatchOperationItemsErrors as pu, type SearchBatchOperationItemsError as pv, type SearchBatchOperationItemsResponses as pw, type SearchBatchOperationItemsResponse as px, type SearchBatchOperationsData as py, type SearchBatchOperationsErrors as pz, type ThreadedJobHandler as q, type EvaluateDecisionResponses as q$, type ResetClockData as q0, type ResetClockErrors as q1, type ResetClockError as q2, type ResetClockResponses as q3, type ResetClockResponse as q4, type CreateGlobalClusterVariableData as q5, type CreateGlobalClusterVariableErrors as q6, type CreateGlobalClusterVariableError as q7, type CreateGlobalClusterVariableResponses as q8, type CreateGlobalClusterVariableResponse as q9, type DeleteTenantClusterVariableErrors as qA, type DeleteTenantClusterVariableError as qB, type DeleteTenantClusterVariableResponses as qC, type DeleteTenantClusterVariableResponse as qD, type GetTenantClusterVariableData as qE, type GetTenantClusterVariableErrors as qF, type GetTenantClusterVariableError as qG, type GetTenantClusterVariableResponses as qH, type GetTenantClusterVariableResponse as qI, type UpdateTenantClusterVariableData as qJ, type UpdateTenantClusterVariableErrors as qK, type UpdateTenantClusterVariableError as qL, type UpdateTenantClusterVariableResponses as qM, type UpdateTenantClusterVariableResponse as qN, type EvaluateConditionalsData as qO, type EvaluateConditionalsErrors as qP, type EvaluateConditionalsError as qQ, type EvaluateConditionalsResponses as qR, type EvaluateConditionalsResponse as qS, type SearchCorrelatedMessageSubscriptionsData as qT, type SearchCorrelatedMessageSubscriptionsErrors as qU, type SearchCorrelatedMessageSubscriptionsError as qV, type SearchCorrelatedMessageSubscriptionsResponses as qW, type SearchCorrelatedMessageSubscriptionsResponse as qX, type EvaluateDecisionData as qY, type EvaluateDecisionErrors as qZ, type EvaluateDecisionError as q_, type DeleteGlobalClusterVariableData as qa, type DeleteGlobalClusterVariableErrors as qb, type DeleteGlobalClusterVariableError as qc, type DeleteGlobalClusterVariableResponses as qd, type DeleteGlobalClusterVariableResponse as qe, type GetGlobalClusterVariableData as qf, type GetGlobalClusterVariableErrors as qg, type GetGlobalClusterVariableError as qh, type GetGlobalClusterVariableResponses as qi, type GetGlobalClusterVariableResponse as qj, type UpdateGlobalClusterVariableData as qk, type UpdateGlobalClusterVariableErrors as ql, type UpdateGlobalClusterVariableError as qm, type UpdateGlobalClusterVariableResponses as qn, type UpdateGlobalClusterVariableResponse as qo, type SearchClusterVariablesData as qp, type SearchClusterVariablesErrors as qq, type SearchClusterVariablesError as qr, type SearchClusterVariablesResponses as qs, type SearchClusterVariablesResponse as qt, type CreateTenantClusterVariableData as qu, type CreateTenantClusterVariableErrors as qv, type CreateTenantClusterVariableError as qw, type CreateTenantClusterVariableResponses as qx, type CreateTenantClusterVariableResponse as qy, type DeleteTenantClusterVariableData as qz, ThreadedJobWorker as r, type CreateDocumentsError as r$, type EvaluateDecisionResponse as r0, type SearchDecisionDefinitionsData as r1, type SearchDecisionDefinitionsErrors as r2, type SearchDecisionDefinitionsError as r3, type SearchDecisionDefinitionsResponses as r4, type SearchDecisionDefinitionsResponse as r5, type GetDecisionDefinitionData as r6, type GetDecisionDefinitionErrors as r7, type GetDecisionDefinitionError as r8, type GetDecisionDefinitionResponses as r9, type SearchDecisionRequirementsData as rA, type SearchDecisionRequirementsErrors as rB, type SearchDecisionRequirementsError as rC, type SearchDecisionRequirementsResponses as rD, type SearchDecisionRequirementsResponse as rE, type GetDecisionRequirementsData as rF, type GetDecisionRequirementsErrors as rG, type GetDecisionRequirementsError as rH, type GetDecisionRequirementsResponses as rI, type GetDecisionRequirementsResponse as rJ, type GetDecisionRequirementsXmlData as rK, type GetDecisionRequirementsXmlErrors as rL, type GetDecisionRequirementsXmlError as rM, type GetDecisionRequirementsXmlResponses as rN, type GetDecisionRequirementsXmlResponse as rO, type CreateDeploymentData as rP, type CreateDeploymentErrors as rQ, type CreateDeploymentError as rR, type CreateDeploymentResponses as rS, type CreateDeploymentResponse as rT, type CreateDocumentData as rU, type CreateDocumentErrors as rV, type CreateDocumentError as rW, type CreateDocumentResponses as rX, type CreateDocumentResponse as rY, type CreateDocumentsData as rZ, type CreateDocumentsErrors as r_, type GetDecisionDefinitionResponse as ra, type GetDecisionDefinitionXmlData as rb, type GetDecisionDefinitionXmlErrors as rc, type GetDecisionDefinitionXmlError as rd, type GetDecisionDefinitionXmlResponses as re, type GetDecisionDefinitionXmlResponse as rf, type SearchDecisionInstancesData as rg, type SearchDecisionInstancesErrors as rh, type SearchDecisionInstancesError as ri, type SearchDecisionInstancesResponses as rj, type SearchDecisionInstancesResponse as rk, type GetDecisionInstanceData as rl, type GetDecisionInstanceErrors as rm, type GetDecisionInstanceError as rn, type GetDecisionInstanceResponses as ro, type GetDecisionInstanceResponse as rp, type DeleteDecisionInstanceData as rq, type DeleteDecisionInstanceErrors as rr, type DeleteDecisionInstanceError as rs, type DeleteDecisionInstanceResponses as rt, type DeleteDecisionInstanceResponse as ru, type DeleteDecisionInstancesBatchOperationData as rv, type DeleteDecisionInstancesBatchOperationErrors as rw, type DeleteDecisionInstancesBatchOperationError as rx, type DeleteDecisionInstancesBatchOperationResponses as ry, type DeleteDecisionInstancesBatchOperationResponse as rz, type ThreadedJobWorkerConfig as s, type DeleteGlobalTaskListenerErrors as s$, type CreateDocumentsResponses as s0, type CreateDocumentsResponse as s1, type DeleteDocumentData as s2, type DeleteDocumentErrors as s3, type DeleteDocumentError as s4, type DeleteDocumentResponses as s5, type DeleteDocumentResponse as s6, type GetDocumentData as s7, type GetDocumentErrors as s8, type GetDocumentError as s9, type GetElementInstanceResponse as sA, type SearchElementInstanceIncidentsData as sB, type SearchElementInstanceIncidentsErrors as sC, type SearchElementInstanceIncidentsError as sD, type SearchElementInstanceIncidentsResponses as sE, type SearchElementInstanceIncidentsResponse as sF, type CreateElementInstanceVariablesData as sG, type CreateElementInstanceVariablesErrors as sH, type CreateElementInstanceVariablesError as sI, type CreateElementInstanceVariablesResponses as sJ, type CreateElementInstanceVariablesResponse as sK, type EvaluateExpressionData as sL, type EvaluateExpressionErrors as sM, type EvaluateExpressionError as sN, type EvaluateExpressionResponses as sO, type EvaluateExpressionResponse as sP, type GetFormByKeyData as sQ, type GetFormByKeyErrors as sR, type GetFormByKeyError as sS, type GetFormByKeyResponses as sT, type GetFormByKeyResponse as sU, type CreateGlobalTaskListenerData as sV, type CreateGlobalTaskListenerErrors as sW, type CreateGlobalTaskListenerError as sX, type CreateGlobalTaskListenerResponses as sY, type CreateGlobalTaskListenerResponse as sZ, type DeleteGlobalTaskListenerData as s_, type GetDocumentResponses as sa, type GetDocumentResponse as sb, type CreateDocumentLinkData as sc, type CreateDocumentLinkErrors as sd, type CreateDocumentLinkError as se, type CreateDocumentLinkResponses as sf, type CreateDocumentLinkResponse as sg, type ActivateAdHocSubProcessActivitiesData as sh, type ActivateAdHocSubProcessActivitiesErrors as si, type ActivateAdHocSubProcessActivitiesError as sj, type ActivateAdHocSubProcessActivitiesResponses as sk, type ActivateAdHocSubProcessActivitiesResponse as sl, type SearchElementInstanceWaitStatesData as sm, type SearchElementInstanceWaitStatesErrors as sn, type SearchElementInstanceWaitStatesError as so, type SearchElementInstanceWaitStatesResponses as sp, type SearchElementInstanceWaitStatesResponse as sq, type SearchElementInstancesData as sr, type SearchElementInstancesErrors as ss, type SearchElementInstancesError as st, type SearchElementInstancesResponses as su, type SearchElementInstancesResponse as sv, type GetElementInstanceData as sw, type GetElementInstanceErrors as sx, type GetElementInstanceError as sy, type GetElementInstanceResponses as sz, ThreadPool as t, type UnassignMappingRuleFromGroupData as t$, type DeleteGlobalTaskListenerError as t0, type DeleteGlobalTaskListenerResponses as t1, type DeleteGlobalTaskListenerResponse as t2, type GetGlobalTaskListenerData as t3, type GetGlobalTaskListenerErrors as t4, type GetGlobalTaskListenerError as t5, type GetGlobalTaskListenerResponses as t6, type GetGlobalTaskListenerResponse as t7, type UpdateGlobalTaskListenerData as t8, type UpdateGlobalTaskListenerErrors as t9, type GetGroupResponses as tA, type GetGroupResponse as tB, type UpdateGroupData as tC, type UpdateGroupErrors as tD, type UpdateGroupError as tE, type UpdateGroupResponses as tF, type UpdateGroupResponse as tG, type SearchClientsForGroupData as tH, type SearchClientsForGroupErrors as tI, type SearchClientsForGroupError as tJ, type SearchClientsForGroupResponses as tK, type SearchClientsForGroupResponse as tL, type UnassignClientFromGroupData as tM, type UnassignClientFromGroupErrors as tN, type UnassignClientFromGroupError as tO, type UnassignClientFromGroupResponses as tP, type UnassignClientFromGroupResponse as tQ, type AssignClientToGroupData as tR, type AssignClientToGroupErrors as tS, type AssignClientToGroupError as tT, type AssignClientToGroupResponses as tU, type AssignClientToGroupResponse as tV, type SearchMappingRulesForGroupData as tW, type SearchMappingRulesForGroupErrors as tX, type SearchMappingRulesForGroupError as tY, type SearchMappingRulesForGroupResponses as tZ, type SearchMappingRulesForGroupResponse as t_, type UpdateGlobalTaskListenerError as ta, type UpdateGlobalTaskListenerResponses as tb, type UpdateGlobalTaskListenerResponse as tc, type SearchGlobalTaskListenersData as td, type SearchGlobalTaskListenersErrors as te, type SearchGlobalTaskListenersError as tf, type SearchGlobalTaskListenersResponses as tg, type SearchGlobalTaskListenersResponse as th, type CreateGroupData as ti, type CreateGroupErrors as tj, type CreateGroupError as tk, type CreateGroupResponses as tl, type CreateGroupResponse as tm, type SearchGroupsData as tn, type SearchGroupsErrors as to, type SearchGroupsError as tp, type SearchGroupsResponses as tq, type SearchGroupsResponse as tr, type DeleteGroupData as ts, type DeleteGroupErrors as tt, type DeleteGroupError as tu, type DeleteGroupResponses as tv, type DeleteGroupResponse as tw, type GetGroupData as tx, type GetGroupErrors as ty, type GetGroupError as tz, collectTypedVariables as u, type SearchJobsResponse as u$, type UnassignMappingRuleFromGroupErrors as u0, type UnassignMappingRuleFromGroupError as u1, type UnassignMappingRuleFromGroupResponses as u2, type UnassignMappingRuleFromGroupResponse as u3, type AssignMappingRuleToGroupData as u4, type AssignMappingRuleToGroupErrors as u5, type AssignMappingRuleToGroupError as u6, type AssignMappingRuleToGroupResponses as u7, type AssignMappingRuleToGroupResponse as u8, type SearchRolesForGroupData as u9, type GetIncidentError as uA, type GetIncidentResponses as uB, type GetIncidentResponse as uC, type ResolveIncidentData as uD, type ResolveIncidentErrors as uE, type ResolveIncidentError as uF, type ResolveIncidentResponses as uG, type ResolveIncidentResponse as uH, type GetProcessInstanceStatisticsByDefinitionData as uI, type GetProcessInstanceStatisticsByDefinitionErrors as uJ, type GetProcessInstanceStatisticsByDefinitionError as uK, type GetProcessInstanceStatisticsByDefinitionResponses as uL, type GetProcessInstanceStatisticsByDefinitionResponse as uM, type GetProcessInstanceStatisticsByErrorData as uN, type GetProcessInstanceStatisticsByErrorErrors as uO, type GetProcessInstanceStatisticsByErrorError as uP, type GetProcessInstanceStatisticsByErrorResponses as uQ, type GetProcessInstanceStatisticsByErrorResponse as uR, type ActivateJobsData as uS, type ActivateJobsErrors as uT, type ActivateJobsError as uU, type ActivateJobsResponses as uV, type ActivateJobsResponse as uW, type SearchJobsData as uX, type SearchJobsErrors as uY, type SearchJobsError as uZ, type SearchJobsResponses as u_, type SearchRolesForGroupErrors as ua, type SearchRolesForGroupError as ub, type SearchRolesForGroupResponses as uc, type SearchRolesForGroupResponse as ud, type SearchUsersForGroupData as ue, type SearchUsersForGroupErrors as uf, type SearchUsersForGroupError as ug, type SearchUsersForGroupResponses as uh, type SearchUsersForGroupResponse as ui, type UnassignUserFromGroupData as uj, type UnassignUserFromGroupErrors as uk, type UnassignUserFromGroupError as ul, type UnassignUserFromGroupResponses as um, type UnassignUserFromGroupResponse as un, type AssignUserToGroupData as uo, type AssignUserToGroupErrors as up, type AssignUserToGroupError as uq, type AssignUserToGroupResponses as ur, type AssignUserToGroupResponse as us, type SearchIncidentsData as ut, type SearchIncidentsErrors as uu, type SearchIncidentsError as uv, type SearchIncidentsResponses as uw, type SearchIncidentsResponse as ux, type GetIncidentData as uy, type GetIncidentErrors as uz, type TypedVariableItem as v, type DeleteMappingRuleResponses as v$, type UpdateJobData as v0, type UpdateJobErrors as v1, type UpdateJobError as v2, type UpdateJobResponses as v3, type UpdateJobResponse as v4, type CompleteJobData as v5, type CompleteJobErrors as v6, type CompleteJobError as v7, type CompleteJobResponses as v8, type CompleteJobResponse as v9, type GetJobTimeSeriesStatisticsErrors as vA, type GetJobTimeSeriesStatisticsError as vB, type GetJobTimeSeriesStatisticsResponses as vC, type GetJobTimeSeriesStatisticsResponse as vD, type GetJobErrorStatisticsData as vE, type GetJobErrorStatisticsErrors as vF, type GetJobErrorStatisticsError as vG, type GetJobErrorStatisticsResponses as vH, type GetJobErrorStatisticsResponse as vI, type GetLicenseData as vJ, type GetLicenseErrors as vK, type GetLicenseError as vL, type GetLicenseResponses as vM, type GetLicenseResponse as vN, type CreateMappingRuleData as vO, type CreateMappingRuleErrors as vP, type CreateMappingRuleError as vQ, type CreateMappingRuleResponses as vR, type CreateMappingRuleResponse as vS, type SearchMappingRuleData as vT, type SearchMappingRuleErrors as vU, type SearchMappingRuleError as vV, type SearchMappingRuleResponses as vW, type SearchMappingRuleResponse as vX, type DeleteMappingRuleData as vY, type DeleteMappingRuleErrors as vZ, type DeleteMappingRuleError as v_, type ThrowJobErrorData as va, type ThrowJobErrorErrors as vb, type ThrowJobErrorError as vc, type ThrowJobErrorResponses as vd, type ThrowJobErrorResponse as ve, type FailJobData as vf, type FailJobErrors as vg, type FailJobError as vh, type FailJobResponses as vi, type FailJobResponse as vj, type GetGlobalJobStatisticsData as vk, type GetGlobalJobStatisticsErrors as vl, type GetGlobalJobStatisticsError as vm, type GetGlobalJobStatisticsResponses as vn, type GetGlobalJobStatisticsResponse as vo, type GetJobTypeStatisticsData as vp, type GetJobTypeStatisticsErrors as vq, type GetJobTypeStatisticsError as vr, type GetJobTypeStatisticsResponses as vs, type GetJobTypeStatisticsResponse as vt, type GetJobWorkerStatisticsData as vu, type GetJobWorkerStatisticsErrors as vv, type GetJobWorkerStatisticsError as vw, type GetJobWorkerStatisticsResponses as vx, type GetJobWorkerStatisticsResponse as vy, type GetJobTimeSeriesStatisticsData as vz, type TypedVariablePage as w, type GetProcessDefinitionInstanceVersionStatisticsError as w$, type DeleteMappingRuleResponse as w0, type GetMappingRuleData as w1, type GetMappingRuleErrors as w2, type GetMappingRuleError as w3, type GetMappingRuleResponses as w4, type GetMappingRuleResponse as w5, type UpdateMappingRuleData as w6, type UpdateMappingRuleErrors as w7, type UpdateMappingRuleError as w8, type UpdateMappingRuleResponses as w9, type GetProcessDefinitionInstanceStatisticsData as wA, type GetProcessDefinitionInstanceStatisticsErrors as wB, type GetProcessDefinitionInstanceStatisticsError as wC, type GetProcessDefinitionInstanceStatisticsResponses as wD, type GetProcessDefinitionInstanceStatisticsResponse as wE, type GetProcessDefinitionData as wF, type GetProcessDefinitionErrors as wG, type GetProcessDefinitionError as wH, type GetProcessDefinitionResponses as wI, type GetProcessDefinitionResponse as wJ, type GetStartProcessFormData as wK, type GetStartProcessFormErrors as wL, type GetStartProcessFormError as wM, type GetStartProcessFormResponses as wN, type GetStartProcessFormResponse as wO, type GetProcessDefinitionStatisticsData as wP, type GetProcessDefinitionStatisticsErrors as wQ, type GetProcessDefinitionStatisticsError as wR, type GetProcessDefinitionStatisticsResponses as wS, type GetProcessDefinitionStatisticsResponse as wT, type GetProcessDefinitionXmlData as wU, type GetProcessDefinitionXmlErrors as wV, type GetProcessDefinitionXmlError as wW, type GetProcessDefinitionXmlResponses as wX, type GetProcessDefinitionXmlResponse as wY, type GetProcessDefinitionInstanceVersionStatisticsData as wZ, type GetProcessDefinitionInstanceVersionStatisticsErrors as w_, type UpdateMappingRuleResponse as wa, type SearchMessageSubscriptionsData as wb, type SearchMessageSubscriptionsErrors as wc, type SearchMessageSubscriptionsError as wd, type SearchMessageSubscriptionsResponses as we, type SearchMessageSubscriptionsResponse as wf, type CorrelateMessageData as wg, type CorrelateMessageErrors as wh, type CorrelateMessageError as wi, type CorrelateMessageResponses as wj, type CorrelateMessageResponse as wk, type PublishMessageData as wl, type PublishMessageErrors as wm, type PublishMessageError as wn, type PublishMessageResponses as wo, type PublishMessageResponse as wp, type SearchProcessDefinitionsData as wq, type SearchProcessDefinitionsErrors as wr, type SearchProcessDefinitionsError as ws, type SearchProcessDefinitionsResponses as wt, type SearchProcessDefinitionsResponse as wu, type GetProcessDefinitionMessageSubscriptionStatisticsData as wv, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as ww, type GetProcessDefinitionMessageSubscriptionStatisticsError as wx, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as wy, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as wz, TypedVariablesError as x, type SearchProcessInstanceIncidentsErrors as x$, type GetProcessDefinitionInstanceVersionStatisticsResponses as x0, type GetProcessDefinitionInstanceVersionStatisticsResponse as x1, type CreateProcessInstanceData as x2, type CreateProcessInstanceErrors as x3, type CreateProcessInstanceError as x4, type CreateProcessInstanceResponses as x5, type CreateProcessInstanceResponse as x6, type CancelProcessInstancesBatchOperationData as x7, type CancelProcessInstancesBatchOperationErrors as x8, type CancelProcessInstancesBatchOperationError as x9, type SearchProcessInstancesResponse as xA, type GetProcessInstanceData as xB, type GetProcessInstanceErrors as xC, type GetProcessInstanceError as xD, type GetProcessInstanceResponses as xE, type GetProcessInstanceResponse as xF, type GetProcessInstanceCallHierarchyData as xG, type GetProcessInstanceCallHierarchyErrors as xH, type GetProcessInstanceCallHierarchyError as xI, type GetProcessInstanceCallHierarchyResponses as xJ, type GetProcessInstanceCallHierarchyResponse as xK, type CancelProcessInstanceData as xL, type CancelProcessInstanceErrors as xM, type CancelProcessInstanceError as xN, type CancelProcessInstanceResponses as xO, type CancelProcessInstanceResponse as xP, type DeleteProcessInstanceData as xQ, type DeleteProcessInstanceErrors as xR, type DeleteProcessInstanceError as xS, type DeleteProcessInstanceResponses as xT, type DeleteProcessInstanceResponse as xU, type ResolveProcessInstanceIncidentsData as xV, type ResolveProcessInstanceIncidentsErrors as xW, type ResolveProcessInstanceIncidentsError as xX, type ResolveProcessInstanceIncidentsResponses as xY, type ResolveProcessInstanceIncidentsResponse as xZ, type SearchProcessInstanceIncidentsData as x_, type CancelProcessInstancesBatchOperationResponses as xa, type CancelProcessInstancesBatchOperationResponse as xb, type DeleteProcessInstancesBatchOperationData as xc, type DeleteProcessInstancesBatchOperationErrors as xd, type DeleteProcessInstancesBatchOperationError as xe, type DeleteProcessInstancesBatchOperationResponses as xf, type DeleteProcessInstancesBatchOperationResponse as xg, type ResolveIncidentsBatchOperationData as xh, type ResolveIncidentsBatchOperationErrors as xi, type ResolveIncidentsBatchOperationError as xj, type ResolveIncidentsBatchOperationResponses as xk, type ResolveIncidentsBatchOperationResponse as xl, type MigrateProcessInstancesBatchOperationData as xm, type MigrateProcessInstancesBatchOperationErrors as xn, type MigrateProcessInstancesBatchOperationError as xo, type MigrateProcessInstancesBatchOperationResponses as xp, type MigrateProcessInstancesBatchOperationResponse as xq, type ModifyProcessInstancesBatchOperationData as xr, type ModifyProcessInstancesBatchOperationErrors as xs, type ModifyProcessInstancesBatchOperationError as xt, type ModifyProcessInstancesBatchOperationResponses as xu, type ModifyProcessInstancesBatchOperationResponse as xv, type SearchProcessInstancesData as xw, type SearchProcessInstancesErrors as xx, type SearchProcessInstancesError as xy, type SearchProcessInstancesResponses as xz, VariableDeserializationError as y, type GetRoleData as y$, type SearchProcessInstanceIncidentsError as y0, type SearchProcessInstanceIncidentsResponses as y1, type SearchProcessInstanceIncidentsResponse as y2, type MigrateProcessInstanceData as y3, type MigrateProcessInstanceErrors as y4, type MigrateProcessInstanceError as y5, type MigrateProcessInstanceResponses as y6, type MigrateProcessInstanceResponse as y7, type ModifyProcessInstanceData as y8, type ModifyProcessInstanceErrors as y9, type GetResourceContentResponses as yA, type GetResourceContentResponse as yB, type GetResourceContentBinaryData as yC, type GetResourceContentBinaryErrors as yD, type GetResourceContentBinaryError as yE, type GetResourceContentBinaryResponses as yF, type GetResourceContentBinaryResponse as yG, type DeleteResourceData as yH, type DeleteResourceErrors as yI, type DeleteResourceError as yJ, type DeleteResourceResponses as yK, type DeleteResourceResponse2 as yL, type CreateRoleData as yM, type CreateRoleErrors as yN, type CreateRoleError as yO, type CreateRoleResponses as yP, type CreateRoleResponse as yQ, type SearchRolesData as yR, type SearchRolesErrors as yS, type SearchRolesError as yT, type SearchRolesResponses as yU, type SearchRolesResponse as yV, type DeleteRoleData as yW, type DeleteRoleErrors as yX, type DeleteRoleError as yY, type DeleteRoleResponses as yZ, type DeleteRoleResponse as y_, type ModifyProcessInstanceError as ya, type ModifyProcessInstanceResponses as yb, type ModifyProcessInstanceResponse as yc, type GetProcessInstanceSequenceFlowsData as yd, type GetProcessInstanceSequenceFlowsErrors as ye, type GetProcessInstanceSequenceFlowsError as yf, type GetProcessInstanceSequenceFlowsResponses as yg, type GetProcessInstanceSequenceFlowsResponse as yh, type GetProcessInstanceStatisticsData as yi, type GetProcessInstanceStatisticsErrors as yj, type GetProcessInstanceStatisticsError as yk, type GetProcessInstanceStatisticsResponses as yl, type GetProcessInstanceStatisticsResponse as ym, type SearchResourcesData as yn, type SearchResourcesErrors as yo, type SearchResourcesError as yp, type SearchResourcesResponses as yq, type SearchResourcesResponse as yr, type GetResourceData as ys, type GetResourceErrors as yt, type GetResourceError as yu, type GetResourceResponses as yv, type GetResourceResponse as yw, type GetResourceContentData as yx, type GetResourceContentErrors as yy, type GetResourceContentError as yz, VariableMap as z, type UnassignRoleFromUserResponse as z$, type GetRoleErrors as z0, type GetRoleError as z1, type GetRoleResponses as z2, type GetRoleResponse as z3, type UpdateRoleData as z4, type UpdateRoleErrors as z5, type UpdateRoleError as z6, type UpdateRoleResponses as z7, type UpdateRoleResponse as z8, type SearchClientsForRoleData as z9, type AssignRoleToGroupError as zA, type AssignRoleToGroupResponses as zB, type AssignRoleToGroupResponse as zC, type SearchMappingRulesForRoleData as zD, type SearchMappingRulesForRoleErrors as zE, type SearchMappingRulesForRoleError as zF, type SearchMappingRulesForRoleResponses as zG, type SearchMappingRulesForRoleResponse as zH, type UnassignRoleFromMappingRuleData as zI, type UnassignRoleFromMappingRuleErrors as zJ, type UnassignRoleFromMappingRuleError as zK, type UnassignRoleFromMappingRuleResponses as zL, type UnassignRoleFromMappingRuleResponse as zM, type AssignRoleToMappingRuleData as zN, type AssignRoleToMappingRuleErrors as zO, type AssignRoleToMappingRuleError as zP, type AssignRoleToMappingRuleResponses as zQ, type AssignRoleToMappingRuleResponse as zR, type SearchUsersForRoleData as zS, type SearchUsersForRoleErrors as zT, type SearchUsersForRoleError as zU, type SearchUsersForRoleResponses as zV, type SearchUsersForRoleResponse as zW, type UnassignRoleFromUserData as zX, type UnassignRoleFromUserErrors as zY, type UnassignRoleFromUserError as zZ, type UnassignRoleFromUserResponses as z_, type SearchClientsForRoleErrors as za, type SearchClientsForRoleError as zb, type SearchClientsForRoleResponses as zc, type SearchClientsForRoleResponse as zd, type UnassignRoleFromClientData as ze, type UnassignRoleFromClientErrors as zf, type UnassignRoleFromClientError as zg, type UnassignRoleFromClientResponses as zh, type UnassignRoleFromClientResponse as zi, type AssignRoleToClientData as zj, type AssignRoleToClientErrors as zk, type AssignRoleToClientError as zl, type AssignRoleToClientResponses as zm, type AssignRoleToClientResponse as zn, type SearchGroupsForRoleData as zo, type SearchGroupsForRoleErrors as zp, type SearchGroupsForRoleError as zq, type SearchGroupsForRoleResponses as zr, type SearchGroupsForRoleResponse as zs, type UnassignRoleFromGroupData as zt, type UnassignRoleFromGroupErrors as zu, type UnassignRoleFromGroupError as zv, type UnassignRoleFromGroupResponses as zw, type UnassignRoleFromGroupResponse as zx, type AssignRoleToGroupData as zy, type AssignRoleToGroupErrors as zz };
|