@camunda8/orchestration-cluster-api 10.0.0-alpha.4 → 10.0.0-alpha.6

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.
@@ -753,6 +753,325 @@ type CamundaKey<T extends string = string> = string & {
753
753
  type ClientOptions = {
754
754
  baseUrl: '{schema}://{host}:{port}/v2' | (string & {});
755
755
  };
756
+ type AgentInstanceSearchQuerySortRequest = {
757
+ /**
758
+ * The field to sort by.
759
+ */
760
+ field: 'creationDate' | 'lastUpdatedDate' | 'completionDate' | 'status';
761
+ order?: SortOrderEnum;
762
+ };
763
+ /**
764
+ * Agent instance search request.
765
+ */
766
+ type AgentInstanceSearchQuery = SearchQueryRequest & {
767
+ /**
768
+ * Sort field criteria.
769
+ */
770
+ sort?: Array<AgentInstanceSearchQuerySortRequest>;
771
+ /**
772
+ * The agent instance search filters.
773
+ */
774
+ filter?: AgentInstanceFilter;
775
+ };
776
+ /**
777
+ * Agent instance search filter.
778
+ */
779
+ type AgentInstanceFilter = {
780
+ /**
781
+ * The unique key of the agent instance.
782
+ */
783
+ agentInstanceKey?: AgentInstanceKeyFilterProperty;
784
+ /**
785
+ * The current status of the agent instance.
786
+ */
787
+ status?: AgentInstanceStatusFilterProperty;
788
+ /**
789
+ * The BPMN element ID of the agent task.
790
+ */
791
+ elementId?: ElementIdFilterProperty;
792
+ /**
793
+ * The key of the process instance that owns this agent instance.
794
+ */
795
+ processInstanceKey?: ProcessInstanceKeyFilterProperty;
796
+ /**
797
+ * The key of the process definition associated with this agent instance.
798
+ */
799
+ processDefinitionKey?: ProcessDefinitionKeyFilterProperty;
800
+ /**
801
+ * The tenant ID of the agent instance.
802
+ */
803
+ tenantId?: StringFilterProperty;
804
+ /**
805
+ * The creation date of the agent instance.
806
+ */
807
+ creationDate?: DateTimeFilterProperty;
808
+ /**
809
+ * The date the agent instance was last updated.
810
+ */
811
+ lastUpdatedDate?: DateTimeFilterProperty;
812
+ /**
813
+ * The completion date of the agent instance.
814
+ */
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>;
821
+ };
822
+ /**
823
+ * Agent instance search response.
824
+ */
825
+ type AgentInstanceSearchQueryResult = SearchQueryResponse & {
826
+ /**
827
+ * The matching agent instances.
828
+ */
829
+ items: Array<AgentInstanceResult>;
830
+ };
831
+ type AgentInstanceResult = {
832
+ /**
833
+ * The unique key for this agent instance.
834
+ */
835
+ agentInstanceKey: AgentInstanceKey;
836
+ status: AgentInstanceStatusEnum;
837
+ /**
838
+ * The static definition of the agent, including model, provider, and system prompt.
839
+ */
840
+ definition: AgentInstanceDefinition;
841
+ /**
842
+ * Aggregated metrics across all iterations of this agent instance.
843
+ */
844
+ metrics: AgentInstanceMetrics;
845
+ /**
846
+ * The configured limits for this agent instance, set once at creation.
847
+ */
848
+ limits: AgentInstanceLimits;
849
+ /**
850
+ * The tools available to the agent.
851
+ */
852
+ tools: Array<AgentTool>;
853
+ /**
854
+ * The BPMN element ID of the ad-hoc sub-process or AI agent task that owns this agent instance.
855
+ */
856
+ elementId: ElementId;
857
+ /**
858
+ * The key of the process instance that owns this agent instance.
859
+ */
860
+ processInstanceKey: ProcessInstanceKey;
861
+ /**
862
+ * The key of the process definition associated with this agent instance.
863
+ */
864
+ processDefinitionKey: ProcessDefinitionKey;
865
+ /**
866
+ * The tenant ID of this agent instance.
867
+ */
868
+ tenantId: TenantId;
869
+ /**
870
+ * The date when this agent instance was created.
871
+ */
872
+ creationDate: string;
873
+ /**
874
+ * The date when this agent instance was last updated.
875
+ */
876
+ lastUpdatedDate: string;
877
+ /**
878
+ * The date when this agent instance completed. Null while the agent is still running.
879
+ */
880
+ completionDate: string | null;
881
+ /**
882
+ * The keys of all element instances associated with this agent instance.
883
+ */
884
+ elementInstanceKeys: Array<ElementInstanceKey>;
885
+ };
886
+ /**
887
+ * The static definition of an agent instance, set once at creation.
888
+ */
889
+ type AgentInstanceDefinition = {
890
+ /**
891
+ * The LLM model identifier (for example, gpt-4o).
892
+ */
893
+ model: string;
894
+ /**
895
+ * The LLM provider (for example, openai or anthropic).
896
+ */
897
+ provider: string;
898
+ /**
899
+ * The system prompt configured for this agent instance.
900
+ */
901
+ systemPrompt: string;
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
+ };
920
+ /**
921
+ * Aggregated metrics for an agent instance across all model calls.
922
+ */
923
+ type AgentInstanceMetrics = {
924
+ /**
925
+ * Total input tokens consumed across all model calls.
926
+ */
927
+ inputTokens: number;
928
+ /**
929
+ * Total output tokens produced across all model calls.
930
+ */
931
+ outputTokens: number;
932
+ /**
933
+ * Total number of LLM calls made.
934
+ */
935
+ modelCalls: number;
936
+ /**
937
+ * Total number of tool calls made.
938
+ */
939
+ toolCalls: number;
940
+ };
941
+ /**
942
+ * The configured limits for an agent instance, set once at creation.
943
+ */
944
+ type AgentInstanceLimits = {
945
+ /**
946
+ * Maximum LLM calls allowed. -1 if no limit is configured.
947
+ */
948
+ maxModelCalls: number;
949
+ /**
950
+ * Maximum tool calls allowed. -1 if no limit is configured.
951
+ */
952
+ maxToolCalls: number;
953
+ /**
954
+ * Maximum total tokens allowed. -1 if no limit is configured.
955
+ */
956
+ maxTokens: number;
957
+ };
958
+ /**
959
+ * The current status of an agent instance.
960
+ */
961
+ declare const AgentInstanceStatusEnum: {
962
+ readonly COMPLETED: "COMPLETED";
963
+ readonly IDLE: "IDLE";
964
+ readonly INITIALIZING: "INITIALIZING";
965
+ readonly THINKING: "THINKING";
966
+ readonly TOOL_CALLING: "TOOL_CALLING";
967
+ readonly TOOL_DISCOVERY: "TOOL_DISCOVERY";
968
+ };
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
+ };
1047
+ /**
1048
+ * AgentInstanceStatusEnum property with full advanced search capabilities.
1049
+ */
1050
+ type AgentInstanceStatusFilterProperty = AgentInstanceStatusExactMatch | AdvancedAgentInstanceStatusFilter;
1051
+ /**
1052
+ * Advanced filter
1053
+ *
1054
+ * Advanced AgentInstanceStatusEnum filter.
1055
+ */
1056
+ type AdvancedAgentInstanceStatusFilter = {
1057
+ /**
1058
+ * Checks for equality with the provided value.
1059
+ */
1060
+ $eq?: AgentInstanceStatusEnum;
1061
+ /**
1062
+ * Checks for inequality with the provided value.
1063
+ */
1064
+ $neq?: AgentInstanceStatusEnum;
1065
+ /**
1066
+ * Checks if the current property exists.
1067
+ */
1068
+ $exists?: boolean;
1069
+ /**
1070
+ * Checks if the property matches any of the provided values.
1071
+ */
1072
+ $in?: Array<AgentInstanceStatusEnum>;
1073
+ $like?: LikeFilter;
1074
+ };
756
1075
  /**
757
1076
  * Audit log item.
758
1077
  */
@@ -1970,7 +2289,7 @@ type CreateClusterVariableRequest = {
1970
2289
  /**
1971
2290
  * The name of the cluster variable. Must be unique within its scope (global or tenant-specific).
1972
2291
  */
1973
- name: string;
2292
+ name: ClusterVariableName;
1974
2293
  /**
1975
2294
  * The value of the cluster variable. Can be any JSON object or primitive value. Will be serialized as a JSON string in responses.
1976
2295
  */
@@ -2012,7 +2331,7 @@ type ClusterVariableResultBase = {
2012
2331
  /**
2013
2332
  * The name of the cluster variable. Unique within its scope (global or tenant-specific).
2014
2333
  */
2015
- name: string;
2334
+ name: ClusterVariableName;
2016
2335
  scope: ClusterVariableScopeEnum;
2017
2336
  /**
2018
2337
  * Only provided if the cluster variable scope is TENANT. Null for global scope variables.
@@ -3128,6 +3447,62 @@ type AdvancedResourceKeyFilter = {
3128
3447
  */
3129
3448
  $notIn?: Array<ResourceKey>;
3130
3449
  };
3450
+ type ResourceSearchQuerySortRequest = {
3451
+ /**
3452
+ * The field to sort by.
3453
+ */
3454
+ field: 'resourceKey' | 'resourceName' | 'resourceId' | 'version' | 'versionTag' | 'deploymentKey' | 'tenantId';
3455
+ order?: SortOrderEnum;
3456
+ };
3457
+ type ResourceSearchQuery = SearchQueryRequest & {
3458
+ /**
3459
+ * Sort field criteria.
3460
+ */
3461
+ sort?: Array<ResourceSearchQuerySortRequest>;
3462
+ /**
3463
+ * The resource search filters.
3464
+ */
3465
+ filter?: ResourceFilter;
3466
+ };
3467
+ /**
3468
+ * Resource search filter.
3469
+ */
3470
+ type ResourceFilter = {
3471
+ /**
3472
+ * The key for this resource.
3473
+ */
3474
+ resourceKey?: ResourceKeyFilterProperty;
3475
+ /**
3476
+ * Resource name of this resource.
3477
+ */
3478
+ resourceName?: StringFilterProperty;
3479
+ /**
3480
+ * Resource ID of this resource.
3481
+ */
3482
+ resourceId?: StringFilterProperty;
3483
+ /**
3484
+ * Version of this resource.
3485
+ */
3486
+ version?: IntegerFilterProperty;
3487
+ /**
3488
+ * Version tag of this resource.
3489
+ */
3490
+ versionTag?: StringFilterProperty;
3491
+ /**
3492
+ * Deployment key of this resource.
3493
+ */
3494
+ deploymentKey?: DeploymentKeyFilterProperty;
3495
+ /**
3496
+ * Tenant ID of this resource.
3497
+ */
3498
+ tenantId?: TenantId;
3499
+ };
3500
+ type ResourceSearchQueryResult = SearchQueryResponse & {
3501
+ /**
3502
+ * The matching resources.
3503
+ */
3504
+ items: Array<ResourceResult>;
3505
+ };
3131
3506
  type DocumentReference = {
3132
3507
  /**
3133
3508
  * Document discriminator. Always set to "camunda".
@@ -3843,7 +4218,7 @@ type GroupCreateRequest = {
3843
4218
  /**
3844
4219
  * The ID of the new group.
3845
4220
  */
3846
- groupId: string;
4221
+ groupId: GroupId;
3847
4222
  /**
3848
4223
  * The display name of the new group.
3849
4224
  */
@@ -3857,7 +4232,7 @@ type GroupCreateResult = {
3857
4232
  /**
3858
4233
  * The ID of the created group.
3859
4234
  */
3860
- groupId: string;
4235
+ groupId: GroupId;
3861
4236
  /**
3862
4237
  * The display name of the created group.
3863
4238
  */
@@ -3879,9 +4254,9 @@ type GroupUpdateRequest = {
3879
4254
  };
3880
4255
  type GroupUpdateResult = {
3881
4256
  /**
3882
- * The unique external group ID.
4257
+ * The unique group ID.
3883
4258
  */
3884
- groupId: string;
4259
+ groupId: GroupId;
3885
4260
  /**
3886
4261
  * The name of the group.
3887
4262
  */
@@ -3902,7 +4277,7 @@ type GroupResult = {
3902
4277
  /**
3903
4278
  * The group ID.
3904
4279
  */
3905
- groupId: string;
4280
+ groupId: GroupId;
3906
4281
  /**
3907
4282
  * The group description.
3908
4283
  */
@@ -3976,7 +4351,7 @@ type GroupClientResult = {
3976
4351
  /**
3977
4352
  * The ID of the client.
3978
4353
  */
3979
- clientId: string;
4354
+ clientId: ClientId;
3980
4355
  };
3981
4356
  type GroupClientSearchResult = SearchQueryResponse & {
3982
4357
  /**
@@ -5620,6 +5995,37 @@ type AdvancedDecisionEvaluationInstanceKeyFilter = {
5620
5995
  */
5621
5996
  $notIn?: Array<DecisionEvaluationInstanceKey>;
5622
5997
  };
5998
+ /**
5999
+ * AgentInstanceKey property with full advanced search capabilities.
6000
+ */
6001
+ type AgentInstanceKeyFilterProperty = AgentInstanceKeyExactMatch | AdvancedAgentInstanceKeyFilter;
6002
+ /**
6003
+ * Advanced filter
6004
+ *
6005
+ * Advanced AgentInstanceKey filter.
6006
+ */
6007
+ type AdvancedAgentInstanceKeyFilter = {
6008
+ /**
6009
+ * Checks for equality with the provided value.
6010
+ */
6011
+ $eq?: AgentInstanceKey;
6012
+ /**
6013
+ * Checks for inequality with the provided value.
6014
+ */
6015
+ $neq?: AgentInstanceKey;
6016
+ /**
6017
+ * Checks if the current property exists.
6018
+ */
6019
+ $exists?: boolean;
6020
+ /**
6021
+ * Checks if the property matches any of the provided values.
6022
+ */
6023
+ $in?: Array<AgentInstanceKey>;
6024
+ /**
6025
+ * Checks if the property matches none of the provided values.
6026
+ */
6027
+ $notIn?: Array<AgentInstanceKey>;
6028
+ };
5623
6029
  /**
5624
6030
  * AuditLogKey property with full advanced search capabilities.
5625
6031
  */
@@ -5783,7 +6189,7 @@ type MappingRuleCreateRequest = MappingRuleCreateUpdateRequest & {
5783
6189
  /**
5784
6190
  * The unique ID of the mapping rule.
5785
6191
  */
5786
- mappingRuleId: string;
6192
+ mappingRuleId: MappingRuleId;
5787
6193
  };
5788
6194
  type MappingRuleUpdateRequest = MappingRuleCreateUpdateRequest;
5789
6195
  type MappingRuleCreateUpdateResult = {
@@ -5802,7 +6208,7 @@ type MappingRuleCreateUpdateResult = {
5802
6208
  /**
5803
6209
  * The unique ID of the mapping rule.
5804
6210
  */
5805
- mappingRuleId: string;
6211
+ mappingRuleId: MappingRuleId;
5806
6212
  };
5807
6213
  type MappingRuleCreateResult = MappingRuleCreateUpdateResult;
5808
6214
  type MappingRuleUpdateResult = MappingRuleCreateUpdateResult;
@@ -5828,7 +6234,7 @@ type MappingRuleResult = {
5828
6234
  /**
5829
6235
  * The ID of the mapping rule.
5830
6236
  */
5831
- mappingRuleId: string;
6237
+ mappingRuleId: MappingRuleId;
5832
6238
  };
5833
6239
  type MappingRuleSearchQuerySortRequest = {
5834
6240
  /**
@@ -5866,7 +6272,7 @@ type MappingRuleFilter = {
5866
6272
  /**
5867
6273
  * The ID of the mapping rule.
5868
6274
  */
5869
- mappingRuleId?: string;
6275
+ mappingRuleId?: MappingRuleId;
5870
6276
  };
5871
6277
  type MessageCorrelationRequest = {
5872
6278
  /**
@@ -6008,11 +6414,12 @@ type MessageSubscriptionResult = {
6008
6414
  correlationKey: string | null;
6009
6415
  messageSubscriptionType: MessageSubscriptionTypeEnum;
6010
6416
  /**
6011
- * The `zeebe:properties` extension properties extracted from the BPMN element associated
6012
- * 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.
6013
6420
  *
6014
6421
  */
6015
- extensionProperties: {
6422
+ toolProperties: {
6016
6423
  [key: string]: string;
6017
6424
  };
6018
6425
  /**
@@ -7517,7 +7924,7 @@ type RoleCreateRequest = {
7517
7924
  /**
7518
7925
  * The ID of the new role.
7519
7926
  */
7520
- roleId: string;
7927
+ roleId: RoleId;
7521
7928
  /**
7522
7929
  * The display name of the new role.
7523
7930
  */
@@ -7531,7 +7938,7 @@ type RoleCreateResult = {
7531
7938
  /**
7532
7939
  * The ID of the created role.
7533
7940
  */
7534
- roleId: string;
7941
+ roleId: RoleId;
7535
7942
  /**
7536
7943
  * The display name of the created role.
7537
7944
  */
@@ -7563,7 +7970,7 @@ type RoleUpdateResult = {
7563
7970
  /**
7564
7971
  * The ID of the updated role.
7565
7972
  */
7566
- roleId: string;
7973
+ roleId: RoleId;
7567
7974
  };
7568
7975
  /**
7569
7976
  * Role search response item.
@@ -7576,7 +7983,7 @@ type RoleResult = {
7576
7983
  /**
7577
7984
  * The role id.
7578
7985
  */
7579
- roleId: string;
7986
+ roleId: RoleId;
7580
7987
  /**
7581
7988
  * The description of the role.
7582
7989
  */
@@ -7609,7 +8016,7 @@ type RoleFilter = {
7609
8016
  /**
7610
8017
  * The role ID search filters.
7611
8018
  */
7612
- roleId?: string;
8019
+ roleId?: RoleId;
7613
8020
  /**
7614
8021
  * The role name search filters.
7615
8022
  */
@@ -7650,7 +8057,7 @@ type RoleClientResult = {
7650
8057
  /**
7651
8058
  * The ID of the client.
7652
8059
  */
7653
- clientId: string;
8060
+ clientId: ClientId;
7654
8061
  };
7655
8062
  type RoleClientSearchResult = SearchQueryResponse & {
7656
8063
  /**
@@ -7675,7 +8082,7 @@ type RoleGroupResult = {
7675
8082
  /**
7676
8083
  * The id of the group.
7677
8084
  */
7678
- groupId: string;
8085
+ groupId: GroupId;
7679
8086
  };
7680
8087
  type RoleGroupSearchResult = SearchQueryResponse & {
7681
8088
  /**
@@ -7852,6 +8259,10 @@ type UsageMetricsResponseItem = {
7852
8259
  */
7853
8260
  type SystemConfigurationResponse = {
7854
8261
  jobMetrics: JobMetricsConfigurationResponse;
8262
+ components: ComponentsConfigurationResponse;
8263
+ deployment: DeploymentConfigurationResponse;
8264
+ authentication: AuthenticationConfigurationResponse;
8265
+ cloud: CloudConfigurationResponse;
7855
8266
  };
7856
8267
  /**
7857
8268
  * Configuration for job metrics collection and export.
@@ -7882,21 +8293,103 @@ type JobMetricsConfigurationResponse = {
7882
8293
  */
7883
8294
  maxUniqueKeys: number;
7884
8295
  };
7885
- type TenantCreateRequest = {
8296
+ /**
8297
+ * Configuration for active Camunda components in the deployment.
8298
+ */
8299
+ type ComponentsConfigurationResponse = {
7886
8300
  /**
7887
- * The unique ID for the tenant. Must be 255 characters or less. Can contain letters, numbers, [`_`, `-`, `+`, `.`, `@`].
8301
+ * List of webapp components whose UI is enabled in this deployment.
7888
8302
  */
7889
- tenantId: string;
8303
+ active: Array<WebappComponent>;
8304
+ };
8305
+ /**
8306
+ * Configuration for deployment characteristics.
8307
+ */
8308
+ type DeploymentConfigurationResponse = {
7890
8309
  /**
7891
- * The name of the tenant.
8310
+ * Whether this is an enterprise deployment.
7892
8311
  */
7893
- name: string;
8312
+ isEnterprise: boolean;
7894
8313
  /**
7895
- * The description of the tenant.
8314
+ * Whether multi-tenancy is enabled.
7896
8315
  */
7897
- description?: string;
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';
8372
+ type TenantCreateRequest = {
8373
+ /**
8374
+ * The unique ID for the tenant. Must be 31 characters or less and match
8375
+ * `^[\w.-]{1,31}$` (word characters, `.`, `-`). The literal
8376
+ * `<default>` is also accepted as the default-tenant alias.
8377
+ *
8378
+ */
8379
+ tenantId: TenantId;
8380
+ /**
8381
+ * The name of the tenant.
8382
+ */
8383
+ name: string;
8384
+ /**
8385
+ * The description of the tenant.
8386
+ */
8387
+ description?: string;
7898
8388
  };
7899
8389
  type TenantCreateResult = {
8390
+ /**
8391
+ * The unique identifier of the created tenant.
8392
+ */
7900
8393
  tenantId: TenantId;
7901
8394
  /**
7902
8395
  * The name of the tenant.
@@ -7918,6 +8411,9 @@ type TenantUpdateRequest = {
7918
8411
  description?: string;
7919
8412
  };
7920
8413
  type TenantUpdateResult = {
8414
+ /**
8415
+ * The unique identifier of the updated tenant.
8416
+ */
7921
8417
  tenantId: TenantId;
7922
8418
  /**
7923
8419
  * The name of the tenant.
@@ -7936,6 +8432,9 @@ type TenantResult = {
7936
8432
  * The tenant name.
7937
8433
  */
7938
8434
  name: string;
8435
+ /**
8436
+ * The unique identifier of the tenant.
8437
+ */
7939
8438
  tenantId: TenantId;
7940
8439
  /**
7941
8440
  * The tenant description.
@@ -7966,6 +8465,9 @@ type TenantSearchQueryRequest = SearchQueryRequest & {
7966
8465
  * Tenant filter request
7967
8466
  */
7968
8467
  type TenantFilter = {
8468
+ /**
8469
+ * The unique identifier of the tenant.
8470
+ */
7969
8471
  tenantId?: TenantId;
7970
8472
  /**
7971
8473
  * The name of the tenant.
@@ -8007,7 +8509,7 @@ type TenantClientResult = {
8007
8509
  /**
8008
8510
  * The ID of the client.
8009
8511
  */
8010
- clientId: string;
8512
+ clientId: ClientId;
8011
8513
  };
8012
8514
  type TenantClientSearchResult = SearchQueryResponse & {
8013
8515
  /**
@@ -8030,9 +8532,9 @@ type TenantClientSearchQuerySortRequest = {
8030
8532
  };
8031
8533
  type TenantGroupResult = {
8032
8534
  /**
8033
- * The groupId of the group.
8535
+ * The group ID.
8034
8536
  */
8035
- groupId: string;
8537
+ groupId: GroupId;
8036
8538
  };
8037
8539
  type TenantGroupSearchResult = SearchQueryResponse & {
8038
8540
  /**
@@ -8485,9 +8987,9 @@ type UserRequest = {
8485
8987
  */
8486
8988
  password: string;
8487
8989
  /**
8488
- * The username of the user.
8990
+ * The username of the new user.
8489
8991
  */
8490
- username: string;
8992
+ username: Username;
8491
8993
  /**
8492
8994
  * The name of the user.
8493
8995
  */
@@ -8498,6 +9000,9 @@ type UserRequest = {
8498
9000
  email?: string;
8499
9001
  };
8500
9002
  type UserCreateResult = {
9003
+ /**
9004
+ * The username of the created user.
9005
+ */
8501
9006
  username: Username;
8502
9007
  /**
8503
9008
  * The name of the user.
@@ -8523,6 +9028,9 @@ type UserUpdateRequest = {
8523
9028
  email?: string;
8524
9029
  };
8525
9030
  type UserUpdateResult = {
9031
+ /**
9032
+ * The username of the updated user.
9033
+ */
8526
9034
  username: Username;
8527
9035
  /**
8528
9036
  * The name of the user.
@@ -8534,6 +9042,9 @@ type UserUpdateResult = {
8534
9042
  email: string | null;
8535
9043
  };
8536
9044
  type UserResult = {
9045
+ /**
9046
+ * The username of the user.
9047
+ */
8537
9048
  username: Username;
8538
9049
  /**
8539
9050
  * The name of the user.
@@ -8753,6 +9264,12 @@ type SetVariableRequest = {
8753
9264
  local?: boolean;
8754
9265
  operationReference?: OperationReference;
8755
9266
  };
9267
+ /**
9268
+ * Exact match
9269
+ *
9270
+ * Matches the value exactly.
9271
+ */
9272
+ type AgentInstanceStatusExactMatch = AgentInstanceStatusEnum;
8756
9273
  /**
8757
9274
  * Exact match
8758
9275
  *
@@ -8939,6 +9456,12 @@ type VariableKeyExactMatch = VariableKey;
8939
9456
  * Matches the value exactly.
8940
9457
  */
8941
9458
  type DecisionEvaluationInstanceKeyExactMatch = DecisionEvaluationInstanceKey;
9459
+ /**
9460
+ * Exact match
9461
+ *
9462
+ * Matches the value exactly.
9463
+ */
9464
+ type AgentInstanceKeyExactMatch = AgentInstanceKey;
8942
9465
  /**
8943
9466
  * Exact match
8944
9467
  *
@@ -8993,6 +9516,172 @@ type ProcessInstanceStateExactMatch = ProcessInstanceStateEnum;
8993
9516
  * Matches the value exactly.
8994
9517
  */
8995
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];
9562
+ type GetAgentInstanceData = {
9563
+ body?: never;
9564
+ path: {
9565
+ /**
9566
+ * The key of the agent instance to retrieve.
9567
+ */
9568
+ agentInstanceKey: AgentInstanceKey;
9569
+ };
9570
+ query?: never;
9571
+ url: '/agent-instances/{agentInstanceKey}';
9572
+ };
9573
+ type GetAgentInstanceErrors = {
9574
+ /**
9575
+ * The provided data is not valid.
9576
+ */
9577
+ 400: ProblemDetail;
9578
+ /**
9579
+ * The request lacks valid authentication credentials.
9580
+ */
9581
+ 401: ProblemDetail;
9582
+ /**
9583
+ * Forbidden. The request is not allowed.
9584
+ */
9585
+ 403: ProblemDetail;
9586
+ /**
9587
+ * The agent instance with the given key was not found.
9588
+ * More details are provided in the response body.
9589
+ *
9590
+ */
9591
+ 404: ProblemDetail;
9592
+ /**
9593
+ * An internal error occurred while processing the request.
9594
+ */
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;
9601
+ };
9602
+ type GetAgentInstanceError = GetAgentInstanceErrors[keyof GetAgentInstanceErrors];
9603
+ type GetAgentInstanceResponses = {
9604
+ /**
9605
+ * The agent instance is successfully returned.
9606
+ */
9607
+ 200: AgentInstanceResult;
9608
+ };
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];
9653
+ type SearchAgentInstancesData = {
9654
+ body?: AgentInstanceSearchQuery;
9655
+ path?: never;
9656
+ query?: never;
9657
+ url: '/agent-instances/search';
9658
+ };
9659
+ type SearchAgentInstancesErrors = {
9660
+ /**
9661
+ * The provided data is not valid.
9662
+ */
9663
+ 400: ProblemDetail;
9664
+ /**
9665
+ * The request lacks valid authentication credentials.
9666
+ */
9667
+ 401: ProblemDetail;
9668
+ /**
9669
+ * Forbidden. The request is not allowed.
9670
+ */
9671
+ 403: ProblemDetail;
9672
+ /**
9673
+ * An internal error occurred while processing the request.
9674
+ */
9675
+ 500: ProblemDetail;
9676
+ };
9677
+ type SearchAgentInstancesError = SearchAgentInstancesErrors[keyof SearchAgentInstancesErrors];
9678
+ type SearchAgentInstancesResponses = {
9679
+ /**
9680
+ * The agent instance search result.
9681
+ */
9682
+ 200: AgentInstanceSearchQueryResult;
9683
+ };
9684
+ type SearchAgentInstancesResponse = SearchAgentInstancesResponses[keyof SearchAgentInstancesResponses];
8996
9685
  type SearchAuditLogsData = {
8997
9686
  body?: AuditLogSearchQueryRequest;
8998
9687
  path?: never;
@@ -9570,7 +10259,7 @@ type DeleteGlobalClusterVariableData = {
9570
10259
  /**
9571
10260
  * The name of the cluster variable
9572
10261
  */
9573
- name: string;
10262
+ name: ClusterVariableName;
9574
10263
  };
9575
10264
  query?: never;
9576
10265
  url: '/cluster-variables/global/{name}';
@@ -9611,7 +10300,7 @@ type GetGlobalClusterVariableData = {
9611
10300
  /**
9612
10301
  * The name of the cluster variable
9613
10302
  */
9614
- name: string;
10303
+ name: ClusterVariableName;
9615
10304
  };
9616
10305
  query?: never;
9617
10306
  url: '/cluster-variables/global/{name}';
@@ -9652,7 +10341,7 @@ type UpdateGlobalClusterVariableData = {
9652
10341
  /**
9653
10342
  * The name of the cluster variable
9654
10343
  */
9655
- name: string;
10344
+ name: ClusterVariableName;
9656
10345
  };
9657
10346
  query?: never;
9658
10347
  url: '/cluster-variables/global/{name}';
@@ -9775,7 +10464,7 @@ type DeleteTenantClusterVariableData = {
9775
10464
  /**
9776
10465
  * The name of the cluster variable
9777
10466
  */
9778
- name: string;
10467
+ name: ClusterVariableName;
9779
10468
  };
9780
10469
  query?: never;
9781
10470
  url: '/cluster-variables/tenants/{tenantId}/{name}';
@@ -9820,7 +10509,7 @@ type GetTenantClusterVariableData = {
9820
10509
  /**
9821
10510
  * The name of the cluster variable
9822
10511
  */
9823
- name: string;
10512
+ name: ClusterVariableName;
9824
10513
  };
9825
10514
  query?: never;
9826
10515
  url: '/cluster-variables/tenants/{tenantId}/{name}';
@@ -9865,7 +10554,7 @@ type UpdateTenantClusterVariableData = {
9865
10554
  /**
9866
10555
  * The name of the cluster variable
9867
10556
  */
9868
- name: string;
10557
+ name: ClusterVariableName;
9869
10558
  };
9870
10559
  query?: never;
9871
10560
  url: '/cluster-variables/tenants/{tenantId}/{name}';
@@ -10196,9 +10885,7 @@ type GetDecisionInstanceResponses = {
10196
10885
  };
10197
10886
  type GetDecisionInstanceResponse = GetDecisionInstanceResponses[keyof GetDecisionInstanceResponses];
10198
10887
  type DeleteDecisionInstanceData = {
10199
- body?: {
10200
- operationReference?: OperationReference;
10201
- } | null;
10888
+ body?: DeleteDecisionInstanceRequest;
10202
10889
  path: {
10203
10890
  /**
10204
10891
  * The key of the decision evaluation to delete.
@@ -10849,6 +11536,47 @@ type EvaluateExpressionResponses = {
10849
11536
  200: ExpressionEvaluationResult;
10850
11537
  };
10851
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];
10852
11580
  type CreateGlobalTaskListenerData = {
10853
11581
  body: CreateGlobalTaskListenerRequest;
10854
11582
  path?: never;
@@ -11126,7 +11854,7 @@ type DeleteGroupData = {
11126
11854
  /**
11127
11855
  * The group ID.
11128
11856
  */
11129
- groupId: string;
11857
+ groupId: GroupId;
11130
11858
  };
11131
11859
  query?: never;
11132
11860
  url: '/groups/{groupId}';
@@ -11164,7 +11892,7 @@ type GetGroupData = {
11164
11892
  /**
11165
11893
  * The group ID.
11166
11894
  */
11167
- groupId: string;
11895
+ groupId: GroupId;
11168
11896
  };
11169
11897
  query?: never;
11170
11898
  url: '/groups/{groupId}';
@@ -11201,7 +11929,7 @@ type UpdateGroupData = {
11201
11929
  /**
11202
11930
  * The group ID.
11203
11931
  */
11204
- groupId: string;
11932
+ groupId: GroupId;
11205
11933
  };
11206
11934
  query?: never;
11207
11935
  url: '/groups/{groupId}';
@@ -11238,23 +11966,12 @@ type UpdateGroupResponses = {
11238
11966
  };
11239
11967
  type UpdateGroupResponse = UpdateGroupResponses[keyof UpdateGroupResponses];
11240
11968
  type SearchClientsForGroupData = {
11241
- body?: SearchQueryRequest & {
11242
- /**
11243
- * Sort field criteria.
11244
- */
11245
- sort?: Array<{
11246
- /**
11247
- * The field to sort by.
11248
- */
11249
- field: 'clientId';
11250
- order?: SortOrderEnum;
11251
- }>;
11252
- };
11969
+ body?: GroupClientSearchQueryRequest;
11253
11970
  path: {
11254
11971
  /**
11255
11972
  * The group ID.
11256
11973
  */
11257
- groupId: string;
11974
+ groupId: GroupId;
11258
11975
  };
11259
11976
  query?: never;
11260
11977
  url: '/groups/{groupId}/clients/search';
@@ -11286,17 +12003,7 @@ type SearchClientsForGroupResponses = {
11286
12003
  /**
11287
12004
  * The clients assigned to the group.
11288
12005
  */
11289
- 200: SearchQueryResponse & {
11290
- /**
11291
- * The matching client IDs.
11292
- */
11293
- items: Array<{
11294
- /**
11295
- * The ID of the client.
11296
- */
11297
- clientId: string;
11298
- }>;
11299
- };
12006
+ 200: GroupClientSearchResult;
11300
12007
  };
11301
12008
  type SearchClientsForGroupResponse = SearchClientsForGroupResponses[keyof SearchClientsForGroupResponses];
11302
12009
  type UnassignClientFromGroupData = {
@@ -11305,11 +12012,11 @@ type UnassignClientFromGroupData = {
11305
12012
  /**
11306
12013
  * The group ID.
11307
12014
  */
11308
- groupId: string;
12015
+ groupId: GroupId;
11309
12016
  /**
11310
12017
  * The client ID.
11311
12018
  */
11312
- clientId: string;
12019
+ clientId: ClientId;
11313
12020
  };
11314
12021
  query?: never;
11315
12022
  url: '/groups/{groupId}/clients/{clientId}';
@@ -11351,11 +12058,11 @@ type AssignClientToGroupData = {
11351
12058
  /**
11352
12059
  * The group ID.
11353
12060
  */
11354
- groupId: string;
12061
+ groupId: GroupId;
11355
12062
  /**
11356
12063
  * The client ID.
11357
12064
  */
11358
- clientId: string;
12065
+ clientId: ClientId;
11359
12066
  };
11360
12067
  query?: never;
11361
12068
  url: '/groups/{groupId}/clients/{clientId}';
@@ -11401,7 +12108,7 @@ type SearchMappingRulesForGroupData = {
11401
12108
  /**
11402
12109
  * The group ID.
11403
12110
  */
11404
- groupId: string;
12111
+ groupId: GroupId;
11405
12112
  };
11406
12113
  query?: never;
11407
12114
  url: '/groups/{groupId}/mapping-rules/search';
@@ -11433,12 +12140,7 @@ type SearchMappingRulesForGroupResponses = {
11433
12140
  /**
11434
12141
  * The mapping rules assigned to the group.
11435
12142
  */
11436
- 200: SearchQueryResponse & {
11437
- /**
11438
- * The matching mapping rules.
11439
- */
11440
- items: Array<MappingRuleResult>;
11441
- };
12143
+ 200: GroupMappingRuleSearchResult;
11442
12144
  };
11443
12145
  type SearchMappingRulesForGroupResponse = SearchMappingRulesForGroupResponses[keyof SearchMappingRulesForGroupResponses];
11444
12146
  type UnassignMappingRuleFromGroupData = {
@@ -11447,11 +12149,11 @@ type UnassignMappingRuleFromGroupData = {
11447
12149
  /**
11448
12150
  * The group ID.
11449
12151
  */
11450
- groupId: string;
12152
+ groupId: GroupId;
11451
12153
  /**
11452
12154
  * The mapping rule ID.
11453
12155
  */
11454
- mappingRuleId: string;
12156
+ mappingRuleId: MappingRuleId;
11455
12157
  };
11456
12158
  query?: never;
11457
12159
  url: '/groups/{groupId}/mapping-rules/{mappingRuleId}';
@@ -11493,11 +12195,11 @@ type AssignMappingRuleToGroupData = {
11493
12195
  /**
11494
12196
  * The group ID.
11495
12197
  */
11496
- groupId: string;
12198
+ groupId: GroupId;
11497
12199
  /**
11498
12200
  * The mapping rule ID.
11499
12201
  */
11500
- mappingRuleId: string;
12202
+ mappingRuleId: MappingRuleId;
11501
12203
  };
11502
12204
  query?: never;
11503
12205
  url: '/groups/{groupId}/mapping-rules/{mappingRuleId}';
@@ -11543,7 +12245,7 @@ type SearchRolesForGroupData = {
11543
12245
  /**
11544
12246
  * The group ID.
11545
12247
  */
11546
- groupId: string;
12248
+ groupId: GroupId;
11547
12249
  };
11548
12250
  query?: never;
11549
12251
  url: '/groups/{groupId}/roles/search';
@@ -11575,32 +12277,16 @@ type SearchRolesForGroupResponses = {
11575
12277
  /**
11576
12278
  * The roles assigned to the group.
11577
12279
  */
11578
- 200: SearchQueryResponse & {
11579
- /**
11580
- * The matching roles.
11581
- */
11582
- items: Array<RoleResult>;
11583
- };
12280
+ 200: GroupRoleSearchResult;
11584
12281
  };
11585
12282
  type SearchRolesForGroupResponse = SearchRolesForGroupResponses[keyof SearchRolesForGroupResponses];
11586
12283
  type SearchUsersForGroupData = {
11587
- body?: SearchQueryRequest & {
11588
- /**
11589
- * Sort field criteria.
11590
- */
11591
- sort?: Array<{
11592
- /**
11593
- * The field to sort by.
11594
- */
11595
- field: 'username';
11596
- order?: SortOrderEnum;
11597
- }>;
11598
- };
12284
+ body?: GroupUserSearchQueryRequest;
11599
12285
  path: {
11600
12286
  /**
11601
12287
  * The group ID.
11602
12288
  */
11603
- groupId: string;
12289
+ groupId: GroupId;
11604
12290
  };
11605
12291
  query?: never;
11606
12292
  url: '/groups/{groupId}/users/search';
@@ -11632,14 +12318,7 @@ type SearchUsersForGroupResponses = {
11632
12318
  /**
11633
12319
  * The users assigned to the group.
11634
12320
  */
11635
- 200: SearchQueryResponse & {
11636
- /**
11637
- * The matching members.
11638
- */
11639
- items: Array<{
11640
- username: Username;
11641
- }>;
11642
- };
12321
+ 200: GroupUserSearchResult;
11643
12322
  };
11644
12323
  type SearchUsersForGroupResponse = SearchUsersForGroupResponses[keyof SearchUsersForGroupResponses];
11645
12324
  type UnassignUserFromGroupData = {
@@ -11648,7 +12327,7 @@ type UnassignUserFromGroupData = {
11648
12327
  /**
11649
12328
  * The group ID.
11650
12329
  */
11651
- groupId: string;
12330
+ groupId: GroupId;
11652
12331
  /**
11653
12332
  * The user username.
11654
12333
  */
@@ -11694,7 +12373,7 @@ type AssignUserToGroupData = {
11694
12373
  /**
11695
12374
  * The group ID.
11696
12375
  */
11697
- groupId: string;
12376
+ groupId: GroupId;
11698
12377
  /**
11699
12378
  * The user username.
11700
12379
  */
@@ -12388,7 +13067,7 @@ type CreateMappingRuleResponses = {
12388
13067
  /**
12389
13068
  * The mapping rule was created successfully.
12390
13069
  */
12391
- 201: MappingRuleCreateUpdateResult;
13070
+ 201: MappingRuleCreateResult;
12392
13071
  };
12393
13072
  type CreateMappingRuleResponse = CreateMappingRuleResponses[keyof CreateMappingRuleResponses];
12394
13073
  type SearchMappingRuleData = {
@@ -12420,12 +13099,7 @@ type SearchMappingRuleResponses = {
12420
13099
  /**
12421
13100
  * The mapping rule search result.
12422
13101
  */
12423
- 200: SearchQueryResponse & {
12424
- /**
12425
- * The matching mapping rules.
12426
- */
12427
- items: Array<MappingRuleResult>;
12428
- };
13102
+ 200: MappingRuleSearchQueryResult;
12429
13103
  };
12430
13104
  type SearchMappingRuleResponse = SearchMappingRuleResponses[keyof SearchMappingRuleResponses];
12431
13105
  type DeleteMappingRuleData = {
@@ -12434,7 +13108,7 @@ type DeleteMappingRuleData = {
12434
13108
  /**
12435
13109
  * The ID of the mapping rule to delete.
12436
13110
  */
12437
- mappingRuleId: string;
13111
+ mappingRuleId: MappingRuleId;
12438
13112
  };
12439
13113
  query?: never;
12440
13114
  url: '/mapping-rules/{mappingRuleId}';
@@ -12472,7 +13146,7 @@ type GetMappingRuleData = {
12472
13146
  /**
12473
13147
  * The ID of the mapping rule to get.
12474
13148
  */
12475
- mappingRuleId: string;
13149
+ mappingRuleId: MappingRuleId;
12476
13150
  };
12477
13151
  query?: never;
12478
13152
  url: '/mapping-rules/{mappingRuleId}';
@@ -12505,7 +13179,7 @@ type UpdateMappingRuleData = {
12505
13179
  /**
12506
13180
  * The ID of the mapping rule to update.
12507
13181
  */
12508
- mappingRuleId: string;
13182
+ mappingRuleId: MappingRuleId;
12509
13183
  };
12510
13184
  query?: never;
12511
13185
  url: '/mapping-rules/{mappingRuleId}';
@@ -12540,7 +13214,7 @@ type UpdateMappingRuleResponses = {
12540
13214
  /**
12541
13215
  * The mapping rule was updated successfully.
12542
13216
  */
12543
- 200: MappingRuleCreateUpdateResult;
13217
+ 200: MappingRuleUpdateResult;
12544
13218
  };
12545
13219
  type UpdateMappingRuleResponse = UpdateMappingRuleResponses[keyof UpdateMappingRuleResponses];
12546
13220
  type SearchMessageSubscriptionsData = {
@@ -13267,9 +13941,7 @@ type GetProcessInstanceCallHierarchyResponses = {
13267
13941
  };
13268
13942
  type GetProcessInstanceCallHierarchyResponse = GetProcessInstanceCallHierarchyResponses[keyof GetProcessInstanceCallHierarchyResponses];
13269
13943
  type CancelProcessInstanceData = {
13270
- body?: {
13271
- operationReference?: OperationReference;
13272
- } | null;
13944
+ body?: CancelProcessInstanceRequest;
13273
13945
  path: {
13274
13946
  /**
13275
13947
  * The key of the process instance to cancel.
@@ -13313,9 +13985,7 @@ type CancelProcessInstanceResponses = {
13313
13985
  };
13314
13986
  type CancelProcessInstanceResponse = CancelProcessInstanceResponses[keyof CancelProcessInstanceResponses];
13315
13987
  type DeleteProcessInstanceData = {
13316
- body?: {
13317
- operationReference?: OperationReference;
13318
- } | null;
13988
+ body?: DeleteProcessInstanceRequest;
13319
13989
  path: {
13320
13990
  /**
13321
13991
  * The key of the process instance to delete.
@@ -13598,6 +14268,38 @@ type GetProcessInstanceStatisticsResponses = {
13598
14268
  200: ProcessInstanceElementStatisticsQueryResult;
13599
14269
  };
13600
14270
  type GetProcessInstanceStatisticsResponse = GetProcessInstanceStatisticsResponses[keyof GetProcessInstanceStatisticsResponses];
14271
+ type SearchResourcesData = {
14272
+ body?: ResourceSearchQuery;
14273
+ path?: never;
14274
+ query?: never;
14275
+ url: '/resources/search';
14276
+ };
14277
+ type SearchResourcesErrors = {
14278
+ /**
14279
+ * The provided data is not valid.
14280
+ */
14281
+ 400: ProblemDetail;
14282
+ /**
14283
+ * The request lacks valid authentication credentials.
14284
+ */
14285
+ 401: ProblemDetail;
14286
+ /**
14287
+ * Forbidden. The request is not allowed.
14288
+ */
14289
+ 403: ProblemDetail;
14290
+ /**
14291
+ * An internal error occurred while processing the request.
14292
+ */
14293
+ 500: ProblemDetail;
14294
+ };
14295
+ type SearchResourcesError = SearchResourcesErrors[keyof SearchResourcesErrors];
14296
+ type SearchResourcesResponses = {
14297
+ /**
14298
+ * The resource search result.
14299
+ */
14300
+ 200: ResourceSearchQueryResult;
14301
+ };
14302
+ type SearchResourcesResponse = SearchResourcesResponses[keyof SearchResourcesResponses];
13601
14303
  type GetResourceData = {
13602
14304
  body?: never;
13603
14305
  path: {
@@ -13631,7 +14333,7 @@ type GetResourceContentData = {
13631
14333
  body?: never;
13632
14334
  path: {
13633
14335
  /**
13634
- * The unique key identifying the resource.
14336
+ * The unique key identifying the RPA resource.
13635
14337
  */
13636
14338
  resourceKey: ResourceKey;
13637
14339
  };
@@ -13643,6 +14345,10 @@ type GetResourceContentErrors = {
13643
14345
  * A resource with the given key was not found.
13644
14346
  */
13645
14347
  404: ProblemDetail;
14348
+ /**
14349
+ * The resource exists but is not an RPA resource.
14350
+ */
14351
+ 406: ProblemDetail;
13646
14352
  /**
13647
14353
  * An internal error occurred while processing the request.
13648
14354
  */
@@ -13653,9 +14359,40 @@ type GetResourceContentResponses = {
13653
14359
  /**
13654
14360
  * The resource content is successfully returned.
13655
14361
  */
13656
- 200: Blob | File;
14362
+ 200: {
14363
+ [key: string]: unknown;
14364
+ };
13657
14365
  };
13658
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];
13659
14396
  type DeleteResourceData = {
13660
14397
  body?: DeleteResourceRequest;
13661
14398
  path: {
@@ -13772,7 +14509,7 @@ type DeleteRoleData = {
13772
14509
  /**
13773
14510
  * The role ID.
13774
14511
  */
13775
- roleId: string;
14512
+ roleId: RoleId;
13776
14513
  };
13777
14514
  query?: never;
13778
14515
  url: '/roles/{roleId}';
@@ -13810,7 +14547,7 @@ type GetRoleData = {
13810
14547
  /**
13811
14548
  * The role ID.
13812
14549
  */
13813
- roleId: string;
14550
+ roleId: RoleId;
13814
14551
  };
13815
14552
  query?: never;
13816
14553
  url: '/roles/{roleId}';
@@ -13847,7 +14584,7 @@ type UpdateRoleData = {
13847
14584
  /**
13848
14585
  * The role ID.
13849
14586
  */
13850
- roleId: string;
14587
+ roleId: RoleId;
13851
14588
  };
13852
14589
  query?: never;
13853
14590
  url: '/roles/{roleId}';
@@ -13884,23 +14621,12 @@ type UpdateRoleResponses = {
13884
14621
  };
13885
14622
  type UpdateRoleResponse = UpdateRoleResponses[keyof UpdateRoleResponses];
13886
14623
  type SearchClientsForRoleData = {
13887
- body?: SearchQueryRequest & {
13888
- /**
13889
- * Sort field criteria.
13890
- */
13891
- sort?: Array<{
13892
- /**
13893
- * The field to sort by.
13894
- */
13895
- field: 'clientId';
13896
- order?: SortOrderEnum;
13897
- }>;
13898
- };
14624
+ body?: RoleClientSearchQueryRequest;
13899
14625
  path: {
13900
14626
  /**
13901
14627
  * The role ID.
13902
14628
  */
13903
- roleId: string;
14629
+ roleId: RoleId;
13904
14630
  };
13905
14631
  query?: never;
13906
14632
  url: '/roles/{roleId}/clients/search';
@@ -13932,17 +14658,7 @@ type SearchClientsForRoleResponses = {
13932
14658
  /**
13933
14659
  * The clients with the assigned role.
13934
14660
  */
13935
- 200: SearchQueryResponse & {
13936
- /**
13937
- * The matching clients.
13938
- */
13939
- items: Array<{
13940
- /**
13941
- * The ID of the client.
13942
- */
13943
- clientId: string;
13944
- }>;
13945
- };
14661
+ 200: RoleClientSearchResult;
13946
14662
  };
13947
14663
  type SearchClientsForRoleResponse = SearchClientsForRoleResponses[keyof SearchClientsForRoleResponses];
13948
14664
  type UnassignRoleFromClientData = {
@@ -13951,11 +14667,11 @@ type UnassignRoleFromClientData = {
13951
14667
  /**
13952
14668
  * The role ID.
13953
14669
  */
13954
- roleId: string;
14670
+ roleId: RoleId;
13955
14671
  /**
13956
14672
  * The client ID.
13957
14673
  */
13958
- clientId: string;
14674
+ clientId: ClientId;
13959
14675
  };
13960
14676
  query?: never;
13961
14677
  url: '/roles/{roleId}/clients/{clientId}';
@@ -13997,11 +14713,11 @@ type AssignRoleToClientData = {
13997
14713
  /**
13998
14714
  * The role ID.
13999
14715
  */
14000
- roleId: string;
14716
+ roleId: RoleId;
14001
14717
  /**
14002
14718
  * The client ID.
14003
14719
  */
14004
- clientId: string;
14720
+ clientId: ClientId;
14005
14721
  };
14006
14722
  query?: never;
14007
14723
  url: '/roles/{roleId}/clients/{clientId}';
@@ -14047,7 +14763,7 @@ type SearchGroupsForRoleData = {
14047
14763
  /**
14048
14764
  * The role ID.
14049
14765
  */
14050
- roleId: string;
14766
+ roleId: RoleId;
14051
14767
  };
14052
14768
  query?: never;
14053
14769
  url: '/roles/{roleId}/groups/search';
@@ -14088,11 +14804,11 @@ type UnassignRoleFromGroupData = {
14088
14804
  /**
14089
14805
  * The role ID.
14090
14806
  */
14091
- roleId: string;
14807
+ roleId: RoleId;
14092
14808
  /**
14093
14809
  * The group ID.
14094
14810
  */
14095
- groupId: string;
14811
+ groupId: GroupId;
14096
14812
  };
14097
14813
  query?: never;
14098
14814
  url: '/roles/{roleId}/groups/{groupId}';
@@ -14134,11 +14850,11 @@ type AssignRoleToGroupData = {
14134
14850
  /**
14135
14851
  * The role ID.
14136
14852
  */
14137
- roleId: string;
14853
+ roleId: RoleId;
14138
14854
  /**
14139
14855
  * The group ID.
14140
14856
  */
14141
- groupId: string;
14857
+ groupId: GroupId;
14142
14858
  };
14143
14859
  query?: never;
14144
14860
  url: '/roles/{roleId}/groups/{groupId}';
@@ -14184,7 +14900,7 @@ type SearchMappingRulesForRoleData = {
14184
14900
  /**
14185
14901
  * The role ID.
14186
14902
  */
14187
- roleId: string;
14903
+ roleId: RoleId;
14188
14904
  };
14189
14905
  query?: never;
14190
14906
  url: '/roles/{roleId}/mapping-rules/search';
@@ -14216,12 +14932,7 @@ type SearchMappingRulesForRoleResponses = {
14216
14932
  /**
14217
14933
  * The mapping rules with assigned role.
14218
14934
  */
14219
- 200: SearchQueryResponse & {
14220
- /**
14221
- * The matching mapping rules.
14222
- */
14223
- items: Array<MappingRuleResult>;
14224
- };
14935
+ 200: RoleMappingRuleSearchResult;
14225
14936
  };
14226
14937
  type SearchMappingRulesForRoleResponse = SearchMappingRulesForRoleResponses[keyof SearchMappingRulesForRoleResponses];
14227
14938
  type UnassignRoleFromMappingRuleData = {
@@ -14230,11 +14941,11 @@ type UnassignRoleFromMappingRuleData = {
14230
14941
  /**
14231
14942
  * The role ID.
14232
14943
  */
14233
- roleId: string;
14944
+ roleId: RoleId;
14234
14945
  /**
14235
14946
  * The mapping rule ID.
14236
14947
  */
14237
- mappingRuleId: string;
14948
+ mappingRuleId: MappingRuleId;
14238
14949
  };
14239
14950
  query?: never;
14240
14951
  url: '/roles/{roleId}/mapping-rules/{mappingRuleId}';
@@ -14276,11 +14987,11 @@ type AssignRoleToMappingRuleData = {
14276
14987
  /**
14277
14988
  * The role ID.
14278
14989
  */
14279
- roleId: string;
14990
+ roleId: RoleId;
14280
14991
  /**
14281
14992
  * The mapping rule ID.
14282
14993
  */
14283
- mappingRuleId: string;
14994
+ mappingRuleId: MappingRuleId;
14284
14995
  };
14285
14996
  query?: never;
14286
14997
  url: '/roles/{roleId}/mapping-rules/{mappingRuleId}';
@@ -14321,23 +15032,12 @@ type AssignRoleToMappingRuleResponses = {
14321
15032
  };
14322
15033
  type AssignRoleToMappingRuleResponse = AssignRoleToMappingRuleResponses[keyof AssignRoleToMappingRuleResponses];
14323
15034
  type SearchUsersForRoleData = {
14324
- body?: SearchQueryRequest & {
14325
- /**
14326
- * Sort field criteria.
14327
- */
14328
- sort?: Array<{
14329
- /**
14330
- * The field to sort by.
14331
- */
14332
- field: 'username';
14333
- order?: SortOrderEnum;
14334
- }>;
14335
- };
15035
+ body?: RoleUserSearchQueryRequest;
14336
15036
  path: {
14337
15037
  /**
14338
15038
  * The role ID.
14339
15039
  */
14340
- roleId: string;
15040
+ roleId: RoleId;
14341
15041
  };
14342
15042
  query?: never;
14343
15043
  url: '/roles/{roleId}/users/search';
@@ -14369,14 +15069,7 @@ type SearchUsersForRoleResponses = {
14369
15069
  /**
14370
15070
  * The users with the assigned role.
14371
15071
  */
14372
- 200: SearchQueryResponse & {
14373
- /**
14374
- * The matching users.
14375
- */
14376
- items: Array<{
14377
- username: Username;
14378
- }>;
14379
- };
15072
+ 200: RoleUserSearchResult;
14380
15073
  };
14381
15074
  type SearchUsersForRoleResponse = SearchUsersForRoleResponses[keyof SearchUsersForRoleResponses];
14382
15075
  type UnassignRoleFromUserData = {
@@ -14385,7 +15078,7 @@ type UnassignRoleFromUserData = {
14385
15078
  /**
14386
15079
  * The role ID.
14387
15080
  */
14388
- roleId: string;
15081
+ roleId: RoleId;
14389
15082
  /**
14390
15083
  * The user username.
14391
15084
  */
@@ -14431,7 +15124,7 @@ type AssignRoleToUserData = {
14431
15124
  /**
14432
15125
  * The role ID.
14433
15126
  */
14434
- roleId: string;
15127
+ roleId: RoleId;
14435
15128
  /**
14436
15129
  * The user username.
14437
15130
  */
@@ -14836,18 +15529,7 @@ type UpdateTenantResponses = {
14836
15529
  };
14837
15530
  type UpdateTenantResponse = UpdateTenantResponses[keyof UpdateTenantResponses];
14838
15531
  type SearchClientsForTenantData = {
14839
- body?: SearchQueryRequest & {
14840
- /**
14841
- * Sort field criteria.
14842
- */
14843
- sort?: Array<{
14844
- /**
14845
- * The field to sort by.
14846
- */
14847
- field: 'clientId';
14848
- order?: SortOrderEnum;
14849
- }>;
14850
- };
15532
+ body?: TenantClientSearchQueryRequest;
14851
15533
  path: {
14852
15534
  /**
14853
15535
  * The unique identifier of the tenant.
@@ -14861,17 +15543,7 @@ type SearchClientsForTenantResponses = {
14861
15543
  /**
14862
15544
  * The search result of users for the tenant.
14863
15545
  */
14864
- 200: SearchQueryResponse & {
14865
- /**
14866
- * The matching clients.
14867
- */
14868
- items: Array<{
14869
- /**
14870
- * The ID of the client.
14871
- */
14872
- clientId: string;
14873
- }>;
14874
- };
15546
+ 200: TenantClientSearchResult;
14875
15547
  };
14876
15548
  type SearchClientsForTenantResponse = SearchClientsForTenantResponses[keyof SearchClientsForTenantResponses];
14877
15549
  type UnassignClientFromTenantData = {
@@ -14884,7 +15556,7 @@ type UnassignClientFromTenantData = {
14884
15556
  /**
14885
15557
  * The unique identifier of the application.
14886
15558
  */
14887
- clientId: string;
15559
+ clientId: ClientId;
14888
15560
  };
14889
15561
  query?: never;
14890
15562
  url: '/tenants/{tenantId}/clients/{clientId}';
@@ -14930,7 +15602,7 @@ type AssignClientToTenantData = {
14930
15602
  /**
14931
15603
  * The unique identifier of the application.
14932
15604
  */
14933
- clientId: string;
15605
+ clientId: ClientId;
14934
15606
  };
14935
15607
  query?: never;
14936
15608
  url: '/tenants/{tenantId}/clients/{clientId}';
@@ -14994,7 +15666,7 @@ type UnassignGroupFromTenantData = {
14994
15666
  /**
14995
15667
  * The unique identifier of the group.
14996
15668
  */
14997
- groupId: string;
15669
+ groupId: GroupId;
14998
15670
  };
14999
15671
  query?: never;
15000
15672
  url: '/tenants/{tenantId}/groups/{groupId}';
@@ -15040,7 +15712,7 @@ type AssignGroupToTenantData = {
15040
15712
  /**
15041
15713
  * The unique identifier of the group.
15042
15714
  */
15043
- groupId: string;
15715
+ groupId: GroupId;
15044
15716
  };
15045
15717
  query?: never;
15046
15718
  url: '/tenants/{tenantId}/groups/{groupId}';
@@ -15091,12 +15763,7 @@ type SearchMappingRulesForTenantResponses = {
15091
15763
  /**
15092
15764
  * The search result of MappingRules for the tenant.
15093
15765
  */
15094
- 200: SearchQueryResponse & {
15095
- /**
15096
- * The matching mapping rules.
15097
- */
15098
- items: Array<MappingRuleResult>;
15099
- };
15766
+ 200: TenantMappingRuleSearchResult;
15100
15767
  };
15101
15768
  type SearchMappingRulesForTenantResponse = SearchMappingRulesForTenantResponses[keyof SearchMappingRulesForTenantResponses];
15102
15769
  type UnassignMappingRuleFromTenantData = {
@@ -15109,7 +15776,7 @@ type UnassignMappingRuleFromTenantData = {
15109
15776
  /**
15110
15777
  * The unique identifier of the mapping rule.
15111
15778
  */
15112
- mappingRuleId: string;
15779
+ mappingRuleId: MappingRuleId;
15113
15780
  };
15114
15781
  query?: never;
15115
15782
  url: '/tenants/{tenantId}/mapping-rules/{mappingRuleId}';
@@ -15155,7 +15822,7 @@ type AssignMappingRuleToTenantData = {
15155
15822
  /**
15156
15823
  * The unique identifier of the mapping rule.
15157
15824
  */
15158
- mappingRuleId: string;
15825
+ mappingRuleId: MappingRuleId;
15159
15826
  };
15160
15827
  query?: never;
15161
15828
  url: '/tenants/{tenantId}/mapping-rules/{mappingRuleId}';
@@ -15206,12 +15873,7 @@ type SearchRolesForTenantResponses = {
15206
15873
  /**
15207
15874
  * The search result of roles for the tenant.
15208
15875
  */
15209
- 200: SearchQueryResponse & {
15210
- /**
15211
- * The matching roles.
15212
- */
15213
- items: Array<RoleResult>;
15214
- };
15876
+ 200: TenantRoleSearchResult;
15215
15877
  };
15216
15878
  type SearchRolesForTenantResponse = SearchRolesForTenantResponses[keyof SearchRolesForTenantResponses];
15217
15879
  type UnassignRoleFromTenantData = {
@@ -15224,7 +15886,7 @@ type UnassignRoleFromTenantData = {
15224
15886
  /**
15225
15887
  * The unique identifier of the role.
15226
15888
  */
15227
- roleId: string;
15889
+ roleId: RoleId;
15228
15890
  };
15229
15891
  query?: never;
15230
15892
  url: '/tenants/{tenantId}/roles/{roleId}';
@@ -15270,7 +15932,7 @@ type AssignRoleToTenantData = {
15270
15932
  /**
15271
15933
  * The unique identifier of the role.
15272
15934
  */
15273
- roleId: string;
15935
+ roleId: RoleId;
15274
15936
  };
15275
15937
  query?: never;
15276
15938
  url: '/tenants/{tenantId}/roles/{roleId}';
@@ -15307,18 +15969,7 @@ type AssignRoleToTenantResponses = {
15307
15969
  };
15308
15970
  type AssignRoleToTenantResponse = AssignRoleToTenantResponses[keyof AssignRoleToTenantResponses];
15309
15971
  type SearchUsersForTenantData = {
15310
- body?: SearchQueryRequest & {
15311
- /**
15312
- * Sort field criteria.
15313
- */
15314
- sort?: Array<{
15315
- /**
15316
- * The field to sort by.
15317
- */
15318
- field: 'username';
15319
- order?: SortOrderEnum;
15320
- }>;
15321
- };
15972
+ body?: TenantUserSearchQueryRequest;
15322
15973
  path: {
15323
15974
  /**
15324
15975
  * The unique identifier of the tenant.
@@ -15332,14 +15983,7 @@ type SearchUsersForTenantResponses = {
15332
15983
  /**
15333
15984
  * The search result of users for the tenant.
15334
15985
  */
15335
- 200: SearchQueryResponse & {
15336
- /**
15337
- * The matching users.
15338
- */
15339
- items: Array<{
15340
- username: Username;
15341
- }>;
15342
- };
15986
+ 200: TenantUserSearchResult;
15343
15987
  };
15344
15988
  type SearchUsersForTenantResponse = SearchUsersForTenantResponses[keyof SearchUsersForTenantResponses];
15345
15989
  type UnassignUserFromTenantData = {
@@ -15527,23 +16171,8 @@ type SearchUsersError = SearchUsersErrors[keyof SearchUsersErrors];
15527
16171
  type SearchUsersResponses = {
15528
16172
  /**
15529
16173
  * The user search result.
15530
- */
15531
- 200: SearchQueryResponse & {
15532
- /**
15533
- * The matching users.
15534
- */
15535
- items: Array<{
15536
- username: Username;
15537
- /**
15538
- * The name of the user.
15539
- */
15540
- name: string | null;
15541
- /**
15542
- * The email of the user.
15543
- */
15544
- email: string | null;
15545
- }>;
15546
- };
16174
+ */
16175
+ 200: UserSearchResult;
15547
16176
  };
15548
16177
  type SearchUsersResponse = SearchUsersResponses[keyof SearchUsersResponses];
15549
16178
  type DeleteUserData = {
@@ -15618,17 +16247,7 @@ type GetUserResponses = {
15618
16247
  /**
15619
16248
  * The user is successfully returned.
15620
16249
  */
15621
- 200: {
15622
- username: Username;
15623
- /**
15624
- * The name of the user.
15625
- */
15626
- name: string | null;
15627
- /**
15628
- * The email of the user.
15629
- */
15630
- email: string | null;
15631
- };
16250
+ 200: UserResult;
15632
16251
  };
15633
16252
  type GetUserResponse = GetUserResponses[keyof GetUserResponses];
15634
16253
  type UpdateUserData = {
@@ -15670,17 +16289,7 @@ type UpdateUserResponses = {
15670
16289
  /**
15671
16290
  * The user was updated successfully.
15672
16291
  */
15673
- 200: {
15674
- username: Username;
15675
- /**
15676
- * The name of the user.
15677
- */
15678
- name: string | null;
15679
- /**
15680
- * The email of the user.
15681
- */
15682
- email: string | null;
15683
- };
16292
+ 200: UserUpdateResult;
15684
16293
  };
15685
16294
  type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
15686
16295
  type SearchUserTasksData = {
@@ -15994,13 +16603,7 @@ type SearchUserTaskEffectiveVariablesData = {
15994
16603
  /**
15995
16604
  * Sort field criteria.
15996
16605
  */
15997
- sort?: Array<{
15998
- /**
15999
- * The field to sort by.
16000
- */
16001
- field: 'value' | 'name' | 'tenantId' | 'variableKey' | 'scopeKey' | 'processInstanceKey';
16002
- order?: SortOrderEnum;
16003
- }>;
16606
+ sort?: Array<UserTaskVariableSearchQuerySortRequest>;
16004
16607
  /**
16005
16608
  * The user task variable search filters.
16006
16609
  */
@@ -16084,25 +16687,7 @@ type GetUserTaskFormResponses = {
16084
16687
  };
16085
16688
  type GetUserTaskFormResponse = GetUserTaskFormResponses[keyof GetUserTaskFormResponses];
16086
16689
  type SearchUserTaskVariablesData = {
16087
- /**
16088
- * User task search query request.
16089
- */
16090
- body?: SearchQueryRequest & {
16091
- /**
16092
- * Sort field criteria.
16093
- */
16094
- sort?: Array<{
16095
- /**
16096
- * The field to sort by.
16097
- */
16098
- field: 'value' | 'name' | 'tenantId' | 'variableKey' | 'scopeKey' | 'processInstanceKey';
16099
- order?: SortOrderEnum;
16100
- }>;
16101
- /**
16102
- * The user task variable search filters.
16103
- */
16104
- filter?: UserTaskVariableFilter;
16105
- };
16690
+ body?: UserTaskVariableSearchQueryRequest;
16106
16691
  path: {
16107
16692
  /**
16108
16693
  * The key of the user task.
@@ -16136,25 +16721,7 @@ type SearchUserTaskVariablesResponses = {
16136
16721
  };
16137
16722
  type SearchUserTaskVariablesResponse = SearchUserTaskVariablesResponses[keyof SearchUserTaskVariablesResponses];
16138
16723
  type SearchVariablesData = {
16139
- /**
16140
- * Variable search query request.
16141
- */
16142
- body?: SearchQueryRequest & {
16143
- /**
16144
- * Sort field criteria.
16145
- */
16146
- sort?: Array<{
16147
- /**
16148
- * The field to sort by.
16149
- */
16150
- field: 'value' | 'name' | 'tenantId' | 'variableKey' | 'scopeKey' | 'processInstanceKey';
16151
- order?: SortOrderEnum;
16152
- }>;
16153
- /**
16154
- * The variable search filters.
16155
- */
16156
- filter?: VariableFilter;
16157
- };
16724
+ body?: VariableSearchQuery;
16158
16725
  path?: never;
16159
16726
  query?: {
16160
16727
  /**
@@ -16236,6 +16803,15 @@ declare function assertConstraint(value: string, label: string, c: {
16236
16803
  minLength?: number;
16237
16804
  maxLength?: number;
16238
16805
  }): void;
16806
+ /**
16807
+ * System-generated key for an agent instance.
16808
+ */
16809
+ type AgentInstanceKey = CamundaKey<'AgentInstanceKey'>;
16810
+ declare namespace AgentInstanceKey {
16811
+ function assumeExists(value: string): AgentInstanceKey;
16812
+ function getValue(key: AgentInstanceKey): string;
16813
+ function isValid(value: string): boolean;
16814
+ }
16239
16815
  /**
16240
16816
  * System-generated entity key for an audit log entry.
16241
16817
  */
@@ -16286,6 +16862,29 @@ declare namespace BusinessId {
16286
16862
  function getValue(key: BusinessId): string;
16287
16863
  function isValid(value: string): boolean;
16288
16864
  }
16865
+ /**
16866
+ * The unique identifier of an OAuth client.
16867
+ * Minted outside the Camunda REST API: in SaaS by Console, in Self-Managed
16868
+ * with OIDC by the external identity provider (e.g. EntraID, Keycloak,
16869
+ * Okta). In Self-Managed with Basic authentication, machine-to-machine
16870
+ * applications are modelled as users instead — see the user identifier.
16871
+ *
16872
+ */
16873
+ type ClientId = CamundaKey<'ClientId'>;
16874
+ declare namespace ClientId {
16875
+ function assumeExists(value: string): ClientId;
16876
+ function getValue(key: ClientId): string;
16877
+ function isValid(value: string): boolean;
16878
+ }
16879
+ /**
16880
+ * The name of a cluster variable. Unique within its scope (global or tenant-specific).
16881
+ */
16882
+ type ClusterVariableName = CamundaKey<'ClusterVariableName'>;
16883
+ declare namespace ClusterVariableName {
16884
+ function assumeExists(value: string): ClusterVariableName;
16885
+ function getValue(key: ClusterVariableName): string;
16886
+ function isValid(value: string): boolean;
16887
+ }
16289
16888
  /**
16290
16889
  * System-generated key for a conditional evaluation.
16291
16890
  */
@@ -16424,6 +17023,15 @@ declare namespace GlobalListenerId {
16424
17023
  function getValue(key: GlobalListenerId): string;
16425
17024
  function isValid(value: string): boolean;
16426
17025
  }
17026
+ /**
17027
+ * The unique identifier of a group.
17028
+ */
17029
+ type GroupId = CamundaKey<'GroupId'>;
17030
+ declare namespace GroupId {
17031
+ function assumeExists(value: string): GroupId;
17032
+ function getValue(key: GroupId): string;
17033
+ function isValid(value: string): boolean;
17034
+ }
16427
17035
  /**
16428
17036
  * System-generated key for a incident.
16429
17037
  */
@@ -16442,6 +17050,15 @@ declare namespace JobKey {
16442
17050
  function getValue(key: JobKey): string;
16443
17051
  function isValid(value: string): boolean;
16444
17052
  }
17053
+ /**
17054
+ * The unique identifier of a mapping rule.
17055
+ */
17056
+ type MappingRuleId = CamundaKey<'MappingRuleId'>;
17057
+ declare namespace MappingRuleId {
17058
+ function assumeExists(value: string): MappingRuleId;
17059
+ function getValue(key: MappingRuleId): string;
17060
+ function isValid(value: string): boolean;
17061
+ }
16445
17062
  /**
16446
17063
  * System-generated key for an message.
16447
17064
  */
@@ -16487,6 +17104,15 @@ declare namespace ProcessInstanceKey {
16487
17104
  function getValue(key: ProcessInstanceKey): string;
16488
17105
  function isValid(value: string): boolean;
16489
17106
  }
17107
+ /**
17108
+ * The unique identifier of a role.
17109
+ */
17110
+ type RoleId = CamundaKey<'RoleId'>;
17111
+ declare namespace RoleId {
17112
+ function assumeExists(value: string): RoleId;
17113
+ function getValue(key: RoleId): string;
17114
+ function isValid(value: string): boolean;
17115
+ }
16490
17116
  /**
16491
17117
  * System-generated key for an signal.
16492
17118
  */
@@ -16564,6 +17190,36 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
16564
17190
  */
16565
17191
  meta?: Record<string, unknown>;
16566
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">;
17201
+ /**
17202
+ * Get agent instance
17203
+ *
17204
+ * Returns agent instance as JSON.
17205
+ */
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">;
17217
+ /**
17218
+ * Search agent instances
17219
+ *
17220
+ * Search for agent instances based on given criteria.
17221
+ */
17222
+ declare const searchAgentInstances: <ThrowOnError extends boolean = true>(options?: Options<SearchAgentInstancesData, ThrowOnError>) => RequestResult<SearchAgentInstancesResponses, SearchAgentInstancesErrors, ThrowOnError, "fields">;
16567
17223
  /**
16568
17224
  * Search audit logs
16569
17225
  *
@@ -16938,6 +17594,13 @@ declare const createElementInstanceVariables: <ThrowOnError extends boolean = tr
16938
17594
  * Evaluates a FEEL expression and returns the result. Supports references to tenant scoped cluster variables when a tenant ID is provided.
16939
17595
  */
16940
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">;
16941
17604
  /**
16942
17605
  * Create global user task listener
16943
17606
  *
@@ -16972,6 +17635,22 @@ declare const searchGlobalTaskListeners: <ThrowOnError extends boolean = true>(o
16972
17635
  * Create group
16973
17636
  *
16974
17637
  * Create a new group.
17638
+ *
17639
+ * The supplied `groupId` is validated against `^[a-zA-Z0-9_~@.+-]+$`
17640
+ * (max 256 characters) by `IdentifierValidator.validateId` in the
17641
+ * runtime. This strict validation applies wherever the Groups API
17642
+ * is available: in OIDC deployments that set
17643
+ * `camunda.security.authentication.oidc.groupsClaim` the Groups
17644
+ * API (including this endpoint) is disabled entirely, so group
17645
+ * CRUD never sees externally-minted IdP IDs. The BYOG relaxation
17646
+ * only loosens validation when a group is referenced *as a member*
17647
+ * of a role or tenant (`assignRoleToGroup`,
17648
+ * `assignGroupToTenant`); group CRUD itself always uses the strict
17649
+ * default-id regex. The constraint is not advertised on the
17650
+ * `GroupId` schema so that the same schema can be reused at
17651
+ * member-reference sites without falsely rejecting
17652
+ * externally-minted IdP group IDs there.
17653
+ *
16975
17654
  */
16976
17655
  declare const createGroup: <ThrowOnError extends boolean = true>(options?: Options<CreateGroupData, ThrowOnError>) => RequestResult<CreateGroupResponses, CreateGroupErrors, ThrowOnError, "fields">;
16977
17656
  /**
@@ -17466,26 +18145,58 @@ declare const getProcessInstanceSequenceFlows: <ThrowOnError extends boolean = t
17466
18145
  * Get statistics about elements by the process instance key.
17467
18146
  */
17468
18147
  declare const getProcessInstanceStatistics: <ThrowOnError extends boolean = true>(options: Options<GetProcessInstanceStatisticsData, ThrowOnError>) => RequestResult<GetProcessInstanceStatisticsResponses, GetProcessInstanceStatisticsErrors, ThrowOnError, "fields">;
18148
+ /**
18149
+ * Search resources
18150
+ *
18151
+ * Search for deployed resources based on given criteria.
18152
+ * :::info
18153
+ * This endpoint does not return BPMN process definitions, DMN decision definitions, or form
18154
+ * resources. To query BPMN process definitions or DMN decision definitions, use their
18155
+ * respective search APIs.
18156
+ * :::
18157
+ *
18158
+ */
18159
+ declare const searchResources: <ThrowOnError extends boolean = true>(options?: Options<SearchResourcesData, ThrowOnError>) => RequestResult<SearchResourcesResponses, SearchResourcesErrors, ThrowOnError, "fields">;
17469
18160
  /**
17470
18161
  * Get resource
17471
18162
  *
17472
18163
  * Returns a deployed resource.
17473
18164
  * :::info
17474
- * Currently, this endpoint only supports RPA resources.
18165
+ * This endpoint does not return BPMN process definitions, DMN decision definitions, or form
18166
+ * resources. To query BPMN process definitions or DMN decision definitions, use their
18167
+ * respective APIs.
17475
18168
  * :::
17476
18169
  *
17477
18170
  */
17478
18171
  declare const getResource: <ThrowOnError extends boolean = true>(options: Options<GetResourceData, ThrowOnError>) => RequestResult<GetResourceResponses, GetResourceErrors, ThrowOnError, "fields">;
17479
18172
  /**
17480
- * Get resource content
18173
+ * Get RPA resource content (deprecated)
17481
18174
  *
17482
- * Returns the content of a deployed resource.
18175
+ * **Deprecated** use `/resources/{resourceKey}/content/binary` instead, which supports all
18176
+ * resource types and returns content as binary (octet-stream).
18177
+ *
18178
+ * Returns the content of a deployed RPA resource as JSON.
17483
18179
  * :::info
17484
- * 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.
17485
18182
  * :::
17486
18183
  *
18184
+ *
18185
+ * @deprecated
17487
18186
  */
17488
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">;
17489
18200
  /**
17490
18201
  * Delete resource
17491
18202
  *
@@ -18523,6 +19234,11 @@ type createAdminUserBody = (NonNullable<createAdminUserOptions> extends {
18523
19234
  body?: infer B;
18524
19235
  } ? B : never);
18525
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;
18526
19242
  type createAuthorizationOptions = Parameters<typeof createAuthorization>[0];
18527
19243
  type createAuthorizationBody = (NonNullable<createAuthorizationOptions> extends {
18528
19244
  body?: infer B;
@@ -18828,6 +19544,20 @@ type failJobPathParam_jobKey = (NonNullable<failJobOptions> extends {
18828
19544
  type failJobInput = failJobBody & {
18829
19545
  jobKey: failJobPathParam_jobKey;
18830
19546
  };
19547
+ type getAgentInstanceOptions = Parameters<typeof getAgentInstance>[0];
19548
+ type getAgentInstancePathParam_agentInstanceKey = (NonNullable<getAgentInstanceOptions> extends {
19549
+ path: {
19550
+ agentInstanceKey: infer P;
19551
+ };
19552
+ } ? P : any);
19553
+ type getAgentInstanceInput = {
19554
+ agentInstanceKey: getAgentInstancePathParam_agentInstanceKey;
19555
+ };
19556
+ /** Management of eventual consistency **/
19557
+ type getAgentInstanceConsistency = {
19558
+ /** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
19559
+ consistency: ConsistencyOptions<_DataOf<typeof getAgentInstance>>;
19560
+ };
18831
19561
  type getAuditLogOptions = Parameters<typeof getAuditLog>[0];
18832
19562
  type getAuditLogPathParam_auditLogKey = (NonNullable<getAuditLogOptions> extends {
18833
19563
  path: {
@@ -18976,6 +19706,20 @@ type getElementInstanceConsistency = {
18976
19706
  /** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
18977
19707
  consistency: ConsistencyOptions<_DataOf<typeof getElementInstance>>;
18978
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
+ };
18979
19723
  type getGlobalClusterVariableOptions = Parameters<typeof getGlobalClusterVariable>[0];
18980
19724
  type getGlobalClusterVariablePathParam_name = (NonNullable<getGlobalClusterVariableOptions> extends {
18981
19725
  path: {
@@ -19292,6 +20036,20 @@ type getResourceContentConsistency = {
19292
20036
  /** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
19293
20037
  consistency: ConsistencyOptions<_DataOf<typeof getResourceContent>>;
19294
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
+ };
19295
20053
  type getRoleOptions = Parameters<typeof getRole>[0];
19296
20054
  type getRolePathParam_roleId = (NonNullable<getRoleOptions> extends {
19297
20055
  path: {
@@ -19528,6 +20286,16 @@ type resumeBatchOperationPathParam_batchOperationKey = (NonNullable<resumeBatchO
19528
20286
  type resumeBatchOperationInput = resumeBatchOperationBody & {
19529
20287
  batchOperationKey: resumeBatchOperationPathParam_batchOperationKey;
19530
20288
  };
20289
+ type searchAgentInstancesOptions = Parameters<typeof searchAgentInstances>[0];
20290
+ type searchAgentInstancesBody = (NonNullable<searchAgentInstancesOptions> extends {
20291
+ body?: infer B;
20292
+ } ? B : never);
20293
+ type searchAgentInstancesInput = searchAgentInstancesBody;
20294
+ /** Management of eventual consistency **/
20295
+ type searchAgentInstancesConsistency = {
20296
+ /** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
20297
+ consistency: ConsistencyOptions<_DataOf<typeof searchAgentInstances>>;
20298
+ };
19531
20299
  type searchAuditLogsOptions = Parameters<typeof searchAuditLogs>[0];
19532
20300
  type searchAuditLogsBody = (NonNullable<searchAuditLogsOptions> extends {
19533
20301
  body?: infer B;
@@ -19885,6 +20653,16 @@ type searchProcessInstancesConsistency = {
19885
20653
  /** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
19886
20654
  consistency: ConsistencyOptions<_DataOf<typeof searchProcessInstances>>;
19887
20655
  };
20656
+ type searchResourcesOptions = Parameters<typeof searchResources>[0];
20657
+ type searchResourcesBody = (NonNullable<searchResourcesOptions> extends {
20658
+ body?: infer B;
20659
+ } ? B : never);
20660
+ type searchResourcesInput = searchResourcesBody;
20661
+ /** Management of eventual consistency **/
20662
+ type searchResourcesConsistency = {
20663
+ /** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
20664
+ consistency: ConsistencyOptions<_DataOf<typeof searchResources>>;
20665
+ };
19888
20666
  type searchRolesOptions = Parameters<typeof searchRoles>[0];
19889
20667
  type searchRolesBody = (NonNullable<searchRolesOptions> extends {
19890
20668
  body?: infer B;
@@ -20303,6 +21081,18 @@ type unassignUserTaskPathParam_userTaskKey = (NonNullable<unassignUserTaskOption
20303
21081
  type unassignUserTaskInput = {
20304
21082
  userTaskKey: unassignUserTaskPathParam_userTaskKey;
20305
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
+ };
20306
21096
  type updateAuthorizationOptions = Parameters<typeof updateAuthorization>[0];
20307
21097
  type updateAuthorizationBody = (NonNullable<updateAuthorizationOptions> extends {
20308
21098
  body?: infer B;
@@ -20620,12 +21410,12 @@ declare class CamundaClient {
20620
21410
  *
20621
21411
  * @example Assign a client to a group
20622
21412
  * ```ts
20623
- * async function assignClientToGroupExample() {
21413
+ * async function assignClientToGroupExample(groupId: GroupId, clientId: ClientId) {
20624
21414
  * const camunda = createCamundaClient();
20625
21415
  *
20626
21416
  * await camunda.assignClientToGroup({
20627
- * groupId: 'engineering-team',
20628
- * clientId: 'my-service-account',
21417
+ * groupId,
21418
+ * clientId,
20629
21419
  * });
20630
21420
  * }
20631
21421
  * ```
@@ -20642,12 +21432,12 @@ declare class CamundaClient {
20642
21432
  *
20643
21433
  * @example Assign a client to a tenant
20644
21434
  * ```ts
20645
- * async function assignClientToTenantExample(tenantId: TenantId) {
21435
+ * async function assignClientToTenantExample(tenantId: TenantId, clientId: ClientId) {
20646
21436
  * const camunda = createCamundaClient();
20647
21437
  *
20648
21438
  * await camunda.assignClientToTenant({
20649
21439
  * tenantId,
20650
- * clientId: 'my-service-account',
21440
+ * clientId,
20651
21441
  * });
20652
21442
  * }
20653
21443
  * ```
@@ -20664,12 +21454,12 @@ declare class CamundaClient {
20664
21454
  *
20665
21455
  * @example Assign a group to a tenant
20666
21456
  * ```ts
20667
- * async function assignGroupToTenantExample(tenantId: TenantId) {
21457
+ * async function assignGroupToTenantExample(tenantId: TenantId, groupId: GroupId) {
20668
21458
  * const camunda = createCamundaClient();
20669
21459
  *
20670
21460
  * await camunda.assignGroupToTenant({
20671
21461
  * tenantId,
20672
- * groupId: 'engineering-team',
21462
+ * groupId,
20673
21463
  * });
20674
21464
  * }
20675
21465
  * ```
@@ -20684,12 +21474,12 @@ declare class CamundaClient {
20684
21474
  *
20685
21475
  * @example Assign a mapping rule to a group
20686
21476
  * ```ts
20687
- * async function assignMappingRuleToGroupExample() {
21477
+ * async function assignMappingRuleToGroupExample(groupId: GroupId, mappingRuleId: MappingRuleId) {
20688
21478
  * const camunda = createCamundaClient();
20689
21479
  *
20690
21480
  * await camunda.assignMappingRuleToGroup({
20691
- * groupId: 'engineering-team',
20692
- * mappingRuleId: 'rule-123',
21481
+ * groupId,
21482
+ * mappingRuleId,
20693
21483
  * });
20694
21484
  * }
20695
21485
  * ```
@@ -20704,12 +21494,12 @@ declare class CamundaClient {
20704
21494
  *
20705
21495
  * @example Assign a mapping rule to a tenant
20706
21496
  * ```ts
20707
- * async function assignMappingRuleToTenantExample(tenantId: TenantId) {
21497
+ * async function assignMappingRuleToTenantExample(tenantId: TenantId, mappingRuleId: MappingRuleId) {
20708
21498
  * const camunda = createCamundaClient();
20709
21499
  *
20710
21500
  * await camunda.assignMappingRuleToTenant({
20711
21501
  * tenantId,
20712
- * mappingRuleId: 'rule-123',
21502
+ * mappingRuleId,
20713
21503
  * });
20714
21504
  * }
20715
21505
  * ```
@@ -20724,12 +21514,12 @@ declare class CamundaClient {
20724
21514
  *
20725
21515
  * @example Assign a role to a client
20726
21516
  * ```ts
20727
- * async function assignRoleToClientExample() {
21517
+ * async function assignRoleToClientExample(roleId: RoleId, clientId: ClientId) {
20728
21518
  * const camunda = createCamundaClient();
20729
21519
  *
20730
21520
  * await camunda.assignRoleToClient({
20731
- * roleId: 'process-admin',
20732
- * clientId: 'my-service-account',
21521
+ * roleId,
21522
+ * clientId,
20733
21523
  * });
20734
21524
  * }
20735
21525
  * ```
@@ -20744,12 +21534,12 @@ declare class CamundaClient {
20744
21534
  *
20745
21535
  * @example Assign a role to a group
20746
21536
  * ```ts
20747
- * async function assignRoleToGroupExample() {
21537
+ * async function assignRoleToGroupExample(roleId: RoleId, groupId: GroupId) {
20748
21538
  * const camunda = createCamundaClient();
20749
21539
  *
20750
21540
  * await camunda.assignRoleToGroup({
20751
- * roleId: 'process-admin',
20752
- * groupId: 'engineering-team',
21541
+ * roleId,
21542
+ * groupId,
20753
21543
  * });
20754
21544
  * }
20755
21545
  * ```
@@ -20764,12 +21554,12 @@ declare class CamundaClient {
20764
21554
  *
20765
21555
  * @example Assign a role to a mapping rule
20766
21556
  * ```ts
20767
- * async function assignRoleToMappingRuleExample() {
21557
+ * async function assignRoleToMappingRuleExample(roleId: RoleId, mappingRuleId: MappingRuleId) {
20768
21558
  * const camunda = createCamundaClient();
20769
21559
  *
20770
21560
  * await camunda.assignRoleToMappingRule({
20771
- * roleId: 'process-admin',
20772
- * mappingRuleId: 'rule-123',
21561
+ * roleId,
21562
+ * mappingRuleId,
20773
21563
  * });
20774
21564
  * }
20775
21565
  * ```
@@ -20786,12 +21576,12 @@ declare class CamundaClient {
20786
21576
  *
20787
21577
  * @example Assign a role to a tenant
20788
21578
  * ```ts
20789
- * async function assignRoleToTenantExample(tenantId: TenantId) {
21579
+ * async function assignRoleToTenantExample(tenantId: TenantId, roleId: RoleId) {
20790
21580
  * const camunda = createCamundaClient();
20791
21581
  *
20792
21582
  * await camunda.assignRoleToTenant({
20793
21583
  * tenantId,
20794
- * roleId: 'process-admin',
21584
+ * roleId,
20795
21585
  * });
20796
21586
  * }
20797
21587
  * ```
@@ -20806,11 +21596,11 @@ declare class CamundaClient {
20806
21596
  *
20807
21597
  * @example Assign a role to a user
20808
21598
  * ```ts
20809
- * async function assignRoleToUserExample(username: Username) {
21599
+ * async function assignRoleToUserExample(roleId: RoleId, username: Username) {
20810
21600
  * const camunda = createCamundaClient();
20811
21601
  *
20812
21602
  * await camunda.assignRoleToUser({
20813
- * roleId: 'process-admin',
21603
+ * roleId,
20814
21604
  * username,
20815
21605
  * });
20816
21606
  * }
@@ -20850,11 +21640,11 @@ declare class CamundaClient {
20850
21640
  *
20851
21641
  * @example Assign a user to a group
20852
21642
  * ```ts
20853
- * async function assignUserToGroupExample(username: Username) {
21643
+ * async function assignUserToGroupExample(groupId: GroupId, username: Username) {
20854
21644
  * const camunda = createCamundaClient();
20855
21645
  *
20856
21646
  * await camunda.assignUserToGroup({
20857
- * groupId: 'engineering-team',
21647
+ * groupId,
20858
21648
  * username,
20859
21649
  * });
20860
21650
  * }
@@ -21083,6 +21873,34 @@ declare class CamundaClient {
21083
21873
  * @tags Setup
21084
21874
  */
21085
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>>;
21086
21904
  /**
21087
21905
  * Create authorization
21088
21906
  *
@@ -21258,11 +22076,11 @@ declare class CamundaClient {
21258
22076
  *
21259
22077
  * @example Create a global cluster variable
21260
22078
  * ```ts
21261
- * async function createGlobalClusterVariableExample() {
22079
+ * async function createGlobalClusterVariableExample(name: ClusterVariableName) {
21262
22080
  * const camunda = createCamundaClient();
21263
22081
  *
21264
22082
  * const result = await camunda.createGlobalClusterVariable({
21265
- * name: 'feature-flags',
22083
+ * name,
21266
22084
  * value: { darkMode: true },
21267
22085
  * });
21268
22086
  *
@@ -21300,14 +22118,30 @@ declare class CamundaClient {
21300
22118
  * Create group
21301
22119
  *
21302
22120
  * Create a new group.
22121
+ *
22122
+ * The supplied `groupId` is validated against `^[a-zA-Z0-9_~@.+-]+$`
22123
+ * (max 256 characters) by `IdentifierValidator.validateId` in the
22124
+ * runtime. This strict validation applies wherever the Groups API
22125
+ * is available: in OIDC deployments that set
22126
+ * `camunda.security.authentication.oidc.groupsClaim` the Groups
22127
+ * API (including this endpoint) is disabled entirely, so group
22128
+ * CRUD never sees externally-minted IdP IDs. The BYOG relaxation
22129
+ * only loosens validation when a group is referenced *as a member*
22130
+ * of a role or tenant (`assignRoleToGroup`,
22131
+ * `assignGroupToTenant`); group CRUD itself always uses the strict
22132
+ * default-id regex. The constraint is not advertised on the
22133
+ * `GroupId` schema so that the same schema can be reused at
22134
+ * member-reference sites without falsely rejecting
22135
+ * externally-minted IdP group IDs there.
22136
+ *
21303
22137
  *
21304
22138
  * @example Create a group
21305
22139
  * ```ts
21306
- * async function createGroupExample() {
22140
+ * async function createGroupExample(groupId: GroupId) {
21307
22141
  * const camunda = createCamundaClient();
21308
22142
  *
21309
22143
  * const result = await camunda.createGroup({
21310
- * groupId: 'engineering-team',
22144
+ * groupId,
21311
22145
  * name: 'Engineering Team',
21312
22146
  * });
21313
22147
  *
@@ -21326,11 +22160,11 @@ declare class CamundaClient {
21326
22160
  *
21327
22161
  * @example Create a mapping rule
21328
22162
  * ```ts
21329
- * async function createMappingRuleExample() {
22163
+ * async function createMappingRuleExample(mappingRuleId: MappingRuleId) {
21330
22164
  * const camunda = createCamundaClient();
21331
22165
  *
21332
22166
  * const result = await camunda.createMappingRule({
21333
- * mappingRuleId: 'ldap-group-mapping',
22167
+ * mappingRuleId,
21334
22168
  * name: 'LDAP Group Mapping',
21335
22169
  * claimName: 'groups',
21336
22170
  * claimValue: 'engineering',
@@ -21398,11 +22232,11 @@ declare class CamundaClient {
21398
22232
  *
21399
22233
  * @example Create a role
21400
22234
  * ```ts
21401
- * async function createRoleExample() {
22235
+ * async function createRoleExample(roleId: RoleId) {
21402
22236
  * const camunda = createCamundaClient();
21403
22237
  *
21404
22238
  * const result = await camunda.createRole({
21405
- * roleId: 'process-admin',
22239
+ * roleId,
21406
22240
  * name: 'Process Admin',
21407
22241
  * });
21408
22242
  *
@@ -21442,12 +22276,12 @@ declare class CamundaClient {
21442
22276
  *
21443
22277
  * @example Create a tenant cluster variable
21444
22278
  * ```ts
21445
- * async function createTenantClusterVariableExample(tenantId: TenantId) {
22279
+ * async function createTenantClusterVariableExample(tenantId: TenantId, name: ClusterVariableName) {
21446
22280
  * const camunda = createCamundaClient();
21447
22281
  *
21448
22282
  * const result = await camunda.createTenantClusterVariable({
21449
22283
  * tenantId,
21450
- * name: 'config',
22284
+ * name,
21451
22285
  * value: { region: 'us-east-1' },
21452
22286
  * });
21453
22287
  *
@@ -21566,10 +22400,10 @@ declare class CamundaClient {
21566
22400
  *
21567
22401
  * @example Delete a global cluster variable
21568
22402
  * ```ts
21569
- * async function deleteGlobalClusterVariableExample() {
22403
+ * async function deleteGlobalClusterVariableExample(name: ClusterVariableName) {
21570
22404
  * const camunda = createCamundaClient();
21571
22405
  *
21572
- * await camunda.deleteGlobalClusterVariable({ name: 'feature-flags' });
22406
+ * await camunda.deleteGlobalClusterVariable({ name });
21573
22407
  * }
21574
22408
  * ```
21575
22409
  * @operationId deleteGlobalClusterVariable
@@ -21602,10 +22436,10 @@ declare class CamundaClient {
21602
22436
  *
21603
22437
  * @example Delete a group
21604
22438
  * ```ts
21605
- * async function deleteGroupExample() {
22439
+ * async function deleteGroupExample(groupId: GroupId) {
21606
22440
  * const camunda = createCamundaClient();
21607
22441
  *
21608
- * await camunda.deleteGroup({ groupId: 'engineering-team' });
22442
+ * await camunda.deleteGroup({ groupId });
21609
22443
  * }
21610
22444
  * ```
21611
22445
  * @operationId deleteGroup
@@ -21620,10 +22454,10 @@ declare class CamundaClient {
21620
22454
  *
21621
22455
  * @example Delete a mapping rule
21622
22456
  * ```ts
21623
- * async function deleteMappingRuleExample() {
22457
+ * async function deleteMappingRuleExample(mappingRuleId: MappingRuleId) {
21624
22458
  * const camunda = createCamundaClient();
21625
22459
  *
21626
- * await camunda.deleteMappingRule({ mappingRuleId: 'ldap-group-mapping' });
22460
+ * await camunda.deleteMappingRule({ mappingRuleId });
21627
22461
  * }
21628
22462
  * ```
21629
22463
  * @operationId deleteMappingRule
@@ -21714,10 +22548,10 @@ declare class CamundaClient {
21714
22548
  *
21715
22549
  * @example Delete a role
21716
22550
  * ```ts
21717
- * async function deleteRoleExample() {
22551
+ * async function deleteRoleExample(roleId: RoleId) {
21718
22552
  * const camunda = createCamundaClient();
21719
22553
  *
21720
- * await camunda.deleteRole({ roleId: 'process-admin' });
22554
+ * await camunda.deleteRole({ roleId });
21721
22555
  * }
21722
22556
  * ```
21723
22557
  * @operationId deleteRole
@@ -21748,12 +22582,12 @@ declare class CamundaClient {
21748
22582
  *
21749
22583
  * @example Delete a tenant cluster variable
21750
22584
  * ```ts
21751
- * async function deleteTenantClusterVariableExample(tenantId: TenantId) {
22585
+ * async function deleteTenantClusterVariableExample(tenantId: TenantId, name: ClusterVariableName) {
21752
22586
  * const camunda = createCamundaClient();
21753
22587
  *
21754
22588
  * await camunda.deleteTenantClusterVariable({
21755
22589
  * tenantId,
21756
- * name: 'config',
22590
+ * name,
21757
22591
  * });
21758
22592
  * }
21759
22593
  * ```
@@ -21894,6 +22728,30 @@ declare class CamundaClient {
21894
22728
  * @tags Job
21895
22729
  */
21896
22730
  failJob(input: failJobInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof failJob>>;
22731
+ /**
22732
+ * Get agent instance
22733
+ *
22734
+ * Returns agent instance as JSON.
22735
+ *
22736
+ * @example Get an agent instance
22737
+ * ```ts
22738
+ * async function getAgentInstanceExample(agentInstanceKey: AgentInstanceKey) {
22739
+ * const camunda = createCamundaClient();
22740
+ *
22741
+ * const instance = await camunda.getAgentInstance(
22742
+ * { agentInstanceKey },
22743
+ * { consistency: { waitUpToMs: 5000 } }
22744
+ * );
22745
+ *
22746
+ * console.log(`Status: ${instance.status}`);
22747
+ * console.log(`Element: ${instance.elementId}`);
22748
+ * }
22749
+ * ```
22750
+ * @operationId getAgentInstance
22751
+ * @tags Agent instance
22752
+ * @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
22753
+ */
22754
+ getAgentInstance(input: getAgentInstanceInput, /** Management of eventual consistency **/ consistencyManagement: getAgentInstanceConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof getAgentInstance>>;
21897
22755
  /**
21898
22756
  * Get audit log
21899
22757
  *
@@ -22142,6 +23000,32 @@ declare class CamundaClient {
22142
23000
  * @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
22143
23001
  */
22144
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>>;
22145
23029
  /**
22146
23030
  * Get a global-scoped cluster variable
22147
23031
  *
@@ -22149,11 +23033,11 @@ declare class CamundaClient {
22149
23033
  *
22150
23034
  * @example Get a global cluster variable
22151
23035
  * ```ts
22152
- * async function getGlobalClusterVariableExample() {
23036
+ * async function getGlobalClusterVariableExample(name: ClusterVariableName) {
22153
23037
  * const camunda = createCamundaClient();
22154
23038
  *
22155
23039
  * const variable = await camunda.getGlobalClusterVariable(
22156
- * { name: 'feature-flags' },
23040
+ * { name },
22157
23041
  * { consistency: { waitUpToMs: 5000 } }
22158
23042
  * );
22159
23043
  *
@@ -22222,13 +23106,10 @@ declare class CamundaClient {
22222
23106
  *
22223
23107
  * @example Get a group
22224
23108
  * ```ts
22225
- * async function getGroupExample() {
23109
+ * async function getGroupExample(groupId: GroupId) {
22226
23110
  * const camunda = createCamundaClient();
22227
23111
  *
22228
- * const group = await camunda.getGroup(
22229
- * { groupId: 'engineering-team' },
22230
- * { consistency: { waitUpToMs: 5000 } }
22231
- * );
23112
+ * const group = await camunda.getGroup({ groupId }, { consistency: { waitUpToMs: 5000 } });
22232
23113
  *
22233
23114
  * console.log(`Group: ${group.name}`);
22234
23115
  * }
@@ -22412,11 +23293,11 @@ declare class CamundaClient {
22412
23293
  *
22413
23294
  * @example Get a mapping rule
22414
23295
  * ```ts
22415
- * async function getMappingRuleExample() {
23296
+ * async function getMappingRuleExample(mappingRuleId: MappingRuleId) {
22416
23297
  * const camunda = createCamundaClient();
22417
23298
  *
22418
23299
  * const rule = await camunda.getMappingRule(
22419
- * { mappingRuleId: 'ldap-group-mapping' },
23300
+ * { mappingRuleId },
22420
23301
  * { consistency: { waitUpToMs: 5000 } }
22421
23302
  * );
22422
23303
  *
@@ -22753,7 +23634,9 @@ declare class CamundaClient {
22753
23634
  *
22754
23635
  * Returns a deployed resource.
22755
23636
  * :::info
22756
- * Currently, this endpoint only supports RPA resources.
23637
+ * This endpoint does not return BPMN process definitions, DMN decision definitions, or form
23638
+ * resources. To query BPMN process definitions or DMN decision definitions, use their
23639
+ * respective APIs.
22757
23640
  * :::
22758
23641
  *
22759
23642
  *
@@ -22778,13 +23661,19 @@ declare class CamundaClient {
22778
23661
  */
22779
23662
  getResource(input: getResourceInput, /** Management of eventual consistency **/ consistencyManagement: getResourceConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof getResource>>;
22780
23663
  /**
22781
- * 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).
22782
23668
  *
22783
- * Returns the content of a deployed resource.
23669
+ * Returns the content of a deployed RPA resource as JSON.
22784
23670
  * :::info
22785
- * 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.
22786
23673
  * :::
22787
23674
  *
23675
+ *
23676
+ * @deprecated
22788
23677
  *
22789
23678
  * @example Get resource content
22790
23679
  * ```ts
@@ -22806,6 +23695,37 @@ declare class CamundaClient {
22806
23695
  * @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
22807
23696
  */
22808
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>>;
22809
23729
  /**
22810
23730
  * Get role
22811
23731
  *
@@ -22813,13 +23733,10 @@ declare class CamundaClient {
22813
23733
  *
22814
23734
  * @example Get a role
22815
23735
  * ```ts
22816
- * async function getRoleExample() {
23736
+ * async function getRoleExample(roleId: RoleId) {
22817
23737
  * const camunda = createCamundaClient();
22818
23738
  *
22819
- * const role = await camunda.getRole(
22820
- * { roleId: 'process-admin' },
22821
- * { consistency: { waitUpToMs: 5000 } }
22822
- * );
23739
+ * const role = await camunda.getRole({ roleId }, { consistency: { waitUpToMs: 5000 } });
22823
23740
  *
22824
23741
  * console.log(`Role: ${role.name}`);
22825
23742
  * }
@@ -22926,13 +23843,13 @@ declare class CamundaClient {
22926
23843
  *
22927
23844
  * @example Get a tenant cluster variable
22928
23845
  * ```ts
22929
- * async function getTenantClusterVariableExample(tenantId: TenantId) {
23846
+ * async function getTenantClusterVariableExample(tenantId: TenantId, name: ClusterVariableName) {
22930
23847
  * const camunda = createCamundaClient();
22931
23848
  *
22932
23849
  * const variable = await camunda.getTenantClusterVariable(
22933
23850
  * {
22934
23851
  * tenantId,
22935
- * name: 'config',
23852
+ * name,
22936
23853
  * },
22937
23854
  * { consistency: { waitUpToMs: 5000 } }
22938
23855
  * );
@@ -23402,6 +24319,36 @@ declare class CamundaClient {
23402
24319
  * @tags Batch operation
23403
24320
  */
23404
24321
  resumeBatchOperation(input: resumeBatchOperationInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof resumeBatchOperation>>;
24322
+ /**
24323
+ * Search agent instances
24324
+ *
24325
+ * Search for agent instances based on given criteria.
24326
+ *
24327
+ * @example Search agent instances
24328
+ * ```ts
24329
+ * async function searchAgentInstancesExample() {
24330
+ * const camunda = createCamundaClient();
24331
+ *
24332
+ * const result = await camunda.searchAgentInstances(
24333
+ * {
24334
+ * filter: { status: { $eq: 'IDLE' } },
24335
+ * sort: [{ field: 'creationDate', order: 'DESC' }],
24336
+ * page: { limit: 10 },
24337
+ * },
24338
+ * { consistency: { waitUpToMs: 5000 } }
24339
+ * );
24340
+ *
24341
+ * for (const instance of result.items ?? []) {
24342
+ * console.log(`${instance.agentInstanceKey}: ${instance.status}`);
24343
+ * }
24344
+ * console.log(`Total: ${result.page.totalItems}`);
24345
+ * }
24346
+ * ```
24347
+ * @operationId searchAgentInstances
24348
+ * @tags Agent instance
24349
+ * @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
24350
+ */
24351
+ searchAgentInstances(input: searchAgentInstancesInput, /** Management of eventual consistency **/ consistencyManagement: searchAgentInstancesConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof searchAgentInstances>>;
23405
24352
  /**
23406
24353
  * Search audit logs
23407
24354
  *
@@ -23518,11 +24465,11 @@ declare class CamundaClient {
23518
24465
  *
23519
24466
  * @example Search clients in a group
23520
24467
  * ```ts
23521
- * async function searchClientsForGroupExample() {
24468
+ * async function searchClientsForGroupExample(groupId: GroupId) {
23522
24469
  * const camunda = createCamundaClient();
23523
24470
  *
23524
24471
  * const result = await camunda.searchClientsForGroup(
23525
- * { groupId: 'engineering-team' },
24472
+ * { groupId },
23526
24473
  * { consistency: { waitUpToMs: 5000 } }
23527
24474
  * );
23528
24475
  *
@@ -23543,11 +24490,11 @@ declare class CamundaClient {
23543
24490
  *
23544
24491
  * @example Search clients for a role
23545
24492
  * ```ts
23546
- * async function searchClientsForRoleExample() {
24493
+ * async function searchClientsForRoleExample(roleId: RoleId) {
23547
24494
  * const camunda = createCamundaClient();
23548
24495
  *
23549
24496
  * const result = await camunda.searchClientsForRole(
23550
- * { roleId: 'process-admin' },
24497
+ * { roleId },
23551
24498
  * { consistency: { waitUpToMs: 5000 } }
23552
24499
  * );
23553
24500
  *
@@ -23867,11 +24814,11 @@ declare class CamundaClient {
23867
24814
  *
23868
24815
  * @example Search groups for a role
23869
24816
  * ```ts
23870
- * async function searchGroupsForRoleExample() {
24817
+ * async function searchGroupsForRoleExample(roleId: RoleId) {
23871
24818
  * const camunda = createCamundaClient();
23872
24819
  *
23873
24820
  * const result = await camunda.searchGroupsForRole(
23874
- * { roleId: 'process-admin' },
24821
+ * { roleId },
23875
24822
  * { consistency: { waitUpToMs: 5000 } }
23876
24823
  * );
23877
24824
  *
@@ -23979,11 +24926,11 @@ declare class CamundaClient {
23979
24926
  *
23980
24927
  * @example Search mapping rules for a group
23981
24928
  * ```ts
23982
- * async function searchMappingRulesForGroupExample() {
24929
+ * async function searchMappingRulesForGroupExample(groupId: GroupId) {
23983
24930
  * const camunda = createCamundaClient();
23984
24931
  *
23985
24932
  * const result = await camunda.searchMappingRulesForGroup(
23986
- * { groupId: 'engineering-team' },
24933
+ * { groupId },
23987
24934
  * { consistency: { waitUpToMs: 5000 } }
23988
24935
  * );
23989
24936
  *
@@ -24004,11 +24951,11 @@ declare class CamundaClient {
24004
24951
  *
24005
24952
  * @example Search mapping rules for a role
24006
24953
  * ```ts
24007
- * async function searchMappingRulesForRoleExample() {
24954
+ * async function searchMappingRulesForRoleExample(roleId: RoleId) {
24008
24955
  * const camunda = createCamundaClient();
24009
24956
  *
24010
24957
  * const result = await camunda.searchMappingRulesForRole(
24011
- * { roleId: 'process-admin' },
24958
+ * { roleId },
24012
24959
  * { consistency: { waitUpToMs: 5000 } }
24013
24960
  * );
24014
24961
  *
@@ -24177,6 +25124,37 @@ declare class CamundaClient {
24177
25124
  * @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
24178
25125
  */
24179
25126
  searchProcessInstances(input: searchProcessInstancesInput, /** Management of eventual consistency **/ consistencyManagement: searchProcessInstancesConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof searchProcessInstances>>;
25127
+ /**
25128
+ * Search resources
25129
+ *
25130
+ * Search for deployed resources based on given criteria.
25131
+ * :::info
25132
+ * This endpoint does not return BPMN process definitions, DMN decision definitions, or form
25133
+ * resources. To query BPMN process definitions or DMN decision definitions, use their
25134
+ * respective search APIs.
25135
+ * :::
25136
+ *
25137
+ *
25138
+ * @example Search resources
25139
+ * ```ts
25140
+ * async function searchResourcesExample() {
25141
+ * const camunda = createCamundaClient();
25142
+ *
25143
+ * const result = await camunda.searchResources(
25144
+ * { page: { limit: 10 } },
25145
+ * { consistency: { waitUpToMs: 5000 } }
25146
+ * );
25147
+ *
25148
+ * for (const resource of result.items ?? []) {
25149
+ * console.log(`Resource: ${resource.resourceName}`);
25150
+ * }
25151
+ * }
25152
+ * ```
25153
+ * @operationId searchResources
25154
+ * @tags Resource
25155
+ * @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
25156
+ */
25157
+ searchResources(input: searchResourcesInput, /** Management of eventual consistency **/ consistencyManagement: searchResourcesConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof searchResources>>;
24180
25158
  /**
24181
25159
  * Search roles
24182
25160
  *
@@ -24211,11 +25189,11 @@ declare class CamundaClient {
24211
25189
  *
24212
25190
  * @example Search roles for a group
24213
25191
  * ```ts
24214
- * async function searchRolesForGroupExample() {
25192
+ * async function searchRolesForGroupExample(groupId: GroupId) {
24215
25193
  * const camunda = createCamundaClient();
24216
25194
  *
24217
25195
  * const result = await camunda.searchRolesForGroup(
24218
- * { groupId: 'engineering-team' },
25196
+ * { groupId },
24219
25197
  * { consistency: { waitUpToMs: 5000 } }
24220
25198
  * );
24221
25199
  *
@@ -24316,11 +25294,11 @@ declare class CamundaClient {
24316
25294
  *
24317
25295
  * @example Search users in a group
24318
25296
  * ```ts
24319
- * async function searchUsersForGroupExample() {
25297
+ * async function searchUsersForGroupExample(groupId: GroupId) {
24320
25298
  * const camunda = createCamundaClient();
24321
25299
  *
24322
25300
  * const result = await camunda.searchUsersForGroup(
24323
- * { groupId: 'engineering-team' },
25301
+ * { groupId },
24324
25302
  * { consistency: { waitUpToMs: 5000 } }
24325
25303
  * );
24326
25304
  *
@@ -24341,11 +25319,11 @@ declare class CamundaClient {
24341
25319
  *
24342
25320
  * @example Search users for a role
24343
25321
  * ```ts
24344
- * async function searchUsersForRoleExample() {
25322
+ * async function searchUsersForRoleExample(roleId: RoleId) {
24345
25323
  * const camunda = createCamundaClient();
24346
25324
  *
24347
25325
  * const result = await camunda.searchUsersForRole(
24348
- * { roleId: 'process-admin' },
25326
+ * { roleId },
24349
25327
  * { consistency: { waitUpToMs: 5000 } }
24350
25328
  * );
24351
25329
  *
@@ -24589,12 +25567,12 @@ declare class CamundaClient {
24589
25567
  *
24590
25568
  * @example Unassign a client from a group
24591
25569
  * ```ts
24592
- * async function unassignClientFromGroupExample() {
25570
+ * async function unassignClientFromGroupExample(groupId: GroupId, clientId: ClientId) {
24593
25571
  * const camunda = createCamundaClient();
24594
25572
  *
24595
25573
  * await camunda.unassignClientFromGroup({
24596
- * groupId: 'engineering-team',
24597
- * clientId: 'my-service-account',
25574
+ * groupId,
25575
+ * clientId,
24598
25576
  * });
24599
25577
  * }
24600
25578
  * ```
@@ -24611,12 +25589,12 @@ declare class CamundaClient {
24611
25589
  *
24612
25590
  * @example Unassign a client from a tenant
24613
25591
  * ```ts
24614
- * async function unassignClientFromTenantExample(tenantId: TenantId) {
25592
+ * async function unassignClientFromTenantExample(tenantId: TenantId, clientId: ClientId) {
24615
25593
  * const camunda = createCamundaClient();
24616
25594
  *
24617
25595
  * await camunda.unassignClientFromTenant({
24618
25596
  * tenantId,
24619
- * clientId: 'my-service-account',
25597
+ * clientId,
24620
25598
  * });
24621
25599
  * }
24622
25600
  * ```
@@ -24633,12 +25611,12 @@ declare class CamundaClient {
24633
25611
  *
24634
25612
  * @example Unassign a group from a tenant
24635
25613
  * ```ts
24636
- * async function unassignGroupFromTenantExample(tenantId: TenantId) {
25614
+ * async function unassignGroupFromTenantExample(tenantId: TenantId, groupId: GroupId) {
24637
25615
  * const camunda = createCamundaClient();
24638
25616
  *
24639
25617
  * await camunda.unassignGroupFromTenant({
24640
25618
  * tenantId,
24641
- * groupId: 'engineering-team',
25619
+ * groupId,
24642
25620
  * });
24643
25621
  * }
24644
25622
  * ```
@@ -24653,12 +25631,12 @@ declare class CamundaClient {
24653
25631
  *
24654
25632
  * @example Unassign a mapping rule from a group
24655
25633
  * ```ts
24656
- * async function unassignMappingRuleFromGroupExample() {
25634
+ * async function unassignMappingRuleFromGroupExample(groupId: GroupId, mappingRuleId: MappingRuleId) {
24657
25635
  * const camunda = createCamundaClient();
24658
25636
  *
24659
25637
  * await camunda.unassignMappingRuleFromGroup({
24660
- * groupId: 'engineering-team',
24661
- * mappingRuleId: 'rule-123',
25638
+ * groupId,
25639
+ * mappingRuleId,
24662
25640
  * });
24663
25641
  * }
24664
25642
  * ```
@@ -24673,12 +25651,15 @@ declare class CamundaClient {
24673
25651
  *
24674
25652
  * @example Unassign a mapping rule from a tenant
24675
25653
  * ```ts
24676
- * async function unassignMappingRuleFromTenantExample(tenantId: TenantId) {
25654
+ * async function unassignMappingRuleFromTenantExample(
25655
+ * tenantId: TenantId,
25656
+ * mappingRuleId: MappingRuleId
25657
+ * ) {
24677
25658
  * const camunda = createCamundaClient();
24678
25659
  *
24679
25660
  * await camunda.unassignMappingRuleFromTenant({
24680
25661
  * tenantId,
24681
- * mappingRuleId: 'rule-123',
25662
+ * mappingRuleId,
24682
25663
  * });
24683
25664
  * }
24684
25665
  * ```
@@ -24693,12 +25674,12 @@ declare class CamundaClient {
24693
25674
  *
24694
25675
  * @example Unassign a role from a client
24695
25676
  * ```ts
24696
- * async function unassignRoleFromClientExample() {
25677
+ * async function unassignRoleFromClientExample(roleId: RoleId, clientId: ClientId) {
24697
25678
  * const camunda = createCamundaClient();
24698
25679
  *
24699
25680
  * await camunda.unassignRoleFromClient({
24700
- * roleId: 'process-admin',
24701
- * clientId: 'my-service-account',
25681
+ * roleId,
25682
+ * clientId,
24702
25683
  * });
24703
25684
  * }
24704
25685
  * ```
@@ -24713,12 +25694,12 @@ declare class CamundaClient {
24713
25694
  *
24714
25695
  * @example Unassign a role from a group
24715
25696
  * ```ts
24716
- * async function unassignRoleFromGroupExample() {
25697
+ * async function unassignRoleFromGroupExample(roleId: RoleId, groupId: GroupId) {
24717
25698
  * const camunda = createCamundaClient();
24718
25699
  *
24719
25700
  * await camunda.unassignRoleFromGroup({
24720
- * roleId: 'process-admin',
24721
- * groupId: 'engineering-team',
25701
+ * roleId,
25702
+ * groupId,
24722
25703
  * });
24723
25704
  * }
24724
25705
  * ```
@@ -24733,12 +25714,12 @@ declare class CamundaClient {
24733
25714
  *
24734
25715
  * @example Unassign a role from a mapping rule
24735
25716
  * ```ts
24736
- * async function unassignRoleFromMappingRuleExample() {
25717
+ * async function unassignRoleFromMappingRuleExample(roleId: RoleId, mappingRuleId: MappingRuleId) {
24737
25718
  * const camunda = createCamundaClient();
24738
25719
  *
24739
25720
  * await camunda.unassignRoleFromMappingRule({
24740
- * roleId: 'process-admin',
24741
- * mappingRuleId: 'rule-123',
25721
+ * roleId,
25722
+ * mappingRuleId,
24742
25723
  * });
24743
25724
  * }
24744
25725
  * ```
@@ -24756,12 +25737,12 @@ declare class CamundaClient {
24756
25737
  *
24757
25738
  * @example Unassign a role from a tenant
24758
25739
  * ```ts
24759
- * async function unassignRoleFromTenantExample(tenantId: TenantId) {
25740
+ * async function unassignRoleFromTenantExample(tenantId: TenantId, roleId: RoleId) {
24760
25741
  * const camunda = createCamundaClient();
24761
25742
  *
24762
25743
  * await camunda.unassignRoleFromTenant({
24763
25744
  * tenantId,
24764
- * roleId: 'process-admin',
25745
+ * roleId,
24765
25746
  * });
24766
25747
  * }
24767
25748
  * ```
@@ -24776,11 +25757,11 @@ declare class CamundaClient {
24776
25757
  *
24777
25758
  * @example Unassign a role from a user
24778
25759
  * ```ts
24779
- * async function unassignRoleFromUserExample(username: Username) {
25760
+ * async function unassignRoleFromUserExample(roleId: RoleId, username: Username) {
24780
25761
  * const camunda = createCamundaClient();
24781
25762
  *
24782
25763
  * await camunda.unassignRoleFromUser({
24783
- * roleId: 'process-admin',
25764
+ * roleId,
24784
25765
  * username,
24785
25766
  * });
24786
25767
  * }
@@ -24798,11 +25779,11 @@ declare class CamundaClient {
24798
25779
  *
24799
25780
  * @example Unassign a user from a group
24800
25781
  * ```ts
24801
- * async function unassignUserFromGroupExample(username: Username) {
25782
+ * async function unassignUserFromGroupExample(groupId: GroupId, username: Username) {
24802
25783
  * const camunda = createCamundaClient();
24803
25784
  *
24804
25785
  * await camunda.unassignUserFromGroup({
24805
- * groupId: 'engineering-team',
25786
+ * groupId,
24806
25787
  * username,
24807
25788
  * });
24808
25789
  * }
@@ -24851,6 +25832,37 @@ declare class CamundaClient {
24851
25832
  * @tags User task
24852
25833
  */
24853
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>>;
24854
25866
  /**
24855
25867
  * Update authorization
24856
25868
  *
@@ -24888,11 +25900,11 @@ declare class CamundaClient {
24888
25900
  *
24889
25901
  * @example Update a global cluster variable
24890
25902
  * ```ts
24891
- * async function updateGlobalClusterVariableExample() {
25903
+ * async function updateGlobalClusterVariableExample(name: ClusterVariableName) {
24892
25904
  * const camunda = createCamundaClient();
24893
25905
  *
24894
25906
  * await camunda.updateGlobalClusterVariable({
24895
- * name: 'feature-flags',
25907
+ * name,
24896
25908
  * value: { darkMode: false },
24897
25909
  * });
24898
25910
  * }
@@ -24929,11 +25941,11 @@ declare class CamundaClient {
24929
25941
  *
24930
25942
  * @example Update a group
24931
25943
  * ```ts
24932
- * async function updateGroupExample() {
25944
+ * async function updateGroupExample(groupId: GroupId) {
24933
25945
  * const camunda = createCamundaClient();
24934
25946
  *
24935
25947
  * await camunda.updateGroup({
24936
- * groupId: 'engineering-team',
25948
+ * groupId,
24937
25949
  * name: 'Engineering Team',
24938
25950
  * });
24939
25951
  * }
@@ -24970,11 +25982,11 @@ declare class CamundaClient {
24970
25982
  *
24971
25983
  * @example Update a mapping rule
24972
25984
  * ```ts
24973
- * async function updateMappingRuleExample() {
25985
+ * async function updateMappingRuleExample(mappingRuleId: MappingRuleId) {
24974
25986
  * const camunda = createCamundaClient();
24975
25987
  *
24976
25988
  * await camunda.updateMappingRule({
24977
- * mappingRuleId: 'ldap-group-mapping',
25989
+ * mappingRuleId,
24978
25990
  * name: 'LDAP Group Mapping',
24979
25991
  * claimName: 'groups',
24980
25992
  * claimValue: 'engineering-team',
@@ -24992,11 +26004,11 @@ declare class CamundaClient {
24992
26004
  *
24993
26005
  * @example Update a role
24994
26006
  * ```ts
24995
- * async function updateRoleExample() {
26007
+ * async function updateRoleExample(roleId: RoleId) {
24996
26008
  * const camunda = createCamundaClient();
24997
26009
  *
24998
26010
  * await camunda.updateRole({
24999
- * roleId: 'process-admin',
26011
+ * roleId,
25000
26012
  * name: 'Process Administrator',
25001
26013
  * });
25002
26014
  * }
@@ -25034,12 +26046,12 @@ declare class CamundaClient {
25034
26046
  *
25035
26047
  * @example Update a tenant cluster variable
25036
26048
  * ```ts
25037
- * async function updateTenantClusterVariableExample(tenantId: TenantId) {
26049
+ * async function updateTenantClusterVariableExample(tenantId: TenantId, name: ClusterVariableName) {
25038
26050
  * const camunda = createCamundaClient();
25039
26051
  *
25040
26052
  * await camunda.updateTenantClusterVariable({
25041
26053
  * tenantId,
25042
- * name: 'config',
26054
+ * name,
25043
26055
  * value: { region: 'eu-west-1' },
25044
26056
  * });
25045
26057
  * }
@@ -25305,4 +26317,4 @@ declare function eventuallyTE<E, A>(thunk: () => Promise<A>, predicate: (a: A) =
25305
26317
  waitUpToMs: number;
25306
26318
  }): TaskEither<E, A>;
25307
26319
 
25308
- export { type createAdminUserInput as $, type AuthStrategy as A, type UpdateUserTaskResponses as A0, type UpdateUserTaskResponse as A1, type UnassignUserTaskData as A2, type UnassignUserTaskErrors as A3, type UnassignUserTaskError as A4, type UnassignUserTaskResponses as A5, type UnassignUserTaskResponse as A6, type AssignUserTaskData as A7, type AssignUserTaskErrors as A8, type AssignUserTaskError as A9, type SearchUserTaskVariablesResponse as AA, type SearchVariablesData as AB, type SearchVariablesErrors as AC, type SearchVariablesError as AD, type SearchVariablesResponses as AE, type SearchVariablesResponse as AF, type GetVariableData as AG, type GetVariableErrors as AH, type GetVariableError as AI, type GetVariableResponses as AJ, type GetVariableResponse as AK, assertConstraint as AL, classifyDomainError as AM, type DomainError as AN, type DomainErrorTag as AO, eventuallyTE as AP, type FnKeys as AQ, type Fpify as AR, foldDomainError as AS, type HttpError as AT, type Left as AU, type Right as AV, retryTE as AW, type TaskEither as AX, withTimeoutTE as AY, type AssignUserTaskResponses as Aa, type AssignUserTaskResponse as Ab, type SearchUserTaskAuditLogsData as Ac, type SearchUserTaskAuditLogsErrors as Ad, type SearchUserTaskAuditLogsError as Ae, type SearchUserTaskAuditLogsResponses as Af, type SearchUserTaskAuditLogsResponse as Ag, type CompleteUserTaskData as Ah, type CompleteUserTaskErrors as Ai, type CompleteUserTaskError as Aj, type CompleteUserTaskResponses as Ak, type CompleteUserTaskResponse as Al, type SearchUserTaskEffectiveVariablesData as Am, type SearchUserTaskEffectiveVariablesErrors as An, type SearchUserTaskEffectiveVariablesError as Ao, type SearchUserTaskEffectiveVariablesResponses as Ap, type SearchUserTaskEffectiveVariablesResponse as Aq, type GetUserTaskFormData as Ar, type GetUserTaskFormErrors as As, type GetUserTaskFormError as At, type GetUserTaskFormResponses as Au, type GetUserTaskFormResponse as Av, type SearchUserTaskVariablesData as Aw, type SearchUserTaskVariablesErrors as Ax, type SearchUserTaskVariablesError as Ay, type SearchUserTaskVariablesResponses as Az, type BackpressureSeverity as B, CamundaClient as C, type assignMappingRuleToGroupInput as D, type Either as E, type assignMappingRuleToTenantInput as F, type assignRoleToClientInput as G, type HttpRetryPolicy as H, type assignRoleToGroupInput as I, type Job as J, type assignRoleToMappingRuleInput as K, type assignRoleToTenantInput as L, type assignRoleToUserInput as M, type assignUserTaskInput as N, type OperationOptions as O, type assignUserToGroupInput as P, type assignUserToTenantInput as Q, type broadcastSignalInput as R, type SdkError as S, type TelemetryHooks as T, type cancelBatchOperationInput as U, type ValidationMode as V, type cancelProcessInstanceInput as W, type cancelProcessInstancesBatchOperationInput as X, type completeJobInput as Y, type completeUserTaskInput as Z, type correlateMessageInput as _, type CamundaOptions as a, type getIncidentConsistency as a$, type createAuthorizationInput as a0, type createDeploymentInput as a1, type createDocumentInput as a2, type createDocumentLinkInput as a3, type createDocumentsInput as a4, type createElementInstanceVariablesInput as a5, type createGlobalClusterVariableInput as a6, type createGlobalTaskListenerInput as a7, type createGroupInput as a8, type createMappingRuleInput as a9, type getAuthenticationInput as aA, type getAuthorizationInput as aB, type getAuthorizationConsistency as aC, type getBatchOperationInput as aD, type getBatchOperationConsistency as aE, type getDecisionDefinitionInput as aF, type getDecisionDefinitionConsistency as aG, type getDecisionDefinitionXmlInput as aH, type getDecisionDefinitionXmlConsistency as aI, type getDecisionInstanceInput as aJ, type getDecisionInstanceConsistency as aK, type getDecisionRequirementsInput as aL, type getDecisionRequirementsConsistency as aM, type getDecisionRequirementsXmlInput as aN, type getDecisionRequirementsXmlConsistency as aO, type getDocumentInput as aP, type getElementInstanceInput as aQ, type getElementInstanceConsistency as aR, type getGlobalClusterVariableInput as aS, type getGlobalClusterVariableConsistency as aT, type getGlobalJobStatisticsInput as aU, type getGlobalJobStatisticsConsistency as aV, type getGlobalTaskListenerInput as aW, type getGlobalTaskListenerConsistency as aX, type getGroupInput as aY, type getGroupConsistency as aZ, type getIncidentInput as a_, type createProcessInstanceInput as aa, type createRoleInput as ab, type createTenantInput as ac, type createTenantClusterVariableInput as ad, type createUserInput as ae, type deleteAuthorizationInput as af, type deleteDecisionInstanceInput as ag, type deleteDecisionInstancesBatchOperationInput as ah, type deleteDocumentInput as ai, type deleteGlobalClusterVariableInput as aj, type deleteGlobalTaskListenerInput as ak, type deleteGroupInput as al, type deleteMappingRuleInput as am, type deleteProcessInstanceInput as an, type deleteProcessInstancesBatchOperationInput as ao, type deleteResourceInput as ap, type deleteRoleInput as aq, type deleteTenantInput as ar, type deleteTenantClusterVariableInput as as, type deleteUserInput as at, type evaluateConditionalsInput as au, type evaluateDecisionInput as av, type evaluateExpressionInput as aw, type failJobInput as ax, type getAuditLogInput as ay, type getAuditLogConsistency as az, type CancelablePromise as b, type modifyProcessInstancesBatchOperationInput as b$, type getJobErrorStatisticsInput as b0, type getJobErrorStatisticsConsistency as b1, type getJobTimeSeriesStatisticsInput as b2, type getJobTimeSeriesStatisticsConsistency as b3, type getJobTypeStatisticsInput as b4, type getJobTypeStatisticsConsistency as b5, type getJobWorkerStatisticsInput as b6, type getJobWorkerStatisticsConsistency as b7, type getLicenseInput as b8, type getMappingRuleInput as b9, type getResourceConsistency as bA, type getResourceContentInput as bB, type getResourceContentConsistency as bC, type getRoleInput as bD, type getRoleConsistency as bE, type getStartProcessFormInput as bF, type getStartProcessFormConsistency as bG, type getStatusInput as bH, type getSystemConfigurationInput as bI, type getTenantInput as bJ, type getTenantConsistency as bK, type getTenantClusterVariableInput as bL, type getTenantClusterVariableConsistency as bM, type getTopologyInput as bN, type getUsageMetricsInput as bO, type getUsageMetricsConsistency as bP, type getUserInput as bQ, type getUserConsistency as bR, type getUserTaskInput as bS, type getUserTaskConsistency as bT, type getUserTaskFormInput as bU, type getUserTaskFormConsistency as bV, type getVariableInput as bW, type getVariableConsistency as bX, type migrateProcessInstanceInput as bY, type migrateProcessInstancesBatchOperationInput as bZ, type modifyProcessInstanceInput as b_, type getMappingRuleConsistency as ba, type getProcessDefinitionInput as bb, type getProcessDefinitionConsistency as bc, type getProcessDefinitionInstanceStatisticsInput as bd, type getProcessDefinitionInstanceStatisticsConsistency as be, type getProcessDefinitionInstanceVersionStatisticsInput as bf, type getProcessDefinitionInstanceVersionStatisticsConsistency as bg, type getProcessDefinitionMessageSubscriptionStatisticsInput as bh, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as bi, type getProcessDefinitionStatisticsInput as bj, type getProcessDefinitionStatisticsConsistency as bk, type getProcessDefinitionXmlInput as bl, type getProcessDefinitionXmlConsistency as bm, type getProcessInstanceInput as bn, type getProcessInstanceConsistency as bo, type getProcessInstanceCallHierarchyInput as bp, type getProcessInstanceCallHierarchyConsistency as bq, type getProcessInstanceSequenceFlowsInput as br, type getProcessInstanceSequenceFlowsConsistency as bs, type getProcessInstanceStatisticsInput as bt, type getProcessInstanceStatisticsConsistency as bu, type getProcessInstanceStatisticsByDefinitionInput as bv, type getProcessInstanceStatisticsByDefinitionConsistency as bw, type getProcessInstanceStatisticsByErrorInput as bx, type getProcessInstanceStatisticsByErrorConsistency as by, type getResourceInput as bz, createCamundaClient as c, type searchRolesInput as c$, type pinClockInput as c0, type publishMessageInput as c1, type resetClockInput as c2, type resolveIncidentInput as c3, type resolveIncidentsBatchOperationInput as c4, type resolveProcessInstanceIncidentsInput as c5, type resumeBatchOperationInput as c6, type searchAuditLogsInput as c7, type searchAuditLogsConsistency as c8, type searchAuthorizationsInput as c9, type searchGlobalTaskListenersConsistency as cA, type searchGroupIdsForTenantInput as cB, type searchGroupIdsForTenantConsistency as cC, type searchGroupsInput as cD, type searchGroupsConsistency as cE, type searchGroupsForRoleInput as cF, type searchGroupsForRoleConsistency as cG, type searchIncidentsInput as cH, type searchIncidentsConsistency as cI, type searchJobsInput as cJ, type searchJobsConsistency as cK, type searchMappingRuleInput as cL, type searchMappingRuleConsistency as cM, type searchMappingRulesForGroupInput as cN, type searchMappingRulesForGroupConsistency as cO, type searchMappingRulesForRoleInput as cP, type searchMappingRulesForRoleConsistency as cQ, type searchMappingRulesForTenantInput as cR, type searchMappingRulesForTenantConsistency as cS, type searchMessageSubscriptionsInput as cT, type searchMessageSubscriptionsConsistency as cU, type searchProcessDefinitionsInput as cV, type searchProcessDefinitionsConsistency as cW, type searchProcessInstanceIncidentsInput as cX, type searchProcessInstanceIncidentsConsistency as cY, type searchProcessInstancesInput as cZ, type searchProcessInstancesConsistency as c_, type searchAuthorizationsConsistency as ca, type searchBatchOperationItemsInput as cb, type searchBatchOperationItemsConsistency as cc, type searchBatchOperationsInput as cd, type searchBatchOperationsConsistency as ce, type searchClientsForGroupInput as cf, type searchClientsForGroupConsistency as cg, type searchClientsForRoleInput as ch, type searchClientsForRoleConsistency as ci, type searchClientsForTenantInput as cj, type searchClientsForTenantConsistency as ck, type searchClusterVariablesInput as cl, type searchClusterVariablesConsistency as cm, type searchCorrelatedMessageSubscriptionsInput as cn, type searchCorrelatedMessageSubscriptionsConsistency as co, type searchDecisionDefinitionsInput as cp, type searchDecisionDefinitionsConsistency as cq, type searchDecisionInstancesInput as cr, type searchDecisionInstancesConsistency as cs, type searchDecisionRequirementsInput as ct, type searchDecisionRequirementsConsistency as cu, type searchElementInstanceIncidentsInput as cv, type searchElementInstanceIncidentsConsistency as cw, type searchElementInstancesInput as cx, type searchElementInstancesConsistency as cy, type searchGlobalTaskListenersInput as cz, type CamundaFpClient as d, AuditLogOperationTypeEnum as d$, type searchRolesConsistency as d0, type searchRolesForGroupInput as d1, type searchRolesForGroupConsistency as d2, type searchRolesForTenantInput as d3, type searchRolesForTenantConsistency as d4, type searchTenantsInput as d5, type searchTenantsConsistency as d6, type searchUsersInput as d7, type searchUsersConsistency as d8, type searchUsersForGroupInput as d9, type unassignRoleFromTenantInput as dA, type unassignRoleFromUserInput as dB, type unassignUserFromGroupInput as dC, type unassignUserFromTenantInput as dD, type unassignUserTaskInput as dE, type updateAuthorizationInput as dF, type updateGlobalClusterVariableInput as dG, type updateGlobalTaskListenerInput as dH, type updateGroupInput as dI, type updateJobInput as dJ, type updateMappingRuleInput as dK, type updateRoleInput as dL, type updateTenantInput as dM, type updateTenantClusterVariableInput as dN, type updateUserInput as dO, type updateUserTaskInput as dP, type ExtendedDeploymentResult as dQ, CancelError as dR, type CamundaKey as dS, type ClientOptions as dT, type AuditLogResult as dU, type AuditLogSearchQuerySortRequest as dV, type AuditLogSearchQueryRequest as dW, type AuditLogFilter as dX, type AuditLogSearchQueryResult as dY, AuditLogEntityKey as dZ, AuditLogEntityTypeEnum as d_, type searchUsersForGroupConsistency as da, type searchUsersForRoleInput as db, type searchUsersForRoleConsistency as dc, type searchUsersForTenantInput as dd, type searchUsersForTenantConsistency as de, type searchUserTaskAuditLogsInput as df, type searchUserTaskAuditLogsConsistency as dg, type searchUserTaskEffectiveVariablesInput as dh, type searchUserTaskEffectiveVariablesConsistency as di, type searchUserTasksInput as dj, type searchUserTasksConsistency as dk, type searchUserTaskVariablesInput as dl, type searchUserTaskVariablesConsistency as dm, type searchVariablesInput as dn, type searchVariablesConsistency as dp, type suspendBatchOperationInput as dq, type throwJobErrorInput as dr, type unassignClientFromGroupInput as ds, type unassignClientFromTenantInput as dt, type unassignGroupFromTenantInput as du, type unassignMappingRuleFromGroupInput as dv, type unassignMappingRuleFromTenantInput as dw, type unassignRoleFromClientInput as dx, type unassignRoleFromGroupInput as dy, type unassignRoleFromMappingRuleInput as dz, createCamundaFpClient as e, type ClusterVariableSearchResult as e$, AuditLogActorTypeEnum as e0, AuditLogResultEnum as e1, AuditLogCategoryEnum as e2, type AuditLogEntityKeyFilterProperty as e3, type AdvancedAuditLogEntityKeyFilter as e4, type EntityTypeFilterProperty as e5, type AdvancedEntityTypeFilter as e6, type OperationTypeFilterProperty as e7, type AdvancedOperationTypeFilter as e8, type CategoryFilterProperty as e9, type BatchOperationItemSearchQuerySortRequest as eA, type BatchOperationItemSearchQuery as eB, type BatchOperationItemFilter as eC, type BatchOperationItemSearchQueryResult as eD, type BatchOperationItemResponse as eE, type DecisionInstanceDeletionBatchOperationRequest as eF, type ProcessInstanceCancellationBatchOperationRequest as eG, type ProcessInstanceIncidentResolutionBatchOperationRequest as eH, type ProcessInstanceDeletionBatchOperationRequest as eI, type ProcessInstanceMigrationBatchOperationRequest as eJ, type ProcessInstanceMigrationBatchOperationPlan as eK, type ProcessInstanceModificationBatchOperationRequest as eL, type ProcessInstanceModificationMoveBatchOperationInstruction as eM, BatchOperationItemStateEnum as eN, BatchOperationStateEnum as eO, BatchOperationTypeEnum as eP, type BatchOperationTypeFilterProperty as eQ, type AdvancedBatchOperationTypeFilter as eR, type BatchOperationStateFilterProperty as eS, type AdvancedBatchOperationStateFilter as eT, type BatchOperationItemStateFilterProperty as eU, type AdvancedBatchOperationItemStateFilter as eV, type ClockPinRequest as eW, ClusterVariableScopeEnum as eX, type CreateClusterVariableRequest as eY, type UpdateClusterVariableRequest as eZ, type ClusterVariableResult as e_, type AdvancedCategoryFilter as ea, type AuditLogResultFilterProperty as eb, type AdvancedResultFilter as ec, type AuditLogActorTypeFilterProperty as ed, type AdvancedActorTypeFilter as ee, type CamundaUserResult as ef, type AuthorizationIdBasedRequest as eg, type AuthorizationPropertyBasedRequest as eh, type AuthorizationRequest as ei, type AuthorizationSearchQuerySortRequest as ej, type AuthorizationSearchQuery as ek, type AuthorizationFilter as el, type AuthorizationResult as em, type AuthorizationSearchResult as en, type AuthorizationCreateResult as eo, PermissionTypeEnum as ep, ResourceTypeEnum as eq, OwnerTypeEnum as er, AuthorizationKey as es, type BatchOperationCreatedResult as et, type BatchOperationSearchQuerySortRequest as eu, type BatchOperationSearchQuery as ev, type BatchOperationFilter as ew, type BatchOperationSearchQueryResult as ex, type BatchOperationResponse as ey, type BatchOperationError as ez, isRight as f, type DocumentCreationBatchResponse as f$, type ClusterVariableResultBase as f0, type ClusterVariableSearchQueryRequest as f1, type ClusterVariableSearchQuerySortRequest as f2, type ClusterVariableSearchQueryFilterRequest as f3, type ClusterVariableScopeFilterProperty as f4, type AdvancedClusterVariableScopeFilter as f5, type ClusterVariableSearchQueryResult as f6, type TopologyResponse as f7, type BrokerInfo as f8, type Partition as f9, DecisionDefinitionTypeEnum as fA, DecisionInstanceStateEnum as fB, type AdvancedDecisionInstanceStateFilter as fC, type DecisionInstanceStateFilterProperty as fD, type DecisionRequirementsSearchQuerySortRequest as fE, type DecisionRequirementsSearchQuery as fF, type DecisionRequirementsFilter as fG, type DecisionRequirementsSearchQueryResult as fH, type DecisionRequirementsResult as fI, type DeploymentResult as fJ, type DeploymentMetadataResult as fK, type DeploymentProcessResult as fL, type DeploymentDecisionResult as fM, type DeploymentDecisionRequirementsResult as fN, type DeploymentFormResult as fO, type DeploymentResourceResult as fP, type DeleteResourceRequest as fQ, type DeleteResourceResponse as fR, type ResourceResult as fS, DeploymentKey as fT, type ResourceKey as fU, type DeploymentKeyFilterProperty as fV, type AdvancedDeploymentKeyFilter as fW, type ResourceKeyFilterProperty as fX, type AdvancedResourceKeyFilter as fY, type DocumentReference as fZ, type DocumentCreationFailureDetail as f_, type ConditionalEvaluationInstruction as fa, type EvaluateConditionalResult as fb, ConditionalEvaluationKey as fc, type ProcessInstanceReference as fd, StartCursor as fe, EndCursor as ff, type DecisionDefinitionSearchQuerySortRequest as fg, type DecisionDefinitionSearchQuery as fh, type DecisionDefinitionFilter as fi, type DecisionDefinitionSearchQueryResult as fj, type DecisionDefinitionResult as fk, type DecisionEvaluationInstruction as fl, type DecisionEvaluationById as fm, type DecisionEvaluationByKey as fn, type EvaluateDecisionResult as fo, type EvaluatedDecisionResult as fp, type DecisionInstanceSearchQuerySortRequest as fq, type DecisionInstanceSearchQuery as fr, type DecisionInstanceFilter as fs, type DeleteDecisionInstanceRequest as ft, type DecisionInstanceSearchQueryResult as fu, type DecisionInstanceResult as fv, type DecisionInstanceGetQueryResult as fw, type EvaluatedDecisionInputItem as fx, type EvaluatedDecisionOutputItem as fy, type MatchedDecisionRuleItem as fz, CamundaValidationError as g, ProcessDefinitionId as g$, type DocumentMetadata as g0, type DocumentMetadataResponse as g1, type DocumentLinkRequest as g2, type DocumentLink as g3, DocumentId as g4, type ElementInstanceSearchQuerySortRequest as g5, type ElementInstanceSearchQuery as g6, type ElementInstanceFilter as g7, type ElementInstanceStateFilterProperty as g8, type AdvancedElementInstanceStateFilter as g9, type GlobalTaskListenerSearchQueryRequest as gA, type GlobalTaskListenerSearchQuerySortRequest as gB, type GlobalTaskListenerSearchQueryFilterRequest as gC, type GlobalListenerSourceFilterProperty as gD, type AdvancedGlobalListenerSourceFilter as gE, type GlobalTaskListenerEventTypeFilterProperty as gF, type AdvancedGlobalTaskListenerEventTypeFilter as gG, type GlobalTaskListenerSearchQueryResult as gH, type GroupCreateRequest as gI, type GroupCreateResult as gJ, type GroupUpdateRequest as gK, type GroupUpdateResult as gL, type GroupResult as gM, type GroupSearchQuerySortRequest as gN, type GroupSearchQueryRequest as gO, type GroupFilter as gP, type GroupSearchQueryResult as gQ, type GroupUserResult as gR, type GroupUserSearchResult as gS, type GroupUserSearchQueryRequest as gT, type GroupUserSearchQuerySortRequest as gU, type GroupClientResult as gV, type GroupClientSearchResult as gW, type GroupClientSearchQueryRequest as gX, type GroupMappingRuleSearchResult as gY, type GroupRoleSearchResult as gZ, type GroupClientSearchQuerySortRequest as g_, type ElementInstanceSearchQueryResult as ga, type ElementInstanceResult as gb, ElementInstanceStateEnum as gc, type AdHocSubProcessActivateActivitiesInstruction as gd, type AdHocSubProcessActivateActivityReference as ge, type ExpressionEvaluationRequest as gf, type ExpressionEvaluationResult as gg, type ExpressionEvaluationWarningItem as gh, type LikeFilter as gi, type BasicStringFilter as gj, type AdvancedStringFilter as gk, type BasicStringFilterProperty as gl, type StringFilterProperty as gm, type AdvancedIntegerFilter as gn, type IntegerFilterProperty as go, type AdvancedDateTimeFilter as gp, type DateTimeFilterProperty as gq, type FormResult as gr, GlobalListenerSourceEnum as gs, GlobalTaskListenerEventTypeEnum as gt, type GlobalListenerBase as gu, type GlobalTaskListenerBase as gv, type GlobalTaskListenerEventTypes as gw, type CreateGlobalTaskListenerRequest as gx, type UpdateGlobalTaskListenerRequest as gy, type GlobalTaskListenerResult as gz, EventualConsistencyTimeoutError as h, type JobCompletionRequest as h$, ElementId as h0, FormId as h1, DecisionDefinitionId as h2, GlobalListenerId as h3, TenantId as h4, Username as h5, Tag as h6, type TagSet as h7, BusinessId as h8, type ElementIdFilterProperty as h9, type JobTypeStatisticsQuery as hA, type JobTypeStatisticsFilter as hB, type JobTypeStatisticsQueryResult as hC, type JobTypeStatisticsItem as hD, type JobWorkerStatisticsQuery as hE, type JobWorkerStatisticsFilter as hF, type JobWorkerStatisticsQueryResult as hG, type JobWorkerStatisticsItem as hH, type JobTimeSeriesStatisticsQuery as hI, type JobTimeSeriesStatisticsFilter as hJ, type JobTimeSeriesStatisticsQueryResult as hK, type JobTimeSeriesStatisticsItem as hL, type JobErrorStatisticsQuery as hM, type JobErrorStatisticsFilter as hN, type JobErrorStatisticsQueryResult as hO, type JobErrorStatisticsItem as hP, type JobActivationRequest as hQ, type JobActivationResult as hR, type ActivatedJobResult$1 as hS, type UserTaskProperties as hT, type JobSearchQuery as hU, type JobSearchQuerySortRequest as hV, type JobFilter as hW, type JobSearchQueryResult as hX, type JobSearchResult as hY, type JobFailRequest as hZ, type JobErrorRequest$1 as h_, 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, isLeft as i, type MappingRuleCreateRequest as i$, type JobResult as i0, type JobResultUserTask as i1, type JobResultCorrections as i2, type JobResultAdHocSubProcess as i3, type JobResultActivateElement as i4, type JobUpdateRequest as i5, type JobChangeset as i6, TenantFilterEnum as i7, JobStateEnum as i8, JobKindEnum as i9, AuditLogKey as iA, type ProcessDefinitionKeyFilterProperty as iB, type AdvancedProcessDefinitionKeyFilter as iC, type ProcessInstanceKeyFilterProperty as iD, type AdvancedProcessInstanceKeyFilter as iE, type ElementInstanceKeyFilterProperty as iF, type AdvancedElementInstanceKeyFilter as iG, type JobKeyFilterProperty as iH, type AdvancedJobKeyFilter as iI, type DecisionDefinitionKeyFilterProperty as iJ, type AdvancedDecisionDefinitionKeyFilter as iK, type ScopeKeyFilterProperty as iL, type AdvancedScopeKeyFilter as iM, type VariableKeyFilterProperty as iN, type AdvancedVariableKeyFilter as iO, type DecisionEvaluationInstanceKeyFilterProperty as iP, type AdvancedDecisionEvaluationInstanceKeyFilter as iQ, type AuditLogKeyFilterProperty as iR, type AdvancedAuditLogKeyFilter as iS, type FormKeyFilterProperty as iT, type AdvancedFormKeyFilter as iU, type DecisionEvaluationKeyFilterProperty as iV, type AdvancedDecisionEvaluationKeyFilter as iW, type DecisionRequirementsKeyFilterProperty as iX, type AdvancedDecisionRequirementsKeyFilter as iY, type LicenseResponse as iZ, type MappingRuleCreateUpdateRequest as i_, JobListenerEventTypeEnum as ia, type JobKindFilterProperty as ib, type AdvancedJobKindFilter as ic, type JobListenerEventTypeFilterProperty as id, type AdvancedJobListenerEventTypeFilter as ie, type JobStateFilterProperty as ig, type AdvancedJobStateFilter as ih, type LongKey as ii, ProcessInstanceKey as ij, ProcessDefinitionKey as ik, ElementInstanceKey as il, UserTaskKey as im, 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, isSdkError as j, type BaseProcessInstanceFilterFields as j$, type MappingRuleUpdateRequest as j0, type MappingRuleCreateUpdateResult as j1, type MappingRuleCreateResult as j2, type MappingRuleUpdateResult as j3, type MappingRuleSearchQueryResult as j4, type MappingRuleResult as j5, type MappingRuleSearchQuerySortRequest as j6, type MappingRuleSearchQueryRequest as j7, type MappingRuleFilter as j8, type MessageCorrelationRequest as j9, type ProcessDefinitionFilter as jA, type ProcessDefinitionSearchQueryResult as jB, type ProcessDefinitionResult as jC, type ProcessDefinitionElementStatisticsQuery as jD, type ProcessDefinitionElementStatisticsQueryResult as jE, type ProcessElementStatisticsResult as jF, type ProcessDefinitionMessageSubscriptionStatisticsQuery as jG, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as jH, type ProcessDefinitionMessageSubscriptionStatisticsResult as jI, type ProcessDefinitionInstanceStatisticsQuery as jJ, type ProcessDefinitionInstanceStatisticsQueryResult as jK, type ProcessDefinitionInstanceStatisticsResult as jL, type ProcessDefinitionInstanceStatisticsQuerySortRequest as jM, type ProcessDefinitionInstanceVersionStatisticsQuery as jN, type ProcessDefinitionInstanceVersionStatisticsFilter as jO, type ProcessDefinitionInstanceVersionStatisticsQueryResult as jP, type ProcessDefinitionInstanceVersionStatisticsResult as jQ, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as jR, type ProcessInstanceCreationInstruction as jS, type ProcessInstanceCreationInstructionById as jT, type ProcessInstanceCreationInstructionByKey as jU, type ProcessInstanceCreationStartInstruction as jV, type ProcessInstanceCreationRuntimeInstruction as jW, type ProcessInstanceCreationTerminateInstruction as jX, type CreateProcessInstanceResult as jY, type ProcessInstanceSearchQuerySortRequest as jZ, type ProcessInstanceSearchQuery as j_, type MessageCorrelationResult as ja, type MessagePublicationRequest as jb, type MessagePublicationResult as jc, type MessageSubscriptionSearchQueryResult as jd, type MessageSubscriptionResult as je, type MessageSubscriptionSearchQuerySortRequest as jf, type MessageSubscriptionSearchQuery as jg, type MessageSubscriptionFilter as jh, type CorrelatedMessageSubscriptionSearchQueryResult as ji, type CorrelatedMessageSubscriptionResult as jj, type CorrelatedMessageSubscriptionSearchQuery as jk, type CorrelatedMessageSubscriptionSearchQuerySortRequest as jl, MessageSubscriptionStateEnum as jm, MessageSubscriptionTypeEnum as jn, type CorrelatedMessageSubscriptionFilter as jo, type MessageSubscriptionTypeFilterProperty as jp, type AdvancedMessageSubscriptionTypeFilter as jq, type MessageSubscriptionStateFilterProperty as jr, type AdvancedMessageSubscriptionStateFilter as js, type AdvancedMessageSubscriptionKeyFilter as jt, type MessageSubscriptionKeyFilterProperty as ju, MessageSubscriptionKey as jv, MessageKey as jw, type ProblemDetail as jx, type ProcessDefinitionSearchQuerySortRequest as jy, type ProcessDefinitionSearchQuery as jz, type EnrichedActivatedJob as k, SignalKey as k$, type ProcessDefinitionStatisticsFilter as k0, type ProcessInstanceFilterFields as k1, type ProcessInstanceFilter as k2, type ProcessInstanceSearchQueryResult as k3, type ProcessInstanceResult as k4, type CancelProcessInstanceRequest as k5, type DeleteProcessInstanceRequest as k6, type ProcessInstanceCallHierarchyEntry as k7, type ProcessInstanceSequenceFlowsQueryResult as k8, type ProcessInstanceSequenceFlowResult as k9, type RoleSearchQueryRequest as kA, type RoleFilter as kB, type RoleSearchQueryResult as kC, type RoleUserResult as kD, type RoleUserSearchResult as kE, type RoleUserSearchQueryRequest as kF, type RoleUserSearchQuerySortRequest as kG, type RoleClientResult as kH, type RoleClientSearchResult as kI, type RoleClientSearchQueryRequest as kJ, type RoleClientSearchQuerySortRequest as kK, type RoleGroupResult as kL, type RoleGroupSearchResult as kM, type RoleGroupSearchQueryRequest as kN, type RoleMappingRuleSearchResult as kO, type RoleGroupSearchQuerySortRequest as kP, type SearchQueryRequest as kQ, type SearchQueryPageRequest as kR, type LimitPagination as kS, type OffsetPagination as kT, type CursorForwardPagination as kU, type CursorBackwardPagination as kV, type SearchQueryResponse as kW, SortOrderEnum as kX, type SearchQueryPageResponse as kY, type SignalBroadcastRequest as kZ, type SignalBroadcastResult as k_, type ProcessInstanceElementStatisticsQueryResult as ka, type ProcessInstanceMigrationInstruction as kb, type MigrateProcessInstanceMappingInstruction as kc, type ProcessInstanceModificationInstruction as kd, type ProcessInstanceModificationActivateInstruction as ke, type ModifyProcessInstanceVariableInstruction as kf, type ProcessInstanceModificationMoveInstruction as kg, type SourceElementInstruction as kh, type SourceElementIdInstruction as ki, type SourceElementInstanceKeyInstruction as kj, type AncestorScopeInstruction as kk, type DirectAncestorKeyInstruction as kl, type InferredAncestorKeyInstruction as km, type UseSourceParentKeyInstruction as kn, type ProcessInstanceModificationTerminateInstruction as ko, type ProcessInstanceModificationTerminateByIdInstruction as kp, type ProcessInstanceModificationTerminateByKeyInstruction as kq, ProcessInstanceStateEnum as kr, type AdvancedProcessInstanceStateFilter as ks, type ProcessInstanceStateFilterProperty as kt, type RoleCreateRequest as ku, type RoleCreateResult as kv, type RoleUpdateRequest as kw, type RoleUpdateResult as kx, type RoleResult as ky, type RoleSearchQuerySortRequest as kz, JobActionReceipt as l, type AuditLogEntityKeyExactMatch as l$, type UsageMetricsResponse as l0, type UsageMetricsResponseItem as l1, type SystemConfigurationResponse as l2, type JobMetricsConfigurationResponse as l3, type TenantCreateRequest as l4, type TenantCreateResult as l5, type TenantUpdateRequest as l6, type TenantUpdateResult as l7, type TenantResult as l8, type TenantSearchQuerySortRequest as l9, type UserTaskVariableSearchQuerySortRequest as lA, type UserTaskVariableSearchQueryRequest as lB, type UserTaskEffectiveVariableSearchQueryRequest as lC, type UserTaskAuditLogSearchQueryRequest as lD, UserTaskStateEnum as lE, type UserTaskVariableFilter as lF, type UserTaskStateFilterProperty as lG, type AdvancedUserTaskStateFilter as lH, type UserTaskAuditLogFilter as lI, type UserRequest as lJ, type UserCreateResult as lK, type UserUpdateRequest as lL, type UserUpdateResult as lM, type UserResult as lN, type UserSearchQuerySortRequest as lO, type UserSearchQueryRequest as lP, type UserFilter as lQ, type UserSearchResult as lR, type VariableSearchQuerySortRequest as lS, type VariableSearchQuery as lT, type VariableFilter as lU, type VariableSearchQueryResult as lV, type VariableSearchResult as lW, type VariableResult as lX, type VariableResultBase as lY, type VariableValueFilterProperty as lZ, type SetVariableRequest as l_, type TenantSearchQueryRequest as la, type TenantFilter as lb, type TenantSearchQueryResult as lc, type TenantUserResult as ld, type TenantUserSearchResult as le, type TenantUserSearchQueryRequest as lf, type TenantUserSearchQuerySortRequest as lg, type TenantClientResult as lh, type TenantClientSearchResult as li, type TenantClientSearchQueryRequest as lj, type TenantClientSearchQuerySortRequest as lk, type TenantGroupResult as ll, type TenantGroupSearchResult as lm, type TenantGroupSearchQueryRequest as ln, type TenantRoleSearchResult as lo, type TenantMappingRuleSearchResult as lp, type TenantGroupSearchQuerySortRequest as lq, type UserTaskSearchQuerySortRequest as lr, type UserTaskSearchQuery as ls, type UserTaskFilter as lt, type UserTaskSearchQueryResult as lu, type UserTaskResult as lv, type UserTaskCompletionRequest as lw, type UserTaskAssignmentRequest as lx, type UserTaskUpdateRequest as ly, type Changeset as lz, JobWorker as m, type SearchAuthorizationsResponse as m$, type EntityTypeExactMatch as m0, type OperationTypeExactMatch as m1, type CategoryExactMatch as m2, type AuditLogResultExactMatch as m3, type AuditLogActorTypeExactMatch as m4, type BatchOperationTypeExactMatch as m5, type BatchOperationStateExactMatch as m6, type BatchOperationItemStateExactMatch as m7, type ClusterVariableScopeExactMatch as m8, type DecisionInstanceStateExactMatch as m9, type MessageSubscriptionKeyExactMatch as mA, type ProcessInstanceStateExactMatch as mB, type UserTaskStateExactMatch as mC, type SearchAuditLogsData as mD, type SearchAuditLogsErrors as mE, type SearchAuditLogsError as mF, type SearchAuditLogsResponses as mG, type SearchAuditLogsResponse as mH, type GetAuditLogData as mI, type GetAuditLogErrors as mJ, type GetAuditLogError as mK, type GetAuditLogResponses as mL, type GetAuditLogResponse as mM, type GetAuthenticationData as mN, type GetAuthenticationErrors as mO, type GetAuthenticationError as mP, type GetAuthenticationResponses as mQ, type GetAuthenticationResponse as mR, type CreateAuthorizationData as mS, type CreateAuthorizationErrors as mT, type CreateAuthorizationError as mU, type CreateAuthorizationResponses as mV, type CreateAuthorizationResponse as mW, type SearchAuthorizationsData as mX, type SearchAuthorizationsErrors as mY, type SearchAuthorizationsError as mZ, type SearchAuthorizationsResponses as m_, type DeploymentKeyExactMatch as ma, type ResourceKeyExactMatch as mb, type ElementInstanceStateExactMatch as mc, type GlobalListenerSourceExactMatch as md, type GlobalTaskListenerEventTypeExactMatch as me, type ElementIdExactMatch as mf, type ProcessDefinitionIdExactMatch as mg, type IncidentErrorTypeExactMatch as mh, type IncidentStateExactMatch as mi, type JobKindExactMatch as mj, type JobListenerEventTypeExactMatch as mk, type JobStateExactMatch as ml, type ProcessDefinitionKeyExactMatch as mm, type ProcessInstanceKeyExactMatch as mn, type ElementInstanceKeyExactMatch as mo, type JobKeyExactMatch as mp, type DecisionDefinitionKeyExactMatch as mq, type ScopeKeyExactMatch as mr, type VariableKeyExactMatch as ms, type DecisionEvaluationInstanceKeyExactMatch as mt, type AuditLogKeyExactMatch as mu, type FormKeyExactMatch as mv, type DecisionEvaluationKeyExactMatch as mw, type DecisionRequirementsKeyExactMatch as mx, type MessageSubscriptionTypeExactMatch as my, type MessageSubscriptionStateExactMatch as mz, type JobWorkerConfig as n, type DeleteGlobalClusterVariableResponses as n$, type DeleteAuthorizationData as n0, type DeleteAuthorizationErrors as n1, type DeleteAuthorizationError as n2, type DeleteAuthorizationResponses as n3, type DeleteAuthorizationResponse as n4, type GetAuthorizationData as n5, type GetAuthorizationErrors as n6, type GetAuthorizationError as n7, type GetAuthorizationResponses as n8, type GetAuthorizationResponse as n9, type ResumeBatchOperationErrors as nA, type ResumeBatchOperationError as nB, type ResumeBatchOperationResponses as nC, type ResumeBatchOperationResponse as nD, type SuspendBatchOperationData as nE, type SuspendBatchOperationErrors as nF, type SuspendBatchOperationError as nG, type SuspendBatchOperationResponses as nH, type SuspendBatchOperationResponse as nI, type PinClockData as nJ, type PinClockErrors as nK, type PinClockError as nL, type PinClockResponses as nM, type PinClockResponse as nN, type ResetClockData as nO, type ResetClockErrors as nP, type ResetClockError as nQ, type ResetClockResponses as nR, type ResetClockResponse as nS, type CreateGlobalClusterVariableData as nT, type CreateGlobalClusterVariableErrors as nU, type CreateGlobalClusterVariableError as nV, type CreateGlobalClusterVariableResponses as nW, type CreateGlobalClusterVariableResponse as nX, type DeleteGlobalClusterVariableData as nY, type DeleteGlobalClusterVariableErrors as nZ, type DeleteGlobalClusterVariableError as n_, type UpdateAuthorizationData as na, type UpdateAuthorizationErrors as nb, type UpdateAuthorizationError as nc, type UpdateAuthorizationResponses as nd, type UpdateAuthorizationResponse as ne, type SearchBatchOperationItemsData as nf, type SearchBatchOperationItemsErrors as ng, type SearchBatchOperationItemsError as nh, type SearchBatchOperationItemsResponses as ni, type SearchBatchOperationItemsResponse as nj, type SearchBatchOperationsData as nk, type SearchBatchOperationsErrors as nl, type SearchBatchOperationsError as nm, type SearchBatchOperationsResponses as nn, type SearchBatchOperationsResponse as no, type GetBatchOperationData as np, type GetBatchOperationErrors as nq, type GetBatchOperationError as nr, type GetBatchOperationResponses as ns, type GetBatchOperationResponse as nt, type CancelBatchOperationData as nu, type CancelBatchOperationErrors as nv, type CancelBatchOperationError as nw, type CancelBatchOperationResponses as nx, type CancelBatchOperationResponse as ny, type ResumeBatchOperationData as nz, type SupportLogger as o, type GetDecisionDefinitionXmlError as o$, type DeleteGlobalClusterVariableResponse as o0, type GetGlobalClusterVariableData as o1, type GetGlobalClusterVariableErrors as o2, type GetGlobalClusterVariableError as o3, type GetGlobalClusterVariableResponses as o4, type GetGlobalClusterVariableResponse as o5, type UpdateGlobalClusterVariableData as o6, type UpdateGlobalClusterVariableErrors as o7, type UpdateGlobalClusterVariableError as o8, type UpdateGlobalClusterVariableResponses as o9, type EvaluateConditionalsData as oA, type EvaluateConditionalsErrors as oB, type EvaluateConditionalsError as oC, type EvaluateConditionalsResponses as oD, type EvaluateConditionalsResponse as oE, type SearchCorrelatedMessageSubscriptionsData as oF, type SearchCorrelatedMessageSubscriptionsErrors as oG, type SearchCorrelatedMessageSubscriptionsError as oH, type SearchCorrelatedMessageSubscriptionsResponses as oI, type SearchCorrelatedMessageSubscriptionsResponse as oJ, type EvaluateDecisionData as oK, type EvaluateDecisionErrors as oL, type EvaluateDecisionError as oM, type EvaluateDecisionResponses as oN, type EvaluateDecisionResponse as oO, type SearchDecisionDefinitionsData as oP, type SearchDecisionDefinitionsErrors as oQ, type SearchDecisionDefinitionsError as oR, type SearchDecisionDefinitionsResponses as oS, type SearchDecisionDefinitionsResponse as oT, type GetDecisionDefinitionData as oU, type GetDecisionDefinitionErrors as oV, type GetDecisionDefinitionError as oW, type GetDecisionDefinitionResponses as oX, type GetDecisionDefinitionResponse as oY, type GetDecisionDefinitionXmlData as oZ, type GetDecisionDefinitionXmlErrors as o_, type UpdateGlobalClusterVariableResponse as oa, type SearchClusterVariablesData as ob, type SearchClusterVariablesErrors as oc, type SearchClusterVariablesError as od, type SearchClusterVariablesResponses as oe, type SearchClusterVariablesResponse as of, type CreateTenantClusterVariableData as og, type CreateTenantClusterVariableErrors as oh, type CreateTenantClusterVariableError as oi, type CreateTenantClusterVariableResponses as oj, type CreateTenantClusterVariableResponse as ok, type DeleteTenantClusterVariableData as ol, type DeleteTenantClusterVariableErrors as om, type DeleteTenantClusterVariableError as on, type DeleteTenantClusterVariableResponses as oo, type DeleteTenantClusterVariableResponse as op, type GetTenantClusterVariableData as oq, type GetTenantClusterVariableErrors as or, type GetTenantClusterVariableError as os, type GetTenantClusterVariableResponses as ot, type GetTenantClusterVariableResponse as ou, type UpdateTenantClusterVariableData as ov, type UpdateTenantClusterVariableErrors as ow, type UpdateTenantClusterVariableError as ox, type UpdateTenantClusterVariableResponses as oy, type UpdateTenantClusterVariableResponse as oz, type ThreadedJob as p, type CreateDocumentLinkErrors as p$, type GetDecisionDefinitionXmlResponses as p0, type GetDecisionDefinitionXmlResponse as p1, type SearchDecisionInstancesData as p2, type SearchDecisionInstancesErrors as p3, type SearchDecisionInstancesError as p4, type SearchDecisionInstancesResponses as p5, type SearchDecisionInstancesResponse as p6, type GetDecisionInstanceData as p7, type GetDecisionInstanceErrors as p8, type GetDecisionInstanceError as p9, type GetDecisionRequirementsXmlResponse as pA, type CreateDeploymentData as pB, type CreateDeploymentErrors as pC, type CreateDeploymentError as pD, type CreateDeploymentResponses as pE, type CreateDeploymentResponse as pF, type CreateDocumentData as pG, type CreateDocumentErrors as pH, type CreateDocumentError as pI, type CreateDocumentResponses as pJ, type CreateDocumentResponse as pK, type CreateDocumentsData as pL, type CreateDocumentsErrors as pM, type CreateDocumentsError as pN, type CreateDocumentsResponses as pO, type CreateDocumentsResponse as pP, type DeleteDocumentData as pQ, type DeleteDocumentErrors as pR, type DeleteDocumentError as pS, type DeleteDocumentResponses as pT, type DeleteDocumentResponse as pU, type GetDocumentData as pV, type GetDocumentErrors as pW, type GetDocumentError as pX, type GetDocumentResponses as pY, type GetDocumentResponse as pZ, type CreateDocumentLinkData as p_, type GetDecisionInstanceResponses as pa, type GetDecisionInstanceResponse as pb, type DeleteDecisionInstanceData as pc, type DeleteDecisionInstanceErrors as pd, type DeleteDecisionInstanceError as pe, type DeleteDecisionInstanceResponses as pf, type DeleteDecisionInstanceResponse as pg, type DeleteDecisionInstancesBatchOperationData as ph, type DeleteDecisionInstancesBatchOperationErrors as pi, type DeleteDecisionInstancesBatchOperationError as pj, type DeleteDecisionInstancesBatchOperationResponses as pk, type DeleteDecisionInstancesBatchOperationResponse as pl, type SearchDecisionRequirementsData as pm, type SearchDecisionRequirementsErrors as pn, type SearchDecisionRequirementsError as po, type SearchDecisionRequirementsResponses as pp, type SearchDecisionRequirementsResponse as pq, type GetDecisionRequirementsData as pr, type GetDecisionRequirementsErrors as ps, type GetDecisionRequirementsError as pt, type GetDecisionRequirementsResponses as pu, type GetDecisionRequirementsResponse as pv, type GetDecisionRequirementsXmlData as pw, type GetDecisionRequirementsXmlErrors as px, type GetDecisionRequirementsXmlError as py, type GetDecisionRequirementsXmlResponses as pz, type ThreadedJobHandler as q, type SearchGroupsData as q$, type CreateDocumentLinkError as q0, type CreateDocumentLinkResponses as q1, type CreateDocumentLinkResponse as q2, type ActivateAdHocSubProcessActivitiesData as q3, type ActivateAdHocSubProcessActivitiesErrors as q4, type ActivateAdHocSubProcessActivitiesError as q5, type ActivateAdHocSubProcessActivitiesResponses as q6, type ActivateAdHocSubProcessActivitiesResponse as q7, type SearchElementInstancesData as q8, type SearchElementInstancesErrors as q9, type CreateGlobalTaskListenerResponses as qA, type CreateGlobalTaskListenerResponse as qB, type DeleteGlobalTaskListenerData as qC, type DeleteGlobalTaskListenerErrors as qD, type DeleteGlobalTaskListenerError as qE, type DeleteGlobalTaskListenerResponses as qF, type DeleteGlobalTaskListenerResponse as qG, type GetGlobalTaskListenerData as qH, type GetGlobalTaskListenerErrors as qI, type GetGlobalTaskListenerError as qJ, type GetGlobalTaskListenerResponses as qK, type GetGlobalTaskListenerResponse as qL, type UpdateGlobalTaskListenerData as qM, type UpdateGlobalTaskListenerErrors as qN, type UpdateGlobalTaskListenerError as qO, type UpdateGlobalTaskListenerResponses as qP, type UpdateGlobalTaskListenerResponse as qQ, type SearchGlobalTaskListenersData as qR, type SearchGlobalTaskListenersErrors as qS, type SearchGlobalTaskListenersError as qT, type SearchGlobalTaskListenersResponses as qU, type SearchGlobalTaskListenersResponse as qV, type CreateGroupData as qW, type CreateGroupErrors as qX, type CreateGroupError as qY, type CreateGroupResponses as qZ, type CreateGroupResponse as q_, type SearchElementInstancesError as qa, type SearchElementInstancesResponses as qb, type SearchElementInstancesResponse as qc, type GetElementInstanceData as qd, type GetElementInstanceErrors as qe, type GetElementInstanceError as qf, type GetElementInstanceResponses as qg, type GetElementInstanceResponse as qh, type SearchElementInstanceIncidentsData as qi, type SearchElementInstanceIncidentsErrors as qj, type SearchElementInstanceIncidentsError as qk, type SearchElementInstanceIncidentsResponses as ql, type SearchElementInstanceIncidentsResponse as qm, type CreateElementInstanceVariablesData as qn, type CreateElementInstanceVariablesErrors as qo, type CreateElementInstanceVariablesError as qp, type CreateElementInstanceVariablesResponses as qq, type CreateElementInstanceVariablesResponse as qr, type EvaluateExpressionData as qs, type EvaluateExpressionErrors as qt, type EvaluateExpressionError as qu, type EvaluateExpressionResponses as qv, type EvaluateExpressionResponse as qw, type CreateGlobalTaskListenerData as qx, type CreateGlobalTaskListenerErrors as qy, type CreateGlobalTaskListenerError as qz, ThreadedJobWorker as r, type UnassignUserFromGroupResponse as r$, type SearchGroupsErrors as r0, type SearchGroupsError as r1, type SearchGroupsResponses as r2, type SearchGroupsResponse as r3, type DeleteGroupData as r4, type DeleteGroupErrors as r5, type DeleteGroupError as r6, type DeleteGroupResponses as r7, type DeleteGroupResponse as r8, type GetGroupData as r9, type SearchMappingRulesForGroupError as rA, type SearchMappingRulesForGroupResponses as rB, type SearchMappingRulesForGroupResponse as rC, type UnassignMappingRuleFromGroupData as rD, type UnassignMappingRuleFromGroupErrors as rE, type UnassignMappingRuleFromGroupError as rF, type UnassignMappingRuleFromGroupResponses as rG, type UnassignMappingRuleFromGroupResponse as rH, type AssignMappingRuleToGroupData as rI, type AssignMappingRuleToGroupErrors as rJ, type AssignMappingRuleToGroupError as rK, type AssignMappingRuleToGroupResponses as rL, type AssignMappingRuleToGroupResponse as rM, type SearchRolesForGroupData as rN, type SearchRolesForGroupErrors as rO, type SearchRolesForGroupError as rP, type SearchRolesForGroupResponses as rQ, type SearchRolesForGroupResponse as rR, type SearchUsersForGroupData as rS, type SearchUsersForGroupErrors as rT, type SearchUsersForGroupError as rU, type SearchUsersForGroupResponses as rV, type SearchUsersForGroupResponse as rW, type UnassignUserFromGroupData as rX, type UnassignUserFromGroupErrors as rY, type UnassignUserFromGroupError as rZ, type UnassignUserFromGroupResponses as r_, type GetGroupErrors as ra, type GetGroupError as rb, type GetGroupResponses as rc, type GetGroupResponse as rd, type UpdateGroupData as re, type UpdateGroupErrors as rf, type UpdateGroupError as rg, type UpdateGroupResponses as rh, type UpdateGroupResponse as ri, type SearchClientsForGroupData as rj, type SearchClientsForGroupErrors as rk, type SearchClientsForGroupError as rl, type SearchClientsForGroupResponses as rm, type SearchClientsForGroupResponse as rn, type UnassignClientFromGroupData as ro, type UnassignClientFromGroupErrors as rp, type UnassignClientFromGroupError as rq, type UnassignClientFromGroupResponses as rr, type UnassignClientFromGroupResponse as rs, type AssignClientToGroupData as rt, type AssignClientToGroupErrors as ru, type AssignClientToGroupError as rv, type AssignClientToGroupResponses as rw, type AssignClientToGroupResponse as rx, type SearchMappingRulesForGroupData as ry, type SearchMappingRulesForGroupErrors as rz, type ThreadedJobWorkerConfig as s, type GetGlobalJobStatisticsResponses as s$, type AssignUserToGroupData as s0, type AssignUserToGroupErrors as s1, type AssignUserToGroupError as s2, type AssignUserToGroupResponses as s3, type AssignUserToGroupResponse as s4, type SearchIncidentsData as s5, type SearchIncidentsErrors as s6, type SearchIncidentsError as s7, type SearchIncidentsResponses as s8, type SearchIncidentsResponse as s9, type SearchJobsErrors as sA, type SearchJobsError as sB, type SearchJobsResponses as sC, type SearchJobsResponse as sD, type UpdateJobData as sE, type UpdateJobErrors as sF, type UpdateJobError as sG, type UpdateJobResponses as sH, type UpdateJobResponse as sI, type CompleteJobData as sJ, type CompleteJobErrors as sK, type CompleteJobError as sL, type CompleteJobResponses as sM, type CompleteJobResponse as sN, type ThrowJobErrorData as sO, type ThrowJobErrorErrors as sP, type ThrowJobErrorError as sQ, type ThrowJobErrorResponses as sR, type ThrowJobErrorResponse as sS, type FailJobData as sT, type FailJobErrors as sU, type FailJobError as sV, type FailJobResponses as sW, type FailJobResponse as sX, type GetGlobalJobStatisticsData as sY, type GetGlobalJobStatisticsErrors as sZ, type GetGlobalJobStatisticsError as s_, type GetIncidentData as sa, type GetIncidentErrors as sb, type GetIncidentError as sc, type GetIncidentResponses as sd, type GetIncidentResponse as se, type ResolveIncidentData as sf, type ResolveIncidentErrors as sg, type ResolveIncidentError as sh, type ResolveIncidentResponses as si, type ResolveIncidentResponse as sj, type GetProcessInstanceStatisticsByDefinitionData as sk, type GetProcessInstanceStatisticsByDefinitionErrors as sl, type GetProcessInstanceStatisticsByDefinitionError as sm, type GetProcessInstanceStatisticsByDefinitionResponses as sn, type GetProcessInstanceStatisticsByDefinitionResponse as so, type GetProcessInstanceStatisticsByErrorData as sp, type GetProcessInstanceStatisticsByErrorErrors as sq, type GetProcessInstanceStatisticsByErrorError as sr, type GetProcessInstanceStatisticsByErrorResponses as ss, type GetProcessInstanceStatisticsByErrorResponse as st, type ActivateJobsData as su, type ActivateJobsErrors as sv, type ActivateJobsError as sw, type ActivateJobsResponses as sx, type ActivateJobsResponse as sy, type SearchJobsData as sz, ThreadPool as t, type PublishMessageError as t$, type GetGlobalJobStatisticsResponse as t0, type GetJobTypeStatisticsData as t1, type GetJobTypeStatisticsErrors as t2, type GetJobTypeStatisticsError as t3, type GetJobTypeStatisticsResponses as t4, type GetJobTypeStatisticsResponse as t5, type GetJobWorkerStatisticsData as t6, type GetJobWorkerStatisticsErrors as t7, type GetJobWorkerStatisticsError as t8, type GetJobWorkerStatisticsResponses as t9, type DeleteMappingRuleData as tA, type DeleteMappingRuleErrors as tB, type DeleteMappingRuleError as tC, type DeleteMappingRuleResponses as tD, type DeleteMappingRuleResponse as tE, type GetMappingRuleData as tF, type GetMappingRuleErrors as tG, type GetMappingRuleError as tH, type GetMappingRuleResponses as tI, type GetMappingRuleResponse as tJ, type UpdateMappingRuleData as tK, type UpdateMappingRuleErrors as tL, type UpdateMappingRuleError as tM, type UpdateMappingRuleResponses as tN, type UpdateMappingRuleResponse as tO, type SearchMessageSubscriptionsData as tP, type SearchMessageSubscriptionsErrors as tQ, type SearchMessageSubscriptionsError as tR, type SearchMessageSubscriptionsResponses as tS, type SearchMessageSubscriptionsResponse as tT, type CorrelateMessageData as tU, type CorrelateMessageErrors as tV, type CorrelateMessageError as tW, type CorrelateMessageResponses as tX, type CorrelateMessageResponse as tY, type PublishMessageData as tZ, type PublishMessageErrors as t_, type GetJobWorkerStatisticsResponse as ta, type GetJobTimeSeriesStatisticsData as tb, type GetJobTimeSeriesStatisticsErrors as tc, type GetJobTimeSeriesStatisticsError as td, type GetJobTimeSeriesStatisticsResponses as te, type GetJobTimeSeriesStatisticsResponse as tf, type GetJobErrorStatisticsData as tg, type GetJobErrorStatisticsErrors as th, type GetJobErrorStatisticsError as ti, type GetJobErrorStatisticsResponses as tj, type GetJobErrorStatisticsResponse as tk, type GetLicenseData as tl, type GetLicenseErrors as tm, type GetLicenseError as tn, type GetLicenseResponses as to, type GetLicenseResponse as tp, type CreateMappingRuleData as tq, type CreateMappingRuleErrors as tr, type CreateMappingRuleError as ts, type CreateMappingRuleResponses as tt, type CreateMappingRuleResponse as tu, type SearchMappingRuleData as tv, type SearchMappingRuleErrors as tw, type SearchMappingRuleError as tx, type SearchMappingRuleResponses as ty, type SearchMappingRuleResponse as tz, type CamundaConfig as u, type MigrateProcessInstancesBatchOperationErrors as u$, type PublishMessageResponses as u0, type PublishMessageResponse as u1, type SearchProcessDefinitionsData as u2, type SearchProcessDefinitionsErrors as u3, type SearchProcessDefinitionsError as u4, type SearchProcessDefinitionsResponses as u5, type SearchProcessDefinitionsResponse as u6, type GetProcessDefinitionMessageSubscriptionStatisticsData as u7, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as u8, type GetProcessDefinitionMessageSubscriptionStatisticsError as u9, type GetProcessDefinitionXmlResponse as uA, type GetProcessDefinitionInstanceVersionStatisticsData as uB, type GetProcessDefinitionInstanceVersionStatisticsErrors as uC, type GetProcessDefinitionInstanceVersionStatisticsError as uD, type GetProcessDefinitionInstanceVersionStatisticsResponses as uE, type GetProcessDefinitionInstanceVersionStatisticsResponse as uF, type CreateProcessInstanceData as uG, type CreateProcessInstanceErrors as uH, type CreateProcessInstanceError as uI, type CreateProcessInstanceResponses as uJ, type CreateProcessInstanceResponse as uK, type CancelProcessInstancesBatchOperationData as uL, type CancelProcessInstancesBatchOperationErrors as uM, type CancelProcessInstancesBatchOperationError as uN, type CancelProcessInstancesBatchOperationResponses as uO, type CancelProcessInstancesBatchOperationResponse as uP, type DeleteProcessInstancesBatchOperationData as uQ, type DeleteProcessInstancesBatchOperationErrors as uR, type DeleteProcessInstancesBatchOperationError as uS, type DeleteProcessInstancesBatchOperationResponses as uT, type DeleteProcessInstancesBatchOperationResponse as uU, type ResolveIncidentsBatchOperationData as uV, type ResolveIncidentsBatchOperationErrors as uW, type ResolveIncidentsBatchOperationError as uX, type ResolveIncidentsBatchOperationResponses as uY, type ResolveIncidentsBatchOperationResponse as uZ, type MigrateProcessInstancesBatchOperationData as u_, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as ua, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as ub, type GetProcessDefinitionInstanceStatisticsData as uc, type GetProcessDefinitionInstanceStatisticsErrors as ud, type GetProcessDefinitionInstanceStatisticsError as ue, type GetProcessDefinitionInstanceStatisticsResponses as uf, type GetProcessDefinitionInstanceStatisticsResponse as ug, type GetProcessDefinitionData as uh, type GetProcessDefinitionErrors as ui, type GetProcessDefinitionError as uj, type GetProcessDefinitionResponses as uk, type GetProcessDefinitionResponse as ul, type GetStartProcessFormData as um, type GetStartProcessFormErrors as un, type GetStartProcessFormError as uo, type GetStartProcessFormResponses as up, type GetStartProcessFormResponse as uq, type GetProcessDefinitionStatisticsData as ur, type GetProcessDefinitionStatisticsErrors as us, type GetProcessDefinitionStatisticsError as ut, type GetProcessDefinitionStatisticsResponses as uu, type GetProcessDefinitionStatisticsResponse as uv, type GetProcessDefinitionXmlData as uw, type GetProcessDefinitionXmlErrors as ux, type GetProcessDefinitionXmlError as uy, type GetProcessDefinitionXmlResponses as uz, type activateAdHocSubProcessActivitiesInput as v, type GetResourceData as v$, type MigrateProcessInstancesBatchOperationError as v0, type MigrateProcessInstancesBatchOperationResponses as v1, type MigrateProcessInstancesBatchOperationResponse as v2, type ModifyProcessInstancesBatchOperationData as v3, type ModifyProcessInstancesBatchOperationErrors as v4, type ModifyProcessInstancesBatchOperationError as v5, type ModifyProcessInstancesBatchOperationResponses as v6, type ModifyProcessInstancesBatchOperationResponse as v7, type SearchProcessInstancesData as v8, type SearchProcessInstancesErrors as v9, type ResolveProcessInstanceIncidentsResponses as vA, type ResolveProcessInstanceIncidentsResponse as vB, type SearchProcessInstanceIncidentsData as vC, type SearchProcessInstanceIncidentsErrors as vD, type SearchProcessInstanceIncidentsError as vE, type SearchProcessInstanceIncidentsResponses as vF, type SearchProcessInstanceIncidentsResponse as vG, type MigrateProcessInstanceData as vH, type MigrateProcessInstanceErrors as vI, type MigrateProcessInstanceError as vJ, type MigrateProcessInstanceResponses as vK, type MigrateProcessInstanceResponse as vL, type ModifyProcessInstanceData as vM, type ModifyProcessInstanceErrors as vN, type ModifyProcessInstanceError as vO, type ModifyProcessInstanceResponses as vP, type ModifyProcessInstanceResponse as vQ, type GetProcessInstanceSequenceFlowsData as vR, type GetProcessInstanceSequenceFlowsErrors as vS, type GetProcessInstanceSequenceFlowsError as vT, type GetProcessInstanceSequenceFlowsResponses as vU, type GetProcessInstanceSequenceFlowsResponse as vV, type GetProcessInstanceStatisticsData as vW, type GetProcessInstanceStatisticsErrors as vX, type GetProcessInstanceStatisticsError as vY, type GetProcessInstanceStatisticsResponses as vZ, type GetProcessInstanceStatisticsResponse as v_, type SearchProcessInstancesError as va, type SearchProcessInstancesResponses as vb, type SearchProcessInstancesResponse as vc, type GetProcessInstanceData as vd, type GetProcessInstanceErrors as ve, type GetProcessInstanceError as vf, type GetProcessInstanceResponses as vg, type GetProcessInstanceResponse as vh, type GetProcessInstanceCallHierarchyData as vi, type GetProcessInstanceCallHierarchyErrors as vj, type GetProcessInstanceCallHierarchyError as vk, type GetProcessInstanceCallHierarchyResponses as vl, type GetProcessInstanceCallHierarchyResponse as vm, type CancelProcessInstanceData as vn, type CancelProcessInstanceErrors as vo, type CancelProcessInstanceError as vp, type CancelProcessInstanceResponses as vq, type CancelProcessInstanceResponse as vr, type DeleteProcessInstanceData as vs, type DeleteProcessInstanceErrors as vt, type DeleteProcessInstanceError as vu, type DeleteProcessInstanceResponses as vv, type DeleteProcessInstanceResponse as vw, type ResolveProcessInstanceIncidentsData as vx, type ResolveProcessInstanceIncidentsErrors as vy, type ResolveProcessInstanceIncidentsError as vz, type activateJobsInput as w, type UnassignRoleFromGroupResponse as w$, type GetResourceErrors as w0, type GetResourceError as w1, type GetResourceResponses as w2, type GetResourceResponse as w3, type GetResourceContentData as w4, type GetResourceContentErrors as w5, type GetResourceContentError as w6, type GetResourceContentResponses as w7, type GetResourceContentResponse as w8, type DeleteResourceData as w9, type UpdateRoleError as wA, type UpdateRoleResponses as wB, type UpdateRoleResponse as wC, type SearchClientsForRoleData as wD, type SearchClientsForRoleErrors as wE, type SearchClientsForRoleError as wF, type SearchClientsForRoleResponses as wG, type SearchClientsForRoleResponse as wH, type UnassignRoleFromClientData as wI, type UnassignRoleFromClientErrors as wJ, type UnassignRoleFromClientError as wK, type UnassignRoleFromClientResponses as wL, type UnassignRoleFromClientResponse as wM, type AssignRoleToClientData as wN, type AssignRoleToClientErrors as wO, type AssignRoleToClientError as wP, type AssignRoleToClientResponses as wQ, type AssignRoleToClientResponse as wR, type SearchGroupsForRoleData as wS, type SearchGroupsForRoleErrors as wT, type SearchGroupsForRoleError as wU, type SearchGroupsForRoleResponses as wV, type SearchGroupsForRoleResponse as wW, type UnassignRoleFromGroupData as wX, type UnassignRoleFromGroupErrors as wY, type UnassignRoleFromGroupError as wZ, type UnassignRoleFromGroupResponses as w_, type DeleteResourceErrors as wa, type DeleteResourceError as wb, type DeleteResourceResponses as wc, type DeleteResourceResponse2 as wd, type CreateRoleData as we, type CreateRoleErrors as wf, type CreateRoleError as wg, type CreateRoleResponses as wh, type CreateRoleResponse as wi, type SearchRolesData as wj, type SearchRolesErrors as wk, type SearchRolesError as wl, type SearchRolesResponses as wm, type SearchRolesResponse as wn, type DeleteRoleData as wo, type DeleteRoleErrors as wp, type DeleteRoleError as wq, type DeleteRoleResponses as wr, type DeleteRoleResponse as ws, type GetRoleData as wt, type GetRoleErrors as wu, type GetRoleError as wv, type GetRoleResponses as ww, type GetRoleResponse as wx, type UpdateRoleData as wy, type UpdateRoleErrors as wz, type assignClientToGroupInput as x, type CreateTenantResponse as x$, type AssignRoleToGroupData as x0, type AssignRoleToGroupErrors as x1, type AssignRoleToGroupError as x2, type AssignRoleToGroupResponses as x3, type AssignRoleToGroupResponse as x4, type SearchMappingRulesForRoleData as x5, type SearchMappingRulesForRoleErrors as x6, type SearchMappingRulesForRoleError as x7, type SearchMappingRulesForRoleResponses as x8, type SearchMappingRulesForRoleResponse as x9, type CreateAdminUserErrors as xA, type CreateAdminUserError as xB, type CreateAdminUserResponses as xC, type CreateAdminUserResponse as xD, type BroadcastSignalData as xE, type BroadcastSignalErrors as xF, type BroadcastSignalError as xG, type BroadcastSignalResponses as xH, type BroadcastSignalResponse as xI, type GetStatusData as xJ, type GetStatusErrors as xK, type GetStatusResponses as xL, type GetStatusResponse as xM, type GetUsageMetricsData as xN, type GetUsageMetricsErrors as xO, type GetUsageMetricsError as xP, type GetUsageMetricsResponses as xQ, type GetUsageMetricsResponse as xR, type GetSystemConfigurationData as xS, type GetSystemConfigurationErrors as xT, type GetSystemConfigurationError as xU, type GetSystemConfigurationResponses as xV, type GetSystemConfigurationResponse as xW, type CreateTenantData as xX, type CreateTenantErrors as xY, type CreateTenantError as xZ, type CreateTenantResponses as x_, type UnassignRoleFromMappingRuleData as xa, type UnassignRoleFromMappingRuleErrors as xb, type UnassignRoleFromMappingRuleError as xc, type UnassignRoleFromMappingRuleResponses as xd, type UnassignRoleFromMappingRuleResponse as xe, type AssignRoleToMappingRuleData as xf, type AssignRoleToMappingRuleErrors as xg, type AssignRoleToMappingRuleError as xh, type AssignRoleToMappingRuleResponses as xi, type AssignRoleToMappingRuleResponse as xj, type SearchUsersForRoleData as xk, type SearchUsersForRoleErrors as xl, type SearchUsersForRoleError as xm, type SearchUsersForRoleResponses as xn, type SearchUsersForRoleResponse as xo, type UnassignRoleFromUserData as xp, type UnassignRoleFromUserErrors as xq, type UnassignRoleFromUserError as xr, type UnassignRoleFromUserResponses as xs, type UnassignRoleFromUserResponse as xt, type AssignRoleToUserData as xu, type AssignRoleToUserErrors as xv, type AssignRoleToUserError as xw, type AssignRoleToUserResponses as xx, type AssignRoleToUserResponse as xy, type CreateAdminUserData as xz, type assignClientToTenantInput as y, type UnassignRoleFromTenantErrors as y$, type SearchTenantsData as y0, type SearchTenantsErrors as y1, type SearchTenantsError as y2, type SearchTenantsResponses as y3, type SearchTenantsResponse as y4, type DeleteTenantData as y5, type DeleteTenantErrors as y6, type DeleteTenantError as y7, type DeleteTenantResponses as y8, type DeleteTenantResponse as y9, type UnassignGroupFromTenantData as yA, type UnassignGroupFromTenantErrors as yB, type UnassignGroupFromTenantError as yC, type UnassignGroupFromTenantResponses as yD, type UnassignGroupFromTenantResponse as yE, type AssignGroupToTenantData as yF, type AssignGroupToTenantErrors as yG, type AssignGroupToTenantError as yH, type AssignGroupToTenantResponses as yI, type AssignGroupToTenantResponse as yJ, type SearchMappingRulesForTenantData as yK, type SearchMappingRulesForTenantResponses as yL, type SearchMappingRulesForTenantResponse as yM, type UnassignMappingRuleFromTenantData as yN, type UnassignMappingRuleFromTenantErrors as yO, type UnassignMappingRuleFromTenantError as yP, type UnassignMappingRuleFromTenantResponses as yQ, type UnassignMappingRuleFromTenantResponse as yR, type AssignMappingRuleToTenantData as yS, type AssignMappingRuleToTenantErrors as yT, type AssignMappingRuleToTenantError as yU, type AssignMappingRuleToTenantResponses as yV, type AssignMappingRuleToTenantResponse as yW, type SearchRolesForTenantData as yX, type SearchRolesForTenantResponses as yY, type SearchRolesForTenantResponse as yZ, type UnassignRoleFromTenantData as y_, type GetTenantData as ya, type GetTenantErrors as yb, type GetTenantError as yc, type GetTenantResponses as yd, type GetTenantResponse as ye, type UpdateTenantData as yf, type UpdateTenantErrors as yg, type UpdateTenantError as yh, type UpdateTenantResponses as yi, type UpdateTenantResponse as yj, type SearchClientsForTenantData as yk, type SearchClientsForTenantResponses as yl, type SearchClientsForTenantResponse as ym, type UnassignClientFromTenantData as yn, type UnassignClientFromTenantErrors as yo, type UnassignClientFromTenantError as yp, type UnassignClientFromTenantResponses as yq, type UnassignClientFromTenantResponse as yr, type AssignClientToTenantData as ys, type AssignClientToTenantErrors as yt, type AssignClientToTenantError as yu, type AssignClientToTenantResponses as yv, type AssignClientToTenantResponse as yw, type SearchGroupIdsForTenantData as yx, type SearchGroupIdsForTenantResponses as yy, type SearchGroupIdsForTenantResponse as yz, type assignGroupToTenantInput as z, type UpdateUserTaskError as z$, type UnassignRoleFromTenantError as z0, type UnassignRoleFromTenantResponses as z1, type UnassignRoleFromTenantResponse as z2, type AssignRoleToTenantData as z3, type AssignRoleToTenantErrors as z4, type AssignRoleToTenantError as z5, type AssignRoleToTenantResponses as z6, type AssignRoleToTenantResponse as z7, type SearchUsersForTenantData as z8, type SearchUsersForTenantResponses as z9, type DeleteUserData as zA, type DeleteUserErrors as zB, type DeleteUserError as zC, type DeleteUserResponses as zD, type DeleteUserResponse as zE, type GetUserData as zF, type GetUserErrors as zG, type GetUserError as zH, type GetUserResponses as zI, type GetUserResponse as zJ, type UpdateUserData as zK, type UpdateUserErrors as zL, type UpdateUserError as zM, type UpdateUserResponses as zN, type UpdateUserResponse as zO, type SearchUserTasksData as zP, type SearchUserTasksErrors as zQ, type SearchUserTasksError as zR, type SearchUserTasksResponses as zS, type SearchUserTasksResponse as zT, type GetUserTaskData as zU, type GetUserTaskErrors as zV, type GetUserTaskError as zW, type GetUserTaskResponses as zX, type GetUserTaskResponse as zY, type UpdateUserTaskData as zZ, type UpdateUserTaskErrors as z_, type SearchUsersForTenantResponse as za, type UnassignUserFromTenantData as zb, type UnassignUserFromTenantErrors as zc, type UnassignUserFromTenantError as zd, type UnassignUserFromTenantResponses as ze, type UnassignUserFromTenantResponse as zf, type AssignUserToTenantData as zg, type AssignUserToTenantErrors as zh, type AssignUserToTenantError as zi, type AssignUserToTenantResponses as zj, type AssignUserToTenantResponse as zk, type GetTopologyData as zl, type GetTopologyErrors as zm, type GetTopologyError as zn, type GetTopologyResponses as zo, type GetTopologyResponse as zp, type CreateUserData as zq, type CreateUserErrors as zr, type CreateUserError as zs, type CreateUserResponses as zt, type CreateUserResponse as zu, type SearchUsersData as zv, type SearchUsersErrors as zw, type SearchUsersError as zx, type SearchUsersResponses as zy, type SearchUsersResponse 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 };