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

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.
@@ -813,6 +813,11 @@ type AgentInstanceFilter = {
813
813
  * The completion date of the agent instance.
814
814
  */
815
815
  completionDate?: DateTimeFilterProperty;
816
+ /**
817
+ * The keys of element instances associated with this agent instance.
818
+ * If multiple keys are provided, the filter matches agent instances associated with all of the provided keys at the same time.
819
+ */
820
+ elementInstanceKeys?: Array<ElementInstanceKeyFilterProperty>;
816
821
  };
817
822
  /**
818
823
  * Agent instance search response.
@@ -841,6 +846,10 @@ type AgentInstanceResult = {
841
846
  * The configured limits for this agent instance, set once at creation.
842
847
  */
843
848
  limits: AgentInstanceLimits;
849
+ /**
850
+ * The tools available to the agent.
851
+ */
852
+ tools: Array<AgentTool>;
844
853
  /**
845
854
  * The BPMN element ID of the ad-hoc sub-process or AI agent task that owns this agent instance.
846
855
  */
@@ -869,6 +878,10 @@ type AgentInstanceResult = {
869
878
  * The date when this agent instance completed. Null while the agent is still running.
870
879
  */
871
880
  completionDate: string | null;
881
+ /**
882
+ * The keys of all element instances associated with this agent instance.
883
+ */
884
+ elementInstanceKeys: Array<ElementInstanceKey>;
872
885
  };
873
886
  /**
874
887
  * The static definition of an agent instance, set once at creation.
@@ -887,6 +900,23 @@ type AgentInstanceDefinition = {
887
900
  */
888
901
  systemPrompt: string;
889
902
  };
903
+ /**
904
+ * A tool available to the agent.
905
+ */
906
+ type AgentTool = {
907
+ /**
908
+ * The tool name as visible to the LLM.
909
+ */
910
+ name: string;
911
+ /**
912
+ * A human-readable description of the tool.
913
+ */
914
+ description: string | null;
915
+ /**
916
+ * The BPMN element ID of the tool element within the ad-hoc sub-process.
917
+ */
918
+ elementId: string | null;
919
+ };
890
920
  /**
891
921
  * Aggregated metrics for an agent instance across all model calls.
892
922
  */
@@ -937,6 +967,83 @@ declare const AgentInstanceStatusEnum: {
937
967
  readonly TOOL_DISCOVERY: "TOOL_DISCOVERY";
938
968
  };
939
969
  type AgentInstanceStatusEnum = (typeof AgentInstanceStatusEnum)[keyof typeof AgentInstanceStatusEnum];
970
+ /**
971
+ * Request to create a new agent instance.
972
+ */
973
+ type AgentInstanceCreationRequest = {
974
+ /**
975
+ * The key of the AHSP or AI Agent Task element instance.
976
+ * The engine uses this key to infer processInstanceKey, elementId,
977
+ * processDefinitionKey, and tenantId.
978
+ *
979
+ */
980
+ elementInstanceKey: ElementInstanceKey;
981
+ /**
982
+ * Static definition set once at creation.
983
+ */
984
+ definition: AgentInstanceDefinition;
985
+ /**
986
+ * Limits for the agent execution. When omitted, all limits default to -1
987
+ * (no limit).
988
+ *
989
+ */
990
+ limits?: AgentInstanceLimits;
991
+ };
992
+ /**
993
+ * Response returned after successfully creating an agent instance.
994
+ */
995
+ type AgentInstanceCreationResult = {
996
+ /**
997
+ * The system-generated key for the created agent instance.
998
+ */
999
+ agentInstanceKey: AgentInstanceKey;
1000
+ };
1001
+ /**
1002
+ * Metric increments to apply to the agent instance aggregate counters. The engine
1003
+ * accumulates these deltas into running totals on each UPDATED event. All fields
1004
+ * are optional; omit a field to leave the corresponding counter unchanged.
1005
+ *
1006
+ */
1007
+ type AgentInstanceMetricsDelta = {
1008
+ /**
1009
+ * Increment to apply to the total input token counter.
1010
+ */
1011
+ inputTokens?: number;
1012
+ /**
1013
+ * Increment to apply to the total output token counter.
1014
+ */
1015
+ outputTokens?: number;
1016
+ /**
1017
+ * Increment to apply to the total model call counter.
1018
+ */
1019
+ modelCalls?: number;
1020
+ /**
1021
+ * Increment to apply to the total tool call counter.
1022
+ */
1023
+ toolCalls?: number;
1024
+ };
1025
+ /**
1026
+ * Request to update the mutable state of an agent instance. At least one of
1027
+ * status, metrics, or tools must be provided.
1028
+ *
1029
+ */
1030
+ type AgentInstanceUpdateRequest = {
1031
+ /**
1032
+ * The new status of the agent instance.
1033
+ */
1034
+ status?: AgentInstanceStatusEnum;
1035
+ /**
1036
+ * Metric increments to apply to the aggregate counters.
1037
+ */
1038
+ metrics?: AgentInstanceMetricsDelta;
1039
+ /**
1040
+ * The complete list of tools available to the agent, replacing any previously
1041
+ * stored tools. When provided, the engine replaces the existing tool list with
1042
+ * this value.
1043
+ *
1044
+ */
1045
+ tools?: Array<AgentTool>;
1046
+ };
940
1047
  /**
941
1048
  * AgentInstanceStatusEnum property with full advanced search capabilities.
942
1049
  */
@@ -6307,11 +6414,12 @@ type MessageSubscriptionResult = {
6307
6414
  correlationKey: string | null;
6308
6415
  messageSubscriptionType: MessageSubscriptionTypeEnum;
6309
6416
  /**
6310
- * The `zeebe:properties` extension properties extracted from the BPMN element associated
6311
- * with this subscription. Empty object when no properties are defined.
6417
+ * The subset of `zeebe:properties` extension properties whose keys start with the
6418
+ * `io.camunda.tool:` prefix, extracted from the BPMN element associated with this
6419
+ * subscription. Empty object when no matching properties are defined.
6312
6420
  *
6313
6421
  */
6314
- extensionProperties: {
6422
+ toolProperties: {
6315
6423
  [key: string]: string;
6316
6424
  };
6317
6425
  /**
@@ -8151,6 +8259,10 @@ type UsageMetricsResponseItem = {
8151
8259
  */
8152
8260
  type SystemConfigurationResponse = {
8153
8261
  jobMetrics: JobMetricsConfigurationResponse;
8262
+ components: ComponentsConfigurationResponse;
8263
+ deployment: DeploymentConfigurationResponse;
8264
+ authentication: AuthenticationConfigurationResponse;
8265
+ cloud: CloudConfigurationResponse;
8154
8266
  };
8155
8267
  /**
8156
8268
  * Configuration for job metrics collection and export.
@@ -8181,6 +8293,82 @@ type JobMetricsConfigurationResponse = {
8181
8293
  */
8182
8294
  maxUniqueKeys: number;
8183
8295
  };
8296
+ /**
8297
+ * Configuration for active Camunda components in the deployment.
8298
+ */
8299
+ type ComponentsConfigurationResponse = {
8300
+ /**
8301
+ * List of webapp components whose UI is enabled in this deployment.
8302
+ */
8303
+ active: Array<WebappComponent>;
8304
+ };
8305
+ /**
8306
+ * Configuration for deployment characteristics.
8307
+ */
8308
+ type DeploymentConfigurationResponse = {
8309
+ /**
8310
+ * Whether this is an enterprise deployment.
8311
+ */
8312
+ isEnterprise: boolean;
8313
+ /**
8314
+ * Whether multi-tenancy is enabled.
8315
+ */
8316
+ isMultiTenancyEnabled: boolean;
8317
+ /**
8318
+ * The servlet context path for the deployment.
8319
+ */
8320
+ contextPath: string;
8321
+ /**
8322
+ * The maximum HTTP request size in bytes.
8323
+ */
8324
+ maxRequestSize: number;
8325
+ };
8326
+ /**
8327
+ * Configuration for authentication and session management.
8328
+ */
8329
+ type AuthenticationConfigurationResponse = {
8330
+ /**
8331
+ * Whether users can log out (false for SaaS deployments).
8332
+ */
8333
+ canLogout: boolean;
8334
+ /**
8335
+ * Whether login is delegated to an external identity provider.
8336
+ */
8337
+ isLoginDelegated: boolean;
8338
+ };
8339
+ /**
8340
+ * Configuration for SaaS/cloud-specific settings.
8341
+ */
8342
+ 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
+ /**
8352
+ * The cloud deployment stage.
8353
+ */
8354
+ 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
+ };
8364
+ /**
8365
+ * A Camunda webapp component name.
8366
+ */
8367
+ type WebappComponent = 'operate' | 'tasklist' | 'admin';
8368
+ /**
8369
+ * The cloud deployment stage.
8370
+ */
8371
+ type CloudStage = 'dev' | 'int' | 'prod';
8184
8372
  type TenantCreateRequest = {
8185
8373
  /**
8186
8374
  * The unique ID for the tenant. Must be 31 characters or less and match
@@ -9328,6 +9516,49 @@ type ProcessInstanceStateExactMatch = ProcessInstanceStateEnum;
9328
9516
  * Matches the value exactly.
9329
9517
  */
9330
9518
  type UserTaskStateExactMatch = UserTaskStateEnum;
9519
+ type CreateAgentInstanceData = {
9520
+ body: AgentInstanceCreationRequest;
9521
+ path?: never;
9522
+ query?: never;
9523
+ url: '/agent-instances';
9524
+ };
9525
+ type CreateAgentInstanceErrors = {
9526
+ /**
9527
+ * The provided data is not valid.
9528
+ */
9529
+ 400: ProblemDetail;
9530
+ /**
9531
+ * The request lacks valid authentication credentials.
9532
+ */
9533
+ 401: ProblemDetail;
9534
+ /**
9535
+ * Forbidden. The request is not allowed.
9536
+ */
9537
+ 403: ProblemDetail;
9538
+ /**
9539
+ * The elementInstanceKey does not correspond to an active element instance.
9540
+ * More details are provided in the response body.
9541
+ *
9542
+ */
9543
+ 404: ProblemDetail;
9544
+ /**
9545
+ * An internal error occurred while processing the request.
9546
+ */
9547
+ 500: ProblemDetail;
9548
+ /**
9549
+ * The service is currently unavailable. This may happen only on some requests where the system creates backpressure to prevent the server's compute resources from being exhausted, avoiding more severe failures. In this case, the title of the error object contains `RESOURCE_EXHAUSTED`. Clients are recommended to eventually retry those requests after a backoff period. You can learn more about the backpressure mechanism here: https://docs.camunda.io/docs/components/zeebe/technical-concepts/internal-processing/#handling-backpressure .
9550
+ *
9551
+ */
9552
+ 503: ProblemDetail;
9553
+ };
9554
+ type CreateAgentInstanceError = CreateAgentInstanceErrors[keyof CreateAgentInstanceErrors];
9555
+ type CreateAgentInstanceResponses = {
9556
+ /**
9557
+ * The agent instance was created.
9558
+ */
9559
+ 200: AgentInstanceCreationResult;
9560
+ };
9561
+ type CreateAgentInstanceResponse = CreateAgentInstanceResponses[keyof CreateAgentInstanceResponses];
9331
9562
  type GetAgentInstanceData = {
9332
9563
  body?: never;
9333
9564
  path: {
@@ -9362,6 +9593,11 @@ type GetAgentInstanceErrors = {
9362
9593
  * An internal error occurred while processing the request.
9363
9594
  */
9364
9595
  500: ProblemDetail;
9596
+ /**
9597
+ * The service is currently unavailable. This may happen only on some requests where the system creates backpressure to prevent the server's compute resources from being exhausted, avoiding more severe failures. In this case, the title of the error object contains `RESOURCE_EXHAUSTED`. Clients are recommended to eventually retry those requests after a backoff period. You can learn more about the backpressure mechanism here: https://docs.camunda.io/docs/components/zeebe/technical-concepts/internal-processing/#handling-backpressure .
9598
+ *
9599
+ */
9600
+ 503: ProblemDetail;
9365
9601
  };
9366
9602
  type GetAgentInstanceError = GetAgentInstanceErrors[keyof GetAgentInstanceErrors];
9367
9603
  type GetAgentInstanceResponses = {
@@ -9371,6 +9607,49 @@ type GetAgentInstanceResponses = {
9371
9607
  200: AgentInstanceResult;
9372
9608
  };
9373
9609
  type GetAgentInstanceResponse = GetAgentInstanceResponses[keyof GetAgentInstanceResponses];
9610
+ type UpdateAgentInstanceData = {
9611
+ body: AgentInstanceUpdateRequest;
9612
+ path: {
9613
+ /**
9614
+ * The key of the agent instance to update.
9615
+ */
9616
+ agentInstanceKey: AgentInstanceKey;
9617
+ };
9618
+ query?: never;
9619
+ url: '/agent-instances/{agentInstanceKey}';
9620
+ };
9621
+ type UpdateAgentInstanceErrors = {
9622
+ /**
9623
+ * The provided data is not valid.
9624
+ */
9625
+ 400: ProblemDetail;
9626
+ /**
9627
+ * The request lacks valid authentication credentials.
9628
+ */
9629
+ 401: ProblemDetail;
9630
+ /**
9631
+ * Forbidden. The request is not allowed.
9632
+ */
9633
+ 403: ProblemDetail;
9634
+ /**
9635
+ * The agent instance with the given key was not found.
9636
+ * More details are provided in the response body.
9637
+ *
9638
+ */
9639
+ 404: ProblemDetail;
9640
+ /**
9641
+ * An internal error occurred while processing the request.
9642
+ */
9643
+ 500: ProblemDetail;
9644
+ };
9645
+ type UpdateAgentInstanceError = UpdateAgentInstanceErrors[keyof UpdateAgentInstanceErrors];
9646
+ type UpdateAgentInstanceResponses = {
9647
+ /**
9648
+ * The agent instance was updated successfully.
9649
+ */
9650
+ 204: void;
9651
+ };
9652
+ type UpdateAgentInstanceResponse = UpdateAgentInstanceResponses[keyof UpdateAgentInstanceResponses];
9374
9653
  type SearchAgentInstancesData = {
9375
9654
  body?: AgentInstanceSearchQuery;
9376
9655
  path?: never;
@@ -11257,6 +11536,47 @@ type EvaluateExpressionResponses = {
11257
11536
  200: ExpressionEvaluationResult;
11258
11537
  };
11259
11538
  type EvaluateExpressionResponse = EvaluateExpressionResponses[keyof EvaluateExpressionResponses];
11539
+ type GetFormByKeyData = {
11540
+ body?: never;
11541
+ path: {
11542
+ /**
11543
+ * The form key.
11544
+ */
11545
+ formKey: FormKey;
11546
+ };
11547
+ query?: never;
11548
+ url: '/forms/{formKey}';
11549
+ };
11550
+ type GetFormByKeyErrors = {
11551
+ /**
11552
+ * The provided data is not valid.
11553
+ */
11554
+ 400: ProblemDetail;
11555
+ /**
11556
+ * The request lacks valid authentication credentials.
11557
+ */
11558
+ 401: ProblemDetail;
11559
+ /**
11560
+ * Forbidden. The request is not allowed.
11561
+ */
11562
+ 403: ProblemDetail;
11563
+ /**
11564
+ * The form with the given key was not found.
11565
+ */
11566
+ 404: ProblemDetail;
11567
+ /**
11568
+ * An internal error occurred while processing the request.
11569
+ */
11570
+ 500: ProblemDetail;
11571
+ };
11572
+ type GetFormByKeyError = GetFormByKeyErrors[keyof GetFormByKeyErrors];
11573
+ type GetFormByKeyResponses = {
11574
+ /**
11575
+ * The form is successfully returned.
11576
+ */
11577
+ 200: FormResult;
11578
+ };
11579
+ type GetFormByKeyResponse = GetFormByKeyResponses[keyof GetFormByKeyResponses];
11260
11580
  type CreateGlobalTaskListenerData = {
11261
11581
  body: CreateGlobalTaskListenerRequest;
11262
11582
  path?: never;
@@ -14013,7 +14333,7 @@ type GetResourceContentData = {
14013
14333
  body?: never;
14014
14334
  path: {
14015
14335
  /**
14016
- * The unique key identifying the resource.
14336
+ * The unique key identifying the RPA resource.
14017
14337
  */
14018
14338
  resourceKey: ResourceKey;
14019
14339
  };
@@ -14025,6 +14345,10 @@ type GetResourceContentErrors = {
14025
14345
  * A resource with the given key was not found.
14026
14346
  */
14027
14347
  404: ProblemDetail;
14348
+ /**
14349
+ * The resource exists but is not an RPA resource.
14350
+ */
14351
+ 406: ProblemDetail;
14028
14352
  /**
14029
14353
  * An internal error occurred while processing the request.
14030
14354
  */
@@ -14035,9 +14359,40 @@ type GetResourceContentResponses = {
14035
14359
  /**
14036
14360
  * The resource content is successfully returned.
14037
14361
  */
14038
- 200: Blob | File;
14362
+ 200: {
14363
+ [key: string]: unknown;
14364
+ };
14039
14365
  };
14040
14366
  type GetResourceContentResponse = GetResourceContentResponses[keyof GetResourceContentResponses];
14367
+ type GetResourceContentBinaryData = {
14368
+ body?: never;
14369
+ path: {
14370
+ /**
14371
+ * The unique key identifying the resource.
14372
+ */
14373
+ resourceKey: ResourceKey;
14374
+ };
14375
+ query?: never;
14376
+ url: '/resources/{resourceKey}/content/binary';
14377
+ };
14378
+ type GetResourceContentBinaryErrors = {
14379
+ /**
14380
+ * A resource with the given key was not found.
14381
+ */
14382
+ 404: ProblemDetail;
14383
+ /**
14384
+ * An internal error occurred while processing the request.
14385
+ */
14386
+ 500: ProblemDetail;
14387
+ };
14388
+ type GetResourceContentBinaryError = GetResourceContentBinaryErrors[keyof GetResourceContentBinaryErrors];
14389
+ type GetResourceContentBinaryResponses = {
14390
+ /**
14391
+ * The resource content is successfully returned.
14392
+ */
14393
+ 200: Blob | File;
14394
+ };
14395
+ type GetResourceContentBinaryResponse = GetResourceContentBinaryResponses[keyof GetResourceContentBinaryResponses];
14041
14396
  type DeleteResourceData = {
14042
14397
  body?: DeleteResourceRequest;
14043
14398
  path: {
@@ -16835,12 +17190,30 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
16835
17190
  */
16836
17191
  meta?: Record<string, unknown>;
16837
17192
  };
17193
+ /**
17194
+ * Create agent instance
17195
+ *
17196
+ * Creates a new agent instance. The returned key identifies the instance and must
17197
+ * be used in subsequent update and query calls.
17198
+ *
17199
+ */
17200
+ declare const createAgentInstance: <ThrowOnError extends boolean = true>(options: Options<CreateAgentInstanceData, ThrowOnError>) => RequestResult<CreateAgentInstanceResponses, CreateAgentInstanceErrors, ThrowOnError, "fields">;
16838
17201
  /**
16839
17202
  * Get agent instance
16840
17203
  *
16841
17204
  * Returns agent instance as JSON.
16842
17205
  */
16843
17206
  declare const getAgentInstance: <ThrowOnError extends boolean = true>(options: Options<GetAgentInstanceData, ThrowOnError>) => RequestResult<GetAgentInstanceResponses, GetAgentInstanceErrors, ThrowOnError, "fields">;
17207
+ /**
17208
+ * Update agent instance
17209
+ *
17210
+ * Updates the mutable fields of an agent instance: status, metric counters, and
17211
+ * 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.
17214
+ *
17215
+ */
17216
+ declare const updateAgentInstance: <ThrowOnError extends boolean = true>(options: Options<UpdateAgentInstanceData, ThrowOnError>) => RequestResult<UpdateAgentInstanceResponses, UpdateAgentInstanceErrors, ThrowOnError, "fields">;
16844
17217
  /**
16845
17218
  * Search agent instances
16846
17219
  *
@@ -17221,6 +17594,13 @@ declare const createElementInstanceVariables: <ThrowOnError extends boolean = tr
17221
17594
  * Evaluates a FEEL expression and returns the result. Supports references to tenant scoped cluster variables when a tenant ID is provided.
17222
17595
  */
17223
17596
  declare const evaluateExpression: <ThrowOnError extends boolean = true>(options: Options<EvaluateExpressionData, ThrowOnError>) => RequestResult<EvaluateExpressionResponses, EvaluateExpressionErrors, ThrowOnError, "fields">;
17597
+ /**
17598
+ * Get form by key
17599
+ *
17600
+ * Get a form by its unique form key.
17601
+ *
17602
+ */
17603
+ declare const getFormByKey: <ThrowOnError extends boolean = true>(options: Options<GetFormByKeyData, ThrowOnError>) => RequestResult<GetFormByKeyResponses, GetFormByKeyErrors, ThrowOnError, "fields">;
17224
17604
  /**
17225
17605
  * Create global user task listener
17226
17606
  *
@@ -17790,15 +18170,33 @@ declare const searchResources: <ThrowOnError extends boolean = true>(options?: O
17790
18170
  */
17791
18171
  declare const getResource: <ThrowOnError extends boolean = true>(options: Options<GetResourceData, ThrowOnError>) => RequestResult<GetResourceResponses, GetResourceErrors, ThrowOnError, "fields">;
17792
18172
  /**
17793
- * Get resource content
18173
+ * Get RPA resource content (deprecated)
18174
+ *
18175
+ * **Deprecated** — use `/resources/{resourceKey}/content/binary` instead, which supports all
18176
+ * resource types and returns content as binary (octet-stream).
17794
18177
  *
17795
- * Returns the content of a deployed resource.
18178
+ * Returns the content of a deployed RPA resource as JSON.
17796
18179
  * :::info
17797
- * Currently, this endpoint only supports RPA resources.
18180
+ * This endpoint only supports RPA resources. For generic resource content in binary format,
18181
+ * use the `/resources/{resourceKey}/content/binary` endpoint.
17798
18182
  * :::
17799
18183
  *
18184
+ *
18185
+ * @deprecated
17800
18186
  */
17801
18187
  declare const getResourceContent: <ThrowOnError extends boolean = true>(options: Options<GetResourceContentData, ThrowOnError>) => RequestResult<GetResourceContentResponses, GetResourceContentErrors, ThrowOnError, "fields">;
18188
+ /**
18189
+ * Get resource content as binary
18190
+ *
18191
+ * Returns the content of a deployed resource in binary format (octet-stream).
18192
+ * :::info
18193
+ * This endpoint does not return BPMN process definitions, DMN decision definitions, or form
18194
+ * resources. To query BPMN process definitions or DMN decision definitions, use their
18195
+ * respective APIs.
18196
+ * :::
18197
+ *
18198
+ */
18199
+ declare const getResourceContentBinary: <ThrowOnError extends boolean = true>(options: Options<GetResourceContentBinaryData, ThrowOnError>) => RequestResult<GetResourceContentBinaryResponses, GetResourceContentBinaryErrors, ThrowOnError, "fields">;
17802
18200
  /**
17803
18201
  * Delete resource
17804
18202
  *
@@ -18836,6 +19234,11 @@ type createAdminUserBody = (NonNullable<createAdminUserOptions> extends {
18836
19234
  body?: infer B;
18837
19235
  } ? B : never);
18838
19236
  type createAdminUserInput = createAdminUserBody;
19237
+ type createAgentInstanceOptions = Parameters<typeof createAgentInstance>[0];
19238
+ type createAgentInstanceBody = (NonNullable<createAgentInstanceOptions> extends {
19239
+ body?: infer B;
19240
+ } ? B : never);
19241
+ type createAgentInstanceInput = createAgentInstanceBody;
18839
19242
  type createAuthorizationOptions = Parameters<typeof createAuthorization>[0];
18840
19243
  type createAuthorizationBody = (NonNullable<createAuthorizationOptions> extends {
18841
19244
  body?: infer B;
@@ -19303,6 +19706,20 @@ type getElementInstanceConsistency = {
19303
19706
  /** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
19304
19707
  consistency: ConsistencyOptions<_DataOf<typeof getElementInstance>>;
19305
19708
  };
19709
+ type getFormByKeyOptions = Parameters<typeof getFormByKey>[0];
19710
+ type getFormByKeyPathParam_formKey = (NonNullable<getFormByKeyOptions> extends {
19711
+ path: {
19712
+ formKey: infer P;
19713
+ };
19714
+ } ? P : any);
19715
+ type getFormByKeyInput = {
19716
+ formKey: getFormByKeyPathParam_formKey;
19717
+ };
19718
+ /** Management of eventual consistency **/
19719
+ type getFormByKeyConsistency = {
19720
+ /** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
19721
+ consistency: ConsistencyOptions<_DataOf<typeof getFormByKey>>;
19722
+ };
19306
19723
  type getGlobalClusterVariableOptions = Parameters<typeof getGlobalClusterVariable>[0];
19307
19724
  type getGlobalClusterVariablePathParam_name = (NonNullable<getGlobalClusterVariableOptions> extends {
19308
19725
  path: {
@@ -19619,6 +20036,20 @@ type getResourceContentConsistency = {
19619
20036
  /** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
19620
20037
  consistency: ConsistencyOptions<_DataOf<typeof getResourceContent>>;
19621
20038
  };
20039
+ type getResourceContentBinaryOptions = Parameters<typeof getResourceContentBinary>[0];
20040
+ type getResourceContentBinaryPathParam_resourceKey = (NonNullable<getResourceContentBinaryOptions> extends {
20041
+ path: {
20042
+ resourceKey: infer P;
20043
+ };
20044
+ } ? P : any);
20045
+ type getResourceContentBinaryInput = {
20046
+ resourceKey: getResourceContentBinaryPathParam_resourceKey;
20047
+ };
20048
+ /** Management of eventual consistency **/
20049
+ type getResourceContentBinaryConsistency = {
20050
+ /** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
20051
+ consistency: ConsistencyOptions<_DataOf<typeof getResourceContentBinary>>;
20052
+ };
19622
20053
  type getRoleOptions = Parameters<typeof getRole>[0];
19623
20054
  type getRolePathParam_roleId = (NonNullable<getRoleOptions> extends {
19624
20055
  path: {
@@ -20650,6 +21081,18 @@ type unassignUserTaskPathParam_userTaskKey = (NonNullable<unassignUserTaskOption
20650
21081
  type unassignUserTaskInput = {
20651
21082
  userTaskKey: unassignUserTaskPathParam_userTaskKey;
20652
21083
  };
21084
+ type updateAgentInstanceOptions = Parameters<typeof updateAgentInstance>[0];
21085
+ type updateAgentInstanceBody = (NonNullable<updateAgentInstanceOptions> extends {
21086
+ body?: infer B;
21087
+ } ? B : never);
21088
+ type updateAgentInstancePathParam_agentInstanceKey = (NonNullable<updateAgentInstanceOptions> extends {
21089
+ path: {
21090
+ agentInstanceKey: infer P;
21091
+ };
21092
+ } ? P : any);
21093
+ type updateAgentInstanceInput = updateAgentInstanceBody & {
21094
+ agentInstanceKey: updateAgentInstancePathParam_agentInstanceKey;
21095
+ };
20653
21096
  type updateAuthorizationOptions = Parameters<typeof updateAuthorization>[0];
20654
21097
  type updateAuthorizationBody = (NonNullable<updateAuthorizationOptions> extends {
20655
21098
  body?: infer B;
@@ -21430,6 +21873,34 @@ declare class CamundaClient {
21430
21873
  * @tags Setup
21431
21874
  */
21432
21875
  createAdminUser(input: createAdminUserInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof createAdminUser>>;
21876
+ /**
21877
+ * Create agent instance
21878
+ *
21879
+ * Creates a new agent instance. The returned key identifies the instance and must
21880
+ * be used in subsequent update and query calls.
21881
+ *
21882
+ *
21883
+ * @example Create an agent instance
21884
+ * ```ts
21885
+ * async function createAgentInstanceExample(elementInstanceKey: ElementInstanceKey) {
21886
+ * const camunda = createCamundaClient();
21887
+ *
21888
+ * const result = await camunda.createAgentInstance({
21889
+ * elementInstanceKey,
21890
+ * definition: {
21891
+ * model: 'gpt-4o',
21892
+ * provider: 'openai',
21893
+ * systemPrompt: 'You are a helpful assistant.',
21894
+ * },
21895
+ * });
21896
+ *
21897
+ * console.log(`Created agent instance: ${result.agentInstanceKey}`);
21898
+ * }
21899
+ * ```
21900
+ * @operationId createAgentInstance
21901
+ * @tags Agent instance
21902
+ */
21903
+ createAgentInstance(input: createAgentInstanceInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof createAgentInstance>>;
21433
21904
  /**
21434
21905
  * Create authorization
21435
21906
  *
@@ -22529,6 +23000,32 @@ declare class CamundaClient {
22529
23000
  * @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
22530
23001
  */
22531
23002
  getElementInstance(input: getElementInstanceInput, /** Management of eventual consistency **/ consistencyManagement: getElementInstanceConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof getElementInstance>>;
23003
+ /**
23004
+ * Get form by key
23005
+ *
23006
+ * Get a form by its unique form key.
23007
+ *
23008
+ *
23009
+ * @example Get a form by key
23010
+ * ```ts
23011
+ * async function getFormByKeyExample(formKey: FormKey) {
23012
+ * const camunda = createCamundaClient();
23013
+ *
23014
+ * const form = await camunda.getFormByKey(
23015
+ * {
23016
+ * formKey,
23017
+ * },
23018
+ * { consistency: { waitUpToMs: 5000 } }
23019
+ * );
23020
+ *
23021
+ * console.log(`Form: ${form.formId}, version: ${form.version}`);
23022
+ * }
23023
+ * ```
23024
+ * @operationId getFormByKey
23025
+ * @tags Form
23026
+ * @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
23027
+ */
23028
+ getFormByKey(input: getFormByKeyInput, /** Management of eventual consistency **/ consistencyManagement: getFormByKeyConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof getFormByKey>>;
22532
23029
  /**
22533
23030
  * Get a global-scoped cluster variable
22534
23031
  *
@@ -23164,13 +23661,19 @@ declare class CamundaClient {
23164
23661
  */
23165
23662
  getResource(input: getResourceInput, /** Management of eventual consistency **/ consistencyManagement: getResourceConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof getResource>>;
23166
23663
  /**
23167
- * Get resource content
23664
+ * Get RPA resource content (deprecated)
23665
+ *
23666
+ * **Deprecated** — use `/resources/{resourceKey}/content/binary` instead, which supports all
23667
+ * resource types and returns content as binary (octet-stream).
23168
23668
  *
23169
- * Returns the content of a deployed resource.
23669
+ * Returns the content of a deployed RPA resource as JSON.
23170
23670
  * :::info
23171
- * Currently, this endpoint only supports RPA resources.
23671
+ * This endpoint only supports RPA resources. For generic resource content in binary format,
23672
+ * use the `/resources/{resourceKey}/content/binary` endpoint.
23172
23673
  * :::
23173
23674
  *
23675
+ *
23676
+ * @deprecated
23174
23677
  *
23175
23678
  * @example Get resource content
23176
23679
  * ```ts
@@ -23192,6 +23695,37 @@ declare class CamundaClient {
23192
23695
  * @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
23193
23696
  */
23194
23697
  getResourceContent(input: getResourceContentInput, /** Management of eventual consistency **/ consistencyManagement: getResourceContentConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof getResourceContent>>;
23698
+ /**
23699
+ * Get resource content as binary
23700
+ *
23701
+ * Returns the content of a deployed resource in binary format (octet-stream).
23702
+ * :::info
23703
+ * This endpoint does not return BPMN process definitions, DMN decision definitions, or form
23704
+ * resources. To query BPMN process definitions or DMN decision definitions, use their
23705
+ * respective APIs.
23706
+ * :::
23707
+ *
23708
+ *
23709
+ * @example Get resource content as binary
23710
+ * ```ts
23711
+ * async function getResourceContentBinaryExample(resourceKey: ProcessDefinitionKey) {
23712
+ * const camunda = createCamundaClient();
23713
+ *
23714
+ * const content = await camunda.getResourceContentBinary(
23715
+ * {
23716
+ * resourceKey,
23717
+ * },
23718
+ * { consistency: { waitUpToMs: 0 } }
23719
+ * );
23720
+ *
23721
+ * console.log(`Binary content retrieved (type: ${typeof content})`);
23722
+ * }
23723
+ * ```
23724
+ * @operationId getResourceContentBinary
23725
+ * @tags Resource
23726
+ * @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
23727
+ */
23728
+ getResourceContentBinary(input: getResourceContentBinaryInput, /** Management of eventual consistency **/ consistencyManagement: getResourceContentBinaryConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof getResourceContentBinary>>;
23195
23729
  /**
23196
23730
  * Get role
23197
23731
  *
@@ -25298,6 +25832,37 @@ declare class CamundaClient {
25298
25832
  * @tags User task
25299
25833
  */
25300
25834
  unassignUserTask(input: unassignUserTaskInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof unassignUserTask>>;
25835
+ /**
25836
+ * Update agent instance
25837
+ *
25838
+ * Updates the mutable fields of an agent instance: status, metric counters, and
25839
+ * 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.
25842
+ *
25843
+ *
25844
+ * @example Update an agent instance
25845
+ * ```ts
25846
+ * async function updateAgentInstanceExample(agentInstanceKey: AgentInstanceKey) {
25847
+ * const camunda = createCamundaClient();
25848
+ *
25849
+ * await camunda.updateAgentInstance({
25850
+ * agentInstanceKey,
25851
+ * status: 'THINKING',
25852
+ * metrics: {
25853
+ * inputTokens: 150,
25854
+ * outputTokens: 50,
25855
+ * modelCalls: 1,
25856
+ * },
25857
+ * });
25858
+ *
25859
+ * console.log(`Updated agent instance: ${agentInstanceKey}`);
25860
+ * }
25861
+ * ```
25862
+ * @operationId updateAgentInstance
25863
+ * @tags Agent instance
25864
+ */
25865
+ updateAgentInstance(input: updateAgentInstanceInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof updateAgentInstance>>;
25301
25866
  /**
25302
25867
  * Update authorization
25303
25868
  *
@@ -25752,4 +26317,4 @@ declare function eventuallyTE<E, A>(thunk: () => Promise<A>, predicate: (a: A) =
25752
26317
  waitUpToMs: number;
25753
26318
  }): TaskEither<E, A>;
25754
26319
 
25755
- export { type createAdminUserInput as $, type AuthStrategy as A, type CompleteUserTaskData as A$, type AssignUserToTenantError as A0, type AssignUserToTenantResponses as A1, type AssignUserToTenantResponse as A2, type GetTopologyData as A3, type GetTopologyErrors as A4, type GetTopologyError as A5, type GetTopologyResponses as A6, type GetTopologyResponse as A7, type CreateUserData as A8, type CreateUserErrors as A9, type SearchUserTasksResponses as AA, type SearchUserTasksResponse as AB, type GetUserTaskData as AC, type GetUserTaskErrors as AD, type GetUserTaskError as AE, type GetUserTaskResponses as AF, type GetUserTaskResponse as AG, type UpdateUserTaskData as AH, type UpdateUserTaskErrors as AI, type UpdateUserTaskError as AJ, type UpdateUserTaskResponses as AK, type UpdateUserTaskResponse as AL, type UnassignUserTaskData as AM, type UnassignUserTaskErrors as AN, type UnassignUserTaskError as AO, type UnassignUserTaskResponses as AP, type UnassignUserTaskResponse as AQ, type AssignUserTaskData as AR, type AssignUserTaskErrors as AS, type AssignUserTaskError as AT, type AssignUserTaskResponses as AU, type AssignUserTaskResponse as AV, type SearchUserTaskAuditLogsData as AW, type SearchUserTaskAuditLogsErrors as AX, type SearchUserTaskAuditLogsError as AY, type SearchUserTaskAuditLogsResponses as AZ, type SearchUserTaskAuditLogsResponse as A_, type CreateUserError as Aa, type CreateUserResponses as Ab, type CreateUserResponse as Ac, type SearchUsersData as Ad, type SearchUsersErrors as Ae, type SearchUsersError as Af, type SearchUsersResponses as Ag, type SearchUsersResponse as Ah, type DeleteUserData as Ai, type DeleteUserErrors as Aj, type DeleteUserError as Ak, type DeleteUserResponses as Al, type DeleteUserResponse as Am, type GetUserData as An, type GetUserErrors as Ao, type GetUserError as Ap, type GetUserResponses as Aq, type GetUserResponse as Ar, type UpdateUserData as As, type UpdateUserErrors as At, type UpdateUserError as Au, type UpdateUserResponses as Av, type UpdateUserResponse as Aw, type SearchUserTasksData as Ax, type SearchUserTasksErrors as Ay, type SearchUserTasksError as Az, type BackpressureSeverity as B, type CompleteUserTaskErrors as B0, type CompleteUserTaskError as B1, type CompleteUserTaskResponses as B2, type CompleteUserTaskResponse as B3, type SearchUserTaskEffectiveVariablesData as B4, type SearchUserTaskEffectiveVariablesErrors as B5, type SearchUserTaskEffectiveVariablesError as B6, type SearchUserTaskEffectiveVariablesResponses as B7, type SearchUserTaskEffectiveVariablesResponse as B8, type GetUserTaskFormData as B9, foldDomainError as BA, type HttpError as BB, type Left as BC, type Right as BD, retryTE as BE, type TaskEither as BF, withTimeoutTE as BG, type GetUserTaskFormErrors as Ba, type GetUserTaskFormError as Bb, type GetUserTaskFormResponses as Bc, type GetUserTaskFormResponse as Bd, type SearchUserTaskVariablesData as Be, type SearchUserTaskVariablesErrors as Bf, type SearchUserTaskVariablesError as Bg, type SearchUserTaskVariablesResponses as Bh, type SearchUserTaskVariablesResponse as Bi, type SearchVariablesData as Bj, type SearchVariablesErrors as Bk, type SearchVariablesError as Bl, type SearchVariablesResponses as Bm, type SearchVariablesResponse as Bn, type GetVariableData as Bo, type GetVariableErrors as Bp, type GetVariableError as Bq, type GetVariableResponses as Br, type GetVariableResponse as Bs, assertConstraint as Bt, classifyDomainError as Bu, type DomainError as Bv, type DomainErrorTag as Bw, eventuallyTE as Bx, type FnKeys as By, type Fpify as Bz, CamundaClient as C, type assignMappingRuleToGroupInput as D, type Either as E, type assignMappingRuleToTenantInput as F, type assignRoleToClientInput as G, type HttpRetryPolicy as H, type assignRoleToGroupInput as I, type Job as J, type assignRoleToMappingRuleInput as K, type assignRoleToTenantInput as L, type assignRoleToUserInput as M, type assignUserTaskInput as N, type OperationOptions as O, type assignUserToGroupInput as P, type assignUserToTenantInput as Q, type broadcastSignalInput as R, type SdkError as S, type TelemetryHooks as T, type cancelBatchOperationInput as U, type ValidationMode as V, type cancelProcessInstanceInput as W, type cancelProcessInstancesBatchOperationInput as X, type completeJobInput as Y, type completeUserTaskInput as Z, type correlateMessageInput as _, type CamundaOptions as a, type getGroupConsistency as a$, type createAuthorizationInput as a0, type createDeploymentInput as a1, type createDocumentInput as a2, type createDocumentLinkInput as a3, type createDocumentsInput as a4, type createElementInstanceVariablesInput as a5, type createGlobalClusterVariableInput as a6, type createGlobalTaskListenerInput as a7, type createGroupInput as a8, type createMappingRuleInput as a9, type getAuditLogInput as aA, type getAuditLogConsistency as aB, type getAuthenticationInput as aC, type getAuthorizationInput as aD, type getAuthorizationConsistency as aE, type getBatchOperationInput as aF, type getBatchOperationConsistency as aG, type getDecisionDefinitionInput as aH, type getDecisionDefinitionConsistency as aI, type getDecisionDefinitionXmlInput as aJ, type getDecisionDefinitionXmlConsistency as aK, type getDecisionInstanceInput as aL, type getDecisionInstanceConsistency as aM, type getDecisionRequirementsInput as aN, type getDecisionRequirementsConsistency as aO, type getDecisionRequirementsXmlInput as aP, type getDecisionRequirementsXmlConsistency as aQ, type getDocumentInput as aR, type getElementInstanceInput as aS, type getElementInstanceConsistency as aT, type getGlobalClusterVariableInput as aU, type getGlobalClusterVariableConsistency as aV, type getGlobalJobStatisticsInput as aW, type getGlobalJobStatisticsConsistency as aX, type getGlobalTaskListenerInput as aY, type getGlobalTaskListenerConsistency as aZ, type getGroupInput as a_, type createProcessInstanceInput as aa, type createRoleInput as ab, type createTenantInput as ac, type createTenantClusterVariableInput as ad, type createUserInput as ae, type deleteAuthorizationInput as af, type deleteDecisionInstanceInput as ag, type deleteDecisionInstancesBatchOperationInput as ah, type deleteDocumentInput as ai, type deleteGlobalClusterVariableInput as aj, type deleteGlobalTaskListenerInput as ak, type deleteGroupInput as al, type deleteMappingRuleInput as am, type deleteProcessInstanceInput as an, type deleteProcessInstancesBatchOperationInput as ao, type deleteResourceInput as ap, type deleteRoleInput as aq, type deleteTenantInput as ar, type deleteTenantClusterVariableInput as as, type deleteUserInput as at, type evaluateConditionalsInput as au, type evaluateDecisionInput as av, type evaluateExpressionInput as aw, type failJobInput as ax, type getAgentInstanceInput as ay, type getAgentInstanceConsistency as az, type CancelablePromise as b, type migrateProcessInstancesBatchOperationInput as b$, type getIncidentInput as b0, type getIncidentConsistency as b1, type getJobErrorStatisticsInput as b2, type getJobErrorStatisticsConsistency as b3, type getJobTimeSeriesStatisticsInput as b4, type getJobTimeSeriesStatisticsConsistency as b5, type getJobTypeStatisticsInput as b6, type getJobTypeStatisticsConsistency as b7, type getJobWorkerStatisticsInput as b8, type getJobWorkerStatisticsConsistency as b9, type getProcessInstanceStatisticsByErrorConsistency as bA, type getResourceInput as bB, type getResourceConsistency as bC, type getResourceContentInput as bD, type getResourceContentConsistency as bE, type getRoleInput as bF, type getRoleConsistency as bG, type getStartProcessFormInput as bH, type getStartProcessFormConsistency as bI, type getStatusInput as bJ, type getSystemConfigurationInput as bK, type getTenantInput as bL, type getTenantConsistency as bM, type getTenantClusterVariableInput as bN, type getTenantClusterVariableConsistency as bO, type getTopologyInput as bP, type getUsageMetricsInput as bQ, type getUsageMetricsConsistency as bR, type getUserInput as bS, type getUserConsistency as bT, type getUserTaskInput as bU, type getUserTaskConsistency as bV, type getUserTaskFormInput as bW, type getUserTaskFormConsistency as bX, type getVariableInput as bY, type getVariableConsistency as bZ, type migrateProcessInstanceInput as b_, type getLicenseInput as ba, type getMappingRuleInput as bb, type getMappingRuleConsistency as bc, type getProcessDefinitionInput as bd, type getProcessDefinitionConsistency as be, type getProcessDefinitionInstanceStatisticsInput as bf, type getProcessDefinitionInstanceStatisticsConsistency as bg, type getProcessDefinitionInstanceVersionStatisticsInput as bh, type getProcessDefinitionInstanceVersionStatisticsConsistency as bi, type getProcessDefinitionMessageSubscriptionStatisticsInput as bj, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as bk, type getProcessDefinitionStatisticsInput as bl, type getProcessDefinitionStatisticsConsistency as bm, type getProcessDefinitionXmlInput as bn, type getProcessDefinitionXmlConsistency as bo, type getProcessInstanceInput as bp, type getProcessInstanceConsistency as bq, type getProcessInstanceCallHierarchyInput as br, type getProcessInstanceCallHierarchyConsistency as bs, type getProcessInstanceSequenceFlowsInput as bt, type getProcessInstanceSequenceFlowsConsistency as bu, type getProcessInstanceStatisticsInput as bv, type getProcessInstanceStatisticsConsistency as bw, type getProcessInstanceStatisticsByDefinitionInput as bx, type getProcessInstanceStatisticsByDefinitionConsistency as by, type getProcessInstanceStatisticsByErrorInput as bz, createCamundaClient as c, type searchProcessInstanceIncidentsInput as c$, type modifyProcessInstanceInput as c0, type modifyProcessInstancesBatchOperationInput as c1, type pinClockInput as c2, type publishMessageInput as c3, type resetClockInput as c4, type resolveIncidentInput as c5, type resolveIncidentsBatchOperationInput as c6, type resolveProcessInstanceIncidentsInput as c7, type resumeBatchOperationInput as c8, type searchAgentInstancesInput as c9, type searchElementInstanceIncidentsConsistency as cA, type searchElementInstancesInput as cB, type searchElementInstancesConsistency as cC, type searchGlobalTaskListenersInput as cD, type searchGlobalTaskListenersConsistency as cE, type searchGroupIdsForTenantInput as cF, type searchGroupIdsForTenantConsistency as cG, type searchGroupsInput as cH, type searchGroupsConsistency as cI, type searchGroupsForRoleInput as cJ, type searchGroupsForRoleConsistency as cK, type searchIncidentsInput as cL, type searchIncidentsConsistency as cM, type searchJobsInput as cN, type searchJobsConsistency as cO, type searchMappingRuleInput as cP, type searchMappingRuleConsistency as cQ, type searchMappingRulesForGroupInput as cR, type searchMappingRulesForGroupConsistency as cS, type searchMappingRulesForRoleInput as cT, type searchMappingRulesForRoleConsistency as cU, type searchMappingRulesForTenantInput as cV, type searchMappingRulesForTenantConsistency as cW, type searchMessageSubscriptionsInput as cX, type searchMessageSubscriptionsConsistency as cY, type searchProcessDefinitionsInput as cZ, type searchProcessDefinitionsConsistency as c_, type searchAgentInstancesConsistency as ca, type searchAuditLogsInput as cb, type searchAuditLogsConsistency as cc, type searchAuthorizationsInput as cd, type searchAuthorizationsConsistency as ce, type searchBatchOperationItemsInput as cf, type searchBatchOperationItemsConsistency as cg, type searchBatchOperationsInput as ch, type searchBatchOperationsConsistency as ci, type searchClientsForGroupInput as cj, type searchClientsForGroupConsistency as ck, type searchClientsForRoleInput as cl, type searchClientsForRoleConsistency as cm, type searchClientsForTenantInput as cn, type searchClientsForTenantConsistency as co, type searchClusterVariablesInput as cp, type searchClusterVariablesConsistency as cq, type searchCorrelatedMessageSubscriptionsInput as cr, type searchCorrelatedMessageSubscriptionsConsistency as cs, type searchDecisionDefinitionsInput as ct, type searchDecisionDefinitionsConsistency as cu, type searchDecisionInstancesInput as cv, type searchDecisionInstancesConsistency as cw, type searchDecisionRequirementsInput as cx, type searchDecisionRequirementsConsistency as cy, type searchElementInstanceIncidentsInput as cz, type CamundaFpClient as d, type AgentInstanceSearchQuery as d$, type searchProcessInstanceIncidentsConsistency as d0, type searchProcessInstancesInput as d1, type searchProcessInstancesConsistency as d2, type searchResourcesInput as d3, type searchResourcesConsistency as d4, type searchRolesInput as d5, type searchRolesConsistency as d6, type searchRolesForGroupInput as d7, type searchRolesForGroupConsistency as d8, type searchRolesForTenantInput as d9, type unassignGroupFromTenantInput as dA, type unassignMappingRuleFromGroupInput as dB, type unassignMappingRuleFromTenantInput as dC, type unassignRoleFromClientInput as dD, type unassignRoleFromGroupInput as dE, type unassignRoleFromMappingRuleInput as dF, type unassignRoleFromTenantInput as dG, type unassignRoleFromUserInput as dH, type unassignUserFromGroupInput as dI, type unassignUserFromTenantInput as dJ, type unassignUserTaskInput as dK, type updateAuthorizationInput as dL, type updateGlobalClusterVariableInput as dM, type updateGlobalTaskListenerInput as dN, type updateGroupInput as dO, type updateJobInput as dP, type updateMappingRuleInput as dQ, type updateRoleInput as dR, type updateTenantInput as dS, type updateTenantClusterVariableInput as dT, type updateUserInput as dU, type updateUserTaskInput as dV, type ExtendedDeploymentResult as dW, CancelError as dX, type CamundaKey as dY, type ClientOptions as dZ, type AgentInstanceSearchQuerySortRequest as d_, type searchRolesForTenantConsistency as da, type searchTenantsInput as db, type searchTenantsConsistency as dc, type searchUsersInput as dd, type searchUsersConsistency as de, type searchUsersForGroupInput as df, type searchUsersForGroupConsistency as dg, type searchUsersForRoleInput as dh, type searchUsersForRoleConsistency as di, type searchUsersForTenantInput as dj, type searchUsersForTenantConsistency as dk, type searchUserTaskAuditLogsInput as dl, type searchUserTaskAuditLogsConsistency as dm, type searchUserTaskEffectiveVariablesInput as dn, type searchUserTaskEffectiveVariablesConsistency as dp, type searchUserTasksInput as dq, type searchUserTasksConsistency as dr, type searchUserTaskVariablesInput as ds, type searchUserTaskVariablesConsistency as dt, type searchVariablesInput as du, type searchVariablesConsistency as dv, type suspendBatchOperationInput as dw, type throwJobErrorInput as dx, type unassignClientFromGroupInput as dy, type unassignClientFromTenantInput as dz, createCamundaFpClient as e, type ProcessInstanceMigrationBatchOperationPlan as e$, type AgentInstanceFilter as e0, type AgentInstanceSearchQueryResult as e1, type AgentInstanceResult as e2, type AgentInstanceDefinition as e3, type AgentInstanceMetrics as e4, type AgentInstanceLimits as e5, AgentInstanceStatusEnum as e6, type AgentInstanceStatusFilterProperty as e7, type AdvancedAgentInstanceStatusFilter as e8, type AuditLogResult as e9, type AuthorizationSearchQuerySortRequest as eA, type AuthorizationSearchQuery as eB, type AuthorizationFilter as eC, type AuthorizationResult as eD, type AuthorizationSearchResult as eE, type AuthorizationCreateResult as eF, PermissionTypeEnum as eG, ResourceTypeEnum as eH, OwnerTypeEnum as eI, AuthorizationKey as eJ, type BatchOperationCreatedResult as eK, type BatchOperationSearchQuerySortRequest as eL, type BatchOperationSearchQuery as eM, type BatchOperationFilter as eN, type BatchOperationSearchQueryResult as eO, type BatchOperationResponse as eP, type BatchOperationError as eQ, type BatchOperationItemSearchQuerySortRequest as eR, type BatchOperationItemSearchQuery as eS, type BatchOperationItemFilter as eT, type BatchOperationItemSearchQueryResult as eU, type BatchOperationItemResponse as eV, type DecisionInstanceDeletionBatchOperationRequest as eW, type ProcessInstanceCancellationBatchOperationRequest as eX, type ProcessInstanceIncidentResolutionBatchOperationRequest as eY, type ProcessInstanceDeletionBatchOperationRequest as eZ, type ProcessInstanceMigrationBatchOperationRequest as e_, type AuditLogSearchQuerySortRequest as ea, type AuditLogSearchQueryRequest as eb, type AuditLogFilter as ec, type AuditLogSearchQueryResult as ed, AuditLogEntityKey as ee, AuditLogEntityTypeEnum as ef, AuditLogOperationTypeEnum as eg, AuditLogActorTypeEnum as eh, AuditLogResultEnum as ei, AuditLogCategoryEnum as ej, type AuditLogEntityKeyFilterProperty as ek, type AdvancedAuditLogEntityKeyFilter as el, type EntityTypeFilterProperty as em, type AdvancedEntityTypeFilter as en, type OperationTypeFilterProperty as eo, type AdvancedOperationTypeFilter as ep, type CategoryFilterProperty as eq, type AdvancedCategoryFilter as er, type AuditLogResultFilterProperty as es, type AdvancedResultFilter as et, type AuditLogActorTypeFilterProperty as eu, type AdvancedActorTypeFilter as ev, type CamundaUserResult as ew, type AuthorizationIdBasedRequest as ex, type AuthorizationPropertyBasedRequest as ey, type AuthorizationRequest as ez, isRight as f, type DeploymentMetadataResult as f$, type ProcessInstanceModificationBatchOperationRequest as f0, type ProcessInstanceModificationMoveBatchOperationInstruction as f1, BatchOperationItemStateEnum as f2, BatchOperationStateEnum as f3, BatchOperationTypeEnum as f4, type BatchOperationTypeFilterProperty as f5, type AdvancedBatchOperationTypeFilter as f6, type BatchOperationStateFilterProperty as f7, type AdvancedBatchOperationStateFilter as f8, type BatchOperationItemStateFilterProperty as f9, type DecisionDefinitionSearchQueryResult as fA, type DecisionDefinitionResult as fB, type DecisionEvaluationInstruction as fC, type DecisionEvaluationById as fD, type DecisionEvaluationByKey as fE, type EvaluateDecisionResult as fF, type EvaluatedDecisionResult as fG, type DecisionInstanceSearchQuerySortRequest as fH, type DecisionInstanceSearchQuery as fI, type DecisionInstanceFilter as fJ, type DeleteDecisionInstanceRequest as fK, type DecisionInstanceSearchQueryResult as fL, type DecisionInstanceResult as fM, type DecisionInstanceGetQueryResult as fN, type EvaluatedDecisionInputItem as fO, type EvaluatedDecisionOutputItem as fP, type MatchedDecisionRuleItem as fQ, DecisionDefinitionTypeEnum as fR, DecisionInstanceStateEnum as fS, type AdvancedDecisionInstanceStateFilter as fT, type DecisionInstanceStateFilterProperty as fU, type DecisionRequirementsSearchQuerySortRequest as fV, type DecisionRequirementsSearchQuery as fW, type DecisionRequirementsFilter as fX, type DecisionRequirementsSearchQueryResult as fY, type DecisionRequirementsResult as fZ, type DeploymentResult as f_, type AdvancedBatchOperationItemStateFilter as fa, type ClockPinRequest as fb, ClusterVariableScopeEnum as fc, type CreateClusterVariableRequest as fd, type UpdateClusterVariableRequest as fe, type ClusterVariableResult as ff, type ClusterVariableSearchResult as fg, type ClusterVariableResultBase as fh, type ClusterVariableSearchQueryRequest as fi, type ClusterVariableSearchQuerySortRequest as fj, type ClusterVariableSearchQueryFilterRequest as fk, type ClusterVariableScopeFilterProperty as fl, type AdvancedClusterVariableScopeFilter as fm, type ClusterVariableSearchQueryResult as fn, type TopologyResponse as fo, type BrokerInfo as fp, type Partition as fq, type ConditionalEvaluationInstruction as fr, type EvaluateConditionalResult as fs, ConditionalEvaluationKey as ft, type ProcessInstanceReference as fu, StartCursor as fv, EndCursor as fw, type DecisionDefinitionSearchQuerySortRequest as fx, type DecisionDefinitionSearchQuery as fy, type DecisionDefinitionFilter as fz, CamundaValidationError as g, type AdvancedGlobalTaskListenerEventTypeFilter as g$, type DeploymentProcessResult as g0, type DeploymentDecisionResult as g1, type DeploymentDecisionRequirementsResult as g2, type DeploymentFormResult as g3, type DeploymentResourceResult as g4, type DeleteResourceRequest as g5, type DeleteResourceResponse as g6, type ResourceResult as g7, DeploymentKey as g8, type ResourceKey as g9, type ExpressionEvaluationRequest as gA, type ExpressionEvaluationResult as gB, type ExpressionEvaluationWarningItem as gC, type LikeFilter as gD, type BasicStringFilter as gE, type AdvancedStringFilter as gF, type BasicStringFilterProperty as gG, type StringFilterProperty as gH, type AdvancedIntegerFilter as gI, type IntegerFilterProperty as gJ, type AdvancedDateTimeFilter as gK, type DateTimeFilterProperty as gL, type FormResult as gM, GlobalListenerSourceEnum as gN, GlobalTaskListenerEventTypeEnum as gO, type GlobalListenerBase as gP, type GlobalTaskListenerBase as gQ, type GlobalTaskListenerEventTypes as gR, type CreateGlobalTaskListenerRequest as gS, type UpdateGlobalTaskListenerRequest as gT, type GlobalTaskListenerResult as gU, type GlobalTaskListenerSearchQueryRequest as gV, type GlobalTaskListenerSearchQuerySortRequest as gW, type GlobalTaskListenerSearchQueryFilterRequest as gX, type GlobalListenerSourceFilterProperty as gY, type AdvancedGlobalListenerSourceFilter as gZ, type GlobalTaskListenerEventTypeFilterProperty as g_, type DeploymentKeyFilterProperty as ga, type AdvancedDeploymentKeyFilter as gb, type ResourceKeyFilterProperty as gc, type AdvancedResourceKeyFilter as gd, type ResourceSearchQuerySortRequest as ge, type ResourceSearchQuery as gf, type ResourceFilter as gg, type ResourceSearchQueryResult as gh, type DocumentReference as gi, type DocumentCreationFailureDetail as gj, type DocumentCreationBatchResponse as gk, type DocumentMetadata as gl, type DocumentMetadataResponse as gm, type DocumentLinkRequest as gn, type DocumentLink as go, DocumentId as gp, type ElementInstanceSearchQuerySortRequest as gq, type ElementInstanceSearchQuery as gr, type ElementInstanceFilter as gs, type ElementInstanceStateFilterProperty as gt, type AdvancedElementInstanceStateFilter as gu, type ElementInstanceSearchQueryResult as gv, type ElementInstanceResult as gw, ElementInstanceStateEnum as gx, type AdHocSubProcessActivateActivitiesInstruction as gy, type AdHocSubProcessActivateActivityReference as gz, EventualConsistencyTimeoutError as h, type JobTypeStatisticsFilter as h$, type GlobalTaskListenerSearchQueryResult as h0, type GroupCreateRequest as h1, type GroupCreateResult as h2, type GroupUpdateRequest as h3, type GroupUpdateResult as h4, type GroupResult as h5, type GroupSearchQuerySortRequest as h6, type GroupSearchQueryRequest as h7, type GroupFilter as h8, type GroupSearchQueryResult as h9, type AdvancedElementIdFilter as hA, type ProcessDefinitionIdFilterProperty as hB, type AdvancedProcessDefinitionIdFilter as hC, type IncidentSearchQuery as hD, type IncidentFilter as hE, type IncidentErrorTypeFilterProperty as hF, type AdvancedIncidentErrorTypeFilter as hG, IncidentErrorTypeEnum as hH, type IncidentStateFilterProperty as hI, type AdvancedIncidentStateFilter as hJ, IncidentStateEnum as hK, type IncidentSearchQuerySortRequest as hL, type IncidentSearchQueryResult as hM, type IncidentResult as hN, type IncidentResolutionRequest as hO, type IncidentProcessInstanceStatisticsByErrorQuery as hP, type IncidentProcessInstanceStatisticsByErrorQueryResult as hQ, type IncidentProcessInstanceStatisticsByErrorResult as hR, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as hS, type IncidentProcessInstanceStatisticsByDefinitionQuery as hT, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as hU, type IncidentProcessInstanceStatisticsByDefinitionResult as hV, type IncidentProcessInstanceStatisticsByDefinitionFilter as hW, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as hX, type GlobalJobStatisticsQueryResult as hY, type StatusMetric as hZ, type JobTypeStatisticsQuery as h_, type GroupUserResult as ha, type GroupUserSearchResult as hb, type GroupUserSearchQueryRequest as hc, type GroupUserSearchQuerySortRequest as hd, type GroupClientResult as he, type GroupClientSearchResult as hf, type GroupClientSearchQueryRequest as hg, type GroupMappingRuleSearchResult as hh, type GroupRoleSearchResult as hi, type GroupClientSearchQuerySortRequest as hj, ProcessDefinitionId as hk, ElementId as hl, FormId as hm, DecisionDefinitionId as hn, GlobalListenerId as ho, TenantId as hp, Username as hq, RoleId as hr, GroupId as hs, MappingRuleId as ht, ClientId as hu, ClusterVariableName as hv, Tag as hw, type TagSet as hx, BusinessId as hy, type ElementIdFilterProperty as hz, isLeft as i, AuditLogKey as i$, type JobTypeStatisticsQueryResult as i0, type JobTypeStatisticsItem as i1, type JobWorkerStatisticsQuery as i2, type JobWorkerStatisticsFilter as i3, type JobWorkerStatisticsQueryResult as i4, type JobWorkerStatisticsItem as i5, type JobTimeSeriesStatisticsQuery as i6, type JobTimeSeriesStatisticsFilter as i7, type JobTimeSeriesStatisticsQueryResult as i8, type JobTimeSeriesStatisticsItem as i9, JobStateEnum as iA, JobKindEnum as iB, JobListenerEventTypeEnum as iC, type JobKindFilterProperty as iD, type AdvancedJobKindFilter as iE, type JobListenerEventTypeFilterProperty as iF, type AdvancedJobListenerEventTypeFilter as iG, type JobStateFilterProperty as iH, type AdvancedJobStateFilter as iI, type LongKey as iJ, ProcessInstanceKey as iK, ProcessDefinitionKey as iL, ElementInstanceKey as iM, UserTaskKey as iN, FormKey as iO, VariableKey as iP, type ScopeKey as iQ, IncidentKey as iR, JobKey as iS, DecisionDefinitionKey as iT, DecisionEvaluationInstanceKey as iU, DecisionEvaluationKey as iV, DecisionRequirementsKey as iW, DecisionInstanceKey as iX, BatchOperationKey as iY, type OperationReference as iZ, AgentInstanceKey as i_, type JobErrorStatisticsQuery as ia, type JobErrorStatisticsFilter as ib, type JobErrorStatisticsQueryResult as ic, type JobErrorStatisticsItem as id, type JobActivationRequest as ie, type JobActivationResult as ig, type ActivatedJobResult$1 as ih, type UserTaskProperties as ii, type JobSearchQuery as ij, type JobSearchQuerySortRequest as ik, type JobFilter as il, type JobSearchQueryResult as im, type JobSearchResult as io, type JobFailRequest as ip, type JobErrorRequest$1 as iq, type JobCompletionRequest as ir, type JobResult as is, type JobResultUserTask as it, type JobResultCorrections as iu, type JobResultAdHocSubProcess as iv, type JobResultActivateElement as iw, type JobUpdateRequest as ix, type JobChangeset as iy, TenantFilterEnum as iz, isSdkError as j, type ProcessDefinitionSearchQuerySortRequest as j$, type ProcessDefinitionKeyFilterProperty as j0, type AdvancedProcessDefinitionKeyFilter as j1, type ProcessInstanceKeyFilterProperty as j2, type AdvancedProcessInstanceKeyFilter as j3, type ElementInstanceKeyFilterProperty as j4, type AdvancedElementInstanceKeyFilter as j5, type JobKeyFilterProperty as j6, type AdvancedJobKeyFilter as j7, type DecisionDefinitionKeyFilterProperty as j8, type AdvancedDecisionDefinitionKeyFilter as j9, type MappingRuleSearchQueryRequest as jA, type MappingRuleFilter as jB, type MessageCorrelationRequest as jC, type MessageCorrelationResult as jD, type MessagePublicationRequest as jE, type MessagePublicationResult as jF, type MessageSubscriptionSearchQueryResult as jG, type MessageSubscriptionResult as jH, type MessageSubscriptionSearchQuerySortRequest as jI, type MessageSubscriptionSearchQuery as jJ, type MessageSubscriptionFilter as jK, type CorrelatedMessageSubscriptionSearchQueryResult as jL, type CorrelatedMessageSubscriptionResult as jM, type CorrelatedMessageSubscriptionSearchQuery as jN, type CorrelatedMessageSubscriptionSearchQuerySortRequest as jO, MessageSubscriptionStateEnum as jP, MessageSubscriptionTypeEnum as jQ, type CorrelatedMessageSubscriptionFilter as jR, type MessageSubscriptionTypeFilterProperty as jS, type AdvancedMessageSubscriptionTypeFilter as jT, type MessageSubscriptionStateFilterProperty as jU, type AdvancedMessageSubscriptionStateFilter as jV, type AdvancedMessageSubscriptionKeyFilter as jW, type MessageSubscriptionKeyFilterProperty as jX, MessageSubscriptionKey as jY, MessageKey as jZ, type ProblemDetail as j_, type ScopeKeyFilterProperty as ja, type AdvancedScopeKeyFilter as jb, type VariableKeyFilterProperty as jc, type AdvancedVariableKeyFilter as jd, type DecisionEvaluationInstanceKeyFilterProperty as je, type AdvancedDecisionEvaluationInstanceKeyFilter as jf, type AgentInstanceKeyFilterProperty as jg, type AdvancedAgentInstanceKeyFilter as jh, type AuditLogKeyFilterProperty as ji, type AdvancedAuditLogKeyFilter as jj, type FormKeyFilterProperty as jk, type AdvancedFormKeyFilter as jl, type DecisionEvaluationKeyFilterProperty as jm, type AdvancedDecisionEvaluationKeyFilter as jn, type DecisionRequirementsKeyFilterProperty as jo, type AdvancedDecisionRequirementsKeyFilter as jp, type LicenseResponse as jq, type MappingRuleCreateUpdateRequest as jr, type MappingRuleCreateRequest as js, type MappingRuleUpdateRequest as jt, type MappingRuleCreateUpdateResult as ju, type MappingRuleCreateResult as jv, type MappingRuleUpdateResult as jw, type MappingRuleSearchQueryResult as jx, type MappingRuleResult as jy, type MappingRuleSearchQuerySortRequest as jz, type EnrichedActivatedJob as k, type RoleResult as k$, type ProcessDefinitionSearchQuery as k0, type ProcessDefinitionFilter as k1, type ProcessDefinitionSearchQueryResult as k2, type ProcessDefinitionResult as k3, type ProcessDefinitionElementStatisticsQuery as k4, type ProcessDefinitionElementStatisticsQueryResult as k5, type ProcessElementStatisticsResult as k6, type ProcessDefinitionMessageSubscriptionStatisticsQuery as k7, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as k8, type ProcessDefinitionMessageSubscriptionStatisticsResult as k9, type ProcessInstanceCallHierarchyEntry as kA, type ProcessInstanceSequenceFlowsQueryResult as kB, type ProcessInstanceSequenceFlowResult as kC, type ProcessInstanceElementStatisticsQueryResult as kD, type ProcessInstanceMigrationInstruction as kE, type MigrateProcessInstanceMappingInstruction as kF, type ProcessInstanceModificationInstruction as kG, type ProcessInstanceModificationActivateInstruction as kH, type ModifyProcessInstanceVariableInstruction as kI, type ProcessInstanceModificationMoveInstruction as kJ, type SourceElementInstruction as kK, type SourceElementIdInstruction as kL, type SourceElementInstanceKeyInstruction as kM, type AncestorScopeInstruction as kN, type DirectAncestorKeyInstruction as kO, type InferredAncestorKeyInstruction as kP, type UseSourceParentKeyInstruction as kQ, type ProcessInstanceModificationTerminateInstruction as kR, type ProcessInstanceModificationTerminateByIdInstruction as kS, type ProcessInstanceModificationTerminateByKeyInstruction as kT, ProcessInstanceStateEnum as kU, type AdvancedProcessInstanceStateFilter as kV, type ProcessInstanceStateFilterProperty as kW, type RoleCreateRequest as kX, type RoleCreateResult as kY, type RoleUpdateRequest as kZ, type RoleUpdateResult as k_, type ProcessDefinitionInstanceStatisticsQuery as ka, type ProcessDefinitionInstanceStatisticsQueryResult as kb, type ProcessDefinitionInstanceStatisticsResult as kc, type ProcessDefinitionInstanceStatisticsQuerySortRequest as kd, type ProcessDefinitionInstanceVersionStatisticsQuery as ke, type ProcessDefinitionInstanceVersionStatisticsFilter as kf, type ProcessDefinitionInstanceVersionStatisticsQueryResult as kg, type ProcessDefinitionInstanceVersionStatisticsResult as kh, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as ki, type ProcessInstanceCreationInstruction as kj, type ProcessInstanceCreationInstructionById as kk, type ProcessInstanceCreationInstructionByKey as kl, type ProcessInstanceCreationStartInstruction as km, type ProcessInstanceCreationRuntimeInstruction as kn, type ProcessInstanceCreationTerminateInstruction as ko, type CreateProcessInstanceResult as kp, type ProcessInstanceSearchQuerySortRequest as kq, type ProcessInstanceSearchQuery as kr, type BaseProcessInstanceFilterFields as ks, type ProcessDefinitionStatisticsFilter as kt, type ProcessInstanceFilterFields as ku, type ProcessInstanceFilter as kv, type ProcessInstanceSearchQueryResult as kw, type ProcessInstanceResult as kx, type CancelProcessInstanceRequest as ky, type DeleteProcessInstanceRequest as kz, JobActionReceipt as l, type UserTaskUpdateRequest as l$, type RoleSearchQuerySortRequest as l0, type RoleSearchQueryRequest as l1, type RoleFilter as l2, type RoleSearchQueryResult as l3, type RoleUserResult as l4, type RoleUserSearchResult as l5, type RoleUserSearchQueryRequest as l6, type RoleUserSearchQuerySortRequest as l7, type RoleClientResult as l8, type RoleClientSearchResult as l9, type TenantUpdateResult as lA, type TenantResult as lB, type TenantSearchQuerySortRequest as lC, type TenantSearchQueryRequest as lD, type TenantFilter as lE, type TenantSearchQueryResult as lF, type TenantUserResult as lG, type TenantUserSearchResult as lH, type TenantUserSearchQueryRequest as lI, type TenantUserSearchQuerySortRequest as lJ, type TenantClientResult as lK, type TenantClientSearchResult as lL, type TenantClientSearchQueryRequest as lM, type TenantClientSearchQuerySortRequest as lN, type TenantGroupResult as lO, type TenantGroupSearchResult as lP, type TenantGroupSearchQueryRequest as lQ, type TenantRoleSearchResult as lR, type TenantMappingRuleSearchResult as lS, type TenantGroupSearchQuerySortRequest as lT, type UserTaskSearchQuerySortRequest as lU, type UserTaskSearchQuery as lV, type UserTaskFilter as lW, type UserTaskSearchQueryResult as lX, type UserTaskResult as lY, type UserTaskCompletionRequest as lZ, type UserTaskAssignmentRequest as l_, type RoleClientSearchQueryRequest as la, type RoleClientSearchQuerySortRequest as lb, type RoleGroupResult as lc, type RoleGroupSearchResult as ld, type RoleGroupSearchQueryRequest as le, type RoleMappingRuleSearchResult as lf, type RoleGroupSearchQuerySortRequest as lg, type SearchQueryRequest as lh, type SearchQueryPageRequest as li, type LimitPagination as lj, type OffsetPagination as lk, type CursorForwardPagination as ll, type CursorBackwardPagination as lm, type SearchQueryResponse as ln, SortOrderEnum as lo, type SearchQueryPageResponse as lp, type SignalBroadcastRequest as lq, type SignalBroadcastResult as lr, SignalKey as ls, type UsageMetricsResponse as lt, type UsageMetricsResponseItem as lu, type SystemConfigurationResponse as lv, type JobMetricsConfigurationResponse as lw, type TenantCreateRequest as lx, type TenantCreateResult as ly, type TenantUpdateRequest as lz, JobWorker as m, type DecisionEvaluationKeyExactMatch as m$, type Changeset as m0, type UserTaskVariableSearchQuerySortRequest as m1, type UserTaskVariableSearchQueryRequest as m2, type UserTaskEffectiveVariableSearchQueryRequest as m3, type UserTaskAuditLogSearchQueryRequest as m4, UserTaskStateEnum as m5, type UserTaskVariableFilter as m6, type UserTaskStateFilterProperty as m7, type AdvancedUserTaskStateFilter as m8, type UserTaskAuditLogFilter as m9, type BatchOperationStateExactMatch as mA, type BatchOperationItemStateExactMatch as mB, type ClusterVariableScopeExactMatch as mC, type DecisionInstanceStateExactMatch as mD, type DeploymentKeyExactMatch as mE, type ResourceKeyExactMatch as mF, type ElementInstanceStateExactMatch as mG, type GlobalListenerSourceExactMatch as mH, type GlobalTaskListenerEventTypeExactMatch as mI, type ElementIdExactMatch as mJ, type ProcessDefinitionIdExactMatch as mK, type IncidentErrorTypeExactMatch as mL, type IncidentStateExactMatch as mM, type JobKindExactMatch as mN, type JobListenerEventTypeExactMatch as mO, type JobStateExactMatch as mP, type ProcessDefinitionKeyExactMatch as mQ, type ProcessInstanceKeyExactMatch as mR, type ElementInstanceKeyExactMatch as mS, type JobKeyExactMatch as mT, type DecisionDefinitionKeyExactMatch as mU, type ScopeKeyExactMatch as mV, type VariableKeyExactMatch as mW, type DecisionEvaluationInstanceKeyExactMatch as mX, type AgentInstanceKeyExactMatch as mY, type AuditLogKeyExactMatch as mZ, type FormKeyExactMatch as m_, type UserRequest as ma, type UserCreateResult as mb, type UserUpdateRequest as mc, type UserUpdateResult as md, type UserResult as me, type UserSearchQuerySortRequest as mf, type UserSearchQueryRequest as mg, type UserFilter as mh, type UserSearchResult as mi, type VariableSearchQuerySortRequest as mj, type VariableSearchQuery as mk, type VariableFilter as ml, type VariableSearchQueryResult as mm, type VariableSearchResult as mn, type VariableResult as mo, type VariableResultBase as mp, type VariableValueFilterProperty as mq, type SetVariableRequest as mr, type AgentInstanceStatusExactMatch as ms, type AuditLogEntityKeyExactMatch as mt, type EntityTypeExactMatch as mu, type OperationTypeExactMatch as mv, type CategoryExactMatch as mw, type AuditLogResultExactMatch as mx, type AuditLogActorTypeExactMatch as my, type BatchOperationTypeExactMatch as mz, type JobWorkerConfig as n, type SearchBatchOperationsError as n$, type DecisionRequirementsKeyExactMatch as n0, type MessageSubscriptionTypeExactMatch as n1, type MessageSubscriptionStateExactMatch as n2, type MessageSubscriptionKeyExactMatch as n3, type ProcessInstanceStateExactMatch as n4, type UserTaskStateExactMatch as n5, type GetAgentInstanceData as n6, type GetAgentInstanceErrors as n7, type GetAgentInstanceError as n8, type GetAgentInstanceResponses as n9, type SearchAuthorizationsData as nA, type SearchAuthorizationsErrors as nB, type SearchAuthorizationsError as nC, type SearchAuthorizationsResponses as nD, type SearchAuthorizationsResponse as nE, type DeleteAuthorizationData as nF, type DeleteAuthorizationErrors as nG, type DeleteAuthorizationError as nH, type DeleteAuthorizationResponses as nI, type DeleteAuthorizationResponse as nJ, type GetAuthorizationData as nK, type GetAuthorizationErrors as nL, type GetAuthorizationError as nM, type GetAuthorizationResponses as nN, type GetAuthorizationResponse as nO, type UpdateAuthorizationData as nP, type UpdateAuthorizationErrors as nQ, type UpdateAuthorizationError as nR, type UpdateAuthorizationResponses as nS, type UpdateAuthorizationResponse as nT, type SearchBatchOperationItemsData as nU, type SearchBatchOperationItemsErrors as nV, type SearchBatchOperationItemsError as nW, type SearchBatchOperationItemsResponses as nX, type SearchBatchOperationItemsResponse as nY, type SearchBatchOperationsData as nZ, type SearchBatchOperationsErrors as n_, type GetAgentInstanceResponse as na, type SearchAgentInstancesData as nb, type SearchAgentInstancesErrors as nc, type SearchAgentInstancesError as nd, type SearchAgentInstancesResponses as ne, type SearchAgentInstancesResponse as nf, type SearchAuditLogsData as ng, type SearchAuditLogsErrors as nh, type SearchAuditLogsError as ni, type SearchAuditLogsResponses as nj, type SearchAuditLogsResponse as nk, type GetAuditLogData as nl, type GetAuditLogErrors as nm, type GetAuditLogError as nn, type GetAuditLogResponses as no, type GetAuditLogResponse as np, type GetAuthenticationData as nq, type GetAuthenticationErrors as nr, type GetAuthenticationError as ns, type GetAuthenticationResponses as nt, type GetAuthenticationResponse as nu, type CreateAuthorizationData as nv, type CreateAuthorizationErrors as nw, type CreateAuthorizationError as nx, type CreateAuthorizationResponses as ny, type CreateAuthorizationResponse as nz, type SupportLogger as o, type DeleteTenantClusterVariableErrors as o$, type SearchBatchOperationsResponses as o0, type SearchBatchOperationsResponse as o1, type GetBatchOperationData as o2, type GetBatchOperationErrors as o3, type GetBatchOperationError as o4, type GetBatchOperationResponses as o5, type GetBatchOperationResponse as o6, type CancelBatchOperationData as o7, type CancelBatchOperationErrors as o8, type CancelBatchOperationError as o9, type CreateGlobalClusterVariableResponse as oA, type DeleteGlobalClusterVariableData as oB, type DeleteGlobalClusterVariableErrors as oC, type DeleteGlobalClusterVariableError as oD, type DeleteGlobalClusterVariableResponses as oE, type DeleteGlobalClusterVariableResponse as oF, type GetGlobalClusterVariableData as oG, type GetGlobalClusterVariableErrors as oH, type GetGlobalClusterVariableError as oI, type GetGlobalClusterVariableResponses as oJ, type GetGlobalClusterVariableResponse as oK, type UpdateGlobalClusterVariableData as oL, type UpdateGlobalClusterVariableErrors as oM, type UpdateGlobalClusterVariableError as oN, type UpdateGlobalClusterVariableResponses as oO, type UpdateGlobalClusterVariableResponse as oP, type SearchClusterVariablesData as oQ, type SearchClusterVariablesErrors as oR, type SearchClusterVariablesError as oS, type SearchClusterVariablesResponses as oT, type SearchClusterVariablesResponse as oU, type CreateTenantClusterVariableData as oV, type CreateTenantClusterVariableErrors as oW, type CreateTenantClusterVariableError as oX, type CreateTenantClusterVariableResponses as oY, type CreateTenantClusterVariableResponse as oZ, type DeleteTenantClusterVariableData as o_, type CancelBatchOperationResponses as oa, type CancelBatchOperationResponse as ob, type ResumeBatchOperationData as oc, type ResumeBatchOperationErrors as od, type ResumeBatchOperationError as oe, type ResumeBatchOperationResponses as of, type ResumeBatchOperationResponse as og, type SuspendBatchOperationData as oh, type SuspendBatchOperationErrors as oi, type SuspendBatchOperationError as oj, type SuspendBatchOperationResponses as ok, type SuspendBatchOperationResponse as ol, type PinClockData as om, type PinClockErrors as on, type PinClockError as oo, type PinClockResponses as op, type PinClockResponse as oq, type ResetClockData as or, type ResetClockErrors as os, type ResetClockError as ot, type ResetClockResponses as ou, type ResetClockResponse as ov, type CreateGlobalClusterVariableData as ow, type CreateGlobalClusterVariableErrors as ox, type CreateGlobalClusterVariableError as oy, type CreateGlobalClusterVariableResponses as oz, type ThreadedJob as p, type SearchDecisionRequirementsData as p$, type DeleteTenantClusterVariableError as p0, type DeleteTenantClusterVariableResponses as p1, type DeleteTenantClusterVariableResponse as p2, type GetTenantClusterVariableData as p3, type GetTenantClusterVariableErrors as p4, type GetTenantClusterVariableError as p5, type GetTenantClusterVariableResponses as p6, type GetTenantClusterVariableResponse as p7, type UpdateTenantClusterVariableData as p8, type UpdateTenantClusterVariableErrors as p9, type GetDecisionDefinitionResponses as pA, type GetDecisionDefinitionResponse as pB, type GetDecisionDefinitionXmlData as pC, type GetDecisionDefinitionXmlErrors as pD, type GetDecisionDefinitionXmlError as pE, type GetDecisionDefinitionXmlResponses as pF, type GetDecisionDefinitionXmlResponse as pG, type SearchDecisionInstancesData as pH, type SearchDecisionInstancesErrors as pI, type SearchDecisionInstancesError as pJ, type SearchDecisionInstancesResponses as pK, type SearchDecisionInstancesResponse as pL, type GetDecisionInstanceData as pM, type GetDecisionInstanceErrors as pN, type GetDecisionInstanceError as pO, type GetDecisionInstanceResponses as pP, type GetDecisionInstanceResponse as pQ, type DeleteDecisionInstanceData as pR, type DeleteDecisionInstanceErrors as pS, type DeleteDecisionInstanceError as pT, type DeleteDecisionInstanceResponses as pU, type DeleteDecisionInstanceResponse as pV, type DeleteDecisionInstancesBatchOperationData as pW, type DeleteDecisionInstancesBatchOperationErrors as pX, type DeleteDecisionInstancesBatchOperationError as pY, type DeleteDecisionInstancesBatchOperationResponses as pZ, type DeleteDecisionInstancesBatchOperationResponse as p_, type UpdateTenantClusterVariableError as pa, type UpdateTenantClusterVariableResponses as pb, type UpdateTenantClusterVariableResponse as pc, type EvaluateConditionalsData as pd, type EvaluateConditionalsErrors as pe, type EvaluateConditionalsError as pf, type EvaluateConditionalsResponses as pg, type EvaluateConditionalsResponse as ph, type SearchCorrelatedMessageSubscriptionsData as pi, type SearchCorrelatedMessageSubscriptionsErrors as pj, type SearchCorrelatedMessageSubscriptionsError as pk, type SearchCorrelatedMessageSubscriptionsResponses as pl, type SearchCorrelatedMessageSubscriptionsResponse as pm, type EvaluateDecisionData as pn, type EvaluateDecisionErrors as po, type EvaluateDecisionError as pp, type EvaluateDecisionResponses as pq, type EvaluateDecisionResponse as pr, type SearchDecisionDefinitionsData as ps, type SearchDecisionDefinitionsErrors as pt, type SearchDecisionDefinitionsError as pu, type SearchDecisionDefinitionsResponses as pv, type SearchDecisionDefinitionsResponse as pw, type GetDecisionDefinitionData as px, type GetDecisionDefinitionErrors as py, type GetDecisionDefinitionError as pz, type ThreadedJobHandler as q, type SearchElementInstanceIncidentsResponse as q$, type SearchDecisionRequirementsErrors as q0, type SearchDecisionRequirementsError as q1, type SearchDecisionRequirementsResponses as q2, type SearchDecisionRequirementsResponse as q3, type GetDecisionRequirementsData as q4, type GetDecisionRequirementsErrors as q5, type GetDecisionRequirementsError as q6, type GetDecisionRequirementsResponses as q7, type GetDecisionRequirementsResponse as q8, type GetDecisionRequirementsXmlData as q9, type GetDocumentError as qA, type GetDocumentResponses as qB, type GetDocumentResponse as qC, type CreateDocumentLinkData as qD, type CreateDocumentLinkErrors as qE, type CreateDocumentLinkError as qF, type CreateDocumentLinkResponses as qG, type CreateDocumentLinkResponse as qH, type ActivateAdHocSubProcessActivitiesData as qI, type ActivateAdHocSubProcessActivitiesErrors as qJ, type ActivateAdHocSubProcessActivitiesError as qK, type ActivateAdHocSubProcessActivitiesResponses as qL, type ActivateAdHocSubProcessActivitiesResponse as qM, type SearchElementInstancesData as qN, type SearchElementInstancesErrors as qO, type SearchElementInstancesError as qP, type SearchElementInstancesResponses as qQ, type SearchElementInstancesResponse as qR, type GetElementInstanceData as qS, type GetElementInstanceErrors as qT, type GetElementInstanceError as qU, type GetElementInstanceResponses as qV, type GetElementInstanceResponse as qW, type SearchElementInstanceIncidentsData as qX, type SearchElementInstanceIncidentsErrors as qY, type SearchElementInstanceIncidentsError as qZ, type SearchElementInstanceIncidentsResponses as q_, type GetDecisionRequirementsXmlErrors as qa, type GetDecisionRequirementsXmlError as qb, type GetDecisionRequirementsXmlResponses as qc, type GetDecisionRequirementsXmlResponse as qd, type CreateDeploymentData as qe, type CreateDeploymentErrors as qf, type CreateDeploymentError as qg, type CreateDeploymentResponses as qh, type CreateDeploymentResponse as qi, type CreateDocumentData as qj, type CreateDocumentErrors as qk, type CreateDocumentError as ql, type CreateDocumentResponses as qm, type CreateDocumentResponse as qn, type CreateDocumentsData as qo, type CreateDocumentsErrors as qp, type CreateDocumentsError as qq, type CreateDocumentsResponses as qr, type CreateDocumentsResponse as qs, type DeleteDocumentData as qt, type DeleteDocumentErrors as qu, type DeleteDocumentError as qv, type DeleteDocumentResponses as qw, type DeleteDocumentResponse as qx, type GetDocumentData as qy, type GetDocumentErrors as qz, ThreadedJobWorker as r, type SearchClientsForGroupResponses as r$, type CreateElementInstanceVariablesData as r0, type CreateElementInstanceVariablesErrors as r1, type CreateElementInstanceVariablesError as r2, type CreateElementInstanceVariablesResponses as r3, type CreateElementInstanceVariablesResponse as r4, type EvaluateExpressionData as r5, type EvaluateExpressionErrors as r6, type EvaluateExpressionError as r7, type EvaluateExpressionResponses as r8, type EvaluateExpressionResponse as r9, type CreateGroupErrors as rA, type CreateGroupError as rB, type CreateGroupResponses as rC, type CreateGroupResponse as rD, type SearchGroupsData as rE, type SearchGroupsErrors as rF, type SearchGroupsError as rG, type SearchGroupsResponses as rH, type SearchGroupsResponse as rI, type DeleteGroupData as rJ, type DeleteGroupErrors as rK, type DeleteGroupError as rL, type DeleteGroupResponses as rM, type DeleteGroupResponse as rN, type GetGroupData as rO, type GetGroupErrors as rP, type GetGroupError as rQ, type GetGroupResponses as rR, type GetGroupResponse as rS, type UpdateGroupData as rT, type UpdateGroupErrors as rU, type UpdateGroupError as rV, type UpdateGroupResponses as rW, type UpdateGroupResponse as rX, type SearchClientsForGroupData as rY, type SearchClientsForGroupErrors as rZ, type SearchClientsForGroupError as r_, type CreateGlobalTaskListenerData as ra, type CreateGlobalTaskListenerErrors as rb, type CreateGlobalTaskListenerError as rc, type CreateGlobalTaskListenerResponses as rd, type CreateGlobalTaskListenerResponse as re, type DeleteGlobalTaskListenerData as rf, type DeleteGlobalTaskListenerErrors as rg, type DeleteGlobalTaskListenerError as rh, type DeleteGlobalTaskListenerResponses as ri, type DeleteGlobalTaskListenerResponse as rj, type GetGlobalTaskListenerData as rk, type GetGlobalTaskListenerErrors as rl, type GetGlobalTaskListenerError as rm, type GetGlobalTaskListenerResponses as rn, type GetGlobalTaskListenerResponse as ro, type UpdateGlobalTaskListenerData as rp, type UpdateGlobalTaskListenerErrors as rq, type UpdateGlobalTaskListenerError as rr, type UpdateGlobalTaskListenerResponses as rs, type UpdateGlobalTaskListenerResponse as rt, type SearchGlobalTaskListenersData as ru, type SearchGlobalTaskListenersErrors as rv, type SearchGlobalTaskListenersError as rw, type SearchGlobalTaskListenersResponses as rx, type SearchGlobalTaskListenersResponse as ry, type CreateGroupData as rz, type ThreadedJobWorkerConfig as s, type GetProcessInstanceStatisticsByDefinitionError as s$, type SearchClientsForGroupResponse as s0, type UnassignClientFromGroupData as s1, type UnassignClientFromGroupErrors as s2, type UnassignClientFromGroupError as s3, type UnassignClientFromGroupResponses as s4, type UnassignClientFromGroupResponse as s5, type AssignClientToGroupData as s6, type AssignClientToGroupErrors as s7, type AssignClientToGroupError as s8, type AssignClientToGroupResponses as s9, type UnassignUserFromGroupData as sA, type UnassignUserFromGroupErrors as sB, type UnassignUserFromGroupError as sC, type UnassignUserFromGroupResponses as sD, type UnassignUserFromGroupResponse as sE, type AssignUserToGroupData as sF, type AssignUserToGroupErrors as sG, type AssignUserToGroupError as sH, type AssignUserToGroupResponses as sI, type AssignUserToGroupResponse as sJ, type SearchIncidentsData as sK, type SearchIncidentsErrors as sL, type SearchIncidentsError as sM, type SearchIncidentsResponses as sN, type SearchIncidentsResponse as sO, type GetIncidentData as sP, type GetIncidentErrors as sQ, type GetIncidentError as sR, type GetIncidentResponses as sS, type GetIncidentResponse as sT, type ResolveIncidentData as sU, type ResolveIncidentErrors as sV, type ResolveIncidentError as sW, type ResolveIncidentResponses as sX, type ResolveIncidentResponse as sY, type GetProcessInstanceStatisticsByDefinitionData as sZ, type GetProcessInstanceStatisticsByDefinitionErrors as s_, type AssignClientToGroupResponse as sa, type SearchMappingRulesForGroupData as sb, type SearchMappingRulesForGroupErrors as sc, type SearchMappingRulesForGroupError as sd, type SearchMappingRulesForGroupResponses as se, type SearchMappingRulesForGroupResponse as sf, type UnassignMappingRuleFromGroupData as sg, type UnassignMappingRuleFromGroupErrors as sh, type UnassignMappingRuleFromGroupError as si, type UnassignMappingRuleFromGroupResponses as sj, type UnassignMappingRuleFromGroupResponse as sk, type AssignMappingRuleToGroupData as sl, type AssignMappingRuleToGroupErrors as sm, type AssignMappingRuleToGroupError as sn, type AssignMappingRuleToGroupResponses as so, type AssignMappingRuleToGroupResponse as sp, type SearchRolesForGroupData as sq, type SearchRolesForGroupErrors as sr, type SearchRolesForGroupError as ss, type SearchRolesForGroupResponses as st, type SearchRolesForGroupResponse as su, type SearchUsersForGroupData as sv, type SearchUsersForGroupErrors as sw, type SearchUsersForGroupError as sx, type SearchUsersForGroupResponses as sy, type SearchUsersForGroupResponse as sz, ThreadPool as t, type GetLicenseErrors as t$, type GetProcessInstanceStatisticsByDefinitionResponses as t0, type GetProcessInstanceStatisticsByDefinitionResponse as t1, type GetProcessInstanceStatisticsByErrorData as t2, type GetProcessInstanceStatisticsByErrorErrors as t3, type GetProcessInstanceStatisticsByErrorError as t4, type GetProcessInstanceStatisticsByErrorResponses as t5, type GetProcessInstanceStatisticsByErrorResponse as t6, type ActivateJobsData as t7, type ActivateJobsErrors as t8, type ActivateJobsError as t9, type FailJobResponse as tA, type GetGlobalJobStatisticsData as tB, type GetGlobalJobStatisticsErrors as tC, type GetGlobalJobStatisticsError as tD, type GetGlobalJobStatisticsResponses as tE, type GetGlobalJobStatisticsResponse as tF, type GetJobTypeStatisticsData as tG, type GetJobTypeStatisticsErrors as tH, type GetJobTypeStatisticsError as tI, type GetJobTypeStatisticsResponses as tJ, type GetJobTypeStatisticsResponse as tK, type GetJobWorkerStatisticsData as tL, type GetJobWorkerStatisticsErrors as tM, type GetJobWorkerStatisticsError as tN, type GetJobWorkerStatisticsResponses as tO, type GetJobWorkerStatisticsResponse as tP, type GetJobTimeSeriesStatisticsData as tQ, type GetJobTimeSeriesStatisticsErrors as tR, type GetJobTimeSeriesStatisticsError as tS, type GetJobTimeSeriesStatisticsResponses as tT, type GetJobTimeSeriesStatisticsResponse as tU, type GetJobErrorStatisticsData as tV, type GetJobErrorStatisticsErrors as tW, type GetJobErrorStatisticsError as tX, type GetJobErrorStatisticsResponses as tY, type GetJobErrorStatisticsResponse as tZ, type GetLicenseData as t_, type ActivateJobsResponses as ta, type ActivateJobsResponse as tb, type SearchJobsData as tc, type SearchJobsErrors as td, type SearchJobsError as te, type SearchJobsResponses as tf, type SearchJobsResponse as tg, type UpdateJobData as th, type UpdateJobErrors as ti, type UpdateJobError as tj, type UpdateJobResponses as tk, type UpdateJobResponse as tl, type CompleteJobData as tm, type CompleteJobErrors as tn, type CompleteJobError as to, type CompleteJobResponses as tp, type CompleteJobResponse as tq, type ThrowJobErrorData as tr, type ThrowJobErrorErrors as ts, type ThrowJobErrorError as tt, type ThrowJobErrorResponses as tu, type ThrowJobErrorResponse as tv, type FailJobData as tw, type FailJobErrors as tx, type FailJobError as ty, type FailJobResponses as tz, type CamundaConfig as u, type GetStartProcessFormData as u$, type GetLicenseError as u0, type GetLicenseResponses as u1, type GetLicenseResponse as u2, type CreateMappingRuleData as u3, type CreateMappingRuleErrors as u4, type CreateMappingRuleError as u5, type CreateMappingRuleResponses as u6, type CreateMappingRuleResponse as u7, type SearchMappingRuleData as u8, type SearchMappingRuleErrors as u9, type CorrelateMessageResponses as uA, type CorrelateMessageResponse as uB, type PublishMessageData as uC, type PublishMessageErrors as uD, type PublishMessageError as uE, type PublishMessageResponses as uF, type PublishMessageResponse as uG, type SearchProcessDefinitionsData as uH, type SearchProcessDefinitionsErrors as uI, type SearchProcessDefinitionsError as uJ, type SearchProcessDefinitionsResponses as uK, type SearchProcessDefinitionsResponse as uL, type GetProcessDefinitionMessageSubscriptionStatisticsData as uM, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as uN, type GetProcessDefinitionMessageSubscriptionStatisticsError as uO, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as uP, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as uQ, type GetProcessDefinitionInstanceStatisticsData as uR, type GetProcessDefinitionInstanceStatisticsErrors as uS, type GetProcessDefinitionInstanceStatisticsError as uT, type GetProcessDefinitionInstanceStatisticsResponses as uU, type GetProcessDefinitionInstanceStatisticsResponse as uV, type GetProcessDefinitionData as uW, type GetProcessDefinitionErrors as uX, type GetProcessDefinitionError as uY, type GetProcessDefinitionResponses as uZ, type GetProcessDefinitionResponse as u_, type SearchMappingRuleError as ua, type SearchMappingRuleResponses as ub, type SearchMappingRuleResponse as uc, type DeleteMappingRuleData as ud, type DeleteMappingRuleErrors as ue, type DeleteMappingRuleError as uf, type DeleteMappingRuleResponses as ug, type DeleteMappingRuleResponse as uh, type GetMappingRuleData as ui, type GetMappingRuleErrors as uj, type GetMappingRuleError as uk, type GetMappingRuleResponses as ul, type GetMappingRuleResponse as um, type UpdateMappingRuleData as un, type UpdateMappingRuleErrors as uo, type UpdateMappingRuleError as up, type UpdateMappingRuleResponses as uq, type UpdateMappingRuleResponse as ur, type SearchMessageSubscriptionsData as us, type SearchMessageSubscriptionsErrors as ut, type SearchMessageSubscriptionsError as uu, type SearchMessageSubscriptionsResponses as uv, type SearchMessageSubscriptionsResponse as uw, type CorrelateMessageData as ux, type CorrelateMessageErrors as uy, type CorrelateMessageError as uz, type activateAdHocSubProcessActivitiesInput as v, type GetProcessInstanceCallHierarchyResponse as v$, type GetStartProcessFormErrors as v0, type GetStartProcessFormError as v1, type GetStartProcessFormResponses as v2, type GetStartProcessFormResponse as v3, type GetProcessDefinitionStatisticsData as v4, type GetProcessDefinitionStatisticsErrors as v5, type GetProcessDefinitionStatisticsError as v6, type GetProcessDefinitionStatisticsResponses as v7, type GetProcessDefinitionStatisticsResponse as v8, type GetProcessDefinitionXmlData as v9, type ResolveIncidentsBatchOperationError as vA, type ResolveIncidentsBatchOperationResponses as vB, type ResolveIncidentsBatchOperationResponse as vC, type MigrateProcessInstancesBatchOperationData as vD, type MigrateProcessInstancesBatchOperationErrors as vE, type MigrateProcessInstancesBatchOperationError as vF, type MigrateProcessInstancesBatchOperationResponses as vG, type MigrateProcessInstancesBatchOperationResponse as vH, type ModifyProcessInstancesBatchOperationData as vI, type ModifyProcessInstancesBatchOperationErrors as vJ, type ModifyProcessInstancesBatchOperationError as vK, type ModifyProcessInstancesBatchOperationResponses as vL, type ModifyProcessInstancesBatchOperationResponse as vM, type SearchProcessInstancesData as vN, type SearchProcessInstancesErrors as vO, type SearchProcessInstancesError as vP, type SearchProcessInstancesResponses as vQ, type SearchProcessInstancesResponse as vR, type GetProcessInstanceData as vS, type GetProcessInstanceErrors as vT, type GetProcessInstanceError as vU, type GetProcessInstanceResponses as vV, type GetProcessInstanceResponse as vW, type GetProcessInstanceCallHierarchyData as vX, type GetProcessInstanceCallHierarchyErrors as vY, type GetProcessInstanceCallHierarchyError as vZ, type GetProcessInstanceCallHierarchyResponses as v_, type GetProcessDefinitionXmlErrors as va, type GetProcessDefinitionXmlError as vb, type GetProcessDefinitionXmlResponses as vc, type GetProcessDefinitionXmlResponse as vd, type GetProcessDefinitionInstanceVersionStatisticsData as ve, type GetProcessDefinitionInstanceVersionStatisticsErrors as vf, type GetProcessDefinitionInstanceVersionStatisticsError as vg, type GetProcessDefinitionInstanceVersionStatisticsResponses as vh, type GetProcessDefinitionInstanceVersionStatisticsResponse as vi, type CreateProcessInstanceData as vj, type CreateProcessInstanceErrors as vk, type CreateProcessInstanceError as vl, type CreateProcessInstanceResponses as vm, type CreateProcessInstanceResponse as vn, type CancelProcessInstancesBatchOperationData as vo, type CancelProcessInstancesBatchOperationErrors as vp, type CancelProcessInstancesBatchOperationError as vq, type CancelProcessInstancesBatchOperationResponses as vr, type CancelProcessInstancesBatchOperationResponse as vs, type DeleteProcessInstancesBatchOperationData as vt, type DeleteProcessInstancesBatchOperationErrors as vu, type DeleteProcessInstancesBatchOperationError as vv, type DeleteProcessInstancesBatchOperationResponses as vw, type DeleteProcessInstancesBatchOperationResponse as vx, type ResolveIncidentsBatchOperationData as vy, type ResolveIncidentsBatchOperationErrors as vz, type activateJobsInput as w, type CreateRoleResponses as w$, type CancelProcessInstanceData as w0, type CancelProcessInstanceErrors as w1, type CancelProcessInstanceError as w2, type CancelProcessInstanceResponses as w3, type CancelProcessInstanceResponse as w4, type DeleteProcessInstanceData as w5, type DeleteProcessInstanceErrors as w6, type DeleteProcessInstanceError as w7, type DeleteProcessInstanceResponses as w8, type DeleteProcessInstanceResponse as w9, type GetProcessInstanceStatisticsErrors as wA, type GetProcessInstanceStatisticsError as wB, type GetProcessInstanceStatisticsResponses as wC, type GetProcessInstanceStatisticsResponse as wD, type SearchResourcesData as wE, type SearchResourcesErrors as wF, type SearchResourcesError as wG, type SearchResourcesResponses as wH, type SearchResourcesResponse as wI, type GetResourceData as wJ, type GetResourceErrors as wK, type GetResourceError as wL, type GetResourceResponses as wM, type GetResourceResponse as wN, type GetResourceContentData as wO, type GetResourceContentErrors as wP, type GetResourceContentError as wQ, type GetResourceContentResponses as wR, type GetResourceContentResponse as wS, type DeleteResourceData as wT, type DeleteResourceErrors as wU, type DeleteResourceError as wV, type DeleteResourceResponses as wW, type DeleteResourceResponse2 as wX, type CreateRoleData as wY, type CreateRoleErrors as wZ, type CreateRoleError as w_, type ResolveProcessInstanceIncidentsData as wa, type ResolveProcessInstanceIncidentsErrors as wb, type ResolveProcessInstanceIncidentsError as wc, type ResolveProcessInstanceIncidentsResponses as wd, type ResolveProcessInstanceIncidentsResponse as we, type SearchProcessInstanceIncidentsData as wf, type SearchProcessInstanceIncidentsErrors as wg, type SearchProcessInstanceIncidentsError as wh, type SearchProcessInstanceIncidentsResponses as wi, type SearchProcessInstanceIncidentsResponse as wj, type MigrateProcessInstanceData as wk, type MigrateProcessInstanceErrors as wl, type MigrateProcessInstanceError as wm, type MigrateProcessInstanceResponses as wn, type MigrateProcessInstanceResponse as wo, type ModifyProcessInstanceData as wp, type ModifyProcessInstanceErrors as wq, type ModifyProcessInstanceError as wr, type ModifyProcessInstanceResponses as ws, type ModifyProcessInstanceResponse as wt, type GetProcessInstanceSequenceFlowsData as wu, type GetProcessInstanceSequenceFlowsErrors as wv, type GetProcessInstanceSequenceFlowsError as ww, type GetProcessInstanceSequenceFlowsResponses as wx, type GetProcessInstanceSequenceFlowsResponse as wy, type GetProcessInstanceStatisticsData as wz, type assignClientToGroupInput as x, type AssignRoleToMappingRuleError as x$, type CreateRoleResponse as x0, type SearchRolesData as x1, type SearchRolesErrors as x2, type SearchRolesError as x3, type SearchRolesResponses as x4, type SearchRolesResponse as x5, type DeleteRoleData as x6, type DeleteRoleErrors as x7, type DeleteRoleError as x8, type DeleteRoleResponses as x9, type SearchGroupsForRoleData as xA, type SearchGroupsForRoleErrors as xB, type SearchGroupsForRoleError as xC, type SearchGroupsForRoleResponses as xD, type SearchGroupsForRoleResponse as xE, type UnassignRoleFromGroupData as xF, type UnassignRoleFromGroupErrors as xG, type UnassignRoleFromGroupError as xH, type UnassignRoleFromGroupResponses as xI, type UnassignRoleFromGroupResponse as xJ, type AssignRoleToGroupData as xK, type AssignRoleToGroupErrors as xL, type AssignRoleToGroupError as xM, type AssignRoleToGroupResponses as xN, type AssignRoleToGroupResponse as xO, type SearchMappingRulesForRoleData as xP, type SearchMappingRulesForRoleErrors as xQ, type SearchMappingRulesForRoleError as xR, type SearchMappingRulesForRoleResponses as xS, type SearchMappingRulesForRoleResponse as xT, type UnassignRoleFromMappingRuleData as xU, type UnassignRoleFromMappingRuleErrors as xV, type UnassignRoleFromMappingRuleError as xW, type UnassignRoleFromMappingRuleResponses as xX, type UnassignRoleFromMappingRuleResponse as xY, type AssignRoleToMappingRuleData as xZ, type AssignRoleToMappingRuleErrors as x_, type DeleteRoleResponse as xa, type GetRoleData as xb, type GetRoleErrors as xc, type GetRoleError as xd, type GetRoleResponses as xe, type GetRoleResponse as xf, type UpdateRoleData as xg, type UpdateRoleErrors as xh, type UpdateRoleError as xi, type UpdateRoleResponses as xj, type UpdateRoleResponse as xk, type SearchClientsForRoleData as xl, type SearchClientsForRoleErrors as xm, type SearchClientsForRoleError as xn, type SearchClientsForRoleResponses as xo, type SearchClientsForRoleResponse as xp, type UnassignRoleFromClientData as xq, type UnassignRoleFromClientErrors as xr, type UnassignRoleFromClientError as xs, type UnassignRoleFromClientResponses as xt, type UnassignRoleFromClientResponse as xu, type AssignRoleToClientData as xv, type AssignRoleToClientErrors as xw, type AssignRoleToClientError as xx, type AssignRoleToClientResponses as xy, type AssignRoleToClientResponse as xz, type assignClientToTenantInput as y, type UpdateTenantError as y$, type AssignRoleToMappingRuleResponses as y0, type AssignRoleToMappingRuleResponse as y1, type SearchUsersForRoleData as y2, type SearchUsersForRoleErrors as y3, type SearchUsersForRoleError as y4, type SearchUsersForRoleResponses as y5, type SearchUsersForRoleResponse as y6, type UnassignRoleFromUserData as y7, type UnassignRoleFromUserErrors as y8, type UnassignRoleFromUserError as y9, type GetSystemConfigurationData as yA, type GetSystemConfigurationErrors as yB, type GetSystemConfigurationError as yC, type GetSystemConfigurationResponses as yD, type GetSystemConfigurationResponse as yE, type CreateTenantData as yF, type CreateTenantErrors as yG, type CreateTenantError as yH, type CreateTenantResponses as yI, type CreateTenantResponse as yJ, type SearchTenantsData as yK, type SearchTenantsErrors as yL, type SearchTenantsError as yM, type SearchTenantsResponses as yN, type SearchTenantsResponse as yO, type DeleteTenantData as yP, type DeleteTenantErrors as yQ, type DeleteTenantError as yR, type DeleteTenantResponses as yS, type DeleteTenantResponse as yT, type GetTenantData as yU, type GetTenantErrors as yV, type GetTenantError as yW, type GetTenantResponses as yX, type GetTenantResponse as yY, type UpdateTenantData as yZ, type UpdateTenantErrors as y_, type UnassignRoleFromUserResponses as ya, type UnassignRoleFromUserResponse as yb, type AssignRoleToUserData as yc, type AssignRoleToUserErrors as yd, type AssignRoleToUserError as ye, type AssignRoleToUserResponses as yf, type AssignRoleToUserResponse as yg, type CreateAdminUserData as yh, type CreateAdminUserErrors as yi, type CreateAdminUserError as yj, type CreateAdminUserResponses as yk, type CreateAdminUserResponse as yl, type BroadcastSignalData as ym, type BroadcastSignalErrors as yn, type BroadcastSignalError as yo, type BroadcastSignalResponses as yp, type BroadcastSignalResponse as yq, type GetStatusData as yr, type GetStatusErrors as ys, type GetStatusResponses as yt, type GetStatusResponse as yu, type GetUsageMetricsData as yv, type GetUsageMetricsErrors as yw, type GetUsageMetricsError as yx, type GetUsageMetricsResponses as yy, type GetUsageMetricsResponse as yz, type assignGroupToTenantInput as z, type AssignUserToTenantErrors as z$, type UpdateTenantResponses as z0, type UpdateTenantResponse as z1, type SearchClientsForTenantData as z2, type SearchClientsForTenantResponses as z3, type SearchClientsForTenantResponse as z4, type UnassignClientFromTenantData as z5, type UnassignClientFromTenantErrors as z6, type UnassignClientFromTenantError as z7, type UnassignClientFromTenantResponses as z8, type UnassignClientFromTenantResponse as z9, type AssignMappingRuleToTenantData as zA, type AssignMappingRuleToTenantErrors as zB, type AssignMappingRuleToTenantError as zC, type AssignMappingRuleToTenantResponses as zD, type AssignMappingRuleToTenantResponse as zE, type SearchRolesForTenantData as zF, type SearchRolesForTenantResponses as zG, type SearchRolesForTenantResponse as zH, type UnassignRoleFromTenantData as zI, type UnassignRoleFromTenantErrors as zJ, type UnassignRoleFromTenantError as zK, type UnassignRoleFromTenantResponses as zL, type UnassignRoleFromTenantResponse as zM, type AssignRoleToTenantData as zN, type AssignRoleToTenantErrors as zO, type AssignRoleToTenantError as zP, type AssignRoleToTenantResponses as zQ, type AssignRoleToTenantResponse as zR, type SearchUsersForTenantData as zS, type SearchUsersForTenantResponses as zT, type SearchUsersForTenantResponse as zU, type UnassignUserFromTenantData as zV, type UnassignUserFromTenantErrors as zW, type UnassignUserFromTenantError as zX, type UnassignUserFromTenantResponses as zY, type UnassignUserFromTenantResponse as zZ, type AssignUserToTenantData as z_, type AssignClientToTenantData as za, type AssignClientToTenantErrors as zb, type AssignClientToTenantError as zc, type AssignClientToTenantResponses as zd, type AssignClientToTenantResponse as ze, type SearchGroupIdsForTenantData as zf, type SearchGroupIdsForTenantResponses as zg, type SearchGroupIdsForTenantResponse as zh, type UnassignGroupFromTenantData as zi, type UnassignGroupFromTenantErrors as zj, type UnassignGroupFromTenantError as zk, type UnassignGroupFromTenantResponses as zl, type UnassignGroupFromTenantResponse as zm, type AssignGroupToTenantData as zn, type AssignGroupToTenantErrors as zo, type AssignGroupToTenantError as zp, type AssignGroupToTenantResponses as zq, type AssignGroupToTenantResponse as zr, type SearchMappingRulesForTenantData as zs, type SearchMappingRulesForTenantResponses as zt, type SearchMappingRulesForTenantResponse as zu, type UnassignMappingRuleFromTenantData as zv, type UnassignMappingRuleFromTenantErrors as zw, type UnassignMappingRuleFromTenantError as zx, type UnassignMappingRuleFromTenantResponses as zy, type UnassignMappingRuleFromTenantResponse as zz };
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 };