@camunda8/orchestration-cluster-api 10.0.0-alpha.41 → 10.0.0-alpha.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [10.0.0-alpha.42](https://github.com/camunda/orchestration-cluster-api-js/compare/v10.0.0-alpha.41...v10.0.0-alpha.42) (2026-08-27)
2
+
3
+
4
+ ### Features
5
+
6
+ * add createTestClock and a Clock contract conformance suite ([#479](https://github.com/camunda/orchestration-cluster-api-js/issues/479)) ([5beea42](https://github.com/camunda/orchestration-cluster-api-js/commit/5beea4241d27b01194960bda3555874ec0258bef)), closes [#477](https://github.com/camunda/orchestration-cluster-api-js/issues/477) [#476](https://github.com/camunda/orchestration-cluster-api-js/issues/476) [#451](https://github.com/camunda/orchestration-cluster-api-js/issues/451) [#476](https://github.com/camunda/orchestration-cluster-api-js/issues/476) [#474](https://github.com/camunda/orchestration-cluster-api-js/issues/474)
7
+
1
8
  # [10.0.0-alpha.41](https://github.com/camunda/orchestration-cluster-api-js/compare/v10.0.0-alpha.40...v10.0.0-alpha.41) (2026-08-27)
2
9
 
3
10
 
@@ -80,6 +80,38 @@ type HandlerClock = Pick<Clock, 'now' | 'sleep'>;
80
80
  declare function createLiveClock(source?: () => number): Clock;
81
81
  /** The clock used when none is injected. */
82
82
  declare const liveClock: Clock;
83
+ /**
84
+ * A `Clock` whose time only moves when the test says so, plus the counters a test needs to
85
+ * assert on. Everything beyond `Clock` is inspection or control, never behaviour the SDK
86
+ * depends on.
87
+ */
88
+ interface TestClock extends Clock {
89
+ /** Move time forward by `ms`, settling every sleep that comes due, then drain the queue. */
90
+ advance(ms: number): Promise<void>;
91
+ /** Durations passed to `sleep`, in call order. */
92
+ readonly sleeps: readonly number[];
93
+ /** How many times `now` has been read. */
94
+ readonly nowCalls: number;
95
+ /** Sleeps still waiting for time to advance. */
96
+ readonly pending: number;
97
+ }
98
+ /**
99
+ * A deterministic clock for tests: virtual time, so poll loops and backoff settle without
100
+ * burning real time.
101
+ *
102
+ * Exists so nobody hand-rolls one. Every ad-hoc clock this replaced got some clause of the
103
+ * contract wrong — most often settling `sleep` in a microtask, which spins any caller that
104
+ * reschedules itself on resolution. See #478.
105
+ *
106
+ * With `autoAdvance` (the default) a sleep settles itself on the next macrotask, having
107
+ * moved time to its wake point; the SDK's loops make progress without the test driving
108
+ * them. Set it to `false` to hold every sleep until `advance()` releases it, which is what
109
+ * you want when asserting on the state *between* two waits.
110
+ */
111
+ declare function createTestClock(options?: {
112
+ start?: number;
113
+ autoAdvance?: boolean;
114
+ }): TestClock;
83
115
 
84
116
  /** Manages eventual consistency for a given operation */
85
117
  interface ConsistencyOptions<T> {
@@ -34677,4 +34709,4 @@ declare const CamundaClient: {
34677
34709
  new (options?: CamundaOptions): CamundaClient;
34678
34710
  } & typeof CamundaClientBase;
34679
34711
 
34680
- export { type AdvancedIncidentErrorTypeFilter as $, type ActivatedJobResult$1 as A, type SourceElementIdInstruction as A$, type SearchRolesResponse as A0, type SearchRolesResponses as A1, type SearchTenantsData as A2, type SearchTenantsError as A3, type SearchTenantsErrors as A4, type SearchTenantsResponse as A5, type SearchTenantsResponses as A6, type SearchUserTaskAuditLogsData as A7, type SearchUserTaskAuditLogsError as A8, type SearchUserTaskAuditLogsErrors as A9, type SearchUsersForRoleError as AA, type SearchUsersForRoleErrors as AB, type SearchUsersForRoleResponse as AC, type SearchUsersForRoleResponses as AD, type SearchUsersForTenantData as AE, type SearchUsersForTenantResponse as AF, type SearchUsersForTenantResponses as AG, type SearchUsersResponse as AH, type SearchUsersResponses as AI, type SearchVariablesData as AJ, type SearchVariablesError as AK, type SearchVariablesErrors as AL, type SearchVariablesResponse as AM, type SearchVariablesResponses as AN, type SecretErrorCode as AO, type SecretListRequest as AP, type SecretListResult as AQ, type SecretResolutionError as AR, type SecretResolveRequest as AS, type SecretResolveResult as AT, type SetVariableRequest as AU, type SignalBroadcastRequest as AV, type SignalBroadcastResult as AW, SignalKey as AX, type SignalKeyWritable as AY, type SignalWaitStateDetails as AZ, SortOrderEnum as A_, type SearchUserTaskAuditLogsResponse as Aa, type SearchUserTaskAuditLogsResponses as Ab, type SearchUserTaskEffectiveVariablesData as Ac, type SearchUserTaskEffectiveVariablesError as Ad, type SearchUserTaskEffectiveVariablesErrors as Ae, type SearchUserTaskEffectiveVariablesResponse as Af, type SearchUserTaskEffectiveVariablesResponses as Ag, type SearchUserTaskVariablesData as Ah, type SearchUserTaskVariablesError as Ai, type SearchUserTaskVariablesErrors as Aj, type SearchUserTaskVariablesResponse as Ak, type SearchUserTaskVariablesResponses as Al, type SearchUserTasksData as Am, type SearchUserTasksError as An, type SearchUserTasksErrors as Ao, type SearchUserTasksResponse as Ap, type SearchUserTasksResponses as Aq, type SearchUsersData as Ar, type SearchUsersError as As, type SearchUsersErrors as At, type SearchUsersForGroupData as Au, type SearchUsersForGroupError as Av, type SearchUsersForGroupErrors as Aw, type SearchUsersForGroupResponse as Ax, type SearchUsersForGroupResponses as Ay, type SearchUsersForRoleData as Az, type AdvancedAuditLogEntityKeyFilter as B, type TenantClientSearchQueryRequest as B$, type SourceElementInstanceKeyInstruction as B0, type SourceElementInstruction as B1, StartCursor as B2, type StateCode as B3, type StatusMetric as B4, type StringFilterProperty as B5, type SupportLogger as B6, type SuspendBatchOperationData as B7, type SuspendBatchOperationError as B8, type SuspendBatchOperationErrors as B9, type TagSetWritable as BA, type TakeHistoryBackupAsClusterAdminData as BB, type TakeHistoryBackupAsClusterAdminError as BC, type TakeHistoryBackupAsClusterAdminErrors as BD, type TakeHistoryBackupAsClusterAdminResponse as BE, type TakeHistoryBackupAsClusterAdminResponses as BF, type TakeHistoryBackupData as BG, type TakeHistoryBackupError as BH, type TakeHistoryBackupErrors as BI, type TakeHistoryBackupRequest as BJ, type TakeHistoryBackupResponse as BK, type TakeHistoryBackupResponse2 as BL, type TakeHistoryBackupResponses as BM, type TakeRuntimeBackupAsClusterAdminData as BN, type TakeRuntimeBackupAsClusterAdminError as BO, type TakeRuntimeBackupAsClusterAdminErrors as BP, type TakeRuntimeBackupAsClusterAdminResponse as BQ, type TakeRuntimeBackupAsClusterAdminResponses as BR, type TakeRuntimeBackupData as BS, type TakeRuntimeBackupError as BT, type TakeRuntimeBackupErrors as BU, type TakeRuntimeBackupRequest as BV, type TakeRuntimeBackupResponse as BW, type TakeRuntimeBackupResponse2 as BX, type TakeRuntimeBackupResponses as BY, type TelemetryHooks as BZ, type TenantClientResult as B_, type SuspendBatchOperationResponse as Ba, type SuspendBatchOperationResponses as Bb, type SuspendProcessInstanceData as Bc, type SuspendProcessInstanceError as Bd, type SuspendProcessInstanceErrors as Be, type SuspendProcessInstanceRequest as Bf, type SuspendProcessInstanceResponse as Bg, type SuspendProcessInstanceResponses as Bh, type SuspendProcessInstancesBatchOperationData as Bi, type SuspendProcessInstancesBatchOperationError as Bj, type SuspendProcessInstancesBatchOperationErrors as Bk, type SuspendProcessInstancesBatchOperationResponse as Bl, type SuspendProcessInstancesBatchOperationResponses as Bm, type SyncRuntimeBackupStateAsClusterAdminData as Bn, type SyncRuntimeBackupStateAsClusterAdminError as Bo, type SyncRuntimeBackupStateAsClusterAdminErrors as Bp, type SyncRuntimeBackupStateAsClusterAdminResponse as Bq, type SyncRuntimeBackupStateAsClusterAdminResponses as Br, type SyncRuntimeBackupStateData as Bs, type SyncRuntimeBackupStateError as Bt, type SyncRuntimeBackupStateErrors as Bu, type SyncRuntimeBackupStateResponse as Bv, type SyncRuntimeBackupStateResponses as Bw, type SystemConfigurationResponse as Bx, Tag as By, type TagSet as Bz, type ConsistencyOptions as C, type UnassignMappingRuleFromTenantData as C$, type TenantClientSearchQuerySortRequest as C0, type TenantClientSearchResult as C1, type TenantCreateRequest as C2, type TenantCreateResult as C3, type TenantFilter as C4, TenantFilterEnum as C5, type TenantGroupResult as C6, type TenantGroupSearchQueryRequest as C7, type TenantGroupSearchQuerySortRequest as C8, type TenantGroupSearchResult as C9, type TriggerClusterRebalanceError as CA, type TriggerClusterRebalanceErrors as CB, type TriggerClusterRebalanceResponse as CC, type TriggerClusterRebalanceResponses as CD, type TypedVariableItem as CE, type TypedVariablePage as CF, TypedVariablesError as CG, type UnassignClientFromGroupData as CH, type UnassignClientFromGroupError as CI, type UnassignClientFromGroupErrors as CJ, type UnassignClientFromGroupResponse as CK, type UnassignClientFromGroupResponses as CL, type UnassignClientFromTenantData as CM, type UnassignClientFromTenantError as CN, type UnassignClientFromTenantErrors as CO, type UnassignClientFromTenantResponse as CP, type UnassignClientFromTenantResponses as CQ, type UnassignGroupFromTenantData as CR, type UnassignGroupFromTenantError as CS, type UnassignGroupFromTenantErrors as CT, type UnassignGroupFromTenantResponse as CU, type UnassignGroupFromTenantResponses as CV, type UnassignMappingRuleFromGroupData as CW, type UnassignMappingRuleFromGroupError as CX, type UnassignMappingRuleFromGroupErrors as CY, type UnassignMappingRuleFromGroupResponse as CZ, type UnassignMappingRuleFromGroupResponses as C_, TenantId as Ca, type TenantMappingRuleSearchResult as Cb, type TenantResult as Cc, type TenantRoleSearchResult as Cd, type TenantSearchQueryRequest as Ce, type TenantSearchQueryResult as Cf, type TenantSearchQuerySortRequest as Cg, type TenantUpdateRequest as Ch, type TenantUpdateResult as Ci, type TenantUserResult as Cj, type TenantUserSearchQueryRequest as Ck, type TenantUserSearchQuerySortRequest as Cl, type TenantUserSearchResult as Cm, ThreadPool as Cn, type ThreadedJob as Co, type ThreadedJobHandler as Cp, ThreadedJobWorker as Cq, type ThreadedJobWorkerConfig as Cr, type ThrowJobErrorData as Cs, type ThrowJobErrorError as Ct, type ThrowJobErrorErrors as Cu, type ThrowJobErrorResponse as Cv, type ThrowJobErrorResponses as Cw, type TimerWaitStateDetails as Cx, type TopologyResponse as Cy, type TriggerClusterRebalanceData as Cz, type AdvancedAuditLogKeyFilter as D, type UpdateGlobalTaskListenerRequest as D$, type UnassignMappingRuleFromTenantError as D0, type UnassignMappingRuleFromTenantErrors as D1, type UnassignMappingRuleFromTenantResponse as D2, type UnassignMappingRuleFromTenantResponses as D3, type UnassignRoleFromClientData as D4, type UnassignRoleFromClientError as D5, type UnassignRoleFromClientErrors as D6, type UnassignRoleFromClientResponse as D7, type UnassignRoleFromClientResponses as D8, type UnassignRoleFromGroupData as D9, type UnassignUserFromTenantErrors as DA, type UnassignUserFromTenantResponse as DB, type UnassignUserFromTenantResponses as DC, type UnassignUserTaskData as DD, type UnassignUserTaskError as DE, type UnassignUserTaskErrors as DF, type UnassignUserTaskResponse as DG, type UnassignUserTaskResponses as DH, type UpdateAgentInstanceData as DI, type UpdateAgentInstanceError as DJ, type UpdateAgentInstanceErrors as DK, type UpdateAgentInstanceResponse as DL, type UpdateAgentInstanceResponses as DM, type UpdateAuthorizationData as DN, type UpdateAuthorizationError as DO, type UpdateAuthorizationErrors as DP, type UpdateAuthorizationResponse as DQ, type UpdateAuthorizationResponses as DR, type UpdateClusterVariableRequest as DS, type UpdateGlobalClusterVariableData as DT, type UpdateGlobalClusterVariableError as DU, type UpdateGlobalClusterVariableErrors as DV, type UpdateGlobalClusterVariableResponse as DW, type UpdateGlobalClusterVariableResponses as DX, type UpdateGlobalTaskListenerData as DY, type UpdateGlobalTaskListenerError as DZ, type UpdateGlobalTaskListenerErrors as D_, type UnassignRoleFromGroupError as Da, type UnassignRoleFromGroupErrors as Db, type UnassignRoleFromGroupResponse as Dc, type UnassignRoleFromGroupResponses as Dd, type UnassignRoleFromMappingRuleData as De, type UnassignRoleFromMappingRuleError as Df, type UnassignRoleFromMappingRuleErrors as Dg, type UnassignRoleFromMappingRuleResponse as Dh, type UnassignRoleFromMappingRuleResponses as Di, type UnassignRoleFromTenantData as Dj, type UnassignRoleFromTenantError as Dk, type UnassignRoleFromTenantErrors as Dl, type UnassignRoleFromTenantResponse as Dm, type UnassignRoleFromTenantResponses as Dn, type UnassignRoleFromUserData as Do, type UnassignRoleFromUserError as Dp, type UnassignRoleFromUserErrors as Dq, type UnassignRoleFromUserResponse as Dr, type UnassignRoleFromUserResponses as Ds, type UnassignUserFromGroupData as Dt, type UnassignUserFromGroupError as Du, type UnassignUserFromGroupErrors as Dv, type UnassignUserFromGroupResponse as Dw, type UnassignUserFromGroupResponses as Dx, type UnassignUserFromTenantData as Dy, type UnassignUserFromTenantError as Dz, type AdvancedBatchOperationItemStateFilter as E, type UserTaskFilterFields as E$, type UpdateGlobalTaskListenerResponse as E0, type UpdateGlobalTaskListenerResponses as E1, type UpdateGroupData as E2, type UpdateGroupError as E3, type UpdateGroupErrors as E4, type UpdateGroupResponse as E5, type UpdateGroupResponses as E6, type UpdateJobData as E7, type UpdateJobError as E8, type UpdateJobErrors as E9, type UpdateTenantResponses as EA, type UpdateUserData as EB, type UpdateUserError as EC, type UpdateUserErrors as ED, type UpdateUserResponse as EE, type UpdateUserResponses as EF, type UpdateUserTaskData as EG, type UpdateUserTaskError as EH, type UpdateUserTaskErrors as EI, type UpdateUserTaskResponse as EJ, type UpdateUserTaskResponses as EK, type UsageMetricsResponse as EL, type UsageMetricsResponseItem as EM, type UseSourceParentKeyInstruction as EN, type UserCreateResult as EO, type UserFilter as EP, type UserRequest as EQ, type UserResult as ER, type UserSearchQueryRequest as ES, type UserSearchQuerySortRequest as ET, type UserSearchResult as EU, type UserTaskAssignmentRequest as EV, type UserTaskAuditLogFilter as EW, type UserTaskAuditLogSearchQueryRequest as EX, type UserTaskCompletionRequest as EY, type UserTaskEffectiveVariableSearchQueryRequest as EZ, type UserTaskFilter as E_, type UpdateJobResponse as Ea, type UpdateJobResponses as Eb, type UpdateJobsBatchOperationData as Ec, type UpdateJobsBatchOperationError as Ed, type UpdateJobsBatchOperationErrors as Ee, type UpdateJobsBatchOperationResponse as Ef, type UpdateJobsBatchOperationResponses as Eg, type UpdateMappingRuleData as Eh, type UpdateMappingRuleError as Ei, type UpdateMappingRuleErrors as Ej, type UpdateMappingRuleResponse as Ek, type UpdateMappingRuleResponses as El, type UpdateRoleData as Em, type UpdateRoleError as En, type UpdateRoleErrors as Eo, type UpdateRoleResponse as Ep, type UpdateRoleResponses as Eq, type UpdateTenantClusterVariableData as Er, type UpdateTenantClusterVariableError as Es, type UpdateTenantClusterVariableErrors as Et, type UpdateTenantClusterVariableResponse as Eu, type UpdateTenantClusterVariableResponses as Ev, type UpdateTenantData as Ew, type UpdateTenantError as Ex, type UpdateTenantErrors as Ey, type UpdateTenantResponse as Ez, type AdvancedBatchOperationStateFilter as F, type assignUserToTenantInput as F$, UserTaskKey as F0, type UserTaskKeyWritable as F1, type UserTaskProperties as F2, type UserTaskResult as F3, type UserTaskSearchQuery as F4, type UserTaskSearchQueryResult as F5, type UserTaskSearchQuerySortRequest as F6, UserTaskStateEnum as F7, type UserTaskStateExactMatch as F8, type UserTaskStateExactMatchWritable as F9, type VariableValueFilterProperty as FA, type WaitStateDetails as FB, WaitStateElementTypeEnum as FC, type WaitStateElementTypeExactMatch as FD, type WaitStateElementTypeExactMatchWritable as FE, type WaitStateElementTypeFilterProperty as FF, WaitStateTypeEnum as FG, type WaitStateTypeExactMatch as FH, type WaitStateTypeExactMatchWritable as FI, type WaitStateTypeFilterProperty as FJ, type WebappComponent as FK, type activateAdHocSubProcessActivitiesInput as FL, type activateJobsInput as FM, assertConstraint as FN, type assignClientToGroupInput as FO, type assignClientToTenantInput as FP, type assignGroupToTenantInput as FQ, type assignMappingRuleToGroupInput as FR, type assignMappingRuleToTenantInput as FS, type assignProcessInstanceBusinessIdInput as FT, type assignRoleToClientInput as FU, type assignRoleToGroupInput as FV, type assignRoleToMappingRuleInput as FW, type assignRoleToTenantInput as FX, type assignRoleToUserInput as FY, type assignUserTaskInput as FZ, type assignUserToGroupInput as F_, type UserTaskStateFilterProperty as Fa, type UserTaskUpdateRequest as Fb, type UserTaskVariableFilter as Fc, type UserTaskVariableSearchQueryRequest as Fd, type UserTaskVariableSearchQuerySortRequest as Fe, type UserTaskWaitStateDetails as Ff, type UserUpdateRequest as Fg, type UserUpdateResult as Fh, Username as Fi, type ValidationMode as Fj, VariableCollector as Fk, VariableDeserializationError as Fl, type VariableFilter as Fm, VariableKey as Fn, type VariableKeyExactMatch as Fo, type VariableKeyExactMatchWritable as Fp, type VariableKeyFilterProperty as Fq, type VariableKeyWritable as Fr, VariableMap as Fs, type VariableResult as Ft, type VariableResultBase as Fu, VariableScopeCollisionError as Fv, type VariableSearchQuery as Fw, type VariableSearchQueryResult as Fx, type VariableSearchQuerySortRequest as Fy, type VariableSearchResult as Fz, type AdvancedBatchOperationTypeFilter as G, type getBatchOperationConsistency as G$, type broadcastSignalInput as G0, type cancelBatchOperationInput as G1, type cancelClusterRebalanceInput as G2, type cancelProcessInstanceInput as G3, type cancelProcessInstancesBatchOperationInput as G4, type changeClusterModeAsClusterAdminInput as G5, type changeClusterModeInput as G6, collectTypedVariables as G7, type completeJobInput as G8, type completeUserTaskInput as G9, type deleteHistoryBackupAsClusterAdminInput as GA, type deleteHistoryBackupInput as GB, type deleteMappingRuleInput as GC, type deleteProcessInstanceInput as GD, type deleteProcessInstancesBatchOperationInput as GE, type deleteResourceInput as GF, type deleteRoleInput as GG, type deleteRuntimeBackupAsClusterAdminInput as GH, type deleteRuntimeBackupInput as GI, type deleteRuntimeBackupStateAsClusterAdminInput as GJ, type deleteRuntimeBackupStateInput as GK, type deleteTenantClusterVariableInput as GL, type deleteTenantInput as GM, type deleteUserInput as GN, type evaluateConditionalsInput as GO, type evaluateDecisionInput as GP, type evaluateExpressionInput as GQ, type failJobInput as GR, type getAgentDefinitionConsistency as GS, type getAgentDefinitionInput as GT, type getAgentInstanceConsistency as GU, type getAgentInstanceInput as GV, type getAuditLogConsistency as GW, type getAuditLogInput as GX, type getAuthenticationInput as GY, type getAuthorizationConsistency as GZ, type getAuthorizationInput as G_, type correlateMessageInput as Ga, type createAdminUserInput as Gb, type createAgentInstanceInput as Gc, type createAuthorizationInput as Gd, type createDeploymentInput as Ge, type createDocumentInput as Gf, type createDocumentLinkInput as Gg, type createDocumentsInput as Gh, type createElementInstanceVariablesInput as Gi, type createGlobalClusterVariableInput as Gj, type createGlobalTaskListenerInput as Gk, type createGroupInput as Gl, createLiveClock as Gm, type createMappingRuleInput as Gn, type createProcessInstanceInput as Go, type createRoleInput as Gp, type createTenantClusterVariableInput as Gq, type createTenantInput as Gr, type createUserInput as Gs, type deleteAuthorizationInput as Gt, type deleteDecisionInstanceInput as Gu, type deleteDecisionInstancesBatchOperationInput as Gv, type deleteDocumentInput as Gw, type deleteGlobalClusterVariableInput as Gx, type deleteGlobalTaskListenerInput as Gy, type deleteGroupInput as Gz, type AdvancedCategoryFilter as H, type getProcessInstanceStatisticsByDefinitionInput as H$, type getBatchOperationInput as H0, type getClusterExportingStatusInput as H1, type getClusterRebalanceInput as H2, type getClusterStatusInput as H3, type getClusterTopologyInput as H4, type getDecisionDefinitionConsistency as H5, type getDecisionDefinitionInput as H6, type getDecisionDefinitionXmlConsistency as H7, type getDecisionDefinitionXmlInput as H8, type getDecisionInstanceConsistency as H9, type getJobTimeSeriesStatisticsInput as HA, type getJobTypeStatisticsConsistency as HB, type getJobTypeStatisticsInput as HC, type getJobWorkerStatisticsConsistency as HD, type getJobWorkerStatisticsInput as HE, type getLicenseInput as HF, type getMappingRuleConsistency as HG, type getMappingRuleInput as HH, type getProcessDefinitionConsistency as HI, type getProcessDefinitionInput as HJ, type getProcessDefinitionInstanceStatisticsConsistency as HK, type getProcessDefinitionInstanceStatisticsInput as HL, type getProcessDefinitionInstanceVersionStatisticsConsistency as HM, type getProcessDefinitionInstanceVersionStatisticsInput as HN, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as HO, type getProcessDefinitionMessageSubscriptionStatisticsInput as HP, type getProcessDefinitionStatisticsConsistency as HQ, type getProcessDefinitionStatisticsInput as HR, type getProcessDefinitionXmlConsistency as HS, type getProcessDefinitionXmlInput as HT, type getProcessInstanceCallHierarchyConsistency as HU, type getProcessInstanceCallHierarchyInput as HV, type getProcessInstanceConsistency as HW, type getProcessInstanceInput as HX, type getProcessInstanceSequenceFlowsConsistency as HY, type getProcessInstanceSequenceFlowsInput as HZ, type getProcessInstanceStatisticsByDefinitionConsistency as H_, type getDecisionInstanceInput as Ha, type getDecisionRequirementsConsistency as Hb, type getDecisionRequirementsInput as Hc, type getDecisionRequirementsXmlConsistency as Hd, type getDecisionRequirementsXmlInput as He, type getDocumentInput as Hf, type getElementInstanceConsistency as Hg, type getElementInstanceInput as Hh, type getExportingStatusInput as Hi, type getFormByKeyConsistency as Hj, type getFormByKeyInput as Hk, type getGlobalClusterVariableConsistency as Hl, type getGlobalClusterVariableInput as Hm, type getGlobalJobStatisticsConsistency as Hn, type getGlobalJobStatisticsInput as Ho, type getGlobalTaskListenerConsistency as Hp, type getGlobalTaskListenerInput as Hq, type getGroupConsistency as Hr, type getGroupInput as Hs, type getHistoryBackupAsClusterAdminInput as Ht, type getHistoryBackupInput as Hu, type getIncidentConsistency as Hv, type getIncidentInput as Hw, type getJobErrorStatisticsConsistency as Hx, type getJobErrorStatisticsInput as Hy, type getJobTimeSeriesStatisticsConsistency as Hz, type AdvancedClusterVariableKindFilter as I, type resumeExportingInput as I$, type getProcessInstanceStatisticsByErrorConsistency as I0, type getProcessInstanceStatisticsByErrorInput as I1, type getProcessInstanceStatisticsConsistency as I2, type getProcessInstanceStatisticsInput as I3, type getProcessInstanceWaitStateStatisticsConsistency as I4, type getProcessInstanceWaitStateStatisticsInput as I5, type getResourceConsistency as I6, type getResourceContentBinaryConsistency as I7, type getResourceContentBinaryInput as I8, type getResourceContentConsistency as I9, type getVariableConsistency as IA, type getVariableInput as IB, type listHistoryBackupsAsClusterAdminInput as IC, type listHistoryBackupsInput as ID, type listRuntimeBackupsAsClusterAdminInput as IE, type listRuntimeBackupsInput as IF, type listSecretsInput as IG, liveClock as IH, type migrateProcessInstanceInput as II, type migrateProcessInstancesBatchOperationInput as IJ, type modifyProcessInstanceInput as IK, type modifyProcessInstancesBatchOperationInput as IL, nextPageRequest as IM, paginate as IN, type pauseClusterExportingInput as IO, type pauseExportingInput as IP, type pinClockInput as IQ, type publishMessageInput as IR, type resetClockInput as IS, type resolveIncidentInput as IT, type resolveIncidentsBatchOperationInput as IU, type resolveProcessInstanceIncidentsInput as IV, type resolveSecretsInput as IW, type restoreAsClusterAdminInput as IX, type restoreInput as IY, type resumeBatchOperationInput as IZ, type resumeClusterExportingInput as I_, type getResourceContentInput as Ia, type getResourceInput as Ib, type getRestoreStatusInput as Ic, type getRoleConsistency as Id, type getRoleInput as Ie, type getRuntimeBackupAsClusterAdminInput as If, type getRuntimeBackupInput as Ig, type getRuntimeBackupStateAsClusterAdminInput as Ih, type getRuntimeBackupStateInput as Ii, type getStartProcessFormConsistency as Ij, type getStartProcessFormInput as Ik, type getStatusInput as Il, type getSystemConfigurationInput as Im, type getTenantClusterVariableConsistency as In, type getTenantClusterVariableInput as Io, type getTenantConsistency as Ip, type getTenantInput as Iq, type getTopologyInput as Ir, type getUsageMetricsConsistency as Is, type getUsageMetricsInput as It, type getUserConsistency as Iu, type getUserInput as Iv, type getUserTaskConsistency as Iw, type getUserTaskFormConsistency as Ix, type getUserTaskFormInput as Iy, type getUserTaskInput as Iz, type AdvancedClusterVariableScopeFilter as J, type searchProcessDefinitionVariableNamesInput as J$, type resumeProcessInstanceInput as J0, type resumeProcessInstancesBatchOperationInput as J1, type searchAgentDefinitionsConsistency as J2, type searchAgentDefinitionsInput as J3, type searchAgentInstanceHistoryConsistency as J4, type searchAgentInstanceHistoryInput as J5, type searchAgentInstancesConsistency as J6, type searchAgentInstancesInput as J7, type searchAuditLogsConsistency as J8, type searchAuditLogsInput as J9, type searchElementInstancesConsistency as JA, type searchElementInstancesInput as JB, type searchGlobalTaskListenersConsistency as JC, type searchGlobalTaskListenersInput as JD, type searchGroupIdsForTenantConsistency as JE, type searchGroupIdsForTenantInput as JF, type searchGroupsConsistency as JG, type searchGroupsForRoleConsistency as JH, type searchGroupsForRoleInput as JI, type searchGroupsInput as JJ, type searchIncidentsConsistency as JK, type searchIncidentsInput as JL, type searchJobsConsistency as JM, type searchJobsInput as JN, type searchMappingRuleConsistency as JO, type searchMappingRuleInput as JP, type searchMappingRulesForGroupConsistency as JQ, type searchMappingRulesForGroupInput as JR, type searchMappingRulesForRoleConsistency as JS, type searchMappingRulesForRoleInput as JT, type searchMappingRulesForTenantConsistency as JU, type searchMappingRulesForTenantInput as JV, type searchMessageSubscriptionsConsistency as JW, type searchMessageSubscriptionsInput as JX, type searchOwnAuthorizationsConsistency as JY, type searchOwnAuthorizationsInput as JZ, type searchProcessDefinitionVariableNamesConsistency as J_, type searchAuthorizationsConsistency as Ja, type searchAuthorizationsInput as Jb, type searchBatchOperationItemsConsistency as Jc, type searchBatchOperationItemsInput as Jd, type searchBatchOperationsConsistency as Je, type searchBatchOperationsInput as Jf, type searchClientsForGroupConsistency as Jg, type searchClientsForGroupInput as Jh, type searchClientsForRoleConsistency as Ji, type searchClientsForRoleInput as Jj, type searchClientsForTenantConsistency as Jk, type searchClientsForTenantInput as Jl, type searchClusterVariablesConsistency as Jm, type searchClusterVariablesInput as Jn, type searchCorrelatedMessageSubscriptionsConsistency as Jo, type searchCorrelatedMessageSubscriptionsInput as Jp, type searchDecisionDefinitionsConsistency as Jq, type searchDecisionDefinitionsInput as Jr, type searchDecisionInstancesConsistency as Js, type searchDecisionInstancesInput as Jt, type searchDecisionRequirementsConsistency as Ju, type searchDecisionRequirementsInput as Jv, type searchElementInstanceIncidentsConsistency as Jw, type searchElementInstanceIncidentsInput as Jx, type searchElementInstanceWaitStatesConsistency as Jy, type searchElementInstanceWaitStatesInput as Jz, type AdvancedDateTimeFilter as K, type updateJobInput as K$, type searchProcessDefinitionsConsistency as K0, type searchProcessDefinitionsInput as K1, type searchProcessInstanceIncidentsConsistency as K2, type searchProcessInstanceIncidentsInput as K3, type searchProcessInstancesConsistency as K4, type searchProcessInstancesInput as K5, type searchResourcesConsistency as K6, type searchResourcesInput as K7, type searchRolesConsistency as K8, type searchRolesForGroupConsistency as K9, type suspendProcessInstancesBatchOperationInput as KA, type syncRuntimeBackupStateAsClusterAdminInput as KB, type syncRuntimeBackupStateInput as KC, type takeHistoryBackupAsClusterAdminInput as KD, type takeHistoryBackupInput as KE, type takeRuntimeBackupAsClusterAdminInput as KF, type takeRuntimeBackupInput as KG, type throwJobErrorInput as KH, type triggerClusterRebalanceInput as KI, type unassignClientFromGroupInput as KJ, type unassignClientFromTenantInput as KK, type unassignGroupFromTenantInput as KL, type unassignMappingRuleFromGroupInput as KM, type unassignMappingRuleFromTenantInput as KN, type unassignRoleFromClientInput as KO, type unassignRoleFromGroupInput as KP, type unassignRoleFromMappingRuleInput as KQ, type unassignRoleFromTenantInput as KR, type unassignRoleFromUserInput as KS, type unassignUserFromGroupInput as KT, type unassignUserFromTenantInput as KU, type unassignUserTaskInput as KV, type updateAgentInstanceInput as KW, type updateAuthorizationInput as KX, type updateGlobalClusterVariableInput as KY, type updateGlobalTaskListenerInput as KZ, type updateGroupInput as K_, type searchRolesForGroupInput as Ka, type searchRolesForTenantConsistency as Kb, type searchRolesForTenantInput as Kc, type searchRolesInput as Kd, type searchTenantsConsistency as Ke, type searchTenantsInput as Kf, type searchUserTaskAuditLogsConsistency as Kg, type searchUserTaskAuditLogsInput as Kh, type searchUserTaskEffectiveVariablesConsistency as Ki, type searchUserTaskEffectiveVariablesInput as Kj, type searchUserTaskVariablesConsistency as Kk, type searchUserTaskVariablesInput as Kl, type searchUserTasksConsistency as Km, type searchUserTasksInput as Kn, type searchUsersConsistency as Ko, type searchUsersForGroupConsistency as Kp, type searchUsersForGroupInput as Kq, type searchUsersForRoleConsistency as Kr, type searchUsersForRoleInput as Ks, type searchUsersForTenantConsistency as Kt, type searchUsersForTenantInput as Ku, type searchUsersInput as Kv, type searchVariablesConsistency as Kw, type searchVariablesInput as Kx, type suspendBatchOperationInput as Ky, type suspendProcessInstanceInput as Kz, type AdvancedDecisionDefinitionKeyFilter as L, type updateJobsBatchOperationInput as L0, type updateMappingRuleInput as L1, type updateRoleInput as L2, type updateTenantClusterVariableInput as L3, type updateTenantInput as L4, type updateUserInput as L5, type updateUserTaskInput as L6, variableNamesFromSchema as L7, type AdvancedDecisionEvaluationInstanceKeyFilter as M, type AdvancedDecisionEvaluationKeyFilter as N, type AdvancedDecisionInstanceStateFilter as O, type Paginator as P, type AdvancedDecisionRequirementsKeyFilter as Q, type AdvancedDeploymentKeyFilter as R, type SearchPaginateOptions as S, type AdvancedElementIdFilter as T, type AdvancedElementInstanceKeyFilter as U, type AdvancedElementInstanceStateFilter as V, type WithSearchPagination as W, type AdvancedEntityTypeFilter as X, type AdvancedFormKeyFilter as Y, type AdvancedGlobalListenerSourceFilter as Z, type AdvancedGlobalTaskListenerEventTypeFilter as _, type PaginationMode as a, AgentInstanceKey as a$, type AdvancedIncidentStateFilter as a0, type AdvancedIntegerFilter as a1, type AdvancedJobKeyFilter as a2, type AdvancedJobKindFilter as a3, type AdvancedJobListenerEventTypeFilter as a4, type AdvancedJobStateFilter as a5, type AdvancedMessageSubscriptionKeyFilter as a6, type AdvancedMessageSubscriptionStateFilter as a7, type AdvancedMessageSubscriptionTypeFilter as a8, type AdvancedMetadataValueFilter as a9, type AgentDefinitionTypeFilterProperty as aA, AgentHistoryItemKey as aB, type AgentHistoryItemKeyExactMatch as aC, type AgentHistoryItemKeyExactMatchWritable as aD, type AgentHistoryItemKeyFilterProperty as aE, type AgentHistoryItemKeyWritable as aF, type AgentInstanceCreatedHistoryItem as aG, type AgentInstanceCreationRequest as aH, type AgentInstanceCreationResult as aI, type AgentInstanceDefinitionResult as aJ, type AgentInstanceDocumentContent as aK, type AgentInstanceFilter as aL, AgentInstanceHistoryCommitStatusEnum as aM, type AgentInstanceHistoryCommitStatusExactMatch as aN, type AgentInstanceHistoryCommitStatusExactMatchWritable as aO, type AgentInstanceHistoryCommitStatusFilterProperty as aP, type AgentInstanceHistoryFilter as aQ, type AgentInstanceHistoryItem as aR, type AgentInstanceHistoryItemMetrics as aS, type AgentInstanceHistoryItemResult as aT, AgentInstanceHistoryRoleEnum as aU, type AgentInstanceHistoryRoleExactMatch as aV, type AgentInstanceHistoryRoleExactMatchWritable as aW, type AgentInstanceHistoryRoleFilterProperty as aX, type AgentInstanceHistorySearchQuery as aY, type AgentInstanceHistorySearchQueryResult as aZ, type AgentInstanceHistorySearchQuerySortRequest as a_, type AdvancedOperationTypeFilter as aa, type AdvancedProcessDefinitionIdFilter as ab, type AdvancedProcessDefinitionKeyFilter as ac, type AdvancedProcessInstanceKeyFilter as ad, type AdvancedProcessInstanceStateFilter as ae, type AdvancedResourceKeyFilter as af, type AdvancedResultFilter as ag, type AdvancedScopeKeyFilter as ah, type AdvancedStringFilter as ai, type AdvancedUserTaskStateFilter as aj, type AdvancedVariableKeyFilter as ak, type AdvancedWaitStateElementTypeFilter as al, type AdvancedWaitStateTypeFilter as am, type AgentDefinitionFilter as an, AgentDefinitionKey as ao, type AgentDefinitionKeyExactMatch as ap, type AgentDefinitionKeyExactMatchWritable as aq, type AgentDefinitionKeyFilterProperty as ar, type AgentDefinitionKeyWritable as as, type AgentDefinitionResult as at, type AgentDefinitionSearchQuery as au, type AgentDefinitionSearchQueryResult as av, type AgentDefinitionSearchQuerySortRequest as aw, AgentDefinitionTypeEnum as ax, type AgentDefinitionTypeExactMatch as ay, type AgentDefinitionTypeExactMatchWritable as az, type SearchResponse as b, type AssignRoleToGroupResponse as b$, type AgentInstanceKeyExactMatch as b0, type AgentInstanceKeyExactMatchWritable as b1, type AgentInstanceKeyFilterProperty as b2, type AgentInstanceKeyWritable as b3, type AgentInstanceLimits as b4, type AgentInstanceMessageContent as b5, AgentInstanceMessageContentTypeEnum as b6, type AgentInstanceMetrics as b7, type AgentInstanceObjectContent as b8, type AgentInstanceResult as b9, type AssignGroupToTenantError as bA, type AssignGroupToTenantErrors as bB, type AssignGroupToTenantResponse as bC, type AssignGroupToTenantResponses as bD, type AssignMappingRuleToGroupData as bE, type AssignMappingRuleToGroupError as bF, type AssignMappingRuleToGroupErrors as bG, type AssignMappingRuleToGroupResponse as bH, type AssignMappingRuleToGroupResponses as bI, type AssignMappingRuleToTenantData as bJ, type AssignMappingRuleToTenantError as bK, type AssignMappingRuleToTenantErrors as bL, type AssignMappingRuleToTenantResponse as bM, type AssignMappingRuleToTenantResponses as bN, type AssignProcessInstanceBusinessIdData as bO, type AssignProcessInstanceBusinessIdError as bP, type AssignProcessInstanceBusinessIdErrors as bQ, type AssignProcessInstanceBusinessIdResponse as bR, type AssignProcessInstanceBusinessIdResponses as bS, type AssignRoleToClientData as bT, type AssignRoleToClientError as bU, type AssignRoleToClientErrors as bV, type AssignRoleToClientResponse as bW, type AssignRoleToClientResponses as bX, type AssignRoleToGroupData as bY, type AssignRoleToGroupError as bZ, type AssignRoleToGroupErrors as b_, type AgentInstanceSearchQuery as ba, type AgentInstanceSearchQueryResult as bb, type AgentInstanceSearchQuerySortRequest as bc, AgentInstanceStatusEnum as bd, type AgentInstanceStatusExactMatch as be, type AgentInstanceStatusExactMatchWritable as bf, type AgentInstanceStatusFilterProperty as bg, type AgentInstanceTextContent as bh, type AgentInstanceToolCall as bi, type AgentInstanceUpdateRequest as bj, type AgentInstanceUpdateResult as bk, AgentInstanceUpdateStatusEnum as bl, type AgentTool as bm, type AncestorScopeInstruction as bn, type AnyVariableSchema as bo, type AssignClientToGroupData as bp, type AssignClientToGroupError as bq, type AssignClientToGroupErrors as br, type AssignClientToGroupResponse as bs, type AssignClientToGroupResponses as bt, type AssignClientToTenantData as bu, type AssignClientToTenantError as bv, type AssignClientToTenantErrors as bw, type AssignClientToTenantResponse as bx, type AssignClientToTenantResponses as by, type AssignGroupToTenantData as bz, CamundaClient as c, type AuthorizationPropertyBasedRequest as c$, type AssignRoleToGroupResponses as c0, type AssignRoleToMappingRuleData as c1, type AssignRoleToMappingRuleError as c2, type AssignRoleToMappingRuleErrors as c3, type AssignRoleToMappingRuleResponse as c4, type AssignRoleToMappingRuleResponses as c5, type AssignRoleToTenantData as c6, type AssignRoleToTenantError as c7, type AssignRoleToTenantErrors as c8, type AssignRoleToTenantResponse as c9, AuditLogEntityKey as cA, type AuditLogEntityKeyExactMatch as cB, type AuditLogEntityKeyExactMatchWritable as cC, type AuditLogEntityKeyFilterProperty as cD, AuditLogEntityTypeEnum as cE, type AuditLogFilter as cF, AuditLogKey as cG, type AuditLogKeyExactMatch as cH, type AuditLogKeyExactMatchWritable as cI, type AuditLogKeyFilterProperty as cJ, type AuditLogKeyWritable as cK, AuditLogOperationTypeEnum as cL, type AuditLogResult as cM, AuditLogResultEnum as cN, type AuditLogResultExactMatch as cO, type AuditLogResultExactMatchWritable as cP, type AuditLogResultFilterProperty as cQ, type AuditLogSearchQueryRequest as cR, type AuditLogSearchQueryResult as cS, type AuditLogSearchQuerySortRequest as cT, type AuthStrategy as cU, type AuthenticationConfigurationResponse as cV, type AuthorizationCreateResult as cW, type AuthorizationFilter as cX, type AuthorizationIdBasedRequest as cY, AuthorizationKey as cZ, type AuthorizationKeyWritable as c_, type AssignRoleToTenantResponses as ca, type AssignRoleToUserData as cb, type AssignRoleToUserError as cc, type AssignRoleToUserErrors as cd, type AssignRoleToUserResponse as ce, type AssignRoleToUserResponses as cf, type AssignUserTaskData as cg, type AssignUserTaskError as ch, type AssignUserTaskErrors as ci, type AssignUserTaskResponse as cj, type AssignUserTaskResponses as ck, type AssignUserToGroupData as cl, type AssignUserToGroupError as cm, type AssignUserToGroupErrors as cn, type AssignUserToGroupResponse as co, type AssignUserToGroupResponses as cp, type AssignUserToTenantData as cq, type AssignUserToTenantError as cr, type AssignUserToTenantErrors as cs, type AssignUserToTenantResponse as ct, type AssignUserToTenantResponses as cu, AuditLogActorTypeEnum as cv, type AuditLogActorTypeExactMatch as cw, type AuditLogActorTypeExactMatchWritable as cx, type AuditLogActorTypeFilterProperty as cy, AuditLogCategoryEnum as cz, type CamundaOptions as d, type CancelProcessInstanceError as d$, type AuthorizationRequest as d0, type AuthorizationResult as d1, type AuthorizationSearchQuery as d2, type AuthorizationSearchQuerySortRequest as d3, type AuthorizationSearchResult as d4, type BackpressureSeverity as d5, type BackupId as d6, type BackupIdPrefix as d7, type BackupInfo as d8, type BackupInfoWritable as d9, type BatchOperationStateFilterProperty as dA, BatchOperationTypeEnum as dB, type BatchOperationTypeExactMatch as dC, type BatchOperationTypeExactMatchWritable as dD, type BatchOperationTypeFilterProperty as dE, type BroadcastSignalData as dF, type BroadcastSignalError as dG, type BroadcastSignalErrors as dH, type BroadcastSignalResponse as dI, type BroadcastSignalResponses as dJ, type BrokerInfo as dK, BusinessId as dL, type CamundaConfig as dM, type CamundaKey as dN, type CamundaUserResult as dO, type CancelBatchOperationData as dP, type CancelBatchOperationError as dQ, type CancelBatchOperationErrors as dR, type CancelBatchOperationResponse as dS, type CancelBatchOperationResponses as dT, type CancelClusterRebalanceData as dU, type CancelClusterRebalanceError as dV, type CancelClusterRebalanceErrors as dW, type CancelClusterRebalanceResponse as dX, type CancelClusterRebalanceResponses as dY, CancelError as dZ, type CancelProcessInstanceData as d_, type BackupType as da, type BaseProcessInstanceFilterFields as db, type BaseWaitStateDetails as dc, type BasicStringFilter as dd, type BasicStringFilterProperty as de, type BatchOperationCreatedResult as df, type BatchOperationError as dg, type BatchOperationFilter as dh, type BatchOperationItemFilter as di, type BatchOperationItemResponse as dj, type BatchOperationItemSearchQuery as dk, type BatchOperationItemSearchQueryResult as dl, type BatchOperationItemSearchQuerySortRequest as dm, BatchOperationItemStateEnum as dn, type BatchOperationItemStateExactMatch as dp, type BatchOperationItemStateExactMatchWritable as dq, type BatchOperationItemStateFilterProperty as dr, BatchOperationKey as ds, type BatchOperationResponse as dt, type BatchOperationSearchQuery as du, type BatchOperationSearchQueryResult as dv, type BatchOperationSearchQuerySortRequest as dw, BatchOperationStateEnum as dx, type BatchOperationStateExactMatch as dy, type BatchOperationStateExactMatchWritable as dz, createCamundaClient as e, type ClusterRuntimeBackupTenantInfoWritable as e$, type CancelProcessInstanceErrors as e0, type CancelProcessInstanceRequest as e1, type CancelProcessInstanceResponse as e2, type CancelProcessInstanceResponses as e3, type CancelProcessInstancesBatchOperationData as e4, type CancelProcessInstancesBatchOperationError as e5, type CancelProcessInstancesBatchOperationErrors as e6, type CancelProcessInstancesBatchOperationResponse as e7, type CancelProcessInstancesBatchOperationResponses as e8, type CategoryExactMatch as e9, type ClusterHistoryBackupTakeResult as eA, type ClusterHistoryBackupTenantInfo as eB, type ClusterHistoryBackupTenantInfoWritable as eC, type ClusterHistoryBackupTenantState as eD, type ClusterModeChangeOperation as eE, type ClusterModeChangePlannedChange as eF, type ClusterModeChangeResponse as eG, type ClusterRebalance as eH, type ClusterRebalanceOperationPartition as eI, type ClusterRebalancePartition as eJ, type ClusterRebalanceRequest as eK, type ClusterRestoreAwaitModeChangeOperation as eL, type ClusterRestoreBrokerOperation as eM, type ClusterRestoreModeChangeOperation as eN, type ClusterRestoreOperation as eO, type ClusterRestorePartitionOperation as eP, type ClusterRestorePartitionRestoreOperation as eQ, type ClusterRestorePlannedChange as eR, type ClusterRestoreRequest as eS, type ClusterRestoreResponse as eT, type ClusterRunningRebalance as eU, type ClusterRuntimeBackupInfo as eV, type ClusterRuntimeBackupInfoWritable as eW, type ClusterRuntimeBackupState as eX, type ClusterRuntimeBackupTakeOutcome as eY, type ClusterRuntimeBackupTakeResult as eZ, type ClusterRuntimeBackupTenantInfo as e_, type CategoryExactMatchWritable as ea, type CategoryFilterProperty as eb, type ChangeClusterModeAsClusterAdminData as ec, type ChangeClusterModeAsClusterAdminError as ed, type ChangeClusterModeAsClusterAdminErrors as ee, type ChangeClusterModeAsClusterAdminResponse as ef, type ChangeClusterModeAsClusterAdminResponses as eg, type ChangeClusterModeData as eh, type ChangeClusterModeError as ei, type ChangeClusterModeErrors as ej, type ChangeClusterModeResponse as ek, type ChangeClusterModeResponses as el, type Changeset as em, type CheckpointId as en, type CheckpointType as eo, ClientId as ep, type ClientOptions$1 as eq, type Clock as er, type ClockPinRequest as es, type CloudConfigurationResponse as et, type CloudStage as eu, type ClusterBalanceResponse as ev, type ClusterBrokerInfo as ew, type ClusterCompletedRebalance as ex, type ClusterHistoryBackupInfo as ey, type ClusterHistoryBackupInfoWritable as ez, type CancelablePromise as f, type CreateDeploymentError as f$, type ClusterRuntimeBackupTenantState as f0, type ClusterStatusResponse as f1, type ClusterTakeHistoryBackupResponse as f2, type ClusterTakeRuntimeBackupResponse as f3, type ClusterTopologyResponse as f4, ClusterVariableKindEnum as f5, type ClusterVariableKindExactMatch as f6, type ClusterVariableKindExactMatchWritable as f7, type ClusterVariableKindFilterProperty as f8, ClusterVariableName as f9, type CorrelateMessageData as fA, type CorrelateMessageError as fB, type CorrelateMessageErrors as fC, type CorrelateMessageResponse as fD, type CorrelateMessageResponses as fE, type CorrelatedMessageSubscriptionFilter as fF, type CorrelatedMessageSubscriptionResult as fG, type CorrelatedMessageSubscriptionSearchQuery as fH, type CorrelatedMessageSubscriptionSearchQueryResult as fI, type CorrelatedMessageSubscriptionSearchQuerySortRequest as fJ, type CreateAdminUserData as fK, type CreateAdminUserError as fL, type CreateAdminUserErrors as fM, type CreateAdminUserResponse as fN, type CreateAdminUserResponses as fO, type CreateAgentInstanceData as fP, type CreateAgentInstanceError as fQ, type CreateAgentInstanceErrors as fR, type CreateAgentInstanceResponse as fS, type CreateAgentInstanceResponses as fT, type CreateAuthorizationData as fU, type CreateAuthorizationError as fV, type CreateAuthorizationErrors as fW, type CreateAuthorizationResponse as fX, type CreateAuthorizationResponses as fY, type CreateClusterVariableRequest as fZ, type CreateDeploymentData as f_, type ClusterVariableResult as fa, type ClusterVariableResultBase as fb, ClusterVariableScopeEnum as fc, type ClusterVariableScopeExactMatch as fd, type ClusterVariableScopeExactMatchWritable as fe, type ClusterVariableScopeFilterProperty as ff, type ClusterVariableSearchQueryFilterRequest as fg, type ClusterVariableSearchQueryRequest as fh, type ClusterVariableSearchQueryResult as fi, type ClusterVariableSearchQuerySortRequest as fj, type ClusterVariableSearchResult as fk, type CompleteJobData as fl, type CompleteJobError as fm, type CompleteJobErrors as fn, type CompleteJobResponse as fo, type CompleteJobResponses as fp, type CompleteUserTaskData as fq, type CompleteUserTaskError as fr, type CompleteUserTaskErrors as fs, type CompleteUserTaskResponse as ft, type CompleteUserTaskResponses as fu, type ComponentsConfigurationResponse as fv, type ConditionWaitStateDetails as fw, type ConditionalEvaluationInstruction as fx, ConditionalEvaluationKey as fy, type ConditionalEvaluationKeyWritable as fz, type ActivateAdHocSubProcessActivitiesData as g, type CreateTenantResponse as g$, type CreateDeploymentErrors as g0, type CreateDeploymentResponse as g1, type CreateDeploymentResponses as g2, type CreateDocumentData as g3, type CreateDocumentError as g4, type CreateDocumentErrors as g5, type CreateDocumentLinkData as g6, type CreateDocumentLinkError as g7, type CreateDocumentLinkErrors as g8, type CreateDocumentLinkResponse as g9, type CreateGroupErrors as gA, type CreateGroupResponse as gB, type CreateGroupResponses as gC, type CreateMappingRuleData as gD, type CreateMappingRuleError as gE, type CreateMappingRuleErrors as gF, type CreateMappingRuleResponse as gG, type CreateMappingRuleResponses as gH, type CreateProcessInstanceData as gI, type CreateProcessInstanceError as gJ, type CreateProcessInstanceErrors as gK, type CreateProcessInstanceResponse as gL, type CreateProcessInstanceResponses as gM, type CreateProcessInstanceResult as gN, type CreateRoleData as gO, type CreateRoleError as gP, type CreateRoleErrors as gQ, type CreateRoleResponse as gR, type CreateRoleResponses as gS, type CreateTenantClusterVariableData as gT, type CreateTenantClusterVariableError as gU, type CreateTenantClusterVariableErrors as gV, type CreateTenantClusterVariableResponse as gW, type CreateTenantClusterVariableResponses as gX, type CreateTenantData as gY, type CreateTenantError as gZ, type CreateTenantErrors as g_, type CreateDocumentLinkResponses as ga, type CreateDocumentResponse as gb, type CreateDocumentResponses as gc, type CreateDocumentsData as gd, type CreateDocumentsError as ge, type CreateDocumentsErrors as gf, type CreateDocumentsResponse as gg, type CreateDocumentsResponses as gh, type CreateElementInstanceVariablesData as gi, type CreateElementInstanceVariablesError as gj, type CreateElementInstanceVariablesErrors as gk, type CreateElementInstanceVariablesResponse as gl, type CreateElementInstanceVariablesResponses as gm, type CreateGlobalClusterVariableData as gn, type CreateGlobalClusterVariableError as go, type CreateGlobalClusterVariableErrors as gp, type CreateGlobalClusterVariableResponse as gq, type CreateGlobalClusterVariableResponses as gr, type CreateGlobalTaskListenerData as gs, type CreateGlobalTaskListenerError as gt, type CreateGlobalTaskListenerErrors as gu, type CreateGlobalTaskListenerRequest as gv, type CreateGlobalTaskListenerResponse as gw, type CreateGlobalTaskListenerResponses as gx, type CreateGroupData as gy, type CreateGroupError as gz, type ActivateAdHocSubProcessActivitiesError as h, type DeleteDecisionInstanceErrors as h$, type CreateTenantResponses as h0, type CreateUserData as h1, type CreateUserError as h2, type CreateUserErrors as h3, type CreateUserResponse as h4, type CreateUserResponses as h5, type CursorBackwardPagination as h6, type CursorForwardPagination as h7, type DateTimeFilterProperty as h8, type DecisionDefinitionFilter as h9, DecisionInstanceKey as hA, type DecisionInstanceKeyWritable as hB, type DecisionInstanceResult as hC, type DecisionInstanceSearchQuery as hD, type DecisionInstanceSearchQueryResult as hE, type DecisionInstanceSearchQuerySortRequest as hF, DecisionInstanceStateEnum as hG, type DecisionInstanceStateExactMatch as hH, type DecisionInstanceStateExactMatchWritable as hI, type DecisionInstanceStateFilterProperty as hJ, type DecisionRequirementsFilter as hK, DecisionRequirementsKey as hL, type DecisionRequirementsKeyExactMatch as hM, type DecisionRequirementsKeyExactMatchWritable as hN, type DecisionRequirementsKeyFilterProperty as hO, type DecisionRequirementsKeyWritable as hP, type DecisionRequirementsResult as hQ, type DecisionRequirementsSearchQuery as hR, type DecisionRequirementsSearchQueryResult as hS, type DecisionRequirementsSearchQuerySortRequest as hT, type DeleteAuthorizationData as hU, type DeleteAuthorizationError as hV, type DeleteAuthorizationErrors as hW, type DeleteAuthorizationResponse as hX, type DeleteAuthorizationResponses as hY, type DeleteDecisionInstanceData as hZ, type DeleteDecisionInstanceError as h_, DecisionDefinitionId as ha, DecisionDefinitionKey as hb, type DecisionDefinitionKeyExactMatch as hc, type DecisionDefinitionKeyExactMatchWritable as hd, type DecisionDefinitionKeyFilterProperty as he, type DecisionDefinitionKeyWritable as hf, type DecisionDefinitionResult as hg, type DecisionDefinitionSearchQuery as hh, type DecisionDefinitionSearchQueryResult as hi, type DecisionDefinitionSearchQuerySortRequest as hj, DecisionDefinitionTypeEnum as hk, type DecisionEvaluationById as hl, type DecisionEvaluationByKey as hm, DecisionEvaluationInstanceKey as hn, type DecisionEvaluationInstanceKeyExactMatch as ho, type DecisionEvaluationInstanceKeyExactMatchWritable as hp, type DecisionEvaluationInstanceKeyFilterProperty as hq, type DecisionEvaluationInstruction as hr, DecisionEvaluationKey as hs, type DecisionEvaluationKeyExactMatch as ht, type DecisionEvaluationKeyExactMatchWritable as hu, type DecisionEvaluationKeyFilterProperty as hv, type DecisionEvaluationKeyWritable as hw, type DecisionInstanceDeletionBatchOperationRequest as hx, type DecisionInstanceFilter as hy, type DecisionInstanceGetQueryResult as hz, type ActivateAdHocSubProcessActivitiesErrors as i, type DeleteRoleData as i$, type DeleteDecisionInstanceRequest as i0, type DeleteDecisionInstanceResponse as i1, type DeleteDecisionInstanceResponses as i2, type DeleteDecisionInstancesBatchOperationData as i3, type DeleteDecisionInstancesBatchOperationError as i4, type DeleteDecisionInstancesBatchOperationErrors as i5, type DeleteDecisionInstancesBatchOperationResponse as i6, type DeleteDecisionInstancesBatchOperationResponses as i7, type DeleteDocumentData as i8, type DeleteDocumentError as i9, type DeleteHistoryBackupError as iA, type DeleteHistoryBackupErrors as iB, type DeleteHistoryBackupResponse as iC, type DeleteHistoryBackupResponses as iD, type DeleteMappingRuleData as iE, type DeleteMappingRuleError as iF, type DeleteMappingRuleErrors as iG, type DeleteMappingRuleResponse as iH, type DeleteMappingRuleResponses as iI, type DeleteProcessInstanceData as iJ, type DeleteProcessInstanceError as iK, type DeleteProcessInstanceErrors as iL, type DeleteProcessInstanceRequest as iM, type DeleteProcessInstanceResponse as iN, type DeleteProcessInstanceResponses as iO, type DeleteProcessInstancesBatchOperationData as iP, type DeleteProcessInstancesBatchOperationError as iQ, type DeleteProcessInstancesBatchOperationErrors as iR, type DeleteProcessInstancesBatchOperationResponse as iS, type DeleteProcessInstancesBatchOperationResponses as iT, type DeleteResourceData as iU, type DeleteResourceError as iV, type DeleteResourceErrors as iW, type DeleteResourceRequest as iX, type DeleteResourceResponse as iY, type DeleteResourceResponse2 as iZ, type DeleteResourceResponses as i_, type DeleteDocumentErrors as ia, type DeleteDocumentResponse as ib, type DeleteDocumentResponses as ic, type DeleteGlobalClusterVariableData as id, type DeleteGlobalClusterVariableError as ie, type DeleteGlobalClusterVariableErrors as ig, type DeleteGlobalClusterVariableResponse as ih, type DeleteGlobalClusterVariableResponses as ii, type DeleteGlobalTaskListenerData as ij, type DeleteGlobalTaskListenerError as ik, type DeleteGlobalTaskListenerErrors as il, type DeleteGlobalTaskListenerResponse as im, type DeleteGlobalTaskListenerResponses as io, type DeleteGroupData as ip, type DeleteGroupError as iq, type DeleteGroupErrors as ir, type DeleteGroupResponse as is, type DeleteGroupResponses as it, type DeleteHistoryBackupAsClusterAdminData as iu, type DeleteHistoryBackupAsClusterAdminError as iv, type DeleteHistoryBackupAsClusterAdminErrors as iw, type DeleteHistoryBackupAsClusterAdminResponse as ix, type DeleteHistoryBackupAsClusterAdminResponses as iy, type DeleteHistoryBackupData as iz, type ActivateAdHocSubProcessActivitiesResponse as j, type ElementIdExactMatchWritable as j$, type DeleteRoleError as j0, type DeleteRoleErrors as j1, type DeleteRoleResponse as j2, type DeleteRoleResponses as j3, type DeleteRuntimeBackupAsClusterAdminData as j4, type DeleteRuntimeBackupAsClusterAdminError as j5, type DeleteRuntimeBackupAsClusterAdminErrors as j6, type DeleteRuntimeBackupAsClusterAdminResponse as j7, type DeleteRuntimeBackupAsClusterAdminResponses as j8, type DeleteRuntimeBackupData as j9, type DeleteUserErrors as jA, type DeleteUserResponse as jB, type DeleteUserResponses as jC, type DeploymentConfigurationResponse as jD, type DeploymentDecisionRequirementsResult as jE, type DeploymentDecisionResult as jF, type DeploymentFormResult as jG, DeploymentKey as jH, type DeploymentKeyExactMatch as jI, type DeploymentKeyExactMatchWritable as jJ, type DeploymentKeyFilterProperty as jK, type DeploymentKeyWritable as jL, type DeploymentMetadataResult as jM, type DeploymentProcessResult as jN, type DeploymentResourceResult as jO, type DeploymentResult as jP, type DirectAncestorKeyInstruction as jQ, type DocumentCreationBatchResponse as jR, type DocumentCreationFailureDetail as jS, DocumentId as jT, type DocumentLink as jU, type DocumentLinkRequest as jV, type DocumentMetadata as jW, type DocumentMetadataResponse as jX, type DocumentReference as jY, ElementId as jZ, type ElementIdExactMatch as j_, type DeleteRuntimeBackupError as ja, type DeleteRuntimeBackupErrors as jb, type DeleteRuntimeBackupResponse as jc, type DeleteRuntimeBackupResponses as jd, type DeleteRuntimeBackupStateAsClusterAdminData as je, type DeleteRuntimeBackupStateAsClusterAdminError as jf, type DeleteRuntimeBackupStateAsClusterAdminErrors as jg, type DeleteRuntimeBackupStateAsClusterAdminResponse as jh, type DeleteRuntimeBackupStateAsClusterAdminResponses as ji, type DeleteRuntimeBackupStateData as jj, type DeleteRuntimeBackupStateError as jk, type DeleteRuntimeBackupStateErrors as jl, type DeleteRuntimeBackupStateResponse as jm, type DeleteRuntimeBackupStateResponses as jn, type DeleteTenantClusterVariableData as jo, type DeleteTenantClusterVariableError as jp, type DeleteTenantClusterVariableErrors as jq, type DeleteTenantClusterVariableResponse as jr, type DeleteTenantClusterVariableResponses as js, type DeleteTenantData as jt, type DeleteTenantError as ju, type DeleteTenantErrors as jv, type DeleteTenantResponse as jw, type DeleteTenantResponses as jx, type DeleteUserData as jy, type DeleteUserError as jz, type ActivateAdHocSubProcessActivitiesResponses as k, type FormKeyFilterProperty as k$, type ElementIdFilterProperty as k0, type ElementInstanceFilter as k1, type ElementInstanceFilterFields as k2, ElementInstanceKey as k3, type ElementInstanceKeyExactMatch as k4, type ElementInstanceKeyExactMatchWritable as k5, type ElementInstanceKeyFilterProperty as k6, type ElementInstanceKeyWritable as k7, type ElementInstanceResult as k8, type ElementInstanceSearchQuery as k9, type EvaluateDecisionResponses as kA, type EvaluateDecisionResult as kB, type EvaluateExpressionData as kC, type EvaluateExpressionError as kD, type EvaluateExpressionErrors as kE, type EvaluateExpressionResponse as kF, type EvaluateExpressionResponses as kG, type EvaluatedDecisionInputItem as kH, type EvaluatedDecisionOutputItem as kI, type EvaluatedDecisionResult as kJ, type ExportingStatusCode as kK, type ExportingStatusResponse as kL, type ExpressionEvaluationRequest as kM, type ExpressionEvaluationResult as kN, type ExpressionEvaluationWarningItem as kO, type ExpressionSecretReferenceItem as kP, type ExtendedDeploymentResult as kQ, type FailJobData as kR, type FailJobError as kS, type FailJobErrors as kT, type FailJobResponse as kU, type FailJobResponses as kV, type FetchPage as kW, FormId as kX, FormKey as kY, type FormKeyExactMatch as kZ, type FormKeyExactMatchWritable as k_, type ElementInstanceSearchQueryResult as ka, type ElementInstanceSearchQuerySortRequest as kb, ElementInstanceStateEnum as kc, type ElementInstanceStateExactMatch as kd, type ElementInstanceStateExactMatchWritable as ke, type ElementInstanceStateFilterProperty as kf, type ElementInstanceWaitStateFilter as kg, type ElementInstanceWaitStateQuery as kh, type ElementInstanceWaitStateQueryResult as ki, type ElementInstanceWaitStateQuerySortRequest as kj, type ElementInstanceWaitStateResult as kk, EndCursor as kl, type EnrichedActivatedJob as km, type EntityTypeExactMatch as kn, type EntityTypeExactMatchWritable as ko, type EntityTypeFilterProperty as kp, type EvaluateConditionalResult as kq, type EvaluateConditionalsData as kr, type EvaluateConditionalsError as ks, type EvaluateConditionalsErrors as kt, type EvaluateConditionalsResponse as ku, type EvaluateConditionalsResponses as kv, type EvaluateDecisionData as kw, type EvaluateDecisionError as kx, type EvaluateDecisionErrors as ky, type EvaluateDecisionResponse as kz, type ActivateJobsData as l, type GetDecisionInstanceError as l$, type FormKeyWritable as l0, type FormResult as l1, type GetAgentDefinitionData as l2, type GetAgentDefinitionError as l3, type GetAgentDefinitionErrors as l4, type GetAgentDefinitionResponse as l5, type GetAgentDefinitionResponses as l6, type GetAgentInstanceData as l7, type GetAgentInstanceError as l8, type GetAgentInstanceErrors as l9, type GetClusterExportingStatusResponses as lA, type GetClusterRebalanceData as lB, type GetClusterRebalanceError as lC, type GetClusterRebalanceErrors as lD, type GetClusterRebalanceResponse as lE, type GetClusterRebalanceResponses as lF, type GetClusterStatusData as lG, type GetClusterStatusError as lH, type GetClusterStatusErrors as lI, type GetClusterStatusResponse as lJ, type GetClusterStatusResponses as lK, type GetClusterTopologyData as lL, type GetClusterTopologyError as lM, type GetClusterTopologyErrors as lN, type GetClusterTopologyResponse as lO, type GetClusterTopologyResponses as lP, type GetDecisionDefinitionData as lQ, type GetDecisionDefinitionError as lR, type GetDecisionDefinitionErrors as lS, type GetDecisionDefinitionResponse as lT, type GetDecisionDefinitionResponses as lU, type GetDecisionDefinitionXmlData as lV, type GetDecisionDefinitionXmlError as lW, type GetDecisionDefinitionXmlErrors as lX, type GetDecisionDefinitionXmlResponse as lY, type GetDecisionDefinitionXmlResponses as lZ, type GetDecisionInstanceData as l_, type GetAgentInstanceResponse as la, type GetAgentInstanceResponses as lb, type GetAuditLogData as lc, type GetAuditLogError as ld, type GetAuditLogErrors as le, type GetAuditLogResponse as lf, type GetAuditLogResponses as lg, type GetAuthenticationData as lh, type GetAuthenticationError as li, type GetAuthenticationErrors as lj, type GetAuthenticationResponse as lk, type GetAuthenticationResponses as ll, type GetAuthorizationData as lm, type GetAuthorizationError as ln, type GetAuthorizationErrors as lo, type GetAuthorizationResponse as lp, type GetAuthorizationResponses as lq, type GetBatchOperationData as lr, type GetBatchOperationError as ls, type GetBatchOperationErrors as lt, type GetBatchOperationResponse as lu, type GetBatchOperationResponses as lv, type GetClusterExportingStatusData as lw, type GetClusterExportingStatusError as lx, type GetClusterExportingStatusErrors as ly, type GetClusterExportingStatusResponse as lz, type ActivateJobsError as m, type GetIncidentData as m$, type GetDecisionInstanceErrors as m0, type GetDecisionInstanceResponse as m1, type GetDecisionInstanceResponses as m2, type GetDecisionRequirementsData as m3, type GetDecisionRequirementsError as m4, type GetDecisionRequirementsErrors as m5, type GetDecisionRequirementsResponse as m6, type GetDecisionRequirementsResponses as m7, type GetDecisionRequirementsXmlData as m8, type GetDecisionRequirementsXmlError as m9, type GetGlobalClusterVariableResponse as mA, type GetGlobalClusterVariableResponses as mB, type GetGlobalJobStatisticsData as mC, type GetGlobalJobStatisticsError as mD, type GetGlobalJobStatisticsErrors as mE, type GetGlobalJobStatisticsResponse as mF, type GetGlobalJobStatisticsResponses as mG, type GetGlobalTaskListenerData as mH, type GetGlobalTaskListenerError as mI, type GetGlobalTaskListenerErrors as mJ, type GetGlobalTaskListenerResponse as mK, type GetGlobalTaskListenerResponses as mL, type GetGroupData as mM, type GetGroupError as mN, type GetGroupErrors as mO, type GetGroupResponse as mP, type GetGroupResponses as mQ, type GetHistoryBackupAsClusterAdminData as mR, type GetHistoryBackupAsClusterAdminError as mS, type GetHistoryBackupAsClusterAdminErrors as mT, type GetHistoryBackupAsClusterAdminResponse as mU, type GetHistoryBackupAsClusterAdminResponses as mV, type GetHistoryBackupData as mW, type GetHistoryBackupError as mX, type GetHistoryBackupErrors as mY, type GetHistoryBackupResponse as mZ, type GetHistoryBackupResponses as m_, type GetDecisionRequirementsXmlErrors as ma, type GetDecisionRequirementsXmlResponse as mb, type GetDecisionRequirementsXmlResponses as mc, type GetDocumentData as md, type GetDocumentError as me, type GetDocumentErrors as mf, type GetDocumentResponse as mg, type GetDocumentResponses as mh, type GetElementInstanceData as mi, type GetElementInstanceError as mj, type GetElementInstanceErrors as mk, type GetElementInstanceResponse as ml, type GetElementInstanceResponses as mm, type GetExportingStatusData as mn, type GetExportingStatusError as mo, type GetExportingStatusErrors as mp, type GetExportingStatusResponse as mq, type GetExportingStatusResponses as mr, type GetFormByKeyData as ms, type GetFormByKeyError as mt, type GetFormByKeyErrors as mu, type GetFormByKeyResponse as mv, type GetFormByKeyResponses as mw, type GetGlobalClusterVariableData as mx, type GetGlobalClusterVariableError as my, type GetGlobalClusterVariableErrors as mz, type ActivateJobsErrors as n, type GetProcessDefinitionXmlResponses as n$, type GetIncidentError as n0, type GetIncidentErrors as n1, type GetIncidentResponse as n2, type GetIncidentResponses as n3, type GetJobErrorStatisticsData as n4, type GetJobErrorStatisticsError as n5, type GetJobErrorStatisticsErrors as n6, type GetJobErrorStatisticsResponse as n7, type GetJobErrorStatisticsResponses as n8, type GetJobTimeSeriesStatisticsData as n9, type GetProcessDefinitionErrors as nA, type GetProcessDefinitionInstanceStatisticsData as nB, type GetProcessDefinitionInstanceStatisticsError as nC, type GetProcessDefinitionInstanceStatisticsErrors as nD, type GetProcessDefinitionInstanceStatisticsResponse as nE, type GetProcessDefinitionInstanceStatisticsResponses as nF, type GetProcessDefinitionInstanceVersionStatisticsData as nG, type GetProcessDefinitionInstanceVersionStatisticsError as nH, type GetProcessDefinitionInstanceVersionStatisticsErrors as nI, type GetProcessDefinitionInstanceVersionStatisticsResponse as nJ, type GetProcessDefinitionInstanceVersionStatisticsResponses as nK, type GetProcessDefinitionMessageSubscriptionStatisticsData as nL, type GetProcessDefinitionMessageSubscriptionStatisticsError as nM, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as nN, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as nO, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as nP, type GetProcessDefinitionResponse as nQ, type GetProcessDefinitionResponses as nR, type GetProcessDefinitionStatisticsData as nS, type GetProcessDefinitionStatisticsError as nT, type GetProcessDefinitionStatisticsErrors as nU, type GetProcessDefinitionStatisticsResponse as nV, type GetProcessDefinitionStatisticsResponses as nW, type GetProcessDefinitionXmlData as nX, type GetProcessDefinitionXmlError as nY, type GetProcessDefinitionXmlErrors as nZ, type GetProcessDefinitionXmlResponse as n_, type GetJobTimeSeriesStatisticsError as na, type GetJobTimeSeriesStatisticsErrors as nb, type GetJobTimeSeriesStatisticsResponse as nc, type GetJobTimeSeriesStatisticsResponses as nd, type GetJobTypeStatisticsData as ne, type GetJobTypeStatisticsError as nf, type GetJobTypeStatisticsErrors as ng, type GetJobTypeStatisticsResponse as nh, type GetJobTypeStatisticsResponses as ni, type GetJobWorkerStatisticsData as nj, type GetJobWorkerStatisticsError as nk, type GetJobWorkerStatisticsErrors as nl, type GetJobWorkerStatisticsResponse as nm, type GetJobWorkerStatisticsResponses as nn, type GetLicenseData as no, type GetLicenseError as np, type GetLicenseErrors as nq, type GetLicenseResponse as nr, type GetLicenseResponses as ns, type GetMappingRuleData as nt, type GetMappingRuleError as nu, type GetMappingRuleErrors as nv, type GetMappingRuleResponse as nw, type GetMappingRuleResponses as nx, type GetProcessDefinitionData as ny, type GetProcessDefinitionError as nz, type ActivateJobsResponse as o, type GetRuntimeBackupAsClusterAdminResponse as o$, type GetProcessInstanceCallHierarchyData as o0, type GetProcessInstanceCallHierarchyError as o1, type GetProcessInstanceCallHierarchyErrors as o2, type GetProcessInstanceCallHierarchyResponse as o3, type GetProcessInstanceCallHierarchyResponses as o4, type GetProcessInstanceData as o5, type GetProcessInstanceError as o6, type GetProcessInstanceErrors as o7, type GetProcessInstanceResponse as o8, type GetProcessInstanceResponses as o9, type GetResourceContentBinaryError as oA, type GetResourceContentBinaryErrors as oB, type GetResourceContentBinaryResponse as oC, type GetResourceContentBinaryResponses as oD, type GetResourceContentData as oE, type GetResourceContentError as oF, type GetResourceContentErrors as oG, type GetResourceContentResponse as oH, type GetResourceContentResponses as oI, type GetResourceData as oJ, type GetResourceError as oK, type GetResourceErrors as oL, type GetResourceResponse as oM, type GetResourceResponses as oN, type GetRestoreStatusData as oO, type GetRestoreStatusError as oP, type GetRestoreStatusErrors as oQ, type GetRestoreStatusResponse as oR, type GetRestoreStatusResponses as oS, type GetRoleData as oT, type GetRoleError as oU, type GetRoleErrors as oV, type GetRoleResponse as oW, type GetRoleResponses as oX, type GetRuntimeBackupAsClusterAdminData as oY, type GetRuntimeBackupAsClusterAdminError as oZ, type GetRuntimeBackupAsClusterAdminErrors as o_, type GetProcessInstanceSequenceFlowsData as oa, type GetProcessInstanceSequenceFlowsError as ob, type GetProcessInstanceSequenceFlowsErrors as oc, type GetProcessInstanceSequenceFlowsResponse as od, type GetProcessInstanceSequenceFlowsResponses as oe, type GetProcessInstanceStatisticsByDefinitionData as of, type GetProcessInstanceStatisticsByDefinitionError as og, type GetProcessInstanceStatisticsByDefinitionErrors as oh, type GetProcessInstanceStatisticsByDefinitionResponse as oi, type GetProcessInstanceStatisticsByDefinitionResponses as oj, type GetProcessInstanceStatisticsByErrorData as ok, type GetProcessInstanceStatisticsByErrorError as ol, type GetProcessInstanceStatisticsByErrorErrors as om, type GetProcessInstanceStatisticsByErrorResponse as on, type GetProcessInstanceStatisticsByErrorResponses as oo, type GetProcessInstanceStatisticsData as op, type GetProcessInstanceStatisticsError as oq, type GetProcessInstanceStatisticsErrors as or, type GetProcessInstanceStatisticsResponse as os, type GetProcessInstanceStatisticsResponses as ot, type GetProcessInstanceWaitStateStatisticsData as ou, type GetProcessInstanceWaitStateStatisticsError as ov, type GetProcessInstanceWaitStateStatisticsErrors as ow, type GetProcessInstanceWaitStateStatisticsResponse as ox, type GetProcessInstanceWaitStateStatisticsResponses as oy, type GetResourceContentBinaryData as oz, type ActivateJobsResponses as p, type GetUserTaskResponse as p$, type GetRuntimeBackupAsClusterAdminResponses as p0, type GetRuntimeBackupData as p1, type GetRuntimeBackupError as p2, type GetRuntimeBackupErrors as p3, type GetRuntimeBackupResponse as p4, type GetRuntimeBackupResponses as p5, type GetRuntimeBackupStateAsClusterAdminData as p6, type GetRuntimeBackupStateAsClusterAdminError as p7, type GetRuntimeBackupStateAsClusterAdminErrors as p8, type GetRuntimeBackupStateAsClusterAdminResponse as p9, type GetTenantError as pA, type GetTenantErrors as pB, type GetTenantResponse as pC, type GetTenantResponses as pD, type GetTopologyData as pE, type GetTopologyError as pF, type GetTopologyErrors as pG, type GetTopologyResponse as pH, type GetTopologyResponses as pI, type GetUsageMetricsData as pJ, type GetUsageMetricsError as pK, type GetUsageMetricsErrors as pL, type GetUsageMetricsResponse as pM, type GetUsageMetricsResponses as pN, type GetUserData as pO, type GetUserError as pP, type GetUserErrors as pQ, type GetUserResponse as pR, type GetUserResponses as pS, type GetUserTaskData as pT, type GetUserTaskError as pU, type GetUserTaskErrors as pV, type GetUserTaskFormData as pW, type GetUserTaskFormError as pX, type GetUserTaskFormErrors as pY, type GetUserTaskFormResponse as pZ, type GetUserTaskFormResponses as p_, type GetRuntimeBackupStateAsClusterAdminResponses as pa, type GetRuntimeBackupStateData as pb, type GetRuntimeBackupStateError as pc, type GetRuntimeBackupStateErrors as pd, type GetRuntimeBackupStateResponse as pe, type GetRuntimeBackupStateResponses as pf, type GetStartProcessFormData as pg, type GetStartProcessFormError as ph, type GetStartProcessFormErrors as pi, type GetStartProcessFormResponse as pj, type GetStartProcessFormResponses as pk, type GetStatusData as pl, type GetStatusErrors as pm, type GetStatusResponse as pn, type GetStatusResponses as po, type GetSystemConfigurationData as pp, type GetSystemConfigurationError as pq, type GetSystemConfigurationErrors as pr, type GetSystemConfigurationResponse as ps, type GetSystemConfigurationResponses as pt, type GetTenantClusterVariableData as pu, type GetTenantClusterVariableError as pv, type GetTenantClusterVariableErrors as pw, type GetTenantClusterVariableResponse as px, type GetTenantClusterVariableResponses as py, type GetTenantData as pz, type AdHocSubProcessActivateActivitiesInstruction as q, type IncidentProcessInstanceStatisticsByErrorQuery as q$, type GetUserTaskResponses as q0, type GetVariableData as q1, type GetVariableError as q2, type GetVariableErrors as q3, type GetVariableResponse as q4, type GetVariableResponses as q5, type GlobalJobStatisticsQueryResult as q6, type GlobalListenerBase as q7, GlobalListenerId as q8, GlobalListenerSourceEnum as q9, type GroupSearchQueryRequest as qA, type GroupSearchQueryResult as qB, type GroupSearchQuerySortRequest as qC, type GroupUpdateRequest as qD, type GroupUpdateResult as qE, type GroupUserResult as qF, type GroupUserSearchQueryRequest as qG, type GroupUserSearchQuerySortRequest as qH, type GroupUserSearchResult as qI, type HandlerClock as qJ, type HistoryBackupInfo as qK, type HistoryBackupInfoWritable as qL, type HistoryBackupSnapshotInfo as qM, type HistoryBackupStateCode as qN, type HttpRetryPolicy as qO, IncidentErrorTypeEnum as qP, type IncidentErrorTypeExactMatch as qQ, type IncidentErrorTypeExactMatchWritable as qR, type IncidentErrorTypeFilterProperty as qS, type IncidentFilter as qT, IncidentKey as qU, type IncidentKeyWritable as qV, type IncidentProcessInstanceStatisticsByDefinitionFilter as qW, type IncidentProcessInstanceStatisticsByDefinitionQuery as qX, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as qY, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as qZ, type IncidentProcessInstanceStatisticsByDefinitionResult as q_, type GlobalListenerSourceExactMatch as qa, type GlobalListenerSourceExactMatchWritable as qb, type GlobalListenerSourceFilterProperty as qc, type GlobalTaskListenerBase as qd, GlobalTaskListenerEventTypeEnum as qe, type GlobalTaskListenerEventTypeExactMatch as qf, type GlobalTaskListenerEventTypeExactMatchWritable as qg, type GlobalTaskListenerEventTypeFilterProperty as qh, type GlobalTaskListenerEventTypes as qi, type GlobalTaskListenerEventTypesWritable as qj, type GlobalTaskListenerResult as qk, type GlobalTaskListenerSearchQueryFilterRequest as ql, type GlobalTaskListenerSearchQueryRequest as qm, type GlobalTaskListenerSearchQueryResult as qn, type GlobalTaskListenerSearchQuerySortRequest as qo, type GroupClientResult as qp, type GroupClientSearchQueryRequest as qq, type GroupClientSearchQuerySortRequest as qr, type GroupClientSearchResult as qs, type GroupCreateRequest as qt, type GroupCreateResult as qu, type GroupFilter as qv, GroupId as qw, type GroupMappingRuleSearchResult as qx, type GroupResult as qy, type GroupRoleSearchResult as qz, type AdHocSubProcessActivateActivityReference as r, type JobUpdateRequest as r$, type IncidentProcessInstanceStatisticsByErrorQueryResult as r0, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as r1, type IncidentProcessInstanceStatisticsByErrorResult as r2, type IncidentResolutionRequest as r3, type IncidentResult as r4, type IncidentSearchQuery as r5, type IncidentSearchQueryResult as r6, type IncidentSearchQuerySortRequest as r7, IncidentStateEnum as r8, type IncidentStateExactMatch as r9, type JobKindFilterProperty as rA, JobListenerEventTypeEnum as rB, type JobListenerEventTypeExactMatch as rC, type JobListenerEventTypeExactMatchWritable as rD, type JobListenerEventTypeFilterProperty as rE, type JobMetricsConfigurationResponse as rF, type JobResult as rG, type JobResultActivateElement as rH, type JobResultAdHocSubProcess as rI, type JobResultCorrections as rJ, type JobResultUserTask as rK, type JobSearchQuery as rL, type JobSearchQueryResult as rM, type JobSearchQuerySortRequest as rN, type JobSearchResult as rO, JobStateEnum as rP, type JobStateExactMatch as rQ, type JobStateExactMatchWritable as rR, type JobStateFilterProperty as rS, type JobTimeSeriesStatisticsFilter as rT, type JobTimeSeriesStatisticsItem as rU, type JobTimeSeriesStatisticsQuery as rV, type JobTimeSeriesStatisticsQueryResult as rW, type JobTypeStatisticsFilter as rX, type JobTypeStatisticsItem as rY, type JobTypeStatisticsQuery as rZ, type JobTypeStatisticsQueryResult as r_, type IncidentStateExactMatchWritable as ra, type IncidentStateFilterProperty as rb, type InferredAncestorKeyInstruction as rc, type IntegerFilterProperty as rd, type Job as re, JobActionReceipt as rf, type JobActivationRequest as rg, type JobActivationResult as rh, type JobBatchUpdateRequest as ri, type JobChangeset as rj, type JobCompletionRequest as rk, type JobErrorRequest$1 as rl, type JobErrorStatisticsFilter as rm, type JobErrorStatisticsItem as rn, type JobErrorStatisticsQuery as ro, type JobErrorStatisticsQueryResult as rp, type JobFailRequest as rq, type JobFilter as rr, JobKey as rs, type JobKeyExactMatch as rt, type JobKeyExactMatchWritable as ru, type JobKeyFilterProperty as rv, type JobKeyWritable as rw, JobKindEnum as rx, type JobKindExactMatch as ry, type JobKindExactMatchWritable as rz, type AdvancedActorTypeFilter as s, type MessageSubscriptionSearchQuery as s$, type JobWaitStateDetails as s0, JobWorker as s1, type JobWorkerConfig as s2, type JobWorkerStatisticsFilter as s3, type JobWorkerStatisticsItem as s4, type JobWorkerStatisticsQuery as s5, type JobWorkerStatisticsQueryResult as s6, type LicenseResponse as s7, type LikeFilter as s8, type LimitPagination as s9, type LoopIterationId as sA, type MappingRuleCreateRequest as sB, type MappingRuleCreateResult as sC, type MappingRuleCreateUpdateRequest as sD, type MappingRuleCreateUpdateResult as sE, type MappingRuleFilter as sF, MappingRuleId as sG, type MappingRuleResult as sH, type MappingRuleSearchQueryRequest as sI, type MappingRuleSearchQueryResult as sJ, type MappingRuleSearchQuerySortRequest as sK, type MappingRuleUpdateRequest as sL, type MappingRuleUpdateResult as sM, type MatchedDecisionRuleItem as sN, type MessageCorrelationRequest as sO, type MessageCorrelationResult as sP, MessageKey as sQ, type MessageKeyWritable as sR, type MessagePublicationRequest as sS, type MessagePublicationResult as sT, type MessageSubscriptionFilter as sU, MessageSubscriptionKey as sV, type MessageSubscriptionKeyExactMatch as sW, type MessageSubscriptionKeyExactMatchWritable as sX, type MessageSubscriptionKeyFilterProperty as sY, type MessageSubscriptionKeyWritable as sZ, type MessageSubscriptionResult as s_, type ListHistoryBackupsAsClusterAdminData as sa, type ListHistoryBackupsAsClusterAdminError as sb, type ListHistoryBackupsAsClusterAdminErrors as sc, type ListHistoryBackupsAsClusterAdminResponse as sd, type ListHistoryBackupsAsClusterAdminResponses as se, type ListHistoryBackupsData as sf, type ListHistoryBackupsError as sg, type ListHistoryBackupsErrors as sh, type ListHistoryBackupsResponse as si, type ListHistoryBackupsResponses as sj, type ListRuntimeBackupsAsClusterAdminData as sk, type ListRuntimeBackupsAsClusterAdminError as sl, type ListRuntimeBackupsAsClusterAdminErrors as sm, type ListRuntimeBackupsAsClusterAdminResponse as sn, type ListRuntimeBackupsAsClusterAdminResponses as so, type ListRuntimeBackupsData as sp, type ListRuntimeBackupsError as sq, type ListRuntimeBackupsErrors as sr, type ListRuntimeBackupsResponse as ss, type ListRuntimeBackupsResponses as st, type ListSecretsData as su, type ListSecretsError as sv, type ListSecretsErrors as sw, type ListSecretsResponse as sx, type ListSecretsResponses as sy, type LongKey as sz, type AdvancedAgentDefinitionKeyFilter as t, type PinClockData as t$, type MessageSubscriptionSearchQueryResult as t0, type MessageSubscriptionSearchQuerySortRequest as t1, MessageSubscriptionStateEnum as t2, type MessageSubscriptionStateExactMatch as t3, type MessageSubscriptionStateExactMatchWritable as t4, type MessageSubscriptionStateFilterProperty as t5, MessageSubscriptionTypeEnum as t6, type MessageSubscriptionTypeExactMatch as t7, type MessageSubscriptionTypeExactMatchWritable as t8, type MessageSubscriptionTypeFilterProperty as t9, type OperationReference as tA, type OperationTypeExactMatch as tB, type OperationTypeExactMatchWritable as tC, type OperationTypeFilterProperty as tD, type OwnAuthorizationSearchResult as tE, OwnerTypeEnum as tF, type PaginateOptions as tG, type Partition as tH, type PartitionBackupInfo as tI, type PartitionBackupInfoWritable as tJ, type PartitionBackupRange as tK, type PartitionBackupState as tL, type PartitionCheckpointState as tM, type PartitionId as tN, type PauseClusterExportingData as tO, type PauseClusterExportingError as tP, type PauseClusterExportingErrors as tQ, type PauseClusterExportingResponse as tR, type PauseClusterExportingResponses as tS, type PauseExportingData as tT, type PauseExportingError as tU, type PauseExportingErrors as tV, type PauseExportingResponse as tW, type PauseExportingResponses as tX, PermissionTypeEnum as tY, type PhysicalTenantBrokerTopology as tZ, type PhysicalTenantTopology as t_, type MessageWaitStateDetails as ta, type MigrateProcessInstanceData as tb, type MigrateProcessInstanceError as tc, type MigrateProcessInstanceErrors as td, type MigrateProcessInstanceMappingInstruction as te, type MigrateProcessInstanceResponse as tf, type MigrateProcessInstanceResponses as tg, type MigrateProcessInstancesBatchOperationData as th, type MigrateProcessInstancesBatchOperationError as ti, type MigrateProcessInstancesBatchOperationErrors as tj, type MigrateProcessInstancesBatchOperationResponse as tk, type MigrateProcessInstancesBatchOperationResponses as tl, type Mode as tm, type ModifyProcessInstanceData as tn, type ModifyProcessInstanceError as to, type ModifyProcessInstanceErrors as tp, type ModifyProcessInstanceResponse as tq, type ModifyProcessInstanceResponses as tr, type ModifyProcessInstanceVariableInstruction as ts, type ModifyProcessInstancesBatchOperationData as tt, type ModifyProcessInstancesBatchOperationError as tu, type ModifyProcessInstancesBatchOperationErrors as tv, type ModifyProcessInstancesBatchOperationResponse as tw, type ModifyProcessInstancesBatchOperationResponses as tx, type OffsetPagination as ty, type OperationOptions as tz, type AdvancedAgentDefinitionTypeFilter as u, type ProcessInstanceModificationInstruction as u$, type PinClockError as u0, type PinClockErrors as u1, type PinClockResponse as u2, type PinClockResponses as u3, type ProblemDetail as u4, type ProcessDefinitionElementStatisticsQuery as u5, type ProcessDefinitionElementStatisticsQueryResult as u6, type ProcessDefinitionFilter as u7, ProcessDefinitionId as u8, type ProcessDefinitionIdExactMatch as u9, type ProcessDefinitionVariableNameSearchQueryResult as uA, type ProcessDefinitionVariableNameSearchResult as uB, type ProcessElementStatisticsResult as uC, type ProcessInstanceBusinessIdAssignmentInstruction as uD, type ProcessInstanceCallHierarchyEntry as uE, type ProcessInstanceCancellationBatchOperationRequest as uF, type ProcessInstanceCreationInstruction as uG, type ProcessInstanceCreationInstructionById as uH, type ProcessInstanceCreationInstructionByKey as uI, type ProcessInstanceCreationRuntimeInstruction as uJ, type ProcessInstanceCreationStartInstruction as uK, type ProcessInstanceCreationTerminateInstruction as uL, type ProcessInstanceDeletionBatchOperationRequest as uM, type ProcessInstanceElementStatisticsQueryResult as uN, type ProcessInstanceFilter as uO, type ProcessInstanceFilterFields as uP, type ProcessInstanceIncidentResolutionBatchOperationRequest as uQ, ProcessInstanceKey as uR, type ProcessInstanceKeyExactMatch as uS, type ProcessInstanceKeyExactMatchWritable as uT, type ProcessInstanceKeyFilterProperty as uU, type ProcessInstanceKeyWritable as uV, type ProcessInstanceMigrationBatchOperationPlan as uW, type ProcessInstanceMigrationBatchOperationRequest as uX, type ProcessInstanceMigrationInstruction as uY, type ProcessInstanceModificationActivateInstruction as uZ, type ProcessInstanceModificationBatchOperationRequest as u_, type ProcessDefinitionIdExactMatchWritable as ua, type ProcessDefinitionIdFilterProperty as ub, type ProcessDefinitionInstanceStatisticsQuery as uc, type ProcessDefinitionInstanceStatisticsQueryResult as ud, type ProcessDefinitionInstanceStatisticsQuerySortRequest as ue, type ProcessDefinitionInstanceStatisticsResult as uf, type ProcessDefinitionInstanceVersionStatisticsFilter as ug, type ProcessDefinitionInstanceVersionStatisticsQuery as uh, type ProcessDefinitionInstanceVersionStatisticsQueryResult as ui, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as uj, type ProcessDefinitionInstanceVersionStatisticsResult as uk, ProcessDefinitionKey as ul, type ProcessDefinitionKeyExactMatch as um, type ProcessDefinitionKeyExactMatchWritable as un, type ProcessDefinitionKeyFilterProperty as uo, type ProcessDefinitionKeyWritable as up, type ProcessDefinitionMessageSubscriptionStatisticsQuery as uq, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as ur, type ProcessDefinitionMessageSubscriptionStatisticsResult as us, type ProcessDefinitionResult as ut, type ProcessDefinitionSearchQuery as uu, type ProcessDefinitionSearchQueryResult as uv, type ProcessDefinitionSearchQuerySortRequest as uw, type ProcessDefinitionStatisticsFilter as ux, type ProcessDefinitionVariableNameFilter as uy, type ProcessDefinitionVariableNameSearchQuery as uz, type AdvancedAgentHistoryItemKeyFilter as v, type RestoreAsClusterAdminData as v$, type ProcessInstanceModificationMoveBatchOperationInstruction as v0, type ProcessInstanceModificationMoveInstruction as v1, type ProcessInstanceModificationTerminateByIdInstruction as v2, type ProcessInstanceModificationTerminateByKeyInstruction as v3, type ProcessInstanceModificationTerminateInstruction as v4, type ProcessInstanceReference as v5, type ProcessInstanceResult as v6, type ProcessInstanceResumptionBatchOperationRequest as v7, type ProcessInstanceSearchQuery as v8, type ProcessInstanceSearchQueryResult as v9, type ResolveIncidentsBatchOperationData as vA, type ResolveIncidentsBatchOperationError as vB, type ResolveIncidentsBatchOperationErrors as vC, type ResolveIncidentsBatchOperationResponse as vD, type ResolveIncidentsBatchOperationResponses as vE, type ResolveProcessInstanceIncidentsData as vF, type ResolveProcessInstanceIncidentsError as vG, type ResolveProcessInstanceIncidentsErrors as vH, type ResolveProcessInstanceIncidentsResponse as vI, type ResolveProcessInstanceIncidentsResponses as vJ, type ResolveSecretsData as vK, type ResolveSecretsError as vL, type ResolveSecretsErrors as vM, type ResolveSecretsResponse as vN, type ResolveSecretsResponses as vO, type ResolvedSecret as vP, type ResourceFilter as vQ, type ResourceKey as vR, type ResourceKeyExactMatch as vS, type ResourceKeyExactMatchWritable as vT, type ResourceKeyFilterProperty as vU, type ResourceKeyWritable as vV, type ResourceResult as vW, type ResourceSearchQuery as vX, type ResourceSearchQueryResult as vY, type ResourceSearchQuerySortRequest as vZ, ResourceTypeEnum as v_, type ProcessInstanceSearchQuerySortRequest as va, type ProcessInstanceSequenceFlowResult as vb, type ProcessInstanceSequenceFlowsQueryResult as vc, ProcessInstanceStateEnum as vd, type ProcessInstanceStateExactMatch as ve, type ProcessInstanceStateExactMatchWritable as vf, type ProcessInstanceStateFilterProperty as vg, type ProcessInstanceSuspensionBatchOperationRequest as vh, type ProcessInstanceWaitStateStatisticsQueryResult as vi, type ProcessInstanceWaitStateStatisticsResult as vj, type PublishMessageData as vk, type PublishMessageError as vl, type PublishMessageErrors as vm, type PublishMessageResponse as vn, type PublishMessageResponses as vo, type RebalanceCancellationResponse as vp, type ResetClockData as vq, type ResetClockError as vr, type ResetClockErrors as vs, type ResetClockResponse as vt, type ResetClockResponses as vu, type ResolveIncidentData as vv, type ResolveIncidentError as vw, type ResolveIncidentErrors as vx, type ResolveIncidentResponse as vy, type ResolveIncidentResponses as vz, type AdvancedAgentInstanceHistoryCommitStatusFilter as w, type ScopeKey as w$, type RestoreAsClusterAdminError as w0, type RestoreAsClusterAdminErrors as w1, type RestoreAsClusterAdminResponse as w2, type RestoreAsClusterAdminResponses as w3, type RestoreBrokerStatus as w4, type RestoreData as w5, type RestoreError as w6, type RestoreErrors as w7, type RestorePartitionStatus as w8, type RestoreRequest as w9, type ResumeProcessInstancesBatchOperationErrors as wA, type ResumeProcessInstancesBatchOperationResponse as wB, type ResumeProcessInstancesBatchOperationResponses as wC, type RoleClientResult as wD, type RoleClientSearchQueryRequest as wE, type RoleClientSearchQuerySortRequest as wF, type RoleClientSearchResult as wG, type RoleCreateRequest as wH, type RoleCreateResult as wI, type RoleFilter as wJ, type RoleGroupResult as wK, type RoleGroupSearchQueryRequest as wL, type RoleGroupSearchQuerySortRequest as wM, type RoleGroupSearchResult as wN, RoleId as wO, type RoleMappingRuleSearchResult as wP, type RoleResult as wQ, type RoleSearchQueryRequest as wR, type RoleSearchQueryResult as wS, type RoleSearchQuerySortRequest as wT, type RoleUpdateRequest as wU, type RoleUpdateResult as wV, type RoleUserResult as wW, type RoleUserSearchQueryRequest as wX, type RoleUserSearchQuerySortRequest as wY, type RoleUserSearchResult as wZ, type RuntimeBackupState as w_, type RestoreResponse as wa, type RestoreResponses as wb, type RestoreStatusResponse as wc, type ResumeBatchOperationData as wd, type ResumeBatchOperationError as we, type ResumeBatchOperationErrors as wf, type ResumeBatchOperationResponse as wg, type ResumeBatchOperationResponses as wh, type ResumeClusterExportingData as wi, type ResumeClusterExportingError as wj, type ResumeClusterExportingErrors as wk, type ResumeClusterExportingResponse as wl, type ResumeClusterExportingResponses as wm, type ResumeExportingData as wn, type ResumeExportingError as wo, type ResumeExportingErrors as wp, type ResumeExportingResponse as wq, type ResumeExportingResponses as wr, type ResumeProcessInstanceData as ws, type ResumeProcessInstanceError as wt, type ResumeProcessInstanceErrors as wu, type ResumeProcessInstanceRequest as wv, type ResumeProcessInstanceResponse as ww, type ResumeProcessInstanceResponses as wx, type ResumeProcessInstancesBatchOperationData as wy, type ResumeProcessInstancesBatchOperationError as wz, type AdvancedAgentInstanceHistoryRoleFilter as x, type SearchDecisionDefinitionsData as x$, type ScopeKeyExactMatch as x0, type ScopeKeyExactMatchWritable as x1, type ScopeKeyFilterProperty as x2, type ScopeKeyWritable as x3, type SearchAgentDefinitionsData as x4, type SearchAgentDefinitionsError as x5, type SearchAgentDefinitionsErrors as x6, type SearchAgentDefinitionsResponse as x7, type SearchAgentDefinitionsResponses as x8, type SearchAgentInstanceHistoryData as x9, type SearchBatchOperationsErrors as xA, type SearchBatchOperationsResponse as xB, type SearchBatchOperationsResponses as xC, type SearchBody as xD, type SearchClientsForGroupData as xE, type SearchClientsForGroupError as xF, type SearchClientsForGroupErrors as xG, type SearchClientsForGroupResponse as xH, type SearchClientsForGroupResponses as xI, type SearchClientsForRoleData as xJ, type SearchClientsForRoleError as xK, type SearchClientsForRoleErrors as xL, type SearchClientsForRoleResponse as xM, type SearchClientsForRoleResponses as xN, type SearchClientsForTenantData as xO, type SearchClientsForTenantResponse as xP, type SearchClientsForTenantResponses as xQ, type SearchClusterVariablesData as xR, type SearchClusterVariablesError as xS, type SearchClusterVariablesErrors as xT, type SearchClusterVariablesResponse as xU, type SearchClusterVariablesResponses as xV, type SearchCorrelatedMessageSubscriptionsData as xW, type SearchCorrelatedMessageSubscriptionsError as xX, type SearchCorrelatedMessageSubscriptionsErrors as xY, type SearchCorrelatedMessageSubscriptionsResponse as xZ, type SearchCorrelatedMessageSubscriptionsResponses as x_, type SearchAgentInstanceHistoryError as xa, type SearchAgentInstanceHistoryErrors as xb, type SearchAgentInstanceHistoryResponse as xc, type SearchAgentInstanceHistoryResponses as xd, type SearchAgentInstancesData as xe, type SearchAgentInstancesError as xf, type SearchAgentInstancesErrors as xg, type SearchAgentInstancesResponse as xh, type SearchAgentInstancesResponses as xi, type SearchAuditLogsData as xj, type SearchAuditLogsError as xk, type SearchAuditLogsErrors as xl, type SearchAuditLogsResponse as xm, type SearchAuditLogsResponses as xn, type SearchAuthorizationsData as xo, type SearchAuthorizationsError as xp, type SearchAuthorizationsErrors as xq, type SearchAuthorizationsResponse as xr, type SearchAuthorizationsResponses as xs, type SearchBatchOperationItemsData as xt, type SearchBatchOperationItemsError as xu, type SearchBatchOperationItemsErrors as xv, type SearchBatchOperationItemsResponse as xw, type SearchBatchOperationItemsResponses as xx, type SearchBatchOperationsData as xy, type SearchBatchOperationsError as xz, type AdvancedAgentInstanceKeyFilter as y, type SearchMappingRulesForGroupError as y$, type SearchDecisionDefinitionsError as y0, type SearchDecisionDefinitionsErrors as y1, type SearchDecisionDefinitionsResponse as y2, type SearchDecisionDefinitionsResponses as y3, type SearchDecisionInstancesData as y4, type SearchDecisionInstancesError as y5, type SearchDecisionInstancesErrors as y6, type SearchDecisionInstancesResponse as y7, type SearchDecisionInstancesResponses as y8, type SearchDecisionRequirementsData as y9, type SearchGroupIdsForTenantResponses as yA, type SearchGroupsData as yB, type SearchGroupsError as yC, type SearchGroupsErrors as yD, type SearchGroupsForRoleData as yE, type SearchGroupsForRoleError as yF, type SearchGroupsForRoleErrors as yG, type SearchGroupsForRoleResponse as yH, type SearchGroupsForRoleResponses as yI, type SearchGroupsResponse as yJ, type SearchGroupsResponses as yK, type SearchIncidentsData as yL, type SearchIncidentsError as yM, type SearchIncidentsErrors as yN, type SearchIncidentsResponse as yO, type SearchIncidentsResponses as yP, type SearchJobsData as yQ, type SearchJobsError as yR, type SearchJobsErrors as yS, type SearchJobsResponse as yT, type SearchJobsResponses as yU, type SearchMappingRuleData as yV, type SearchMappingRuleError as yW, type SearchMappingRuleErrors as yX, type SearchMappingRuleResponse as yY, type SearchMappingRuleResponses as yZ, type SearchMappingRulesForGroupData as y_, type SearchDecisionRequirementsError as ya, type SearchDecisionRequirementsErrors as yb, type SearchDecisionRequirementsResponse as yc, type SearchDecisionRequirementsResponses as yd, type SearchElementInstanceIncidentsData as ye, type SearchElementInstanceIncidentsError as yf, type SearchElementInstanceIncidentsErrors as yg, type SearchElementInstanceIncidentsResponse as yh, type SearchElementInstanceIncidentsResponses as yi, type SearchElementInstanceWaitStatesData as yj, type SearchElementInstanceWaitStatesError as yk, type SearchElementInstanceWaitStatesErrors as yl, type SearchElementInstanceWaitStatesResponse as ym, type SearchElementInstanceWaitStatesResponses as yn, type SearchElementInstancesData as yo, type SearchElementInstancesError as yp, type SearchElementInstancesErrors as yq, type SearchElementInstancesResponse as yr, type SearchElementInstancesResponses as ys, type SearchGlobalTaskListenersData as yt, type SearchGlobalTaskListenersError as yu, type SearchGlobalTaskListenersErrors as yv, type SearchGlobalTaskListenersResponse as yw, type SearchGlobalTaskListenersResponses as yx, type SearchGroupIdsForTenantData as yy, type SearchGroupIdsForTenantResponse as yz, type AdvancedAgentInstanceStatusFilter as z, type SearchRolesForTenantResponses as z$, type SearchMappingRulesForGroupErrors as z0, type SearchMappingRulesForGroupResponse as z1, type SearchMappingRulesForGroupResponses as z2, type SearchMappingRulesForRoleData as z3, type SearchMappingRulesForRoleError as z4, type SearchMappingRulesForRoleErrors as z5, type SearchMappingRulesForRoleResponse as z6, type SearchMappingRulesForRoleResponses as z7, type SearchMappingRulesForTenantData as z8, type SearchMappingRulesForTenantResponse as z9, type SearchProcessInstanceIncidentsErrors as zA, type SearchProcessInstanceIncidentsResponse as zB, type SearchProcessInstanceIncidentsResponses as zC, type SearchProcessInstancesData as zD, type SearchProcessInstancesError as zE, type SearchProcessInstancesErrors as zF, type SearchProcessInstancesResponse as zG, type SearchProcessInstancesResponses as zH, type SearchQueryPageRequest as zI, type SearchQueryPageResponse as zJ, type SearchQueryRequest as zK, type SearchQueryResponse as zL, type SearchResourcesData as zM, type SearchResourcesError as zN, type SearchResourcesErrors as zO, type SearchResourcesResponse as zP, type SearchResourcesResponses as zQ, type SearchRolesData as zR, type SearchRolesError as zS, type SearchRolesErrors as zT, type SearchRolesForGroupData as zU, type SearchRolesForGroupError as zV, type SearchRolesForGroupErrors as zW, type SearchRolesForGroupResponse as zX, type SearchRolesForGroupResponses as zY, type SearchRolesForTenantData as zZ, type SearchRolesForTenantResponse as z_, type SearchMappingRulesForTenantResponses as za, type SearchMessageSubscriptionsData as zb, type SearchMessageSubscriptionsError as zc, type SearchMessageSubscriptionsErrors as zd, type SearchMessageSubscriptionsResponse as ze, type SearchMessageSubscriptionsResponses as zf, type SearchOwnAuthorizationsData as zg, type SearchOwnAuthorizationsError as zh, type SearchOwnAuthorizationsErrors as zi, type SearchOwnAuthorizationsResponse as zj, type SearchOwnAuthorizationsResponses as zk, type SearchPageRequest as zl, type SearchPageResponse as zm, type SearchPaginationApi as zn, type SearchProcessDefinitionVariableNamesData as zo, type SearchProcessDefinitionVariableNamesError as zp, type SearchProcessDefinitionVariableNamesErrors as zq, type SearchProcessDefinitionVariableNamesResponse as zr, type SearchProcessDefinitionVariableNamesResponses as zs, type SearchProcessDefinitionsData as zt, type SearchProcessDefinitionsError as zu, type SearchProcessDefinitionsErrors as zv, type SearchProcessDefinitionsResponse as zw, type SearchProcessDefinitionsResponses as zx, type SearchProcessInstanceIncidentsData as zy, type SearchProcessInstanceIncidentsError as zz };
34712
+ export { type AdvancedIncidentErrorTypeFilter as $, type ActivatedJobResult$1 as A, type SourceElementIdInstruction as A$, type SearchRolesResponse as A0, type SearchRolesResponses as A1, type SearchTenantsData as A2, type SearchTenantsError as A3, type SearchTenantsErrors as A4, type SearchTenantsResponse as A5, type SearchTenantsResponses as A6, type SearchUserTaskAuditLogsData as A7, type SearchUserTaskAuditLogsError as A8, type SearchUserTaskAuditLogsErrors as A9, type SearchUsersForRoleError as AA, type SearchUsersForRoleErrors as AB, type SearchUsersForRoleResponse as AC, type SearchUsersForRoleResponses as AD, type SearchUsersForTenantData as AE, type SearchUsersForTenantResponse as AF, type SearchUsersForTenantResponses as AG, type SearchUsersResponse as AH, type SearchUsersResponses as AI, type SearchVariablesData as AJ, type SearchVariablesError as AK, type SearchVariablesErrors as AL, type SearchVariablesResponse as AM, type SearchVariablesResponses as AN, type SecretErrorCode as AO, type SecretListRequest as AP, type SecretListResult as AQ, type SecretResolutionError as AR, type SecretResolveRequest as AS, type SecretResolveResult as AT, type SetVariableRequest as AU, type SignalBroadcastRequest as AV, type SignalBroadcastResult as AW, SignalKey as AX, type SignalKeyWritable as AY, type SignalWaitStateDetails as AZ, SortOrderEnum as A_, type SearchUserTaskAuditLogsResponse as Aa, type SearchUserTaskAuditLogsResponses as Ab, type SearchUserTaskEffectiveVariablesData as Ac, type SearchUserTaskEffectiveVariablesError as Ad, type SearchUserTaskEffectiveVariablesErrors as Ae, type SearchUserTaskEffectiveVariablesResponse as Af, type SearchUserTaskEffectiveVariablesResponses as Ag, type SearchUserTaskVariablesData as Ah, type SearchUserTaskVariablesError as Ai, type SearchUserTaskVariablesErrors as Aj, type SearchUserTaskVariablesResponse as Ak, type SearchUserTaskVariablesResponses as Al, type SearchUserTasksData as Am, type SearchUserTasksError as An, type SearchUserTasksErrors as Ao, type SearchUserTasksResponse as Ap, type SearchUserTasksResponses as Aq, type SearchUsersData as Ar, type SearchUsersError as As, type SearchUsersErrors as At, type SearchUsersForGroupData as Au, type SearchUsersForGroupError as Av, type SearchUsersForGroupErrors as Aw, type SearchUsersForGroupResponse as Ax, type SearchUsersForGroupResponses as Ay, type SearchUsersForRoleData as Az, type AdvancedAuditLogEntityKeyFilter as B, type TenantClientSearchQueryRequest as B$, type SourceElementInstanceKeyInstruction as B0, type SourceElementInstruction as B1, StartCursor as B2, type StateCode as B3, type StatusMetric as B4, type StringFilterProperty as B5, type SupportLogger as B6, type SuspendBatchOperationData as B7, type SuspendBatchOperationError as B8, type SuspendBatchOperationErrors as B9, type TagSetWritable as BA, type TakeHistoryBackupAsClusterAdminData as BB, type TakeHistoryBackupAsClusterAdminError as BC, type TakeHistoryBackupAsClusterAdminErrors as BD, type TakeHistoryBackupAsClusterAdminResponse as BE, type TakeHistoryBackupAsClusterAdminResponses as BF, type TakeHistoryBackupData as BG, type TakeHistoryBackupError as BH, type TakeHistoryBackupErrors as BI, type TakeHistoryBackupRequest as BJ, type TakeHistoryBackupResponse as BK, type TakeHistoryBackupResponse2 as BL, type TakeHistoryBackupResponses as BM, type TakeRuntimeBackupAsClusterAdminData as BN, type TakeRuntimeBackupAsClusterAdminError as BO, type TakeRuntimeBackupAsClusterAdminErrors as BP, type TakeRuntimeBackupAsClusterAdminResponse as BQ, type TakeRuntimeBackupAsClusterAdminResponses as BR, type TakeRuntimeBackupData as BS, type TakeRuntimeBackupError as BT, type TakeRuntimeBackupErrors as BU, type TakeRuntimeBackupRequest as BV, type TakeRuntimeBackupResponse as BW, type TakeRuntimeBackupResponse2 as BX, type TakeRuntimeBackupResponses as BY, type TelemetryHooks as BZ, type TenantClientResult as B_, type SuspendBatchOperationResponse as Ba, type SuspendBatchOperationResponses as Bb, type SuspendProcessInstanceData as Bc, type SuspendProcessInstanceError as Bd, type SuspendProcessInstanceErrors as Be, type SuspendProcessInstanceRequest as Bf, type SuspendProcessInstanceResponse as Bg, type SuspendProcessInstanceResponses as Bh, type SuspendProcessInstancesBatchOperationData as Bi, type SuspendProcessInstancesBatchOperationError as Bj, type SuspendProcessInstancesBatchOperationErrors as Bk, type SuspendProcessInstancesBatchOperationResponse as Bl, type SuspendProcessInstancesBatchOperationResponses as Bm, type SyncRuntimeBackupStateAsClusterAdminData as Bn, type SyncRuntimeBackupStateAsClusterAdminError as Bo, type SyncRuntimeBackupStateAsClusterAdminErrors as Bp, type SyncRuntimeBackupStateAsClusterAdminResponse as Bq, type SyncRuntimeBackupStateAsClusterAdminResponses as Br, type SyncRuntimeBackupStateData as Bs, type SyncRuntimeBackupStateError as Bt, type SyncRuntimeBackupStateErrors as Bu, type SyncRuntimeBackupStateResponse as Bv, type SyncRuntimeBackupStateResponses as Bw, type SystemConfigurationResponse as Bx, Tag as By, type TagSet as Bz, type ConsistencyOptions as C, type UnassignMappingRuleFromGroupResponses as C$, type TenantClientSearchQuerySortRequest as C0, type TenantClientSearchResult as C1, type TenantCreateRequest as C2, type TenantCreateResult as C3, type TenantFilter as C4, TenantFilterEnum as C5, type TenantGroupResult as C6, type TenantGroupSearchQueryRequest as C7, type TenantGroupSearchQuerySortRequest as C8, type TenantGroupSearchResult as C9, type TriggerClusterRebalanceData as CA, type TriggerClusterRebalanceError as CB, type TriggerClusterRebalanceErrors as CC, type TriggerClusterRebalanceResponse as CD, type TriggerClusterRebalanceResponses as CE, type TypedVariableItem as CF, type TypedVariablePage as CG, TypedVariablesError as CH, type UnassignClientFromGroupData as CI, type UnassignClientFromGroupError as CJ, type UnassignClientFromGroupErrors as CK, type UnassignClientFromGroupResponse as CL, type UnassignClientFromGroupResponses as CM, type UnassignClientFromTenantData as CN, type UnassignClientFromTenantError as CO, type UnassignClientFromTenantErrors as CP, type UnassignClientFromTenantResponse as CQ, type UnassignClientFromTenantResponses as CR, type UnassignGroupFromTenantData as CS, type UnassignGroupFromTenantError as CT, type UnassignGroupFromTenantErrors as CU, type UnassignGroupFromTenantResponse as CV, type UnassignGroupFromTenantResponses as CW, type UnassignMappingRuleFromGroupData as CX, type UnassignMappingRuleFromGroupError as CY, type UnassignMappingRuleFromGroupErrors as CZ, type UnassignMappingRuleFromGroupResponse as C_, TenantId as Ca, type TenantMappingRuleSearchResult as Cb, type TenantResult as Cc, type TenantRoleSearchResult as Cd, type TenantSearchQueryRequest as Ce, type TenantSearchQueryResult as Cf, type TenantSearchQuerySortRequest as Cg, type TenantUpdateRequest as Ch, type TenantUpdateResult as Ci, type TenantUserResult as Cj, type TenantUserSearchQueryRequest as Ck, type TenantUserSearchQuerySortRequest as Cl, type TenantUserSearchResult as Cm, type TestClock as Cn, ThreadPool as Co, type ThreadedJob as Cp, type ThreadedJobHandler as Cq, ThreadedJobWorker as Cr, type ThreadedJobWorkerConfig as Cs, type ThrowJobErrorData as Ct, type ThrowJobErrorError as Cu, type ThrowJobErrorErrors as Cv, type ThrowJobErrorResponse as Cw, type ThrowJobErrorResponses as Cx, type TimerWaitStateDetails as Cy, type TopologyResponse as Cz, type AdvancedAuditLogKeyFilter as D, type UpdateGlobalTaskListenerErrors as D$, type UnassignMappingRuleFromTenantData as D0, type UnassignMappingRuleFromTenantError as D1, type UnassignMappingRuleFromTenantErrors as D2, type UnassignMappingRuleFromTenantResponse as D3, type UnassignMappingRuleFromTenantResponses as D4, type UnassignRoleFromClientData as D5, type UnassignRoleFromClientError as D6, type UnassignRoleFromClientErrors as D7, type UnassignRoleFromClientResponse as D8, type UnassignRoleFromClientResponses as D9, type UnassignUserFromTenantError as DA, type UnassignUserFromTenantErrors as DB, type UnassignUserFromTenantResponse as DC, type UnassignUserFromTenantResponses as DD, type UnassignUserTaskData as DE, type UnassignUserTaskError as DF, type UnassignUserTaskErrors as DG, type UnassignUserTaskResponse as DH, type UnassignUserTaskResponses as DI, type UpdateAgentInstanceData as DJ, type UpdateAgentInstanceError as DK, type UpdateAgentInstanceErrors as DL, type UpdateAgentInstanceResponse as DM, type UpdateAgentInstanceResponses as DN, type UpdateAuthorizationData as DO, type UpdateAuthorizationError as DP, type UpdateAuthorizationErrors as DQ, type UpdateAuthorizationResponse as DR, type UpdateAuthorizationResponses as DS, type UpdateClusterVariableRequest as DT, type UpdateGlobalClusterVariableData as DU, type UpdateGlobalClusterVariableError as DV, type UpdateGlobalClusterVariableErrors as DW, type UpdateGlobalClusterVariableResponse as DX, type UpdateGlobalClusterVariableResponses as DY, type UpdateGlobalTaskListenerData as DZ, type UpdateGlobalTaskListenerError as D_, type UnassignRoleFromGroupData as Da, type UnassignRoleFromGroupError as Db, type UnassignRoleFromGroupErrors as Dc, type UnassignRoleFromGroupResponse as Dd, type UnassignRoleFromGroupResponses as De, type UnassignRoleFromMappingRuleData as Df, type UnassignRoleFromMappingRuleError as Dg, type UnassignRoleFromMappingRuleErrors as Dh, type UnassignRoleFromMappingRuleResponse as Di, type UnassignRoleFromMappingRuleResponses as Dj, type UnassignRoleFromTenantData as Dk, type UnassignRoleFromTenantError as Dl, type UnassignRoleFromTenantErrors as Dm, type UnassignRoleFromTenantResponse as Dn, type UnassignRoleFromTenantResponses as Do, type UnassignRoleFromUserData as Dp, type UnassignRoleFromUserError as Dq, type UnassignRoleFromUserErrors as Dr, type UnassignRoleFromUserResponse as Ds, type UnassignRoleFromUserResponses as Dt, type UnassignUserFromGroupData as Du, type UnassignUserFromGroupError as Dv, type UnassignUserFromGroupErrors as Dw, type UnassignUserFromGroupResponse as Dx, type UnassignUserFromGroupResponses as Dy, type UnassignUserFromTenantData as Dz, type AdvancedBatchOperationItemStateFilter as E, type UserTaskFilter as E$, type UpdateGlobalTaskListenerRequest as E0, type UpdateGlobalTaskListenerResponse as E1, type UpdateGlobalTaskListenerResponses as E2, type UpdateGroupData as E3, type UpdateGroupError as E4, type UpdateGroupErrors as E5, type UpdateGroupResponse as E6, type UpdateGroupResponses as E7, type UpdateJobData as E8, type UpdateJobError as E9, type UpdateTenantResponse as EA, type UpdateTenantResponses as EB, type UpdateUserData as EC, type UpdateUserError as ED, type UpdateUserErrors as EE, type UpdateUserResponse as EF, type UpdateUserResponses as EG, type UpdateUserTaskData as EH, type UpdateUserTaskError as EI, type UpdateUserTaskErrors as EJ, type UpdateUserTaskResponse as EK, type UpdateUserTaskResponses as EL, type UsageMetricsResponse as EM, type UsageMetricsResponseItem as EN, type UseSourceParentKeyInstruction as EO, type UserCreateResult as EP, type UserFilter as EQ, type UserRequest as ER, type UserResult as ES, type UserSearchQueryRequest as ET, type UserSearchQuerySortRequest as EU, type UserSearchResult as EV, type UserTaskAssignmentRequest as EW, type UserTaskAuditLogFilter as EX, type UserTaskAuditLogSearchQueryRequest as EY, type UserTaskCompletionRequest as EZ, type UserTaskEffectiveVariableSearchQueryRequest as E_, type UpdateJobErrors as Ea, type UpdateJobResponse as Eb, type UpdateJobResponses as Ec, type UpdateJobsBatchOperationData as Ed, type UpdateJobsBatchOperationError as Ee, type UpdateJobsBatchOperationErrors as Ef, type UpdateJobsBatchOperationResponse as Eg, type UpdateJobsBatchOperationResponses as Eh, type UpdateMappingRuleData as Ei, type UpdateMappingRuleError as Ej, type UpdateMappingRuleErrors as Ek, type UpdateMappingRuleResponse as El, type UpdateMappingRuleResponses as Em, type UpdateRoleData as En, type UpdateRoleError as Eo, type UpdateRoleErrors as Ep, type UpdateRoleResponse as Eq, type UpdateRoleResponses as Er, type UpdateTenantClusterVariableData as Es, type UpdateTenantClusterVariableError as Et, type UpdateTenantClusterVariableErrors as Eu, type UpdateTenantClusterVariableResponse as Ev, type UpdateTenantClusterVariableResponses as Ew, type UpdateTenantData as Ex, type UpdateTenantError as Ey, type UpdateTenantErrors as Ez, type AdvancedBatchOperationStateFilter as F, type assignUserToGroupInput as F$, type UserTaskFilterFields as F0, UserTaskKey as F1, type UserTaskKeyWritable as F2, type UserTaskProperties as F3, type UserTaskResult as F4, type UserTaskSearchQuery as F5, type UserTaskSearchQueryResult as F6, type UserTaskSearchQuerySortRequest as F7, UserTaskStateEnum as F8, type UserTaskStateExactMatch as F9, type VariableSearchResult as FA, type VariableValueFilterProperty as FB, type WaitStateDetails as FC, WaitStateElementTypeEnum as FD, type WaitStateElementTypeExactMatch as FE, type WaitStateElementTypeExactMatchWritable as FF, type WaitStateElementTypeFilterProperty as FG, WaitStateTypeEnum as FH, type WaitStateTypeExactMatch as FI, type WaitStateTypeExactMatchWritable as FJ, type WaitStateTypeFilterProperty as FK, type WebappComponent as FL, type activateAdHocSubProcessActivitiesInput as FM, type activateJobsInput as FN, assertConstraint as FO, type assignClientToGroupInput as FP, type assignClientToTenantInput as FQ, type assignGroupToTenantInput as FR, type assignMappingRuleToGroupInput as FS, type assignMappingRuleToTenantInput as FT, type assignProcessInstanceBusinessIdInput as FU, type assignRoleToClientInput as FV, type assignRoleToGroupInput as FW, type assignRoleToMappingRuleInput as FX, type assignRoleToTenantInput as FY, type assignRoleToUserInput as FZ, type assignUserTaskInput as F_, type UserTaskStateExactMatchWritable as Fa, type UserTaskStateFilterProperty as Fb, type UserTaskUpdateRequest as Fc, type UserTaskVariableFilter as Fd, type UserTaskVariableSearchQueryRequest as Fe, type UserTaskVariableSearchQuerySortRequest as Ff, type UserTaskWaitStateDetails as Fg, type UserUpdateRequest as Fh, type UserUpdateResult as Fi, Username as Fj, type ValidationMode as Fk, VariableCollector as Fl, VariableDeserializationError as Fm, type VariableFilter as Fn, VariableKey as Fo, type VariableKeyExactMatch as Fp, type VariableKeyExactMatchWritable as Fq, type VariableKeyFilterProperty as Fr, type VariableKeyWritable as Fs, VariableMap as Ft, type VariableResult as Fu, type VariableResultBase as Fv, VariableScopeCollisionError as Fw, type VariableSearchQuery as Fx, type VariableSearchQueryResult as Fy, type VariableSearchQuerySortRequest as Fz, type AdvancedBatchOperationTypeFilter as G, type getAuthorizationConsistency as G$, type assignUserToTenantInput as G0, type broadcastSignalInput as G1, type cancelBatchOperationInput as G2, type cancelClusterRebalanceInput as G3, type cancelProcessInstanceInput as G4, type cancelProcessInstancesBatchOperationInput as G5, type changeClusterModeAsClusterAdminInput as G6, type changeClusterModeInput as G7, collectTypedVariables as G8, type completeJobInput as G9, type deleteGlobalTaskListenerInput as GA, type deleteGroupInput as GB, type deleteHistoryBackupAsClusterAdminInput as GC, type deleteHistoryBackupInput as GD, type deleteMappingRuleInput as GE, type deleteProcessInstanceInput as GF, type deleteProcessInstancesBatchOperationInput as GG, type deleteResourceInput as GH, type deleteRoleInput as GI, type deleteRuntimeBackupAsClusterAdminInput as GJ, type deleteRuntimeBackupInput as GK, type deleteRuntimeBackupStateAsClusterAdminInput as GL, type deleteRuntimeBackupStateInput as GM, type deleteTenantClusterVariableInput as GN, type deleteTenantInput as GO, type deleteUserInput as GP, type evaluateConditionalsInput as GQ, type evaluateDecisionInput as GR, type evaluateExpressionInput as GS, type failJobInput as GT, type getAgentDefinitionConsistency as GU, type getAgentDefinitionInput as GV, type getAgentInstanceConsistency as GW, type getAgentInstanceInput as GX, type getAuditLogConsistency as GY, type getAuditLogInput as GZ, type getAuthenticationInput as G_, type completeUserTaskInput as Ga, type correlateMessageInput as Gb, type createAdminUserInput as Gc, type createAgentInstanceInput as Gd, type createAuthorizationInput as Ge, type createDeploymentInput as Gf, type createDocumentInput as Gg, type createDocumentLinkInput as Gh, type createDocumentsInput as Gi, type createElementInstanceVariablesInput as Gj, type createGlobalClusterVariableInput as Gk, type createGlobalTaskListenerInput as Gl, type createGroupInput as Gm, createLiveClock as Gn, type createMappingRuleInput as Go, type createProcessInstanceInput as Gp, type createRoleInput as Gq, type createTenantClusterVariableInput as Gr, type createTenantInput as Gs, createTestClock as Gt, type createUserInput as Gu, type deleteAuthorizationInput as Gv, type deleteDecisionInstanceInput as Gw, type deleteDecisionInstancesBatchOperationInput as Gx, type deleteDocumentInput as Gy, type deleteGlobalClusterVariableInput as Gz, type AdvancedCategoryFilter as H, type getProcessInstanceSequenceFlowsInput as H$, type getAuthorizationInput as H0, type getBatchOperationConsistency as H1, type getBatchOperationInput as H2, type getClusterExportingStatusInput as H3, type getClusterRebalanceInput as H4, type getClusterStatusInput as H5, type getClusterTopologyInput as H6, type getDecisionDefinitionConsistency as H7, type getDecisionDefinitionInput as H8, type getDecisionDefinitionXmlConsistency as H9, type getJobErrorStatisticsInput as HA, type getJobTimeSeriesStatisticsConsistency as HB, type getJobTimeSeriesStatisticsInput as HC, type getJobTypeStatisticsConsistency as HD, type getJobTypeStatisticsInput as HE, type getJobWorkerStatisticsConsistency as HF, type getJobWorkerStatisticsInput as HG, type getLicenseInput as HH, type getMappingRuleConsistency as HI, type getMappingRuleInput as HJ, type getProcessDefinitionConsistency as HK, type getProcessDefinitionInput as HL, type getProcessDefinitionInstanceStatisticsConsistency as HM, type getProcessDefinitionInstanceStatisticsInput as HN, type getProcessDefinitionInstanceVersionStatisticsConsistency as HO, type getProcessDefinitionInstanceVersionStatisticsInput as HP, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as HQ, type getProcessDefinitionMessageSubscriptionStatisticsInput as HR, type getProcessDefinitionStatisticsConsistency as HS, type getProcessDefinitionStatisticsInput as HT, type getProcessDefinitionXmlConsistency as HU, type getProcessDefinitionXmlInput as HV, type getProcessInstanceCallHierarchyConsistency as HW, type getProcessInstanceCallHierarchyInput as HX, type getProcessInstanceConsistency as HY, type getProcessInstanceInput as HZ, type getProcessInstanceSequenceFlowsConsistency as H_, type getDecisionDefinitionXmlInput as Ha, type getDecisionInstanceConsistency as Hb, type getDecisionInstanceInput as Hc, type getDecisionRequirementsConsistency as Hd, type getDecisionRequirementsInput as He, type getDecisionRequirementsXmlConsistency as Hf, type getDecisionRequirementsXmlInput as Hg, type getDocumentInput as Hh, type getElementInstanceConsistency as Hi, type getElementInstanceInput as Hj, type getExportingStatusInput as Hk, type getFormByKeyConsistency as Hl, type getFormByKeyInput as Hm, type getGlobalClusterVariableConsistency as Hn, type getGlobalClusterVariableInput as Ho, type getGlobalJobStatisticsConsistency as Hp, type getGlobalJobStatisticsInput as Hq, type getGlobalTaskListenerConsistency as Hr, type getGlobalTaskListenerInput as Hs, type getGroupConsistency as Ht, type getGroupInput as Hu, type getHistoryBackupAsClusterAdminInput as Hv, type getHistoryBackupInput as Hw, type getIncidentConsistency as Hx, type getIncidentInput as Hy, type getJobErrorStatisticsConsistency as Hz, type AdvancedClusterVariableKindFilter as I, type resumeBatchOperationInput as I$, type getProcessInstanceStatisticsByDefinitionConsistency as I0, type getProcessInstanceStatisticsByDefinitionInput as I1, type getProcessInstanceStatisticsByErrorConsistency as I2, type getProcessInstanceStatisticsByErrorInput as I3, type getProcessInstanceStatisticsConsistency as I4, type getProcessInstanceStatisticsInput as I5, type getProcessInstanceWaitStateStatisticsConsistency as I6, type getProcessInstanceWaitStateStatisticsInput as I7, type getResourceConsistency as I8, type getResourceContentBinaryConsistency as I9, type getUserTaskFormInput as IA, type getUserTaskInput as IB, type getVariableConsistency as IC, type getVariableInput as ID, type listHistoryBackupsAsClusterAdminInput as IE, type listHistoryBackupsInput as IF, type listRuntimeBackupsAsClusterAdminInput as IG, type listRuntimeBackupsInput as IH, type listSecretsInput as II, liveClock as IJ, type migrateProcessInstanceInput as IK, type migrateProcessInstancesBatchOperationInput as IL, type modifyProcessInstanceInput as IM, type modifyProcessInstancesBatchOperationInput as IN, nextPageRequest as IO, paginate as IP, type pauseClusterExportingInput as IQ, type pauseExportingInput as IR, type pinClockInput as IS, type publishMessageInput as IT, type resetClockInput as IU, type resolveIncidentInput as IV, type resolveIncidentsBatchOperationInput as IW, type resolveProcessInstanceIncidentsInput as IX, type resolveSecretsInput as IY, type restoreAsClusterAdminInput as IZ, type restoreInput as I_, type getResourceContentBinaryInput as Ia, type getResourceContentConsistency as Ib, type getResourceContentInput as Ic, type getResourceInput as Id, type getRestoreStatusInput as Ie, type getRoleConsistency as If, type getRoleInput as Ig, type getRuntimeBackupAsClusterAdminInput as Ih, type getRuntimeBackupInput as Ii, type getRuntimeBackupStateAsClusterAdminInput as Ij, type getRuntimeBackupStateInput as Ik, type getStartProcessFormConsistency as Il, type getStartProcessFormInput as Im, type getStatusInput as In, type getSystemConfigurationInput as Io, type getTenantClusterVariableConsistency as Ip, type getTenantClusterVariableInput as Iq, type getTenantConsistency as Ir, type getTenantInput as Is, type getTopologyInput as It, type getUsageMetricsConsistency as Iu, type getUsageMetricsInput as Iv, type getUserConsistency as Iw, type getUserInput as Ix, type getUserTaskConsistency as Iy, type getUserTaskFormConsistency as Iz, type AdvancedClusterVariableScopeFilter as J, type searchOwnAuthorizationsInput as J$, type resumeClusterExportingInput as J0, type resumeExportingInput as J1, type resumeProcessInstanceInput as J2, type resumeProcessInstancesBatchOperationInput as J3, type searchAgentDefinitionsConsistency as J4, type searchAgentDefinitionsInput as J5, type searchAgentInstanceHistoryConsistency as J6, type searchAgentInstanceHistoryInput as J7, type searchAgentInstancesConsistency as J8, type searchAgentInstancesInput as J9, type searchElementInstanceWaitStatesConsistency as JA, type searchElementInstanceWaitStatesInput as JB, type searchElementInstancesConsistency as JC, type searchElementInstancesInput as JD, type searchGlobalTaskListenersConsistency as JE, type searchGlobalTaskListenersInput as JF, type searchGroupIdsForTenantConsistency as JG, type searchGroupIdsForTenantInput as JH, type searchGroupsConsistency as JI, type searchGroupsForRoleConsistency as JJ, type searchGroupsForRoleInput as JK, type searchGroupsInput as JL, type searchIncidentsConsistency as JM, type searchIncidentsInput as JN, type searchJobsConsistency as JO, type searchJobsInput as JP, type searchMappingRuleConsistency as JQ, type searchMappingRuleInput as JR, type searchMappingRulesForGroupConsistency as JS, type searchMappingRulesForGroupInput as JT, type searchMappingRulesForRoleConsistency as JU, type searchMappingRulesForRoleInput as JV, type searchMappingRulesForTenantConsistency as JW, type searchMappingRulesForTenantInput as JX, type searchMessageSubscriptionsConsistency as JY, type searchMessageSubscriptionsInput as JZ, type searchOwnAuthorizationsConsistency as J_, type searchAuditLogsConsistency as Ja, type searchAuditLogsInput as Jb, type searchAuthorizationsConsistency as Jc, type searchAuthorizationsInput as Jd, type searchBatchOperationItemsConsistency as Je, type searchBatchOperationItemsInput as Jf, type searchBatchOperationsConsistency as Jg, type searchBatchOperationsInput as Jh, type searchClientsForGroupConsistency as Ji, type searchClientsForGroupInput as Jj, type searchClientsForRoleConsistency as Jk, type searchClientsForRoleInput as Jl, type searchClientsForTenantConsistency as Jm, type searchClientsForTenantInput as Jn, type searchClusterVariablesConsistency as Jo, type searchClusterVariablesInput as Jp, type searchCorrelatedMessageSubscriptionsConsistency as Jq, type searchCorrelatedMessageSubscriptionsInput as Jr, type searchDecisionDefinitionsConsistency as Js, type searchDecisionDefinitionsInput as Jt, type searchDecisionInstancesConsistency as Ju, type searchDecisionInstancesInput as Jv, type searchDecisionRequirementsConsistency as Jw, type searchDecisionRequirementsInput as Jx, type searchElementInstanceIncidentsConsistency as Jy, type searchElementInstanceIncidentsInput as Jz, type AdvancedDateTimeFilter as K, type updateGlobalTaskListenerInput as K$, type searchProcessDefinitionVariableNamesConsistency as K0, type searchProcessDefinitionVariableNamesInput as K1, type searchProcessDefinitionsConsistency as K2, type searchProcessDefinitionsInput as K3, type searchProcessInstanceIncidentsConsistency as K4, type searchProcessInstanceIncidentsInput as K5, type searchProcessInstancesConsistency as K6, type searchProcessInstancesInput as K7, type searchResourcesConsistency as K8, type searchResourcesInput as K9, type suspendBatchOperationInput as KA, type suspendProcessInstanceInput as KB, type suspendProcessInstancesBatchOperationInput as KC, type syncRuntimeBackupStateAsClusterAdminInput as KD, type syncRuntimeBackupStateInput as KE, type takeHistoryBackupAsClusterAdminInput as KF, type takeHistoryBackupInput as KG, type takeRuntimeBackupAsClusterAdminInput as KH, type takeRuntimeBackupInput as KI, type throwJobErrorInput as KJ, type triggerClusterRebalanceInput as KK, type unassignClientFromGroupInput as KL, type unassignClientFromTenantInput as KM, type unassignGroupFromTenantInput as KN, type unassignMappingRuleFromGroupInput as KO, type unassignMappingRuleFromTenantInput as KP, type unassignRoleFromClientInput as KQ, type unassignRoleFromGroupInput as KR, type unassignRoleFromMappingRuleInput as KS, type unassignRoleFromTenantInput as KT, type unassignRoleFromUserInput as KU, type unassignUserFromGroupInput as KV, type unassignUserFromTenantInput as KW, type unassignUserTaskInput as KX, type updateAgentInstanceInput as KY, type updateAuthorizationInput as KZ, type updateGlobalClusterVariableInput as K_, type searchRolesConsistency as Ka, type searchRolesForGroupConsistency as Kb, type searchRolesForGroupInput as Kc, type searchRolesForTenantConsistency as Kd, type searchRolesForTenantInput as Ke, type searchRolesInput as Kf, type searchTenantsConsistency as Kg, type searchTenantsInput as Kh, type searchUserTaskAuditLogsConsistency as Ki, type searchUserTaskAuditLogsInput as Kj, type searchUserTaskEffectiveVariablesConsistency as Kk, type searchUserTaskEffectiveVariablesInput as Kl, type searchUserTaskVariablesConsistency as Km, type searchUserTaskVariablesInput as Kn, type searchUserTasksConsistency as Ko, type searchUserTasksInput as Kp, type searchUsersConsistency as Kq, type searchUsersForGroupConsistency as Kr, type searchUsersForGroupInput as Ks, type searchUsersForRoleConsistency as Kt, type searchUsersForRoleInput as Ku, type searchUsersForTenantConsistency as Kv, type searchUsersForTenantInput as Kw, type searchUsersInput as Kx, type searchVariablesConsistency as Ky, type searchVariablesInput as Kz, type AdvancedDecisionDefinitionKeyFilter as L, type updateGroupInput as L0, type updateJobInput as L1, type updateJobsBatchOperationInput as L2, type updateMappingRuleInput as L3, type updateRoleInput as L4, type updateTenantClusterVariableInput as L5, type updateTenantInput as L6, type updateUserInput as L7, type updateUserTaskInput as L8, variableNamesFromSchema as L9, type AdvancedDecisionEvaluationInstanceKeyFilter as M, type AdvancedDecisionEvaluationKeyFilter as N, type AdvancedDecisionInstanceStateFilter as O, type Paginator as P, type AdvancedDecisionRequirementsKeyFilter as Q, type AdvancedDeploymentKeyFilter as R, type SearchPaginateOptions as S, type AdvancedElementIdFilter as T, type AdvancedElementInstanceKeyFilter as U, type AdvancedElementInstanceStateFilter as V, type WithSearchPagination as W, type AdvancedEntityTypeFilter as X, type AdvancedFormKeyFilter as Y, type AdvancedGlobalListenerSourceFilter as Z, type AdvancedGlobalTaskListenerEventTypeFilter as _, type PaginationMode as a, AgentInstanceKey as a$, type AdvancedIncidentStateFilter as a0, type AdvancedIntegerFilter as a1, type AdvancedJobKeyFilter as a2, type AdvancedJobKindFilter as a3, type AdvancedJobListenerEventTypeFilter as a4, type AdvancedJobStateFilter as a5, type AdvancedMessageSubscriptionKeyFilter as a6, type AdvancedMessageSubscriptionStateFilter as a7, type AdvancedMessageSubscriptionTypeFilter as a8, type AdvancedMetadataValueFilter as a9, type AgentDefinitionTypeFilterProperty as aA, AgentHistoryItemKey as aB, type AgentHistoryItemKeyExactMatch as aC, type AgentHistoryItemKeyExactMatchWritable as aD, type AgentHistoryItemKeyFilterProperty as aE, type AgentHistoryItemKeyWritable as aF, type AgentInstanceCreatedHistoryItem as aG, type AgentInstanceCreationRequest as aH, type AgentInstanceCreationResult as aI, type AgentInstanceDefinitionResult as aJ, type AgentInstanceDocumentContent as aK, type AgentInstanceFilter as aL, AgentInstanceHistoryCommitStatusEnum as aM, type AgentInstanceHistoryCommitStatusExactMatch as aN, type AgentInstanceHistoryCommitStatusExactMatchWritable as aO, type AgentInstanceHistoryCommitStatusFilterProperty as aP, type AgentInstanceHistoryFilter as aQ, type AgentInstanceHistoryItem as aR, type AgentInstanceHistoryItemMetrics as aS, type AgentInstanceHistoryItemResult as aT, AgentInstanceHistoryRoleEnum as aU, type AgentInstanceHistoryRoleExactMatch as aV, type AgentInstanceHistoryRoleExactMatchWritable as aW, type AgentInstanceHistoryRoleFilterProperty as aX, type AgentInstanceHistorySearchQuery as aY, type AgentInstanceHistorySearchQueryResult as aZ, type AgentInstanceHistorySearchQuerySortRequest as a_, type AdvancedOperationTypeFilter as aa, type AdvancedProcessDefinitionIdFilter as ab, type AdvancedProcessDefinitionKeyFilter as ac, type AdvancedProcessInstanceKeyFilter as ad, type AdvancedProcessInstanceStateFilter as ae, type AdvancedResourceKeyFilter as af, type AdvancedResultFilter as ag, type AdvancedScopeKeyFilter as ah, type AdvancedStringFilter as ai, type AdvancedUserTaskStateFilter as aj, type AdvancedVariableKeyFilter as ak, type AdvancedWaitStateElementTypeFilter as al, type AdvancedWaitStateTypeFilter as am, type AgentDefinitionFilter as an, AgentDefinitionKey as ao, type AgentDefinitionKeyExactMatch as ap, type AgentDefinitionKeyExactMatchWritable as aq, type AgentDefinitionKeyFilterProperty as ar, type AgentDefinitionKeyWritable as as, type AgentDefinitionResult as at, type AgentDefinitionSearchQuery as au, type AgentDefinitionSearchQueryResult as av, type AgentDefinitionSearchQuerySortRequest as aw, AgentDefinitionTypeEnum as ax, type AgentDefinitionTypeExactMatch as ay, type AgentDefinitionTypeExactMatchWritable as az, type SearchResponse as b, type AssignRoleToGroupResponse as b$, type AgentInstanceKeyExactMatch as b0, type AgentInstanceKeyExactMatchWritable as b1, type AgentInstanceKeyFilterProperty as b2, type AgentInstanceKeyWritable as b3, type AgentInstanceLimits as b4, type AgentInstanceMessageContent as b5, AgentInstanceMessageContentTypeEnum as b6, type AgentInstanceMetrics as b7, type AgentInstanceObjectContent as b8, type AgentInstanceResult as b9, type AssignGroupToTenantError as bA, type AssignGroupToTenantErrors as bB, type AssignGroupToTenantResponse as bC, type AssignGroupToTenantResponses as bD, type AssignMappingRuleToGroupData as bE, type AssignMappingRuleToGroupError as bF, type AssignMappingRuleToGroupErrors as bG, type AssignMappingRuleToGroupResponse as bH, type AssignMappingRuleToGroupResponses as bI, type AssignMappingRuleToTenantData as bJ, type AssignMappingRuleToTenantError as bK, type AssignMappingRuleToTenantErrors as bL, type AssignMappingRuleToTenantResponse as bM, type AssignMappingRuleToTenantResponses as bN, type AssignProcessInstanceBusinessIdData as bO, type AssignProcessInstanceBusinessIdError as bP, type AssignProcessInstanceBusinessIdErrors as bQ, type AssignProcessInstanceBusinessIdResponse as bR, type AssignProcessInstanceBusinessIdResponses as bS, type AssignRoleToClientData as bT, type AssignRoleToClientError as bU, type AssignRoleToClientErrors as bV, type AssignRoleToClientResponse as bW, type AssignRoleToClientResponses as bX, type AssignRoleToGroupData as bY, type AssignRoleToGroupError as bZ, type AssignRoleToGroupErrors as b_, type AgentInstanceSearchQuery as ba, type AgentInstanceSearchQueryResult as bb, type AgentInstanceSearchQuerySortRequest as bc, AgentInstanceStatusEnum as bd, type AgentInstanceStatusExactMatch as be, type AgentInstanceStatusExactMatchWritable as bf, type AgentInstanceStatusFilterProperty as bg, type AgentInstanceTextContent as bh, type AgentInstanceToolCall as bi, type AgentInstanceUpdateRequest as bj, type AgentInstanceUpdateResult as bk, AgentInstanceUpdateStatusEnum as bl, type AgentTool as bm, type AncestorScopeInstruction as bn, type AnyVariableSchema as bo, type AssignClientToGroupData as bp, type AssignClientToGroupError as bq, type AssignClientToGroupErrors as br, type AssignClientToGroupResponse as bs, type AssignClientToGroupResponses as bt, type AssignClientToTenantData as bu, type AssignClientToTenantError as bv, type AssignClientToTenantErrors as bw, type AssignClientToTenantResponse as bx, type AssignClientToTenantResponses as by, type AssignGroupToTenantData as bz, CamundaClient as c, type AuthorizationPropertyBasedRequest as c$, type AssignRoleToGroupResponses as c0, type AssignRoleToMappingRuleData as c1, type AssignRoleToMappingRuleError as c2, type AssignRoleToMappingRuleErrors as c3, type AssignRoleToMappingRuleResponse as c4, type AssignRoleToMappingRuleResponses as c5, type AssignRoleToTenantData as c6, type AssignRoleToTenantError as c7, type AssignRoleToTenantErrors as c8, type AssignRoleToTenantResponse as c9, AuditLogEntityKey as cA, type AuditLogEntityKeyExactMatch as cB, type AuditLogEntityKeyExactMatchWritable as cC, type AuditLogEntityKeyFilterProperty as cD, AuditLogEntityTypeEnum as cE, type AuditLogFilter as cF, AuditLogKey as cG, type AuditLogKeyExactMatch as cH, type AuditLogKeyExactMatchWritable as cI, type AuditLogKeyFilterProperty as cJ, type AuditLogKeyWritable as cK, AuditLogOperationTypeEnum as cL, type AuditLogResult as cM, AuditLogResultEnum as cN, type AuditLogResultExactMatch as cO, type AuditLogResultExactMatchWritable as cP, type AuditLogResultFilterProperty as cQ, type AuditLogSearchQueryRequest as cR, type AuditLogSearchQueryResult as cS, type AuditLogSearchQuerySortRequest as cT, type AuthStrategy as cU, type AuthenticationConfigurationResponse as cV, type AuthorizationCreateResult as cW, type AuthorizationFilter as cX, type AuthorizationIdBasedRequest as cY, AuthorizationKey as cZ, type AuthorizationKeyWritable as c_, type AssignRoleToTenantResponses as ca, type AssignRoleToUserData as cb, type AssignRoleToUserError as cc, type AssignRoleToUserErrors as cd, type AssignRoleToUserResponse as ce, type AssignRoleToUserResponses as cf, type AssignUserTaskData as cg, type AssignUserTaskError as ch, type AssignUserTaskErrors as ci, type AssignUserTaskResponse as cj, type AssignUserTaskResponses as ck, type AssignUserToGroupData as cl, type AssignUserToGroupError as cm, type AssignUserToGroupErrors as cn, type AssignUserToGroupResponse as co, type AssignUserToGroupResponses as cp, type AssignUserToTenantData as cq, type AssignUserToTenantError as cr, type AssignUserToTenantErrors as cs, type AssignUserToTenantResponse as ct, type AssignUserToTenantResponses as cu, AuditLogActorTypeEnum as cv, type AuditLogActorTypeExactMatch as cw, type AuditLogActorTypeExactMatchWritable as cx, type AuditLogActorTypeFilterProperty as cy, AuditLogCategoryEnum as cz, type CamundaOptions as d, type CancelProcessInstanceError as d$, type AuthorizationRequest as d0, type AuthorizationResult as d1, type AuthorizationSearchQuery as d2, type AuthorizationSearchQuerySortRequest as d3, type AuthorizationSearchResult as d4, type BackpressureSeverity as d5, type BackupId as d6, type BackupIdPrefix as d7, type BackupInfo as d8, type BackupInfoWritable as d9, type BatchOperationStateFilterProperty as dA, BatchOperationTypeEnum as dB, type BatchOperationTypeExactMatch as dC, type BatchOperationTypeExactMatchWritable as dD, type BatchOperationTypeFilterProperty as dE, type BroadcastSignalData as dF, type BroadcastSignalError as dG, type BroadcastSignalErrors as dH, type BroadcastSignalResponse as dI, type BroadcastSignalResponses as dJ, type BrokerInfo as dK, BusinessId as dL, type CamundaConfig as dM, type CamundaKey as dN, type CamundaUserResult as dO, type CancelBatchOperationData as dP, type CancelBatchOperationError as dQ, type CancelBatchOperationErrors as dR, type CancelBatchOperationResponse as dS, type CancelBatchOperationResponses as dT, type CancelClusterRebalanceData as dU, type CancelClusterRebalanceError as dV, type CancelClusterRebalanceErrors as dW, type CancelClusterRebalanceResponse as dX, type CancelClusterRebalanceResponses as dY, CancelError as dZ, type CancelProcessInstanceData as d_, type BackupType as da, type BaseProcessInstanceFilterFields as db, type BaseWaitStateDetails as dc, type BasicStringFilter as dd, type BasicStringFilterProperty as de, type BatchOperationCreatedResult as df, type BatchOperationError as dg, type BatchOperationFilter as dh, type BatchOperationItemFilter as di, type BatchOperationItemResponse as dj, type BatchOperationItemSearchQuery as dk, type BatchOperationItemSearchQueryResult as dl, type BatchOperationItemSearchQuerySortRequest as dm, BatchOperationItemStateEnum as dn, type BatchOperationItemStateExactMatch as dp, type BatchOperationItemStateExactMatchWritable as dq, type BatchOperationItemStateFilterProperty as dr, BatchOperationKey as ds, type BatchOperationResponse as dt, type BatchOperationSearchQuery as du, type BatchOperationSearchQueryResult as dv, type BatchOperationSearchQuerySortRequest as dw, BatchOperationStateEnum as dx, type BatchOperationStateExactMatch as dy, type BatchOperationStateExactMatchWritable as dz, createCamundaClient as e, type ClusterRuntimeBackupTenantInfoWritable as e$, type CancelProcessInstanceErrors as e0, type CancelProcessInstanceRequest as e1, type CancelProcessInstanceResponse as e2, type CancelProcessInstanceResponses as e3, type CancelProcessInstancesBatchOperationData as e4, type CancelProcessInstancesBatchOperationError as e5, type CancelProcessInstancesBatchOperationErrors as e6, type CancelProcessInstancesBatchOperationResponse as e7, type CancelProcessInstancesBatchOperationResponses as e8, type CategoryExactMatch as e9, type ClusterHistoryBackupTakeResult as eA, type ClusterHistoryBackupTenantInfo as eB, type ClusterHistoryBackupTenantInfoWritable as eC, type ClusterHistoryBackupTenantState as eD, type ClusterModeChangeOperation as eE, type ClusterModeChangePlannedChange as eF, type ClusterModeChangeResponse as eG, type ClusterRebalance as eH, type ClusterRebalanceOperationPartition as eI, type ClusterRebalancePartition as eJ, type ClusterRebalanceRequest as eK, type ClusterRestoreAwaitModeChangeOperation as eL, type ClusterRestoreBrokerOperation as eM, type ClusterRestoreModeChangeOperation as eN, type ClusterRestoreOperation as eO, type ClusterRestorePartitionOperation as eP, type ClusterRestorePartitionRestoreOperation as eQ, type ClusterRestorePlannedChange as eR, type ClusterRestoreRequest as eS, type ClusterRestoreResponse as eT, type ClusterRunningRebalance as eU, type ClusterRuntimeBackupInfo as eV, type ClusterRuntimeBackupInfoWritable as eW, type ClusterRuntimeBackupState as eX, type ClusterRuntimeBackupTakeOutcome as eY, type ClusterRuntimeBackupTakeResult as eZ, type ClusterRuntimeBackupTenantInfo as e_, type CategoryExactMatchWritable as ea, type CategoryFilterProperty as eb, type ChangeClusterModeAsClusterAdminData as ec, type ChangeClusterModeAsClusterAdminError as ed, type ChangeClusterModeAsClusterAdminErrors as ee, type ChangeClusterModeAsClusterAdminResponse as ef, type ChangeClusterModeAsClusterAdminResponses as eg, type ChangeClusterModeData as eh, type ChangeClusterModeError as ei, type ChangeClusterModeErrors as ej, type ChangeClusterModeResponse as ek, type ChangeClusterModeResponses as el, type Changeset as em, type CheckpointId as en, type CheckpointType as eo, ClientId as ep, type ClientOptions$1 as eq, type Clock as er, type ClockPinRequest as es, type CloudConfigurationResponse as et, type CloudStage as eu, type ClusterBalanceResponse as ev, type ClusterBrokerInfo as ew, type ClusterCompletedRebalance as ex, type ClusterHistoryBackupInfo as ey, type ClusterHistoryBackupInfoWritable as ez, type CancelablePromise as f, type CreateDeploymentError as f$, type ClusterRuntimeBackupTenantState as f0, type ClusterStatusResponse as f1, type ClusterTakeHistoryBackupResponse as f2, type ClusterTakeRuntimeBackupResponse as f3, type ClusterTopologyResponse as f4, ClusterVariableKindEnum as f5, type ClusterVariableKindExactMatch as f6, type ClusterVariableKindExactMatchWritable as f7, type ClusterVariableKindFilterProperty as f8, ClusterVariableName as f9, type CorrelateMessageData as fA, type CorrelateMessageError as fB, type CorrelateMessageErrors as fC, type CorrelateMessageResponse as fD, type CorrelateMessageResponses as fE, type CorrelatedMessageSubscriptionFilter as fF, type CorrelatedMessageSubscriptionResult as fG, type CorrelatedMessageSubscriptionSearchQuery as fH, type CorrelatedMessageSubscriptionSearchQueryResult as fI, type CorrelatedMessageSubscriptionSearchQuerySortRequest as fJ, type CreateAdminUserData as fK, type CreateAdminUserError as fL, type CreateAdminUserErrors as fM, type CreateAdminUserResponse as fN, type CreateAdminUserResponses as fO, type CreateAgentInstanceData as fP, type CreateAgentInstanceError as fQ, type CreateAgentInstanceErrors as fR, type CreateAgentInstanceResponse as fS, type CreateAgentInstanceResponses as fT, type CreateAuthorizationData as fU, type CreateAuthorizationError as fV, type CreateAuthorizationErrors as fW, type CreateAuthorizationResponse as fX, type CreateAuthorizationResponses as fY, type CreateClusterVariableRequest as fZ, type CreateDeploymentData as f_, type ClusterVariableResult as fa, type ClusterVariableResultBase as fb, ClusterVariableScopeEnum as fc, type ClusterVariableScopeExactMatch as fd, type ClusterVariableScopeExactMatchWritable as fe, type ClusterVariableScopeFilterProperty as ff, type ClusterVariableSearchQueryFilterRequest as fg, type ClusterVariableSearchQueryRequest as fh, type ClusterVariableSearchQueryResult as fi, type ClusterVariableSearchQuerySortRequest as fj, type ClusterVariableSearchResult as fk, type CompleteJobData as fl, type CompleteJobError as fm, type CompleteJobErrors as fn, type CompleteJobResponse as fo, type CompleteJobResponses as fp, type CompleteUserTaskData as fq, type CompleteUserTaskError as fr, type CompleteUserTaskErrors as fs, type CompleteUserTaskResponse as ft, type CompleteUserTaskResponses as fu, type ComponentsConfigurationResponse as fv, type ConditionWaitStateDetails as fw, type ConditionalEvaluationInstruction as fx, ConditionalEvaluationKey as fy, type ConditionalEvaluationKeyWritable as fz, type ActivateAdHocSubProcessActivitiesData as g, type CreateTenantResponse as g$, type CreateDeploymentErrors as g0, type CreateDeploymentResponse as g1, type CreateDeploymentResponses as g2, type CreateDocumentData as g3, type CreateDocumentError as g4, type CreateDocumentErrors as g5, type CreateDocumentLinkData as g6, type CreateDocumentLinkError as g7, type CreateDocumentLinkErrors as g8, type CreateDocumentLinkResponse as g9, type CreateGroupErrors as gA, type CreateGroupResponse as gB, type CreateGroupResponses as gC, type CreateMappingRuleData as gD, type CreateMappingRuleError as gE, type CreateMappingRuleErrors as gF, type CreateMappingRuleResponse as gG, type CreateMappingRuleResponses as gH, type CreateProcessInstanceData as gI, type CreateProcessInstanceError as gJ, type CreateProcessInstanceErrors as gK, type CreateProcessInstanceResponse as gL, type CreateProcessInstanceResponses as gM, type CreateProcessInstanceResult as gN, type CreateRoleData as gO, type CreateRoleError as gP, type CreateRoleErrors as gQ, type CreateRoleResponse as gR, type CreateRoleResponses as gS, type CreateTenantClusterVariableData as gT, type CreateTenantClusterVariableError as gU, type CreateTenantClusterVariableErrors as gV, type CreateTenantClusterVariableResponse as gW, type CreateTenantClusterVariableResponses as gX, type CreateTenantData as gY, type CreateTenantError as gZ, type CreateTenantErrors as g_, type CreateDocumentLinkResponses as ga, type CreateDocumentResponse as gb, type CreateDocumentResponses as gc, type CreateDocumentsData as gd, type CreateDocumentsError as ge, type CreateDocumentsErrors as gf, type CreateDocumentsResponse as gg, type CreateDocumentsResponses as gh, type CreateElementInstanceVariablesData as gi, type CreateElementInstanceVariablesError as gj, type CreateElementInstanceVariablesErrors as gk, type CreateElementInstanceVariablesResponse as gl, type CreateElementInstanceVariablesResponses as gm, type CreateGlobalClusterVariableData as gn, type CreateGlobalClusterVariableError as go, type CreateGlobalClusterVariableErrors as gp, type CreateGlobalClusterVariableResponse as gq, type CreateGlobalClusterVariableResponses as gr, type CreateGlobalTaskListenerData as gs, type CreateGlobalTaskListenerError as gt, type CreateGlobalTaskListenerErrors as gu, type CreateGlobalTaskListenerRequest as gv, type CreateGlobalTaskListenerResponse as gw, type CreateGlobalTaskListenerResponses as gx, type CreateGroupData as gy, type CreateGroupError as gz, type ActivateAdHocSubProcessActivitiesError as h, type DeleteDecisionInstanceErrors as h$, type CreateTenantResponses as h0, type CreateUserData as h1, type CreateUserError as h2, type CreateUserErrors as h3, type CreateUserResponse as h4, type CreateUserResponses as h5, type CursorBackwardPagination as h6, type CursorForwardPagination as h7, type DateTimeFilterProperty as h8, type DecisionDefinitionFilter as h9, DecisionInstanceKey as hA, type DecisionInstanceKeyWritable as hB, type DecisionInstanceResult as hC, type DecisionInstanceSearchQuery as hD, type DecisionInstanceSearchQueryResult as hE, type DecisionInstanceSearchQuerySortRequest as hF, DecisionInstanceStateEnum as hG, type DecisionInstanceStateExactMatch as hH, type DecisionInstanceStateExactMatchWritable as hI, type DecisionInstanceStateFilterProperty as hJ, type DecisionRequirementsFilter as hK, DecisionRequirementsKey as hL, type DecisionRequirementsKeyExactMatch as hM, type DecisionRequirementsKeyExactMatchWritable as hN, type DecisionRequirementsKeyFilterProperty as hO, type DecisionRequirementsKeyWritable as hP, type DecisionRequirementsResult as hQ, type DecisionRequirementsSearchQuery as hR, type DecisionRequirementsSearchQueryResult as hS, type DecisionRequirementsSearchQuerySortRequest as hT, type DeleteAuthorizationData as hU, type DeleteAuthorizationError as hV, type DeleteAuthorizationErrors as hW, type DeleteAuthorizationResponse as hX, type DeleteAuthorizationResponses as hY, type DeleteDecisionInstanceData as hZ, type DeleteDecisionInstanceError as h_, DecisionDefinitionId as ha, DecisionDefinitionKey as hb, type DecisionDefinitionKeyExactMatch as hc, type DecisionDefinitionKeyExactMatchWritable as hd, type DecisionDefinitionKeyFilterProperty as he, type DecisionDefinitionKeyWritable as hf, type DecisionDefinitionResult as hg, type DecisionDefinitionSearchQuery as hh, type DecisionDefinitionSearchQueryResult as hi, type DecisionDefinitionSearchQuerySortRequest as hj, DecisionDefinitionTypeEnum as hk, type DecisionEvaluationById as hl, type DecisionEvaluationByKey as hm, DecisionEvaluationInstanceKey as hn, type DecisionEvaluationInstanceKeyExactMatch as ho, type DecisionEvaluationInstanceKeyExactMatchWritable as hp, type DecisionEvaluationInstanceKeyFilterProperty as hq, type DecisionEvaluationInstruction as hr, DecisionEvaluationKey as hs, type DecisionEvaluationKeyExactMatch as ht, type DecisionEvaluationKeyExactMatchWritable as hu, type DecisionEvaluationKeyFilterProperty as hv, type DecisionEvaluationKeyWritable as hw, type DecisionInstanceDeletionBatchOperationRequest as hx, type DecisionInstanceFilter as hy, type DecisionInstanceGetQueryResult as hz, type ActivateAdHocSubProcessActivitiesErrors as i, type DeleteRoleData as i$, type DeleteDecisionInstanceRequest as i0, type DeleteDecisionInstanceResponse as i1, type DeleteDecisionInstanceResponses as i2, type DeleteDecisionInstancesBatchOperationData as i3, type DeleteDecisionInstancesBatchOperationError as i4, type DeleteDecisionInstancesBatchOperationErrors as i5, type DeleteDecisionInstancesBatchOperationResponse as i6, type DeleteDecisionInstancesBatchOperationResponses as i7, type DeleteDocumentData as i8, type DeleteDocumentError as i9, type DeleteHistoryBackupError as iA, type DeleteHistoryBackupErrors as iB, type DeleteHistoryBackupResponse as iC, type DeleteHistoryBackupResponses as iD, type DeleteMappingRuleData as iE, type DeleteMappingRuleError as iF, type DeleteMappingRuleErrors as iG, type DeleteMappingRuleResponse as iH, type DeleteMappingRuleResponses as iI, type DeleteProcessInstanceData as iJ, type DeleteProcessInstanceError as iK, type DeleteProcessInstanceErrors as iL, type DeleteProcessInstanceRequest as iM, type DeleteProcessInstanceResponse as iN, type DeleteProcessInstanceResponses as iO, type DeleteProcessInstancesBatchOperationData as iP, type DeleteProcessInstancesBatchOperationError as iQ, type DeleteProcessInstancesBatchOperationErrors as iR, type DeleteProcessInstancesBatchOperationResponse as iS, type DeleteProcessInstancesBatchOperationResponses as iT, type DeleteResourceData as iU, type DeleteResourceError as iV, type DeleteResourceErrors as iW, type DeleteResourceRequest as iX, type DeleteResourceResponse as iY, type DeleteResourceResponse2 as iZ, type DeleteResourceResponses as i_, type DeleteDocumentErrors as ia, type DeleteDocumentResponse as ib, type DeleteDocumentResponses as ic, type DeleteGlobalClusterVariableData as id, type DeleteGlobalClusterVariableError as ie, type DeleteGlobalClusterVariableErrors as ig, type DeleteGlobalClusterVariableResponse as ih, type DeleteGlobalClusterVariableResponses as ii, type DeleteGlobalTaskListenerData as ij, type DeleteGlobalTaskListenerError as ik, type DeleteGlobalTaskListenerErrors as il, type DeleteGlobalTaskListenerResponse as im, type DeleteGlobalTaskListenerResponses as io, type DeleteGroupData as ip, type DeleteGroupError as iq, type DeleteGroupErrors as ir, type DeleteGroupResponse as is, type DeleteGroupResponses as it, type DeleteHistoryBackupAsClusterAdminData as iu, type DeleteHistoryBackupAsClusterAdminError as iv, type DeleteHistoryBackupAsClusterAdminErrors as iw, type DeleteHistoryBackupAsClusterAdminResponse as ix, type DeleteHistoryBackupAsClusterAdminResponses as iy, type DeleteHistoryBackupData as iz, type ActivateAdHocSubProcessActivitiesResponse as j, type ElementIdExactMatchWritable as j$, type DeleteRoleError as j0, type DeleteRoleErrors as j1, type DeleteRoleResponse as j2, type DeleteRoleResponses as j3, type DeleteRuntimeBackupAsClusterAdminData as j4, type DeleteRuntimeBackupAsClusterAdminError as j5, type DeleteRuntimeBackupAsClusterAdminErrors as j6, type DeleteRuntimeBackupAsClusterAdminResponse as j7, type DeleteRuntimeBackupAsClusterAdminResponses as j8, type DeleteRuntimeBackupData as j9, type DeleteUserErrors as jA, type DeleteUserResponse as jB, type DeleteUserResponses as jC, type DeploymentConfigurationResponse as jD, type DeploymentDecisionRequirementsResult as jE, type DeploymentDecisionResult as jF, type DeploymentFormResult as jG, DeploymentKey as jH, type DeploymentKeyExactMatch as jI, type DeploymentKeyExactMatchWritable as jJ, type DeploymentKeyFilterProperty as jK, type DeploymentKeyWritable as jL, type DeploymentMetadataResult as jM, type DeploymentProcessResult as jN, type DeploymentResourceResult as jO, type DeploymentResult as jP, type DirectAncestorKeyInstruction as jQ, type DocumentCreationBatchResponse as jR, type DocumentCreationFailureDetail as jS, DocumentId as jT, type DocumentLink as jU, type DocumentLinkRequest as jV, type DocumentMetadata as jW, type DocumentMetadataResponse as jX, type DocumentReference as jY, ElementId as jZ, type ElementIdExactMatch as j_, type DeleteRuntimeBackupError as ja, type DeleteRuntimeBackupErrors as jb, type DeleteRuntimeBackupResponse as jc, type DeleteRuntimeBackupResponses as jd, type DeleteRuntimeBackupStateAsClusterAdminData as je, type DeleteRuntimeBackupStateAsClusterAdminError as jf, type DeleteRuntimeBackupStateAsClusterAdminErrors as jg, type DeleteRuntimeBackupStateAsClusterAdminResponse as jh, type DeleteRuntimeBackupStateAsClusterAdminResponses as ji, type DeleteRuntimeBackupStateData as jj, type DeleteRuntimeBackupStateError as jk, type DeleteRuntimeBackupStateErrors as jl, type DeleteRuntimeBackupStateResponse as jm, type DeleteRuntimeBackupStateResponses as jn, type DeleteTenantClusterVariableData as jo, type DeleteTenantClusterVariableError as jp, type DeleteTenantClusterVariableErrors as jq, type DeleteTenantClusterVariableResponse as jr, type DeleteTenantClusterVariableResponses as js, type DeleteTenantData as jt, type DeleteTenantError as ju, type DeleteTenantErrors as jv, type DeleteTenantResponse as jw, type DeleteTenantResponses as jx, type DeleteUserData as jy, type DeleteUserError as jz, type ActivateAdHocSubProcessActivitiesResponses as k, type FormKeyFilterProperty as k$, type ElementIdFilterProperty as k0, type ElementInstanceFilter as k1, type ElementInstanceFilterFields as k2, ElementInstanceKey as k3, type ElementInstanceKeyExactMatch as k4, type ElementInstanceKeyExactMatchWritable as k5, type ElementInstanceKeyFilterProperty as k6, type ElementInstanceKeyWritable as k7, type ElementInstanceResult as k8, type ElementInstanceSearchQuery as k9, type EvaluateDecisionResponses as kA, type EvaluateDecisionResult as kB, type EvaluateExpressionData as kC, type EvaluateExpressionError as kD, type EvaluateExpressionErrors as kE, type EvaluateExpressionResponse as kF, type EvaluateExpressionResponses as kG, type EvaluatedDecisionInputItem as kH, type EvaluatedDecisionOutputItem as kI, type EvaluatedDecisionResult as kJ, type ExportingStatusCode as kK, type ExportingStatusResponse as kL, type ExpressionEvaluationRequest as kM, type ExpressionEvaluationResult as kN, type ExpressionEvaluationWarningItem as kO, type ExpressionSecretReferenceItem as kP, type ExtendedDeploymentResult as kQ, type FailJobData as kR, type FailJobError as kS, type FailJobErrors as kT, type FailJobResponse as kU, type FailJobResponses as kV, type FetchPage as kW, FormId as kX, FormKey as kY, type FormKeyExactMatch as kZ, type FormKeyExactMatchWritable as k_, type ElementInstanceSearchQueryResult as ka, type ElementInstanceSearchQuerySortRequest as kb, ElementInstanceStateEnum as kc, type ElementInstanceStateExactMatch as kd, type ElementInstanceStateExactMatchWritable as ke, type ElementInstanceStateFilterProperty as kf, type ElementInstanceWaitStateFilter as kg, type ElementInstanceWaitStateQuery as kh, type ElementInstanceWaitStateQueryResult as ki, type ElementInstanceWaitStateQuerySortRequest as kj, type ElementInstanceWaitStateResult as kk, EndCursor as kl, type EnrichedActivatedJob as km, type EntityTypeExactMatch as kn, type EntityTypeExactMatchWritable as ko, type EntityTypeFilterProperty as kp, type EvaluateConditionalResult as kq, type EvaluateConditionalsData as kr, type EvaluateConditionalsError as ks, type EvaluateConditionalsErrors as kt, type EvaluateConditionalsResponse as ku, type EvaluateConditionalsResponses as kv, type EvaluateDecisionData as kw, type EvaluateDecisionError as kx, type EvaluateDecisionErrors as ky, type EvaluateDecisionResponse as kz, type ActivateJobsData as l, type GetDecisionInstanceError as l$, type FormKeyWritable as l0, type FormResult as l1, type GetAgentDefinitionData as l2, type GetAgentDefinitionError as l3, type GetAgentDefinitionErrors as l4, type GetAgentDefinitionResponse as l5, type GetAgentDefinitionResponses as l6, type GetAgentInstanceData as l7, type GetAgentInstanceError as l8, type GetAgentInstanceErrors as l9, type GetClusterExportingStatusResponses as lA, type GetClusterRebalanceData as lB, type GetClusterRebalanceError as lC, type GetClusterRebalanceErrors as lD, type GetClusterRebalanceResponse as lE, type GetClusterRebalanceResponses as lF, type GetClusterStatusData as lG, type GetClusterStatusError as lH, type GetClusterStatusErrors as lI, type GetClusterStatusResponse as lJ, type GetClusterStatusResponses as lK, type GetClusterTopologyData as lL, type GetClusterTopologyError as lM, type GetClusterTopologyErrors as lN, type GetClusterTopologyResponse as lO, type GetClusterTopologyResponses as lP, type GetDecisionDefinitionData as lQ, type GetDecisionDefinitionError as lR, type GetDecisionDefinitionErrors as lS, type GetDecisionDefinitionResponse as lT, type GetDecisionDefinitionResponses as lU, type GetDecisionDefinitionXmlData as lV, type GetDecisionDefinitionXmlError as lW, type GetDecisionDefinitionXmlErrors as lX, type GetDecisionDefinitionXmlResponse as lY, type GetDecisionDefinitionXmlResponses as lZ, type GetDecisionInstanceData as l_, type GetAgentInstanceResponse as la, type GetAgentInstanceResponses as lb, type GetAuditLogData as lc, type GetAuditLogError as ld, type GetAuditLogErrors as le, type GetAuditLogResponse as lf, type GetAuditLogResponses as lg, type GetAuthenticationData as lh, type GetAuthenticationError as li, type GetAuthenticationErrors as lj, type GetAuthenticationResponse as lk, type GetAuthenticationResponses as ll, type GetAuthorizationData as lm, type GetAuthorizationError as ln, type GetAuthorizationErrors as lo, type GetAuthorizationResponse as lp, type GetAuthorizationResponses as lq, type GetBatchOperationData as lr, type GetBatchOperationError as ls, type GetBatchOperationErrors as lt, type GetBatchOperationResponse as lu, type GetBatchOperationResponses as lv, type GetClusterExportingStatusData as lw, type GetClusterExportingStatusError as lx, type GetClusterExportingStatusErrors as ly, type GetClusterExportingStatusResponse as lz, type ActivateJobsError as m, type GetIncidentData as m$, type GetDecisionInstanceErrors as m0, type GetDecisionInstanceResponse as m1, type GetDecisionInstanceResponses as m2, type GetDecisionRequirementsData as m3, type GetDecisionRequirementsError as m4, type GetDecisionRequirementsErrors as m5, type GetDecisionRequirementsResponse as m6, type GetDecisionRequirementsResponses as m7, type GetDecisionRequirementsXmlData as m8, type GetDecisionRequirementsXmlError as m9, type GetGlobalClusterVariableResponse as mA, type GetGlobalClusterVariableResponses as mB, type GetGlobalJobStatisticsData as mC, type GetGlobalJobStatisticsError as mD, type GetGlobalJobStatisticsErrors as mE, type GetGlobalJobStatisticsResponse as mF, type GetGlobalJobStatisticsResponses as mG, type GetGlobalTaskListenerData as mH, type GetGlobalTaskListenerError as mI, type GetGlobalTaskListenerErrors as mJ, type GetGlobalTaskListenerResponse as mK, type GetGlobalTaskListenerResponses as mL, type GetGroupData as mM, type GetGroupError as mN, type GetGroupErrors as mO, type GetGroupResponse as mP, type GetGroupResponses as mQ, type GetHistoryBackupAsClusterAdminData as mR, type GetHistoryBackupAsClusterAdminError as mS, type GetHistoryBackupAsClusterAdminErrors as mT, type GetHistoryBackupAsClusterAdminResponse as mU, type GetHistoryBackupAsClusterAdminResponses as mV, type GetHistoryBackupData as mW, type GetHistoryBackupError as mX, type GetHistoryBackupErrors as mY, type GetHistoryBackupResponse as mZ, type GetHistoryBackupResponses as m_, type GetDecisionRequirementsXmlErrors as ma, type GetDecisionRequirementsXmlResponse as mb, type GetDecisionRequirementsXmlResponses as mc, type GetDocumentData as md, type GetDocumentError as me, type GetDocumentErrors as mf, type GetDocumentResponse as mg, type GetDocumentResponses as mh, type GetElementInstanceData as mi, type GetElementInstanceError as mj, type GetElementInstanceErrors as mk, type GetElementInstanceResponse as ml, type GetElementInstanceResponses as mm, type GetExportingStatusData as mn, type GetExportingStatusError as mo, type GetExportingStatusErrors as mp, type GetExportingStatusResponse as mq, type GetExportingStatusResponses as mr, type GetFormByKeyData as ms, type GetFormByKeyError as mt, type GetFormByKeyErrors as mu, type GetFormByKeyResponse as mv, type GetFormByKeyResponses as mw, type GetGlobalClusterVariableData as mx, type GetGlobalClusterVariableError as my, type GetGlobalClusterVariableErrors as mz, type ActivateJobsErrors as n, type GetProcessDefinitionXmlResponses as n$, type GetIncidentError as n0, type GetIncidentErrors as n1, type GetIncidentResponse as n2, type GetIncidentResponses as n3, type GetJobErrorStatisticsData as n4, type GetJobErrorStatisticsError as n5, type GetJobErrorStatisticsErrors as n6, type GetJobErrorStatisticsResponse as n7, type GetJobErrorStatisticsResponses as n8, type GetJobTimeSeriesStatisticsData as n9, type GetProcessDefinitionErrors as nA, type GetProcessDefinitionInstanceStatisticsData as nB, type GetProcessDefinitionInstanceStatisticsError as nC, type GetProcessDefinitionInstanceStatisticsErrors as nD, type GetProcessDefinitionInstanceStatisticsResponse as nE, type GetProcessDefinitionInstanceStatisticsResponses as nF, type GetProcessDefinitionInstanceVersionStatisticsData as nG, type GetProcessDefinitionInstanceVersionStatisticsError as nH, type GetProcessDefinitionInstanceVersionStatisticsErrors as nI, type GetProcessDefinitionInstanceVersionStatisticsResponse as nJ, type GetProcessDefinitionInstanceVersionStatisticsResponses as nK, type GetProcessDefinitionMessageSubscriptionStatisticsData as nL, type GetProcessDefinitionMessageSubscriptionStatisticsError as nM, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as nN, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as nO, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as nP, type GetProcessDefinitionResponse as nQ, type GetProcessDefinitionResponses as nR, type GetProcessDefinitionStatisticsData as nS, type GetProcessDefinitionStatisticsError as nT, type GetProcessDefinitionStatisticsErrors as nU, type GetProcessDefinitionStatisticsResponse as nV, type GetProcessDefinitionStatisticsResponses as nW, type GetProcessDefinitionXmlData as nX, type GetProcessDefinitionXmlError as nY, type GetProcessDefinitionXmlErrors as nZ, type GetProcessDefinitionXmlResponse as n_, type GetJobTimeSeriesStatisticsError as na, type GetJobTimeSeriesStatisticsErrors as nb, type GetJobTimeSeriesStatisticsResponse as nc, type GetJobTimeSeriesStatisticsResponses as nd, type GetJobTypeStatisticsData as ne, type GetJobTypeStatisticsError as nf, type GetJobTypeStatisticsErrors as ng, type GetJobTypeStatisticsResponse as nh, type GetJobTypeStatisticsResponses as ni, type GetJobWorkerStatisticsData as nj, type GetJobWorkerStatisticsError as nk, type GetJobWorkerStatisticsErrors as nl, type GetJobWorkerStatisticsResponse as nm, type GetJobWorkerStatisticsResponses as nn, type GetLicenseData as no, type GetLicenseError as np, type GetLicenseErrors as nq, type GetLicenseResponse as nr, type GetLicenseResponses as ns, type GetMappingRuleData as nt, type GetMappingRuleError as nu, type GetMappingRuleErrors as nv, type GetMappingRuleResponse as nw, type GetMappingRuleResponses as nx, type GetProcessDefinitionData as ny, type GetProcessDefinitionError as nz, type ActivateJobsResponse as o, type GetRuntimeBackupAsClusterAdminResponse as o$, type GetProcessInstanceCallHierarchyData as o0, type GetProcessInstanceCallHierarchyError as o1, type GetProcessInstanceCallHierarchyErrors as o2, type GetProcessInstanceCallHierarchyResponse as o3, type GetProcessInstanceCallHierarchyResponses as o4, type GetProcessInstanceData as o5, type GetProcessInstanceError as o6, type GetProcessInstanceErrors as o7, type GetProcessInstanceResponse as o8, type GetProcessInstanceResponses as o9, type GetResourceContentBinaryError as oA, type GetResourceContentBinaryErrors as oB, type GetResourceContentBinaryResponse as oC, type GetResourceContentBinaryResponses as oD, type GetResourceContentData as oE, type GetResourceContentError as oF, type GetResourceContentErrors as oG, type GetResourceContentResponse as oH, type GetResourceContentResponses as oI, type GetResourceData as oJ, type GetResourceError as oK, type GetResourceErrors as oL, type GetResourceResponse as oM, type GetResourceResponses as oN, type GetRestoreStatusData as oO, type GetRestoreStatusError as oP, type GetRestoreStatusErrors as oQ, type GetRestoreStatusResponse as oR, type GetRestoreStatusResponses as oS, type GetRoleData as oT, type GetRoleError as oU, type GetRoleErrors as oV, type GetRoleResponse as oW, type GetRoleResponses as oX, type GetRuntimeBackupAsClusterAdminData as oY, type GetRuntimeBackupAsClusterAdminError as oZ, type GetRuntimeBackupAsClusterAdminErrors as o_, type GetProcessInstanceSequenceFlowsData as oa, type GetProcessInstanceSequenceFlowsError as ob, type GetProcessInstanceSequenceFlowsErrors as oc, type GetProcessInstanceSequenceFlowsResponse as od, type GetProcessInstanceSequenceFlowsResponses as oe, type GetProcessInstanceStatisticsByDefinitionData as of, type GetProcessInstanceStatisticsByDefinitionError as og, type GetProcessInstanceStatisticsByDefinitionErrors as oh, type GetProcessInstanceStatisticsByDefinitionResponse as oi, type GetProcessInstanceStatisticsByDefinitionResponses as oj, type GetProcessInstanceStatisticsByErrorData as ok, type GetProcessInstanceStatisticsByErrorError as ol, type GetProcessInstanceStatisticsByErrorErrors as om, type GetProcessInstanceStatisticsByErrorResponse as on, type GetProcessInstanceStatisticsByErrorResponses as oo, type GetProcessInstanceStatisticsData as op, type GetProcessInstanceStatisticsError as oq, type GetProcessInstanceStatisticsErrors as or, type GetProcessInstanceStatisticsResponse as os, type GetProcessInstanceStatisticsResponses as ot, type GetProcessInstanceWaitStateStatisticsData as ou, type GetProcessInstanceWaitStateStatisticsError as ov, type GetProcessInstanceWaitStateStatisticsErrors as ow, type GetProcessInstanceWaitStateStatisticsResponse as ox, type GetProcessInstanceWaitStateStatisticsResponses as oy, type GetResourceContentBinaryData as oz, type ActivateJobsResponses as p, type GetUserTaskResponse as p$, type GetRuntimeBackupAsClusterAdminResponses as p0, type GetRuntimeBackupData as p1, type GetRuntimeBackupError as p2, type GetRuntimeBackupErrors as p3, type GetRuntimeBackupResponse as p4, type GetRuntimeBackupResponses as p5, type GetRuntimeBackupStateAsClusterAdminData as p6, type GetRuntimeBackupStateAsClusterAdminError as p7, type GetRuntimeBackupStateAsClusterAdminErrors as p8, type GetRuntimeBackupStateAsClusterAdminResponse as p9, type GetTenantError as pA, type GetTenantErrors as pB, type GetTenantResponse as pC, type GetTenantResponses as pD, type GetTopologyData as pE, type GetTopologyError as pF, type GetTopologyErrors as pG, type GetTopologyResponse as pH, type GetTopologyResponses as pI, type GetUsageMetricsData as pJ, type GetUsageMetricsError as pK, type GetUsageMetricsErrors as pL, type GetUsageMetricsResponse as pM, type GetUsageMetricsResponses as pN, type GetUserData as pO, type GetUserError as pP, type GetUserErrors as pQ, type GetUserResponse as pR, type GetUserResponses as pS, type GetUserTaskData as pT, type GetUserTaskError as pU, type GetUserTaskErrors as pV, type GetUserTaskFormData as pW, type GetUserTaskFormError as pX, type GetUserTaskFormErrors as pY, type GetUserTaskFormResponse as pZ, type GetUserTaskFormResponses as p_, type GetRuntimeBackupStateAsClusterAdminResponses as pa, type GetRuntimeBackupStateData as pb, type GetRuntimeBackupStateError as pc, type GetRuntimeBackupStateErrors as pd, type GetRuntimeBackupStateResponse as pe, type GetRuntimeBackupStateResponses as pf, type GetStartProcessFormData as pg, type GetStartProcessFormError as ph, type GetStartProcessFormErrors as pi, type GetStartProcessFormResponse as pj, type GetStartProcessFormResponses as pk, type GetStatusData as pl, type GetStatusErrors as pm, type GetStatusResponse as pn, type GetStatusResponses as po, type GetSystemConfigurationData as pp, type GetSystemConfigurationError as pq, type GetSystemConfigurationErrors as pr, type GetSystemConfigurationResponse as ps, type GetSystemConfigurationResponses as pt, type GetTenantClusterVariableData as pu, type GetTenantClusterVariableError as pv, type GetTenantClusterVariableErrors as pw, type GetTenantClusterVariableResponse as px, type GetTenantClusterVariableResponses as py, type GetTenantData as pz, type AdHocSubProcessActivateActivitiesInstruction as q, type IncidentProcessInstanceStatisticsByErrorQuery as q$, type GetUserTaskResponses as q0, type GetVariableData as q1, type GetVariableError as q2, type GetVariableErrors as q3, type GetVariableResponse as q4, type GetVariableResponses as q5, type GlobalJobStatisticsQueryResult as q6, type GlobalListenerBase as q7, GlobalListenerId as q8, GlobalListenerSourceEnum as q9, type GroupSearchQueryRequest as qA, type GroupSearchQueryResult as qB, type GroupSearchQuerySortRequest as qC, type GroupUpdateRequest as qD, type GroupUpdateResult as qE, type GroupUserResult as qF, type GroupUserSearchQueryRequest as qG, type GroupUserSearchQuerySortRequest as qH, type GroupUserSearchResult as qI, type HandlerClock as qJ, type HistoryBackupInfo as qK, type HistoryBackupInfoWritable as qL, type HistoryBackupSnapshotInfo as qM, type HistoryBackupStateCode as qN, type HttpRetryPolicy as qO, IncidentErrorTypeEnum as qP, type IncidentErrorTypeExactMatch as qQ, type IncidentErrorTypeExactMatchWritable as qR, type IncidentErrorTypeFilterProperty as qS, type IncidentFilter as qT, IncidentKey as qU, type IncidentKeyWritable as qV, type IncidentProcessInstanceStatisticsByDefinitionFilter as qW, type IncidentProcessInstanceStatisticsByDefinitionQuery as qX, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as qY, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as qZ, type IncidentProcessInstanceStatisticsByDefinitionResult as q_, type GlobalListenerSourceExactMatch as qa, type GlobalListenerSourceExactMatchWritable as qb, type GlobalListenerSourceFilterProperty as qc, type GlobalTaskListenerBase as qd, GlobalTaskListenerEventTypeEnum as qe, type GlobalTaskListenerEventTypeExactMatch as qf, type GlobalTaskListenerEventTypeExactMatchWritable as qg, type GlobalTaskListenerEventTypeFilterProperty as qh, type GlobalTaskListenerEventTypes as qi, type GlobalTaskListenerEventTypesWritable as qj, type GlobalTaskListenerResult as qk, type GlobalTaskListenerSearchQueryFilterRequest as ql, type GlobalTaskListenerSearchQueryRequest as qm, type GlobalTaskListenerSearchQueryResult as qn, type GlobalTaskListenerSearchQuerySortRequest as qo, type GroupClientResult as qp, type GroupClientSearchQueryRequest as qq, type GroupClientSearchQuerySortRequest as qr, type GroupClientSearchResult as qs, type GroupCreateRequest as qt, type GroupCreateResult as qu, type GroupFilter as qv, GroupId as qw, type GroupMappingRuleSearchResult as qx, type GroupResult as qy, type GroupRoleSearchResult as qz, type AdHocSubProcessActivateActivityReference as r, type JobUpdateRequest as r$, type IncidentProcessInstanceStatisticsByErrorQueryResult as r0, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as r1, type IncidentProcessInstanceStatisticsByErrorResult as r2, type IncidentResolutionRequest as r3, type IncidentResult as r4, type IncidentSearchQuery as r5, type IncidentSearchQueryResult as r6, type IncidentSearchQuerySortRequest as r7, IncidentStateEnum as r8, type IncidentStateExactMatch as r9, type JobKindFilterProperty as rA, JobListenerEventTypeEnum as rB, type JobListenerEventTypeExactMatch as rC, type JobListenerEventTypeExactMatchWritable as rD, type JobListenerEventTypeFilterProperty as rE, type JobMetricsConfigurationResponse as rF, type JobResult as rG, type JobResultActivateElement as rH, type JobResultAdHocSubProcess as rI, type JobResultCorrections as rJ, type JobResultUserTask as rK, type JobSearchQuery as rL, type JobSearchQueryResult as rM, type JobSearchQuerySortRequest as rN, type JobSearchResult as rO, JobStateEnum as rP, type JobStateExactMatch as rQ, type JobStateExactMatchWritable as rR, type JobStateFilterProperty as rS, type JobTimeSeriesStatisticsFilter as rT, type JobTimeSeriesStatisticsItem as rU, type JobTimeSeriesStatisticsQuery as rV, type JobTimeSeriesStatisticsQueryResult as rW, type JobTypeStatisticsFilter as rX, type JobTypeStatisticsItem as rY, type JobTypeStatisticsQuery as rZ, type JobTypeStatisticsQueryResult as r_, type IncidentStateExactMatchWritable as ra, type IncidentStateFilterProperty as rb, type InferredAncestorKeyInstruction as rc, type IntegerFilterProperty as rd, type Job as re, JobActionReceipt as rf, type JobActivationRequest as rg, type JobActivationResult as rh, type JobBatchUpdateRequest as ri, type JobChangeset as rj, type JobCompletionRequest as rk, type JobErrorRequest$1 as rl, type JobErrorStatisticsFilter as rm, type JobErrorStatisticsItem as rn, type JobErrorStatisticsQuery as ro, type JobErrorStatisticsQueryResult as rp, type JobFailRequest as rq, type JobFilter as rr, JobKey as rs, type JobKeyExactMatch as rt, type JobKeyExactMatchWritable as ru, type JobKeyFilterProperty as rv, type JobKeyWritable as rw, JobKindEnum as rx, type JobKindExactMatch as ry, type JobKindExactMatchWritable as rz, type AdvancedActorTypeFilter as s, type MessageSubscriptionSearchQuery as s$, type JobWaitStateDetails as s0, JobWorker as s1, type JobWorkerConfig as s2, type JobWorkerStatisticsFilter as s3, type JobWorkerStatisticsItem as s4, type JobWorkerStatisticsQuery as s5, type JobWorkerStatisticsQueryResult as s6, type LicenseResponse as s7, type LikeFilter as s8, type LimitPagination as s9, type LoopIterationId as sA, type MappingRuleCreateRequest as sB, type MappingRuleCreateResult as sC, type MappingRuleCreateUpdateRequest as sD, type MappingRuleCreateUpdateResult as sE, type MappingRuleFilter as sF, MappingRuleId as sG, type MappingRuleResult as sH, type MappingRuleSearchQueryRequest as sI, type MappingRuleSearchQueryResult as sJ, type MappingRuleSearchQuerySortRequest as sK, type MappingRuleUpdateRequest as sL, type MappingRuleUpdateResult as sM, type MatchedDecisionRuleItem as sN, type MessageCorrelationRequest as sO, type MessageCorrelationResult as sP, MessageKey as sQ, type MessageKeyWritable as sR, type MessagePublicationRequest as sS, type MessagePublicationResult as sT, type MessageSubscriptionFilter as sU, MessageSubscriptionKey as sV, type MessageSubscriptionKeyExactMatch as sW, type MessageSubscriptionKeyExactMatchWritable as sX, type MessageSubscriptionKeyFilterProperty as sY, type MessageSubscriptionKeyWritable as sZ, type MessageSubscriptionResult as s_, type ListHistoryBackupsAsClusterAdminData as sa, type ListHistoryBackupsAsClusterAdminError as sb, type ListHistoryBackupsAsClusterAdminErrors as sc, type ListHistoryBackupsAsClusterAdminResponse as sd, type ListHistoryBackupsAsClusterAdminResponses as se, type ListHistoryBackupsData as sf, type ListHistoryBackupsError as sg, type ListHistoryBackupsErrors as sh, type ListHistoryBackupsResponse as si, type ListHistoryBackupsResponses as sj, type ListRuntimeBackupsAsClusterAdminData as sk, type ListRuntimeBackupsAsClusterAdminError as sl, type ListRuntimeBackupsAsClusterAdminErrors as sm, type ListRuntimeBackupsAsClusterAdminResponse as sn, type ListRuntimeBackupsAsClusterAdminResponses as so, type ListRuntimeBackupsData as sp, type ListRuntimeBackupsError as sq, type ListRuntimeBackupsErrors as sr, type ListRuntimeBackupsResponse as ss, type ListRuntimeBackupsResponses as st, type ListSecretsData as su, type ListSecretsError as sv, type ListSecretsErrors as sw, type ListSecretsResponse as sx, type ListSecretsResponses as sy, type LongKey as sz, type AdvancedAgentDefinitionKeyFilter as t, type PinClockData as t$, type MessageSubscriptionSearchQueryResult as t0, type MessageSubscriptionSearchQuerySortRequest as t1, MessageSubscriptionStateEnum as t2, type MessageSubscriptionStateExactMatch as t3, type MessageSubscriptionStateExactMatchWritable as t4, type MessageSubscriptionStateFilterProperty as t5, MessageSubscriptionTypeEnum as t6, type MessageSubscriptionTypeExactMatch as t7, type MessageSubscriptionTypeExactMatchWritable as t8, type MessageSubscriptionTypeFilterProperty as t9, type OperationReference as tA, type OperationTypeExactMatch as tB, type OperationTypeExactMatchWritable as tC, type OperationTypeFilterProperty as tD, type OwnAuthorizationSearchResult as tE, OwnerTypeEnum as tF, type PaginateOptions as tG, type Partition as tH, type PartitionBackupInfo as tI, type PartitionBackupInfoWritable as tJ, type PartitionBackupRange as tK, type PartitionBackupState as tL, type PartitionCheckpointState as tM, type PartitionId as tN, type PauseClusterExportingData as tO, type PauseClusterExportingError as tP, type PauseClusterExportingErrors as tQ, type PauseClusterExportingResponse as tR, type PauseClusterExportingResponses as tS, type PauseExportingData as tT, type PauseExportingError as tU, type PauseExportingErrors as tV, type PauseExportingResponse as tW, type PauseExportingResponses as tX, PermissionTypeEnum as tY, type PhysicalTenantBrokerTopology as tZ, type PhysicalTenantTopology as t_, type MessageWaitStateDetails as ta, type MigrateProcessInstanceData as tb, type MigrateProcessInstanceError as tc, type MigrateProcessInstanceErrors as td, type MigrateProcessInstanceMappingInstruction as te, type MigrateProcessInstanceResponse as tf, type MigrateProcessInstanceResponses as tg, type MigrateProcessInstancesBatchOperationData as th, type MigrateProcessInstancesBatchOperationError as ti, type MigrateProcessInstancesBatchOperationErrors as tj, type MigrateProcessInstancesBatchOperationResponse as tk, type MigrateProcessInstancesBatchOperationResponses as tl, type Mode as tm, type ModifyProcessInstanceData as tn, type ModifyProcessInstanceError as to, type ModifyProcessInstanceErrors as tp, type ModifyProcessInstanceResponse as tq, type ModifyProcessInstanceResponses as tr, type ModifyProcessInstanceVariableInstruction as ts, type ModifyProcessInstancesBatchOperationData as tt, type ModifyProcessInstancesBatchOperationError as tu, type ModifyProcessInstancesBatchOperationErrors as tv, type ModifyProcessInstancesBatchOperationResponse as tw, type ModifyProcessInstancesBatchOperationResponses as tx, type OffsetPagination as ty, type OperationOptions as tz, type AdvancedAgentDefinitionTypeFilter as u, type ProcessInstanceModificationInstruction as u$, type PinClockError as u0, type PinClockErrors as u1, type PinClockResponse as u2, type PinClockResponses as u3, type ProblemDetail as u4, type ProcessDefinitionElementStatisticsQuery as u5, type ProcessDefinitionElementStatisticsQueryResult as u6, type ProcessDefinitionFilter as u7, ProcessDefinitionId as u8, type ProcessDefinitionIdExactMatch as u9, type ProcessDefinitionVariableNameSearchQueryResult as uA, type ProcessDefinitionVariableNameSearchResult as uB, type ProcessElementStatisticsResult as uC, type ProcessInstanceBusinessIdAssignmentInstruction as uD, type ProcessInstanceCallHierarchyEntry as uE, type ProcessInstanceCancellationBatchOperationRequest as uF, type ProcessInstanceCreationInstruction as uG, type ProcessInstanceCreationInstructionById as uH, type ProcessInstanceCreationInstructionByKey as uI, type ProcessInstanceCreationRuntimeInstruction as uJ, type ProcessInstanceCreationStartInstruction as uK, type ProcessInstanceCreationTerminateInstruction as uL, type ProcessInstanceDeletionBatchOperationRequest as uM, type ProcessInstanceElementStatisticsQueryResult as uN, type ProcessInstanceFilter as uO, type ProcessInstanceFilterFields as uP, type ProcessInstanceIncidentResolutionBatchOperationRequest as uQ, ProcessInstanceKey as uR, type ProcessInstanceKeyExactMatch as uS, type ProcessInstanceKeyExactMatchWritable as uT, type ProcessInstanceKeyFilterProperty as uU, type ProcessInstanceKeyWritable as uV, type ProcessInstanceMigrationBatchOperationPlan as uW, type ProcessInstanceMigrationBatchOperationRequest as uX, type ProcessInstanceMigrationInstruction as uY, type ProcessInstanceModificationActivateInstruction as uZ, type ProcessInstanceModificationBatchOperationRequest as u_, type ProcessDefinitionIdExactMatchWritable as ua, type ProcessDefinitionIdFilterProperty as ub, type ProcessDefinitionInstanceStatisticsQuery as uc, type ProcessDefinitionInstanceStatisticsQueryResult as ud, type ProcessDefinitionInstanceStatisticsQuerySortRequest as ue, type ProcessDefinitionInstanceStatisticsResult as uf, type ProcessDefinitionInstanceVersionStatisticsFilter as ug, type ProcessDefinitionInstanceVersionStatisticsQuery as uh, type ProcessDefinitionInstanceVersionStatisticsQueryResult as ui, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as uj, type ProcessDefinitionInstanceVersionStatisticsResult as uk, ProcessDefinitionKey as ul, type ProcessDefinitionKeyExactMatch as um, type ProcessDefinitionKeyExactMatchWritable as un, type ProcessDefinitionKeyFilterProperty as uo, type ProcessDefinitionKeyWritable as up, type ProcessDefinitionMessageSubscriptionStatisticsQuery as uq, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as ur, type ProcessDefinitionMessageSubscriptionStatisticsResult as us, type ProcessDefinitionResult as ut, type ProcessDefinitionSearchQuery as uu, type ProcessDefinitionSearchQueryResult as uv, type ProcessDefinitionSearchQuerySortRequest as uw, type ProcessDefinitionStatisticsFilter as ux, type ProcessDefinitionVariableNameFilter as uy, type ProcessDefinitionVariableNameSearchQuery as uz, type AdvancedAgentHistoryItemKeyFilter as v, type RestoreAsClusterAdminData as v$, type ProcessInstanceModificationMoveBatchOperationInstruction as v0, type ProcessInstanceModificationMoveInstruction as v1, type ProcessInstanceModificationTerminateByIdInstruction as v2, type ProcessInstanceModificationTerminateByKeyInstruction as v3, type ProcessInstanceModificationTerminateInstruction as v4, type ProcessInstanceReference as v5, type ProcessInstanceResult as v6, type ProcessInstanceResumptionBatchOperationRequest as v7, type ProcessInstanceSearchQuery as v8, type ProcessInstanceSearchQueryResult as v9, type ResolveIncidentsBatchOperationData as vA, type ResolveIncidentsBatchOperationError as vB, type ResolveIncidentsBatchOperationErrors as vC, type ResolveIncidentsBatchOperationResponse as vD, type ResolveIncidentsBatchOperationResponses as vE, type ResolveProcessInstanceIncidentsData as vF, type ResolveProcessInstanceIncidentsError as vG, type ResolveProcessInstanceIncidentsErrors as vH, type ResolveProcessInstanceIncidentsResponse as vI, type ResolveProcessInstanceIncidentsResponses as vJ, type ResolveSecretsData as vK, type ResolveSecretsError as vL, type ResolveSecretsErrors as vM, type ResolveSecretsResponse as vN, type ResolveSecretsResponses as vO, type ResolvedSecret as vP, type ResourceFilter as vQ, type ResourceKey as vR, type ResourceKeyExactMatch as vS, type ResourceKeyExactMatchWritable as vT, type ResourceKeyFilterProperty as vU, type ResourceKeyWritable as vV, type ResourceResult as vW, type ResourceSearchQuery as vX, type ResourceSearchQueryResult as vY, type ResourceSearchQuerySortRequest as vZ, ResourceTypeEnum as v_, type ProcessInstanceSearchQuerySortRequest as va, type ProcessInstanceSequenceFlowResult as vb, type ProcessInstanceSequenceFlowsQueryResult as vc, ProcessInstanceStateEnum as vd, type ProcessInstanceStateExactMatch as ve, type ProcessInstanceStateExactMatchWritable as vf, type ProcessInstanceStateFilterProperty as vg, type ProcessInstanceSuspensionBatchOperationRequest as vh, type ProcessInstanceWaitStateStatisticsQueryResult as vi, type ProcessInstanceWaitStateStatisticsResult as vj, type PublishMessageData as vk, type PublishMessageError as vl, type PublishMessageErrors as vm, type PublishMessageResponse as vn, type PublishMessageResponses as vo, type RebalanceCancellationResponse as vp, type ResetClockData as vq, type ResetClockError as vr, type ResetClockErrors as vs, type ResetClockResponse as vt, type ResetClockResponses as vu, type ResolveIncidentData as vv, type ResolveIncidentError as vw, type ResolveIncidentErrors as vx, type ResolveIncidentResponse as vy, type ResolveIncidentResponses as vz, type AdvancedAgentInstanceHistoryCommitStatusFilter as w, type ScopeKey as w$, type RestoreAsClusterAdminError as w0, type RestoreAsClusterAdminErrors as w1, type RestoreAsClusterAdminResponse as w2, type RestoreAsClusterAdminResponses as w3, type RestoreBrokerStatus as w4, type RestoreData as w5, type RestoreError as w6, type RestoreErrors as w7, type RestorePartitionStatus as w8, type RestoreRequest as w9, type ResumeProcessInstancesBatchOperationErrors as wA, type ResumeProcessInstancesBatchOperationResponse as wB, type ResumeProcessInstancesBatchOperationResponses as wC, type RoleClientResult as wD, type RoleClientSearchQueryRequest as wE, type RoleClientSearchQuerySortRequest as wF, type RoleClientSearchResult as wG, type RoleCreateRequest as wH, type RoleCreateResult as wI, type RoleFilter as wJ, type RoleGroupResult as wK, type RoleGroupSearchQueryRequest as wL, type RoleGroupSearchQuerySortRequest as wM, type RoleGroupSearchResult as wN, RoleId as wO, type RoleMappingRuleSearchResult as wP, type RoleResult as wQ, type RoleSearchQueryRequest as wR, type RoleSearchQueryResult as wS, type RoleSearchQuerySortRequest as wT, type RoleUpdateRequest as wU, type RoleUpdateResult as wV, type RoleUserResult as wW, type RoleUserSearchQueryRequest as wX, type RoleUserSearchQuerySortRequest as wY, type RoleUserSearchResult as wZ, type RuntimeBackupState as w_, type RestoreResponse as wa, type RestoreResponses as wb, type RestoreStatusResponse as wc, type ResumeBatchOperationData as wd, type ResumeBatchOperationError as we, type ResumeBatchOperationErrors as wf, type ResumeBatchOperationResponse as wg, type ResumeBatchOperationResponses as wh, type ResumeClusterExportingData as wi, type ResumeClusterExportingError as wj, type ResumeClusterExportingErrors as wk, type ResumeClusterExportingResponse as wl, type ResumeClusterExportingResponses as wm, type ResumeExportingData as wn, type ResumeExportingError as wo, type ResumeExportingErrors as wp, type ResumeExportingResponse as wq, type ResumeExportingResponses as wr, type ResumeProcessInstanceData as ws, type ResumeProcessInstanceError as wt, type ResumeProcessInstanceErrors as wu, type ResumeProcessInstanceRequest as wv, type ResumeProcessInstanceResponse as ww, type ResumeProcessInstanceResponses as wx, type ResumeProcessInstancesBatchOperationData as wy, type ResumeProcessInstancesBatchOperationError as wz, type AdvancedAgentInstanceHistoryRoleFilter as x, type SearchDecisionDefinitionsData as x$, type ScopeKeyExactMatch as x0, type ScopeKeyExactMatchWritable as x1, type ScopeKeyFilterProperty as x2, type ScopeKeyWritable as x3, type SearchAgentDefinitionsData as x4, type SearchAgentDefinitionsError as x5, type SearchAgentDefinitionsErrors as x6, type SearchAgentDefinitionsResponse as x7, type SearchAgentDefinitionsResponses as x8, type SearchAgentInstanceHistoryData as x9, type SearchBatchOperationsErrors as xA, type SearchBatchOperationsResponse as xB, type SearchBatchOperationsResponses as xC, type SearchBody as xD, type SearchClientsForGroupData as xE, type SearchClientsForGroupError as xF, type SearchClientsForGroupErrors as xG, type SearchClientsForGroupResponse as xH, type SearchClientsForGroupResponses as xI, type SearchClientsForRoleData as xJ, type SearchClientsForRoleError as xK, type SearchClientsForRoleErrors as xL, type SearchClientsForRoleResponse as xM, type SearchClientsForRoleResponses as xN, type SearchClientsForTenantData as xO, type SearchClientsForTenantResponse as xP, type SearchClientsForTenantResponses as xQ, type SearchClusterVariablesData as xR, type SearchClusterVariablesError as xS, type SearchClusterVariablesErrors as xT, type SearchClusterVariablesResponse as xU, type SearchClusterVariablesResponses as xV, type SearchCorrelatedMessageSubscriptionsData as xW, type SearchCorrelatedMessageSubscriptionsError as xX, type SearchCorrelatedMessageSubscriptionsErrors as xY, type SearchCorrelatedMessageSubscriptionsResponse as xZ, type SearchCorrelatedMessageSubscriptionsResponses as x_, type SearchAgentInstanceHistoryError as xa, type SearchAgentInstanceHistoryErrors as xb, type SearchAgentInstanceHistoryResponse as xc, type SearchAgentInstanceHistoryResponses as xd, type SearchAgentInstancesData as xe, type SearchAgentInstancesError as xf, type SearchAgentInstancesErrors as xg, type SearchAgentInstancesResponse as xh, type SearchAgentInstancesResponses as xi, type SearchAuditLogsData as xj, type SearchAuditLogsError as xk, type SearchAuditLogsErrors as xl, type SearchAuditLogsResponse as xm, type SearchAuditLogsResponses as xn, type SearchAuthorizationsData as xo, type SearchAuthorizationsError as xp, type SearchAuthorizationsErrors as xq, type SearchAuthorizationsResponse as xr, type SearchAuthorizationsResponses as xs, type SearchBatchOperationItemsData as xt, type SearchBatchOperationItemsError as xu, type SearchBatchOperationItemsErrors as xv, type SearchBatchOperationItemsResponse as xw, type SearchBatchOperationItemsResponses as xx, type SearchBatchOperationsData as xy, type SearchBatchOperationsError as xz, type AdvancedAgentInstanceKeyFilter as y, type SearchMappingRulesForGroupError as y$, type SearchDecisionDefinitionsError as y0, type SearchDecisionDefinitionsErrors as y1, type SearchDecisionDefinitionsResponse as y2, type SearchDecisionDefinitionsResponses as y3, type SearchDecisionInstancesData as y4, type SearchDecisionInstancesError as y5, type SearchDecisionInstancesErrors as y6, type SearchDecisionInstancesResponse as y7, type SearchDecisionInstancesResponses as y8, type SearchDecisionRequirementsData as y9, type SearchGroupIdsForTenantResponses as yA, type SearchGroupsData as yB, type SearchGroupsError as yC, type SearchGroupsErrors as yD, type SearchGroupsForRoleData as yE, type SearchGroupsForRoleError as yF, type SearchGroupsForRoleErrors as yG, type SearchGroupsForRoleResponse as yH, type SearchGroupsForRoleResponses as yI, type SearchGroupsResponse as yJ, type SearchGroupsResponses as yK, type SearchIncidentsData as yL, type SearchIncidentsError as yM, type SearchIncidentsErrors as yN, type SearchIncidentsResponse as yO, type SearchIncidentsResponses as yP, type SearchJobsData as yQ, type SearchJobsError as yR, type SearchJobsErrors as yS, type SearchJobsResponse as yT, type SearchJobsResponses as yU, type SearchMappingRuleData as yV, type SearchMappingRuleError as yW, type SearchMappingRuleErrors as yX, type SearchMappingRuleResponse as yY, type SearchMappingRuleResponses as yZ, type SearchMappingRulesForGroupData as y_, type SearchDecisionRequirementsError as ya, type SearchDecisionRequirementsErrors as yb, type SearchDecisionRequirementsResponse as yc, type SearchDecisionRequirementsResponses as yd, type SearchElementInstanceIncidentsData as ye, type SearchElementInstanceIncidentsError as yf, type SearchElementInstanceIncidentsErrors as yg, type SearchElementInstanceIncidentsResponse as yh, type SearchElementInstanceIncidentsResponses as yi, type SearchElementInstanceWaitStatesData as yj, type SearchElementInstanceWaitStatesError as yk, type SearchElementInstanceWaitStatesErrors as yl, type SearchElementInstanceWaitStatesResponse as ym, type SearchElementInstanceWaitStatesResponses as yn, type SearchElementInstancesData as yo, type SearchElementInstancesError as yp, type SearchElementInstancesErrors as yq, type SearchElementInstancesResponse as yr, type SearchElementInstancesResponses as ys, type SearchGlobalTaskListenersData as yt, type SearchGlobalTaskListenersError as yu, type SearchGlobalTaskListenersErrors as yv, type SearchGlobalTaskListenersResponse as yw, type SearchGlobalTaskListenersResponses as yx, type SearchGroupIdsForTenantData as yy, type SearchGroupIdsForTenantResponse as yz, type AdvancedAgentInstanceStatusFilter as z, type SearchRolesForTenantResponses as z$, type SearchMappingRulesForGroupErrors as z0, type SearchMappingRulesForGroupResponse as z1, type SearchMappingRulesForGroupResponses as z2, type SearchMappingRulesForRoleData as z3, type SearchMappingRulesForRoleError as z4, type SearchMappingRulesForRoleErrors as z5, type SearchMappingRulesForRoleResponse as z6, type SearchMappingRulesForRoleResponses as z7, type SearchMappingRulesForTenantData as z8, type SearchMappingRulesForTenantResponse as z9, type SearchProcessInstanceIncidentsErrors as zA, type SearchProcessInstanceIncidentsResponse as zB, type SearchProcessInstanceIncidentsResponses as zC, type SearchProcessInstancesData as zD, type SearchProcessInstancesError as zE, type SearchProcessInstancesErrors as zF, type SearchProcessInstancesResponse as zG, type SearchProcessInstancesResponses as zH, type SearchQueryPageRequest as zI, type SearchQueryPageResponse as zJ, type SearchQueryRequest as zK, type SearchQueryResponse as zL, type SearchResourcesData as zM, type SearchResourcesError as zN, type SearchResourcesErrors as zO, type SearchResourcesResponse as zP, type SearchResourcesResponses as zQ, type SearchRolesData as zR, type SearchRolesError as zS, type SearchRolesErrors as zT, type SearchRolesForGroupData as zU, type SearchRolesForGroupError as zV, type SearchRolesForGroupErrors as zW, type SearchRolesForGroupResponse as zX, type SearchRolesForGroupResponses as zY, type SearchRolesForTenantData as zZ, type SearchRolesForTenantResponse as z_, type SearchMappingRulesForTenantResponses as za, type SearchMessageSubscriptionsData as zb, type SearchMessageSubscriptionsError as zc, type SearchMessageSubscriptionsErrors as zd, type SearchMessageSubscriptionsResponse as ze, type SearchMessageSubscriptionsResponses as zf, type SearchOwnAuthorizationsData as zg, type SearchOwnAuthorizationsError as zh, type SearchOwnAuthorizationsErrors as zi, type SearchOwnAuthorizationsResponse as zj, type SearchOwnAuthorizationsResponses as zk, type SearchPageRequest as zl, type SearchPageResponse as zm, type SearchPaginationApi as zn, type SearchProcessDefinitionVariableNamesData as zo, type SearchProcessDefinitionVariableNamesError as zp, type SearchProcessDefinitionVariableNamesErrors as zq, type SearchProcessDefinitionVariableNamesResponse as zr, type SearchProcessDefinitionVariableNamesResponses as zs, type SearchProcessDefinitionsData as zt, type SearchProcessDefinitionsError as zu, type SearchProcessDefinitionsErrors as zv, type SearchProcessDefinitionsResponse as zw, type SearchProcessDefinitionsResponses as zx, type SearchProcessInstanceIncidentsData as zy, type SearchProcessInstanceIncidentsError as zz };