@camunda8/orchestration-cluster-api 8.9.0-alpha.21 → 8.9.0-alpha.23
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 +34 -0
- package/README.md +120 -7
- package/dist/{chunk-2N2LUTZ2.js → chunk-KQ4UL2WX.js} +3 -3
- package/dist/chunk-KQ4UL2WX.js.map +1 -0
- package/dist/{chunk-Z5TE7HRA.js → chunk-W7A45XXW.js} +227 -114
- package/dist/chunk-W7A45XXW.js.map +1 -0
- package/dist/fp/index.cjs +222 -111
- 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 +2 -2
- package/dist/{index-ddM18uDQ.d.cts → index-kEPhHRPZ.d.cts} +50 -10
- package/dist/{index-BmDqK0O0.d.ts → index-ofViYvpy.d.ts} +50 -10
- package/dist/index.cjs +250 -139
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +31 -31
- package/dist/index.js.map +1 -1
- package/dist/logger.cjs +2 -2
- package/dist/logger.cjs.map +1 -1
- package/dist/logger.js +1 -1
- package/dist/threadWorkerEntry.cjs +2 -2
- package/dist/threadWorkerEntry.cjs.map +1 -1
- package/dist/threadWorkerEntry.js +2 -2
- package/dist/threadWorkerEntry.js.map +1 -1
- package/package.json +14 -23
- package/dist/chunk-2N2LUTZ2.js.map +0 -1
- package/dist/chunk-Z5TE7HRA.js.map +0 -1
|
@@ -240,6 +240,26 @@ declare const SCHEMA: {
|
|
|
240
240
|
readonly default: false;
|
|
241
241
|
readonly doc: "Alias for CAMUNDA_SUPPORT_LOG_ENABLED (deprecated).";
|
|
242
242
|
};
|
|
243
|
+
readonly CAMUNDA_WORKER_TIMEOUT: {
|
|
244
|
+
readonly type: "int";
|
|
245
|
+
readonly doc: "Default job timeout in ms for all workers. Individual JobWorkerConfig.jobTimeoutMs overrides this.";
|
|
246
|
+
};
|
|
247
|
+
readonly CAMUNDA_WORKER_MAX_CONCURRENT_JOBS: {
|
|
248
|
+
readonly type: "int";
|
|
249
|
+
readonly doc: "Default max parallel jobs for all workers. Individual JobWorkerConfig.maxParallelJobs overrides this.";
|
|
250
|
+
};
|
|
251
|
+
readonly CAMUNDA_WORKER_REQUEST_TIMEOUT: {
|
|
252
|
+
readonly type: "signedInt";
|
|
253
|
+
readonly doc: "Default long-poll timeout in ms for all workers. Negative values cause activation to complete immediately when no jobs are available. Individual JobWorkerConfig.pollTimeoutMs overrides this.";
|
|
254
|
+
};
|
|
255
|
+
readonly CAMUNDA_WORKER_NAME: {
|
|
256
|
+
readonly type: "string";
|
|
257
|
+
readonly doc: "Default worker name for all workers. Individual JobWorkerConfig.workerName overrides this.";
|
|
258
|
+
};
|
|
259
|
+
readonly CAMUNDA_WORKER_STARTUP_JITTER_MAX_SECONDS: {
|
|
260
|
+
readonly type: "int";
|
|
261
|
+
readonly doc: "Default startup jitter in seconds for all workers. Individual JobWorkerConfig.startupJitterMaxSeconds overrides this.";
|
|
262
|
+
};
|
|
243
263
|
};
|
|
244
264
|
type EnvVarKey = keyof typeof SCHEMA;
|
|
245
265
|
type PrimitiveType<T> = T extends {
|
|
@@ -247,7 +267,7 @@ type PrimitiveType<T> = T extends {
|
|
|
247
267
|
} ? string : T extends {
|
|
248
268
|
type: 'boolean';
|
|
249
269
|
} ? boolean : T extends {
|
|
250
|
-
type: 'int';
|
|
270
|
+
type: 'int' | 'signedInt';
|
|
251
271
|
} ? number : T extends {
|
|
252
272
|
type: 'enum';
|
|
253
273
|
choices: readonly (infer C)[];
|
|
@@ -330,6 +350,13 @@ interface CamundaConfig {
|
|
|
330
350
|
enabled: boolean;
|
|
331
351
|
filePath: string;
|
|
332
352
|
};
|
|
353
|
+
workerDefaults?: {
|
|
354
|
+
jobTimeoutMs?: number;
|
|
355
|
+
maxParallelJobs?: number;
|
|
356
|
+
pollTimeoutMs?: number;
|
|
357
|
+
workerName?: string;
|
|
358
|
+
startupJitterMaxSeconds?: number;
|
|
359
|
+
};
|
|
333
360
|
__raw: Record<string, string | undefined>;
|
|
334
361
|
}
|
|
335
362
|
|
|
@@ -17463,7 +17490,7 @@ type JobErrorRequest = ThrowJobErrorData['body'];
|
|
|
17463
17490
|
interface EnrichedActivatedJob extends ActivatedJobResult {
|
|
17464
17491
|
complete(variables?: {
|
|
17465
17492
|
[k: string]: any;
|
|
17466
|
-
}): Promise<JobActionReceipt>;
|
|
17493
|
+
}, result?: JobResult): Promise<JobActionReceipt>;
|
|
17467
17494
|
fail(body: any): Promise<JobActionReceipt>;
|
|
17468
17495
|
error(error: JobErrorRequest): Promise<JobActionReceipt>;
|
|
17469
17496
|
cancelWorkflow(): Promise<JobActionReceipt>;
|
|
@@ -17497,8 +17524,8 @@ interface JobWorkerConfig<In extends z.ZodTypeAny = any, Out extends z.ZodTypeAn
|
|
|
17497
17524
|
jobHandler: (job: Job<In, Headers>) => Promise<JobActionReceipt> | JobActionReceipt;
|
|
17498
17525
|
/** Immediately start polling for work - default `true` */
|
|
17499
17526
|
autoStart?: boolean;
|
|
17500
|
-
/** concurrency limit */
|
|
17501
|
-
maxParallelJobs
|
|
17527
|
+
/** concurrency limit — falls back to CAMUNDA_WORKER_MAX_CONCURRENT_JOBS env var */
|
|
17528
|
+
maxParallelJobs?: number;
|
|
17502
17529
|
/**
|
|
17503
17530
|
* The request will be completed when at least one job is activated or after the requestTimeout.
|
|
17504
17531
|
* If the requestTimeout = 0, the request will be completed after a default configured timeout in the broker.
|
|
@@ -17506,8 +17533,8 @@ interface JobWorkerConfig<In extends z.ZodTypeAny = any, Out extends z.ZodTypeAn
|
|
|
17506
17533
|
*
|
|
17507
17534
|
*/
|
|
17508
17535
|
pollTimeoutMs?: number;
|
|
17509
|
-
/** Job activation timeout */
|
|
17510
|
-
jobTimeoutMs
|
|
17536
|
+
/** Job activation timeout — falls back to CAMUNDA_WORKER_TIMEOUT env var */
|
|
17537
|
+
jobTimeoutMs?: number;
|
|
17511
17538
|
/** Zeebe job type */
|
|
17512
17539
|
jobType: string;
|
|
17513
17540
|
/** Optional list of variable names to fetch during activation */
|
|
@@ -17537,6 +17564,8 @@ type Job<In extends z.ZodTypeAny | undefined, Headers extends z.ZodTypeAny | und
|
|
|
17537
17564
|
declare class JobWorker {
|
|
17538
17565
|
private _client;
|
|
17539
17566
|
private _cfg;
|
|
17567
|
+
private _maxParallelJobs;
|
|
17568
|
+
private _jobTimeoutMs;
|
|
17540
17569
|
private _name;
|
|
17541
17570
|
private _activeJobs;
|
|
17542
17571
|
private _stopped;
|
|
@@ -17584,7 +17613,6 @@ declare class ThreadPool {
|
|
|
17584
17613
|
private _ready;
|
|
17585
17614
|
private _terminated;
|
|
17586
17615
|
private _entryPath;
|
|
17587
|
-
private _execArgv;
|
|
17588
17616
|
private _Worker;
|
|
17589
17617
|
private _onThreadReady?;
|
|
17590
17618
|
constructor(client: CamundaClient, size?: number);
|
|
@@ -17662,7 +17690,7 @@ interface ThreadedJobWorkerConfig<In extends z.ZodTypeAny = any, Out extends z.Z
|
|
|
17662
17690
|
/** Immediately start polling for work - default `true` */
|
|
17663
17691
|
autoStart?: boolean;
|
|
17664
17692
|
/** concurrency limit */
|
|
17665
|
-
maxParallelJobs
|
|
17693
|
+
maxParallelJobs?: number;
|
|
17666
17694
|
/**
|
|
17667
17695
|
* The request will be completed when at least one job is activated or after the requestTimeout.
|
|
17668
17696
|
* If the requestTimeout = 0, the request will be completed after a default configured timeout in the broker.
|
|
@@ -17670,7 +17698,7 @@ interface ThreadedJobWorkerConfig<In extends z.ZodTypeAny = any, Out extends z.Z
|
|
|
17670
17698
|
*/
|
|
17671
17699
|
pollTimeoutMs?: number;
|
|
17672
17700
|
/** Job activation timeout */
|
|
17673
|
-
jobTimeoutMs
|
|
17701
|
+
jobTimeoutMs?: number;
|
|
17674
17702
|
/** Zeebe job type */
|
|
17675
17703
|
jobType: string;
|
|
17676
17704
|
/** Optional list of variable names to fetch during activation */
|
|
@@ -17708,6 +17736,8 @@ declare class ThreadedJobWorker {
|
|
|
17708
17736
|
private _client;
|
|
17709
17737
|
private _pool;
|
|
17710
17738
|
private _cfg;
|
|
17739
|
+
private _maxParallelJobs;
|
|
17740
|
+
private _jobTimeoutMs;
|
|
17711
17741
|
private _name;
|
|
17712
17742
|
private _activeJobs;
|
|
17713
17743
|
private _stopped;
|
|
@@ -22375,6 +22405,11 @@ declare class CamundaClient {
|
|
|
22375
22405
|
updateUserTask(input: updateUserTaskInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof updateUserTask>>;
|
|
22376
22406
|
/**
|
|
22377
22407
|
* Create a job worker that activates and processes jobs of the given type.
|
|
22408
|
+
*
|
|
22409
|
+
* Worker configuration fields inherit global defaults resolved via the
|
|
22410
|
+
* unified configuration (environment variables or equivalent `CAMUNDA_WORKER_*`
|
|
22411
|
+
* keys provided via `CamundaOptions.config`) when not explicitly set on the
|
|
22412
|
+
* config object.
|
|
22378
22413
|
* @param cfg Worker configuration
|
|
22379
22414
|
* @example Create a job worker
|
|
22380
22415
|
* {@includeCode ../../examples/job.ts#CreateJobWorker}
|
|
@@ -22390,6 +22425,11 @@ declare class CamundaClient {
|
|
|
22390
22425
|
* This keeps the main event loop free for polling and I/O, dramatically improving
|
|
22391
22426
|
* throughput for CPU-bound job handlers.
|
|
22392
22427
|
*
|
|
22428
|
+
* Worker configuration fields inherit global defaults resolved via the
|
|
22429
|
+
* unified configuration (environment variables or equivalent `CAMUNDA_WORKER_*`
|
|
22430
|
+
* keys provided via `CamundaOptions.config`) when not explicitly set on the
|
|
22431
|
+
* config object.
|
|
22432
|
+
*
|
|
22393
22433
|
* @param cfg Threaded worker configuration
|
|
22394
22434
|
* @example Create a threaded job worker
|
|
22395
22435
|
* ```ts
|
|
@@ -22533,4 +22573,4 @@ declare function eventuallyTE<E, A>(thunk: () => Promise<A>, predicate: (a: A) =
|
|
|
22533
22573
|
waitUpToMs: number;
|
|
22534
22574
|
}): TaskEither<E, A>;
|
|
22535
22575
|
|
|
22536
|
-
export { type AdvancedResultFilter as $, type AuthStrategy as A, type searchUserTaskEffectiveVariablesInput as A0, type searchUserTaskEffectiveVariablesConsistency as A1, type searchUserTasksInput as A2, type searchUserTasksConsistency as A3, type searchUserTaskVariablesInput as A4, type searchUserTaskVariablesConsistency as A5, type searchVariablesInput as A6, type searchVariablesConsistency as A7, type suspendBatchOperationInput as A8, type throwJobErrorInput as A9, type Fpify as AA, type FnKeys as AB, type DomainError as AC, type DomainErrorTag as AD, type HttpError as AE, type Left as AF, type Right as AG, retryTE as AH, withTimeoutTE as AI, eventuallyTE as AJ, foldDomainError as AK, classifyDomainError as AL, type TaskEither as AM, type unassignClientFromGroupInput as Aa, type unassignClientFromTenantInput as Ab, type unassignGroupFromTenantInput as Ac, type unassignMappingRuleFromGroupInput as Ad, type unassignMappingRuleFromTenantInput as Ae, type unassignRoleFromClientInput as Af, type unassignRoleFromGroupInput as Ag, type unassignRoleFromMappingRuleInput as Ah, type unassignRoleFromTenantInput as Ai, type unassignRoleFromUserInput as Aj, type unassignUserFromGroupInput as Ak, type unassignUserFromTenantInput as Al, type unassignUserTaskInput as Am, type updateAuthorizationInput as An, type updateGlobalClusterVariableInput as Ao, type updateGlobalTaskListenerInput as Ap, type updateGroupInput as Aq, type updateJobInput as Ar, type updateMappingRuleInput as As, type updateRoleInput as At, type updateTenantInput as Au, type updateTenantClusterVariableInput as Av, type updateUserInput as Aw, type updateUserTaskInput as Ax, type ExtendedDeploymentResult as Ay, CancelError as Az, type BackpressureSeverity as B, type CamundaOptions as C, type AuditLogFilter as D, type Either as E, type AuditLogSearchQueryResult as F, AuditLogEntityKey as G, type HttpRetryPolicy as H, type AuditLogEntityTypeEnum as I, type JobWorkerConfig as J, type AuditLogOperationTypeEnum as K, type AuditLogActorTypeEnum as L, type AuditLogResultEnum as M, type AuditLogCategoryEnum as N, type OperationOptions as O, type AuditLogEntityKeyFilterProperty as P, type AdvancedAuditLogEntityKeyFilter as Q, type EntityTypeFilterProperty as R, type SdkError as S, type ThreadedJobWorkerConfig as T, type AdvancedEntityTypeFilter as U, type ValidationMode as V, type OperationTypeFilterProperty as W, type AdvancedOperationTypeFilter as X, type CategoryFilterProperty as Y, type AdvancedCategoryFilter as Z, type AuditLogResultFilterProperty as _, CamundaClient as a, ConditionalEvaluationKey as a$, type AuditLogActorTypeFilterProperty as a0, type AdvancedActorTypeFilter as a1, type CamundaUserResult as a2, type AuthorizationIdBasedRequest as a3, type AuthorizationPropertyBasedRequest as a4, type AuthorizationRequest as a5, type AuthorizationSearchQuerySortRequest as a6, type AuthorizationSearchQuery as a7, type AuthorizationFilter as a8, type AuthorizationResult as a9, type BatchOperationItemStateEnum as aA, type BatchOperationStateEnum as aB, type BatchOperationTypeEnum as aC, type BatchOperationTypeFilterProperty as aD, type AdvancedBatchOperationTypeFilter as aE, type BatchOperationStateFilterProperty as aF, type AdvancedBatchOperationStateFilter as aG, type BatchOperationItemStateFilterProperty as aH, type AdvancedBatchOperationItemStateFilter as aI, type ClockPinRequest as aJ, type ClusterVariableScopeEnum as aK, type CreateClusterVariableRequest as aL, type UpdateClusterVariableRequest as aM, type ClusterVariableResult as aN, type ClusterVariableSearchResult as aO, type ClusterVariableResultBase as aP, type ClusterVariableSearchQueryRequest as aQ, type ClusterVariableSearchQuerySortRequest as aR, type ClusterVariableSearchQueryFilterRequest as aS, type ClusterVariableScopeFilterProperty as aT, type AdvancedClusterVariableScopeFilter as aU, type ClusterVariableSearchQueryResult as aV, type TopologyResponse as aW, type BrokerInfo as aX, type Partition as aY, type ConditionalEvaluationInstruction as aZ, type EvaluateConditionalResult as a_, type AuthorizationSearchResult as aa, type AuthorizationCreateResult as ab, type PermissionTypeEnum as ac, type ResourceTypeEnum as ad, type OwnerTypeEnum as ae, AuthorizationKey as af, type BatchOperationCreatedResult as ag, type BatchOperationSearchQuerySortRequest as ah, type BatchOperationSearchQuery as ai, type BatchOperationFilter as aj, type BatchOperationSearchQueryResult as ak, type BatchOperationResponse as al, type BatchOperationError as am, type BatchOperationItemSearchQuerySortRequest as an, type BatchOperationItemSearchQuery as ao, type BatchOperationItemFilter as ap, type BatchOperationItemSearchQueryResult as aq, type BatchOperationItemResponse as ar, type DecisionInstanceDeletionBatchOperationRequest as as, type ProcessInstanceCancellationBatchOperationRequest as at, type ProcessInstanceIncidentResolutionBatchOperationRequest as au, type ProcessInstanceDeletionBatchOperationRequest as av, type ProcessInstanceMigrationBatchOperationRequest as aw, type ProcessInstanceMigrationBatchOperationPlan as ax, type ProcessInstanceModificationBatchOperationRequest as ay, type ProcessInstanceModificationMoveBatchOperationInstruction as az, type CancelablePromise as b, type ElementInstanceStateEnum as b$, type ProcessInstanceReference as b0, StartCursor as b1, EndCursor as b2, type DecisionDefinitionSearchQuerySortRequest as b3, type DecisionDefinitionSearchQuery as b4, type DecisionDefinitionFilter as b5, type DecisionDefinitionSearchQueryResult as b6, type DecisionDefinitionResult as b7, type DecisionEvaluationInstruction as b8, type DecisionEvaluationById as b9, type DeploymentDecisionRequirementsResult as bA, type DeploymentFormResult as bB, type DeploymentResourceResult as bC, type DeleteResourceRequest as bD, type DeleteResourceResponse as bE, type ResourceResult as bF, DeploymentKey as bG, type ResourceKey as bH, type DeploymentKeyFilterProperty as bI, type AdvancedDeploymentKeyFilter as bJ, type ResourceKeyFilterProperty as bK, type AdvancedResourceKeyFilter as bL, type DocumentReference as bM, type DocumentCreationFailureDetail as bN, type DocumentCreationBatchResponse as bO, type DocumentMetadata as bP, type DocumentMetadataResponse as bQ, type DocumentLinkRequest as bR, type DocumentLink as bS, DocumentId as bT, type ElementInstanceSearchQuerySortRequest as bU, type ElementInstanceSearchQuery as bV, type ElementInstanceFilter as bW, type ElementInstanceStateFilterProperty as bX, type AdvancedElementInstanceStateFilter as bY, type ElementInstanceSearchQueryResult as bZ, type ElementInstanceResult as b_, type DecisionEvaluationByKey as ba, type EvaluateDecisionResult as bb, type EvaluatedDecisionResult as bc, type DecisionInstanceSearchQuerySortRequest as bd, type DecisionInstanceSearchQuery as be, type DecisionInstanceFilter as bf, type DeleteDecisionInstanceRequest as bg, type DecisionInstanceSearchQueryResult as bh, type DecisionInstanceResult as bi, type DecisionInstanceGetQueryResult as bj, type EvaluatedDecisionInputItem as bk, type EvaluatedDecisionOutputItem as bl, type MatchedDecisionRuleItem as bm, type DecisionDefinitionTypeEnum as bn, type DecisionInstanceStateEnum as bo, type AdvancedDecisionInstanceStateFilter as bp, type DecisionInstanceStateFilterProperty as bq, type DecisionRequirementsSearchQuerySortRequest as br, type DecisionRequirementsSearchQuery as bs, type DecisionRequirementsFilter as bt, type DecisionRequirementsSearchQueryResult as bu, type DecisionRequirementsResult as bv, type DeploymentResult as bw, type DeploymentMetadataResult as bx, type DeploymentProcessResult as by, type DeploymentDecisionResult as bz, createCamundaClient as c, type AdvancedIncidentErrorTypeFilter as c$, type AdHocSubProcessActivateActivitiesInstruction as c0, type AdHocSubProcessActivateActivityReference as c1, type ExpressionEvaluationRequest as c2, type ExpressionEvaluationResult as c3, type ExpressionEvaluationWarningItem as c4, type LikeFilter as c5, type BasicStringFilter as c6, type AdvancedStringFilter as c7, type BasicStringFilterProperty as c8, type StringFilterProperty as c9, type GroupSearchQuerySortRequest as cA, type GroupSearchQueryRequest as cB, type GroupFilter as cC, type GroupSearchQueryResult as cD, type GroupUserResult as cE, type GroupUserSearchResult as cF, type GroupUserSearchQueryRequest as cG, type GroupUserSearchQuerySortRequest as cH, type GroupClientResult as cI, type GroupClientSearchResult as cJ, type GroupClientSearchQueryRequest as cK, type GroupMappingRuleSearchResult as cL, type GroupRoleSearchResult as cM, type GroupClientSearchQuerySortRequest as cN, ProcessDefinitionId as cO, ElementId as cP, FormId as cQ, DecisionDefinitionId as cR, GlobalListenerId as cS, TenantId as cT, Username as cU, Tag as cV, type TagSet as cW, BusinessId as cX, type IncidentSearchQuery as cY, type IncidentFilter as cZ, type IncidentErrorTypeFilterProperty as c_, type AdvancedIntegerFilter as ca, type IntegerFilterProperty as cb, type AdvancedDateTimeFilter as cc, type DateTimeFilterProperty as cd, type FormResult as ce, type GlobalListenerSourceEnum as cf, type GlobalTaskListenerEventTypeEnum as cg, type GlobalListenerBase as ch, type GlobalTaskListenerBase as ci, type GlobalTaskListenerEventTypes as cj, type CreateGlobalTaskListenerRequest as ck, type UpdateGlobalTaskListenerRequest as cl, type GlobalTaskListenerResult as cm, type GlobalTaskListenerSearchQueryRequest as cn, type GlobalTaskListenerSearchQuerySortRequest as co, type GlobalTaskListenerSearchQueryFilterRequest as cp, type GlobalListenerSourceFilterProperty as cq, type AdvancedGlobalListenerSourceFilter as cr, type GlobalTaskListenerEventTypeFilterProperty as cs, type AdvancedGlobalTaskListenerEventTypeFilter as ct, type GlobalTaskListenerSearchQueryResult as cu, type GroupCreateRequest as cv, type GroupCreateResult as cw, type GroupUpdateRequest as cx, type GroupUpdateResult as cy, type GroupResult as cz, JobWorker as d, type JobStateFilterProperty as d$, type IncidentErrorTypeEnum as d0, type IncidentStateFilterProperty as d1, type AdvancedIncidentStateFilter as d2, type IncidentStateEnum as d3, type IncidentSearchQuerySortRequest as d4, type IncidentSearchQueryResult as d5, type IncidentResult as d6, type IncidentResolutionRequest as d7, type IncidentProcessInstanceStatisticsByErrorQuery as d8, type IncidentProcessInstanceStatisticsByErrorQueryResult as d9, type JobActivationRequest as dA, type JobActivationResult as dB, type ActivatedJobResult$1 as dC, type UserTaskProperties as dD, type JobSearchQuery as dE, type JobSearchQuerySortRequest as dF, type JobFilter as dG, type JobSearchQueryResult as dH, type JobSearchResult as dI, type JobFailRequest as dJ, type JobErrorRequest$1 as dK, type JobCompletionRequest as dL, type JobResult as dM, type JobResultUserTask as dN, type JobResultCorrections as dO, type JobResultAdHocSubProcess as dP, type JobResultActivateElement as dQ, type JobUpdateRequest as dR, type JobChangeset as dS, type TenantFilterEnum as dT, type JobStateEnum as dU, type JobKindEnum as dV, type JobListenerEventTypeEnum as dW, type JobKindFilterProperty as dX, type AdvancedJobKindFilter as dY, type JobListenerEventTypeFilterProperty as dZ, type AdvancedJobListenerEventTypeFilter as d_, type IncidentProcessInstanceStatisticsByErrorResult as da, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as db, type IncidentProcessInstanceStatisticsByDefinitionQuery as dc, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as dd, type IncidentProcessInstanceStatisticsByDefinitionResult as de, type IncidentProcessInstanceStatisticsByDefinitionFilter as df, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as dg, type GlobalJobStatisticsQueryResult as dh, type StatusMetric as di, type JobTypeStatisticsQuery as dj, type JobTypeStatisticsFilter as dk, type JobTypeStatisticsQueryResult as dl, type JobTypeStatisticsItem as dm, type JobWorkerStatisticsQuery as dn, type JobWorkerStatisticsFilter as dp, type JobWorkerStatisticsQueryResult as dq, type JobWorkerStatisticsItem as dr, type JobTimeSeriesStatisticsQuery as ds, type JobTimeSeriesStatisticsFilter as dt, type JobTimeSeriesStatisticsQueryResult as du, type JobTimeSeriesStatisticsItem as dv, type JobErrorStatisticsQuery as dw, type JobErrorStatisticsFilter as dx, type JobErrorStatisticsQueryResult as dy, type JobErrorStatisticsItem as dz, type Job as e, type MessageSubscriptionFilter as e$, type AdvancedJobStateFilter as e0, type LongKey as e1, ProcessInstanceKey as e2, ProcessDefinitionKey as e3, ElementInstanceKey as e4, UserTaskKey as e5, FormKey as e6, VariableKey as e7, type ScopeKey as e8, IncidentKey as e9, type AdvancedAuditLogKeyFilter as eA, type FormKeyFilterProperty as eB, type AdvancedFormKeyFilter as eC, type DecisionEvaluationKeyFilterProperty as eD, type AdvancedDecisionEvaluationKeyFilter as eE, type DecisionRequirementsKeyFilterProperty as eF, type AdvancedDecisionRequirementsKeyFilter as eG, type LicenseResponse as eH, type MappingRuleCreateUpdateRequest as eI, type MappingRuleCreateRequest as eJ, type MappingRuleUpdateRequest as eK, type MappingRuleCreateUpdateResult as eL, type MappingRuleCreateResult as eM, type MappingRuleUpdateResult as eN, type MappingRuleSearchQueryResult as eO, type MappingRuleResult as eP, type MappingRuleSearchQuerySortRequest as eQ, type MappingRuleSearchQueryRequest as eR, type MappingRuleFilter as eS, type MessageCorrelationRequest as eT, type MessageCorrelationResult as eU, type MessagePublicationRequest as eV, type MessagePublicationResult as eW, type MessageSubscriptionSearchQueryResult as eX, type MessageSubscriptionResult as eY, type MessageSubscriptionSearchQuerySortRequest as eZ, type MessageSubscriptionSearchQuery as e_, JobKey as ea, DecisionDefinitionKey as eb, DecisionEvaluationInstanceKey as ec, DecisionEvaluationKey as ed, DecisionRequirementsKey as ee, DecisionInstanceKey as ef, BatchOperationKey as eg, type OperationReference as eh, AuditLogKey as ei, type ProcessDefinitionKeyFilterProperty as ej, type AdvancedProcessDefinitionKeyFilter as ek, type ProcessInstanceKeyFilterProperty as el, type AdvancedProcessInstanceKeyFilter as em, type ElementInstanceKeyFilterProperty as en, type AdvancedElementInstanceKeyFilter as eo, type JobKeyFilterProperty as ep, type AdvancedJobKeyFilter as eq, type DecisionDefinitionKeyFilterProperty as er, type AdvancedDecisionDefinitionKeyFilter as es, type ScopeKeyFilterProperty as et, type AdvancedScopeKeyFilter as eu, type VariableKeyFilterProperty as ev, type AdvancedVariableKeyFilter as ew, type DecisionEvaluationInstanceKeyFilterProperty as ex, type AdvancedDecisionEvaluationInstanceKeyFilter as ey, type AuditLogKeyFilterProperty as ez, JobActionReceipt as f, type AncestorScopeInstruction as f$, type CorrelatedMessageSubscriptionSearchQueryResult as f0, type CorrelatedMessageSubscriptionResult as f1, type CorrelatedMessageSubscriptionSearchQuery as f2, type CorrelatedMessageSubscriptionSearchQuerySortRequest as f3, type MessageSubscriptionStateEnum as f4, type CorrelatedMessageSubscriptionFilter as f5, type MessageSubscriptionStateFilterProperty as f6, type AdvancedMessageSubscriptionStateFilter as f7, type AdvancedMessageSubscriptionKeyFilter as f8, type MessageSubscriptionKeyFilterProperty as f9, type ProcessInstanceCreationStartInstruction as fA, type ProcessInstanceCreationRuntimeInstruction as fB, type ProcessInstanceCreationTerminateInstruction as fC, type CreateProcessInstanceResult as fD, type ProcessInstanceSearchQuerySortRequest as fE, type ProcessInstanceSearchQuery as fF, type BaseProcessInstanceFilterFields as fG, type ProcessDefinitionStatisticsFilter as fH, type ProcessInstanceFilterFields as fI, type ProcessInstanceFilter as fJ, type ProcessInstanceSearchQueryResult as fK, type ProcessInstanceResult as fL, type CancelProcessInstanceRequest as fM, type DeleteProcessInstanceRequest as fN, type ProcessInstanceCallHierarchyEntry as fO, type ProcessInstanceSequenceFlowsQueryResult as fP, type ProcessInstanceSequenceFlowResult as fQ, type ProcessInstanceElementStatisticsQueryResult as fR, type ProcessInstanceMigrationInstruction as fS, type MigrateProcessInstanceMappingInstruction as fT, type ProcessInstanceModificationInstruction as fU, type ProcessInstanceModificationActivateInstruction as fV, type ModifyProcessInstanceVariableInstruction as fW, type ProcessInstanceModificationMoveInstruction as fX, type SourceElementInstruction as fY, type SourceElementIdInstruction as fZ, type SourceElementInstanceKeyInstruction as f_, MessageSubscriptionKey as fa, MessageKey as fb, type ProblemDetail as fc, type ProcessDefinitionSearchQuerySortRequest as fd, type ProcessDefinitionSearchQuery as fe, type ProcessDefinitionFilter as ff, type ProcessDefinitionSearchQueryResult as fg, type ProcessDefinitionResult as fh, type ProcessDefinitionElementStatisticsQuery as fi, type ProcessDefinitionElementStatisticsQueryResult as fj, type ProcessElementStatisticsResult as fk, type ProcessDefinitionMessageSubscriptionStatisticsQuery as fl, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as fm, type ProcessDefinitionMessageSubscriptionStatisticsResult as fn, type ProcessDefinitionInstanceStatisticsQuery as fo, type ProcessDefinitionInstanceStatisticsQueryResult as fp, type ProcessDefinitionInstanceStatisticsResult as fq, type ProcessDefinitionInstanceStatisticsQuerySortRequest as fr, type ProcessDefinitionInstanceVersionStatisticsQuery as fs, type ProcessDefinitionInstanceVersionStatisticsFilter as ft, type ProcessDefinitionInstanceVersionStatisticsQueryResult as fu, type ProcessDefinitionInstanceVersionStatisticsResult as fv, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as fw, type ProcessInstanceCreationInstruction as fx, type ProcessInstanceCreationInstructionById as fy, type ProcessInstanceCreationInstructionByKey as fz, ThreadedJobWorker as g, type TenantClientSearchQuerySortRequest as g$, type DirectAncestorKeyInstruction as g0, type InferredAncestorKeyInstruction as g1, type UseSourceParentKeyInstruction as g2, type ProcessInstanceModificationTerminateInstruction as g3, type ProcessInstanceModificationTerminateByIdInstruction as g4, type ProcessInstanceModificationTerminateByKeyInstruction as g5, type ProcessInstanceStateEnum as g6, type AdvancedProcessInstanceStateFilter as g7, type ProcessInstanceStateFilterProperty as g8, type RoleCreateRequest as g9, type CursorBackwardPagination as gA, type SearchQueryResponse as gB, type SortOrderEnum as gC, type SearchQueryPageResponse as gD, type SignalBroadcastRequest as gE, type SignalBroadcastResult as gF, SignalKey as gG, type UsageMetricsResponse as gH, type UsageMetricsResponseItem as gI, type SystemConfigurationResponse as gJ, type JobMetricsConfigurationResponse as gK, type TenantCreateRequest as gL, type TenantCreateResult as gM, type TenantUpdateRequest as gN, type TenantUpdateResult as gO, type TenantResult as gP, type TenantSearchQuerySortRequest as gQ, type TenantSearchQueryRequest as gR, type TenantFilter as gS, type TenantSearchQueryResult as gT, type TenantUserResult as gU, type TenantUserSearchResult as gV, type TenantUserSearchQueryRequest as gW, type TenantUserSearchQuerySortRequest as gX, type TenantClientResult as gY, type TenantClientSearchResult as gZ, type TenantClientSearchQueryRequest as g_, type RoleCreateResult as ga, type RoleUpdateRequest as gb, type RoleUpdateResult as gc, type RoleResult as gd, type RoleSearchQuerySortRequest as ge, type RoleSearchQueryRequest as gf, type RoleFilter as gg, type RoleSearchQueryResult as gh, type RoleUserResult as gi, type RoleUserSearchResult as gj, type RoleUserSearchQueryRequest as gk, type RoleUserSearchQuerySortRequest as gl, type RoleClientResult as gm, type RoleClientSearchResult as gn, type RoleClientSearchQueryRequest as go, type RoleClientSearchQuerySortRequest as gp, type RoleGroupResult as gq, type RoleGroupSearchResult as gr, type RoleGroupSearchQueryRequest as gs, type RoleMappingRuleSearchResult as gt, type RoleGroupSearchQuerySortRequest as gu, type SearchQueryRequest as gv, type SearchQueryPageRequest as gw, type LimitPagination as gx, type OffsetPagination as gy, type CursorForwardPagination as gz, type ThreadedJob as h, type ProcessDefinitionKeyExactMatch as h$, type TenantGroupResult as h0, type TenantGroupSearchResult as h1, type TenantGroupSearchQueryRequest as h2, type TenantRoleSearchResult as h3, type TenantMappingRuleSearchResult as h4, type TenantGroupSearchQuerySortRequest as h5, type UserTaskSearchQuerySortRequest as h6, type UserTaskSearchQuery as h7, type UserTaskFilter as h8, type UserTaskSearchQueryResult as h9, type VariableSearchQueryResult as hA, type VariableSearchResult as hB, type VariableResult as hC, type VariableResultBase as hD, type VariableValueFilterProperty as hE, type SetVariableRequest as hF, type AuditLogEntityKeyExactMatch as hG, type EntityTypeExactMatch as hH, type OperationTypeExactMatch as hI, type CategoryExactMatch as hJ, type AuditLogResultExactMatch as hK, type AuditLogActorTypeExactMatch as hL, type BatchOperationTypeExactMatch as hM, type BatchOperationStateExactMatch as hN, type BatchOperationItemStateExactMatch as hO, type ClusterVariableScopeExactMatch as hP, type DecisionInstanceStateExactMatch as hQ, type DeploymentKeyExactMatch as hR, type ResourceKeyExactMatch as hS, type ElementInstanceStateExactMatch as hT, type GlobalListenerSourceExactMatch as hU, type GlobalTaskListenerEventTypeExactMatch as hV, type IncidentErrorTypeExactMatch as hW, type IncidentStateExactMatch as hX, type JobKindExactMatch as hY, type JobListenerEventTypeExactMatch as hZ, type JobStateExactMatch as h_, type UserTaskResult as ha, type UserTaskCompletionRequest as hb, type UserTaskAssignmentRequest as hc, type UserTaskUpdateRequest as hd, type Changeset as he, type UserTaskVariableSearchQuerySortRequest as hf, type UserTaskVariableSearchQueryRequest as hg, type UserTaskEffectiveVariableSearchQueryRequest as hh, type UserTaskAuditLogSearchQueryRequest as hi, type UserTaskStateEnum as hj, type UserTaskVariableFilter as hk, type UserTaskStateFilterProperty as hl, type AdvancedUserTaskStateFilter as hm, type UserTaskAuditLogFilter as hn, type UserRequest as ho, type UserCreateResult as hp, type UserUpdateRequest as hq, type UserUpdateResult as hr, type UserResult as hs, type UserSearchQuerySortRequest as ht, type UserSearchQueryRequest as hu, type UserFilter as hv, type UserSearchResult as hw, type VariableSearchQuerySortRequest as hx, type VariableSearchQuery as hy, type VariableFilter as hz, type ThreadedJobHandler as i, type SearchBatchOperationsErrors as i$, type ProcessInstanceKeyExactMatch as i0, type ElementInstanceKeyExactMatch as i1, type JobKeyExactMatch as i2, type DecisionDefinitionKeyExactMatch as i3, type ScopeKeyExactMatch as i4, type VariableKeyExactMatch as i5, type DecisionEvaluationInstanceKeyExactMatch as i6, type AuditLogKeyExactMatch as i7, type FormKeyExactMatch as i8, type DecisionEvaluationKeyExactMatch as i9, type CreateAuthorizationResponse as iA, type SearchAuthorizationsData as iB, type SearchAuthorizationsErrors as iC, type SearchAuthorizationsError as iD, type SearchAuthorizationsResponses as iE, type SearchAuthorizationsResponse as iF, type DeleteAuthorizationData as iG, type DeleteAuthorizationErrors as iH, type DeleteAuthorizationError as iI, type DeleteAuthorizationResponses as iJ, type DeleteAuthorizationResponse as iK, type GetAuthorizationData as iL, type GetAuthorizationErrors as iM, type GetAuthorizationError as iN, type GetAuthorizationResponses as iO, type GetAuthorizationResponse as iP, type UpdateAuthorizationData as iQ, type UpdateAuthorizationErrors as iR, type UpdateAuthorizationError as iS, type UpdateAuthorizationResponses as iT, type UpdateAuthorizationResponse as iU, type SearchBatchOperationItemsData as iV, type SearchBatchOperationItemsErrors as iW, type SearchBatchOperationItemsError as iX, type SearchBatchOperationItemsResponses as iY, type SearchBatchOperationItemsResponse as iZ, type SearchBatchOperationsData as i_, type DecisionRequirementsKeyExactMatch as ia, type MessageSubscriptionStateExactMatch as ib, type MessageSubscriptionKeyExactMatch as ic, type ProcessInstanceStateExactMatch as id, type UserTaskStateExactMatch as ie, type SearchAuditLogsData as ig, type SearchAuditLogsErrors as ih, type SearchAuditLogsError as ii, type SearchAuditLogsResponses as ij, type SearchAuditLogsResponse as ik, type GetAuditLogData as il, type GetAuditLogErrors as im, type GetAuditLogError as io, type GetAuditLogResponses as ip, type GetAuditLogResponse as iq, type GetAuthenticationData as ir, type GetAuthenticationErrors as is, type GetAuthenticationError as it, type GetAuthenticationResponses as iu, type GetAuthenticationResponse as iv, type CreateAuthorizationData as iw, type CreateAuthorizationErrors as ix, type CreateAuthorizationError as iy, type CreateAuthorizationResponses as iz, ThreadPool as j, type DeleteTenantClusterVariableData as j$, type SearchBatchOperationsError as j0, type SearchBatchOperationsResponses as j1, type SearchBatchOperationsResponse as j2, type GetBatchOperationData as j3, type GetBatchOperationErrors as j4, type GetBatchOperationError as j5, type GetBatchOperationResponses as j6, type GetBatchOperationResponse as j7, type CancelBatchOperationData as j8, type CancelBatchOperationErrors as j9, type CreateGlobalClusterVariableResponses as jA, type CreateGlobalClusterVariableResponse as jB, type DeleteGlobalClusterVariableData as jC, type DeleteGlobalClusterVariableErrors as jD, type DeleteGlobalClusterVariableError as jE, type DeleteGlobalClusterVariableResponses as jF, type DeleteGlobalClusterVariableResponse as jG, type GetGlobalClusterVariableData as jH, type GetGlobalClusterVariableErrors as jI, type GetGlobalClusterVariableError as jJ, type GetGlobalClusterVariableResponses as jK, type GetGlobalClusterVariableResponse as jL, type UpdateGlobalClusterVariableData as jM, type UpdateGlobalClusterVariableErrors as jN, type UpdateGlobalClusterVariableError as jO, type UpdateGlobalClusterVariableResponses as jP, type UpdateGlobalClusterVariableResponse as jQ, type SearchClusterVariablesData as jR, type SearchClusterVariablesErrors as jS, type SearchClusterVariablesError as jT, type SearchClusterVariablesResponses as jU, type SearchClusterVariablesResponse as jV, type CreateTenantClusterVariableData as jW, type CreateTenantClusterVariableErrors as jX, type CreateTenantClusterVariableError as jY, type CreateTenantClusterVariableResponses as jZ, type CreateTenantClusterVariableResponse as j_, type CancelBatchOperationError as ja, type CancelBatchOperationResponses as jb, type CancelBatchOperationResponse as jc, type ResumeBatchOperationData as jd, type ResumeBatchOperationErrors as je, type ResumeBatchOperationError as jf, type ResumeBatchOperationResponses as jg, type ResumeBatchOperationResponse as jh, type SuspendBatchOperationData as ji, type SuspendBatchOperationErrors as jj, type SuspendBatchOperationError as jk, type SuspendBatchOperationResponses as jl, type SuspendBatchOperationResponse as jm, type PinClockData as jn, type PinClockErrors as jo, type PinClockError as jp, type PinClockResponses as jq, type PinClockResponse as jr, type ResetClockData as js, type ResetClockErrors as jt, type ResetClockError as ju, type ResetClockResponses as jv, type ResetClockResponse as jw, type CreateGlobalClusterVariableData as jx, type CreateGlobalClusterVariableErrors as jy, type CreateGlobalClusterVariableError as jz, createCamundaFpClient as k, type DeleteDecisionInstancesBatchOperationResponse as k$, type DeleteTenantClusterVariableErrors as k0, type DeleteTenantClusterVariableError as k1, type DeleteTenantClusterVariableResponses as k2, type DeleteTenantClusterVariableResponse as k3, type GetTenantClusterVariableData as k4, type GetTenantClusterVariableErrors as k5, type GetTenantClusterVariableError as k6, type GetTenantClusterVariableResponses as k7, type GetTenantClusterVariableResponse as k8, type UpdateTenantClusterVariableData as k9, type GetDecisionDefinitionError as kA, type GetDecisionDefinitionResponses as kB, type GetDecisionDefinitionResponse as kC, type GetDecisionDefinitionXmlData as kD, type GetDecisionDefinitionXmlErrors as kE, type GetDecisionDefinitionXmlError as kF, type GetDecisionDefinitionXmlResponses as kG, type GetDecisionDefinitionXmlResponse as kH, type SearchDecisionInstancesData as kI, type SearchDecisionInstancesErrors as kJ, type SearchDecisionInstancesError as kK, type SearchDecisionInstancesResponses as kL, type SearchDecisionInstancesResponse as kM, type GetDecisionInstanceData as kN, type GetDecisionInstanceErrors as kO, type GetDecisionInstanceError as kP, type GetDecisionInstanceResponses as kQ, type GetDecisionInstanceResponse as kR, type DeleteDecisionInstanceData as kS, type DeleteDecisionInstanceErrors as kT, type DeleteDecisionInstanceError as kU, type DeleteDecisionInstanceResponses as kV, type DeleteDecisionInstanceResponse as kW, type DeleteDecisionInstancesBatchOperationData as kX, type DeleteDecisionInstancesBatchOperationErrors as kY, type DeleteDecisionInstancesBatchOperationError as kZ, type DeleteDecisionInstancesBatchOperationResponses as k_, type UpdateTenantClusterVariableErrors as ka, type UpdateTenantClusterVariableError as kb, type UpdateTenantClusterVariableResponses as kc, type UpdateTenantClusterVariableResponse as kd, type EvaluateConditionalsData as ke, type EvaluateConditionalsErrors as kf, type EvaluateConditionalsError as kg, type EvaluateConditionalsResponses as kh, type EvaluateConditionalsResponse as ki, type SearchCorrelatedMessageSubscriptionsData as kj, type SearchCorrelatedMessageSubscriptionsErrors as kk, type SearchCorrelatedMessageSubscriptionsError as kl, type SearchCorrelatedMessageSubscriptionsResponses as km, type SearchCorrelatedMessageSubscriptionsResponse as kn, type EvaluateDecisionData as ko, type EvaluateDecisionErrors as kp, type EvaluateDecisionError as kq, type EvaluateDecisionResponses as kr, type EvaluateDecisionResponse as ks, type SearchDecisionDefinitionsData as kt, type SearchDecisionDefinitionsErrors as ku, type SearchDecisionDefinitionsError as kv, type SearchDecisionDefinitionsResponses as kw, type SearchDecisionDefinitionsResponse as kx, type GetDecisionDefinitionData as ky, type GetDecisionDefinitionErrors as kz, type CamundaFpClient as l, type SearchElementInstanceIncidentsResponses as l$, type SearchDecisionRequirementsData as l0, type SearchDecisionRequirementsErrors as l1, type SearchDecisionRequirementsError as l2, type SearchDecisionRequirementsResponses as l3, type SearchDecisionRequirementsResponse as l4, type GetDecisionRequirementsData as l5, type GetDecisionRequirementsErrors as l6, type GetDecisionRequirementsError as l7, type GetDecisionRequirementsResponses as l8, type GetDecisionRequirementsResponse as l9, type GetDocumentErrors as lA, type GetDocumentError as lB, type GetDocumentResponses as lC, type GetDocumentResponse as lD, type CreateDocumentLinkData as lE, type CreateDocumentLinkErrors as lF, type CreateDocumentLinkError as lG, type CreateDocumentLinkResponses as lH, type CreateDocumentLinkResponse as lI, type ActivateAdHocSubProcessActivitiesData as lJ, type ActivateAdHocSubProcessActivitiesErrors as lK, type ActivateAdHocSubProcessActivitiesError as lL, type ActivateAdHocSubProcessActivitiesResponses as lM, type ActivateAdHocSubProcessActivitiesResponse as lN, type SearchElementInstancesData as lO, type SearchElementInstancesErrors as lP, type SearchElementInstancesError as lQ, type SearchElementInstancesResponses as lR, type SearchElementInstancesResponse as lS, type GetElementInstanceData as lT, type GetElementInstanceErrors as lU, type GetElementInstanceError as lV, type GetElementInstanceResponses as lW, type GetElementInstanceResponse as lX, type SearchElementInstanceIncidentsData as lY, type SearchElementInstanceIncidentsErrors as lZ, type SearchElementInstanceIncidentsError as l_, type GetDecisionRequirementsXmlData as la, type GetDecisionRequirementsXmlErrors as lb, type GetDecisionRequirementsXmlError as lc, type GetDecisionRequirementsXmlResponses as ld, type GetDecisionRequirementsXmlResponse as le, type CreateDeploymentData as lf, type CreateDeploymentErrors as lg, type CreateDeploymentError as lh, type CreateDeploymentResponses as li, type CreateDeploymentResponse as lj, type CreateDocumentData as lk, type CreateDocumentErrors as ll, type CreateDocumentError as lm, type CreateDocumentResponses as ln, type CreateDocumentResponse as lo, type CreateDocumentsData as lp, type CreateDocumentsErrors as lq, type CreateDocumentsError as lr, type CreateDocumentsResponses as ls, type CreateDocumentsResponse as lt, type DeleteDocumentData as lu, type DeleteDocumentErrors as lv, type DeleteDocumentError as lw, type DeleteDocumentResponses as lx, type DeleteDocumentResponse as ly, type GetDocumentData as lz, isLeft as m, type SearchClientsForGroupError as m$, type SearchElementInstanceIncidentsResponse as m0, type CreateElementInstanceVariablesData as m1, type CreateElementInstanceVariablesErrors as m2, type CreateElementInstanceVariablesError as m3, type CreateElementInstanceVariablesResponses as m4, type CreateElementInstanceVariablesResponse as m5, type EvaluateExpressionData as m6, type EvaluateExpressionErrors as m7, type EvaluateExpressionError as m8, type EvaluateExpressionResponses as m9, type CreateGroupData as mA, type CreateGroupErrors as mB, type CreateGroupError as mC, type CreateGroupResponses as mD, type CreateGroupResponse as mE, type SearchGroupsData as mF, type SearchGroupsErrors as mG, type SearchGroupsError as mH, type SearchGroupsResponses as mI, type SearchGroupsResponse as mJ, type DeleteGroupData as mK, type DeleteGroupErrors as mL, type DeleteGroupError as mM, type DeleteGroupResponses as mN, type DeleteGroupResponse as mO, type GetGroupData as mP, type GetGroupErrors as mQ, type GetGroupError as mR, type GetGroupResponses as mS, type GetGroupResponse as mT, type UpdateGroupData as mU, type UpdateGroupErrors as mV, type UpdateGroupError as mW, type UpdateGroupResponses as mX, type UpdateGroupResponse as mY, type SearchClientsForGroupData as mZ, type SearchClientsForGroupErrors as m_, type EvaluateExpressionResponse as ma, type CreateGlobalTaskListenerData as mb, type CreateGlobalTaskListenerErrors as mc, type CreateGlobalTaskListenerError as md, type CreateGlobalTaskListenerResponses as me, type CreateGlobalTaskListenerResponse as mf, type DeleteGlobalTaskListenerData as mg, type DeleteGlobalTaskListenerErrors as mh, type DeleteGlobalTaskListenerError as mi, type DeleteGlobalTaskListenerResponses as mj, type DeleteGlobalTaskListenerResponse as mk, type GetGlobalTaskListenerData as ml, type GetGlobalTaskListenerErrors as mm, type GetGlobalTaskListenerError as mn, type GetGlobalTaskListenerResponses as mo, type GetGlobalTaskListenerResponse as mp, type UpdateGlobalTaskListenerData as mq, type UpdateGlobalTaskListenerErrors as mr, type UpdateGlobalTaskListenerError as ms, type UpdateGlobalTaskListenerResponses as mt, type UpdateGlobalTaskListenerResponse as mu, type SearchGlobalTaskListenersData as mv, type SearchGlobalTaskListenersErrors as mw, type SearchGlobalTaskListenersError as mx, type SearchGlobalTaskListenersResponses as my, type SearchGlobalTaskListenersResponse as mz, isRight as n, type GetProcessInstanceStatisticsByDefinitionErrors as n$, type SearchClientsForGroupResponses as n0, type SearchClientsForGroupResponse as n1, type UnassignClientFromGroupData as n2, type UnassignClientFromGroupErrors as n3, type UnassignClientFromGroupError as n4, type UnassignClientFromGroupResponses as n5, type UnassignClientFromGroupResponse as n6, type AssignClientToGroupData as n7, type AssignClientToGroupErrors as n8, type AssignClientToGroupError as n9, type SearchUsersForGroupResponse as nA, type UnassignUserFromGroupData as nB, type UnassignUserFromGroupErrors as nC, type UnassignUserFromGroupError as nD, type UnassignUserFromGroupResponses as nE, type UnassignUserFromGroupResponse as nF, type AssignUserToGroupData as nG, type AssignUserToGroupErrors as nH, type AssignUserToGroupError as nI, type AssignUserToGroupResponses as nJ, type AssignUserToGroupResponse as nK, type SearchIncidentsData as nL, type SearchIncidentsErrors as nM, type SearchIncidentsError as nN, type SearchIncidentsResponses as nO, type SearchIncidentsResponse as nP, type GetIncidentData as nQ, type GetIncidentErrors as nR, type GetIncidentError as nS, type GetIncidentResponses as nT, type GetIncidentResponse as nU, type ResolveIncidentData as nV, type ResolveIncidentErrors as nW, type ResolveIncidentError as nX, type ResolveIncidentResponses as nY, type ResolveIncidentResponse as nZ, type GetProcessInstanceStatisticsByDefinitionData as n_, type AssignClientToGroupResponses as na, type AssignClientToGroupResponse as nb, type SearchMappingRulesForGroupData as nc, type SearchMappingRulesForGroupErrors as nd, type SearchMappingRulesForGroupError as ne, type SearchMappingRulesForGroupResponses as nf, type SearchMappingRulesForGroupResponse as ng, type UnassignMappingRuleFromGroupData as nh, type UnassignMappingRuleFromGroupErrors as ni, type UnassignMappingRuleFromGroupError as nj, type UnassignMappingRuleFromGroupResponses as nk, type UnassignMappingRuleFromGroupResponse as nl, type AssignMappingRuleToGroupData as nm, type AssignMappingRuleToGroupErrors as nn, type AssignMappingRuleToGroupError as no, type AssignMappingRuleToGroupResponses as np, type AssignMappingRuleToGroupResponse as nq, type SearchRolesForGroupData as nr, type SearchRolesForGroupErrors as ns, type SearchRolesForGroupError as nt, type SearchRolesForGroupResponses as nu, type SearchRolesForGroupResponse as nv, type SearchUsersForGroupData as nw, type SearchUsersForGroupErrors as nx, type SearchUsersForGroupError as ny, type SearchUsersForGroupResponses as nz, CamundaValidationError as o, type GetLicenseData as o$, type GetProcessInstanceStatisticsByDefinitionError as o0, type GetProcessInstanceStatisticsByDefinitionResponses as o1, type GetProcessInstanceStatisticsByDefinitionResponse as o2, type GetProcessInstanceStatisticsByErrorData as o3, type GetProcessInstanceStatisticsByErrorErrors as o4, type GetProcessInstanceStatisticsByErrorError as o5, type GetProcessInstanceStatisticsByErrorResponses as o6, type GetProcessInstanceStatisticsByErrorResponse as o7, type ActivateJobsData as o8, type ActivateJobsErrors as o9, type FailJobResponses as oA, type FailJobResponse as oB, type GetGlobalJobStatisticsData as oC, type GetGlobalJobStatisticsErrors as oD, type GetGlobalJobStatisticsError as oE, type GetGlobalJobStatisticsResponses as oF, type GetGlobalJobStatisticsResponse as oG, type GetJobTypeStatisticsData as oH, type GetJobTypeStatisticsErrors as oI, type GetJobTypeStatisticsError as oJ, type GetJobTypeStatisticsResponses as oK, type GetJobTypeStatisticsResponse as oL, type GetJobWorkerStatisticsData as oM, type GetJobWorkerStatisticsErrors as oN, type GetJobWorkerStatisticsError as oO, type GetJobWorkerStatisticsResponses as oP, type GetJobWorkerStatisticsResponse as oQ, type GetJobTimeSeriesStatisticsData as oR, type GetJobTimeSeriesStatisticsErrors as oS, type GetJobTimeSeriesStatisticsError as oT, type GetJobTimeSeriesStatisticsResponses as oU, type GetJobTimeSeriesStatisticsResponse as oV, type GetJobErrorStatisticsData as oW, type GetJobErrorStatisticsErrors as oX, type GetJobErrorStatisticsError as oY, type GetJobErrorStatisticsResponses as oZ, type GetJobErrorStatisticsResponse as o_, type ActivateJobsError as oa, type ActivateJobsResponses as ob, type ActivateJobsResponse as oc, type SearchJobsData as od, type SearchJobsErrors as oe, type SearchJobsError as of, type SearchJobsResponses as og, type SearchJobsResponse as oh, type UpdateJobData as oi, type UpdateJobErrors as oj, type UpdateJobError as ok, type UpdateJobResponses as ol, type UpdateJobResponse as om, type CompleteJobData as on, type CompleteJobErrors as oo, type CompleteJobError as op, type CompleteJobResponses as oq, type CompleteJobResponse as or, type ThrowJobErrorData as os, type ThrowJobErrorErrors as ot, type ThrowJobErrorError as ou, type ThrowJobErrorResponses as ov, type ThrowJobErrorResponse as ow, type FailJobData as ox, type FailJobErrors as oy, type FailJobError as oz, EventualConsistencyTimeoutError as p, type GetProcessDefinitionResponse as p$, type GetLicenseErrors as p0, type GetLicenseError as p1, type GetLicenseResponses as p2, type GetLicenseResponse as p3, type CreateMappingRuleData as p4, type CreateMappingRuleErrors as p5, type CreateMappingRuleError as p6, type CreateMappingRuleResponses as p7, type CreateMappingRuleResponse as p8, type SearchMappingRuleData as p9, type CorrelateMessageError as pA, type CorrelateMessageResponses as pB, type CorrelateMessageResponse as pC, type PublishMessageData as pD, type PublishMessageErrors as pE, type PublishMessageError as pF, type PublishMessageResponses as pG, type PublishMessageResponse as pH, type SearchProcessDefinitionsData as pI, type SearchProcessDefinitionsErrors as pJ, type SearchProcessDefinitionsError as pK, type SearchProcessDefinitionsResponses as pL, type SearchProcessDefinitionsResponse as pM, type GetProcessDefinitionMessageSubscriptionStatisticsData as pN, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as pO, type GetProcessDefinitionMessageSubscriptionStatisticsError as pP, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as pQ, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as pR, type GetProcessDefinitionInstanceStatisticsData as pS, type GetProcessDefinitionInstanceStatisticsErrors as pT, type GetProcessDefinitionInstanceStatisticsError as pU, type GetProcessDefinitionInstanceStatisticsResponses as pV, type GetProcessDefinitionInstanceStatisticsResponse as pW, type GetProcessDefinitionData as pX, type GetProcessDefinitionErrors as pY, type GetProcessDefinitionError as pZ, type GetProcessDefinitionResponses as p_, type SearchMappingRuleErrors as pa, type SearchMappingRuleError as pb, type SearchMappingRuleResponses as pc, type SearchMappingRuleResponse as pd, type DeleteMappingRuleData as pe, type DeleteMappingRuleErrors as pf, type DeleteMappingRuleError as pg, type DeleteMappingRuleResponses as ph, type DeleteMappingRuleResponse as pi, type GetMappingRuleData as pj, type GetMappingRuleErrors as pk, type GetMappingRuleError as pl, type GetMappingRuleResponses as pm, type GetMappingRuleResponse as pn, type UpdateMappingRuleData as po, type UpdateMappingRuleErrors as pp, type UpdateMappingRuleError as pq, type UpdateMappingRuleResponses as pr, type UpdateMappingRuleResponse as ps, type SearchMessageSubscriptionsData as pt, type SearchMessageSubscriptionsErrors as pu, type SearchMessageSubscriptionsError as pv, type SearchMessageSubscriptionsResponses as pw, type SearchMessageSubscriptionsResponse as px, type CorrelateMessageData as py, type CorrelateMessageErrors as pz, isSdkError as q, type GetProcessInstanceCallHierarchyResponses as q$, type GetStartProcessFormData as q0, type GetStartProcessFormErrors as q1, type GetStartProcessFormError as q2, type GetStartProcessFormResponses as q3, type GetStartProcessFormResponse as q4, type GetProcessDefinitionStatisticsData as q5, type GetProcessDefinitionStatisticsErrors as q6, type GetProcessDefinitionStatisticsError as q7, type GetProcessDefinitionStatisticsResponses as q8, type GetProcessDefinitionStatisticsResponse as q9, type ResolveIncidentsBatchOperationErrors as qA, type ResolveIncidentsBatchOperationError as qB, type ResolveIncidentsBatchOperationResponses as qC, type ResolveIncidentsBatchOperationResponse as qD, type MigrateProcessInstancesBatchOperationData as qE, type MigrateProcessInstancesBatchOperationErrors as qF, type MigrateProcessInstancesBatchOperationError as qG, type MigrateProcessInstancesBatchOperationResponses as qH, type MigrateProcessInstancesBatchOperationResponse as qI, type ModifyProcessInstancesBatchOperationData as qJ, type ModifyProcessInstancesBatchOperationErrors as qK, type ModifyProcessInstancesBatchOperationError as qL, type ModifyProcessInstancesBatchOperationResponses as qM, type ModifyProcessInstancesBatchOperationResponse as qN, type SearchProcessInstancesData as qO, type SearchProcessInstancesErrors as qP, type SearchProcessInstancesError as qQ, type SearchProcessInstancesResponses as qR, type SearchProcessInstancesResponse as qS, type GetProcessInstanceData as qT, type GetProcessInstanceErrors as qU, type GetProcessInstanceError as qV, type GetProcessInstanceResponses as qW, type GetProcessInstanceResponse as qX, type GetProcessInstanceCallHierarchyData as qY, type GetProcessInstanceCallHierarchyErrors as qZ, type GetProcessInstanceCallHierarchyError as q_, type GetProcessDefinitionXmlData as qa, type GetProcessDefinitionXmlErrors as qb, type GetProcessDefinitionXmlError as qc, type GetProcessDefinitionXmlResponses as qd, type GetProcessDefinitionXmlResponse as qe, type GetProcessDefinitionInstanceVersionStatisticsData as qf, type GetProcessDefinitionInstanceVersionStatisticsErrors as qg, type GetProcessDefinitionInstanceVersionStatisticsError as qh, type GetProcessDefinitionInstanceVersionStatisticsResponses as qi, type GetProcessDefinitionInstanceVersionStatisticsResponse as qj, type CreateProcessInstanceData as qk, type CreateProcessInstanceErrors as ql, type CreateProcessInstanceError as qm, type CreateProcessInstanceResponses as qn, type CreateProcessInstanceResponse as qo, type CancelProcessInstancesBatchOperationData as qp, type CancelProcessInstancesBatchOperationErrors as qq, type CancelProcessInstancesBatchOperationError as qr, type CancelProcessInstancesBatchOperationResponses as qs, type CancelProcessInstancesBatchOperationResponse as qt, type DeleteProcessInstancesBatchOperationData as qu, type DeleteProcessInstancesBatchOperationErrors as qv, type DeleteProcessInstancesBatchOperationError as qw, type DeleteProcessInstancesBatchOperationResponses as qx, type DeleteProcessInstancesBatchOperationResponse as qy, type ResolveIncidentsBatchOperationData as qz, type EnrichedActivatedJob as r, type SearchRolesError as r$, type GetProcessInstanceCallHierarchyResponse as r0, type CancelProcessInstanceData as r1, type CancelProcessInstanceErrors as r2, type CancelProcessInstanceError as r3, type CancelProcessInstanceResponses as r4, type CancelProcessInstanceResponse as r5, type DeleteProcessInstanceData as r6, type DeleteProcessInstanceErrors as r7, type DeleteProcessInstanceError as r8, type DeleteProcessInstanceResponses as r9, type GetProcessInstanceStatisticsData as rA, type GetProcessInstanceStatisticsErrors as rB, type GetProcessInstanceStatisticsError as rC, type GetProcessInstanceStatisticsResponses as rD, type GetProcessInstanceStatisticsResponse as rE, type GetResourceData as rF, type GetResourceErrors as rG, type GetResourceError as rH, type GetResourceResponses as rI, type GetResourceResponse as rJ, type GetResourceContentData as rK, type GetResourceContentErrors as rL, type GetResourceContentError as rM, type GetResourceContentResponses as rN, type GetResourceContentResponse as rO, type DeleteResourceData as rP, type DeleteResourceErrors as rQ, type DeleteResourceError as rR, type DeleteResourceResponses as rS, type DeleteResourceResponse2 as rT, type CreateRoleData as rU, type CreateRoleErrors as rV, type CreateRoleError as rW, type CreateRoleResponses as rX, type CreateRoleResponse as rY, type SearchRolesData as rZ, type SearchRolesErrors as r_, type DeleteProcessInstanceResponse as ra, type ResolveProcessInstanceIncidentsData as rb, type ResolveProcessInstanceIncidentsErrors as rc, type ResolveProcessInstanceIncidentsError as rd, type ResolveProcessInstanceIncidentsResponses as re, type ResolveProcessInstanceIncidentsResponse as rf, type SearchProcessInstanceIncidentsData as rg, type SearchProcessInstanceIncidentsErrors as rh, type SearchProcessInstanceIncidentsError as ri, type SearchProcessInstanceIncidentsResponses as rj, type SearchProcessInstanceIncidentsResponse as rk, type MigrateProcessInstanceData as rl, type MigrateProcessInstanceErrors as rm, type MigrateProcessInstanceError as rn, type MigrateProcessInstanceResponses as ro, type MigrateProcessInstanceResponse as rp, type ModifyProcessInstanceData as rq, type ModifyProcessInstanceErrors as rr, type ModifyProcessInstanceError as rs, type ModifyProcessInstanceResponses as rt, type ModifyProcessInstanceResponse as ru, type GetProcessInstanceSequenceFlowsData as rv, type GetProcessInstanceSequenceFlowsErrors as rw, type GetProcessInstanceSequenceFlowsError as rx, type GetProcessInstanceSequenceFlowsResponses as ry, type GetProcessInstanceSequenceFlowsResponse as rz, type CamundaConfig as s, type SearchUsersForRoleErrors as s$, type SearchRolesResponses as s0, type SearchRolesResponse as s1, type DeleteRoleData as s2, type DeleteRoleErrors as s3, type DeleteRoleError as s4, type DeleteRoleResponses as s5, type DeleteRoleResponse as s6, type GetRoleData as s7, type GetRoleErrors as s8, type GetRoleError as s9, type SearchGroupsForRoleResponse as sA, type UnassignRoleFromGroupData as sB, type UnassignRoleFromGroupErrors as sC, type UnassignRoleFromGroupError as sD, type UnassignRoleFromGroupResponses as sE, type UnassignRoleFromGroupResponse as sF, type AssignRoleToGroupData as sG, type AssignRoleToGroupErrors as sH, type AssignRoleToGroupError as sI, type AssignRoleToGroupResponses as sJ, type AssignRoleToGroupResponse as sK, type SearchMappingRulesForRoleData as sL, type SearchMappingRulesForRoleErrors as sM, type SearchMappingRulesForRoleError as sN, type SearchMappingRulesForRoleResponses as sO, type SearchMappingRulesForRoleResponse as sP, type UnassignRoleFromMappingRuleData as sQ, type UnassignRoleFromMappingRuleErrors as sR, type UnassignRoleFromMappingRuleError as sS, type UnassignRoleFromMappingRuleResponses as sT, type UnassignRoleFromMappingRuleResponse as sU, type AssignRoleToMappingRuleData as sV, type AssignRoleToMappingRuleErrors as sW, type AssignRoleToMappingRuleError as sX, type AssignRoleToMappingRuleResponses as sY, type AssignRoleToMappingRuleResponse as sZ, type SearchUsersForRoleData as s_, type GetRoleResponses as sa, type GetRoleResponse as sb, type UpdateRoleData as sc, type UpdateRoleErrors as sd, type UpdateRoleError as se, type UpdateRoleResponses as sf, type UpdateRoleResponse as sg, type SearchClientsForRoleData as sh, type SearchClientsForRoleErrors as si, type SearchClientsForRoleError as sj, type SearchClientsForRoleResponses as sk, type SearchClientsForRoleResponse as sl, type UnassignRoleFromClientData as sm, type UnassignRoleFromClientErrors as sn, type UnassignRoleFromClientError as so, type UnassignRoleFromClientResponses as sp, type UnassignRoleFromClientResponse as sq, type AssignRoleToClientData as sr, type AssignRoleToClientErrors as ss, type AssignRoleToClientError as st, type AssignRoleToClientResponses as su, type AssignRoleToClientResponse as sv, type SearchGroupsForRoleData as sw, type SearchGroupsForRoleErrors as sx, type SearchGroupsForRoleError as sy, type SearchGroupsForRoleResponses as sz, type SupportLogger as t, type SearchClientsForTenantResponses as t$, type SearchUsersForRoleError as t0, type SearchUsersForRoleResponses as t1, type SearchUsersForRoleResponse as t2, type UnassignRoleFromUserData as t3, type UnassignRoleFromUserErrors as t4, type UnassignRoleFromUserError as t5, type UnassignRoleFromUserResponses as t6, type UnassignRoleFromUserResponse as t7, type AssignRoleToUserData as t8, type AssignRoleToUserErrors as t9, type GetSystemConfigurationResponse as tA, type CreateTenantData as tB, type CreateTenantErrors as tC, type CreateTenantError as tD, type CreateTenantResponses as tE, type CreateTenantResponse as tF, type SearchTenantsData as tG, type SearchTenantsErrors as tH, type SearchTenantsError as tI, type SearchTenantsResponses as tJ, type SearchTenantsResponse as tK, type DeleteTenantData as tL, type DeleteTenantErrors as tM, type DeleteTenantError as tN, type DeleteTenantResponses as tO, type DeleteTenantResponse as tP, type GetTenantData as tQ, type GetTenantErrors as tR, type GetTenantError as tS, type GetTenantResponses as tT, type GetTenantResponse as tU, type UpdateTenantData as tV, type UpdateTenantErrors as tW, type UpdateTenantError as tX, type UpdateTenantResponses as tY, type UpdateTenantResponse as tZ, type SearchClientsForTenantData as t_, type AssignRoleToUserError as ta, type AssignRoleToUserResponses as tb, type AssignRoleToUserResponse as tc, type CreateAdminUserData as td, type CreateAdminUserErrors as te, type CreateAdminUserError as tf, type CreateAdminUserResponses as tg, type CreateAdminUserResponse as th, type BroadcastSignalData as ti, type BroadcastSignalErrors as tj, type BroadcastSignalError as tk, type BroadcastSignalResponses as tl, type BroadcastSignalResponse as tm, type GetStatusData as tn, type GetStatusErrors as to, type GetStatusResponses as tp, type GetStatusResponse as tq, type GetUsageMetricsData as tr, type GetUsageMetricsErrors as ts, type GetUsageMetricsError as tt, type GetUsageMetricsResponses as tu, type GetUsageMetricsResponse as tv, type GetSystemConfigurationData as tw, type GetSystemConfigurationErrors as tx, type GetSystemConfigurationError as ty, type GetSystemConfigurationResponses as tz, type TelemetryHooks as u, type GetTopologyData as u$, type SearchClientsForTenantResponse as u0, type UnassignClientFromTenantData as u1, type UnassignClientFromTenantErrors as u2, type UnassignClientFromTenantError as u3, type UnassignClientFromTenantResponses as u4, type UnassignClientFromTenantResponse as u5, type AssignClientToTenantData as u6, type AssignClientToTenantErrors as u7, type AssignClientToTenantError as u8, type AssignClientToTenantResponses as u9, type AssignMappingRuleToTenantResponse as uA, type SearchRolesForTenantData as uB, type SearchRolesForTenantResponses as uC, type SearchRolesForTenantResponse as uD, type UnassignRoleFromTenantData as uE, type UnassignRoleFromTenantErrors as uF, type UnassignRoleFromTenantError as uG, type UnassignRoleFromTenantResponses as uH, type UnassignRoleFromTenantResponse as uI, type AssignRoleToTenantData as uJ, type AssignRoleToTenantErrors as uK, type AssignRoleToTenantError as uL, type AssignRoleToTenantResponses as uM, type AssignRoleToTenantResponse as uN, type SearchUsersForTenantData as uO, type SearchUsersForTenantResponses as uP, type SearchUsersForTenantResponse as uQ, type UnassignUserFromTenantData as uR, type UnassignUserFromTenantErrors as uS, type UnassignUserFromTenantError as uT, type UnassignUserFromTenantResponses as uU, type UnassignUserFromTenantResponse as uV, type AssignUserToTenantData as uW, type AssignUserToTenantErrors as uX, type AssignUserToTenantError as uY, type AssignUserToTenantResponses as uZ, type AssignUserToTenantResponse as u_, type AssignClientToTenantResponse as ua, type SearchGroupIdsForTenantData as ub, type SearchGroupIdsForTenantResponses as uc, type SearchGroupIdsForTenantResponse as ud, type UnassignGroupFromTenantData as ue, type UnassignGroupFromTenantErrors as uf, type UnassignGroupFromTenantError as ug, type UnassignGroupFromTenantResponses as uh, type UnassignGroupFromTenantResponse as ui, type AssignGroupToTenantData as uj, type AssignGroupToTenantErrors as uk, type AssignGroupToTenantError as ul, type AssignGroupToTenantResponses as um, type AssignGroupToTenantResponse as un, type SearchMappingRulesForTenantData as uo, type SearchMappingRulesForTenantResponses as up, type SearchMappingRulesForTenantResponse as uq, type UnassignMappingRuleFromTenantData as ur, type UnassignMappingRuleFromTenantErrors as us, type UnassignMappingRuleFromTenantError as ut, type UnassignMappingRuleFromTenantResponses as uu, type UnassignMappingRuleFromTenantResponse as uv, type AssignMappingRuleToTenantData as uw, type AssignMappingRuleToTenantErrors as ux, type AssignMappingRuleToTenantError as uy, type AssignMappingRuleToTenantResponses as uz, type CamundaKey as v, type CompleteUserTaskResponse as v$, type GetTopologyErrors as v0, type GetTopologyError as v1, type GetTopologyResponses as v2, type GetTopologyResponse as v3, type CreateUserData as v4, type CreateUserErrors as v5, type CreateUserError as v6, type CreateUserResponses as v7, type CreateUserResponse as v8, type SearchUsersData as v9, type GetUserTaskError as vA, type GetUserTaskResponses as vB, type GetUserTaskResponse as vC, type UpdateUserTaskData as vD, type UpdateUserTaskErrors as vE, type UpdateUserTaskError as vF, type UpdateUserTaskResponses as vG, type UpdateUserTaskResponse as vH, type UnassignUserTaskData as vI, type UnassignUserTaskErrors as vJ, type UnassignUserTaskError as vK, type UnassignUserTaskResponses as vL, type UnassignUserTaskResponse as vM, type AssignUserTaskData as vN, type AssignUserTaskErrors as vO, type AssignUserTaskError as vP, type AssignUserTaskResponses as vQ, type AssignUserTaskResponse as vR, type SearchUserTaskAuditLogsData as vS, type SearchUserTaskAuditLogsErrors as vT, type SearchUserTaskAuditLogsError as vU, type SearchUserTaskAuditLogsResponses as vV, type SearchUserTaskAuditLogsResponse as vW, type CompleteUserTaskData as vX, type CompleteUserTaskErrors as vY, type CompleteUserTaskError as vZ, type CompleteUserTaskResponses as v_, type SearchUsersErrors as va, type SearchUsersError as vb, type SearchUsersResponses as vc, type SearchUsersResponse as vd, type DeleteUserData as ve, type DeleteUserErrors as vf, type DeleteUserError as vg, type DeleteUserResponses as vh, type DeleteUserResponse as vi, type GetUserData as vj, type GetUserErrors as vk, type GetUserError as vl, type GetUserResponses as vm, type GetUserResponse as vn, type UpdateUserData as vo, type UpdateUserErrors as vp, type UpdateUserError as vq, type UpdateUserResponses as vr, type UpdateUserResponse as vs, type SearchUserTasksData as vt, type SearchUserTasksErrors as vu, type SearchUserTasksError as vv, type SearchUserTasksResponses as vw, type SearchUserTasksResponse as vx, type GetUserTaskData as vy, type GetUserTaskErrors as vz, type ClientOptions as w, type createUserInput as w$, type SearchUserTaskEffectiveVariablesData as w0, type SearchUserTaskEffectiveVariablesErrors as w1, type SearchUserTaskEffectiveVariablesError as w2, type SearchUserTaskEffectiveVariablesResponses as w3, type SearchUserTaskEffectiveVariablesResponse as w4, type GetUserTaskFormData as w5, type GetUserTaskFormErrors as w6, type GetUserTaskFormError as w7, type GetUserTaskFormResponses as w8, type GetUserTaskFormResponse as w9, type assignRoleToTenantInput as wA, type assignRoleToUserInput as wB, type assignUserTaskInput as wC, type assignUserToGroupInput as wD, type assignUserToTenantInput as wE, type broadcastSignalInput as wF, type cancelBatchOperationInput as wG, type cancelProcessInstanceInput as wH, type cancelProcessInstancesBatchOperationInput as wI, type completeJobInput as wJ, type completeUserTaskInput as wK, type correlateMessageInput as wL, type createAdminUserInput as wM, type createAuthorizationInput as wN, type createDeploymentInput as wO, type createDocumentInput as wP, type createDocumentLinkInput as wQ, type createDocumentsInput as wR, type createElementInstanceVariablesInput as wS, type createGlobalClusterVariableInput as wT, type createGlobalTaskListenerInput as wU, type createGroupInput as wV, type createMappingRuleInput as wW, type createProcessInstanceInput as wX, type createRoleInput as wY, type createTenantInput as wZ, type createTenantClusterVariableInput as w_, type SearchUserTaskVariablesData as wa, type SearchUserTaskVariablesErrors as wb, type SearchUserTaskVariablesError as wc, type SearchUserTaskVariablesResponses as wd, type SearchUserTaskVariablesResponse as we, type SearchVariablesData as wf, type SearchVariablesErrors as wg, type SearchVariablesError as wh, type SearchVariablesResponses as wi, type SearchVariablesResponse as wj, type GetVariableData as wk, type GetVariableErrors as wl, type GetVariableError as wm, type GetVariableResponses as wn, type GetVariableResponse as wo, assertConstraint as wp, type activateAdHocSubProcessActivitiesInput as wq, type activateJobsInput as wr, type assignClientToGroupInput as ws, type assignClientToTenantInput as wt, type assignGroupToTenantInput as wu, type assignMappingRuleToGroupInput as wv, type assignMappingRuleToTenantInput as ww, type assignRoleToClientInput as wx, type assignRoleToGroupInput as wy, type assignRoleToMappingRuleInput as wz, type AuditLogResult as x, type getProcessDefinitionInstanceStatisticsConsistency as x$, type deleteAuthorizationInput as x0, type deleteDecisionInstanceInput as x1, type deleteDecisionInstancesBatchOperationInput as x2, type deleteDocumentInput as x3, type deleteGlobalClusterVariableInput as x4, type deleteGlobalTaskListenerInput as x5, type deleteGroupInput as x6, type deleteMappingRuleInput as x7, type deleteProcessInstanceInput as x8, type deleteProcessInstancesBatchOperationInput as x9, type getDocumentInput as xA, type getElementInstanceInput as xB, type getElementInstanceConsistency as xC, type getGlobalClusterVariableInput as xD, type getGlobalClusterVariableConsistency as xE, type getGlobalJobStatisticsInput as xF, type getGlobalJobStatisticsConsistency as xG, type getGlobalTaskListenerInput as xH, type getGlobalTaskListenerConsistency as xI, type getGroupInput as xJ, type getGroupConsistency as xK, type getIncidentInput as xL, type getIncidentConsistency as xM, type getJobErrorStatisticsInput as xN, type getJobErrorStatisticsConsistency as xO, type getJobTimeSeriesStatisticsInput as xP, type getJobTimeSeriesStatisticsConsistency as xQ, type getJobTypeStatisticsInput as xR, type getJobTypeStatisticsConsistency as xS, type getJobWorkerStatisticsInput as xT, type getJobWorkerStatisticsConsistency as xU, type getLicenseInput as xV, type getMappingRuleInput as xW, type getMappingRuleConsistency as xX, type getProcessDefinitionInput as xY, type getProcessDefinitionConsistency as xZ, type getProcessDefinitionInstanceStatisticsInput as x_, type deleteResourceInput as xa, type deleteRoleInput as xb, type deleteTenantInput as xc, type deleteTenantClusterVariableInput as xd, type deleteUserInput as xe, type evaluateConditionalsInput as xf, type evaluateDecisionInput as xg, type evaluateExpressionInput as xh, type failJobInput as xi, type getAuditLogInput as xj, type getAuditLogConsistency as xk, type getAuthenticationInput as xl, type getAuthorizationInput as xm, type getAuthorizationConsistency as xn, type getBatchOperationInput as xo, type getBatchOperationConsistency as xp, type getDecisionDefinitionInput as xq, type getDecisionDefinitionConsistency as xr, type getDecisionDefinitionXmlInput as xs, type getDecisionDefinitionXmlConsistency as xt, type getDecisionInstanceInput as xu, type getDecisionInstanceConsistency as xv, type getDecisionRequirementsInput as xw, type getDecisionRequirementsConsistency as xx, type getDecisionRequirementsXmlInput as xy, type getDecisionRequirementsXmlConsistency as xz, type AuditLogSearchQuerySortRequest as y, type searchClientsForGroupConsistency as y$, type getProcessDefinitionInstanceVersionStatisticsInput as y0, type getProcessDefinitionInstanceVersionStatisticsConsistency as y1, type getProcessDefinitionMessageSubscriptionStatisticsInput as y2, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as y3, type getProcessDefinitionStatisticsInput as y4, type getProcessDefinitionStatisticsConsistency as y5, type getProcessDefinitionXmlInput as y6, type getProcessDefinitionXmlConsistency as y7, type getProcessInstanceInput as y8, type getProcessInstanceConsistency as y9, type getUserConsistency as yA, type getUserTaskInput as yB, type getUserTaskConsistency as yC, type getUserTaskFormInput as yD, type getUserTaskFormConsistency as yE, type getVariableInput as yF, type getVariableConsistency as yG, type migrateProcessInstanceInput as yH, type migrateProcessInstancesBatchOperationInput as yI, type modifyProcessInstanceInput as yJ, type modifyProcessInstancesBatchOperationInput as yK, type pinClockInput as yL, type publishMessageInput as yM, type resetClockInput as yN, type resolveIncidentInput as yO, type resolveIncidentsBatchOperationInput as yP, type resolveProcessInstanceIncidentsInput as yQ, type resumeBatchOperationInput as yR, type searchAuditLogsInput as yS, type searchAuditLogsConsistency as yT, type searchAuthorizationsInput as yU, type searchAuthorizationsConsistency as yV, type searchBatchOperationItemsInput as yW, type searchBatchOperationItemsConsistency as yX, type searchBatchOperationsInput as yY, type searchBatchOperationsConsistency as yZ, type searchClientsForGroupInput as y_, type getProcessInstanceCallHierarchyInput as ya, type getProcessInstanceCallHierarchyConsistency as yb, type getProcessInstanceSequenceFlowsInput as yc, type getProcessInstanceSequenceFlowsConsistency as yd, type getProcessInstanceStatisticsInput as ye, type getProcessInstanceStatisticsConsistency as yf, type getProcessInstanceStatisticsByDefinitionInput as yg, type getProcessInstanceStatisticsByDefinitionConsistency as yh, type getProcessInstanceStatisticsByErrorInput as yi, type getProcessInstanceStatisticsByErrorConsistency as yj, type getResourceInput as yk, type getResourceContentInput as yl, type getRoleInput as ym, type getRoleConsistency as yn, type getStartProcessFormInput as yo, type getStartProcessFormConsistency as yp, type getStatusInput as yq, type getSystemConfigurationInput as yr, type getTenantInput as ys, type getTenantConsistency as yt, type getTenantClusterVariableInput as yu, type getTenantClusterVariableConsistency as yv, type getTopologyInput as yw, type getUsageMetricsInput as yx, type getUsageMetricsConsistency as yy, type getUserInput as yz, type AuditLogSearchQueryRequest as z, type searchUserTaskAuditLogsConsistency as z$, type searchClientsForRoleInput as z0, type searchClientsForRoleConsistency as z1, type searchClientsForTenantInput as z2, type searchClientsForTenantConsistency as z3, type searchClusterVariablesInput as z4, type searchClusterVariablesConsistency as z5, type searchCorrelatedMessageSubscriptionsInput as z6, type searchCorrelatedMessageSubscriptionsConsistency as z7, type searchDecisionDefinitionsInput as z8, type searchDecisionDefinitionsConsistency as z9, type searchMappingRulesForTenantInput as zA, type searchMappingRulesForTenantConsistency as zB, type searchMessageSubscriptionsInput as zC, type searchMessageSubscriptionsConsistency as zD, type searchProcessDefinitionsInput as zE, type searchProcessDefinitionsConsistency as zF, type searchProcessInstanceIncidentsInput as zG, type searchProcessInstanceIncidentsConsistency as zH, type searchProcessInstancesInput as zI, type searchProcessInstancesConsistency as zJ, type searchRolesInput as zK, type searchRolesConsistency as zL, type searchRolesForGroupInput as zM, type searchRolesForGroupConsistency as zN, type searchRolesForTenantInput as zO, type searchRolesForTenantConsistency as zP, type searchTenantsInput as zQ, type searchTenantsConsistency as zR, type searchUsersInput as zS, type searchUsersConsistency as zT, type searchUsersForGroupInput as zU, type searchUsersForGroupConsistency as zV, type searchUsersForRoleInput as zW, type searchUsersForRoleConsistency as zX, type searchUsersForTenantInput as zY, type searchUsersForTenantConsistency as zZ, type searchUserTaskAuditLogsInput as z_, type searchDecisionInstancesInput as za, type searchDecisionInstancesConsistency as zb, type searchDecisionRequirementsInput as zc, type searchDecisionRequirementsConsistency as zd, type searchElementInstanceIncidentsInput as ze, type searchElementInstanceIncidentsConsistency as zf, type searchElementInstancesInput as zg, type searchElementInstancesConsistency as zh, type searchGlobalTaskListenersInput as zi, type searchGlobalTaskListenersConsistency as zj, type searchGroupIdsForTenantInput as zk, type searchGroupIdsForTenantConsistency as zl, type searchGroupsInput as zm, type searchGroupsConsistency as zn, type searchGroupsForRoleInput as zo, type searchGroupsForRoleConsistency as zp, type searchIncidentsInput as zq, type searchIncidentsConsistency as zr, type searchJobsInput as zs, type searchJobsConsistency as zt, type searchMappingRuleInput as zu, type searchMappingRuleConsistency as zv, type searchMappingRulesForGroupInput as zw, type searchMappingRulesForGroupConsistency as zx, type searchMappingRulesForRoleInput as zy, type searchMappingRulesForRoleConsistency as zz };
|
|
22576
|
+
export { type createAdminUserInput as $, type AuthStrategy as A, type SearchUserTaskAuditLogsData as A0, type SearchUserTaskAuditLogsErrors as A1, type SearchUserTaskAuditLogsError as A2, type SearchUserTaskAuditLogsResponses as A3, type SearchUserTaskAuditLogsResponse as A4, type CompleteUserTaskData as A5, type CompleteUserTaskErrors as A6, type CompleteUserTaskError as A7, type CompleteUserTaskResponses as A8, type CompleteUserTaskResponse as A9, classifyDomainError as AA, type DomainError as AB, type DomainErrorTag as AC, eventuallyTE as AD, type FnKeys as AE, type Fpify as AF, foldDomainError as AG, type HttpError as AH, type Left as AI, type Right as AJ, retryTE as AK, type TaskEither as AL, withTimeoutTE as AM, type SearchUserTaskEffectiveVariablesData as Aa, type SearchUserTaskEffectiveVariablesErrors as Ab, type SearchUserTaskEffectiveVariablesError as Ac, type SearchUserTaskEffectiveVariablesResponses as Ad, type SearchUserTaskEffectiveVariablesResponse as Ae, type GetUserTaskFormData as Af, type GetUserTaskFormErrors as Ag, type GetUserTaskFormError as Ah, type GetUserTaskFormResponses as Ai, type GetUserTaskFormResponse as Aj, type SearchUserTaskVariablesData as Ak, type SearchUserTaskVariablesErrors as Al, type SearchUserTaskVariablesError as Am, type SearchUserTaskVariablesResponses as An, type SearchUserTaskVariablesResponse as Ao, type SearchVariablesData as Ap, type SearchVariablesErrors as Aq, type SearchVariablesError as Ar, type SearchVariablesResponses as As, type SearchVariablesResponse as At, type GetVariableData as Au, type GetVariableErrors as Av, type GetVariableError as Aw, type GetVariableResponses as Ax, type GetVariableResponse as Ay, assertConstraint as Az, type BackpressureSeverity as B, CamundaClient as C, type assignMappingRuleToGroupInput as D, type Either as E, type assignMappingRuleToTenantInput as F, type assignRoleToClientInput as G, type HttpRetryPolicy as H, type assignRoleToGroupInput as I, type Job as J, type assignRoleToMappingRuleInput as K, type assignRoleToTenantInput as L, type assignRoleToUserInput as M, type assignUserTaskInput as N, type OperationOptions as O, type assignUserToGroupInput as P, type assignUserToTenantInput as Q, type broadcastSignalInput as R, type SdkError as S, type TelemetryHooks as T, type cancelBatchOperationInput as U, type ValidationMode as V, type cancelProcessInstanceInput as W, type cancelProcessInstancesBatchOperationInput as X, type completeJobInput as Y, type completeUserTaskInput as Z, type correlateMessageInput as _, type CamundaOptions as a, type getIncidentConsistency as a$, type createAuthorizationInput as a0, type createDeploymentInput as a1, type createDocumentInput as a2, type createDocumentLinkInput as a3, type createDocumentsInput as a4, type createElementInstanceVariablesInput as a5, type createGlobalClusterVariableInput as a6, type createGlobalTaskListenerInput as a7, type createGroupInput as a8, type createMappingRuleInput as a9, type getAuthenticationInput as aA, type getAuthorizationInput as aB, type getAuthorizationConsistency as aC, type getBatchOperationInput as aD, type getBatchOperationConsistency as aE, type getDecisionDefinitionInput as aF, type getDecisionDefinitionConsistency as aG, type getDecisionDefinitionXmlInput as aH, type getDecisionDefinitionXmlConsistency as aI, type getDecisionInstanceInput as aJ, type getDecisionInstanceConsistency as aK, type getDecisionRequirementsInput as aL, type getDecisionRequirementsConsistency as aM, type getDecisionRequirementsXmlInput as aN, type getDecisionRequirementsXmlConsistency as aO, type getDocumentInput as aP, type getElementInstanceInput as aQ, type getElementInstanceConsistency as aR, type getGlobalClusterVariableInput as aS, type getGlobalClusterVariableConsistency as aT, type getGlobalJobStatisticsInput as aU, type getGlobalJobStatisticsConsistency as aV, type getGlobalTaskListenerInput as aW, type getGlobalTaskListenerConsistency as aX, type getGroupInput as aY, type getGroupConsistency as aZ, type getIncidentInput as a_, type createProcessInstanceInput as aa, type createRoleInput as ab, type createTenantInput as ac, type createTenantClusterVariableInput as ad, type createUserInput as ae, type deleteAuthorizationInput as af, type deleteDecisionInstanceInput as ag, type deleteDecisionInstancesBatchOperationInput as ah, type deleteDocumentInput as ai, type deleteGlobalClusterVariableInput as aj, type deleteGlobalTaskListenerInput as ak, type deleteGroupInput as al, type deleteMappingRuleInput as am, type deleteProcessInstanceInput as an, type deleteProcessInstancesBatchOperationInput as ao, type deleteResourceInput as ap, type deleteRoleInput as aq, type deleteTenantInput as ar, type deleteTenantClusterVariableInput as as, type deleteUserInput as at, type evaluateConditionalsInput as au, type evaluateDecisionInput as av, type evaluateExpressionInput as aw, type failJobInput as ax, type getAuditLogInput as ay, type getAuditLogConsistency as az, type CancelablePromise as b, type publishMessageInput as b$, type getJobErrorStatisticsInput as b0, type getJobErrorStatisticsConsistency as b1, type getJobTimeSeriesStatisticsInput as b2, type getJobTimeSeriesStatisticsConsistency as b3, type getJobTypeStatisticsInput as b4, type getJobTypeStatisticsConsistency as b5, type getJobWorkerStatisticsInput as b6, type getJobWorkerStatisticsConsistency as b7, type getLicenseInput as b8, type getMappingRuleInput as b9, type getResourceContentInput as bA, type getRoleInput as bB, type getRoleConsistency as bC, type getStartProcessFormInput as bD, type getStartProcessFormConsistency as bE, type getStatusInput as bF, type getSystemConfigurationInput as bG, type getTenantInput as bH, type getTenantConsistency as bI, type getTenantClusterVariableInput as bJ, type getTenantClusterVariableConsistency as bK, type getTopologyInput as bL, type getUsageMetricsInput as bM, type getUsageMetricsConsistency as bN, type getUserInput as bO, type getUserConsistency as bP, type getUserTaskInput as bQ, type getUserTaskConsistency as bR, type getUserTaskFormInput as bS, type getUserTaskFormConsistency as bT, type getVariableInput as bU, type getVariableConsistency as bV, type migrateProcessInstanceInput as bW, type migrateProcessInstancesBatchOperationInput as bX, type modifyProcessInstanceInput as bY, type modifyProcessInstancesBatchOperationInput as bZ, type pinClockInput as b_, type getMappingRuleConsistency as ba, type getProcessDefinitionInput as bb, type getProcessDefinitionConsistency as bc, type getProcessDefinitionInstanceStatisticsInput as bd, type getProcessDefinitionInstanceStatisticsConsistency as be, type getProcessDefinitionInstanceVersionStatisticsInput as bf, type getProcessDefinitionInstanceVersionStatisticsConsistency as bg, type getProcessDefinitionMessageSubscriptionStatisticsInput as bh, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as bi, type getProcessDefinitionStatisticsInput as bj, type getProcessDefinitionStatisticsConsistency as bk, type getProcessDefinitionXmlInput as bl, type getProcessDefinitionXmlConsistency as bm, type getProcessInstanceInput as bn, type getProcessInstanceConsistency as bo, type getProcessInstanceCallHierarchyInput as bp, type getProcessInstanceCallHierarchyConsistency as bq, type getProcessInstanceSequenceFlowsInput as br, type getProcessInstanceSequenceFlowsConsistency as bs, type getProcessInstanceStatisticsInput as bt, type getProcessInstanceStatisticsConsistency as bu, type getProcessInstanceStatisticsByDefinitionInput as bv, type getProcessInstanceStatisticsByDefinitionConsistency as bw, type getProcessInstanceStatisticsByErrorInput as bx, type getProcessInstanceStatisticsByErrorConsistency as by, type getResourceInput as bz, createCamundaClient as c, type searchRolesForGroupInput as c$, type resetClockInput as c0, type resolveIncidentInput as c1, type resolveIncidentsBatchOperationInput as c2, type resolveProcessInstanceIncidentsInput as c3, type resumeBatchOperationInput as c4, type searchAuditLogsInput as c5, type searchAuditLogsConsistency as c6, type searchAuthorizationsInput as c7, type searchAuthorizationsConsistency as c8, type searchBatchOperationItemsInput as c9, type searchGroupIdsForTenantConsistency as cA, type searchGroupsInput as cB, type searchGroupsConsistency as cC, type searchGroupsForRoleInput as cD, type searchGroupsForRoleConsistency as cE, type searchIncidentsInput as cF, type searchIncidentsConsistency as cG, type searchJobsInput as cH, type searchJobsConsistency as cI, type searchMappingRuleInput as cJ, type searchMappingRuleConsistency as cK, type searchMappingRulesForGroupInput as cL, type searchMappingRulesForGroupConsistency as cM, type searchMappingRulesForRoleInput as cN, type searchMappingRulesForRoleConsistency as cO, type searchMappingRulesForTenantInput as cP, type searchMappingRulesForTenantConsistency as cQ, type searchMessageSubscriptionsInput as cR, type searchMessageSubscriptionsConsistency as cS, type searchProcessDefinitionsInput as cT, type searchProcessDefinitionsConsistency as cU, type searchProcessInstanceIncidentsInput as cV, type searchProcessInstanceIncidentsConsistency as cW, type searchProcessInstancesInput as cX, type searchProcessInstancesConsistency as cY, type searchRolesInput as cZ, type searchRolesConsistency as c_, type searchBatchOperationItemsConsistency as ca, type searchBatchOperationsInput as cb, type searchBatchOperationsConsistency as cc, type searchClientsForGroupInput as cd, type searchClientsForGroupConsistency as ce, type searchClientsForRoleInput as cf, type searchClientsForRoleConsistency as cg, type searchClientsForTenantInput as ch, type searchClientsForTenantConsistency as ci, type searchClusterVariablesInput as cj, type searchClusterVariablesConsistency as ck, type searchCorrelatedMessageSubscriptionsInput as cl, type searchCorrelatedMessageSubscriptionsConsistency as cm, type searchDecisionDefinitionsInput as cn, type searchDecisionDefinitionsConsistency as co, type searchDecisionInstancesInput as cp, type searchDecisionInstancesConsistency as cq, type searchDecisionRequirementsInput as cr, type searchDecisionRequirementsConsistency as cs, type searchElementInstanceIncidentsInput as ct, type searchElementInstanceIncidentsConsistency as cu, type searchElementInstancesInput as cv, type searchElementInstancesConsistency as cw, type searchGlobalTaskListenersInput as cx, type searchGlobalTaskListenersConsistency as cy, type searchGroupIdsForTenantInput as cz, type CamundaFpClient as d, type AuditLogResultEnum as d$, type searchRolesForGroupConsistency as d0, type searchRolesForTenantInput as d1, type searchRolesForTenantConsistency as d2, type searchTenantsInput as d3, type searchTenantsConsistency as d4, type searchUsersInput as d5, type searchUsersConsistency as d6, type searchUsersForGroupInput as d7, type searchUsersForGroupConsistency as d8, type searchUsersForRoleInput as d9, type unassignUserFromGroupInput as dA, type unassignUserFromTenantInput as dB, type unassignUserTaskInput as dC, type updateAuthorizationInput as dD, type updateGlobalClusterVariableInput as dE, type updateGlobalTaskListenerInput as dF, type updateGroupInput as dG, type updateJobInput as dH, type updateMappingRuleInput as dI, type updateRoleInput as dJ, type updateTenantInput as dK, type updateTenantClusterVariableInput as dL, type updateUserInput as dM, type updateUserTaskInput as dN, type ExtendedDeploymentResult as dO, CancelError as dP, type CamundaKey as dQ, type ClientOptions as dR, type AuditLogResult as dS, type AuditLogSearchQuerySortRequest as dT, type AuditLogSearchQueryRequest as dU, type AuditLogFilter as dV, type AuditLogSearchQueryResult as dW, AuditLogEntityKey as dX, type AuditLogEntityTypeEnum as dY, type AuditLogOperationTypeEnum as dZ, type AuditLogActorTypeEnum as d_, type searchUsersForRoleConsistency as da, type searchUsersForTenantInput as db, type searchUsersForTenantConsistency as dc, type searchUserTaskAuditLogsInput as dd, type searchUserTaskAuditLogsConsistency as de, type searchUserTaskEffectiveVariablesInput as df, type searchUserTaskEffectiveVariablesConsistency as dg, type searchUserTasksInput as dh, type searchUserTasksConsistency as di, type searchUserTaskVariablesInput as dj, type searchUserTaskVariablesConsistency as dk, type searchVariablesInput as dl, type searchVariablesConsistency as dm, type suspendBatchOperationInput as dn, type throwJobErrorInput as dp, type unassignClientFromGroupInput as dq, type unassignClientFromTenantInput as dr, type unassignGroupFromTenantInput as ds, type unassignMappingRuleFromGroupInput as dt, type unassignMappingRuleFromTenantInput as du, type unassignRoleFromClientInput as dv, type unassignRoleFromGroupInput as dw, type unassignRoleFromMappingRuleInput as dx, type unassignRoleFromTenantInput as dy, type unassignRoleFromUserInput as dz, createCamundaFpClient as e, type ClusterVariableSearchQueryRequest as e$, type AuditLogCategoryEnum as e0, type AuditLogEntityKeyFilterProperty as e1, type AdvancedAuditLogEntityKeyFilter as e2, type EntityTypeFilterProperty as e3, type AdvancedEntityTypeFilter as e4, type OperationTypeFilterProperty as e5, type AdvancedOperationTypeFilter as e6, type CategoryFilterProperty as e7, type AdvancedCategoryFilter as e8, type AuditLogResultFilterProperty as e9, type BatchOperationItemFilter as eA, type BatchOperationItemSearchQueryResult as eB, type BatchOperationItemResponse as eC, type DecisionInstanceDeletionBatchOperationRequest as eD, type ProcessInstanceCancellationBatchOperationRequest as eE, type ProcessInstanceIncidentResolutionBatchOperationRequest as eF, type ProcessInstanceDeletionBatchOperationRequest as eG, type ProcessInstanceMigrationBatchOperationRequest as eH, type ProcessInstanceMigrationBatchOperationPlan as eI, type ProcessInstanceModificationBatchOperationRequest as eJ, type ProcessInstanceModificationMoveBatchOperationInstruction as eK, type BatchOperationItemStateEnum as eL, type BatchOperationStateEnum as eM, type BatchOperationTypeEnum as eN, type BatchOperationTypeFilterProperty as eO, type AdvancedBatchOperationTypeFilter as eP, type BatchOperationStateFilterProperty as eQ, type AdvancedBatchOperationStateFilter as eR, type BatchOperationItemStateFilterProperty as eS, type AdvancedBatchOperationItemStateFilter as eT, type ClockPinRequest as eU, type ClusterVariableScopeEnum as eV, type CreateClusterVariableRequest as eW, type UpdateClusterVariableRequest as eX, type ClusterVariableResult as eY, type ClusterVariableSearchResult as eZ, type ClusterVariableResultBase as e_, type AdvancedResultFilter as ea, type AuditLogActorTypeFilterProperty as eb, type AdvancedActorTypeFilter as ec, type CamundaUserResult as ed, type AuthorizationIdBasedRequest as ee, type AuthorizationPropertyBasedRequest as ef, type AuthorizationRequest as eg, type AuthorizationSearchQuerySortRequest as eh, type AuthorizationSearchQuery as ei, type AuthorizationFilter as ej, type AuthorizationResult as ek, type AuthorizationSearchResult as el, type AuthorizationCreateResult as em, type PermissionTypeEnum as en, type ResourceTypeEnum as eo, type OwnerTypeEnum as ep, AuthorizationKey as eq, type BatchOperationCreatedResult as er, type BatchOperationSearchQuerySortRequest as es, type BatchOperationSearchQuery as et, type BatchOperationFilter as eu, type BatchOperationSearchQueryResult as ev, type BatchOperationResponse as ew, type BatchOperationError as ex, type BatchOperationItemSearchQuerySortRequest as ey, type BatchOperationItemSearchQuery as ez, isRight as f, type DocumentMetadataResponse as f$, type ClusterVariableSearchQuerySortRequest as f0, type ClusterVariableSearchQueryFilterRequest as f1, type ClusterVariableScopeFilterProperty as f2, type AdvancedClusterVariableScopeFilter as f3, type ClusterVariableSearchQueryResult as f4, type TopologyResponse as f5, type BrokerInfo as f6, type Partition as f7, type ConditionalEvaluationInstruction as f8, type EvaluateConditionalResult as f9, type AdvancedDecisionInstanceStateFilter as fA, type DecisionInstanceStateFilterProperty as fB, type DecisionRequirementsSearchQuerySortRequest as fC, type DecisionRequirementsSearchQuery as fD, type DecisionRequirementsFilter as fE, type DecisionRequirementsSearchQueryResult as fF, type DecisionRequirementsResult as fG, type DeploymentResult as fH, type DeploymentMetadataResult as fI, type DeploymentProcessResult as fJ, type DeploymentDecisionResult as fK, type DeploymentDecisionRequirementsResult as fL, type DeploymentFormResult as fM, type DeploymentResourceResult as fN, type DeleteResourceRequest as fO, type DeleteResourceResponse as fP, type ResourceResult as fQ, DeploymentKey as fR, type ResourceKey as fS, type DeploymentKeyFilterProperty as fT, type AdvancedDeploymentKeyFilter as fU, type ResourceKeyFilterProperty as fV, type AdvancedResourceKeyFilter as fW, type DocumentReference as fX, type DocumentCreationFailureDetail as fY, type DocumentCreationBatchResponse as fZ, type DocumentMetadata as f_, ConditionalEvaluationKey as fa, type ProcessInstanceReference as fb, StartCursor as fc, EndCursor as fd, type DecisionDefinitionSearchQuerySortRequest as fe, type DecisionDefinitionSearchQuery as ff, type DecisionDefinitionFilter as fg, type DecisionDefinitionSearchQueryResult as fh, type DecisionDefinitionResult as fi, type DecisionEvaluationInstruction as fj, type DecisionEvaluationById as fk, type DecisionEvaluationByKey as fl, type EvaluateDecisionResult as fm, type EvaluatedDecisionResult as fn, type DecisionInstanceSearchQuerySortRequest as fo, type DecisionInstanceSearchQuery as fp, type DecisionInstanceFilter as fq, type DeleteDecisionInstanceRequest as fr, type DecisionInstanceSearchQueryResult as fs, type DecisionInstanceResult as ft, type DecisionInstanceGetQueryResult as fu, type EvaluatedDecisionInputItem as fv, type EvaluatedDecisionOutputItem as fw, type MatchedDecisionRuleItem as fx, type DecisionDefinitionTypeEnum as fy, type DecisionInstanceStateEnum as fz, CamundaValidationError as g, FormId as g$, type DocumentLinkRequest as g0, type DocumentLink as g1, DocumentId as g2, type ElementInstanceSearchQuerySortRequest as g3, type ElementInstanceSearchQuery as g4, type ElementInstanceFilter as g5, type ElementInstanceStateFilterProperty as g6, type AdvancedElementInstanceStateFilter as g7, type ElementInstanceSearchQueryResult as g8, type ElementInstanceResult as g9, type GlobalTaskListenerSearchQueryFilterRequest as gA, type GlobalListenerSourceFilterProperty as gB, type AdvancedGlobalListenerSourceFilter as gC, type GlobalTaskListenerEventTypeFilterProperty as gD, type AdvancedGlobalTaskListenerEventTypeFilter as gE, type GlobalTaskListenerSearchQueryResult as gF, type GroupCreateRequest as gG, type GroupCreateResult as gH, type GroupUpdateRequest as gI, type GroupUpdateResult as gJ, type GroupResult as gK, type GroupSearchQuerySortRequest as gL, type GroupSearchQueryRequest as gM, type GroupFilter as gN, type GroupSearchQueryResult as gO, type GroupUserResult as gP, type GroupUserSearchResult as gQ, type GroupUserSearchQueryRequest as gR, type GroupUserSearchQuerySortRequest as gS, type GroupClientResult as gT, type GroupClientSearchResult as gU, type GroupClientSearchQueryRequest as gV, type GroupMappingRuleSearchResult as gW, type GroupRoleSearchResult as gX, type GroupClientSearchQuerySortRequest as gY, ProcessDefinitionId as gZ, ElementId as g_, type ElementInstanceStateEnum as ga, type AdHocSubProcessActivateActivitiesInstruction as gb, type AdHocSubProcessActivateActivityReference as gc, type ExpressionEvaluationRequest as gd, type ExpressionEvaluationResult as ge, type ExpressionEvaluationWarningItem as gf, type LikeFilter as gg, type BasicStringFilter as gh, type AdvancedStringFilter as gi, type BasicStringFilterProperty as gj, type StringFilterProperty as gk, type AdvancedIntegerFilter as gl, type IntegerFilterProperty as gm, type AdvancedDateTimeFilter as gn, type DateTimeFilterProperty as go, type FormResult as gp, type GlobalListenerSourceEnum as gq, type GlobalTaskListenerEventTypeEnum as gr, type GlobalListenerBase as gs, type GlobalTaskListenerBase as gt, type GlobalTaskListenerEventTypes as gu, type CreateGlobalTaskListenerRequest as gv, type UpdateGlobalTaskListenerRequest as gw, type GlobalTaskListenerResult as gx, type GlobalTaskListenerSearchQueryRequest as gy, type GlobalTaskListenerSearchQuerySortRequest as gz, EventualConsistencyTimeoutError as h, type JobUpdateRequest as h$, DecisionDefinitionId as h0, GlobalListenerId as h1, TenantId as h2, Username as h3, Tag as h4, type TagSet as h5, BusinessId as h6, type IncidentSearchQuery as h7, type IncidentFilter as h8, type IncidentErrorTypeFilterProperty as h9, type JobWorkerStatisticsQueryResult as hA, type JobWorkerStatisticsItem as hB, type JobTimeSeriesStatisticsQuery as hC, type JobTimeSeriesStatisticsFilter as hD, type JobTimeSeriesStatisticsQueryResult as hE, type JobTimeSeriesStatisticsItem as hF, type JobErrorStatisticsQuery as hG, type JobErrorStatisticsFilter as hH, type JobErrorStatisticsQueryResult as hI, type JobErrorStatisticsItem as hJ, type JobActivationRequest as hK, type JobActivationResult as hL, type ActivatedJobResult$1 as hM, type UserTaskProperties as hN, type JobSearchQuery as hO, type JobSearchQuerySortRequest as hP, type JobFilter as hQ, type JobSearchQueryResult as hR, type JobSearchResult as hS, type JobFailRequest as hT, type JobErrorRequest$1 as hU, type JobCompletionRequest as hV, type JobResult as hW, type JobResultUserTask as hX, type JobResultCorrections as hY, type JobResultAdHocSubProcess as hZ, type JobResultActivateElement as h_, type AdvancedIncidentErrorTypeFilter as ha, type IncidentErrorTypeEnum as hb, type IncidentStateFilterProperty as hc, type AdvancedIncidentStateFilter as hd, type IncidentStateEnum as he, type IncidentSearchQuerySortRequest as hf, type IncidentSearchQueryResult as hg, type IncidentResult as hh, type IncidentResolutionRequest as hi, type IncidentProcessInstanceStatisticsByErrorQuery as hj, type IncidentProcessInstanceStatisticsByErrorQueryResult as hk, type IncidentProcessInstanceStatisticsByErrorResult as hl, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as hm, type IncidentProcessInstanceStatisticsByDefinitionQuery as hn, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as ho, type IncidentProcessInstanceStatisticsByDefinitionResult as hp, type IncidentProcessInstanceStatisticsByDefinitionFilter as hq, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as hr, type GlobalJobStatisticsQueryResult as hs, type StatusMetric as ht, type JobTypeStatisticsQuery as hu, type JobTypeStatisticsFilter as hv, type JobTypeStatisticsQueryResult as hw, type JobTypeStatisticsItem as hx, type JobWorkerStatisticsQuery as hy, type JobWorkerStatisticsFilter as hz, isLeft as i, type MappingRuleResult as i$, type JobChangeset as i0, type TenantFilterEnum as i1, type JobStateEnum as i2, type JobKindEnum as i3, type JobListenerEventTypeEnum as i4, type JobKindFilterProperty as i5, type AdvancedJobKindFilter as i6, type JobListenerEventTypeFilterProperty as i7, type AdvancedJobListenerEventTypeFilter as i8, type JobStateFilterProperty as i9, type AdvancedElementInstanceKeyFilter as iA, type JobKeyFilterProperty as iB, type AdvancedJobKeyFilter as iC, type DecisionDefinitionKeyFilterProperty as iD, type AdvancedDecisionDefinitionKeyFilter as iE, type ScopeKeyFilterProperty as iF, type AdvancedScopeKeyFilter as iG, type VariableKeyFilterProperty as iH, type AdvancedVariableKeyFilter as iI, type DecisionEvaluationInstanceKeyFilterProperty as iJ, type AdvancedDecisionEvaluationInstanceKeyFilter as iK, type AuditLogKeyFilterProperty as iL, type AdvancedAuditLogKeyFilter as iM, type FormKeyFilterProperty as iN, type AdvancedFormKeyFilter as iO, type DecisionEvaluationKeyFilterProperty as iP, type AdvancedDecisionEvaluationKeyFilter as iQ, type DecisionRequirementsKeyFilterProperty as iR, type AdvancedDecisionRequirementsKeyFilter as iS, type LicenseResponse as iT, type MappingRuleCreateUpdateRequest as iU, type MappingRuleCreateRequest as iV, type MappingRuleUpdateRequest as iW, type MappingRuleCreateUpdateResult as iX, type MappingRuleCreateResult as iY, type MappingRuleUpdateResult as iZ, type MappingRuleSearchQueryResult as i_, type AdvancedJobStateFilter as ia, type LongKey as ib, ProcessInstanceKey as ic, ProcessDefinitionKey as id, ElementInstanceKey as ie, UserTaskKey as ig, FormKey as ih, VariableKey as ii, type ScopeKey as ij, IncidentKey as ik, JobKey as il, DecisionDefinitionKey as im, DecisionEvaluationInstanceKey as io, DecisionEvaluationKey as ip, DecisionRequirementsKey as iq, DecisionInstanceKey as ir, BatchOperationKey as is, type OperationReference as it, AuditLogKey as iu, type ProcessDefinitionKeyFilterProperty as iv, type AdvancedProcessDefinitionKeyFilter as iw, type ProcessInstanceKeyFilterProperty as ix, type AdvancedProcessInstanceKeyFilter as iy, type ElementInstanceKeyFilterProperty as iz, isSdkError as j, type ProcessInstanceSequenceFlowsQueryResult as j$, type MappingRuleSearchQuerySortRequest as j0, type MappingRuleSearchQueryRequest as j1, type MappingRuleFilter as j2, type MessageCorrelationRequest as j3, type MessageCorrelationResult as j4, type MessagePublicationRequest as j5, type MessagePublicationResult as j6, type MessageSubscriptionSearchQueryResult as j7, type MessageSubscriptionResult as j8, type MessageSubscriptionSearchQuerySortRequest as j9, type ProcessDefinitionInstanceStatisticsQuery as jA, type ProcessDefinitionInstanceStatisticsQueryResult as jB, type ProcessDefinitionInstanceStatisticsResult as jC, type ProcessDefinitionInstanceStatisticsQuerySortRequest as jD, type ProcessDefinitionInstanceVersionStatisticsQuery as jE, type ProcessDefinitionInstanceVersionStatisticsFilter as jF, type ProcessDefinitionInstanceVersionStatisticsQueryResult as jG, type ProcessDefinitionInstanceVersionStatisticsResult as jH, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as jI, type ProcessInstanceCreationInstruction as jJ, type ProcessInstanceCreationInstructionById as jK, type ProcessInstanceCreationInstructionByKey as jL, type ProcessInstanceCreationStartInstruction as jM, type ProcessInstanceCreationRuntimeInstruction as jN, type ProcessInstanceCreationTerminateInstruction as jO, type CreateProcessInstanceResult as jP, type ProcessInstanceSearchQuerySortRequest as jQ, type ProcessInstanceSearchQuery as jR, type BaseProcessInstanceFilterFields as jS, type ProcessDefinitionStatisticsFilter as jT, type ProcessInstanceFilterFields as jU, type ProcessInstanceFilter as jV, type ProcessInstanceSearchQueryResult as jW, type ProcessInstanceResult as jX, type CancelProcessInstanceRequest as jY, type DeleteProcessInstanceRequest as jZ, type ProcessInstanceCallHierarchyEntry as j_, type MessageSubscriptionSearchQuery as ja, type MessageSubscriptionFilter as jb, type CorrelatedMessageSubscriptionSearchQueryResult as jc, type CorrelatedMessageSubscriptionResult as jd, type CorrelatedMessageSubscriptionSearchQuery as je, type CorrelatedMessageSubscriptionSearchQuerySortRequest as jf, type MessageSubscriptionStateEnum as jg, type CorrelatedMessageSubscriptionFilter as jh, type MessageSubscriptionStateFilterProperty as ji, type AdvancedMessageSubscriptionStateFilter as jj, type AdvancedMessageSubscriptionKeyFilter as jk, type MessageSubscriptionKeyFilterProperty as jl, MessageSubscriptionKey as jm, MessageKey as jn, type ProblemDetail as jo, type ProcessDefinitionSearchQuerySortRequest as jp, type ProcessDefinitionSearchQuery as jq, type ProcessDefinitionFilter as jr, type ProcessDefinitionSearchQueryResult as js, type ProcessDefinitionResult as jt, type ProcessDefinitionElementStatisticsQuery as ju, type ProcessDefinitionElementStatisticsQueryResult as jv, type ProcessElementStatisticsResult as jw, type ProcessDefinitionMessageSubscriptionStatisticsQuery as jx, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as jy, type ProcessDefinitionMessageSubscriptionStatisticsResult as jz, type EnrichedActivatedJob as k, type TenantResult as k$, type ProcessInstanceSequenceFlowResult as k0, type ProcessInstanceElementStatisticsQueryResult as k1, type ProcessInstanceMigrationInstruction as k2, type MigrateProcessInstanceMappingInstruction as k3, type ProcessInstanceModificationInstruction as k4, type ProcessInstanceModificationActivateInstruction as k5, type ModifyProcessInstanceVariableInstruction as k6, type ProcessInstanceModificationMoveInstruction as k7, type SourceElementInstruction as k8, type SourceElementIdInstruction as k9, type RoleClientSearchQueryRequest as kA, type RoleClientSearchQuerySortRequest as kB, type RoleGroupResult as kC, type RoleGroupSearchResult as kD, type RoleGroupSearchQueryRequest as kE, type RoleMappingRuleSearchResult as kF, type RoleGroupSearchQuerySortRequest as kG, type SearchQueryRequest as kH, type SearchQueryPageRequest as kI, type LimitPagination as kJ, type OffsetPagination as kK, type CursorForwardPagination as kL, type CursorBackwardPagination as kM, type SearchQueryResponse as kN, type SortOrderEnum as kO, type SearchQueryPageResponse as kP, type SignalBroadcastRequest as kQ, type SignalBroadcastResult as kR, SignalKey as kS, type UsageMetricsResponse as kT, type UsageMetricsResponseItem as kU, type SystemConfigurationResponse as kV, type JobMetricsConfigurationResponse as kW, type TenantCreateRequest as kX, type TenantCreateResult as kY, type TenantUpdateRequest as kZ, type TenantUpdateResult as k_, type SourceElementInstanceKeyInstruction as ka, type AncestorScopeInstruction as kb, type DirectAncestorKeyInstruction as kc, type InferredAncestorKeyInstruction as kd, type UseSourceParentKeyInstruction as ke, type ProcessInstanceModificationTerminateInstruction as kf, type ProcessInstanceModificationTerminateByIdInstruction as kg, type ProcessInstanceModificationTerminateByKeyInstruction as kh, type ProcessInstanceStateEnum as ki, type AdvancedProcessInstanceStateFilter as kj, type ProcessInstanceStateFilterProperty as kk, type RoleCreateRequest as kl, type RoleCreateResult as km, type RoleUpdateRequest as kn, type RoleUpdateResult as ko, type RoleResult as kp, type RoleSearchQuerySortRequest as kq, type RoleSearchQueryRequest as kr, type RoleFilter as ks, type RoleSearchQueryResult as kt, type RoleUserResult as ku, type RoleUserSearchResult as kv, type RoleUserSearchQueryRequest as kw, type RoleUserSearchQuerySortRequest as kx, type RoleClientResult as ky, type RoleClientSearchResult as kz, JobActionReceipt as l, type ClusterVariableScopeExactMatch as l$, type TenantSearchQuerySortRequest as l0, type TenantSearchQueryRequest as l1, type TenantFilter as l2, type TenantSearchQueryResult as l3, type TenantUserResult as l4, type TenantUserSearchResult as l5, type TenantUserSearchQueryRequest as l6, type TenantUserSearchQuerySortRequest as l7, type TenantClientResult as l8, type TenantClientSearchResult as l9, type UserRequest as lA, type UserCreateResult as lB, type UserUpdateRequest as lC, type UserUpdateResult as lD, type UserResult as lE, type UserSearchQuerySortRequest as lF, type UserSearchQueryRequest as lG, type UserFilter as lH, type UserSearchResult as lI, type VariableSearchQuerySortRequest as lJ, type VariableSearchQuery as lK, type VariableFilter as lL, type VariableSearchQueryResult as lM, type VariableSearchResult as lN, type VariableResult as lO, type VariableResultBase as lP, type VariableValueFilterProperty as lQ, type SetVariableRequest as lR, type AuditLogEntityKeyExactMatch as lS, type EntityTypeExactMatch as lT, type OperationTypeExactMatch as lU, type CategoryExactMatch as lV, type AuditLogResultExactMatch as lW, type AuditLogActorTypeExactMatch as lX, type BatchOperationTypeExactMatch as lY, type BatchOperationStateExactMatch as lZ, type BatchOperationItemStateExactMatch as l_, type TenantClientSearchQueryRequest as la, type TenantClientSearchQuerySortRequest as lb, type TenantGroupResult as lc, type TenantGroupSearchResult as ld, type TenantGroupSearchQueryRequest as le, type TenantRoleSearchResult as lf, type TenantMappingRuleSearchResult as lg, type TenantGroupSearchQuerySortRequest as lh, type UserTaskSearchQuerySortRequest as li, type UserTaskSearchQuery as lj, type UserTaskFilter as lk, type UserTaskSearchQueryResult as ll, type UserTaskResult as lm, type UserTaskCompletionRequest as ln, type UserTaskAssignmentRequest as lo, type UserTaskUpdateRequest as lp, type Changeset as lq, type UserTaskVariableSearchQuerySortRequest as lr, type UserTaskVariableSearchQueryRequest as ls, type UserTaskEffectiveVariableSearchQueryRequest as lt, type UserTaskAuditLogSearchQueryRequest as lu, type UserTaskStateEnum as lv, type UserTaskVariableFilter as lw, type UserTaskStateFilterProperty as lx, type AdvancedUserTaskStateFilter as ly, type UserTaskAuditLogFilter as lz, JobWorker as m, type UpdateAuthorizationErrors as m$, type DecisionInstanceStateExactMatch as m0, type DeploymentKeyExactMatch as m1, type ResourceKeyExactMatch as m2, type ElementInstanceStateExactMatch as m3, type GlobalListenerSourceExactMatch as m4, type GlobalTaskListenerEventTypeExactMatch as m5, type IncidentErrorTypeExactMatch as m6, type IncidentStateExactMatch as m7, type JobKindExactMatch as m8, type JobListenerEventTypeExactMatch as m9, type GetAuditLogResponse as mA, type GetAuthenticationData as mB, type GetAuthenticationErrors as mC, type GetAuthenticationError as mD, type GetAuthenticationResponses as mE, type GetAuthenticationResponse as mF, type CreateAuthorizationData as mG, type CreateAuthorizationErrors as mH, type CreateAuthorizationError as mI, type CreateAuthorizationResponses as mJ, type CreateAuthorizationResponse as mK, type SearchAuthorizationsData as mL, type SearchAuthorizationsErrors as mM, type SearchAuthorizationsError as mN, type SearchAuthorizationsResponses as mO, type SearchAuthorizationsResponse as mP, type DeleteAuthorizationData as mQ, type DeleteAuthorizationErrors as mR, type DeleteAuthorizationError as mS, type DeleteAuthorizationResponses as mT, type DeleteAuthorizationResponse as mU, type GetAuthorizationData as mV, type GetAuthorizationErrors as mW, type GetAuthorizationError as mX, type GetAuthorizationResponses as mY, type GetAuthorizationResponse as mZ, type UpdateAuthorizationData as m_, type JobStateExactMatch as ma, type ProcessDefinitionKeyExactMatch as mb, type ProcessInstanceKeyExactMatch as mc, type ElementInstanceKeyExactMatch as md, type JobKeyExactMatch as me, type DecisionDefinitionKeyExactMatch as mf, type ScopeKeyExactMatch as mg, type VariableKeyExactMatch as mh, type DecisionEvaluationInstanceKeyExactMatch as mi, type AuditLogKeyExactMatch as mj, type FormKeyExactMatch as mk, type DecisionEvaluationKeyExactMatch as ml, type DecisionRequirementsKeyExactMatch as mm, type MessageSubscriptionStateExactMatch as mn, type MessageSubscriptionKeyExactMatch as mo, type ProcessInstanceStateExactMatch as mp, type UserTaskStateExactMatch as mq, type SearchAuditLogsData as mr, type SearchAuditLogsErrors as ms, type SearchAuditLogsError as mt, type SearchAuditLogsResponses as mu, type SearchAuditLogsResponse as mv, type GetAuditLogData as mw, type GetAuditLogErrors as mx, type GetAuditLogError as my, type GetAuditLogResponses as mz, type JobWorkerConfig as n, type SearchClusterVariablesData as n$, type UpdateAuthorizationError as n0, type UpdateAuthorizationResponses as n1, type UpdateAuthorizationResponse as n2, type SearchBatchOperationItemsData as n3, type SearchBatchOperationItemsErrors as n4, type SearchBatchOperationItemsError as n5, type SearchBatchOperationItemsResponses as n6, type SearchBatchOperationItemsResponse as n7, type SearchBatchOperationsData as n8, type SearchBatchOperationsErrors as n9, type PinClockResponses as nA, type PinClockResponse as nB, type ResetClockData as nC, type ResetClockErrors as nD, type ResetClockError as nE, type ResetClockResponses as nF, type ResetClockResponse as nG, type CreateGlobalClusterVariableData as nH, type CreateGlobalClusterVariableErrors as nI, type CreateGlobalClusterVariableError as nJ, type CreateGlobalClusterVariableResponses as nK, type CreateGlobalClusterVariableResponse as nL, type DeleteGlobalClusterVariableData as nM, type DeleteGlobalClusterVariableErrors as nN, type DeleteGlobalClusterVariableError as nO, type DeleteGlobalClusterVariableResponses as nP, type DeleteGlobalClusterVariableResponse as nQ, type GetGlobalClusterVariableData as nR, type GetGlobalClusterVariableErrors as nS, type GetGlobalClusterVariableError as nT, type GetGlobalClusterVariableResponses as nU, type GetGlobalClusterVariableResponse as nV, type UpdateGlobalClusterVariableData as nW, type UpdateGlobalClusterVariableErrors as nX, type UpdateGlobalClusterVariableError as nY, type UpdateGlobalClusterVariableResponses as nZ, type UpdateGlobalClusterVariableResponse as n_, type SearchBatchOperationsError as na, type SearchBatchOperationsResponses as nb, type SearchBatchOperationsResponse as nc, type GetBatchOperationData as nd, type GetBatchOperationErrors as ne, type GetBatchOperationError as nf, type GetBatchOperationResponses as ng, type GetBatchOperationResponse as nh, type CancelBatchOperationData as ni, type CancelBatchOperationErrors as nj, type CancelBatchOperationError as nk, type CancelBatchOperationResponses as nl, type CancelBatchOperationResponse as nm, type ResumeBatchOperationData as nn, type ResumeBatchOperationErrors as no, type ResumeBatchOperationError as np, type ResumeBatchOperationResponses as nq, type ResumeBatchOperationResponse as nr, type SuspendBatchOperationData as ns, type SuspendBatchOperationErrors as nt, type SuspendBatchOperationError as nu, type SuspendBatchOperationResponses as nv, type SuspendBatchOperationResponse as nw, type PinClockData as nx, type PinClockErrors as ny, type PinClockError as nz, type SupportLogger as o, type GetDecisionInstanceResponse as o$, type SearchClusterVariablesErrors as o0, type SearchClusterVariablesError as o1, type SearchClusterVariablesResponses as o2, type SearchClusterVariablesResponse as o3, type CreateTenantClusterVariableData as o4, type CreateTenantClusterVariableErrors as o5, type CreateTenantClusterVariableError as o6, type CreateTenantClusterVariableResponses as o7, type CreateTenantClusterVariableResponse as o8, type DeleteTenantClusterVariableData as o9, type EvaluateDecisionError as oA, type EvaluateDecisionResponses as oB, type EvaluateDecisionResponse as oC, type SearchDecisionDefinitionsData as oD, type SearchDecisionDefinitionsErrors as oE, type SearchDecisionDefinitionsError as oF, type SearchDecisionDefinitionsResponses as oG, type SearchDecisionDefinitionsResponse as oH, type GetDecisionDefinitionData as oI, type GetDecisionDefinitionErrors as oJ, type GetDecisionDefinitionError as oK, type GetDecisionDefinitionResponses as oL, type GetDecisionDefinitionResponse as oM, type GetDecisionDefinitionXmlData as oN, type GetDecisionDefinitionXmlErrors as oO, type GetDecisionDefinitionXmlError as oP, type GetDecisionDefinitionXmlResponses as oQ, type GetDecisionDefinitionXmlResponse as oR, type SearchDecisionInstancesData as oS, type SearchDecisionInstancesErrors as oT, type SearchDecisionInstancesError as oU, type SearchDecisionInstancesResponses as oV, type SearchDecisionInstancesResponse as oW, type GetDecisionInstanceData as oX, type GetDecisionInstanceErrors as oY, type GetDecisionInstanceError as oZ, type GetDecisionInstanceResponses as o_, type DeleteTenantClusterVariableErrors as oa, type DeleteTenantClusterVariableError as ob, type DeleteTenantClusterVariableResponses as oc, type DeleteTenantClusterVariableResponse as od, type GetTenantClusterVariableData as oe, type GetTenantClusterVariableErrors as of, type GetTenantClusterVariableError as og, type GetTenantClusterVariableResponses as oh, type GetTenantClusterVariableResponse as oi, type UpdateTenantClusterVariableData as oj, type UpdateTenantClusterVariableErrors as ok, type UpdateTenantClusterVariableError as ol, type UpdateTenantClusterVariableResponses as om, type UpdateTenantClusterVariableResponse as on, type EvaluateConditionalsData as oo, type EvaluateConditionalsErrors as op, type EvaluateConditionalsError as oq, type EvaluateConditionalsResponses as or, type EvaluateConditionalsResponse as os, type SearchCorrelatedMessageSubscriptionsData as ot, type SearchCorrelatedMessageSubscriptionsErrors as ou, type SearchCorrelatedMessageSubscriptionsError as ov, type SearchCorrelatedMessageSubscriptionsResponses as ow, type SearchCorrelatedMessageSubscriptionsResponse as ox, type EvaluateDecisionData as oy, type EvaluateDecisionErrors as oz, type ThreadedJob as p, type SearchElementInstancesResponses as p$, type DeleteDecisionInstanceData as p0, type DeleteDecisionInstanceErrors as p1, type DeleteDecisionInstanceError as p2, type DeleteDecisionInstanceResponses as p3, type DeleteDecisionInstanceResponse as p4, type DeleteDecisionInstancesBatchOperationData as p5, type DeleteDecisionInstancesBatchOperationErrors as p6, type DeleteDecisionInstancesBatchOperationError as p7, type DeleteDecisionInstancesBatchOperationResponses as p8, type DeleteDecisionInstancesBatchOperationResponse as p9, type CreateDocumentsErrors as pA, type CreateDocumentsError as pB, type CreateDocumentsResponses as pC, type CreateDocumentsResponse as pD, type DeleteDocumentData as pE, type DeleteDocumentErrors as pF, type DeleteDocumentError as pG, type DeleteDocumentResponses as pH, type DeleteDocumentResponse as pI, type GetDocumentData as pJ, type GetDocumentErrors as pK, type GetDocumentError as pL, type GetDocumentResponses as pM, type GetDocumentResponse as pN, type CreateDocumentLinkData as pO, type CreateDocumentLinkErrors as pP, type CreateDocumentLinkError as pQ, type CreateDocumentLinkResponses as pR, type CreateDocumentLinkResponse as pS, type ActivateAdHocSubProcessActivitiesData as pT, type ActivateAdHocSubProcessActivitiesErrors as pU, type ActivateAdHocSubProcessActivitiesError as pV, type ActivateAdHocSubProcessActivitiesResponses as pW, type ActivateAdHocSubProcessActivitiesResponse as pX, type SearchElementInstancesData as pY, type SearchElementInstancesErrors as pZ, type SearchElementInstancesError as p_, type SearchDecisionRequirementsData as pa, type SearchDecisionRequirementsErrors as pb, type SearchDecisionRequirementsError as pc, type SearchDecisionRequirementsResponses as pd, type SearchDecisionRequirementsResponse as pe, type GetDecisionRequirementsData as pf, type GetDecisionRequirementsErrors as pg, type GetDecisionRequirementsError as ph, type GetDecisionRequirementsResponses as pi, type GetDecisionRequirementsResponse as pj, type GetDecisionRequirementsXmlData as pk, type GetDecisionRequirementsXmlErrors as pl, type GetDecisionRequirementsXmlError as pm, type GetDecisionRequirementsXmlResponses as pn, type GetDecisionRequirementsXmlResponse as po, type CreateDeploymentData as pp, type CreateDeploymentErrors as pq, type CreateDeploymentError as pr, type CreateDeploymentResponses as ps, type CreateDeploymentResponse as pt, type CreateDocumentData as pu, type CreateDocumentErrors as pv, type CreateDocumentError as pw, type CreateDocumentResponses as px, type CreateDocumentResponse as py, type CreateDocumentsData as pz, type ThreadedJobHandler as q, type GetGroupError as q$, type SearchElementInstancesResponse as q0, type GetElementInstanceData as q1, type GetElementInstanceErrors as q2, type GetElementInstanceError as q3, type GetElementInstanceResponses as q4, type GetElementInstanceResponse as q5, type SearchElementInstanceIncidentsData as q6, type SearchElementInstanceIncidentsErrors as q7, type SearchElementInstanceIncidentsError as q8, type SearchElementInstanceIncidentsResponses as q9, type UpdateGlobalTaskListenerData as qA, type UpdateGlobalTaskListenerErrors as qB, type UpdateGlobalTaskListenerError as qC, type UpdateGlobalTaskListenerResponses as qD, type UpdateGlobalTaskListenerResponse as qE, type SearchGlobalTaskListenersData as qF, type SearchGlobalTaskListenersErrors as qG, type SearchGlobalTaskListenersError as qH, type SearchGlobalTaskListenersResponses as qI, type SearchGlobalTaskListenersResponse as qJ, type CreateGroupData as qK, type CreateGroupErrors as qL, type CreateGroupError as qM, type CreateGroupResponses as qN, type CreateGroupResponse as qO, type SearchGroupsData as qP, type SearchGroupsErrors as qQ, type SearchGroupsError as qR, type SearchGroupsResponses as qS, type SearchGroupsResponse as qT, type DeleteGroupData as qU, type DeleteGroupErrors as qV, type DeleteGroupError as qW, type DeleteGroupResponses as qX, type DeleteGroupResponse as qY, type GetGroupData as qZ, type GetGroupErrors as q_, type SearchElementInstanceIncidentsResponse as qa, type CreateElementInstanceVariablesData as qb, type CreateElementInstanceVariablesErrors as qc, type CreateElementInstanceVariablesError as qd, type CreateElementInstanceVariablesResponses as qe, type CreateElementInstanceVariablesResponse as qf, type EvaluateExpressionData as qg, type EvaluateExpressionErrors as qh, type EvaluateExpressionError as qi, type EvaluateExpressionResponses as qj, type EvaluateExpressionResponse as qk, type CreateGlobalTaskListenerData as ql, type CreateGlobalTaskListenerErrors as qm, type CreateGlobalTaskListenerError as qn, type CreateGlobalTaskListenerResponses as qo, type CreateGlobalTaskListenerResponse as qp, type DeleteGlobalTaskListenerData as qq, type DeleteGlobalTaskListenerErrors as qr, type DeleteGlobalTaskListenerError as qs, type DeleteGlobalTaskListenerResponses as qt, type DeleteGlobalTaskListenerResponse as qu, type GetGlobalTaskListenerData as qv, type GetGlobalTaskListenerErrors as qw, type GetGlobalTaskListenerError as qx, type GetGlobalTaskListenerResponses as qy, type GetGlobalTaskListenerResponse as qz, ThreadedJobWorker as r, type GetIncidentErrors as r$, type GetGroupResponses as r0, type GetGroupResponse as r1, type UpdateGroupData as r2, type UpdateGroupErrors as r3, type UpdateGroupError as r4, type UpdateGroupResponses as r5, type UpdateGroupResponse as r6, type SearchClientsForGroupData as r7, type SearchClientsForGroupErrors as r8, type SearchClientsForGroupError as r9, type AssignMappingRuleToGroupResponse as rA, type SearchRolesForGroupData as rB, type SearchRolesForGroupErrors as rC, type SearchRolesForGroupError as rD, type SearchRolesForGroupResponses as rE, type SearchRolesForGroupResponse as rF, type SearchUsersForGroupData as rG, type SearchUsersForGroupErrors as rH, type SearchUsersForGroupError as rI, type SearchUsersForGroupResponses as rJ, type SearchUsersForGroupResponse as rK, type UnassignUserFromGroupData as rL, type UnassignUserFromGroupErrors as rM, type UnassignUserFromGroupError as rN, type UnassignUserFromGroupResponses as rO, type UnassignUserFromGroupResponse as rP, type AssignUserToGroupData as rQ, type AssignUserToGroupErrors as rR, type AssignUserToGroupError as rS, type AssignUserToGroupResponses as rT, type AssignUserToGroupResponse as rU, type SearchIncidentsData as rV, type SearchIncidentsErrors as rW, type SearchIncidentsError as rX, type SearchIncidentsResponses as rY, type SearchIncidentsResponse as rZ, type GetIncidentData as r_, type SearchClientsForGroupResponses as ra, type SearchClientsForGroupResponse as rb, type UnassignClientFromGroupData as rc, type UnassignClientFromGroupErrors as rd, type UnassignClientFromGroupError as re, type UnassignClientFromGroupResponses as rf, type UnassignClientFromGroupResponse as rg, type AssignClientToGroupData as rh, type AssignClientToGroupErrors as ri, type AssignClientToGroupError as rj, type AssignClientToGroupResponses as rk, type AssignClientToGroupResponse as rl, type SearchMappingRulesForGroupData as rm, type SearchMappingRulesForGroupErrors as rn, type SearchMappingRulesForGroupError as ro, type SearchMappingRulesForGroupResponses as rp, type SearchMappingRulesForGroupResponse as rq, type UnassignMappingRuleFromGroupData as rr, type UnassignMappingRuleFromGroupErrors as rs, type UnassignMappingRuleFromGroupError as rt, type UnassignMappingRuleFromGroupResponses as ru, type UnassignMappingRuleFromGroupResponse as rv, type AssignMappingRuleToGroupData as rw, type AssignMappingRuleToGroupErrors as rx, type AssignMappingRuleToGroupError as ry, type AssignMappingRuleToGroupResponses as rz, type ThreadedJobWorkerConfig as s, type GetJobTimeSeriesStatisticsData as s$, type GetIncidentError as s0, type GetIncidentResponses as s1, type GetIncidentResponse as s2, type ResolveIncidentData as s3, type ResolveIncidentErrors as s4, type ResolveIncidentError as s5, type ResolveIncidentResponses as s6, type ResolveIncidentResponse as s7, type GetProcessInstanceStatisticsByDefinitionData as s8, type GetProcessInstanceStatisticsByDefinitionErrors as s9, type CompleteJobResponses as sA, type CompleteJobResponse as sB, type ThrowJobErrorData as sC, type ThrowJobErrorErrors as sD, type ThrowJobErrorError as sE, type ThrowJobErrorResponses as sF, type ThrowJobErrorResponse as sG, type FailJobData as sH, type FailJobErrors as sI, type FailJobError as sJ, type FailJobResponses as sK, type FailJobResponse as sL, type GetGlobalJobStatisticsData as sM, type GetGlobalJobStatisticsErrors as sN, type GetGlobalJobStatisticsError as sO, type GetGlobalJobStatisticsResponses as sP, type GetGlobalJobStatisticsResponse as sQ, type GetJobTypeStatisticsData as sR, type GetJobTypeStatisticsErrors as sS, type GetJobTypeStatisticsError as sT, type GetJobTypeStatisticsResponses as sU, type GetJobTypeStatisticsResponse as sV, type GetJobWorkerStatisticsData as sW, type GetJobWorkerStatisticsErrors as sX, type GetJobWorkerStatisticsError as sY, type GetJobWorkerStatisticsResponses as sZ, type GetJobWorkerStatisticsResponse as s_, type GetProcessInstanceStatisticsByDefinitionError as sa, type GetProcessInstanceStatisticsByDefinitionResponses as sb, type GetProcessInstanceStatisticsByDefinitionResponse as sc, type GetProcessInstanceStatisticsByErrorData as sd, type GetProcessInstanceStatisticsByErrorErrors as se, type GetProcessInstanceStatisticsByErrorError as sf, type GetProcessInstanceStatisticsByErrorResponses as sg, type GetProcessInstanceStatisticsByErrorResponse as sh, type ActivateJobsData as si, type ActivateJobsErrors as sj, type ActivateJobsError as sk, type ActivateJobsResponses as sl, type ActivateJobsResponse as sm, type SearchJobsData as sn, type SearchJobsErrors as so, type SearchJobsError as sp, type SearchJobsResponses as sq, type SearchJobsResponse as sr, type UpdateJobData as ss, type UpdateJobErrors as st, type UpdateJobError as su, type UpdateJobResponses as sv, type UpdateJobResponse as sw, type CompleteJobData as sx, type CompleteJobErrors as sy, type CompleteJobError as sz, ThreadPool as t, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as t$, type GetJobTimeSeriesStatisticsErrors as t0, type GetJobTimeSeriesStatisticsError as t1, type GetJobTimeSeriesStatisticsResponses as t2, type GetJobTimeSeriesStatisticsResponse as t3, type GetJobErrorStatisticsData as t4, type GetJobErrorStatisticsErrors as t5, type GetJobErrorStatisticsError as t6, type GetJobErrorStatisticsResponses as t7, type GetJobErrorStatisticsResponse as t8, type GetLicenseData as t9, type UpdateMappingRuleError as tA, type UpdateMappingRuleResponses as tB, type UpdateMappingRuleResponse as tC, type SearchMessageSubscriptionsData as tD, type SearchMessageSubscriptionsErrors as tE, type SearchMessageSubscriptionsError as tF, type SearchMessageSubscriptionsResponses as tG, type SearchMessageSubscriptionsResponse as tH, type CorrelateMessageData as tI, type CorrelateMessageErrors as tJ, type CorrelateMessageError as tK, type CorrelateMessageResponses as tL, type CorrelateMessageResponse as tM, type PublishMessageData as tN, type PublishMessageErrors as tO, type PublishMessageError as tP, type PublishMessageResponses as tQ, type PublishMessageResponse as tR, type SearchProcessDefinitionsData as tS, type SearchProcessDefinitionsErrors as tT, type SearchProcessDefinitionsError as tU, type SearchProcessDefinitionsResponses as tV, type SearchProcessDefinitionsResponse as tW, type GetProcessDefinitionMessageSubscriptionStatisticsData as tX, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as tY, type GetProcessDefinitionMessageSubscriptionStatisticsError as tZ, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as t_, type GetLicenseErrors as ta, type GetLicenseError as tb, type GetLicenseResponses as tc, type GetLicenseResponse as td, type CreateMappingRuleData as te, type CreateMappingRuleErrors as tf, type CreateMappingRuleError as tg, type CreateMappingRuleResponses as th, type CreateMappingRuleResponse as ti, type SearchMappingRuleData as tj, type SearchMappingRuleErrors as tk, type SearchMappingRuleError as tl, type SearchMappingRuleResponses as tm, type SearchMappingRuleResponse as tn, type DeleteMappingRuleData as to, type DeleteMappingRuleErrors as tp, type DeleteMappingRuleError as tq, type DeleteMappingRuleResponses as tr, type DeleteMappingRuleResponse as ts, type GetMappingRuleData as tt, type GetMappingRuleErrors as tu, type GetMappingRuleError as tv, type GetMappingRuleResponses as tw, type GetMappingRuleResponse as tx, type UpdateMappingRuleData as ty, type UpdateMappingRuleErrors as tz, type CamundaConfig as u, type SearchProcessInstancesResponses as u$, type GetProcessDefinitionInstanceStatisticsData as u0, type GetProcessDefinitionInstanceStatisticsErrors as u1, type GetProcessDefinitionInstanceStatisticsError as u2, type GetProcessDefinitionInstanceStatisticsResponses as u3, type GetProcessDefinitionInstanceStatisticsResponse as u4, type GetProcessDefinitionData as u5, type GetProcessDefinitionErrors as u6, type GetProcessDefinitionError as u7, type GetProcessDefinitionResponses as u8, type GetProcessDefinitionResponse as u9, type CancelProcessInstancesBatchOperationErrors as uA, type CancelProcessInstancesBatchOperationError as uB, type CancelProcessInstancesBatchOperationResponses as uC, type CancelProcessInstancesBatchOperationResponse as uD, type DeleteProcessInstancesBatchOperationData as uE, type DeleteProcessInstancesBatchOperationErrors as uF, type DeleteProcessInstancesBatchOperationError as uG, type DeleteProcessInstancesBatchOperationResponses as uH, type DeleteProcessInstancesBatchOperationResponse as uI, type ResolveIncidentsBatchOperationData as uJ, type ResolveIncidentsBatchOperationErrors as uK, type ResolveIncidentsBatchOperationError as uL, type ResolveIncidentsBatchOperationResponses as uM, type ResolveIncidentsBatchOperationResponse as uN, type MigrateProcessInstancesBatchOperationData as uO, type MigrateProcessInstancesBatchOperationErrors as uP, type MigrateProcessInstancesBatchOperationError as uQ, type MigrateProcessInstancesBatchOperationResponses as uR, type MigrateProcessInstancesBatchOperationResponse as uS, type ModifyProcessInstancesBatchOperationData as uT, type ModifyProcessInstancesBatchOperationErrors as uU, type ModifyProcessInstancesBatchOperationError as uV, type ModifyProcessInstancesBatchOperationResponses as uW, type ModifyProcessInstancesBatchOperationResponse as uX, type SearchProcessInstancesData as uY, type SearchProcessInstancesErrors as uZ, type SearchProcessInstancesError as u_, type GetStartProcessFormData as ua, type GetStartProcessFormErrors as ub, type GetStartProcessFormError as uc, type GetStartProcessFormResponses as ud, type GetStartProcessFormResponse as ue, type GetProcessDefinitionStatisticsData as uf, type GetProcessDefinitionStatisticsErrors as ug, type GetProcessDefinitionStatisticsError as uh, type GetProcessDefinitionStatisticsResponses as ui, type GetProcessDefinitionStatisticsResponse as uj, type GetProcessDefinitionXmlData as uk, type GetProcessDefinitionXmlErrors as ul, type GetProcessDefinitionXmlError as um, type GetProcessDefinitionXmlResponses as un, type GetProcessDefinitionXmlResponse as uo, type GetProcessDefinitionInstanceVersionStatisticsData as up, type GetProcessDefinitionInstanceVersionStatisticsErrors as uq, type GetProcessDefinitionInstanceVersionStatisticsError as ur, type GetProcessDefinitionInstanceVersionStatisticsResponses as us, type GetProcessDefinitionInstanceVersionStatisticsResponse as ut, type CreateProcessInstanceData as uu, type CreateProcessInstanceErrors as uv, type CreateProcessInstanceError as uw, type CreateProcessInstanceResponses as ux, type CreateProcessInstanceResponse as uy, type CancelProcessInstancesBatchOperationData as uz, type activateAdHocSubProcessActivitiesInput as v, type DeleteResourceError as v$, type SearchProcessInstancesResponse as v0, type GetProcessInstanceData as v1, type GetProcessInstanceErrors as v2, type GetProcessInstanceError as v3, type GetProcessInstanceResponses as v4, type GetProcessInstanceResponse as v5, type GetProcessInstanceCallHierarchyData as v6, type GetProcessInstanceCallHierarchyErrors as v7, type GetProcessInstanceCallHierarchyError as v8, type GetProcessInstanceCallHierarchyResponses as v9, type ModifyProcessInstanceData as vA, type ModifyProcessInstanceErrors as vB, type ModifyProcessInstanceError as vC, type ModifyProcessInstanceResponses as vD, type ModifyProcessInstanceResponse as vE, type GetProcessInstanceSequenceFlowsData as vF, type GetProcessInstanceSequenceFlowsErrors as vG, type GetProcessInstanceSequenceFlowsError as vH, type GetProcessInstanceSequenceFlowsResponses as vI, type GetProcessInstanceSequenceFlowsResponse as vJ, type GetProcessInstanceStatisticsData as vK, type GetProcessInstanceStatisticsErrors as vL, type GetProcessInstanceStatisticsError as vM, type GetProcessInstanceStatisticsResponses as vN, type GetProcessInstanceStatisticsResponse as vO, type GetResourceData as vP, type GetResourceErrors as vQ, type GetResourceError as vR, type GetResourceResponses as vS, type GetResourceResponse as vT, type GetResourceContentData as vU, type GetResourceContentErrors as vV, type GetResourceContentError as vW, type GetResourceContentResponses as vX, type GetResourceContentResponse as vY, type DeleteResourceData as vZ, type DeleteResourceErrors as v_, type GetProcessInstanceCallHierarchyResponse as va, type CancelProcessInstanceData as vb, type CancelProcessInstanceErrors as vc, type CancelProcessInstanceError as vd, type CancelProcessInstanceResponses as ve, type CancelProcessInstanceResponse as vf, type DeleteProcessInstanceData as vg, type DeleteProcessInstanceErrors as vh, type DeleteProcessInstanceError as vi, type DeleteProcessInstanceResponses as vj, type DeleteProcessInstanceResponse as vk, type ResolveProcessInstanceIncidentsData as vl, type ResolveProcessInstanceIncidentsErrors as vm, type ResolveProcessInstanceIncidentsError as vn, type ResolveProcessInstanceIncidentsResponses as vo, type ResolveProcessInstanceIncidentsResponse as vp, type SearchProcessInstanceIncidentsData as vq, type SearchProcessInstanceIncidentsErrors as vr, type SearchProcessInstanceIncidentsError as vs, type SearchProcessInstanceIncidentsResponses as vt, type SearchProcessInstanceIncidentsResponse as vu, type MigrateProcessInstanceData as vv, type MigrateProcessInstanceErrors as vw, type MigrateProcessInstanceError as vx, type MigrateProcessInstanceResponses as vy, type MigrateProcessInstanceResponse as vz, type activateJobsInput as w, type UnassignRoleFromMappingRuleErrors as w$, type DeleteResourceResponses as w0, type DeleteResourceResponse2 as w1, type CreateRoleData as w2, type CreateRoleErrors as w3, type CreateRoleError as w4, type CreateRoleResponses as w5, type CreateRoleResponse as w6, type SearchRolesData as w7, type SearchRolesErrors as w8, type SearchRolesError as w9, type UnassignRoleFromClientResponse as wA, type AssignRoleToClientData as wB, type AssignRoleToClientErrors as wC, type AssignRoleToClientError as wD, type AssignRoleToClientResponses as wE, type AssignRoleToClientResponse as wF, type SearchGroupsForRoleData as wG, type SearchGroupsForRoleErrors as wH, type SearchGroupsForRoleError as wI, type SearchGroupsForRoleResponses as wJ, type SearchGroupsForRoleResponse as wK, type UnassignRoleFromGroupData as wL, type UnassignRoleFromGroupErrors as wM, type UnassignRoleFromGroupError as wN, type UnassignRoleFromGroupResponses as wO, type UnassignRoleFromGroupResponse as wP, type AssignRoleToGroupData as wQ, type AssignRoleToGroupErrors as wR, type AssignRoleToGroupError as wS, type AssignRoleToGroupResponses as wT, type AssignRoleToGroupResponse as wU, type SearchMappingRulesForRoleData as wV, type SearchMappingRulesForRoleErrors as wW, type SearchMappingRulesForRoleError as wX, type SearchMappingRulesForRoleResponses as wY, type SearchMappingRulesForRoleResponse as wZ, type UnassignRoleFromMappingRuleData as w_, type SearchRolesResponses as wa, type SearchRolesResponse as wb, type DeleteRoleData as wc, type DeleteRoleErrors as wd, type DeleteRoleError as we, type DeleteRoleResponses as wf, type DeleteRoleResponse as wg, type GetRoleData as wh, type GetRoleErrors as wi, type GetRoleError as wj, type GetRoleResponses as wk, type GetRoleResponse as wl, type UpdateRoleData as wm, type UpdateRoleErrors as wn, type UpdateRoleError as wo, type UpdateRoleResponses as wp, type UpdateRoleResponse as wq, type SearchClientsForRoleData as wr, type SearchClientsForRoleErrors as ws, type SearchClientsForRoleError as wt, type SearchClientsForRoleResponses as wu, type SearchClientsForRoleResponse as wv, type UnassignRoleFromClientData as ww, type UnassignRoleFromClientErrors as wx, type UnassignRoleFromClientError as wy, type UnassignRoleFromClientResponses as wz, type assignClientToGroupInput as x, type GetTenantErrors as x$, type UnassignRoleFromMappingRuleError as x0, type UnassignRoleFromMappingRuleResponses as x1, type UnassignRoleFromMappingRuleResponse as x2, type AssignRoleToMappingRuleData as x3, type AssignRoleToMappingRuleErrors as x4, type AssignRoleToMappingRuleError as x5, type AssignRoleToMappingRuleResponses as x6, type AssignRoleToMappingRuleResponse as x7, type SearchUsersForRoleData as x8, type SearchUsersForRoleErrors as x9, type GetStatusResponse as xA, type GetUsageMetricsData as xB, type GetUsageMetricsErrors as xC, type GetUsageMetricsError as xD, type GetUsageMetricsResponses as xE, type GetUsageMetricsResponse as xF, type GetSystemConfigurationData as xG, type GetSystemConfigurationErrors as xH, type GetSystemConfigurationError as xI, type GetSystemConfigurationResponses as xJ, type GetSystemConfigurationResponse as xK, type CreateTenantData as xL, type CreateTenantErrors as xM, type CreateTenantError as xN, type CreateTenantResponses as xO, type CreateTenantResponse as xP, type SearchTenantsData as xQ, type SearchTenantsErrors as xR, type SearchTenantsError as xS, type SearchTenantsResponses as xT, type SearchTenantsResponse as xU, type DeleteTenantData as xV, type DeleteTenantErrors as xW, type DeleteTenantError as xX, type DeleteTenantResponses as xY, type DeleteTenantResponse as xZ, type GetTenantData as x_, type SearchUsersForRoleError as xa, type SearchUsersForRoleResponses as xb, type SearchUsersForRoleResponse as xc, type UnassignRoleFromUserData as xd, type UnassignRoleFromUserErrors as xe, type UnassignRoleFromUserError as xf, type UnassignRoleFromUserResponses as xg, type UnassignRoleFromUserResponse as xh, type AssignRoleToUserData as xi, type AssignRoleToUserErrors as xj, type AssignRoleToUserError as xk, type AssignRoleToUserResponses as xl, type AssignRoleToUserResponse as xm, type CreateAdminUserData as xn, type CreateAdminUserErrors as xo, type CreateAdminUserError as xp, type CreateAdminUserResponses as xq, type CreateAdminUserResponse as xr, type BroadcastSignalData as xs, type BroadcastSignalErrors as xt, type BroadcastSignalError as xu, type BroadcastSignalResponses as xv, type BroadcastSignalResponse as xw, type GetStatusData as xx, type GetStatusErrors as xy, type GetStatusResponses as xz, type assignClientToTenantInput as y, type UnassignUserFromTenantData as y$, type GetTenantError as y0, type GetTenantResponses as y1, type GetTenantResponse as y2, type UpdateTenantData as y3, type UpdateTenantErrors as y4, type UpdateTenantError as y5, type UpdateTenantResponses as y6, type UpdateTenantResponse as y7, type SearchClientsForTenantData as y8, type SearchClientsForTenantResponses as y9, type SearchMappingRulesForTenantResponse as yA, type UnassignMappingRuleFromTenantData as yB, type UnassignMappingRuleFromTenantErrors as yC, type UnassignMappingRuleFromTenantError as yD, type UnassignMappingRuleFromTenantResponses as yE, type UnassignMappingRuleFromTenantResponse as yF, type AssignMappingRuleToTenantData as yG, type AssignMappingRuleToTenantErrors as yH, type AssignMappingRuleToTenantError as yI, type AssignMappingRuleToTenantResponses as yJ, type AssignMappingRuleToTenantResponse as yK, type SearchRolesForTenantData as yL, type SearchRolesForTenantResponses as yM, type SearchRolesForTenantResponse as yN, type UnassignRoleFromTenantData as yO, type UnassignRoleFromTenantErrors as yP, type UnassignRoleFromTenantError as yQ, type UnassignRoleFromTenantResponses as yR, type UnassignRoleFromTenantResponse as yS, type AssignRoleToTenantData as yT, type AssignRoleToTenantErrors as yU, type AssignRoleToTenantError as yV, type AssignRoleToTenantResponses as yW, type AssignRoleToTenantResponse as yX, type SearchUsersForTenantData as yY, type SearchUsersForTenantResponses as yZ, type SearchUsersForTenantResponse as y_, type SearchClientsForTenantResponse as ya, type UnassignClientFromTenantData as yb, type UnassignClientFromTenantErrors as yc, type UnassignClientFromTenantError as yd, type UnassignClientFromTenantResponses as ye, type UnassignClientFromTenantResponse as yf, type AssignClientToTenantData as yg, type AssignClientToTenantErrors as yh, type AssignClientToTenantError as yi, type AssignClientToTenantResponses as yj, type AssignClientToTenantResponse as yk, type SearchGroupIdsForTenantData as yl, type SearchGroupIdsForTenantResponses as ym, type SearchGroupIdsForTenantResponse as yn, type UnassignGroupFromTenantData as yo, type UnassignGroupFromTenantErrors as yp, type UnassignGroupFromTenantError as yq, type UnassignGroupFromTenantResponses as yr, type UnassignGroupFromTenantResponse as ys, type AssignGroupToTenantData as yt, type AssignGroupToTenantErrors as yu, type AssignGroupToTenantError as yv, type AssignGroupToTenantResponses as yw, type AssignGroupToTenantResponse as yx, type SearchMappingRulesForTenantData as yy, type SearchMappingRulesForTenantResponses as yz, type assignGroupToTenantInput as z, type AssignUserTaskResponse as z$, type UnassignUserFromTenantErrors as z0, type UnassignUserFromTenantError as z1, type UnassignUserFromTenantResponses as z2, type UnassignUserFromTenantResponse as z3, type AssignUserToTenantData as z4, type AssignUserToTenantErrors as z5, type AssignUserToTenantError as z6, type AssignUserToTenantResponses as z7, type AssignUserToTenantResponse as z8, type GetTopologyData as z9, type UpdateUserError as zA, type UpdateUserResponses as zB, type UpdateUserResponse as zC, type SearchUserTasksData as zD, type SearchUserTasksErrors as zE, type SearchUserTasksError as zF, type SearchUserTasksResponses as zG, type SearchUserTasksResponse as zH, type GetUserTaskData as zI, type GetUserTaskErrors as zJ, type GetUserTaskError as zK, type GetUserTaskResponses as zL, type GetUserTaskResponse as zM, type UpdateUserTaskData as zN, type UpdateUserTaskErrors as zO, type UpdateUserTaskError as zP, type UpdateUserTaskResponses as zQ, type UpdateUserTaskResponse as zR, type UnassignUserTaskData as zS, type UnassignUserTaskErrors as zT, type UnassignUserTaskError as zU, type UnassignUserTaskResponses as zV, type UnassignUserTaskResponse as zW, type AssignUserTaskData as zX, type AssignUserTaskErrors as zY, type AssignUserTaskError as zZ, type AssignUserTaskResponses as z_, type GetTopologyErrors as za, type GetTopologyError as zb, type GetTopologyResponses as zc, type GetTopologyResponse as zd, type CreateUserData as ze, type CreateUserErrors as zf, type CreateUserError as zg, type CreateUserResponses as zh, type CreateUserResponse as zi, type SearchUsersData as zj, type SearchUsersErrors as zk, type SearchUsersError as zl, type SearchUsersResponses as zm, type SearchUsersResponse as zn, type DeleteUserData as zo, type DeleteUserErrors as zp, type DeleteUserError as zq, type DeleteUserResponses as zr, type DeleteUserResponse as zs, type GetUserData as zt, type GetUserErrors as zu, type GetUserError as zv, type GetUserResponses as zw, type GetUserResponse as zx, type UpdateUserData as zy, type UpdateUserErrors as zz };
|