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