@camunda8/orchestration-cluster-api 10.0.0-alpha.7 → 10.0.0-alpha.9

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.
@@ -818,6 +818,18 @@ type AgentInstanceFilter = {
818
818
  * If multiple keys are provided, the filter matches agent instances associated with all of the provided keys at the same time.
819
819
  */
820
820
  elementInstanceKeys?: Array<ElementInstanceKeyFilterProperty>;
821
+ /**
822
+ * The BPMN process ID of the process definition associated with this agent instance.
823
+ */
824
+ processDefinitionId?: StringFilterProperty;
825
+ /**
826
+ * The version of the process definition associated with this agent instance.
827
+ */
828
+ processDefinitionVersion?: IntegerFilterProperty;
829
+ /**
830
+ * The version tag of the process definition associated with this agent instance.
831
+ */
832
+ processDefinitionVersionTag?: StringFilterProperty;
821
833
  };
822
834
  /**
823
835
  * Agent instance search response.
@@ -858,10 +870,28 @@ type AgentInstanceResult = {
858
870
  * The key of the process instance that owns this agent instance.
859
871
  */
860
872
  processInstanceKey: ProcessInstanceKey;
873
+ /**
874
+ * The key of the root process instance. The root process instance is the top-level
875
+ * ancestor in the process instance hierarchy.
876
+ *
877
+ */
878
+ rootProcessInstanceKey: ProcessInstanceKey;
861
879
  /**
862
880
  * The key of the process definition associated with this agent instance.
863
881
  */
864
882
  processDefinitionKey: ProcessDefinitionKey;
883
+ /**
884
+ * The BPMN process ID of the process definition associated with this agent instance.
885
+ */
886
+ processDefinitionId: ProcessDefinitionId;
887
+ /**
888
+ * The version of the process definition associated with this agent instance.
889
+ */
890
+ processDefinitionVersion: number;
891
+ /**
892
+ * The version tag of the process definition associated with this agent instance.
893
+ */
894
+ processDefinitionVersionTag: string | null;
865
895
  /**
866
896
  * The tenant ID of this agent instance.
867
897
  */
@@ -959,6 +989,7 @@ type AgentInstanceLimits = {
959
989
  * The current status of an agent instance.
960
990
  */
961
991
  declare const AgentInstanceStatusEnum: {
992
+ readonly UNKNOWN: "UNKNOWN";
962
993
  readonly COMPLETED: "COMPLETED";
963
994
  readonly IDLE: "IDLE";
964
995
  readonly INITIALIZING: "INITIALIZING";
@@ -967,6 +998,17 @@ declare const AgentInstanceStatusEnum: {
967
998
  readonly TOOL_DISCOVERY: "TOOL_DISCOVERY";
968
999
  };
969
1000
  type AgentInstanceStatusEnum = (typeof AgentInstanceStatusEnum)[keyof typeof AgentInstanceStatusEnum];
1001
+ /**
1002
+ * The status values that can be set on an agent instance via an update request.
1003
+ *
1004
+ */
1005
+ declare const AgentInstanceUpdateStatusEnum: {
1006
+ readonly IDLE: "IDLE";
1007
+ readonly THINKING: "THINKING";
1008
+ readonly TOOL_CALLING: "TOOL_CALLING";
1009
+ readonly TOOL_DISCOVERY: "TOOL_DISCOVERY";
1010
+ };
1011
+ type AgentInstanceUpdateStatusEnum = (typeof AgentInstanceUpdateStatusEnum)[keyof typeof AgentInstanceUpdateStatusEnum];
970
1012
  /**
971
1013
  * Request to create a new agent instance.
972
1014
  */
@@ -1023,15 +1065,23 @@ type AgentInstanceMetricsDelta = {
1023
1065
  toolCalls?: number;
1024
1066
  };
1025
1067
  /**
1026
- * Request to update the mutable state of an agent instance. At least one of
1027
- * status, metrics, or tools must be provided.
1068
+ * Request to update the mutable state of an agent instance.
1028
1069
  *
1029
1070
  */
1030
1071
  type AgentInstanceUpdateRequest = {
1072
+ /**
1073
+ * The key of the currently-active element instance for this agent instance.
1074
+ * Used for ownership/equality validation against the stored agent instance
1075
+ * and, when the supplied key differs from the previous association (re-entry
1076
+ * of an ad-hoc sub-process or AI Agent task), appended to elementInstanceKeys
1077
+ * with the reverse link updated on the supplied element instance.
1078
+ *
1079
+ */
1080
+ elementInstanceKey: ElementInstanceKey;
1031
1081
  /**
1032
1082
  * The new status of the agent instance.
1033
1083
  */
1034
- status?: AgentInstanceStatusEnum;
1084
+ status?: AgentInstanceUpdateStatusEnum;
1035
1085
  /**
1036
1086
  * Metric increments to apply to the aggregate counters.
1037
1087
  */
@@ -1042,7 +1092,7 @@ type AgentInstanceUpdateRequest = {
1042
1092
  * this value.
1043
1093
  *
1044
1094
  */
1045
- tools?: Array<AgentTool>;
1095
+ tools?: Array<AgentTool> | null;
1046
1096
  };
1047
1097
  /**
1048
1098
  * AgentInstanceStatusEnum property with full advanced search capabilities.
@@ -3657,9 +3707,41 @@ type ElementInstanceSearchQuery = SearchQueryRequest & {
3657
3707
  filter?: ElementInstanceFilter;
3658
3708
  };
3659
3709
  /**
3660
- * Element instance filter.
3710
+ * Element instance search filter.
3661
3711
  */
3662
- type ElementInstanceFilter = {
3712
+ type ElementInstanceFilter = ElementInstanceFilterFields & {
3713
+ /**
3714
+ * Defines a list of alternative filter groups combined using OR logic. Each object in the array is evaluated independently, and the filter matches if any one of them is satisfied.
3715
+ *
3716
+ * Top-level fields and the `$or` clause are combined using AND logic — meaning: (top-level filters) AND (any of the `$or` filters) must match.
3717
+ * <br>
3718
+ * <em>Example:</em>
3719
+ *
3720
+ * ```json
3721
+ * {
3722
+ * "processInstanceKey": "2251799813685323",
3723
+ * "$or": [
3724
+ * { "elementName": { "$like": "*Order*" } },
3725
+ * { "elementId": { "$like": "*Order*" } }
3726
+ * ]
3727
+ * }
3728
+ * ```
3729
+ * This matches element instances scoped to the given process instance whose:
3730
+ *
3731
+ * <ul style="padding-left: 20px; margin-left: 20px;">
3732
+ * <li style="list-style-type: disc;"><code>elementName</code> contains <em>Order</em>, or</li>
3733
+ * <li style="list-style-type: disc;"><code>elementId</code> contains <em>Order</em></li>
3734
+ * </ul>
3735
+ * <br>
3736
+ * <p>Note: Using complex <code>$or</code> conditions may impact performance, use with caution in high-volume environments.
3737
+ *
3738
+ */
3739
+ $or?: Array<ElementInstanceFilterFields>;
3740
+ };
3741
+ /**
3742
+ * Element instance filter fields.
3743
+ */
3744
+ type ElementInstanceFilterFields = {
3663
3745
  /**
3664
3746
  * The process definition ID associated to this element instance.
3665
3747
  */
@@ -3830,6 +3912,220 @@ type AdHocSubProcessActivateActivitiesInstruction = {
3830
3912
  */
3831
3913
  cancelRemainingInstances?: boolean;
3832
3914
  };
3915
+ /**
3916
+ * Element instance inspection request.
3917
+ */
3918
+ type ElementInstanceWaitStateQuery = SearchQueryRequest & {
3919
+ /**
3920
+ * Filter criteria for the inspection.
3921
+ */
3922
+ filter?: ElementInstanceWaitStateFilter;
3923
+ };
3924
+ /**
3925
+ * Filters for the element instance inspection.
3926
+ */
3927
+ type ElementInstanceWaitStateFilter = {
3928
+ /**
3929
+ * Filter by element instance key.
3930
+ */
3931
+ elementInstanceKey?: ElementInstanceKeyFilterProperty;
3932
+ /**
3933
+ * Filter by process instance key.
3934
+ */
3935
+ processInstanceKey?: ProcessInstanceKeyFilterProperty;
3936
+ /**
3937
+ * Filter by root process instance key.
3938
+ */
3939
+ rootProcessInstanceKey?: ProcessInstanceKeyFilterProperty;
3940
+ /**
3941
+ * Filter by element ID.
3942
+ */
3943
+ elementId?: ElementIdFilterProperty;
3944
+ /**
3945
+ * Filter by element type.
3946
+ */
3947
+ elementType?: WaitStateElementTypeFilterProperty;
3948
+ /**
3949
+ * Filter by wait state type.
3950
+ */
3951
+ waitStateType?: WaitStateTypeFilterProperty;
3952
+ };
3953
+ /**
3954
+ * Element type property with full advanced search capabilities.
3955
+ */
3956
+ type WaitStateElementTypeFilterProperty = WaitStateElementTypeExactMatch | AdvancedWaitStateElementTypeFilter;
3957
+ /**
3958
+ * Advanced filter
3959
+ *
3960
+ * Advanced element type filter.
3961
+ */
3962
+ type AdvancedWaitStateElementTypeFilter = {
3963
+ /**
3964
+ * Checks for equality with the provided value.
3965
+ */
3966
+ $eq?: WaitStateElementTypeEnum;
3967
+ /**
3968
+ * Checks for inequality with the provided value.
3969
+ */
3970
+ $neq?: WaitStateElementTypeEnum;
3971
+ /**
3972
+ * Checks if the current property exists.
3973
+ */
3974
+ $exists?: boolean;
3975
+ /**
3976
+ * Checks if the property matches any of the provided values.
3977
+ */
3978
+ $in?: Array<WaitStateElementTypeEnum>;
3979
+ $like?: LikeFilter;
3980
+ };
3981
+ /**
3982
+ * The BPMN element type of a waiting element instance.
3983
+ */
3984
+ declare const WaitStateElementTypeEnum: {
3985
+ readonly AD_HOC_SUB_PROCESS: "AD_HOC_SUB_PROCESS";
3986
+ readonly AD_HOC_SUB_PROCESS_INNER_INSTANCE: "AD_HOC_SUB_PROCESS_INNER_INSTANCE";
3987
+ readonly BOUNDARY_EVENT: "BOUNDARY_EVENT";
3988
+ readonly BUSINESS_RULE_TASK: "BUSINESS_RULE_TASK";
3989
+ readonly CALL_ACTIVITY: "CALL_ACTIVITY";
3990
+ readonly END_EVENT: "END_EVENT";
3991
+ readonly EVENT_BASED_GATEWAY: "EVENT_BASED_GATEWAY";
3992
+ readonly EVENT_SUB_PROCESS: "EVENT_SUB_PROCESS";
3993
+ readonly EXCLUSIVE_GATEWAY: "EXCLUSIVE_GATEWAY";
3994
+ readonly INCLUSIVE_GATEWAY: "INCLUSIVE_GATEWAY";
3995
+ readonly INTERMEDIATE_CATCH_EVENT: "INTERMEDIATE_CATCH_EVENT";
3996
+ readonly INTERMEDIATE_THROW_EVENT: "INTERMEDIATE_THROW_EVENT";
3997
+ readonly MANUAL_TASK: "MANUAL_TASK";
3998
+ readonly MULTI_INSTANCE_BODY: "MULTI_INSTANCE_BODY";
3999
+ readonly PARALLEL_GATEWAY: "PARALLEL_GATEWAY";
4000
+ readonly PROCESS: "PROCESS";
4001
+ readonly RECEIVE_TASK: "RECEIVE_TASK";
4002
+ readonly SCRIPT_TASK: "SCRIPT_TASK";
4003
+ readonly SEND_TASK: "SEND_TASK";
4004
+ readonly SEQUENCE_FLOW: "SEQUENCE_FLOW";
4005
+ readonly SERVICE_TASK: "SERVICE_TASK";
4006
+ readonly START_EVENT: "START_EVENT";
4007
+ readonly SUB_PROCESS: "SUB_PROCESS";
4008
+ readonly TASK: "TASK";
4009
+ readonly UNKNOWN: "UNKNOWN";
4010
+ readonly UNSPECIFIED: "UNSPECIFIED";
4011
+ readonly USER_TASK: "USER_TASK";
4012
+ };
4013
+ type WaitStateElementTypeEnum = (typeof WaitStateElementTypeEnum)[keyof typeof WaitStateElementTypeEnum];
4014
+ /**
4015
+ * Wait state type property with full advanced search capabilities.
4016
+ */
4017
+ type WaitStateTypeFilterProperty = WaitStateTypeExactMatch | AdvancedWaitStateTypeFilter;
4018
+ /**
4019
+ * Advanced filter
4020
+ *
4021
+ * Advanced wait state type filter.
4022
+ */
4023
+ type AdvancedWaitStateTypeFilter = {
4024
+ /**
4025
+ * Checks for equality with the provided value.
4026
+ */
4027
+ $eq?: WaitStateTypeEnum;
4028
+ /**
4029
+ * Checks for inequality with the provided value.
4030
+ */
4031
+ $neq?: WaitStateTypeEnum;
4032
+ /**
4033
+ * Checks if the current property exists.
4034
+ */
4035
+ $exists?: boolean;
4036
+ /**
4037
+ * Checks if the property matches any of the provided values.
4038
+ */
4039
+ $in?: Array<WaitStateTypeEnum>;
4040
+ $like?: LikeFilter;
4041
+ };
4042
+ type ElementInstanceWaitStateQueryResult = SearchQueryResponse & {
4043
+ /**
4044
+ * The matching waiting states.
4045
+ */
4046
+ items: Array<ElementInstanceWaitStateResult>;
4047
+ };
4048
+ /**
4049
+ * An element instance waiting state.
4050
+ */
4051
+ type ElementInstanceWaitStateResult = {
4052
+ /**
4053
+ * The type of waiting state an element instance is in.
4054
+ */
4055
+ waitStateType: WaitStateTypeEnum;
4056
+ /**
4057
+ * Key of the root process instance.
4058
+ */
4059
+ rootProcessInstanceKey: ProcessInstanceKey | null;
4060
+ /**
4061
+ * The process instance key associated to this element instance.
4062
+ */
4063
+ processInstanceKey: ProcessInstanceKey;
4064
+ /**
4065
+ * The element instance key associated to this element instance.
4066
+ */
4067
+ elementInstanceKey: ElementInstanceKey;
4068
+ /**
4069
+ * The element ID for this element instance.
4070
+ */
4071
+ elementId: ElementId;
4072
+ /**
4073
+ * The BPMN element type of this element instance.
4074
+ */
4075
+ elementType: WaitStateElementTypeEnum;
4076
+ /**
4077
+ * The tenant ID of the element instance.
4078
+ */
4079
+ tenantId: TenantId;
4080
+ /**
4081
+ * Job details, present when waitStateType is JOB.
4082
+ */
4083
+ jobDetails: JobWaitStateDetails | null;
4084
+ /**
4085
+ * Message details, present when waitStateType is MESSAGE.
4086
+ */
4087
+ messageDetails: MessageWaitStateDetails | null;
4088
+ };
4089
+ /**
4090
+ * The type of waiting state an element instance is in.
4091
+ */
4092
+ declare const WaitStateTypeEnum: {
4093
+ readonly JOB: "JOB";
4094
+ readonly MESSAGE: "MESSAGE";
4095
+ };
4096
+ type WaitStateTypeEnum = (typeof WaitStateTypeEnum)[keyof typeof WaitStateTypeEnum];
4097
+ type JobWaitStateDetails = {
4098
+ /**
4099
+ * The key of the job.
4100
+ */
4101
+ jobKey: JobKey;
4102
+ /**
4103
+ * The job type (worker subscription identifier).
4104
+ */
4105
+ jobType: string;
4106
+ /**
4107
+ * The kind of job.
4108
+ */
4109
+ jobKind: JobKindEnum;
4110
+ /**
4111
+ * The listener event type of the job (only set for execution listener and task listener jobs).
4112
+ */
4113
+ listenerEventType: JobListenerEventTypeEnum | null;
4114
+ /**
4115
+ * The number of retries remaining for the job.
4116
+ */
4117
+ retries: number | null;
4118
+ };
4119
+ type MessageWaitStateDetails = {
4120
+ /**
4121
+ * The name of the message being awaited.
4122
+ */
4123
+ messageName: string;
4124
+ /**
4125
+ * The correlation key for the message subscription (null for start events).
4126
+ */
4127
+ correlationKey: string | null;
4128
+ };
3833
4129
  type AdHocSubProcessActivateActivityReference = {
3834
4130
  /**
3835
4131
  * The ID of the element that should be activated.
@@ -3851,6 +4147,15 @@ type ExpressionEvaluationRequest = {
3851
4147
  * Required when the expression references tenant-scoped cluster variables
3852
4148
  */
3853
4149
  tenantId?: string;
4150
+ /**
4151
+ * Key of the process instance or element instance whose variables should be made visible
4152
+ * to the expression. Use a process instance key to evaluate against the process instance
4153
+ * scope, or an element instance key to evaluate against that element instance scope. If
4154
+ * omitted, the expression is evaluated unscoped, using only cluster variables
4155
+ * and request-body variables.
4156
+ *
4157
+ */
4158
+ scopeKey?: ScopeKey;
3854
4159
  /**
3855
4160
  * Optional variables for expression evaluation. These variables are only used for the current evaluation and do not persist beyond it.
3856
4161
  */
@@ -5162,6 +5467,11 @@ type ActivatedJobResult$1 = {
5162
5467
  *
5163
5468
  */
5164
5469
  rootProcessInstanceKey: ProcessInstanceKey | null;
5470
+ /**
5471
+ * The priority of the job. Higher values indicate higher priority. Jobs created before 8.10 have no stored priority; the API returns 0 for such jobs.
5472
+ *
5473
+ */
5474
+ priority: number;
5165
5475
  };
5166
5476
  /**
5167
5477
  * Contains properties of a user task.
@@ -5225,7 +5535,7 @@ type JobSearchQuerySortRequest = {
5225
5535
  /**
5226
5536
  * The field to sort by.
5227
5537
  */
5228
- field: 'deadline' | 'deniedReason' | 'elementId' | 'elementInstanceKey' | 'endTime' | 'errorCode' | 'errorMessage' | 'hasFailedWithRetriesLeft' | 'isDenied' | 'jobKey' | 'kind' | 'listenerEventType' | 'processDefinitionId' | 'processDefinitionKey' | 'processInstanceKey' | 'retries' | 'state' | 'tenantId' | 'type' | 'worker';
5538
+ field: 'deadline' | 'deniedReason' | 'elementId' | 'elementInstanceKey' | 'endTime' | 'errorCode' | 'errorMessage' | 'hasFailedWithRetriesLeft' | 'isDenied' | 'jobKey' | 'kind' | 'listenerEventType' | 'priority' | 'processDefinitionId' | 'processDefinitionKey' | 'processInstanceKey' | 'retries' | 'state' | 'tenantId' | 'type' | 'worker';
5229
5539
  order?: SortOrderEnum;
5230
5540
  };
5231
5541
  /**
@@ -5280,6 +5590,11 @@ type JobFilter = {
5280
5590
  * The listener event type of the job.
5281
5591
  */
5282
5592
  listenerEventType?: JobListenerEventTypeFilterProperty;
5593
+ /**
5594
+ * The priority of the job. Jobs created before 8.10 have no stored priority and are excluded from results when this filter is applied.
5595
+ *
5596
+ */
5597
+ priority?: IntegerFilterProperty;
5283
5598
  /**
5284
5599
  * The process definition ID associated with the job.
5285
5600
  */
@@ -5422,6 +5737,11 @@ type JobSearchResult = {
5422
5737
  * When the job was last updated. Field is present for jobs created after 8.9.
5423
5738
  */
5424
5739
  lastUpdateTime: string | null;
5740
+ /**
5741
+ * The priority of the job. Higher values indicate higher priority. Jobs created before 8.10 have no stored priority; they appear last when sorting by this field and are excluded when filtering by this field. The API returns 0 for such jobs.
5742
+ *
5743
+ */
5744
+ priority: number;
5425
5745
  };
5426
5746
  type JobFailRequest = {
5427
5747
  /**
@@ -5636,6 +5956,7 @@ type JobKindEnum = (typeof JobKindEnum)[keyof typeof JobKindEnum];
5636
5956
  declare const JobListenerEventTypeEnum: {
5637
5957
  readonly ASSIGNING: "ASSIGNING";
5638
5958
  readonly BEFORE_ALL: "BEFORE_ALL";
5959
+ readonly CANCEL: "CANCEL";
5639
5960
  readonly CANCELING: "CANCELING";
5640
5961
  readonly COMPLETING: "COMPLETING";
5641
5962
  readonly CREATING: "CREATING";
@@ -8148,7 +8469,7 @@ type CursorForwardPagination = {
8148
8469
  /**
8149
8470
  * Use the `endCursor` value from the previous response to fetch the next page of results.
8150
8471
  */
8151
- after: EndCursor;
8472
+ after?: EndCursor;
8152
8473
  /**
8153
8474
  * The maximum number of items to return in one request.
8154
8475
  */
@@ -8161,7 +8482,7 @@ type CursorBackwardPagination = {
8161
8482
  /**
8162
8483
  * Use the `startCursor` value from the previous response to fetch the previous page of results.
8163
8484
  */
8164
- before: StartCursor;
8485
+ before?: StartCursor;
8165
8486
  /**
8166
8487
  * The maximum number of items to return in one request.
8167
8488
  */
@@ -8306,18 +8627,10 @@ type ComponentsConfigurationResponse = {
8306
8627
  * Configuration for deployment characteristics.
8307
8628
  */
8308
8629
  type DeploymentConfigurationResponse = {
8309
- /**
8310
- * Whether this is an enterprise deployment.
8311
- */
8312
- isEnterprise: boolean;
8313
8630
  /**
8314
8631
  * Whether multi-tenancy is enabled.
8315
8632
  */
8316
8633
  isMultiTenancyEnabled: boolean;
8317
- /**
8318
- * The servlet context path for the deployment.
8319
- */
8320
- contextPath: string;
8321
8634
  /**
8322
8635
  * The maximum HTTP request size in bytes.
8323
8636
  */
@@ -8340,26 +8653,10 @@ type AuthenticationConfigurationResponse = {
8340
8653
  * Configuration for SaaS/cloud-specific settings.
8341
8654
  */
8342
8655
  type CloudConfigurationResponse = {
8343
- /**
8344
- * The SaaS organization ID, if applicable.
8345
- */
8346
- organizationId: string | null;
8347
- /**
8348
- * The SaaS cluster ID, if applicable.
8349
- */
8350
- clusterId: string | null;
8351
8656
  /**
8352
8657
  * The cloud deployment stage.
8353
8658
  */
8354
8659
  stage: CloudStage | null;
8355
- /**
8356
- * The Mixpanel analytics token for the cloud UI.
8357
- */
8358
- mixpanelToken: string | null;
8359
- /**
8360
- * The Mixpanel API host URL.
8361
- */
8362
- mixpanelAPIHost: string | null;
8363
8660
  };
8364
8661
  /**
8365
8662
  * A Camunda webapp component name.
@@ -9354,6 +9651,18 @@ type ResourceKeyExactMatch = ResourceKey;
9354
9651
  * Matches the value exactly.
9355
9652
  */
9356
9653
  type ElementInstanceStateExactMatch = ElementInstanceStateEnum;
9654
+ /**
9655
+ * Exact match
9656
+ *
9657
+ * Matches the value exactly.
9658
+ */
9659
+ type WaitStateElementTypeExactMatch = WaitStateElementTypeEnum;
9660
+ /**
9661
+ * Exact match
9662
+ *
9663
+ * Matches the value exactly.
9664
+ */
9665
+ type WaitStateTypeExactMatch = WaitStateTypeEnum;
9357
9666
  /**
9358
9667
  * Exact match
9359
9668
  *
@@ -10240,6 +10549,10 @@ type CreateGlobalClusterVariableErrors = {
10240
10549
  * Forbidden. The request is not allowed.
10241
10550
  */
10242
10551
  403: ProblemDetail;
10552
+ /**
10553
+ * A cluster variable with this name already exists.
10554
+ */
10555
+ 409: ProblemDetail;
10243
10556
  /**
10244
10557
  * An internal error occurred while processing the request.
10245
10558
  */
@@ -10441,6 +10754,10 @@ type CreateTenantClusterVariableErrors = {
10441
10754
  * The tenant with the given ID was not found.
10442
10755
  */
10443
10756
  404: ProblemDetail;
10757
+ /**
10758
+ * A cluster variable with this name already exists for the given tenant.
10759
+ */
10760
+ 409: ProblemDetail;
10444
10761
  /**
10445
10762
  * An internal error occurred while processing the request.
10446
10763
  */
@@ -11345,6 +11662,38 @@ type ActivateAdHocSubProcessActivitiesResponses = {
11345
11662
  204: void;
11346
11663
  };
11347
11664
  type ActivateAdHocSubProcessActivitiesResponse = ActivateAdHocSubProcessActivitiesResponses[keyof ActivateAdHocSubProcessActivitiesResponses];
11665
+ type SearchElementInstanceWaitStatesData = {
11666
+ body?: ElementInstanceWaitStateQuery;
11667
+ path?: never;
11668
+ query?: never;
11669
+ url: '/element-instances/wait-states/search';
11670
+ };
11671
+ type SearchElementInstanceWaitStatesErrors = {
11672
+ /**
11673
+ * The provided data is not valid.
11674
+ */
11675
+ 400: ProblemDetail;
11676
+ /**
11677
+ * The request lacks valid authentication credentials.
11678
+ */
11679
+ 401: ProblemDetail;
11680
+ /**
11681
+ * Forbidden. The request is not allowed.
11682
+ */
11683
+ 403: ProblemDetail;
11684
+ /**
11685
+ * An internal error occurred while processing the request.
11686
+ */
11687
+ 500: ProblemDetail;
11688
+ };
11689
+ type SearchElementInstanceWaitStatesError = SearchElementInstanceWaitStatesErrors[keyof SearchElementInstanceWaitStatesErrors];
11690
+ type SearchElementInstanceWaitStatesResponses = {
11691
+ /**
11692
+ * The element instance wait state search result.
11693
+ */
11694
+ 200: ElementInstanceWaitStateQueryResult;
11695
+ };
11696
+ type SearchElementInstanceWaitStatesResponse = SearchElementInstanceWaitStatesResponses[keyof SearchElementInstanceWaitStatesResponses];
11348
11697
  type SearchElementInstancesData = {
11349
11698
  body?: ElementInstanceSearchQuery;
11350
11699
  path?: never;
@@ -11798,6 +12147,10 @@ type CreateGroupErrors = {
11798
12147
  * Forbidden. The request is not allowed.
11799
12148
  */
11800
12149
  403: ProblemDetail;
12150
+ /**
12151
+ * Group with this id already exists.
12152
+ */
12153
+ 409: ProblemDetail;
11801
12154
  /**
11802
12155
  * An internal error occurred while processing the request.
11803
12156
  */
@@ -13057,6 +13410,10 @@ type CreateMappingRuleErrors = {
13057
13410
  * The request to create a mapping rule was denied.
13058
13411
  */
13059
13412
  404: ProblemDetail;
13413
+ /**
13414
+ * Mapping rule with this id already exists.
13415
+ */
13416
+ 409: ProblemDetail;
13060
13417
  /**
13061
13418
  * An internal error occurred while processing the request.
13062
13419
  */
@@ -14453,6 +14810,10 @@ type CreateRoleErrors = {
14453
14810
  * Forbidden. The request is not allowed.
14454
14811
  */
14455
14812
  403: ProblemDetail;
14813
+ /**
14814
+ * Role with this id already exists.
14815
+ */
14816
+ 409: ProblemDetail;
14456
14817
  /**
14457
14818
  * An internal error occurred while processing the request.
14458
14819
  */
@@ -15183,6 +15544,10 @@ type CreateAdminUserErrors = {
15183
15544
  * Forbidden. The request is not allowed.
15184
15545
  */
15185
15546
  403: ProblemDetail;
15547
+ /**
15548
+ * A user with this username already exists.
15549
+ */
15550
+ 409: ProblemDetail;
15186
15551
  /**
15187
15552
  * An internal error occurred while processing the request.
15188
15553
  */
@@ -15348,7 +15713,7 @@ type CreateTenantErrors = {
15348
15713
  /**
15349
15714
  * Tenant with this id already exists.
15350
15715
  */
15351
- 409: unknown;
15716
+ 409: ProblemDetail;
15352
15717
  /**
15353
15718
  * An internal error occurred while processing the request.
15354
15719
  */
@@ -17209,8 +17574,7 @@ declare const getAgentInstance: <ThrowOnError extends boolean = true>(options: O
17209
17574
  *
17210
17575
  * Updates the mutable fields of an agent instance: status, metric counters, and
17211
17576
  * tools. Metric values are treated as deltas and applied immediately to the
17212
- * aggregate counters. Tool updates replace the existing tool list. At least one of
17213
- * status, metrics, or tools must be provided.
17577
+ * aggregate counters. Tool updates replace the existing tool list.
17214
17578
  *
17215
17579
  */
17216
17580
  declare const updateAgentInstance: <ThrowOnError extends boolean = true>(options: Options<UpdateAgentInstanceData, ThrowOnError>) => RequestResult<UpdateAgentInstanceResponses, UpdateAgentInstanceErrors, ThrowOnError, "fields">;
@@ -17551,6 +17915,13 @@ declare const createDocumentLink: <ThrowOnError extends boolean = true>(options:
17551
17915
  *
17552
17916
  */
17553
17917
  declare const activateAdHocSubProcessActivities: <ThrowOnError extends boolean = true>(options: Options<ActivateAdHocSubProcessActivitiesData, ThrowOnError>) => RequestResult<ActivateAdHocSubProcessActivitiesResponses, ActivateAdHocSubProcessActivitiesErrors, ThrowOnError, "fields">;
17918
+ /**
17919
+ * Search element instance wait states
17920
+ *
17921
+ * Returns the wait states for element instances matching the given filter.
17922
+ *
17923
+ */
17924
+ declare const searchElementInstanceWaitStates: <ThrowOnError extends boolean = true>(options?: Options<SearchElementInstanceWaitStatesData, ThrowOnError>) => RequestResult<SearchElementInstanceWaitStatesResponses, SearchElementInstanceWaitStatesErrors, ThrowOnError, "fields">;
17554
17925
  /**
17555
17926
  * Search element instances
17556
17927
  *
@@ -17591,7 +17962,11 @@ declare const createElementInstanceVariables: <ThrowOnError extends boolean = tr
17591
17962
  /**
17592
17963
  * Evaluate an expression
17593
17964
  *
17594
- * Evaluates a FEEL expression and returns the result. Supports references to tenant scoped cluster variables when a tenant ID is provided.
17965
+ * Evaluates a FEEL expression and returns the result. Supports references to tenant scoped
17966
+ * cluster variables when a tenant ID is provided. Optionally, provide a `scopeKey` to make the
17967
+ * variables of a specific process instance or element instance visible while evaluating the
17968
+ * expression.
17969
+ *
17595
17970
  */
17596
17971
  declare const evaluateExpression: <ThrowOnError extends boolean = true>(options: Options<EvaluateExpressionData, ThrowOnError>) => RequestResult<EvaluateExpressionResponses, EvaluateExpressionErrors, ThrowOnError, "fields">;
17597
17972
  /**
@@ -20471,6 +20846,16 @@ type searchElementInstancesConsistency = {
20471
20846
  /** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
20472
20847
  consistency: ConsistencyOptions<_DataOf<typeof searchElementInstances>>;
20473
20848
  };
20849
+ type searchElementInstanceWaitStatesOptions = Parameters<typeof searchElementInstanceWaitStates>[0];
20850
+ type searchElementInstanceWaitStatesBody = (NonNullable<searchElementInstanceWaitStatesOptions> extends {
20851
+ body?: infer B;
20852
+ } ? B : never);
20853
+ type searchElementInstanceWaitStatesInput = searchElementInstanceWaitStatesBody;
20854
+ /** Management of eventual consistency **/
20855
+ type searchElementInstanceWaitStatesConsistency = {
20856
+ /** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
20857
+ consistency: ConsistencyOptions<_DataOf<typeof searchElementInstanceWaitStates>>;
20858
+ };
20474
20859
  type searchGlobalTaskListenersOptions = Parameters<typeof searchGlobalTaskListeners>[0];
20475
20860
  type searchGlobalTaskListenersBody = (NonNullable<searchGlobalTaskListenersOptions> extends {
20476
20861
  body?: infer B;
@@ -22686,7 +23071,11 @@ declare class CamundaClient {
22686
23071
  /**
22687
23072
  * Evaluate an expression
22688
23073
  *
22689
- * Evaluates a FEEL expression and returns the result. Supports references to tenant scoped cluster variables when a tenant ID is provided.
23074
+ * Evaluates a FEEL expression and returns the result. Supports references to tenant scoped
23075
+ * cluster variables when a tenant ID is provided. Optionally, provide a `scopeKey` to make the
23076
+ * variables of a specific process instance or element instance visible while evaluating the
23077
+ * expression.
23078
+ *
22690
23079
  *
22691
23080
  * @example Evaluate an expression
22692
23081
  * ```ts
@@ -24728,6 +25117,37 @@ declare class CamundaClient {
24728
25117
  * @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
24729
25118
  */
24730
25119
  searchElementInstances(input: searchElementInstancesInput, /** Management of eventual consistency **/ consistencyManagement: searchElementInstancesConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof searchElementInstances>>;
25120
+ /**
25121
+ * Search element instance wait states
25122
+ *
25123
+ * Returns the wait states for element instances matching the given filter.
25124
+ *
25125
+ *
25126
+ * @example Search element instance wait states
25127
+ * ```ts
25128
+ * async function searchElementInstanceWaitStatesExample(processInstanceKey: ProcessInstanceKey) {
25129
+ * const camunda = createCamundaClient();
25130
+ *
25131
+ * const result = await camunda.searchElementInstanceWaitStates(
25132
+ * {
25133
+ * filter: {
25134
+ * processInstanceKey,
25135
+ * },
25136
+ * page: { limit: 10 },
25137
+ * },
25138
+ * { consistency: { waitUpToMs: 5000 } }
25139
+ * );
25140
+ *
25141
+ * for (const waitState of result.items ?? []) {
25142
+ * console.log(`${waitState.elementId}: ${waitState.waitStateType}`);
25143
+ * }
25144
+ * }
25145
+ * ```
25146
+ * @operationId searchElementInstanceWaitStates
25147
+ * @tags Element instance
25148
+ * @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
25149
+ */
25150
+ searchElementInstanceWaitStates(input: searchElementInstanceWaitStatesInput, /** Management of eventual consistency **/ consistencyManagement: searchElementInstanceWaitStatesConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof searchElementInstanceWaitStates>>;
24731
25151
  /**
24732
25152
  * Search global user task listeners
24733
25153
  *
@@ -25837,17 +26257,20 @@ declare class CamundaClient {
25837
26257
  *
25838
26258
  * Updates the mutable fields of an agent instance: status, metric counters, and
25839
26259
  * tools. Metric values are treated as deltas and applied immediately to the
25840
- * aggregate counters. Tool updates replace the existing tool list. At least one of
25841
- * status, metrics, or tools must be provided.
26260
+ * aggregate counters. Tool updates replace the existing tool list.
25842
26261
  *
25843
26262
  *
25844
26263
  * @example Update an agent instance
25845
26264
  * ```ts
25846
- * async function updateAgentInstanceExample(agentInstanceKey: AgentInstanceKey) {
26265
+ * async function updateAgentInstanceExample(
26266
+ * agentInstanceKey: AgentInstanceKey,
26267
+ * elementInstanceKey: ElementInstanceKey
26268
+ * ) {
25847
26269
  * const camunda = createCamundaClient();
25848
26270
  *
25849
26271
  * await camunda.updateAgentInstance({
25850
26272
  * agentInstanceKey,
26273
+ * elementInstanceKey,
25851
26274
  * status: 'THINKING',
25852
26275
  * metrics: {
25853
26276
  * inputTokens: 150,
@@ -26317,4 +26740,4 @@ declare function eventuallyTE<E, A>(thunk: () => Promise<A>, predicate: (a: A) =
26317
26740
  waitUpToMs: number;
26318
26741
  }): TaskEither<E, A>;
26319
26742
 
26320
- export { type createAdminUserInput as $, type AuthStrategy as A, type GetUserResponses as A$, type AssignGroupToTenantResponse as A0, type SearchMappingRulesForTenantData as A1, type SearchMappingRulesForTenantResponses as A2, type SearchMappingRulesForTenantResponse as A3, type UnassignMappingRuleFromTenantData as A4, type UnassignMappingRuleFromTenantErrors as A5, type UnassignMappingRuleFromTenantError as A6, type UnassignMappingRuleFromTenantResponses as A7, type UnassignMappingRuleFromTenantResponse as A8, type AssignMappingRuleToTenantData as A9, type AssignUserToTenantErrors as AA, type AssignUserToTenantError as AB, type AssignUserToTenantResponses as AC, type AssignUserToTenantResponse as AD, type GetTopologyData as AE, type GetTopologyErrors as AF, type GetTopologyError as AG, type GetTopologyResponses as AH, type GetTopologyResponse as AI, type CreateUserData as AJ, type CreateUserErrors as AK, type CreateUserError as AL, type CreateUserResponses as AM, type CreateUserResponse as AN, type SearchUsersData as AO, type SearchUsersErrors as AP, type SearchUsersError as AQ, type SearchUsersResponses as AR, type SearchUsersResponse as AS, type DeleteUserData as AT, type DeleteUserErrors as AU, type DeleteUserError as AV, type DeleteUserResponses as AW, type DeleteUserResponse as AX, type GetUserData as AY, type GetUserErrors as AZ, type GetUserError as A_, type AssignMappingRuleToTenantErrors as Aa, type AssignMappingRuleToTenantError as Ab, type AssignMappingRuleToTenantResponses as Ac, type AssignMappingRuleToTenantResponse as Ad, type SearchRolesForTenantData as Ae, type SearchRolesForTenantResponses as Af, type SearchRolesForTenantResponse as Ag, type UnassignRoleFromTenantData as Ah, type UnassignRoleFromTenantErrors as Ai, type UnassignRoleFromTenantError as Aj, type UnassignRoleFromTenantResponses as Ak, type UnassignRoleFromTenantResponse as Al, type AssignRoleToTenantData as Am, type AssignRoleToTenantErrors as An, type AssignRoleToTenantError as Ao, type AssignRoleToTenantResponses as Ap, type AssignRoleToTenantResponse as Aq, type SearchUsersForTenantData as Ar, type SearchUsersForTenantResponses as As, type SearchUsersForTenantResponse as At, type UnassignUserFromTenantData as Au, type UnassignUserFromTenantErrors as Av, type UnassignUserFromTenantError as Aw, type UnassignUserFromTenantResponses as Ax, type UnassignUserFromTenantResponse as Ay, type AssignUserToTenantData as Az, type BackpressureSeverity as B, type GetVariableError as B$, type GetUserResponse as B0, type UpdateUserData as B1, type UpdateUserErrors as B2, type UpdateUserError as B3, type UpdateUserResponses as B4, type UpdateUserResponse as B5, type SearchUserTasksData as B6, type SearchUserTasksErrors as B7, type SearchUserTasksError as B8, type SearchUserTasksResponses as B9, type CompleteUserTaskData as BA, type CompleteUserTaskErrors as BB, type CompleteUserTaskError as BC, type CompleteUserTaskResponses as BD, type CompleteUserTaskResponse as BE, type SearchUserTaskEffectiveVariablesData as BF, type SearchUserTaskEffectiveVariablesErrors as BG, type SearchUserTaskEffectiveVariablesError as BH, type SearchUserTaskEffectiveVariablesResponses as BI, type SearchUserTaskEffectiveVariablesResponse as BJ, type GetUserTaskFormData as BK, type GetUserTaskFormErrors as BL, type GetUserTaskFormError as BM, type GetUserTaskFormResponses as BN, type GetUserTaskFormResponse as BO, type SearchUserTaskVariablesData as BP, type SearchUserTaskVariablesErrors as BQ, type SearchUserTaskVariablesError as BR, type SearchUserTaskVariablesResponses as BS, type SearchUserTaskVariablesResponse as BT, type SearchVariablesData as BU, type SearchVariablesErrors as BV, type SearchVariablesError as BW, type SearchVariablesResponses as BX, type SearchVariablesResponse as BY, type GetVariableData as BZ, type GetVariableErrors as B_, type SearchUserTasksResponse as Ba, type GetUserTaskData as Bb, type GetUserTaskErrors as Bc, type GetUserTaskError as Bd, type GetUserTaskResponses as Be, type GetUserTaskResponse as Bf, type UpdateUserTaskData as Bg, type UpdateUserTaskErrors as Bh, type UpdateUserTaskError as Bi, type UpdateUserTaskResponses as Bj, type UpdateUserTaskResponse as Bk, type UnassignUserTaskData as Bl, type UnassignUserTaskErrors as Bm, type UnassignUserTaskError as Bn, type UnassignUserTaskResponses as Bo, type UnassignUserTaskResponse as Bp, type AssignUserTaskData as Bq, type AssignUserTaskErrors as Br, type AssignUserTaskError as Bs, type AssignUserTaskResponses as Bt, type AssignUserTaskResponse as Bu, type SearchUserTaskAuditLogsData as Bv, type SearchUserTaskAuditLogsErrors as Bw, type SearchUserTaskAuditLogsError as Bx, type SearchUserTaskAuditLogsResponses as By, type SearchUserTaskAuditLogsResponse as Bz, CamundaClient as C, type GetVariableResponses as C0, type GetVariableResponse as C1, assertConstraint as C2, classifyDomainError as C3, type DomainError as C4, type DomainErrorTag as C5, eventuallyTE as C6, type FnKeys as C7, type Fpify as C8, foldDomainError as C9, type HttpError as Ca, type Left as Cb, type Right as Cc, retryTE as Cd, type TaskEither as Ce, withTimeoutTE as Cf, type assignMappingRuleToGroupInput as D, type Either as E, type assignMappingRuleToTenantInput as F, type assignRoleToClientInput as G, type HttpRetryPolicy as H, type assignRoleToGroupInput as I, type Job as J, type assignRoleToMappingRuleInput as K, type assignRoleToTenantInput as L, type assignRoleToUserInput as M, type assignUserTaskInput as N, type OperationOptions as O, type assignUserToGroupInput as P, type assignUserToTenantInput as Q, type broadcastSignalInput as R, type SdkError as S, type TelemetryHooks as T, type cancelBatchOperationInput as U, type ValidationMode as V, type cancelProcessInstanceInput as W, type cancelProcessInstancesBatchOperationInput as X, type completeJobInput as Y, type completeUserTaskInput as Z, type correlateMessageInput as _, type CamundaOptions as a, type getGlobalTaskListenerInput as a$, type createAgentInstanceInput as a0, type createAuthorizationInput as a1, type createDeploymentInput as a2, type createDocumentInput as a3, type createDocumentLinkInput as a4, type createDocumentsInput as a5, type createElementInstanceVariablesInput as a6, type createGlobalClusterVariableInput as a7, type createGlobalTaskListenerInput as a8, type createGroupInput as a9, type getAgentInstanceConsistency as aA, type getAuditLogInput as aB, type getAuditLogConsistency as aC, type getAuthenticationInput as aD, type getAuthorizationInput as aE, type getAuthorizationConsistency as aF, type getBatchOperationInput as aG, type getBatchOperationConsistency as aH, type getDecisionDefinitionInput as aI, type getDecisionDefinitionConsistency as aJ, type getDecisionDefinitionXmlInput as aK, type getDecisionDefinitionXmlConsistency as aL, type getDecisionInstanceInput as aM, type getDecisionInstanceConsistency as aN, type getDecisionRequirementsInput as aO, type getDecisionRequirementsConsistency as aP, type getDecisionRequirementsXmlInput as aQ, type getDecisionRequirementsXmlConsistency as aR, type getDocumentInput as aS, type getElementInstanceInput as aT, type getElementInstanceConsistency as aU, type getFormByKeyInput as aV, type getFormByKeyConsistency as aW, type getGlobalClusterVariableInput as aX, type getGlobalClusterVariableConsistency as aY, type getGlobalJobStatisticsInput as aZ, type getGlobalJobStatisticsConsistency as a_, type createMappingRuleInput as aa, type createProcessInstanceInput as ab, type createRoleInput as ac, type createTenantInput as ad, type createTenantClusterVariableInput as ae, type createUserInput as af, type deleteAuthorizationInput as ag, type deleteDecisionInstanceInput as ah, type deleteDecisionInstancesBatchOperationInput as ai, type deleteDocumentInput as aj, type deleteGlobalClusterVariableInput as ak, type deleteGlobalTaskListenerInput as al, type deleteGroupInput as am, type deleteMappingRuleInput as an, type deleteProcessInstanceInput as ao, type deleteProcessInstancesBatchOperationInput as ap, type deleteResourceInput as aq, type deleteRoleInput as ar, type deleteTenantInput as as, type deleteTenantClusterVariableInput as at, type deleteUserInput as au, type evaluateConditionalsInput as av, type evaluateDecisionInput as aw, type evaluateExpressionInput as ax, type failJobInput as ay, type getAgentInstanceInput as az, type CancelablePromise as b, type getUserTaskFormInput as b$, type getGlobalTaskListenerConsistency as b0, type getGroupInput as b1, type getGroupConsistency as b2, type getIncidentInput as b3, type getIncidentConsistency as b4, type getJobErrorStatisticsInput as b5, type getJobErrorStatisticsConsistency as b6, type getJobTimeSeriesStatisticsInput as b7, type getJobTimeSeriesStatisticsConsistency as b8, type getJobTypeStatisticsInput as b9, type getProcessInstanceStatisticsByDefinitionInput as bA, type getProcessInstanceStatisticsByDefinitionConsistency as bB, type getProcessInstanceStatisticsByErrorInput as bC, type getProcessInstanceStatisticsByErrorConsistency as bD, type getResourceInput as bE, type getResourceConsistency as bF, type getResourceContentInput as bG, type getResourceContentConsistency as bH, type getResourceContentBinaryInput as bI, type getResourceContentBinaryConsistency as bJ, type getRoleInput as bK, type getRoleConsistency as bL, type getStartProcessFormInput as bM, type getStartProcessFormConsistency as bN, type getStatusInput as bO, type getSystemConfigurationInput as bP, type getTenantInput as bQ, type getTenantConsistency as bR, type getTenantClusterVariableInput as bS, type getTenantClusterVariableConsistency as bT, type getTopologyInput as bU, type getUsageMetricsInput as bV, type getUsageMetricsConsistency as bW, type getUserInput as bX, type getUserConsistency as bY, type getUserTaskInput as bZ, type getUserTaskConsistency as b_, type getJobTypeStatisticsConsistency as ba, type getJobWorkerStatisticsInput as bb, type getJobWorkerStatisticsConsistency as bc, type getLicenseInput as bd, type getMappingRuleInput as be, type getMappingRuleConsistency as bf, type getProcessDefinitionInput as bg, type getProcessDefinitionConsistency as bh, type getProcessDefinitionInstanceStatisticsInput as bi, type getProcessDefinitionInstanceStatisticsConsistency as bj, type getProcessDefinitionInstanceVersionStatisticsInput as bk, type getProcessDefinitionInstanceVersionStatisticsConsistency as bl, type getProcessDefinitionMessageSubscriptionStatisticsInput as bm, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as bn, type getProcessDefinitionStatisticsInput as bo, type getProcessDefinitionStatisticsConsistency as bp, type getProcessDefinitionXmlInput as bq, type getProcessDefinitionXmlConsistency as br, type getProcessInstanceInput as bs, type getProcessInstanceConsistency as bt, type getProcessInstanceCallHierarchyInput as bu, type getProcessInstanceCallHierarchyConsistency as bv, type getProcessInstanceSequenceFlowsInput as bw, type getProcessInstanceSequenceFlowsConsistency as bx, type getProcessInstanceStatisticsInput as by, type getProcessInstanceStatisticsConsistency as bz, createCamundaClient as c, type searchMappingRulesForTenantConsistency as c$, type getUserTaskFormConsistency as c0, type getVariableInput as c1, type getVariableConsistency as c2, type migrateProcessInstanceInput as c3, type migrateProcessInstancesBatchOperationInput as c4, type modifyProcessInstanceInput as c5, type modifyProcessInstancesBatchOperationInput as c6, type pinClockInput as c7, type publishMessageInput as c8, type resetClockInput as c9, type searchDecisionInstancesInput as cA, type searchDecisionInstancesConsistency as cB, type searchDecisionRequirementsInput as cC, type searchDecisionRequirementsConsistency as cD, type searchElementInstanceIncidentsInput as cE, type searchElementInstanceIncidentsConsistency as cF, type searchElementInstancesInput as cG, type searchElementInstancesConsistency as cH, type searchGlobalTaskListenersInput as cI, type searchGlobalTaskListenersConsistency as cJ, type searchGroupIdsForTenantInput as cK, type searchGroupIdsForTenantConsistency as cL, type searchGroupsInput as cM, type searchGroupsConsistency as cN, type searchGroupsForRoleInput as cO, type searchGroupsForRoleConsistency as cP, type searchIncidentsInput as cQ, type searchIncidentsConsistency as cR, type searchJobsInput as cS, type searchJobsConsistency as cT, type searchMappingRuleInput as cU, type searchMappingRuleConsistency as cV, type searchMappingRulesForGroupInput as cW, type searchMappingRulesForGroupConsistency as cX, type searchMappingRulesForRoleInput as cY, type searchMappingRulesForRoleConsistency as cZ, type searchMappingRulesForTenantInput as c_, type resolveIncidentInput as ca, type resolveIncidentsBatchOperationInput as cb, type resolveProcessInstanceIncidentsInput as cc, type resumeBatchOperationInput as cd, type searchAgentInstancesInput as ce, type searchAgentInstancesConsistency as cf, type searchAuditLogsInput as cg, type searchAuditLogsConsistency as ch, type searchAuthorizationsInput as ci, type searchAuthorizationsConsistency as cj, type searchBatchOperationItemsInput as ck, type searchBatchOperationItemsConsistency as cl, type searchBatchOperationsInput as cm, type searchBatchOperationsConsistency as cn, type searchClientsForGroupInput as co, type searchClientsForGroupConsistency as cp, type searchClientsForRoleInput as cq, type searchClientsForRoleConsistency as cr, type searchClientsForTenantInput as cs, type searchClientsForTenantConsistency as ct, type searchClusterVariablesInput as cu, type searchClusterVariablesConsistency as cv, type searchCorrelatedMessageSubscriptionsInput as cw, type searchCorrelatedMessageSubscriptionsConsistency as cx, type searchDecisionDefinitionsInput as cy, type searchDecisionDefinitionsConsistency as cz, type CamundaFpClient as d, type updateUserTaskInput as d$, type searchMessageSubscriptionsInput as d0, type searchMessageSubscriptionsConsistency as d1, type searchProcessDefinitionsInput as d2, type searchProcessDefinitionsConsistency as d3, type searchProcessInstanceIncidentsInput as d4, type searchProcessInstanceIncidentsConsistency as d5, type searchProcessInstancesInput as d6, type searchProcessInstancesConsistency as d7, type searchResourcesInput as d8, type searchResourcesConsistency as d9, type searchVariablesConsistency as dA, type suspendBatchOperationInput as dB, type throwJobErrorInput as dC, type unassignClientFromGroupInput as dD, type unassignClientFromTenantInput as dE, type unassignGroupFromTenantInput as dF, type unassignMappingRuleFromGroupInput as dG, type unassignMappingRuleFromTenantInput as dH, type unassignRoleFromClientInput as dI, type unassignRoleFromGroupInput as dJ, type unassignRoleFromMappingRuleInput as dK, type unassignRoleFromTenantInput as dL, type unassignRoleFromUserInput as dM, type unassignUserFromGroupInput as dN, type unassignUserFromTenantInput as dO, type unassignUserTaskInput as dP, type updateAgentInstanceInput as dQ, type updateAuthorizationInput as dR, type updateGlobalClusterVariableInput as dS, type updateGlobalTaskListenerInput as dT, type updateGroupInput as dU, type updateJobInput as dV, type updateMappingRuleInput as dW, type updateRoleInput as dX, type updateTenantInput as dY, type updateTenantClusterVariableInput as dZ, type updateUserInput as d_, type searchRolesInput as da, type searchRolesConsistency as db, type searchRolesForGroupInput as dc, type searchRolesForGroupConsistency as dd, type searchRolesForTenantInput as de, type searchRolesForTenantConsistency as df, type searchTenantsInput as dg, type searchTenantsConsistency as dh, type searchUsersInput as di, type searchUsersConsistency as dj, type searchUsersForGroupInput as dk, type searchUsersForGroupConsistency as dl, type searchUsersForRoleInput as dm, type searchUsersForRoleConsistency as dn, type searchUsersForTenantInput as dp, type searchUsersForTenantConsistency as dq, type searchUserTaskAuditLogsInput as dr, type searchUserTaskAuditLogsConsistency as ds, type searchUserTaskEffectiveVariablesInput as dt, type searchUserTaskEffectiveVariablesConsistency as du, type searchUserTasksInput as dv, type searchUserTasksConsistency as dw, type searchUserTaskVariablesInput as dx, type searchUserTaskVariablesConsistency as dy, type searchVariablesInput as dz, createCamundaFpClient as e, type BatchOperationError as e$, type ExtendedDeploymentResult as e0, CancelError as e1, type CamundaKey as e2, type ClientOptions as e3, type AgentInstanceSearchQuerySortRequest as e4, type AgentInstanceSearchQuery as e5, type AgentInstanceFilter as e6, type AgentInstanceSearchQueryResult as e7, type AgentInstanceResult as e8, type AgentInstanceDefinition as e9, type AdvancedOperationTypeFilter as eA, type CategoryFilterProperty as eB, type AdvancedCategoryFilter as eC, type AuditLogResultFilterProperty as eD, type AdvancedResultFilter as eE, type AuditLogActorTypeFilterProperty as eF, type AdvancedActorTypeFilter as eG, type CamundaUserResult as eH, type AuthorizationIdBasedRequest as eI, type AuthorizationPropertyBasedRequest as eJ, type AuthorizationRequest as eK, type AuthorizationSearchQuerySortRequest as eL, type AuthorizationSearchQuery as eM, type AuthorizationFilter as eN, type AuthorizationResult as eO, type AuthorizationSearchResult as eP, type AuthorizationCreateResult as eQ, PermissionTypeEnum as eR, ResourceTypeEnum as eS, OwnerTypeEnum as eT, AuthorizationKey as eU, type BatchOperationCreatedResult as eV, type BatchOperationSearchQuerySortRequest as eW, type BatchOperationSearchQuery as eX, type BatchOperationFilter as eY, type BatchOperationSearchQueryResult as eZ, type BatchOperationResponse as e_, type AgentTool as ea, type AgentInstanceMetrics as eb, type AgentInstanceLimits as ec, AgentInstanceStatusEnum as ed, type AgentInstanceCreationRequest as ee, type AgentInstanceCreationResult as ef, type AgentInstanceMetricsDelta as eg, type AgentInstanceUpdateRequest as eh, type AgentInstanceStatusFilterProperty as ei, type AdvancedAgentInstanceStatusFilter as ej, type AuditLogResult as ek, type AuditLogSearchQuerySortRequest as el, type AuditLogSearchQueryRequest as em, type AuditLogFilter as en, type AuditLogSearchQueryResult as eo, AuditLogEntityKey as ep, AuditLogEntityTypeEnum as eq, AuditLogOperationTypeEnum as er, AuditLogActorTypeEnum as es, AuditLogResultEnum as et, AuditLogCategoryEnum as eu, type AuditLogEntityKeyFilterProperty as ev, type AdvancedAuditLogEntityKeyFilter as ew, type EntityTypeFilterProperty as ex, type AdvancedEntityTypeFilter as ey, type OperationTypeFilterProperty as ez, isRight as f, type MatchedDecisionRuleItem as f$, type BatchOperationItemSearchQuerySortRequest as f0, type BatchOperationItemSearchQuery as f1, type BatchOperationItemFilter as f2, type BatchOperationItemSearchQueryResult as f3, type BatchOperationItemResponse as f4, type DecisionInstanceDeletionBatchOperationRequest as f5, type ProcessInstanceCancellationBatchOperationRequest as f6, type ProcessInstanceIncidentResolutionBatchOperationRequest as f7, type ProcessInstanceDeletionBatchOperationRequest as f8, type ProcessInstanceMigrationBatchOperationRequest as f9, type BrokerInfo as fA, type Partition as fB, type ConditionalEvaluationInstruction as fC, type EvaluateConditionalResult as fD, ConditionalEvaluationKey as fE, type ProcessInstanceReference as fF, StartCursor as fG, EndCursor as fH, type DecisionDefinitionSearchQuerySortRequest as fI, type DecisionDefinitionSearchQuery as fJ, type DecisionDefinitionFilter as fK, type DecisionDefinitionSearchQueryResult as fL, type DecisionDefinitionResult as fM, type DecisionEvaluationInstruction as fN, type DecisionEvaluationById as fO, type DecisionEvaluationByKey as fP, type EvaluateDecisionResult as fQ, type EvaluatedDecisionResult as fR, type DecisionInstanceSearchQuerySortRequest as fS, type DecisionInstanceSearchQuery as fT, type DecisionInstanceFilter as fU, type DeleteDecisionInstanceRequest as fV, type DecisionInstanceSearchQueryResult as fW, type DecisionInstanceResult as fX, type DecisionInstanceGetQueryResult as fY, type EvaluatedDecisionInputItem as fZ, type EvaluatedDecisionOutputItem as f_, type ProcessInstanceMigrationBatchOperationPlan as fa, type ProcessInstanceModificationBatchOperationRequest as fb, type ProcessInstanceModificationMoveBatchOperationInstruction as fc, BatchOperationItemStateEnum as fd, BatchOperationStateEnum as fe, BatchOperationTypeEnum as ff, type BatchOperationTypeFilterProperty as fg, type AdvancedBatchOperationTypeFilter as fh, type BatchOperationStateFilterProperty as fi, type AdvancedBatchOperationStateFilter as fj, type BatchOperationItemStateFilterProperty as fk, type AdvancedBatchOperationItemStateFilter as fl, type ClockPinRequest as fm, ClusterVariableScopeEnum as fn, type CreateClusterVariableRequest as fo, type UpdateClusterVariableRequest as fp, type ClusterVariableResult as fq, type ClusterVariableSearchResult as fr, type ClusterVariableResultBase as fs, type ClusterVariableSearchQueryRequest as ft, type ClusterVariableSearchQuerySortRequest as fu, type ClusterVariableSearchQueryFilterRequest as fv, type ClusterVariableScopeFilterProperty as fw, type AdvancedClusterVariableScopeFilter as fx, type ClusterVariableSearchQueryResult as fy, type TopologyResponse as fz, CamundaValidationError as g, type GlobalTaskListenerBase as g$, DecisionDefinitionTypeEnum as g0, DecisionInstanceStateEnum as g1, type AdvancedDecisionInstanceStateFilter as g2, type DecisionInstanceStateFilterProperty as g3, type DecisionRequirementsSearchQuerySortRequest as g4, type DecisionRequirementsSearchQuery as g5, type DecisionRequirementsFilter as g6, type DecisionRequirementsSearchQueryResult as g7, type DecisionRequirementsResult as g8, type DeploymentResult as g9, DocumentId as gA, type ElementInstanceSearchQuerySortRequest as gB, type ElementInstanceSearchQuery as gC, type ElementInstanceFilter as gD, type ElementInstanceStateFilterProperty as gE, type AdvancedElementInstanceStateFilter as gF, type ElementInstanceSearchQueryResult as gG, type ElementInstanceResult as gH, ElementInstanceStateEnum as gI, type AdHocSubProcessActivateActivitiesInstruction as gJ, type AdHocSubProcessActivateActivityReference as gK, type ExpressionEvaluationRequest as gL, type ExpressionEvaluationResult as gM, type ExpressionEvaluationWarningItem as gN, type LikeFilter as gO, type BasicStringFilter as gP, type AdvancedStringFilter as gQ, type BasicStringFilterProperty as gR, type StringFilterProperty as gS, type AdvancedIntegerFilter as gT, type IntegerFilterProperty as gU, type AdvancedDateTimeFilter as gV, type DateTimeFilterProperty as gW, type FormResult as gX, GlobalListenerSourceEnum as gY, GlobalTaskListenerEventTypeEnum as gZ, type GlobalListenerBase as g_, type DeploymentMetadataResult as ga, type DeploymentProcessResult as gb, type DeploymentDecisionResult as gc, type DeploymentDecisionRequirementsResult as gd, type DeploymentFormResult as ge, type DeploymentResourceResult as gf, type DeleteResourceRequest as gg, type DeleteResourceResponse as gh, type ResourceResult as gi, DeploymentKey as gj, type ResourceKey as gk, type DeploymentKeyFilterProperty as gl, type AdvancedDeploymentKeyFilter as gm, type ResourceKeyFilterProperty as gn, type AdvancedResourceKeyFilter as go, type ResourceSearchQuerySortRequest as gp, type ResourceSearchQuery as gq, type ResourceFilter as gr, type ResourceSearchQueryResult as gs, type DocumentReference as gt, type DocumentCreationFailureDetail as gu, type DocumentCreationBatchResponse as gv, type DocumentMetadata as gw, type DocumentMetadataResponse as gx, type DocumentLinkRequest as gy, type DocumentLink as gz, EventualConsistencyTimeoutError as h, type IncidentProcessInstanceStatisticsByErrorQueryResult as h$, type GlobalTaskListenerEventTypes as h0, type CreateGlobalTaskListenerRequest as h1, type UpdateGlobalTaskListenerRequest as h2, type GlobalTaskListenerResult as h3, type GlobalTaskListenerSearchQueryRequest as h4, type GlobalTaskListenerSearchQuerySortRequest as h5, type GlobalTaskListenerSearchQueryFilterRequest as h6, type GlobalListenerSourceFilterProperty as h7, type AdvancedGlobalListenerSourceFilter as h8, type GlobalTaskListenerEventTypeFilterProperty as h9, TenantId as hA, Username as hB, RoleId as hC, GroupId as hD, MappingRuleId as hE, ClientId as hF, ClusterVariableName as hG, Tag as hH, type TagSet as hI, BusinessId as hJ, type ElementIdFilterProperty as hK, type AdvancedElementIdFilter as hL, type ProcessDefinitionIdFilterProperty as hM, type AdvancedProcessDefinitionIdFilter as hN, type IncidentSearchQuery as hO, type IncidentFilter as hP, type IncidentErrorTypeFilterProperty as hQ, type AdvancedIncidentErrorTypeFilter as hR, IncidentErrorTypeEnum as hS, type IncidentStateFilterProperty as hT, type AdvancedIncidentStateFilter as hU, IncidentStateEnum as hV, type IncidentSearchQuerySortRequest as hW, type IncidentSearchQueryResult as hX, type IncidentResult as hY, type IncidentResolutionRequest as hZ, type IncidentProcessInstanceStatisticsByErrorQuery as h_, type AdvancedGlobalTaskListenerEventTypeFilter as ha, type GlobalTaskListenerSearchQueryResult as hb, type GroupCreateRequest as hc, type GroupCreateResult as hd, type GroupUpdateRequest as he, type GroupUpdateResult as hf, type GroupResult as hg, type GroupSearchQuerySortRequest as hh, type GroupSearchQueryRequest as hi, type GroupFilter as hj, type GroupSearchQueryResult as hk, type GroupUserResult as hl, type GroupUserSearchResult as hm, type GroupUserSearchQueryRequest as hn, type GroupUserSearchQuerySortRequest as ho, type GroupClientResult as hp, type GroupClientSearchResult as hq, type GroupClientSearchQueryRequest as hr, type GroupMappingRuleSearchResult as hs, type GroupRoleSearchResult as ht, type GroupClientSearchQuerySortRequest as hu, ProcessDefinitionId as hv, ElementId as hw, FormId as hx, DecisionDefinitionId as hy, GlobalListenerId as hz, isLeft as i, type ScopeKey as i$, type IncidentProcessInstanceStatisticsByErrorResult as i0, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as i1, type IncidentProcessInstanceStatisticsByDefinitionQuery as i2, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as i3, type IncidentProcessInstanceStatisticsByDefinitionResult as i4, type IncidentProcessInstanceStatisticsByDefinitionFilter as i5, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as i6, type GlobalJobStatisticsQueryResult as i7, type StatusMetric as i8, type JobTypeStatisticsQuery as i9, type JobFailRequest as iA, type JobErrorRequest$1 as iB, type JobCompletionRequest as iC, type JobResult as iD, type JobResultUserTask as iE, type JobResultCorrections as iF, type JobResultAdHocSubProcess as iG, type JobResultActivateElement as iH, type JobUpdateRequest as iI, type JobChangeset as iJ, TenantFilterEnum as iK, JobStateEnum as iL, JobKindEnum as iM, JobListenerEventTypeEnum as iN, type JobKindFilterProperty as iO, type AdvancedJobKindFilter as iP, type JobListenerEventTypeFilterProperty as iQ, type AdvancedJobListenerEventTypeFilter as iR, type JobStateFilterProperty as iS, type AdvancedJobStateFilter as iT, type LongKey as iU, ProcessInstanceKey as iV, ProcessDefinitionKey as iW, ElementInstanceKey as iX, UserTaskKey as iY, FormKey as iZ, VariableKey as i_, type JobTypeStatisticsFilter as ia, type JobTypeStatisticsQueryResult as ib, type JobTypeStatisticsItem as ic, type JobWorkerStatisticsQuery as id, type JobWorkerStatisticsFilter as ie, type JobWorkerStatisticsQueryResult as ig, type JobWorkerStatisticsItem as ih, type JobTimeSeriesStatisticsQuery as ii, type JobTimeSeriesStatisticsFilter as ij, type JobTimeSeriesStatisticsQueryResult as ik, type JobTimeSeriesStatisticsItem as il, type JobErrorStatisticsQuery as im, type JobErrorStatisticsFilter as io, type JobErrorStatisticsQueryResult as ip, type JobErrorStatisticsItem as iq, type JobActivationRequest as ir, type JobActivationResult as is, type ActivatedJobResult$1 as it, type UserTaskProperties as iu, type JobSearchQuery as iv, type JobSearchQuerySortRequest as iw, type JobFilter as ix, type JobSearchQueryResult as iy, type JobSearchResult as iz, isSdkError as j, MessageSubscriptionTypeEnum as j$, IncidentKey as j0, JobKey as j1, DecisionDefinitionKey as j2, DecisionEvaluationInstanceKey as j3, DecisionEvaluationKey as j4, DecisionRequirementsKey as j5, DecisionInstanceKey as j6, BatchOperationKey as j7, type OperationReference as j8, AgentInstanceKey as j9, type AdvancedDecisionRequirementsKeyFilter as jA, type LicenseResponse as jB, type MappingRuleCreateUpdateRequest as jC, type MappingRuleCreateRequest as jD, type MappingRuleUpdateRequest as jE, type MappingRuleCreateUpdateResult as jF, type MappingRuleCreateResult as jG, type MappingRuleUpdateResult as jH, type MappingRuleSearchQueryResult as jI, type MappingRuleResult as jJ, type MappingRuleSearchQuerySortRequest as jK, type MappingRuleSearchQueryRequest as jL, type MappingRuleFilter as jM, type MessageCorrelationRequest as jN, type MessageCorrelationResult as jO, type MessagePublicationRequest as jP, type MessagePublicationResult as jQ, type MessageSubscriptionSearchQueryResult as jR, type MessageSubscriptionResult as jS, type MessageSubscriptionSearchQuerySortRequest as jT, type MessageSubscriptionSearchQuery as jU, type MessageSubscriptionFilter as jV, type CorrelatedMessageSubscriptionSearchQueryResult as jW, type CorrelatedMessageSubscriptionResult as jX, type CorrelatedMessageSubscriptionSearchQuery as jY, type CorrelatedMessageSubscriptionSearchQuerySortRequest as jZ, MessageSubscriptionStateEnum as j_, AuditLogKey as ja, type ProcessDefinitionKeyFilterProperty as jb, type AdvancedProcessDefinitionKeyFilter as jc, type ProcessInstanceKeyFilterProperty as jd, type AdvancedProcessInstanceKeyFilter as je, type ElementInstanceKeyFilterProperty as jf, type AdvancedElementInstanceKeyFilter as jg, type JobKeyFilterProperty as jh, type AdvancedJobKeyFilter as ji, type DecisionDefinitionKeyFilterProperty as jj, type AdvancedDecisionDefinitionKeyFilter as jk, type ScopeKeyFilterProperty as jl, type AdvancedScopeKeyFilter as jm, type VariableKeyFilterProperty as jn, type AdvancedVariableKeyFilter as jo, type DecisionEvaluationInstanceKeyFilterProperty as jp, type AdvancedDecisionEvaluationInstanceKeyFilter as jq, type AgentInstanceKeyFilterProperty as jr, type AdvancedAgentInstanceKeyFilter as js, type AuditLogKeyFilterProperty as jt, type AdvancedAuditLogKeyFilter as ju, type FormKeyFilterProperty as jv, type AdvancedFormKeyFilter as jw, type DecisionEvaluationKeyFilterProperty as jx, type AdvancedDecisionEvaluationKeyFilter as jy, type DecisionRequirementsKeyFilterProperty as jz, type EnrichedActivatedJob as k, type UseSourceParentKeyInstruction as k$, type CorrelatedMessageSubscriptionFilter as k0, type MessageSubscriptionTypeFilterProperty as k1, type AdvancedMessageSubscriptionTypeFilter as k2, type MessageSubscriptionStateFilterProperty as k3, type AdvancedMessageSubscriptionStateFilter as k4, type AdvancedMessageSubscriptionKeyFilter as k5, type MessageSubscriptionKeyFilterProperty as k6, MessageSubscriptionKey as k7, MessageKey as k8, type ProblemDetail as k9, type CreateProcessInstanceResult as kA, type ProcessInstanceSearchQuerySortRequest as kB, type ProcessInstanceSearchQuery as kC, type BaseProcessInstanceFilterFields as kD, type ProcessDefinitionStatisticsFilter as kE, type ProcessInstanceFilterFields as kF, type ProcessInstanceFilter as kG, type ProcessInstanceSearchQueryResult as kH, type ProcessInstanceResult as kI, type CancelProcessInstanceRequest as kJ, type DeleteProcessInstanceRequest as kK, type ProcessInstanceCallHierarchyEntry as kL, type ProcessInstanceSequenceFlowsQueryResult as kM, type ProcessInstanceSequenceFlowResult as kN, type ProcessInstanceElementStatisticsQueryResult as kO, type ProcessInstanceMigrationInstruction as kP, type MigrateProcessInstanceMappingInstruction as kQ, type ProcessInstanceModificationInstruction as kR, type ProcessInstanceModificationActivateInstruction as kS, type ModifyProcessInstanceVariableInstruction as kT, type ProcessInstanceModificationMoveInstruction as kU, type SourceElementInstruction as kV, type SourceElementIdInstruction as kW, type SourceElementInstanceKeyInstruction as kX, type AncestorScopeInstruction as kY, type DirectAncestorKeyInstruction as kZ, type InferredAncestorKeyInstruction as k_, type ProcessDefinitionSearchQuerySortRequest as ka, type ProcessDefinitionSearchQuery as kb, type ProcessDefinitionFilter as kc, type ProcessDefinitionSearchQueryResult as kd, type ProcessDefinitionResult as ke, type ProcessDefinitionElementStatisticsQuery as kf, type ProcessDefinitionElementStatisticsQueryResult as kg, type ProcessElementStatisticsResult as kh, type ProcessDefinitionMessageSubscriptionStatisticsQuery as ki, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as kj, type ProcessDefinitionMessageSubscriptionStatisticsResult as kk, type ProcessDefinitionInstanceStatisticsQuery as kl, type ProcessDefinitionInstanceStatisticsQueryResult as km, type ProcessDefinitionInstanceStatisticsResult as kn, type ProcessDefinitionInstanceStatisticsQuerySortRequest as ko, type ProcessDefinitionInstanceVersionStatisticsQuery as kp, type ProcessDefinitionInstanceVersionStatisticsFilter as kq, type ProcessDefinitionInstanceVersionStatisticsQueryResult as kr, type ProcessDefinitionInstanceVersionStatisticsResult as ks, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as kt, type ProcessInstanceCreationInstruction as ku, type ProcessInstanceCreationInstructionById as kv, type ProcessInstanceCreationInstructionByKey as kw, type ProcessInstanceCreationStartInstruction as kx, type ProcessInstanceCreationRuntimeInstruction as ky, type ProcessInstanceCreationTerminateInstruction as kz, JobActionReceipt as l, type TenantClientResult as l$, type ProcessInstanceModificationTerminateInstruction as l0, type ProcessInstanceModificationTerminateByIdInstruction as l1, type ProcessInstanceModificationTerminateByKeyInstruction as l2, ProcessInstanceStateEnum as l3, type AdvancedProcessInstanceStateFilter as l4, type ProcessInstanceStateFilterProperty as l5, type RoleCreateRequest as l6, type RoleCreateResult as l7, type RoleUpdateRequest as l8, type RoleUpdateResult as l9, type SearchQueryPageResponse as lA, type SignalBroadcastRequest as lB, type SignalBroadcastResult as lC, SignalKey as lD, type UsageMetricsResponse as lE, type UsageMetricsResponseItem as lF, type SystemConfigurationResponse as lG, type JobMetricsConfigurationResponse as lH, type ComponentsConfigurationResponse as lI, type DeploymentConfigurationResponse as lJ, type AuthenticationConfigurationResponse as lK, type CloudConfigurationResponse as lL, type WebappComponent as lM, type CloudStage as lN, type TenantCreateRequest as lO, type TenantCreateResult as lP, type TenantUpdateRequest as lQ, type TenantUpdateResult as lR, type TenantResult as lS, type TenantSearchQuerySortRequest as lT, type TenantSearchQueryRequest as lU, type TenantFilter as lV, type TenantSearchQueryResult as lW, type TenantUserResult as lX, type TenantUserSearchResult as lY, type TenantUserSearchQueryRequest as lZ, type TenantUserSearchQuerySortRequest as l_, type RoleResult as la, type RoleSearchQuerySortRequest as lb, type RoleSearchQueryRequest as lc, type RoleFilter as ld, type RoleSearchQueryResult as le, type RoleUserResult as lf, type RoleUserSearchResult as lg, type RoleUserSearchQueryRequest as lh, type RoleUserSearchQuerySortRequest as li, type RoleClientResult as lj, type RoleClientSearchResult as lk, type RoleClientSearchQueryRequest as ll, type RoleClientSearchQuerySortRequest as lm, type RoleGroupResult as ln, type RoleGroupSearchResult as lo, type RoleGroupSearchQueryRequest as lp, type RoleMappingRuleSearchResult as lq, type RoleGroupSearchQuerySortRequest as lr, type SearchQueryRequest as ls, type SearchQueryPageRequest as lt, type LimitPagination as lu, type OffsetPagination as lv, type CursorForwardPagination as lw, type CursorBackwardPagination as lx, type SearchQueryResponse as ly, SortOrderEnum as lz, JobWorker as m, type ProcessDefinitionIdExactMatch as m$, type TenantClientSearchResult as m0, type TenantClientSearchQueryRequest as m1, type TenantClientSearchQuerySortRequest as m2, type TenantGroupResult as m3, type TenantGroupSearchResult as m4, type TenantGroupSearchQueryRequest as m5, type TenantRoleSearchResult as m6, type TenantMappingRuleSearchResult as m7, type TenantGroupSearchQuerySortRequest as m8, type UserTaskSearchQuerySortRequest as m9, type VariableSearchQuerySortRequest as mA, type VariableSearchQuery as mB, type VariableFilter as mC, type VariableSearchQueryResult as mD, type VariableSearchResult as mE, type VariableResult as mF, type VariableResultBase as mG, type VariableValueFilterProperty as mH, type SetVariableRequest as mI, type AgentInstanceStatusExactMatch as mJ, type AuditLogEntityKeyExactMatch as mK, type EntityTypeExactMatch as mL, type OperationTypeExactMatch as mM, type CategoryExactMatch as mN, type AuditLogResultExactMatch as mO, type AuditLogActorTypeExactMatch as mP, type BatchOperationTypeExactMatch as mQ, type BatchOperationStateExactMatch as mR, type BatchOperationItemStateExactMatch as mS, type ClusterVariableScopeExactMatch as mT, type DecisionInstanceStateExactMatch as mU, type DeploymentKeyExactMatch as mV, type ResourceKeyExactMatch as mW, type ElementInstanceStateExactMatch as mX, type GlobalListenerSourceExactMatch as mY, type GlobalTaskListenerEventTypeExactMatch as mZ, type ElementIdExactMatch as m_, type UserTaskSearchQuery as ma, type UserTaskFilter as mb, type UserTaskSearchQueryResult as mc, type UserTaskResult as md, type UserTaskCompletionRequest as me, type UserTaskAssignmentRequest as mf, type UserTaskUpdateRequest as mg, type Changeset as mh, type UserTaskVariableSearchQuerySortRequest as mi, type UserTaskVariableSearchQueryRequest as mj, type UserTaskEffectiveVariableSearchQueryRequest as mk, type UserTaskAuditLogSearchQueryRequest as ml, UserTaskStateEnum as mm, type UserTaskVariableFilter as mn, type UserTaskStateFilterProperty as mo, type AdvancedUserTaskStateFilter as mp, type UserTaskAuditLogFilter as mq, type UserRequest as mr, type UserCreateResult as ms, type UserUpdateRequest as mt, type UserUpdateResult as mu, type UserResult as mv, type UserSearchQuerySortRequest as mw, type UserSearchQueryRequest as mx, type UserFilter as my, type UserSearchResult as mz, type JobWorkerConfig as n, type SearchAuthorizationsData as n$, type IncidentErrorTypeExactMatch as n0, type IncidentStateExactMatch as n1, type JobKindExactMatch as n2, type JobListenerEventTypeExactMatch as n3, type JobStateExactMatch as n4, type ProcessDefinitionKeyExactMatch as n5, type ProcessInstanceKeyExactMatch as n6, type ElementInstanceKeyExactMatch as n7, type JobKeyExactMatch as n8, type DecisionDefinitionKeyExactMatch as n9, type UpdateAgentInstanceResponses as nA, type UpdateAgentInstanceResponse as nB, type SearchAgentInstancesData as nC, type SearchAgentInstancesErrors as nD, type SearchAgentInstancesError as nE, type SearchAgentInstancesResponses as nF, type SearchAgentInstancesResponse as nG, type SearchAuditLogsData as nH, type SearchAuditLogsErrors as nI, type SearchAuditLogsError as nJ, type SearchAuditLogsResponses as nK, type SearchAuditLogsResponse as nL, type GetAuditLogData as nM, type GetAuditLogErrors as nN, type GetAuditLogError as nO, type GetAuditLogResponses as nP, type GetAuditLogResponse as nQ, type GetAuthenticationData as nR, type GetAuthenticationErrors as nS, type GetAuthenticationError as nT, type GetAuthenticationResponses as nU, type GetAuthenticationResponse as nV, type CreateAuthorizationData as nW, type CreateAuthorizationErrors as nX, type CreateAuthorizationError as nY, type CreateAuthorizationResponses as nZ, type CreateAuthorizationResponse as n_, type ScopeKeyExactMatch as na, type VariableKeyExactMatch as nb, type DecisionEvaluationInstanceKeyExactMatch as nc, type AgentInstanceKeyExactMatch as nd, type AuditLogKeyExactMatch as ne, type FormKeyExactMatch as nf, type DecisionEvaluationKeyExactMatch as ng, type DecisionRequirementsKeyExactMatch as nh, type MessageSubscriptionTypeExactMatch as ni, type MessageSubscriptionStateExactMatch as nj, type MessageSubscriptionKeyExactMatch as nk, type ProcessInstanceStateExactMatch as nl, type UserTaskStateExactMatch as nm, type CreateAgentInstanceData as nn, type CreateAgentInstanceErrors as no, type CreateAgentInstanceError as np, type CreateAgentInstanceResponses as nq, type CreateAgentInstanceResponse as nr, type GetAgentInstanceData as ns, type GetAgentInstanceErrors as nt, type GetAgentInstanceError as nu, type GetAgentInstanceResponses as nv, type GetAgentInstanceResponse as nw, type UpdateAgentInstanceData as nx, type UpdateAgentInstanceErrors as ny, type UpdateAgentInstanceError as nz, type SupportLogger as o, type CreateGlobalClusterVariableResponse as o$, type SearchAuthorizationsErrors as o0, type SearchAuthorizationsError as o1, type SearchAuthorizationsResponses as o2, type SearchAuthorizationsResponse as o3, type DeleteAuthorizationData as o4, type DeleteAuthorizationErrors as o5, type DeleteAuthorizationError as o6, type DeleteAuthorizationResponses as o7, type DeleteAuthorizationResponse as o8, type GetAuthorizationData as o9, type CancelBatchOperationError as oA, type CancelBatchOperationResponses as oB, type CancelBatchOperationResponse as oC, type ResumeBatchOperationData as oD, type ResumeBatchOperationErrors as oE, type ResumeBatchOperationError as oF, type ResumeBatchOperationResponses as oG, type ResumeBatchOperationResponse as oH, type SuspendBatchOperationData as oI, type SuspendBatchOperationErrors as oJ, type SuspendBatchOperationError as oK, type SuspendBatchOperationResponses as oL, type SuspendBatchOperationResponse as oM, type PinClockData as oN, type PinClockErrors as oO, type PinClockError as oP, type PinClockResponses as oQ, type PinClockResponse as oR, type ResetClockData as oS, type ResetClockErrors as oT, type ResetClockError as oU, type ResetClockResponses as oV, type ResetClockResponse as oW, type CreateGlobalClusterVariableData as oX, type CreateGlobalClusterVariableErrors as oY, type CreateGlobalClusterVariableError as oZ, type CreateGlobalClusterVariableResponses as o_, type GetAuthorizationErrors as oa, type GetAuthorizationError as ob, type GetAuthorizationResponses as oc, type GetAuthorizationResponse as od, type UpdateAuthorizationData as oe, type UpdateAuthorizationErrors as of, type UpdateAuthorizationError as og, type UpdateAuthorizationResponses as oh, type UpdateAuthorizationResponse as oi, type SearchBatchOperationItemsData as oj, type SearchBatchOperationItemsErrors as ok, type SearchBatchOperationItemsError as ol, type SearchBatchOperationItemsResponses as om, type SearchBatchOperationItemsResponse as on, type SearchBatchOperationsData as oo, type SearchBatchOperationsErrors as op, type SearchBatchOperationsError as oq, type SearchBatchOperationsResponses as or, type SearchBatchOperationsResponse as os, type GetBatchOperationData as ot, type GetBatchOperationErrors as ou, type GetBatchOperationError as ov, type GetBatchOperationResponses as ow, type GetBatchOperationResponse as ox, type CancelBatchOperationData as oy, type CancelBatchOperationErrors as oz, type ThreadedJob as p, type GetDecisionDefinitionResponses as p$, type DeleteGlobalClusterVariableData as p0, type DeleteGlobalClusterVariableErrors as p1, type DeleteGlobalClusterVariableError as p2, type DeleteGlobalClusterVariableResponses as p3, type DeleteGlobalClusterVariableResponse as p4, type GetGlobalClusterVariableData as p5, type GetGlobalClusterVariableErrors as p6, type GetGlobalClusterVariableError as p7, type GetGlobalClusterVariableResponses as p8, type GetGlobalClusterVariableResponse as p9, type UpdateTenantClusterVariableErrors as pA, type UpdateTenantClusterVariableError as pB, type UpdateTenantClusterVariableResponses as pC, type UpdateTenantClusterVariableResponse as pD, type EvaluateConditionalsData as pE, type EvaluateConditionalsErrors as pF, type EvaluateConditionalsError as pG, type EvaluateConditionalsResponses as pH, type EvaluateConditionalsResponse as pI, type SearchCorrelatedMessageSubscriptionsData as pJ, type SearchCorrelatedMessageSubscriptionsErrors as pK, type SearchCorrelatedMessageSubscriptionsError as pL, type SearchCorrelatedMessageSubscriptionsResponses as pM, type SearchCorrelatedMessageSubscriptionsResponse as pN, type EvaluateDecisionData as pO, type EvaluateDecisionErrors as pP, type EvaluateDecisionError as pQ, type EvaluateDecisionResponses as pR, type EvaluateDecisionResponse as pS, type SearchDecisionDefinitionsData as pT, type SearchDecisionDefinitionsErrors as pU, type SearchDecisionDefinitionsError as pV, type SearchDecisionDefinitionsResponses as pW, type SearchDecisionDefinitionsResponse as pX, type GetDecisionDefinitionData as pY, type GetDecisionDefinitionErrors as pZ, type GetDecisionDefinitionError as p_, type UpdateGlobalClusterVariableData as pa, type UpdateGlobalClusterVariableErrors as pb, type UpdateGlobalClusterVariableError as pc, type UpdateGlobalClusterVariableResponses as pd, type UpdateGlobalClusterVariableResponse as pe, type SearchClusterVariablesData as pf, type SearchClusterVariablesErrors as pg, type SearchClusterVariablesError as ph, type SearchClusterVariablesResponses as pi, type SearchClusterVariablesResponse as pj, type CreateTenantClusterVariableData as pk, type CreateTenantClusterVariableErrors as pl, type CreateTenantClusterVariableError as pm, type CreateTenantClusterVariableResponses as pn, type CreateTenantClusterVariableResponse as po, type DeleteTenantClusterVariableData as pp, type DeleteTenantClusterVariableErrors as pq, type DeleteTenantClusterVariableError as pr, type DeleteTenantClusterVariableResponses as ps, type DeleteTenantClusterVariableResponse as pt, type GetTenantClusterVariableData as pu, type GetTenantClusterVariableErrors as pv, type GetTenantClusterVariableError as pw, type GetTenantClusterVariableResponses as px, type GetTenantClusterVariableResponse as py, type UpdateTenantClusterVariableData as pz, type ThreadedJobHandler as q, type GetDocumentError as q$, type GetDecisionDefinitionResponse as q0, type GetDecisionDefinitionXmlData as q1, type GetDecisionDefinitionXmlErrors as q2, type GetDecisionDefinitionXmlError as q3, type GetDecisionDefinitionXmlResponses as q4, type GetDecisionDefinitionXmlResponse as q5, type SearchDecisionInstancesData as q6, type SearchDecisionInstancesErrors as q7, type SearchDecisionInstancesError as q8, type SearchDecisionInstancesResponses as q9, type GetDecisionRequirementsXmlData as qA, type GetDecisionRequirementsXmlErrors as qB, type GetDecisionRequirementsXmlError as qC, type GetDecisionRequirementsXmlResponses as qD, type GetDecisionRequirementsXmlResponse as qE, type CreateDeploymentData as qF, type CreateDeploymentErrors as qG, type CreateDeploymentError as qH, type CreateDeploymentResponses as qI, type CreateDeploymentResponse as qJ, type CreateDocumentData as qK, type CreateDocumentErrors as qL, type CreateDocumentError as qM, type CreateDocumentResponses as qN, type CreateDocumentResponse as qO, type CreateDocumentsData as qP, type CreateDocumentsErrors as qQ, type CreateDocumentsError as qR, type CreateDocumentsResponses as qS, type CreateDocumentsResponse as qT, type DeleteDocumentData as qU, type DeleteDocumentErrors as qV, type DeleteDocumentError as qW, type DeleteDocumentResponses as qX, type DeleteDocumentResponse as qY, type GetDocumentData as qZ, type GetDocumentErrors as q_, type SearchDecisionInstancesResponse as qa, type GetDecisionInstanceData as qb, type GetDecisionInstanceErrors as qc, type GetDecisionInstanceError as qd, type GetDecisionInstanceResponses as qe, type GetDecisionInstanceResponse as qf, type DeleteDecisionInstanceData as qg, type DeleteDecisionInstanceErrors as qh, type DeleteDecisionInstanceError as qi, type DeleteDecisionInstanceResponses as qj, type DeleteDecisionInstanceResponse as qk, type DeleteDecisionInstancesBatchOperationData as ql, type DeleteDecisionInstancesBatchOperationErrors as qm, type DeleteDecisionInstancesBatchOperationError as qn, type DeleteDecisionInstancesBatchOperationResponses as qo, type DeleteDecisionInstancesBatchOperationResponse as qp, type SearchDecisionRequirementsData as qq, type SearchDecisionRequirementsErrors as qr, type SearchDecisionRequirementsError as qs, type SearchDecisionRequirementsResponses as qt, type SearchDecisionRequirementsResponse as qu, type GetDecisionRequirementsData as qv, type GetDecisionRequirementsErrors as qw, type GetDecisionRequirementsError as qx, type GetDecisionRequirementsResponses as qy, type GetDecisionRequirementsResponse as qz, ThreadedJobWorker as r, type SearchGlobalTaskListenersErrors as r$, type GetDocumentResponses as r0, type GetDocumentResponse as r1, type CreateDocumentLinkData as r2, type CreateDocumentLinkErrors as r3, type CreateDocumentLinkError as r4, type CreateDocumentLinkResponses as r5, type CreateDocumentLinkResponse as r6, type ActivateAdHocSubProcessActivitiesData as r7, type ActivateAdHocSubProcessActivitiesErrors as r8, type ActivateAdHocSubProcessActivitiesError as r9, type EvaluateExpressionResponse as rA, type GetFormByKeyData as rB, type GetFormByKeyErrors as rC, type GetFormByKeyError as rD, type GetFormByKeyResponses as rE, type GetFormByKeyResponse as rF, type CreateGlobalTaskListenerData as rG, type CreateGlobalTaskListenerErrors as rH, type CreateGlobalTaskListenerError as rI, type CreateGlobalTaskListenerResponses as rJ, type CreateGlobalTaskListenerResponse as rK, type DeleteGlobalTaskListenerData as rL, type DeleteGlobalTaskListenerErrors as rM, type DeleteGlobalTaskListenerError as rN, type DeleteGlobalTaskListenerResponses as rO, type DeleteGlobalTaskListenerResponse as rP, type GetGlobalTaskListenerData as rQ, type GetGlobalTaskListenerErrors as rR, type GetGlobalTaskListenerError as rS, type GetGlobalTaskListenerResponses as rT, type GetGlobalTaskListenerResponse as rU, type UpdateGlobalTaskListenerData as rV, type UpdateGlobalTaskListenerErrors as rW, type UpdateGlobalTaskListenerError as rX, type UpdateGlobalTaskListenerResponses as rY, type UpdateGlobalTaskListenerResponse as rZ, type SearchGlobalTaskListenersData as r_, type ActivateAdHocSubProcessActivitiesResponses as ra, type ActivateAdHocSubProcessActivitiesResponse as rb, type SearchElementInstancesData as rc, type SearchElementInstancesErrors as rd, type SearchElementInstancesError as re, type SearchElementInstancesResponses as rf, type SearchElementInstancesResponse as rg, type GetElementInstanceData as rh, type GetElementInstanceErrors as ri, type GetElementInstanceError as rj, type GetElementInstanceResponses as rk, type GetElementInstanceResponse as rl, type SearchElementInstanceIncidentsData as rm, type SearchElementInstanceIncidentsErrors as rn, type SearchElementInstanceIncidentsError as ro, type SearchElementInstanceIncidentsResponses as rp, type SearchElementInstanceIncidentsResponse as rq, type CreateElementInstanceVariablesData as rr, type CreateElementInstanceVariablesErrors as rs, type CreateElementInstanceVariablesError as rt, type CreateElementInstanceVariablesResponses as ru, type CreateElementInstanceVariablesResponse as rv, type EvaluateExpressionData as rw, type EvaluateExpressionErrors as rx, type EvaluateExpressionError as ry, type EvaluateExpressionResponses as rz, type ThreadedJobWorkerConfig as s, type SearchUsersForGroupData as s$, type SearchGlobalTaskListenersError as s0, type SearchGlobalTaskListenersResponses as s1, type SearchGlobalTaskListenersResponse as s2, type CreateGroupData as s3, type CreateGroupErrors as s4, type CreateGroupError as s5, type CreateGroupResponses as s6, type CreateGroupResponse as s7, type SearchGroupsData as s8, type SearchGroupsErrors as s9, type UnassignClientFromGroupResponses as sA, type UnassignClientFromGroupResponse as sB, type AssignClientToGroupData as sC, type AssignClientToGroupErrors as sD, type AssignClientToGroupError as sE, type AssignClientToGroupResponses as sF, type AssignClientToGroupResponse as sG, type SearchMappingRulesForGroupData as sH, type SearchMappingRulesForGroupErrors as sI, type SearchMappingRulesForGroupError as sJ, type SearchMappingRulesForGroupResponses as sK, type SearchMappingRulesForGroupResponse as sL, type UnassignMappingRuleFromGroupData as sM, type UnassignMappingRuleFromGroupErrors as sN, type UnassignMappingRuleFromGroupError as sO, type UnassignMappingRuleFromGroupResponses as sP, type UnassignMappingRuleFromGroupResponse as sQ, type AssignMappingRuleToGroupData as sR, type AssignMappingRuleToGroupErrors as sS, type AssignMappingRuleToGroupError as sT, type AssignMappingRuleToGroupResponses as sU, type AssignMappingRuleToGroupResponse as sV, type SearchRolesForGroupData as sW, type SearchRolesForGroupErrors as sX, type SearchRolesForGroupError as sY, type SearchRolesForGroupResponses as sZ, type SearchRolesForGroupResponse as s_, type SearchGroupsError as sa, type SearchGroupsResponses as sb, type SearchGroupsResponse as sc, type DeleteGroupData as sd, type DeleteGroupErrors as se, type DeleteGroupError as sf, type DeleteGroupResponses as sg, type DeleteGroupResponse as sh, type GetGroupData as si, type GetGroupErrors as sj, type GetGroupError as sk, type GetGroupResponses as sl, type GetGroupResponse as sm, type UpdateGroupData as sn, type UpdateGroupErrors as so, type UpdateGroupError as sp, type UpdateGroupResponses as sq, type UpdateGroupResponse as sr, type SearchClientsForGroupData as ss, type SearchClientsForGroupErrors as st, type SearchClientsForGroupError as su, type SearchClientsForGroupResponses as sv, type SearchClientsForGroupResponse as sw, type UnassignClientFromGroupData as sx, type UnassignClientFromGroupErrors as sy, type UnassignClientFromGroupError as sz, ThreadPool as t, type ThrowJobErrorResponse as t$, type SearchUsersForGroupErrors as t0, type SearchUsersForGroupError as t1, type SearchUsersForGroupResponses as t2, type SearchUsersForGroupResponse as t3, type UnassignUserFromGroupData as t4, type UnassignUserFromGroupErrors as t5, type UnassignUserFromGroupError as t6, type UnassignUserFromGroupResponses as t7, type UnassignUserFromGroupResponse as t8, type AssignUserToGroupData as t9, type GetProcessInstanceStatisticsByErrorError as tA, type GetProcessInstanceStatisticsByErrorResponses as tB, type GetProcessInstanceStatisticsByErrorResponse as tC, type ActivateJobsData as tD, type ActivateJobsErrors as tE, type ActivateJobsError as tF, type ActivateJobsResponses as tG, type ActivateJobsResponse as tH, type SearchJobsData as tI, type SearchJobsErrors as tJ, type SearchJobsError as tK, type SearchJobsResponses as tL, type SearchJobsResponse as tM, type UpdateJobData as tN, type UpdateJobErrors as tO, type UpdateJobError as tP, type UpdateJobResponses as tQ, type UpdateJobResponse as tR, type CompleteJobData as tS, type CompleteJobErrors as tT, type CompleteJobError as tU, type CompleteJobResponses as tV, type CompleteJobResponse as tW, type ThrowJobErrorData as tX, type ThrowJobErrorErrors as tY, type ThrowJobErrorError as tZ, type ThrowJobErrorResponses as t_, type AssignUserToGroupErrors as ta, type AssignUserToGroupError as tb, type AssignUserToGroupResponses as tc, type AssignUserToGroupResponse as td, type SearchIncidentsData as te, type SearchIncidentsErrors as tf, type SearchIncidentsError as tg, type SearchIncidentsResponses as th, type SearchIncidentsResponse as ti, type GetIncidentData as tj, type GetIncidentErrors as tk, type GetIncidentError as tl, type GetIncidentResponses as tm, type GetIncidentResponse as tn, type ResolveIncidentData as to, type ResolveIncidentErrors as tp, type ResolveIncidentError as tq, type ResolveIncidentResponses as tr, type ResolveIncidentResponse as ts, type GetProcessInstanceStatisticsByDefinitionData as tt, type GetProcessInstanceStatisticsByDefinitionErrors as tu, type GetProcessInstanceStatisticsByDefinitionError as tv, type GetProcessInstanceStatisticsByDefinitionResponses as tw, type GetProcessInstanceStatisticsByDefinitionResponse as tx, type GetProcessInstanceStatisticsByErrorData as ty, type GetProcessInstanceStatisticsByErrorErrors as tz, type CamundaConfig as u, type SearchMessageSubscriptionsResponses as u$, type FailJobData as u0, type FailJobErrors as u1, type FailJobError as u2, type FailJobResponses as u3, type FailJobResponse as u4, type GetGlobalJobStatisticsData as u5, type GetGlobalJobStatisticsErrors as u6, type GetGlobalJobStatisticsError as u7, type GetGlobalJobStatisticsResponses as u8, type GetGlobalJobStatisticsResponse as u9, type CreateMappingRuleErrors as uA, type CreateMappingRuleError as uB, type CreateMappingRuleResponses as uC, type CreateMappingRuleResponse as uD, type SearchMappingRuleData as uE, type SearchMappingRuleErrors as uF, type SearchMappingRuleError as uG, type SearchMappingRuleResponses as uH, type SearchMappingRuleResponse as uI, type DeleteMappingRuleData as uJ, type DeleteMappingRuleErrors as uK, type DeleteMappingRuleError as uL, type DeleteMappingRuleResponses as uM, type DeleteMappingRuleResponse as uN, type GetMappingRuleData as uO, type GetMappingRuleErrors as uP, type GetMappingRuleError as uQ, type GetMappingRuleResponses as uR, type GetMappingRuleResponse as uS, type UpdateMappingRuleData as uT, type UpdateMappingRuleErrors as uU, type UpdateMappingRuleError as uV, type UpdateMappingRuleResponses as uW, type UpdateMappingRuleResponse as uX, type SearchMessageSubscriptionsData as uY, type SearchMessageSubscriptionsErrors as uZ, type SearchMessageSubscriptionsError as u_, type GetJobTypeStatisticsData as ua, type GetJobTypeStatisticsErrors as ub, type GetJobTypeStatisticsError as uc, type GetJobTypeStatisticsResponses as ud, type GetJobTypeStatisticsResponse as ue, type GetJobWorkerStatisticsData as uf, type GetJobWorkerStatisticsErrors as ug, type GetJobWorkerStatisticsError as uh, type GetJobWorkerStatisticsResponses as ui, type GetJobWorkerStatisticsResponse as uj, type GetJobTimeSeriesStatisticsData as uk, type GetJobTimeSeriesStatisticsErrors as ul, type GetJobTimeSeriesStatisticsError as um, type GetJobTimeSeriesStatisticsResponses as un, type GetJobTimeSeriesStatisticsResponse as uo, type GetJobErrorStatisticsData as up, type GetJobErrorStatisticsErrors as uq, type GetJobErrorStatisticsError as ur, type GetJobErrorStatisticsResponses as us, type GetJobErrorStatisticsResponse as ut, type GetLicenseData as uu, type GetLicenseErrors as uv, type GetLicenseError as uw, type GetLicenseResponses as ux, type GetLicenseResponse as uy, type CreateMappingRuleData as uz, type activateAdHocSubProcessActivitiesInput as v, type DeleteProcessInstancesBatchOperationError as v$, type SearchMessageSubscriptionsResponse as v0, type CorrelateMessageData as v1, type CorrelateMessageErrors as v2, type CorrelateMessageError as v3, type CorrelateMessageResponses as v4, type CorrelateMessageResponse as v5, type PublishMessageData as v6, type PublishMessageErrors as v7, type PublishMessageError as v8, type PublishMessageResponses as v9, type GetProcessDefinitionStatisticsData as vA, type GetProcessDefinitionStatisticsErrors as vB, type GetProcessDefinitionStatisticsError as vC, type GetProcessDefinitionStatisticsResponses as vD, type GetProcessDefinitionStatisticsResponse as vE, type GetProcessDefinitionXmlData as vF, type GetProcessDefinitionXmlErrors as vG, type GetProcessDefinitionXmlError as vH, type GetProcessDefinitionXmlResponses as vI, type GetProcessDefinitionXmlResponse as vJ, type GetProcessDefinitionInstanceVersionStatisticsData as vK, type GetProcessDefinitionInstanceVersionStatisticsErrors as vL, type GetProcessDefinitionInstanceVersionStatisticsError as vM, type GetProcessDefinitionInstanceVersionStatisticsResponses as vN, type GetProcessDefinitionInstanceVersionStatisticsResponse as vO, type CreateProcessInstanceData as vP, type CreateProcessInstanceErrors as vQ, type CreateProcessInstanceError as vR, type CreateProcessInstanceResponses as vS, type CreateProcessInstanceResponse as vT, type CancelProcessInstancesBatchOperationData as vU, type CancelProcessInstancesBatchOperationErrors as vV, type CancelProcessInstancesBatchOperationError as vW, type CancelProcessInstancesBatchOperationResponses as vX, type CancelProcessInstancesBatchOperationResponse as vY, type DeleteProcessInstancesBatchOperationData as vZ, type DeleteProcessInstancesBatchOperationErrors as v_, type PublishMessageResponse as va, type SearchProcessDefinitionsData as vb, type SearchProcessDefinitionsErrors as vc, type SearchProcessDefinitionsError as vd, type SearchProcessDefinitionsResponses as ve, type SearchProcessDefinitionsResponse as vf, type GetProcessDefinitionMessageSubscriptionStatisticsData as vg, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as vh, type GetProcessDefinitionMessageSubscriptionStatisticsError as vi, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as vj, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as vk, type GetProcessDefinitionInstanceStatisticsData as vl, type GetProcessDefinitionInstanceStatisticsErrors as vm, type GetProcessDefinitionInstanceStatisticsError as vn, type GetProcessDefinitionInstanceStatisticsResponses as vo, type GetProcessDefinitionInstanceStatisticsResponse as vp, type GetProcessDefinitionData as vq, type GetProcessDefinitionErrors as vr, type GetProcessDefinitionError as vs, type GetProcessDefinitionResponses as vt, type GetProcessDefinitionResponse as vu, type GetStartProcessFormData as vv, type GetStartProcessFormErrors as vw, type GetStartProcessFormError as vx, type GetStartProcessFormResponses as vy, type GetStartProcessFormResponse as vz, type activateJobsInput as w, type GetProcessInstanceSequenceFlowsErrors as w$, type DeleteProcessInstancesBatchOperationResponses as w0, type DeleteProcessInstancesBatchOperationResponse as w1, type ResolveIncidentsBatchOperationData as w2, type ResolveIncidentsBatchOperationErrors as w3, type ResolveIncidentsBatchOperationError as w4, type ResolveIncidentsBatchOperationResponses as w5, type ResolveIncidentsBatchOperationResponse as w6, type MigrateProcessInstancesBatchOperationData as w7, type MigrateProcessInstancesBatchOperationErrors as w8, type MigrateProcessInstancesBatchOperationError as w9, type CancelProcessInstanceResponse as wA, type DeleteProcessInstanceData as wB, type DeleteProcessInstanceErrors as wC, type DeleteProcessInstanceError as wD, type DeleteProcessInstanceResponses as wE, type DeleteProcessInstanceResponse as wF, type ResolveProcessInstanceIncidentsData as wG, type ResolveProcessInstanceIncidentsErrors as wH, type ResolveProcessInstanceIncidentsError as wI, type ResolveProcessInstanceIncidentsResponses as wJ, type ResolveProcessInstanceIncidentsResponse as wK, type SearchProcessInstanceIncidentsData as wL, type SearchProcessInstanceIncidentsErrors as wM, type SearchProcessInstanceIncidentsError as wN, type SearchProcessInstanceIncidentsResponses as wO, type SearchProcessInstanceIncidentsResponse as wP, type MigrateProcessInstanceData as wQ, type MigrateProcessInstanceErrors as wR, type MigrateProcessInstanceError as wS, type MigrateProcessInstanceResponses as wT, type MigrateProcessInstanceResponse as wU, type ModifyProcessInstanceData as wV, type ModifyProcessInstanceErrors as wW, type ModifyProcessInstanceError as wX, type ModifyProcessInstanceResponses as wY, type ModifyProcessInstanceResponse as wZ, type GetProcessInstanceSequenceFlowsData as w_, type MigrateProcessInstancesBatchOperationResponses as wa, type MigrateProcessInstancesBatchOperationResponse as wb, type ModifyProcessInstancesBatchOperationData as wc, type ModifyProcessInstancesBatchOperationErrors as wd, type ModifyProcessInstancesBatchOperationError as we, type ModifyProcessInstancesBatchOperationResponses as wf, type ModifyProcessInstancesBatchOperationResponse as wg, type SearchProcessInstancesData as wh, type SearchProcessInstancesErrors as wi, type SearchProcessInstancesError as wj, type SearchProcessInstancesResponses as wk, type SearchProcessInstancesResponse as wl, type GetProcessInstanceData as wm, type GetProcessInstanceErrors as wn, type GetProcessInstanceError as wo, type GetProcessInstanceResponses as wp, type GetProcessInstanceResponse as wq, type GetProcessInstanceCallHierarchyData as wr, type GetProcessInstanceCallHierarchyErrors as ws, type GetProcessInstanceCallHierarchyError as wt, type GetProcessInstanceCallHierarchyResponses as wu, type GetProcessInstanceCallHierarchyResponse as wv, type CancelProcessInstanceData as ww, type CancelProcessInstanceErrors as wx, type CancelProcessInstanceError as wy, type CancelProcessInstanceResponses as wz, type assignClientToGroupInput as x, type UnassignRoleFromClientData as x$, type GetProcessInstanceSequenceFlowsError as x0, type GetProcessInstanceSequenceFlowsResponses as x1, type GetProcessInstanceSequenceFlowsResponse as x2, type GetProcessInstanceStatisticsData as x3, type GetProcessInstanceStatisticsErrors as x4, type GetProcessInstanceStatisticsError as x5, type GetProcessInstanceStatisticsResponses as x6, type GetProcessInstanceStatisticsResponse as x7, type SearchResourcesData as x8, type SearchResourcesErrors as x9, type CreateRoleResponses as xA, type CreateRoleResponse as xB, type SearchRolesData as xC, type SearchRolesErrors as xD, type SearchRolesError as xE, type SearchRolesResponses as xF, type SearchRolesResponse as xG, type DeleteRoleData as xH, type DeleteRoleErrors as xI, type DeleteRoleError as xJ, type DeleteRoleResponses as xK, type DeleteRoleResponse as xL, type GetRoleData as xM, type GetRoleErrors as xN, type GetRoleError as xO, type GetRoleResponses as xP, type GetRoleResponse as xQ, type UpdateRoleData as xR, type UpdateRoleErrors as xS, type UpdateRoleError as xT, type UpdateRoleResponses as xU, type UpdateRoleResponse as xV, type SearchClientsForRoleData as xW, type SearchClientsForRoleErrors as xX, type SearchClientsForRoleError as xY, type SearchClientsForRoleResponses as xZ, type SearchClientsForRoleResponse as x_, type SearchResourcesError as xa, type SearchResourcesResponses as xb, type SearchResourcesResponse as xc, type GetResourceData as xd, type GetResourceErrors as xe, type GetResourceError as xf, type GetResourceResponses as xg, type GetResourceResponse as xh, type GetResourceContentData as xi, type GetResourceContentErrors as xj, type GetResourceContentError as xk, type GetResourceContentResponses as xl, type GetResourceContentResponse as xm, type GetResourceContentBinaryData as xn, type GetResourceContentBinaryErrors as xo, type GetResourceContentBinaryError as xp, type GetResourceContentBinaryResponses as xq, type GetResourceContentBinaryResponse as xr, type DeleteResourceData as xs, type DeleteResourceErrors as xt, type DeleteResourceError as xu, type DeleteResourceResponses as xv, type DeleteResourceResponse2 as xw, type CreateRoleData as xx, type CreateRoleErrors as xy, type CreateRoleError as xz, type assignClientToTenantInput as y, type BroadcastSignalResponse as y$, type UnassignRoleFromClientErrors as y0, type UnassignRoleFromClientError as y1, type UnassignRoleFromClientResponses as y2, type UnassignRoleFromClientResponse as y3, type AssignRoleToClientData as y4, type AssignRoleToClientErrors as y5, type AssignRoleToClientError as y6, type AssignRoleToClientResponses as y7, type AssignRoleToClientResponse as y8, type SearchGroupsForRoleData as y9, type AssignRoleToMappingRuleError as yA, type AssignRoleToMappingRuleResponses as yB, type AssignRoleToMappingRuleResponse as yC, type SearchUsersForRoleData as yD, type SearchUsersForRoleErrors as yE, type SearchUsersForRoleError as yF, type SearchUsersForRoleResponses as yG, type SearchUsersForRoleResponse as yH, type UnassignRoleFromUserData as yI, type UnassignRoleFromUserErrors as yJ, type UnassignRoleFromUserError as yK, type UnassignRoleFromUserResponses as yL, type UnassignRoleFromUserResponse as yM, type AssignRoleToUserData as yN, type AssignRoleToUserErrors as yO, type AssignRoleToUserError as yP, type AssignRoleToUserResponses as yQ, type AssignRoleToUserResponse as yR, type CreateAdminUserData as yS, type CreateAdminUserErrors as yT, type CreateAdminUserError as yU, type CreateAdminUserResponses as yV, type CreateAdminUserResponse as yW, type BroadcastSignalData as yX, type BroadcastSignalErrors as yY, type BroadcastSignalError as yZ, type BroadcastSignalResponses as y_, type SearchGroupsForRoleErrors as ya, type SearchGroupsForRoleError as yb, type SearchGroupsForRoleResponses as yc, type SearchGroupsForRoleResponse as yd, type UnassignRoleFromGroupData as ye, type UnassignRoleFromGroupErrors as yf, type UnassignRoleFromGroupError as yg, type UnassignRoleFromGroupResponses as yh, type UnassignRoleFromGroupResponse as yi, type AssignRoleToGroupData as yj, type AssignRoleToGroupErrors as yk, type AssignRoleToGroupError as yl, type AssignRoleToGroupResponses as ym, type AssignRoleToGroupResponse as yn, type SearchMappingRulesForRoleData as yo, type SearchMappingRulesForRoleErrors as yp, type SearchMappingRulesForRoleError as yq, type SearchMappingRulesForRoleResponses as yr, type SearchMappingRulesForRoleResponse as ys, type UnassignRoleFromMappingRuleData as yt, type UnassignRoleFromMappingRuleErrors as yu, type UnassignRoleFromMappingRuleError as yv, type UnassignRoleFromMappingRuleResponses as yw, type UnassignRoleFromMappingRuleResponse as yx, type AssignRoleToMappingRuleData as yy, type AssignRoleToMappingRuleErrors as yz, type assignGroupToTenantInput as z, type AssignGroupToTenantResponses as z$, type GetStatusData as z0, type GetStatusErrors as z1, type GetStatusResponses as z2, type GetStatusResponse as z3, type GetUsageMetricsData as z4, type GetUsageMetricsErrors as z5, type GetUsageMetricsError as z6, type GetUsageMetricsResponses as z7, type GetUsageMetricsResponse as z8, type GetSystemConfigurationData as z9, type UpdateTenantError as zA, type UpdateTenantResponses as zB, type UpdateTenantResponse as zC, type SearchClientsForTenantData as zD, type SearchClientsForTenantResponses as zE, type SearchClientsForTenantResponse as zF, type UnassignClientFromTenantData as zG, type UnassignClientFromTenantErrors as zH, type UnassignClientFromTenantError as zI, type UnassignClientFromTenantResponses as zJ, type UnassignClientFromTenantResponse as zK, type AssignClientToTenantData as zL, type AssignClientToTenantErrors as zM, type AssignClientToTenantError as zN, type AssignClientToTenantResponses as zO, type AssignClientToTenantResponse as zP, type SearchGroupIdsForTenantData as zQ, type SearchGroupIdsForTenantResponses as zR, type SearchGroupIdsForTenantResponse as zS, type UnassignGroupFromTenantData as zT, type UnassignGroupFromTenantErrors as zU, type UnassignGroupFromTenantError as zV, type UnassignGroupFromTenantResponses as zW, type UnassignGroupFromTenantResponse as zX, type AssignGroupToTenantData as zY, type AssignGroupToTenantErrors as zZ, type AssignGroupToTenantError as z_, type GetSystemConfigurationErrors as za, type GetSystemConfigurationError as zb, type GetSystemConfigurationResponses as zc, type GetSystemConfigurationResponse as zd, type CreateTenantData as ze, type CreateTenantErrors as zf, type CreateTenantError as zg, type CreateTenantResponses as zh, type CreateTenantResponse as zi, type SearchTenantsData as zj, type SearchTenantsErrors as zk, type SearchTenantsError as zl, type SearchTenantsResponses as zm, type SearchTenantsResponse as zn, type DeleteTenantData as zo, type DeleteTenantErrors as zp, type DeleteTenantError as zq, type DeleteTenantResponses as zr, type DeleteTenantResponse as zs, type GetTenantData as zt, type GetTenantErrors as zu, type GetTenantError as zv, type GetTenantResponses as zw, type GetTenantResponse as zx, type UpdateTenantData as zy, type UpdateTenantErrors as zz };
26743
+ export { type createAdminUserInput as $, type AuthStrategy as A, type GetTopologyData as A$, type SearchClientsForTenantResponse as A0, type UnassignClientFromTenantData as A1, type UnassignClientFromTenantErrors as A2, type UnassignClientFromTenantError as A3, type UnassignClientFromTenantResponses as A4, type UnassignClientFromTenantResponse as A5, type AssignClientToTenantData as A6, type AssignClientToTenantErrors as A7, type AssignClientToTenantError as A8, type AssignClientToTenantResponses as A9, type AssignMappingRuleToTenantResponse as AA, type SearchRolesForTenantData as AB, type SearchRolesForTenantResponses as AC, type SearchRolesForTenantResponse as AD, type UnassignRoleFromTenantData as AE, type UnassignRoleFromTenantErrors as AF, type UnassignRoleFromTenantError as AG, type UnassignRoleFromTenantResponses as AH, type UnassignRoleFromTenantResponse as AI, type AssignRoleToTenantData as AJ, type AssignRoleToTenantErrors as AK, type AssignRoleToTenantError as AL, type AssignRoleToTenantResponses as AM, type AssignRoleToTenantResponse as AN, type SearchUsersForTenantData as AO, type SearchUsersForTenantResponses as AP, type SearchUsersForTenantResponse as AQ, type UnassignUserFromTenantData as AR, type UnassignUserFromTenantErrors as AS, type UnassignUserFromTenantError as AT, type UnassignUserFromTenantResponses as AU, type UnassignUserFromTenantResponse as AV, type AssignUserToTenantData as AW, type AssignUserToTenantErrors as AX, type AssignUserToTenantError as AY, type AssignUserToTenantResponses as AZ, type AssignUserToTenantResponse as A_, type AssignClientToTenantResponse as Aa, type SearchGroupIdsForTenantData as Ab, type SearchGroupIdsForTenantResponses as Ac, type SearchGroupIdsForTenantResponse as Ad, type UnassignGroupFromTenantData as Ae, type UnassignGroupFromTenantErrors as Af, type UnassignGroupFromTenantError as Ag, type UnassignGroupFromTenantResponses as Ah, type UnassignGroupFromTenantResponse as Ai, type AssignGroupToTenantData as Aj, type AssignGroupToTenantErrors as Ak, type AssignGroupToTenantError as Al, type AssignGroupToTenantResponses as Am, type AssignGroupToTenantResponse as An, type SearchMappingRulesForTenantData as Ao, type SearchMappingRulesForTenantResponses as Ap, type SearchMappingRulesForTenantResponse as Aq, type UnassignMappingRuleFromTenantData as Ar, type UnassignMappingRuleFromTenantErrors as As, type UnassignMappingRuleFromTenantError as At, type UnassignMappingRuleFromTenantResponses as Au, type UnassignMappingRuleFromTenantResponse as Av, type AssignMappingRuleToTenantData as Aw, type AssignMappingRuleToTenantErrors as Ax, type AssignMappingRuleToTenantError as Ay, type AssignMappingRuleToTenantResponses as Az, type BackpressureSeverity as B, type CompleteUserTaskResponse as B$, type GetTopologyErrors as B0, type GetTopologyError as B1, type GetTopologyResponses as B2, type GetTopologyResponse as B3, type CreateUserData as B4, type CreateUserErrors as B5, type CreateUserError as B6, type CreateUserResponses as B7, type CreateUserResponse as B8, type SearchUsersData as B9, type GetUserTaskError as BA, type GetUserTaskResponses as BB, type GetUserTaskResponse as BC, type UpdateUserTaskData as BD, type UpdateUserTaskErrors as BE, type UpdateUserTaskError as BF, type UpdateUserTaskResponses as BG, type UpdateUserTaskResponse as BH, type UnassignUserTaskData as BI, type UnassignUserTaskErrors as BJ, type UnassignUserTaskError as BK, type UnassignUserTaskResponses as BL, type UnassignUserTaskResponse as BM, type AssignUserTaskData as BN, type AssignUserTaskErrors as BO, type AssignUserTaskError as BP, type AssignUserTaskResponses as BQ, type AssignUserTaskResponse as BR, type SearchUserTaskAuditLogsData as BS, type SearchUserTaskAuditLogsErrors as BT, type SearchUserTaskAuditLogsError as BU, type SearchUserTaskAuditLogsResponses as BV, type SearchUserTaskAuditLogsResponse as BW, type CompleteUserTaskData as BX, type CompleteUserTaskErrors as BY, type CompleteUserTaskError as BZ, type CompleteUserTaskResponses as B_, type SearchUsersErrors as Ba, type SearchUsersError as Bb, type SearchUsersResponses as Bc, type SearchUsersResponse as Bd, type DeleteUserData as Be, type DeleteUserErrors as Bf, type DeleteUserError as Bg, type DeleteUserResponses as Bh, type DeleteUserResponse as Bi, type GetUserData as Bj, type GetUserErrors as Bk, type GetUserError as Bl, type GetUserResponses as Bm, type GetUserResponse as Bn, type UpdateUserData as Bo, type UpdateUserErrors as Bp, type UpdateUserError as Bq, type UpdateUserResponses as Br, type UpdateUserResponse as Bs, type SearchUserTasksData as Bt, type SearchUserTasksErrors as Bu, type SearchUserTasksError as Bv, type SearchUserTasksResponses as Bw, type SearchUserTasksResponse as Bx, type GetUserTaskData as By, type GetUserTaskErrors as Bz, CamundaClient as C, type SearchUserTaskEffectiveVariablesData as C0, type SearchUserTaskEffectiveVariablesErrors as C1, type SearchUserTaskEffectiveVariablesError as C2, type SearchUserTaskEffectiveVariablesResponses as C3, type SearchUserTaskEffectiveVariablesResponse as C4, type GetUserTaskFormData as C5, type GetUserTaskFormErrors as C6, type GetUserTaskFormError as C7, type GetUserTaskFormResponses as C8, type GetUserTaskFormResponse as C9, retryTE as CA, type TaskEither as CB, withTimeoutTE as CC, type SearchUserTaskVariablesData as Ca, type SearchUserTaskVariablesErrors as Cb, type SearchUserTaskVariablesError as Cc, type SearchUserTaskVariablesResponses as Cd, type SearchUserTaskVariablesResponse as Ce, type SearchVariablesData as Cf, type SearchVariablesErrors as Cg, type SearchVariablesError as Ch, type SearchVariablesResponses as Ci, type SearchVariablesResponse as Cj, type GetVariableData as Ck, type GetVariableErrors as Cl, type GetVariableError as Cm, type GetVariableResponses as Cn, type GetVariableResponse as Co, assertConstraint as Cp, classifyDomainError as Cq, type DomainError as Cr, type DomainErrorTag as Cs, eventuallyTE as Ct, type FnKeys as Cu, type Fpify as Cv, foldDomainError as Cw, type HttpError as Cx, type Left as Cy, type Right as Cz, type assignMappingRuleToGroupInput as D, type Either as E, type assignMappingRuleToTenantInput as F, type assignRoleToClientInput as G, type HttpRetryPolicy as H, type assignRoleToGroupInput as I, type Job as J, type assignRoleToMappingRuleInput as K, type assignRoleToTenantInput as L, type assignRoleToUserInput as M, type assignUserTaskInput as N, type OperationOptions as O, type assignUserToGroupInput as P, type assignUserToTenantInput as Q, type broadcastSignalInput as R, type SdkError as S, type TelemetryHooks as T, type cancelBatchOperationInput as U, type ValidationMode as V, type cancelProcessInstanceInput as W, type cancelProcessInstancesBatchOperationInput as X, type completeJobInput as Y, type completeUserTaskInput as Z, type correlateMessageInput as _, type CamundaOptions as a, type getGlobalTaskListenerInput as a$, type createAgentInstanceInput as a0, type createAuthorizationInput as a1, type createDeploymentInput as a2, type createDocumentInput as a3, type createDocumentLinkInput as a4, type createDocumentsInput as a5, type createElementInstanceVariablesInput as a6, type createGlobalClusterVariableInput as a7, type createGlobalTaskListenerInput as a8, type createGroupInput as a9, type getAgentInstanceConsistency as aA, type getAuditLogInput as aB, type getAuditLogConsistency as aC, type getAuthenticationInput as aD, type getAuthorizationInput as aE, type getAuthorizationConsistency as aF, type getBatchOperationInput as aG, type getBatchOperationConsistency as aH, type getDecisionDefinitionInput as aI, type getDecisionDefinitionConsistency as aJ, type getDecisionDefinitionXmlInput as aK, type getDecisionDefinitionXmlConsistency as aL, type getDecisionInstanceInput as aM, type getDecisionInstanceConsistency as aN, type getDecisionRequirementsInput as aO, type getDecisionRequirementsConsistency as aP, type getDecisionRequirementsXmlInput as aQ, type getDecisionRequirementsXmlConsistency as aR, type getDocumentInput as aS, type getElementInstanceInput as aT, type getElementInstanceConsistency as aU, type getFormByKeyInput as aV, type getFormByKeyConsistency as aW, type getGlobalClusterVariableInput as aX, type getGlobalClusterVariableConsistency as aY, type getGlobalJobStatisticsInput as aZ, type getGlobalJobStatisticsConsistency as a_, type createMappingRuleInput as aa, type createProcessInstanceInput as ab, type createRoleInput as ac, type createTenantInput as ad, type createTenantClusterVariableInput as ae, type createUserInput as af, type deleteAuthorizationInput as ag, type deleteDecisionInstanceInput as ah, type deleteDecisionInstancesBatchOperationInput as ai, type deleteDocumentInput as aj, type deleteGlobalClusterVariableInput as ak, type deleteGlobalTaskListenerInput as al, type deleteGroupInput as am, type deleteMappingRuleInput as an, type deleteProcessInstanceInput as ao, type deleteProcessInstancesBatchOperationInput as ap, type deleteResourceInput as aq, type deleteRoleInput as ar, type deleteTenantInput as as, type deleteTenantClusterVariableInput as at, type deleteUserInput as au, type evaluateConditionalsInput as av, type evaluateDecisionInput as aw, type evaluateExpressionInput as ax, type failJobInput as ay, type getAgentInstanceInput as az, type CancelablePromise as b, type getUserTaskFormInput as b$, type getGlobalTaskListenerConsistency as b0, type getGroupInput as b1, type getGroupConsistency as b2, type getIncidentInput as b3, type getIncidentConsistency as b4, type getJobErrorStatisticsInput as b5, type getJobErrorStatisticsConsistency as b6, type getJobTimeSeriesStatisticsInput as b7, type getJobTimeSeriesStatisticsConsistency as b8, type getJobTypeStatisticsInput as b9, type getProcessInstanceStatisticsByDefinitionInput as bA, type getProcessInstanceStatisticsByDefinitionConsistency as bB, type getProcessInstanceStatisticsByErrorInput as bC, type getProcessInstanceStatisticsByErrorConsistency as bD, type getResourceInput as bE, type getResourceConsistency as bF, type getResourceContentInput as bG, type getResourceContentConsistency as bH, type getResourceContentBinaryInput as bI, type getResourceContentBinaryConsistency as bJ, type getRoleInput as bK, type getRoleConsistency as bL, type getStartProcessFormInput as bM, type getStartProcessFormConsistency as bN, type getStatusInput as bO, type getSystemConfigurationInput as bP, type getTenantInput as bQ, type getTenantConsistency as bR, type getTenantClusterVariableInput as bS, type getTenantClusterVariableConsistency as bT, type getTopologyInput as bU, type getUsageMetricsInput as bV, type getUsageMetricsConsistency as bW, type getUserInput as bX, type getUserConsistency as bY, type getUserTaskInput as bZ, type getUserTaskConsistency as b_, type getJobTypeStatisticsConsistency as ba, type getJobWorkerStatisticsInput as bb, type getJobWorkerStatisticsConsistency as bc, type getLicenseInput as bd, type getMappingRuleInput as be, type getMappingRuleConsistency as bf, type getProcessDefinitionInput as bg, type getProcessDefinitionConsistency as bh, type getProcessDefinitionInstanceStatisticsInput as bi, type getProcessDefinitionInstanceStatisticsConsistency as bj, type getProcessDefinitionInstanceVersionStatisticsInput as bk, type getProcessDefinitionInstanceVersionStatisticsConsistency as bl, type getProcessDefinitionMessageSubscriptionStatisticsInput as bm, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as bn, type getProcessDefinitionStatisticsInput as bo, type getProcessDefinitionStatisticsConsistency as bp, type getProcessDefinitionXmlInput as bq, type getProcessDefinitionXmlConsistency as br, type getProcessInstanceInput as bs, type getProcessInstanceConsistency as bt, type getProcessInstanceCallHierarchyInput as bu, type getProcessInstanceCallHierarchyConsistency as bv, type getProcessInstanceSequenceFlowsInput as bw, type getProcessInstanceSequenceFlowsConsistency as bx, type getProcessInstanceStatisticsInput as by, type getProcessInstanceStatisticsConsistency as bz, createCamundaClient as c, type searchMappingRulesForRoleConsistency as c$, type getUserTaskFormConsistency as c0, type getVariableInput as c1, type getVariableConsistency as c2, type migrateProcessInstanceInput as c3, type migrateProcessInstancesBatchOperationInput as c4, type modifyProcessInstanceInput as c5, type modifyProcessInstancesBatchOperationInput as c6, type pinClockInput as c7, type publishMessageInput as c8, type resetClockInput as c9, type searchDecisionInstancesInput as cA, type searchDecisionInstancesConsistency as cB, type searchDecisionRequirementsInput as cC, type searchDecisionRequirementsConsistency as cD, type searchElementInstanceIncidentsInput as cE, type searchElementInstanceIncidentsConsistency as cF, type searchElementInstancesInput as cG, type searchElementInstancesConsistency as cH, type searchElementInstanceWaitStatesInput as cI, type searchElementInstanceWaitStatesConsistency as cJ, type searchGlobalTaskListenersInput as cK, type searchGlobalTaskListenersConsistency as cL, type searchGroupIdsForTenantInput as cM, type searchGroupIdsForTenantConsistency as cN, type searchGroupsInput as cO, type searchGroupsConsistency as cP, type searchGroupsForRoleInput as cQ, type searchGroupsForRoleConsistency as cR, type searchIncidentsInput as cS, type searchIncidentsConsistency as cT, type searchJobsInput as cU, type searchJobsConsistency as cV, type searchMappingRuleInput as cW, type searchMappingRuleConsistency as cX, type searchMappingRulesForGroupInput as cY, type searchMappingRulesForGroupConsistency as cZ, type searchMappingRulesForRoleInput as c_, type resolveIncidentInput as ca, type resolveIncidentsBatchOperationInput as cb, type resolveProcessInstanceIncidentsInput as cc, type resumeBatchOperationInput as cd, type searchAgentInstancesInput as ce, type searchAgentInstancesConsistency as cf, type searchAuditLogsInput as cg, type searchAuditLogsConsistency as ch, type searchAuthorizationsInput as ci, type searchAuthorizationsConsistency as cj, type searchBatchOperationItemsInput as ck, type searchBatchOperationItemsConsistency as cl, type searchBatchOperationsInput as cm, type searchBatchOperationsConsistency as cn, type searchClientsForGroupInput as co, type searchClientsForGroupConsistency as cp, type searchClientsForRoleInput as cq, type searchClientsForRoleConsistency as cr, type searchClientsForTenantInput as cs, type searchClientsForTenantConsistency as ct, type searchClusterVariablesInput as cu, type searchClusterVariablesConsistency as cv, type searchCorrelatedMessageSubscriptionsInput as cw, type searchCorrelatedMessageSubscriptionsConsistency as cx, type searchDecisionDefinitionsInput as cy, type searchDecisionDefinitionsConsistency as cz, type CamundaFpClient as d, type updateTenantClusterVariableInput as d$, type searchMappingRulesForTenantInput as d0, type searchMappingRulesForTenantConsistency as d1, type searchMessageSubscriptionsInput as d2, type searchMessageSubscriptionsConsistency as d3, type searchProcessDefinitionsInput as d4, type searchProcessDefinitionsConsistency as d5, type searchProcessInstanceIncidentsInput as d6, type searchProcessInstanceIncidentsConsistency as d7, type searchProcessInstancesInput as d8, type searchProcessInstancesConsistency as d9, type searchUserTaskVariablesConsistency as dA, type searchVariablesInput as dB, type searchVariablesConsistency as dC, type suspendBatchOperationInput as dD, type throwJobErrorInput as dE, type unassignClientFromGroupInput as dF, type unassignClientFromTenantInput as dG, type unassignGroupFromTenantInput as dH, type unassignMappingRuleFromGroupInput as dI, type unassignMappingRuleFromTenantInput as dJ, type unassignRoleFromClientInput as dK, type unassignRoleFromGroupInput as dL, type unassignRoleFromMappingRuleInput as dM, type unassignRoleFromTenantInput as dN, type unassignRoleFromUserInput as dO, type unassignUserFromGroupInput as dP, type unassignUserFromTenantInput as dQ, type unassignUserTaskInput as dR, type updateAgentInstanceInput as dS, type updateAuthorizationInput as dT, type updateGlobalClusterVariableInput as dU, type updateGlobalTaskListenerInput as dV, type updateGroupInput as dW, type updateJobInput as dX, type updateMappingRuleInput as dY, type updateRoleInput as dZ, type updateTenantInput as d_, type searchResourcesInput as da, type searchResourcesConsistency as db, type searchRolesInput as dc, type searchRolesConsistency as dd, type searchRolesForGroupInput as de, type searchRolesForGroupConsistency as df, type searchRolesForTenantInput as dg, type searchRolesForTenantConsistency as dh, type searchTenantsInput as di, type searchTenantsConsistency as dj, type searchUsersInput as dk, type searchUsersConsistency as dl, type searchUsersForGroupInput as dm, type searchUsersForGroupConsistency as dn, type searchUsersForRoleInput as dp, type searchUsersForRoleConsistency as dq, type searchUsersForTenantInput as dr, type searchUsersForTenantConsistency as ds, type searchUserTaskAuditLogsInput as dt, type searchUserTaskAuditLogsConsistency as du, type searchUserTaskEffectiveVariablesInput as dv, type searchUserTaskEffectiveVariablesConsistency as dw, type searchUserTasksInput as dx, type searchUserTasksConsistency as dy, type searchUserTaskVariablesInput as dz, createCamundaFpClient as e, type BatchOperationFilter as e$, type updateUserInput as e0, type updateUserTaskInput as e1, type ExtendedDeploymentResult as e2, CancelError as e3, type CamundaKey as e4, type ClientOptions as e5, type AgentInstanceSearchQuerySortRequest as e6, type AgentInstanceSearchQuery as e7, type AgentInstanceFilter as e8, type AgentInstanceSearchQueryResult as e9, type EntityTypeFilterProperty as eA, type AdvancedEntityTypeFilter as eB, type OperationTypeFilterProperty as eC, type AdvancedOperationTypeFilter as eD, type CategoryFilterProperty as eE, type AdvancedCategoryFilter as eF, type AuditLogResultFilterProperty as eG, type AdvancedResultFilter as eH, type AuditLogActorTypeFilterProperty as eI, type AdvancedActorTypeFilter as eJ, type CamundaUserResult as eK, type AuthorizationIdBasedRequest as eL, type AuthorizationPropertyBasedRequest as eM, type AuthorizationRequest as eN, type AuthorizationSearchQuerySortRequest as eO, type AuthorizationSearchQuery as eP, type AuthorizationFilter as eQ, type AuthorizationResult as eR, type AuthorizationSearchResult as eS, type AuthorizationCreateResult as eT, PermissionTypeEnum as eU, ResourceTypeEnum as eV, OwnerTypeEnum as eW, AuthorizationKey as eX, type BatchOperationCreatedResult as eY, type BatchOperationSearchQuerySortRequest as eZ, type BatchOperationSearchQuery as e_, type AgentInstanceResult as ea, type AgentInstanceDefinition as eb, type AgentTool as ec, type AgentInstanceMetrics as ed, type AgentInstanceLimits as ee, AgentInstanceStatusEnum as ef, AgentInstanceUpdateStatusEnum as eg, type AgentInstanceCreationRequest as eh, type AgentInstanceCreationResult as ei, type AgentInstanceMetricsDelta as ej, type AgentInstanceUpdateRequest as ek, type AgentInstanceStatusFilterProperty as el, type AdvancedAgentInstanceStatusFilter as em, type AuditLogResult as en, type AuditLogSearchQuerySortRequest as eo, type AuditLogSearchQueryRequest as ep, type AuditLogFilter as eq, type AuditLogSearchQueryResult as er, AuditLogEntityKey as es, AuditLogEntityTypeEnum as et, AuditLogOperationTypeEnum as eu, AuditLogActorTypeEnum as ev, AuditLogResultEnum as ew, AuditLogCategoryEnum as ex, type AuditLogEntityKeyFilterProperty as ey, type AdvancedAuditLogEntityKeyFilter as ez, isRight as f, type DecisionInstanceGetQueryResult as f$, type BatchOperationSearchQueryResult as f0, type BatchOperationResponse as f1, type BatchOperationError as f2, type BatchOperationItemSearchQuerySortRequest as f3, type BatchOperationItemSearchQuery as f4, type BatchOperationItemFilter as f5, type BatchOperationItemSearchQueryResult as f6, type BatchOperationItemResponse as f7, type DecisionInstanceDeletionBatchOperationRequest as f8, type ProcessInstanceCancellationBatchOperationRequest as f9, type AdvancedClusterVariableScopeFilter as fA, type ClusterVariableSearchQueryResult as fB, type TopologyResponse as fC, type BrokerInfo as fD, type Partition as fE, type ConditionalEvaluationInstruction as fF, type EvaluateConditionalResult as fG, ConditionalEvaluationKey as fH, type ProcessInstanceReference as fI, StartCursor as fJ, EndCursor as fK, type DecisionDefinitionSearchQuerySortRequest as fL, type DecisionDefinitionSearchQuery as fM, type DecisionDefinitionFilter as fN, type DecisionDefinitionSearchQueryResult as fO, type DecisionDefinitionResult as fP, type DecisionEvaluationInstruction as fQ, type DecisionEvaluationById as fR, type DecisionEvaluationByKey as fS, type EvaluateDecisionResult as fT, type EvaluatedDecisionResult as fU, type DecisionInstanceSearchQuerySortRequest as fV, type DecisionInstanceSearchQuery as fW, type DecisionInstanceFilter as fX, type DeleteDecisionInstanceRequest as fY, type DecisionInstanceSearchQueryResult as fZ, type DecisionInstanceResult as f_, type ProcessInstanceIncidentResolutionBatchOperationRequest as fa, type ProcessInstanceDeletionBatchOperationRequest as fb, type ProcessInstanceMigrationBatchOperationRequest as fc, type ProcessInstanceMigrationBatchOperationPlan as fd, type ProcessInstanceModificationBatchOperationRequest as fe, type ProcessInstanceModificationMoveBatchOperationInstruction as ff, BatchOperationItemStateEnum as fg, BatchOperationStateEnum as fh, BatchOperationTypeEnum as fi, type BatchOperationTypeFilterProperty as fj, type AdvancedBatchOperationTypeFilter as fk, type BatchOperationStateFilterProperty as fl, type AdvancedBatchOperationStateFilter as fm, type BatchOperationItemStateFilterProperty as fn, type AdvancedBatchOperationItemStateFilter as fo, type ClockPinRequest as fp, ClusterVariableScopeEnum as fq, type CreateClusterVariableRequest as fr, type UpdateClusterVariableRequest as fs, type ClusterVariableResult as ft, type ClusterVariableSearchResult as fu, type ClusterVariableResultBase as fv, type ClusterVariableSearchQueryRequest as fw, type ClusterVariableSearchQuerySortRequest as fx, type ClusterVariableSearchQueryFilterRequest as fy, type ClusterVariableScopeFilterProperty as fz, CamundaValidationError as g, type ExpressionEvaluationRequest as g$, type EvaluatedDecisionInputItem as g0, type EvaluatedDecisionOutputItem as g1, type MatchedDecisionRuleItem as g2, DecisionDefinitionTypeEnum as g3, DecisionInstanceStateEnum as g4, type AdvancedDecisionInstanceStateFilter as g5, type DecisionInstanceStateFilterProperty as g6, type DecisionRequirementsSearchQuerySortRequest as g7, type DecisionRequirementsSearchQuery as g8, type DecisionRequirementsFilter as g9, type DocumentMetadataResponse as gA, type DocumentLinkRequest as gB, type DocumentLink as gC, DocumentId as gD, type ElementInstanceSearchQuerySortRequest as gE, type ElementInstanceSearchQuery as gF, type ElementInstanceFilter as gG, type ElementInstanceFilterFields as gH, type ElementInstanceStateFilterProperty as gI, type AdvancedElementInstanceStateFilter as gJ, type ElementInstanceSearchQueryResult as gK, type ElementInstanceResult as gL, ElementInstanceStateEnum as gM, type AdHocSubProcessActivateActivitiesInstruction as gN, type ElementInstanceWaitStateQuery as gO, type ElementInstanceWaitStateFilter as gP, type WaitStateElementTypeFilterProperty as gQ, type AdvancedWaitStateElementTypeFilter as gR, WaitStateElementTypeEnum as gS, type WaitStateTypeFilterProperty as gT, type AdvancedWaitStateTypeFilter as gU, type ElementInstanceWaitStateQueryResult as gV, type ElementInstanceWaitStateResult as gW, WaitStateTypeEnum as gX, type JobWaitStateDetails as gY, type MessageWaitStateDetails as gZ, type AdHocSubProcessActivateActivityReference as g_, type DecisionRequirementsSearchQueryResult as ga, type DecisionRequirementsResult as gb, type DeploymentResult as gc, type DeploymentMetadataResult as gd, type DeploymentProcessResult as ge, type DeploymentDecisionResult as gf, type DeploymentDecisionRequirementsResult as gg, type DeploymentFormResult as gh, type DeploymentResourceResult as gi, type DeleteResourceRequest as gj, type DeleteResourceResponse as gk, type ResourceResult as gl, DeploymentKey as gm, type ResourceKey as gn, type DeploymentKeyFilterProperty as go, type AdvancedDeploymentKeyFilter as gp, type ResourceKeyFilterProperty as gq, type AdvancedResourceKeyFilter as gr, type ResourceSearchQuerySortRequest as gs, type ResourceSearchQuery as gt, type ResourceFilter as gu, type ResourceSearchQueryResult as gv, type DocumentReference as gw, type DocumentCreationFailureDetail as gx, type DocumentCreationBatchResponse as gy, type DocumentMetadata as gz, EventualConsistencyTimeoutError as h, type AdvancedElementIdFilter as h$, type ExpressionEvaluationResult as h0, type ExpressionEvaluationWarningItem as h1, type LikeFilter as h2, type BasicStringFilter as h3, type AdvancedStringFilter as h4, type BasicStringFilterProperty as h5, type StringFilterProperty as h6, type AdvancedIntegerFilter as h7, type IntegerFilterProperty as h8, type AdvancedDateTimeFilter as h9, type GroupSearchQueryResult as hA, type GroupUserResult as hB, type GroupUserSearchResult as hC, type GroupUserSearchQueryRequest as hD, type GroupUserSearchQuerySortRequest as hE, type GroupClientResult as hF, type GroupClientSearchResult as hG, type GroupClientSearchQueryRequest as hH, type GroupMappingRuleSearchResult as hI, type GroupRoleSearchResult as hJ, type GroupClientSearchQuerySortRequest as hK, ProcessDefinitionId as hL, ElementId as hM, FormId as hN, DecisionDefinitionId as hO, GlobalListenerId as hP, TenantId as hQ, Username as hR, RoleId as hS, GroupId as hT, MappingRuleId as hU, ClientId as hV, ClusterVariableName as hW, Tag as hX, type TagSet as hY, BusinessId as hZ, type ElementIdFilterProperty as h_, type DateTimeFilterProperty as ha, type FormResult as hb, GlobalListenerSourceEnum as hc, GlobalTaskListenerEventTypeEnum as hd, type GlobalListenerBase as he, type GlobalTaskListenerBase as hf, type GlobalTaskListenerEventTypes as hg, type CreateGlobalTaskListenerRequest as hh, type UpdateGlobalTaskListenerRequest as hi, type GlobalTaskListenerResult as hj, type GlobalTaskListenerSearchQueryRequest as hk, type GlobalTaskListenerSearchQuerySortRequest as hl, type GlobalTaskListenerSearchQueryFilterRequest as hm, type GlobalListenerSourceFilterProperty as hn, type AdvancedGlobalListenerSourceFilter as ho, type GlobalTaskListenerEventTypeFilterProperty as hp, type AdvancedGlobalTaskListenerEventTypeFilter as hq, type GlobalTaskListenerSearchQueryResult as hr, type GroupCreateRequest as hs, type GroupCreateResult as ht, type GroupUpdateRequest as hu, type GroupUpdateResult as hv, type GroupResult as hw, type GroupSearchQuerySortRequest as hx, type GroupSearchQueryRequest as hy, type GroupFilter as hz, isLeft as i, JobStateEnum as i$, type ProcessDefinitionIdFilterProperty as i0, type AdvancedProcessDefinitionIdFilter as i1, type IncidentSearchQuery as i2, type IncidentFilter as i3, type IncidentErrorTypeFilterProperty as i4, type AdvancedIncidentErrorTypeFilter as i5, IncidentErrorTypeEnum as i6, type IncidentStateFilterProperty as i7, type AdvancedIncidentStateFilter as i8, IncidentStateEnum as i9, type JobTimeSeriesStatisticsFilter as iA, type JobTimeSeriesStatisticsQueryResult as iB, type JobTimeSeriesStatisticsItem as iC, type JobErrorStatisticsQuery as iD, type JobErrorStatisticsFilter as iE, type JobErrorStatisticsQueryResult as iF, type JobErrorStatisticsItem as iG, type JobActivationRequest as iH, type JobActivationResult as iI, type ActivatedJobResult$1 as iJ, type UserTaskProperties as iK, type JobSearchQuery as iL, type JobSearchQuerySortRequest as iM, type JobFilter as iN, type JobSearchQueryResult as iO, type JobSearchResult as iP, type JobFailRequest as iQ, type JobErrorRequest$1 as iR, type JobCompletionRequest as iS, type JobResult as iT, type JobResultUserTask as iU, type JobResultCorrections as iV, type JobResultAdHocSubProcess as iW, type JobResultActivateElement as iX, type JobUpdateRequest as iY, type JobChangeset as iZ, TenantFilterEnum as i_, type IncidentSearchQuerySortRequest as ia, type IncidentSearchQueryResult as ib, type IncidentResult as ic, type IncidentResolutionRequest as id, type IncidentProcessInstanceStatisticsByErrorQuery as ie, type IncidentProcessInstanceStatisticsByErrorQueryResult as ig, type IncidentProcessInstanceStatisticsByErrorResult as ih, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as ii, type IncidentProcessInstanceStatisticsByDefinitionQuery as ij, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as ik, type IncidentProcessInstanceStatisticsByDefinitionResult as il, type IncidentProcessInstanceStatisticsByDefinitionFilter as im, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as io, type GlobalJobStatisticsQueryResult as ip, type StatusMetric as iq, type JobTypeStatisticsQuery as ir, type JobTypeStatisticsFilter as is, type JobTypeStatisticsQueryResult as it, type JobTypeStatisticsItem as iu, type JobWorkerStatisticsQuery as iv, type JobWorkerStatisticsFilter as iw, type JobWorkerStatisticsQueryResult as ix, type JobWorkerStatisticsItem as iy, type JobTimeSeriesStatisticsQuery as iz, isSdkError as j, type MappingRuleSearchQueryRequest as j$, JobKindEnum as j0, JobListenerEventTypeEnum as j1, type JobKindFilterProperty as j2, type AdvancedJobKindFilter as j3, type JobListenerEventTypeFilterProperty as j4, type AdvancedJobListenerEventTypeFilter as j5, type JobStateFilterProperty as j6, type AdvancedJobStateFilter as j7, type LongKey as j8, ProcessInstanceKey as j9, type AdvancedDecisionDefinitionKeyFilter as jA, type ScopeKeyFilterProperty as jB, type AdvancedScopeKeyFilter as jC, type VariableKeyFilterProperty as jD, type AdvancedVariableKeyFilter as jE, type DecisionEvaluationInstanceKeyFilterProperty as jF, type AdvancedDecisionEvaluationInstanceKeyFilter as jG, type AgentInstanceKeyFilterProperty as jH, type AdvancedAgentInstanceKeyFilter as jI, type AuditLogKeyFilterProperty as jJ, type AdvancedAuditLogKeyFilter as jK, type FormKeyFilterProperty as jL, type AdvancedFormKeyFilter as jM, type DecisionEvaluationKeyFilterProperty as jN, type AdvancedDecisionEvaluationKeyFilter as jO, type DecisionRequirementsKeyFilterProperty as jP, type AdvancedDecisionRequirementsKeyFilter as jQ, type LicenseResponse as jR, type MappingRuleCreateUpdateRequest as jS, type MappingRuleCreateRequest as jT, type MappingRuleUpdateRequest as jU, type MappingRuleCreateUpdateResult as jV, type MappingRuleCreateResult as jW, type MappingRuleUpdateResult as jX, type MappingRuleSearchQueryResult as jY, type MappingRuleResult as jZ, type MappingRuleSearchQuerySortRequest as j_, ProcessDefinitionKey as ja, ElementInstanceKey as jb, UserTaskKey as jc, FormKey as jd, VariableKey as je, type ScopeKey as jf, IncidentKey as jg, JobKey as jh, DecisionDefinitionKey as ji, DecisionEvaluationInstanceKey as jj, DecisionEvaluationKey as jk, DecisionRequirementsKey as jl, DecisionInstanceKey as jm, BatchOperationKey as jn, type OperationReference as jo, AgentInstanceKey as jp, AuditLogKey as jq, type ProcessDefinitionKeyFilterProperty as jr, type AdvancedProcessDefinitionKeyFilter as js, type ProcessInstanceKeyFilterProperty as jt, type AdvancedProcessInstanceKeyFilter as ju, type ElementInstanceKeyFilterProperty as jv, type AdvancedElementInstanceKeyFilter as jw, type JobKeyFilterProperty as jx, type AdvancedJobKeyFilter as jy, type DecisionDefinitionKeyFilterProperty as jz, type EnrichedActivatedJob as k, type ProcessInstanceCallHierarchyEntry as k$, type MappingRuleFilter as k0, type MessageCorrelationRequest as k1, type MessageCorrelationResult as k2, type MessagePublicationRequest as k3, type MessagePublicationResult as k4, type MessageSubscriptionSearchQueryResult as k5, type MessageSubscriptionResult as k6, type MessageSubscriptionSearchQuerySortRequest as k7, type MessageSubscriptionSearchQuery as k8, type MessageSubscriptionFilter as k9, type ProcessDefinitionMessageSubscriptionStatisticsResult as kA, type ProcessDefinitionInstanceStatisticsQuery as kB, type ProcessDefinitionInstanceStatisticsQueryResult as kC, type ProcessDefinitionInstanceStatisticsResult as kD, type ProcessDefinitionInstanceStatisticsQuerySortRequest as kE, type ProcessDefinitionInstanceVersionStatisticsQuery as kF, type ProcessDefinitionInstanceVersionStatisticsFilter as kG, type ProcessDefinitionInstanceVersionStatisticsQueryResult as kH, type ProcessDefinitionInstanceVersionStatisticsResult as kI, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as kJ, type ProcessInstanceCreationInstruction as kK, type ProcessInstanceCreationInstructionById as kL, type ProcessInstanceCreationInstructionByKey as kM, type ProcessInstanceCreationStartInstruction as kN, type ProcessInstanceCreationRuntimeInstruction as kO, type ProcessInstanceCreationTerminateInstruction as kP, type CreateProcessInstanceResult as kQ, type ProcessInstanceSearchQuerySortRequest as kR, type ProcessInstanceSearchQuery as kS, type BaseProcessInstanceFilterFields as kT, type ProcessDefinitionStatisticsFilter as kU, type ProcessInstanceFilterFields as kV, type ProcessInstanceFilter as kW, type ProcessInstanceSearchQueryResult as kX, type ProcessInstanceResult as kY, type CancelProcessInstanceRequest as kZ, type DeleteProcessInstanceRequest as k_, type CorrelatedMessageSubscriptionSearchQueryResult as ka, type CorrelatedMessageSubscriptionResult as kb, type CorrelatedMessageSubscriptionSearchQuery as kc, type CorrelatedMessageSubscriptionSearchQuerySortRequest as kd, MessageSubscriptionStateEnum as ke, MessageSubscriptionTypeEnum as kf, type CorrelatedMessageSubscriptionFilter as kg, type MessageSubscriptionTypeFilterProperty as kh, type AdvancedMessageSubscriptionTypeFilter as ki, type MessageSubscriptionStateFilterProperty as kj, type AdvancedMessageSubscriptionStateFilter as kk, type AdvancedMessageSubscriptionKeyFilter as kl, type MessageSubscriptionKeyFilterProperty as km, MessageSubscriptionKey as kn, MessageKey as ko, type ProblemDetail as kp, type ProcessDefinitionSearchQuerySortRequest as kq, type ProcessDefinitionSearchQuery as kr, type ProcessDefinitionFilter as ks, type ProcessDefinitionSearchQueryResult as kt, type ProcessDefinitionResult as ku, type ProcessDefinitionElementStatisticsQuery as kv, type ProcessDefinitionElementStatisticsQueryResult as kw, type ProcessElementStatisticsResult as kx, type ProcessDefinitionMessageSubscriptionStatisticsQuery as ky, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as kz, JobActionReceipt as l, type CloudConfigurationResponse as l$, type ProcessInstanceSequenceFlowsQueryResult as l0, type ProcessInstanceSequenceFlowResult as l1, type ProcessInstanceElementStatisticsQueryResult as l2, type ProcessInstanceMigrationInstruction as l3, type MigrateProcessInstanceMappingInstruction as l4, type ProcessInstanceModificationInstruction as l5, type ProcessInstanceModificationActivateInstruction as l6, type ModifyProcessInstanceVariableInstruction as l7, type ProcessInstanceModificationMoveInstruction as l8, type SourceElementInstruction as l9, type RoleClientSearchResult as lA, type RoleClientSearchQueryRequest as lB, type RoleClientSearchQuerySortRequest as lC, type RoleGroupResult as lD, type RoleGroupSearchResult as lE, type RoleGroupSearchQueryRequest as lF, type RoleMappingRuleSearchResult as lG, type RoleGroupSearchQuerySortRequest as lH, type SearchQueryRequest as lI, type SearchQueryPageRequest as lJ, type LimitPagination as lK, type OffsetPagination as lL, type CursorForwardPagination as lM, type CursorBackwardPagination as lN, type SearchQueryResponse as lO, SortOrderEnum as lP, type SearchQueryPageResponse as lQ, type SignalBroadcastRequest as lR, type SignalBroadcastResult as lS, SignalKey as lT, type UsageMetricsResponse as lU, type UsageMetricsResponseItem as lV, type SystemConfigurationResponse as lW, type JobMetricsConfigurationResponse as lX, type ComponentsConfigurationResponse as lY, type DeploymentConfigurationResponse as lZ, type AuthenticationConfigurationResponse as l_, type SourceElementIdInstruction as la, type SourceElementInstanceKeyInstruction as lb, type AncestorScopeInstruction as lc, type DirectAncestorKeyInstruction as ld, type InferredAncestorKeyInstruction as le, type UseSourceParentKeyInstruction as lf, type ProcessInstanceModificationTerminateInstruction as lg, type ProcessInstanceModificationTerminateByIdInstruction as lh, type ProcessInstanceModificationTerminateByKeyInstruction as li, ProcessInstanceStateEnum as lj, type AdvancedProcessInstanceStateFilter as lk, type ProcessInstanceStateFilterProperty as ll, type RoleCreateRequest as lm, type RoleCreateResult as ln, type RoleUpdateRequest as lo, type RoleUpdateResult as lp, type RoleResult as lq, type RoleSearchQuerySortRequest as lr, type RoleSearchQueryRequest as ls, type RoleFilter as lt, type RoleSearchQueryResult as lu, type RoleUserResult as lv, type RoleUserSearchResult as lw, type RoleUserSearchQueryRequest as lx, type RoleUserSearchQuerySortRequest as ly, type RoleClientResult as lz, JobWorker as m, type EntityTypeExactMatch as m$, type WebappComponent as m0, type CloudStage as m1, type TenantCreateRequest as m2, type TenantCreateResult as m3, type TenantUpdateRequest as m4, type TenantUpdateResult as m5, type TenantResult as m6, type TenantSearchQuerySortRequest as m7, type TenantSearchQueryRequest as m8, type TenantFilter as m9, type UserTaskEffectiveVariableSearchQueryRequest as mA, type UserTaskAuditLogSearchQueryRequest as mB, UserTaskStateEnum as mC, type UserTaskVariableFilter as mD, type UserTaskStateFilterProperty as mE, type AdvancedUserTaskStateFilter as mF, type UserTaskAuditLogFilter as mG, type UserRequest as mH, type UserCreateResult as mI, type UserUpdateRequest as mJ, type UserUpdateResult as mK, type UserResult as mL, type UserSearchQuerySortRequest as mM, type UserSearchQueryRequest as mN, type UserFilter as mO, type UserSearchResult as mP, type VariableSearchQuerySortRequest as mQ, type VariableSearchQuery as mR, type VariableFilter as mS, type VariableSearchQueryResult as mT, type VariableSearchResult as mU, type VariableResult as mV, type VariableResultBase as mW, type VariableValueFilterProperty as mX, type SetVariableRequest as mY, type AgentInstanceStatusExactMatch as mZ, type AuditLogEntityKeyExactMatch as m_, type TenantSearchQueryResult as ma, type TenantUserResult as mb, type TenantUserSearchResult as mc, type TenantUserSearchQueryRequest as md, type TenantUserSearchQuerySortRequest as me, type TenantClientResult as mf, type TenantClientSearchResult as mg, type TenantClientSearchQueryRequest as mh, type TenantClientSearchQuerySortRequest as mi, type TenantGroupResult as mj, type TenantGroupSearchResult as mk, type TenantGroupSearchQueryRequest as ml, type TenantRoleSearchResult as mm, type TenantMappingRuleSearchResult as mn, type TenantGroupSearchQuerySortRequest as mo, type UserTaskSearchQuerySortRequest as mp, type UserTaskSearchQuery as mq, type UserTaskFilter as mr, type UserTaskSearchQueryResult as ms, type UserTaskResult as mt, type UserTaskCompletionRequest as mu, type UserTaskAssignmentRequest as mv, type UserTaskUpdateRequest as mw, type Changeset as mx, type UserTaskVariableSearchQuerySortRequest as my, type UserTaskVariableSearchQueryRequest as mz, type JobWorkerConfig as n, type SearchAuditLogsError as n$, type OperationTypeExactMatch as n0, type CategoryExactMatch as n1, type AuditLogResultExactMatch as n2, type AuditLogActorTypeExactMatch as n3, type BatchOperationTypeExactMatch as n4, type BatchOperationStateExactMatch as n5, type BatchOperationItemStateExactMatch as n6, type ClusterVariableScopeExactMatch as n7, type DecisionInstanceStateExactMatch as n8, type DeploymentKeyExactMatch as n9, type MessageSubscriptionTypeExactMatch as nA, type MessageSubscriptionStateExactMatch as nB, type MessageSubscriptionKeyExactMatch as nC, type ProcessInstanceStateExactMatch as nD, type UserTaskStateExactMatch as nE, type CreateAgentInstanceData as nF, type CreateAgentInstanceErrors as nG, type CreateAgentInstanceError as nH, type CreateAgentInstanceResponses as nI, type CreateAgentInstanceResponse as nJ, type GetAgentInstanceData as nK, type GetAgentInstanceErrors as nL, type GetAgentInstanceError as nM, type GetAgentInstanceResponses as nN, type GetAgentInstanceResponse as nO, type UpdateAgentInstanceData as nP, type UpdateAgentInstanceErrors as nQ, type UpdateAgentInstanceError as nR, type UpdateAgentInstanceResponses as nS, type UpdateAgentInstanceResponse as nT, type SearchAgentInstancesData as nU, type SearchAgentInstancesErrors as nV, type SearchAgentInstancesError as nW, type SearchAgentInstancesResponses as nX, type SearchAgentInstancesResponse as nY, type SearchAuditLogsData as nZ, type SearchAuditLogsErrors as n_, type ResourceKeyExactMatch as na, type ElementInstanceStateExactMatch as nb, type WaitStateElementTypeExactMatch as nc, type WaitStateTypeExactMatch as nd, type GlobalListenerSourceExactMatch as ne, type GlobalTaskListenerEventTypeExactMatch as nf, type ElementIdExactMatch as ng, type ProcessDefinitionIdExactMatch as nh, type IncidentErrorTypeExactMatch as ni, type IncidentStateExactMatch as nj, type JobKindExactMatch as nk, type JobListenerEventTypeExactMatch as nl, type JobStateExactMatch as nm, type ProcessDefinitionKeyExactMatch as nn, type ProcessInstanceKeyExactMatch as no, type ElementInstanceKeyExactMatch as np, type JobKeyExactMatch as nq, type DecisionDefinitionKeyExactMatch as nr, type ScopeKeyExactMatch as ns, type VariableKeyExactMatch as nt, type DecisionEvaluationInstanceKeyExactMatch as nu, type AgentInstanceKeyExactMatch as nv, type AuditLogKeyExactMatch as nw, type FormKeyExactMatch as nx, type DecisionEvaluationKeyExactMatch as ny, type DecisionRequirementsKeyExactMatch as nz, type SupportLogger as o, type SuspendBatchOperationErrors as o$, type SearchAuditLogsResponses as o0, type SearchAuditLogsResponse as o1, type GetAuditLogData as o2, type GetAuditLogErrors as o3, type GetAuditLogError as o4, type GetAuditLogResponses as o5, type GetAuditLogResponse as o6, type GetAuthenticationData as o7, type GetAuthenticationErrors as o8, type GetAuthenticationError as o9, type UpdateAuthorizationResponse as oA, type SearchBatchOperationItemsData as oB, type SearchBatchOperationItemsErrors as oC, type SearchBatchOperationItemsError as oD, type SearchBatchOperationItemsResponses as oE, type SearchBatchOperationItemsResponse as oF, type SearchBatchOperationsData as oG, type SearchBatchOperationsErrors as oH, type SearchBatchOperationsError as oI, type SearchBatchOperationsResponses as oJ, type SearchBatchOperationsResponse as oK, type GetBatchOperationData as oL, type GetBatchOperationErrors as oM, type GetBatchOperationError as oN, type GetBatchOperationResponses as oO, type GetBatchOperationResponse as oP, type CancelBatchOperationData as oQ, type CancelBatchOperationErrors as oR, type CancelBatchOperationError as oS, type CancelBatchOperationResponses as oT, type CancelBatchOperationResponse as oU, type ResumeBatchOperationData as oV, type ResumeBatchOperationErrors as oW, type ResumeBatchOperationError as oX, type ResumeBatchOperationResponses as oY, type ResumeBatchOperationResponse as oZ, type SuspendBatchOperationData as o_, type GetAuthenticationResponses as oa, type GetAuthenticationResponse as ob, type CreateAuthorizationData as oc, type CreateAuthorizationErrors as od, type CreateAuthorizationError as oe, type CreateAuthorizationResponses as of, type CreateAuthorizationResponse as og, type SearchAuthorizationsData as oh, type SearchAuthorizationsErrors as oi, type SearchAuthorizationsError as oj, type SearchAuthorizationsResponses as ok, type SearchAuthorizationsResponse as ol, type DeleteAuthorizationData as om, type DeleteAuthorizationErrors as on, type DeleteAuthorizationError as oo, type DeleteAuthorizationResponses as op, type DeleteAuthorizationResponse as oq, type GetAuthorizationData as or, type GetAuthorizationErrors as os, type GetAuthorizationError as ot, type GetAuthorizationResponses as ou, type GetAuthorizationResponse as ov, type UpdateAuthorizationData as ow, type UpdateAuthorizationErrors as ox, type UpdateAuthorizationError as oy, type UpdateAuthorizationResponses as oz, type ThreadedJob as p, type SearchCorrelatedMessageSubscriptionsData as p$, type SuspendBatchOperationError as p0, type SuspendBatchOperationResponses as p1, type SuspendBatchOperationResponse as p2, type PinClockData as p3, type PinClockErrors as p4, type PinClockError as p5, type PinClockResponses as p6, type PinClockResponse as p7, type ResetClockData as p8, type ResetClockErrors as p9, type SearchClusterVariablesResponses as pA, type SearchClusterVariablesResponse as pB, type CreateTenantClusterVariableData as pC, type CreateTenantClusterVariableErrors as pD, type CreateTenantClusterVariableError as pE, type CreateTenantClusterVariableResponses as pF, type CreateTenantClusterVariableResponse as pG, type DeleteTenantClusterVariableData as pH, type DeleteTenantClusterVariableErrors as pI, type DeleteTenantClusterVariableError as pJ, type DeleteTenantClusterVariableResponses as pK, type DeleteTenantClusterVariableResponse as pL, type GetTenantClusterVariableData as pM, type GetTenantClusterVariableErrors as pN, type GetTenantClusterVariableError as pO, type GetTenantClusterVariableResponses as pP, type GetTenantClusterVariableResponse as pQ, type UpdateTenantClusterVariableData as pR, type UpdateTenantClusterVariableErrors as pS, type UpdateTenantClusterVariableError as pT, type UpdateTenantClusterVariableResponses as pU, type UpdateTenantClusterVariableResponse as pV, type EvaluateConditionalsData as pW, type EvaluateConditionalsErrors as pX, type EvaluateConditionalsError as pY, type EvaluateConditionalsResponses as pZ, type EvaluateConditionalsResponse as p_, type ResetClockError as pa, type ResetClockResponses as pb, type ResetClockResponse as pc, type CreateGlobalClusterVariableData as pd, type CreateGlobalClusterVariableErrors as pe, type CreateGlobalClusterVariableError as pf, type CreateGlobalClusterVariableResponses as pg, type CreateGlobalClusterVariableResponse as ph, type DeleteGlobalClusterVariableData as pi, type DeleteGlobalClusterVariableErrors as pj, type DeleteGlobalClusterVariableError as pk, type DeleteGlobalClusterVariableResponses as pl, type DeleteGlobalClusterVariableResponse as pm, type GetGlobalClusterVariableData as pn, type GetGlobalClusterVariableErrors as po, type GetGlobalClusterVariableError as pp, type GetGlobalClusterVariableResponses as pq, type GetGlobalClusterVariableResponse as pr, type UpdateGlobalClusterVariableData as ps, type UpdateGlobalClusterVariableErrors as pt, type UpdateGlobalClusterVariableError as pu, type UpdateGlobalClusterVariableResponses as pv, type UpdateGlobalClusterVariableResponse as pw, type SearchClusterVariablesData as px, type SearchClusterVariablesErrors as py, type SearchClusterVariablesError as pz, type ThreadedJobHandler as q, type CreateDeploymentResponse as q$, type SearchCorrelatedMessageSubscriptionsErrors as q0, type SearchCorrelatedMessageSubscriptionsError as q1, type SearchCorrelatedMessageSubscriptionsResponses as q2, type SearchCorrelatedMessageSubscriptionsResponse as q3, type EvaluateDecisionData as q4, type EvaluateDecisionErrors as q5, type EvaluateDecisionError as q6, type EvaluateDecisionResponses as q7, type EvaluateDecisionResponse as q8, type SearchDecisionDefinitionsData as q9, type DeleteDecisionInstanceError as qA, type DeleteDecisionInstanceResponses as qB, type DeleteDecisionInstanceResponse as qC, type DeleteDecisionInstancesBatchOperationData as qD, type DeleteDecisionInstancesBatchOperationErrors as qE, type DeleteDecisionInstancesBatchOperationError as qF, type DeleteDecisionInstancesBatchOperationResponses as qG, type DeleteDecisionInstancesBatchOperationResponse as qH, type SearchDecisionRequirementsData as qI, type SearchDecisionRequirementsErrors as qJ, type SearchDecisionRequirementsError as qK, type SearchDecisionRequirementsResponses as qL, type SearchDecisionRequirementsResponse as qM, type GetDecisionRequirementsData as qN, type GetDecisionRequirementsErrors as qO, type GetDecisionRequirementsError as qP, type GetDecisionRequirementsResponses as qQ, type GetDecisionRequirementsResponse as qR, type GetDecisionRequirementsXmlData as qS, type GetDecisionRequirementsXmlErrors as qT, type GetDecisionRequirementsXmlError as qU, type GetDecisionRequirementsXmlResponses as qV, type GetDecisionRequirementsXmlResponse as qW, type CreateDeploymentData as qX, type CreateDeploymentErrors as qY, type CreateDeploymentError as qZ, type CreateDeploymentResponses as q_, type SearchDecisionDefinitionsErrors as qa, type SearchDecisionDefinitionsError as qb, type SearchDecisionDefinitionsResponses as qc, type SearchDecisionDefinitionsResponse as qd, type GetDecisionDefinitionData as qe, type GetDecisionDefinitionErrors as qf, type GetDecisionDefinitionError as qg, type GetDecisionDefinitionResponses as qh, type GetDecisionDefinitionResponse as qi, type GetDecisionDefinitionXmlData as qj, type GetDecisionDefinitionXmlErrors as qk, type GetDecisionDefinitionXmlError as ql, type GetDecisionDefinitionXmlResponses as qm, type GetDecisionDefinitionXmlResponse as qn, type SearchDecisionInstancesData as qo, type SearchDecisionInstancesErrors as qp, type SearchDecisionInstancesError as qq, type SearchDecisionInstancesResponses as qr, type SearchDecisionInstancesResponse as qs, type GetDecisionInstanceData as qt, type GetDecisionInstanceErrors as qu, type GetDecisionInstanceError as qv, type GetDecisionInstanceResponses as qw, type GetDecisionInstanceResponse as qx, type DeleteDecisionInstanceData as qy, type DeleteDecisionInstanceErrors as qz, ThreadedJobWorker as r, type GetFormByKeyResponses as r$, type CreateDocumentData as r0, type CreateDocumentErrors as r1, type CreateDocumentError as r2, type CreateDocumentResponses as r3, type CreateDocumentResponse as r4, type CreateDocumentsData as r5, type CreateDocumentsErrors as r6, type CreateDocumentsError as r7, type CreateDocumentsResponses as r8, type CreateDocumentsResponse as r9, type SearchElementInstancesErrors as rA, type SearchElementInstancesError as rB, type SearchElementInstancesResponses as rC, type SearchElementInstancesResponse as rD, type GetElementInstanceData as rE, type GetElementInstanceErrors as rF, type GetElementInstanceError as rG, type GetElementInstanceResponses as rH, type GetElementInstanceResponse as rI, type SearchElementInstanceIncidentsData as rJ, type SearchElementInstanceIncidentsErrors as rK, type SearchElementInstanceIncidentsError as rL, type SearchElementInstanceIncidentsResponses as rM, type SearchElementInstanceIncidentsResponse as rN, type CreateElementInstanceVariablesData as rO, type CreateElementInstanceVariablesErrors as rP, type CreateElementInstanceVariablesError as rQ, type CreateElementInstanceVariablesResponses as rR, type CreateElementInstanceVariablesResponse as rS, type EvaluateExpressionData as rT, type EvaluateExpressionErrors as rU, type EvaluateExpressionError as rV, type EvaluateExpressionResponses as rW, type EvaluateExpressionResponse as rX, type GetFormByKeyData as rY, type GetFormByKeyErrors as rZ, type GetFormByKeyError as r_, type DeleteDocumentData as ra, type DeleteDocumentErrors as rb, type DeleteDocumentError as rc, type DeleteDocumentResponses as rd, type DeleteDocumentResponse as re, type GetDocumentData as rf, type GetDocumentErrors as rg, type GetDocumentError as rh, type GetDocumentResponses as ri, type GetDocumentResponse as rj, type CreateDocumentLinkData as rk, type CreateDocumentLinkErrors as rl, type CreateDocumentLinkError as rm, type CreateDocumentLinkResponses as rn, type CreateDocumentLinkResponse as ro, type ActivateAdHocSubProcessActivitiesData as rp, type ActivateAdHocSubProcessActivitiesErrors as rq, type ActivateAdHocSubProcessActivitiesError as rr, type ActivateAdHocSubProcessActivitiesResponses as rs, type ActivateAdHocSubProcessActivitiesResponse as rt, type SearchElementInstanceWaitStatesData as ru, type SearchElementInstanceWaitStatesErrors as rv, type SearchElementInstanceWaitStatesError as rw, type SearchElementInstanceWaitStatesResponses as rx, type SearchElementInstanceWaitStatesResponse as ry, type SearchElementInstancesData as rz, type ThreadedJobWorkerConfig as s, type AssignClientToGroupError as s$, type GetFormByKeyResponse as s0, type CreateGlobalTaskListenerData as s1, type CreateGlobalTaskListenerErrors as s2, type CreateGlobalTaskListenerError as s3, type CreateGlobalTaskListenerResponses as s4, type CreateGlobalTaskListenerResponse as s5, type DeleteGlobalTaskListenerData as s6, type DeleteGlobalTaskListenerErrors as s7, type DeleteGlobalTaskListenerError as s8, type DeleteGlobalTaskListenerResponses as s9, type DeleteGroupData as sA, type DeleteGroupErrors as sB, type DeleteGroupError as sC, type DeleteGroupResponses as sD, type DeleteGroupResponse as sE, type GetGroupData as sF, type GetGroupErrors as sG, type GetGroupError as sH, type GetGroupResponses as sI, type GetGroupResponse as sJ, type UpdateGroupData as sK, type UpdateGroupErrors as sL, type UpdateGroupError as sM, type UpdateGroupResponses as sN, type UpdateGroupResponse as sO, type SearchClientsForGroupData as sP, type SearchClientsForGroupErrors as sQ, type SearchClientsForGroupError as sR, type SearchClientsForGroupResponses as sS, type SearchClientsForGroupResponse as sT, type UnassignClientFromGroupData as sU, type UnassignClientFromGroupErrors as sV, type UnassignClientFromGroupError as sW, type UnassignClientFromGroupResponses as sX, type UnassignClientFromGroupResponse as sY, type AssignClientToGroupData as sZ, type AssignClientToGroupErrors as s_, type DeleteGlobalTaskListenerResponse as sa, type GetGlobalTaskListenerData as sb, type GetGlobalTaskListenerErrors as sc, type GetGlobalTaskListenerError as sd, type GetGlobalTaskListenerResponses as se, type GetGlobalTaskListenerResponse as sf, type UpdateGlobalTaskListenerData as sg, type UpdateGlobalTaskListenerErrors as sh, type UpdateGlobalTaskListenerError as si, type UpdateGlobalTaskListenerResponses as sj, type UpdateGlobalTaskListenerResponse as sk, type SearchGlobalTaskListenersData as sl, type SearchGlobalTaskListenersErrors as sm, type SearchGlobalTaskListenersError as sn, type SearchGlobalTaskListenersResponses as so, type SearchGlobalTaskListenersResponse as sp, type CreateGroupData as sq, type CreateGroupErrors as sr, type CreateGroupError as ss, type CreateGroupResponses as st, type CreateGroupResponse as su, type SearchGroupsData as sv, type SearchGroupsErrors as sw, type SearchGroupsError as sx, type SearchGroupsResponses as sy, type SearchGroupsResponse as sz, ThreadPool as t, type ActivateJobsErrors as t$, type AssignClientToGroupResponses as t0, type AssignClientToGroupResponse as t1, type SearchMappingRulesForGroupData as t2, type SearchMappingRulesForGroupErrors as t3, type SearchMappingRulesForGroupError as t4, type SearchMappingRulesForGroupResponses as t5, type SearchMappingRulesForGroupResponse as t6, type UnassignMappingRuleFromGroupData as t7, type UnassignMappingRuleFromGroupErrors as t8, type UnassignMappingRuleFromGroupError as t9, type AssignUserToGroupResponse as tA, type SearchIncidentsData as tB, type SearchIncidentsErrors as tC, type SearchIncidentsError as tD, type SearchIncidentsResponses as tE, type SearchIncidentsResponse as tF, type GetIncidentData as tG, type GetIncidentErrors as tH, type GetIncidentError as tI, type GetIncidentResponses as tJ, type GetIncidentResponse as tK, type ResolveIncidentData as tL, type ResolveIncidentErrors as tM, type ResolveIncidentError as tN, type ResolveIncidentResponses as tO, type ResolveIncidentResponse as tP, type GetProcessInstanceStatisticsByDefinitionData as tQ, type GetProcessInstanceStatisticsByDefinitionErrors as tR, type GetProcessInstanceStatisticsByDefinitionError as tS, type GetProcessInstanceStatisticsByDefinitionResponses as tT, type GetProcessInstanceStatisticsByDefinitionResponse as tU, type GetProcessInstanceStatisticsByErrorData as tV, type GetProcessInstanceStatisticsByErrorErrors as tW, type GetProcessInstanceStatisticsByErrorError as tX, type GetProcessInstanceStatisticsByErrorResponses as tY, type GetProcessInstanceStatisticsByErrorResponse as tZ, type ActivateJobsData as t_, type UnassignMappingRuleFromGroupResponses as ta, type UnassignMappingRuleFromGroupResponse as tb, type AssignMappingRuleToGroupData as tc, type AssignMappingRuleToGroupErrors as td, type AssignMappingRuleToGroupError as te, type AssignMappingRuleToGroupResponses as tf, type AssignMappingRuleToGroupResponse as tg, type SearchRolesForGroupData as th, type SearchRolesForGroupErrors as ti, type SearchRolesForGroupError as tj, type SearchRolesForGroupResponses as tk, type SearchRolesForGroupResponse as tl, type SearchUsersForGroupData as tm, type SearchUsersForGroupErrors as tn, type SearchUsersForGroupError as to, type SearchUsersForGroupResponses as tp, type SearchUsersForGroupResponse as tq, type UnassignUserFromGroupData as tr, type UnassignUserFromGroupErrors as ts, type UnassignUserFromGroupError as tt, type UnassignUserFromGroupResponses as tu, type UnassignUserFromGroupResponse as tv, type AssignUserToGroupData as tw, type AssignUserToGroupErrors as tx, type AssignUserToGroupError as ty, type AssignUserToGroupResponses as tz, type CamundaConfig as u, type SearchMappingRuleData as u$, type ActivateJobsError as u0, type ActivateJobsResponses as u1, type ActivateJobsResponse as u2, type SearchJobsData as u3, type SearchJobsErrors as u4, type SearchJobsError as u5, type SearchJobsResponses as u6, type SearchJobsResponse as u7, type UpdateJobData as u8, type UpdateJobErrors as u9, type GetJobTypeStatisticsResponses as uA, type GetJobTypeStatisticsResponse as uB, type GetJobWorkerStatisticsData as uC, type GetJobWorkerStatisticsErrors as uD, type GetJobWorkerStatisticsError as uE, type GetJobWorkerStatisticsResponses as uF, type GetJobWorkerStatisticsResponse as uG, type GetJobTimeSeriesStatisticsData as uH, type GetJobTimeSeriesStatisticsErrors as uI, type GetJobTimeSeriesStatisticsError as uJ, type GetJobTimeSeriesStatisticsResponses as uK, type GetJobTimeSeriesStatisticsResponse as uL, type GetJobErrorStatisticsData as uM, type GetJobErrorStatisticsErrors as uN, type GetJobErrorStatisticsError as uO, type GetJobErrorStatisticsResponses as uP, type GetJobErrorStatisticsResponse as uQ, type GetLicenseData as uR, type GetLicenseErrors as uS, type GetLicenseError as uT, type GetLicenseResponses as uU, type GetLicenseResponse as uV, type CreateMappingRuleData as uW, type CreateMappingRuleErrors as uX, type CreateMappingRuleError as uY, type CreateMappingRuleResponses as uZ, type CreateMappingRuleResponse as u_, type UpdateJobError as ua, type UpdateJobResponses as ub, type UpdateJobResponse as uc, type CompleteJobData as ud, type CompleteJobErrors as ue, type CompleteJobError as uf, type CompleteJobResponses as ug, type CompleteJobResponse as uh, type ThrowJobErrorData as ui, type ThrowJobErrorErrors as uj, type ThrowJobErrorError as uk, type ThrowJobErrorResponses as ul, type ThrowJobErrorResponse as um, type FailJobData as un, type FailJobErrors as uo, type FailJobError as up, type FailJobResponses as uq, type FailJobResponse as ur, type GetGlobalJobStatisticsData as us, type GetGlobalJobStatisticsErrors as ut, type GetGlobalJobStatisticsError as uu, type GetGlobalJobStatisticsResponses as uv, type GetGlobalJobStatisticsResponse as uw, type GetJobTypeStatisticsData as ux, type GetJobTypeStatisticsErrors as uy, type GetJobTypeStatisticsError as uz, type activateAdHocSubProcessActivitiesInput as v, type GetProcessDefinitionStatisticsResponse as v$, type SearchMappingRuleErrors as v0, type SearchMappingRuleError as v1, type SearchMappingRuleResponses as v2, type SearchMappingRuleResponse as v3, type DeleteMappingRuleData as v4, type DeleteMappingRuleErrors as v5, type DeleteMappingRuleError as v6, type DeleteMappingRuleResponses as v7, type DeleteMappingRuleResponse as v8, type GetMappingRuleData as v9, type SearchProcessDefinitionsError as vA, type SearchProcessDefinitionsResponses as vB, type SearchProcessDefinitionsResponse as vC, type GetProcessDefinitionMessageSubscriptionStatisticsData as vD, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as vE, type GetProcessDefinitionMessageSubscriptionStatisticsError as vF, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as vG, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as vH, type GetProcessDefinitionInstanceStatisticsData as vI, type GetProcessDefinitionInstanceStatisticsErrors as vJ, type GetProcessDefinitionInstanceStatisticsError as vK, type GetProcessDefinitionInstanceStatisticsResponses as vL, type GetProcessDefinitionInstanceStatisticsResponse as vM, type GetProcessDefinitionData as vN, type GetProcessDefinitionErrors as vO, type GetProcessDefinitionError as vP, type GetProcessDefinitionResponses as vQ, type GetProcessDefinitionResponse as vR, type GetStartProcessFormData as vS, type GetStartProcessFormErrors as vT, type GetStartProcessFormError as vU, type GetStartProcessFormResponses as vV, type GetStartProcessFormResponse as vW, type GetProcessDefinitionStatisticsData as vX, type GetProcessDefinitionStatisticsErrors as vY, type GetProcessDefinitionStatisticsError as vZ, type GetProcessDefinitionStatisticsResponses as v_, type GetMappingRuleErrors as va, type GetMappingRuleError as vb, type GetMappingRuleResponses as vc, type GetMappingRuleResponse as vd, type UpdateMappingRuleData as ve, type UpdateMappingRuleErrors as vf, type UpdateMappingRuleError as vg, type UpdateMappingRuleResponses as vh, type UpdateMappingRuleResponse as vi, type SearchMessageSubscriptionsData as vj, type SearchMessageSubscriptionsErrors as vk, type SearchMessageSubscriptionsError as vl, type SearchMessageSubscriptionsResponses as vm, type SearchMessageSubscriptionsResponse as vn, type CorrelateMessageData as vo, type CorrelateMessageErrors as vp, type CorrelateMessageError as vq, type CorrelateMessageResponses as vr, type CorrelateMessageResponse as vs, type PublishMessageData as vt, type PublishMessageErrors as vu, type PublishMessageError as vv, type PublishMessageResponses as vw, type PublishMessageResponse as vx, type SearchProcessDefinitionsData as vy, type SearchProcessDefinitionsErrors as vz, type activateJobsInput as w, type DeleteProcessInstanceResponses as w$, type GetProcessDefinitionXmlData as w0, type GetProcessDefinitionXmlErrors as w1, type GetProcessDefinitionXmlError as w2, type GetProcessDefinitionXmlResponses as w3, type GetProcessDefinitionXmlResponse as w4, type GetProcessDefinitionInstanceVersionStatisticsData as w5, type GetProcessDefinitionInstanceVersionStatisticsErrors as w6, type GetProcessDefinitionInstanceVersionStatisticsError as w7, type GetProcessDefinitionInstanceVersionStatisticsResponses as w8, type GetProcessDefinitionInstanceVersionStatisticsResponse as w9, type ModifyProcessInstancesBatchOperationErrors as wA, type ModifyProcessInstancesBatchOperationError as wB, type ModifyProcessInstancesBatchOperationResponses as wC, type ModifyProcessInstancesBatchOperationResponse as wD, type SearchProcessInstancesData as wE, type SearchProcessInstancesErrors as wF, type SearchProcessInstancesError as wG, type SearchProcessInstancesResponses as wH, type SearchProcessInstancesResponse as wI, type GetProcessInstanceData as wJ, type GetProcessInstanceErrors as wK, type GetProcessInstanceError as wL, type GetProcessInstanceResponses as wM, type GetProcessInstanceResponse as wN, type GetProcessInstanceCallHierarchyData as wO, type GetProcessInstanceCallHierarchyErrors as wP, type GetProcessInstanceCallHierarchyError as wQ, type GetProcessInstanceCallHierarchyResponses as wR, type GetProcessInstanceCallHierarchyResponse as wS, type CancelProcessInstanceData as wT, type CancelProcessInstanceErrors as wU, type CancelProcessInstanceError as wV, type CancelProcessInstanceResponses as wW, type CancelProcessInstanceResponse as wX, type DeleteProcessInstanceData as wY, type DeleteProcessInstanceErrors as wZ, type DeleteProcessInstanceError as w_, type CreateProcessInstanceData as wa, type CreateProcessInstanceErrors as wb, type CreateProcessInstanceError as wc, type CreateProcessInstanceResponses as wd, type CreateProcessInstanceResponse as we, type CancelProcessInstancesBatchOperationData as wf, type CancelProcessInstancesBatchOperationErrors as wg, type CancelProcessInstancesBatchOperationError as wh, type CancelProcessInstancesBatchOperationResponses as wi, type CancelProcessInstancesBatchOperationResponse as wj, type DeleteProcessInstancesBatchOperationData as wk, type DeleteProcessInstancesBatchOperationErrors as wl, type DeleteProcessInstancesBatchOperationError as wm, type DeleteProcessInstancesBatchOperationResponses as wn, type DeleteProcessInstancesBatchOperationResponse as wo, type ResolveIncidentsBatchOperationData as wp, type ResolveIncidentsBatchOperationErrors as wq, type ResolveIncidentsBatchOperationError as wr, type ResolveIncidentsBatchOperationResponses as ws, type ResolveIncidentsBatchOperationResponse as wt, type MigrateProcessInstancesBatchOperationData as wu, type MigrateProcessInstancesBatchOperationErrors as wv, type MigrateProcessInstancesBatchOperationError as ww, type MigrateProcessInstancesBatchOperationResponses as wx, type MigrateProcessInstancesBatchOperationResponse as wy, type ModifyProcessInstancesBatchOperationData as wz, type assignClientToGroupInput as x, type SearchRolesError as x$, type DeleteProcessInstanceResponse as x0, type ResolveProcessInstanceIncidentsData as x1, type ResolveProcessInstanceIncidentsErrors as x2, type ResolveProcessInstanceIncidentsError as x3, type ResolveProcessInstanceIncidentsResponses as x4, type ResolveProcessInstanceIncidentsResponse as x5, type SearchProcessInstanceIncidentsData as x6, type SearchProcessInstanceIncidentsErrors as x7, type SearchProcessInstanceIncidentsError as x8, type SearchProcessInstanceIncidentsResponses as x9, type GetResourceData as xA, type GetResourceErrors as xB, type GetResourceError as xC, type GetResourceResponses as xD, type GetResourceResponse as xE, type GetResourceContentData as xF, type GetResourceContentErrors as xG, type GetResourceContentError as xH, type GetResourceContentResponses as xI, type GetResourceContentResponse as xJ, type GetResourceContentBinaryData as xK, type GetResourceContentBinaryErrors as xL, type GetResourceContentBinaryError as xM, type GetResourceContentBinaryResponses as xN, type GetResourceContentBinaryResponse as xO, type DeleteResourceData as xP, type DeleteResourceErrors as xQ, type DeleteResourceError as xR, type DeleteResourceResponses as xS, type DeleteResourceResponse2 as xT, type CreateRoleData as xU, type CreateRoleErrors as xV, type CreateRoleError as xW, type CreateRoleResponses as xX, type CreateRoleResponse as xY, type SearchRolesData as xZ, type SearchRolesErrors as x_, type SearchProcessInstanceIncidentsResponse as xa, type MigrateProcessInstanceData as xb, type MigrateProcessInstanceErrors as xc, type MigrateProcessInstanceError as xd, type MigrateProcessInstanceResponses as xe, type MigrateProcessInstanceResponse as xf, type ModifyProcessInstanceData as xg, type ModifyProcessInstanceErrors as xh, type ModifyProcessInstanceError as xi, type ModifyProcessInstanceResponses as xj, type ModifyProcessInstanceResponse as xk, type GetProcessInstanceSequenceFlowsData as xl, type GetProcessInstanceSequenceFlowsErrors as xm, type GetProcessInstanceSequenceFlowsError as xn, type GetProcessInstanceSequenceFlowsResponses as xo, type GetProcessInstanceSequenceFlowsResponse as xp, type GetProcessInstanceStatisticsData as xq, type GetProcessInstanceStatisticsErrors as xr, type GetProcessInstanceStatisticsError as xs, type GetProcessInstanceStatisticsResponses as xt, type GetProcessInstanceStatisticsResponse as xu, type SearchResourcesData as xv, type SearchResourcesErrors as xw, type SearchResourcesError as xx, type SearchResourcesResponses as xy, type SearchResourcesResponse as xz, type assignClientToTenantInput as y, type SearchUsersForRoleErrors as y$, type SearchRolesResponses as y0, type SearchRolesResponse as y1, type DeleteRoleData as y2, type DeleteRoleErrors as y3, type DeleteRoleError as y4, type DeleteRoleResponses as y5, type DeleteRoleResponse as y6, type GetRoleData as y7, type GetRoleErrors as y8, type GetRoleError as y9, type SearchGroupsForRoleResponse as yA, type UnassignRoleFromGroupData as yB, type UnassignRoleFromGroupErrors as yC, type UnassignRoleFromGroupError as yD, type UnassignRoleFromGroupResponses as yE, type UnassignRoleFromGroupResponse as yF, type AssignRoleToGroupData as yG, type AssignRoleToGroupErrors as yH, type AssignRoleToGroupError as yI, type AssignRoleToGroupResponses as yJ, type AssignRoleToGroupResponse as yK, type SearchMappingRulesForRoleData as yL, type SearchMappingRulesForRoleErrors as yM, type SearchMappingRulesForRoleError as yN, type SearchMappingRulesForRoleResponses as yO, type SearchMappingRulesForRoleResponse as yP, type UnassignRoleFromMappingRuleData as yQ, type UnassignRoleFromMappingRuleErrors as yR, type UnassignRoleFromMappingRuleError as yS, type UnassignRoleFromMappingRuleResponses as yT, type UnassignRoleFromMappingRuleResponse as yU, type AssignRoleToMappingRuleData as yV, type AssignRoleToMappingRuleErrors as yW, type AssignRoleToMappingRuleError as yX, type AssignRoleToMappingRuleResponses as yY, type AssignRoleToMappingRuleResponse as yZ, type SearchUsersForRoleData as y_, type GetRoleResponses as ya, type GetRoleResponse as yb, type UpdateRoleData as yc, type UpdateRoleErrors as yd, type UpdateRoleError as ye, type UpdateRoleResponses as yf, type UpdateRoleResponse as yg, type SearchClientsForRoleData as yh, type SearchClientsForRoleErrors as yi, type SearchClientsForRoleError as yj, type SearchClientsForRoleResponses as yk, type SearchClientsForRoleResponse as yl, type UnassignRoleFromClientData as ym, type UnassignRoleFromClientErrors as yn, type UnassignRoleFromClientError as yo, type UnassignRoleFromClientResponses as yp, type UnassignRoleFromClientResponse as yq, type AssignRoleToClientData as yr, type AssignRoleToClientErrors as ys, type AssignRoleToClientError as yt, type AssignRoleToClientResponses as yu, type AssignRoleToClientResponse as yv, type SearchGroupsForRoleData as yw, type SearchGroupsForRoleErrors as yx, type SearchGroupsForRoleError as yy, type SearchGroupsForRoleResponses as yz, type assignGroupToTenantInput as z, type SearchClientsForTenantResponses as z$, type SearchUsersForRoleError as z0, type SearchUsersForRoleResponses as z1, type SearchUsersForRoleResponse as z2, type UnassignRoleFromUserData as z3, type UnassignRoleFromUserErrors as z4, type UnassignRoleFromUserError as z5, type UnassignRoleFromUserResponses as z6, type UnassignRoleFromUserResponse as z7, type AssignRoleToUserData as z8, type AssignRoleToUserErrors as z9, type GetSystemConfigurationResponse as zA, type CreateTenantData as zB, type CreateTenantErrors as zC, type CreateTenantError as zD, type CreateTenantResponses as zE, type CreateTenantResponse as zF, type SearchTenantsData as zG, type SearchTenantsErrors as zH, type SearchTenantsError as zI, type SearchTenantsResponses as zJ, type SearchTenantsResponse as zK, type DeleteTenantData as zL, type DeleteTenantErrors as zM, type DeleteTenantError as zN, type DeleteTenantResponses as zO, type DeleteTenantResponse as zP, type GetTenantData as zQ, type GetTenantErrors as zR, type GetTenantError as zS, type GetTenantResponses as zT, type GetTenantResponse as zU, type UpdateTenantData as zV, type UpdateTenantErrors as zW, type UpdateTenantError as zX, type UpdateTenantResponses as zY, type UpdateTenantResponse as zZ, type SearchClientsForTenantData as z_, type AssignRoleToUserError as za, type AssignRoleToUserResponses as zb, type AssignRoleToUserResponse as zc, type CreateAdminUserData as zd, type CreateAdminUserErrors as ze, type CreateAdminUserError as zf, type CreateAdminUserResponses as zg, type CreateAdminUserResponse as zh, type BroadcastSignalData as zi, type BroadcastSignalErrors as zj, type BroadcastSignalError as zk, type BroadcastSignalResponses as zl, type BroadcastSignalResponse as zm, type GetStatusData as zn, type GetStatusErrors as zo, type GetStatusResponses as zp, type GetStatusResponse as zq, type GetUsageMetricsData as zr, type GetUsageMetricsErrors as zs, type GetUsageMetricsError as zt, type GetUsageMetricsResponses as zu, type GetUsageMetricsResponse as zv, type GetSystemConfigurationData as zw, type GetSystemConfigurationErrors as zx, type GetSystemConfigurationError as zy, type GetSystemConfigurationResponses as zz };