@camunda8/orchestration-cluster-api 10.0.0-alpha.12 → 10.0.0-alpha.13

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