@camunda8/orchestration-cluster-api 8.8.3 → 8.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-ZNUIQJ5W.js → chunk-LCCB5Q52.js} +212 -125
- package/dist/chunk-LCCB5Q52.js.map +1 -0
- package/dist/fp/index.cjs +211 -124
- package/dist/fp/index.cjs.map +1 -1
- package/dist/fp/index.d.cts +1 -1
- package/dist/fp/index.d.ts +1 -1
- package/dist/fp/index.js +1 -1
- package/dist/{index-BvRQQCn2.d.ts → index-C01EJuRB.d.ts} +216 -95
- package/dist/{index-DszoHmWt.d.cts → index-CMSUEH7k.d.cts} +216 -95
- package/dist/index.cjs +213 -126
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +15 -12
- package/dist/chunk-ZNUIQJ5W.js.map +0 -1
|
@@ -845,6 +845,24 @@ type UserTaskVariableSearchQueryRequest = SearchQueryRequest & {
|
|
|
845
845
|
*/
|
|
846
846
|
filter?: UserTaskVariableFilter;
|
|
847
847
|
};
|
|
848
|
+
/**
|
|
849
|
+
* User task effective variable search query request. Uses offset-based pagination only.
|
|
850
|
+
*
|
|
851
|
+
*/
|
|
852
|
+
type UserTaskEffectiveVariableSearchQueryRequest = {
|
|
853
|
+
/**
|
|
854
|
+
* Pagination parameters.
|
|
855
|
+
*/
|
|
856
|
+
page?: OffsetPagination;
|
|
857
|
+
/**
|
|
858
|
+
* Sort field criteria.
|
|
859
|
+
*/
|
|
860
|
+
sort?: Array<UserTaskVariableSearchQuerySortRequest>;
|
|
861
|
+
/**
|
|
862
|
+
* The user task variable search filters.
|
|
863
|
+
*/
|
|
864
|
+
filter?: UserTaskVariableFilter;
|
|
865
|
+
};
|
|
848
866
|
/**
|
|
849
867
|
* User task search query response.
|
|
850
868
|
*/
|
|
@@ -1210,6 +1228,7 @@ type ProcessDefinitionFilter = {
|
|
|
1210
1228
|
* Whether to only return the latest version of each process definition.
|
|
1211
1229
|
* When using this filter, pagination functionality is limited, you can only paginate forward using `after` and `limit`.
|
|
1212
1230
|
* The response contains no `startCursor` in the `page`, and requests ignore the `from` and `before` in the `page`.
|
|
1231
|
+
* When using this filter, sorting is limited to `processDefinitionId` and `tenantId` fields only.
|
|
1213
1232
|
*
|
|
1214
1233
|
*/
|
|
1215
1234
|
isLatestVersion?: boolean;
|
|
@@ -1241,6 +1260,15 @@ type ProcessDefinitionFilter = {
|
|
|
1241
1260
|
* Indicates whether the start event of the process has an associated Form Key.
|
|
1242
1261
|
*/
|
|
1243
1262
|
hasStartForm?: boolean;
|
|
1263
|
+
/**
|
|
1264
|
+
* Filter by the process definition's state.
|
|
1265
|
+
* When not set, process definitions in any state are returned.
|
|
1266
|
+
* Set to `ACTIVE` to exclude deleted definitions (recommended for most use cases).
|
|
1267
|
+
* Set to `DELETED` to return only definitions that have been deleted but are still
|
|
1268
|
+
* retained in secondary storage.
|
|
1269
|
+
*
|
|
1270
|
+
*/
|
|
1271
|
+
state?: 'ACTIVE' | 'DELETED';
|
|
1244
1272
|
};
|
|
1245
1273
|
type ProcessDefinitionSearchQueryResult = SearchQueryResponse & {
|
|
1246
1274
|
/**
|
|
@@ -1281,6 +1309,10 @@ type ProcessDefinitionResult = {
|
|
|
1281
1309
|
* Indicates whether the start event of the process has an associated Form Key.
|
|
1282
1310
|
*/
|
|
1283
1311
|
hasStartForm?: boolean;
|
|
1312
|
+
/**
|
|
1313
|
+
* The state of this process definition.
|
|
1314
|
+
*/
|
|
1315
|
+
state?: 'ACTIVE' | 'DELETED';
|
|
1284
1316
|
};
|
|
1285
1317
|
type ProcessInstanceSearchQuerySortRequest = {
|
|
1286
1318
|
/**
|
|
@@ -1780,9 +1812,16 @@ type BaseProcessInstanceFilterFields = {
|
|
|
1780
1812
|
*/
|
|
1781
1813
|
parentElementInstanceKey?: ElementInstanceKeyFilterProperty;
|
|
1782
1814
|
/**
|
|
1783
|
-
* The batch operation
|
|
1815
|
+
* The batch operation id.
|
|
1816
|
+
* **Deprecated**: Use `batchOperationKey` instead. This field will be removed in a future release. If both `batchOperationId` and `batchOperationKey` are provided, the request will be rejected with a 400 error.
|
|
1817
|
+
*
|
|
1818
|
+
* @deprecated
|
|
1784
1819
|
*/
|
|
1785
1820
|
batchOperationId?: StringFilterProperty;
|
|
1821
|
+
/**
|
|
1822
|
+
* The batch operation key.
|
|
1823
|
+
*/
|
|
1824
|
+
batchOperationKey?: StringFilterProperty;
|
|
1786
1825
|
/**
|
|
1787
1826
|
* The error message related to the process.
|
|
1788
1827
|
*/
|
|
@@ -5541,11 +5580,9 @@ type FormResult = {
|
|
|
5541
5580
|
*/
|
|
5542
5581
|
formId?: FormId;
|
|
5543
5582
|
/**
|
|
5544
|
-
* The form
|
|
5583
|
+
* The form schema as a JSON document serialized as a string.
|
|
5545
5584
|
*/
|
|
5546
|
-
schema?:
|
|
5547
|
-
[key: string]: unknown;
|
|
5548
|
-
};
|
|
5585
|
+
schema?: string;
|
|
5549
5586
|
/**
|
|
5550
5587
|
* The version of the the deployed form.
|
|
5551
5588
|
*/
|
|
@@ -7030,6 +7067,12 @@ type CompleteUserTaskErrors = {
|
|
|
7030
7067
|
*
|
|
7031
7068
|
*/
|
|
7032
7069
|
503: ProblemDetail;
|
|
7070
|
+
/**
|
|
7071
|
+
* The request timed out between the gateway and the broker. For these endpoints, this often happens when user task listeners are configured and the corresponding listener job is not completed within the request timeout. Common causes include no available job workers for the listener type, busy or crashed job workers, or delayed job completion. As with any gateway timeout, general timeout causes (for example transient network issues) can also result in a 504 response.
|
|
7072
|
+
* Troubleshooting: - verify that job workers for the listener type are running and healthy - check worker logs for crashes, retries, and completion failures - check network connectivity between workers, gateway, and broker - retry with backoff after transient failures - fail without retries if a problem persists
|
|
7073
|
+
*
|
|
7074
|
+
*/
|
|
7075
|
+
504: ProblemDetail;
|
|
7033
7076
|
};
|
|
7034
7077
|
type CompleteUserTaskError = CompleteUserTaskErrors[keyof CompleteUserTaskErrors];
|
|
7035
7078
|
type CompleteUserTaskResponses = {
|
|
@@ -7074,6 +7117,12 @@ type AssignUserTaskErrors = {
|
|
|
7074
7117
|
*
|
|
7075
7118
|
*/
|
|
7076
7119
|
503: ProblemDetail;
|
|
7120
|
+
/**
|
|
7121
|
+
* The request timed out between the gateway and the broker. For these endpoints, this often happens when user task listeners are configured and the corresponding listener job is not completed within the request timeout. Common causes include no available job workers for the listener type, busy or crashed job workers, or delayed job completion. As with any gateway timeout, general timeout causes (for example transient network issues) can also result in a 504 response.
|
|
7122
|
+
* Troubleshooting: - verify that job workers for the listener type are running and healthy - check worker logs for crashes, retries, and completion failures - check network connectivity between workers, gateway, and broker - retry with backoff after transient failures - fail without retries if a problem persists
|
|
7123
|
+
*
|
|
7124
|
+
*/
|
|
7125
|
+
504: ProblemDetail;
|
|
7077
7126
|
};
|
|
7078
7127
|
type AssignUserTaskError = AssignUserTaskErrors[keyof AssignUserTaskErrors];
|
|
7079
7128
|
type AssignUserTaskResponses = {
|
|
@@ -7161,6 +7210,12 @@ type UpdateUserTaskErrors = {
|
|
|
7161
7210
|
*
|
|
7162
7211
|
*/
|
|
7163
7212
|
503: ProblemDetail;
|
|
7213
|
+
/**
|
|
7214
|
+
* The request timed out between the gateway and the broker. For these endpoints, this often happens when user task listeners are configured and the corresponding listener job is not completed within the request timeout. Common causes include no available job workers for the listener type, busy or crashed job workers, or delayed job completion. As with any gateway timeout, general timeout causes (for example transient network issues) can also result in a 504 response.
|
|
7215
|
+
* Troubleshooting: - verify that job workers for the listener type are running and healthy - check worker logs for crashes, retries, and completion failures - check network connectivity between workers, gateway, and broker - retry with backoff after transient failures - fail without retries if a problem persists
|
|
7216
|
+
*
|
|
7217
|
+
*/
|
|
7218
|
+
504: ProblemDetail;
|
|
7164
7219
|
};
|
|
7165
7220
|
type UpdateUserTaskError = UpdateUserTaskErrors[keyof UpdateUserTaskErrors];
|
|
7166
7221
|
type UpdateUserTaskResponses = {
|
|
@@ -7251,6 +7306,12 @@ type UnassignUserTaskErrors = {
|
|
|
7251
7306
|
*
|
|
7252
7307
|
*/
|
|
7253
7308
|
503: ProblemDetail;
|
|
7309
|
+
/**
|
|
7310
|
+
* The request timed out between the gateway and the broker. For these endpoints, this often happens when user task listeners are configured and the corresponding listener job is not completed within the request timeout. Common causes include no available job workers for the listener type, busy or crashed job workers, or delayed job completion. As with any gateway timeout, general timeout causes (for example transient network issues) can also result in a 504 response.
|
|
7311
|
+
* Troubleshooting: - verify that job workers for the listener type are running and healthy - check worker logs for crashes, retries, and completion failures - check network connectivity between workers, gateway, and broker - retry with backoff after transient failures - fail without retries if a problem persists
|
|
7312
|
+
*
|
|
7313
|
+
*/
|
|
7314
|
+
504: ProblemDetail;
|
|
7254
7315
|
};
|
|
7255
7316
|
type UnassignUserTaskError = UnassignUserTaskErrors[keyof UnassignUserTaskErrors];
|
|
7256
7317
|
type UnassignUserTaskResponses = {
|
|
@@ -7329,6 +7390,41 @@ type SearchUserTaskVariablesResponses = {
|
|
|
7329
7390
|
200: VariableSearchQueryResult;
|
|
7330
7391
|
};
|
|
7331
7392
|
type SearchUserTaskVariablesResponse = SearchUserTaskVariablesResponses[keyof SearchUserTaskVariablesResponses];
|
|
7393
|
+
type SearchUserTaskEffectiveVariablesData = {
|
|
7394
|
+
body?: UserTaskEffectiveVariableSearchQueryRequest;
|
|
7395
|
+
path: {
|
|
7396
|
+
/**
|
|
7397
|
+
* The key of the user task.
|
|
7398
|
+
*/
|
|
7399
|
+
userTaskKey: UserTaskKey;
|
|
7400
|
+
};
|
|
7401
|
+
query?: {
|
|
7402
|
+
/**
|
|
7403
|
+
* When true (default), long variable values in the response are truncated. When false, full variable values are returned.
|
|
7404
|
+
*/
|
|
7405
|
+
truncateValues?: boolean;
|
|
7406
|
+
};
|
|
7407
|
+
url: '/user-tasks/{userTaskKey}/effective-variables/search';
|
|
7408
|
+
};
|
|
7409
|
+
type SearchUserTaskEffectiveVariablesErrors = {
|
|
7410
|
+
/**
|
|
7411
|
+
* The provided data is not valid.
|
|
7412
|
+
*/
|
|
7413
|
+
400: ProblemDetail;
|
|
7414
|
+
/**
|
|
7415
|
+
* An internal error occurred while processing the request.
|
|
7416
|
+
*
|
|
7417
|
+
*/
|
|
7418
|
+
500: ProblemDetail;
|
|
7419
|
+
};
|
|
7420
|
+
type SearchUserTaskEffectiveVariablesError = SearchUserTaskEffectiveVariablesErrors[keyof SearchUserTaskEffectiveVariablesErrors];
|
|
7421
|
+
type SearchUserTaskEffectiveVariablesResponses = {
|
|
7422
|
+
/**
|
|
7423
|
+
* The user task effective variable search result.
|
|
7424
|
+
*/
|
|
7425
|
+
200: VariableSearchQueryResult;
|
|
7426
|
+
};
|
|
7427
|
+
type SearchUserTaskEffectiveVariablesResponse = SearchUserTaskEffectiveVariablesResponses[keyof SearchUserTaskEffectiveVariablesResponses];
|
|
7332
7428
|
type SearchVariablesData = {
|
|
7333
7429
|
body?: VariableSearchQuery;
|
|
7334
7430
|
path?: never;
|
|
@@ -7936,6 +8032,12 @@ type CancelProcessInstanceErrors = {
|
|
|
7936
8032
|
*
|
|
7937
8033
|
*/
|
|
7938
8034
|
503: ProblemDetail;
|
|
8035
|
+
/**
|
|
8036
|
+
* The request timed out between the gateway and the broker. For these endpoints, this often happens when user task listeners are configured and the corresponding listener job is not completed within the request timeout. Common causes include no available job workers for the listener type, busy or crashed job workers, or delayed job completion. As with any gateway timeout, general timeout causes (for example transient network issues) can also result in a 504 response.
|
|
8037
|
+
* Troubleshooting: - verify that job workers for the listener type are running and healthy - check worker logs for crashes, retries, and completion failures - check network connectivity between workers, gateway, and broker - retry with backoff after transient failures - fail without retries if a problem persists
|
|
8038
|
+
*
|
|
8039
|
+
*/
|
|
8040
|
+
504: ProblemDetail;
|
|
7939
8041
|
};
|
|
7940
8042
|
type CancelProcessInstanceError = CancelProcessInstanceErrors[keyof CancelProcessInstanceErrors];
|
|
7941
8043
|
type CancelProcessInstanceResponses = {
|
|
@@ -11261,6 +11363,12 @@ type CreateElementInstanceVariablesErrors = {
|
|
|
11261
11363
|
*
|
|
11262
11364
|
*/
|
|
11263
11365
|
503: ProblemDetail;
|
|
11366
|
+
/**
|
|
11367
|
+
* The request timed out between the gateway and the broker. For these endpoints, this often happens when user task listeners are configured and the corresponding listener job is not completed within the request timeout. Common causes include no available job workers for the listener type, busy or crashed job workers, or delayed job completion. As with any gateway timeout, general timeout causes (for example transient network issues) can also result in a 504 response.
|
|
11368
|
+
* Troubleshooting: - verify that job workers for the listener type are running and healthy - check worker logs for crashes, retries, and completion failures - check network connectivity between workers, gateway, and broker - retry with backoff after transient failures - fail without retries if a problem persists
|
|
11369
|
+
*
|
|
11370
|
+
*/
|
|
11371
|
+
504: ProblemDetail;
|
|
11264
11372
|
};
|
|
11265
11373
|
type CreateElementInstanceVariablesError = CreateElementInstanceVariablesErrors[keyof CreateElementInstanceVariablesErrors];
|
|
11266
11374
|
type CreateElementInstanceVariablesResponses = {
|
|
@@ -12034,12 +12142,14 @@ declare const assignRoleToTenant: <ThrowOnError extends boolean = true>(options:
|
|
|
12034
12142
|
declare const searchTenants: <ThrowOnError extends boolean = true>(options?: Options<SearchTenantsData, ThrowOnError>) => RequestResult<SearchTenantsResponses, SearchTenantsErrors, ThrowOnError, "fields">;
|
|
12035
12143
|
/**
|
|
12036
12144
|
* Complete user task
|
|
12037
|
-
* Completes a user task with the given key.
|
|
12145
|
+
* Completes a user task with the given key. Completion waits for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
12146
|
+
*
|
|
12038
12147
|
*/
|
|
12039
12148
|
declare const completeUserTask: <ThrowOnError extends boolean = true>(options: Options<CompleteUserTaskData, ThrowOnError>) => RequestResult<CompleteUserTaskResponses, CompleteUserTaskErrors, ThrowOnError, "fields">;
|
|
12040
12149
|
/**
|
|
12041
12150
|
* Assign user task
|
|
12042
|
-
* Assigns a user task with the given key to the given assignee.
|
|
12151
|
+
* Assigns a user task with the given key to the given assignee. Assignment waits for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
12152
|
+
*
|
|
12043
12153
|
*/
|
|
12044
12154
|
declare const assignUserTask: <ThrowOnError extends boolean = true>(options: Options<AssignUserTaskData, ThrowOnError>) => RequestResult<AssignUserTaskResponses, AssignUserTaskErrors, ThrowOnError, "fields">;
|
|
12045
12155
|
/**
|
|
@@ -12050,7 +12160,8 @@ declare const assignUserTask: <ThrowOnError extends boolean = true>(options: Opt
|
|
|
12050
12160
|
declare const getUserTask: <ThrowOnError extends boolean = true>(options: Options<GetUserTaskData, ThrowOnError>) => RequestResult<GetUserTaskResponses, GetUserTaskErrors, ThrowOnError, "fields">;
|
|
12051
12161
|
/**
|
|
12052
12162
|
* Update user task
|
|
12053
|
-
* Update a user task with the given key.
|
|
12163
|
+
* Update a user task with the given key. Updates wait for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504.Update a user task with the given key.
|
|
12164
|
+
*
|
|
12054
12165
|
*/
|
|
12055
12166
|
declare const updateUserTask: <ThrowOnError extends boolean = true>(options: Options<UpdateUserTaskData, ThrowOnError>) => RequestResult<UpdateUserTaskResponses, UpdateUserTaskErrors, ThrowOnError, "fields">;
|
|
12056
12167
|
/**
|
|
@@ -12063,7 +12174,8 @@ declare const updateUserTask: <ThrowOnError extends boolean = true>(options: Opt
|
|
|
12063
12174
|
declare const getUserTaskForm: <ThrowOnError extends boolean = true>(options: Options<GetUserTaskFormData, ThrowOnError>) => RequestResult<GetUserTaskFormResponses, GetUserTaskFormErrors, ThrowOnError, "fields">;
|
|
12064
12175
|
/**
|
|
12065
12176
|
* Unassign user task
|
|
12066
|
-
* Removes the assignee of a task with the given key.
|
|
12177
|
+
* Removes the assignee of a task with the given key. Unassignment waits for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
12178
|
+
*
|
|
12067
12179
|
*/
|
|
12068
12180
|
declare const unassignUserTask: <ThrowOnError extends boolean = true>(options: Options<UnassignUserTaskData, ThrowOnError>) => RequestResult<UnassignUserTaskResponses, UnassignUserTaskErrors, ThrowOnError, "fields">;
|
|
12069
12181
|
/**
|
|
@@ -12074,10 +12186,27 @@ declare const unassignUserTask: <ThrowOnError extends boolean = true>(options: O
|
|
|
12074
12186
|
declare const searchUserTasks: <ThrowOnError extends boolean = true>(options?: Options<SearchUserTasksData, ThrowOnError>) => RequestResult<SearchUserTasksResponses, SearchUserTasksErrors, ThrowOnError, "fields">;
|
|
12075
12187
|
/**
|
|
12076
12188
|
* Search user task variables
|
|
12077
|
-
* Search for user task variables based on given criteria.
|
|
12189
|
+
* Search for user task variables based on given criteria. This endpoint returns all variable
|
|
12190
|
+
* documents visible from the user task's scope, including variables from parent scopes in the
|
|
12191
|
+
* scope hierarchy. If the same variable name exists at multiple scope levels, each scope's
|
|
12192
|
+
* variable is returned as a separate result. Use the
|
|
12193
|
+
* `/user-tasks/{userTaskKey}/effective-variables/search` endpoint to get deduplicated variables
|
|
12194
|
+
* where the innermost scope takes precedence. By default, long variable values in the response
|
|
12195
|
+
* are truncated.
|
|
12078
12196
|
*
|
|
12079
12197
|
*/
|
|
12080
12198
|
declare const searchUserTaskVariables: <ThrowOnError extends boolean = true>(options: Options<SearchUserTaskVariablesData, ThrowOnError>) => RequestResult<SearchUserTaskVariablesResponses, SearchUserTaskVariablesErrors, ThrowOnError, "fields">;
|
|
12199
|
+
/**
|
|
12200
|
+
* Search user task effective variables
|
|
12201
|
+
* Search for the effective variables of a user task. This endpoint returns deduplicated
|
|
12202
|
+
* variables where each variable name appears at most once. When the same variable name exists
|
|
12203
|
+
* at multiple scope levels in the scope hierarchy, the value from the innermost scope (closest
|
|
12204
|
+
* to the user task) takes precedence. This is useful for retrieving the actual runtime state
|
|
12205
|
+
* of variables as seen by the user task. By default, long variable values in the response are
|
|
12206
|
+
* truncated.
|
|
12207
|
+
*
|
|
12208
|
+
*/
|
|
12209
|
+
declare const searchUserTaskEffectiveVariables: <ThrowOnError extends boolean = true>(options: Options<SearchUserTaskEffectiveVariablesData, ThrowOnError>) => RequestResult<SearchUserTaskEffectiveVariablesResponses, SearchUserTaskEffectiveVariablesErrors, ThrowOnError, "fields">;
|
|
12081
12210
|
/**
|
|
12082
12211
|
* Search variables
|
|
12083
12212
|
* Search for process and local variables based on given criteria. By default, long variable values in the response are truncated.
|
|
@@ -12187,7 +12316,8 @@ declare const searchProcessInstances: <ThrowOnError extends boolean = true>(opti
|
|
|
12187
12316
|
declare const searchProcessInstanceIncidents: <ThrowOnError extends boolean = true>(options: Options<SearchProcessInstanceIncidentsData, ThrowOnError>) => RequestResult<SearchProcessInstanceIncidentsResponses, SearchProcessInstanceIncidentsErrors, ThrowOnError, "fields">;
|
|
12188
12317
|
/**
|
|
12189
12318
|
* Cancel process instance
|
|
12190
|
-
* Cancels a running process instance. As a
|
|
12319
|
+
* Cancels a running process instance. As a cancellation includes more than just the removal of the process instance resource, the cancellation resource must be posted. Cancellation can wait on listener-related processing; when that processing does not complete in time, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
12320
|
+
*
|
|
12191
12321
|
*/
|
|
12192
12322
|
declare const cancelProcessInstance: <ThrowOnError extends boolean = true>(options: Options<CancelProcessInstanceData, ThrowOnError>) => RequestResult<CancelProcessInstanceResponses, CancelProcessInstanceErrors, ThrowOnError, "fields">;
|
|
12193
12323
|
/**
|
|
@@ -12759,6 +12889,10 @@ declare const getResourceContent: <ThrowOnError extends boolean = true>(options:
|
|
|
12759
12889
|
* Update element instance variables
|
|
12760
12890
|
* Updates all the variables of a particular scope (for example, process instance, element instance) with the given variable data.
|
|
12761
12891
|
* Specify the element instance in the `elementInstanceKey` parameter.
|
|
12892
|
+
* Variable updates can be delayed by listener-related processing; if processing exceeds the
|
|
12893
|
+
* request timeout, this endpoint can return 504. Other gateway timeout causes are also
|
|
12894
|
+
* possible. Retry with backoff and inspect listener worker availability and logs when this
|
|
12895
|
+
* repeats.
|
|
12762
12896
|
*
|
|
12763
12897
|
*/
|
|
12764
12898
|
declare const createElementInstanceVariables: <ThrowOnError extends boolean = true>(options: Options<CreateElementInstanceVariablesData, ThrowOnError>) => RequestResult<CreateElementInstanceVariablesResponses, CreateElementInstanceVariablesErrors, ThrowOnError, "fields">;
|
|
@@ -13166,11 +13300,6 @@ type cancelBatchOperationPathParam_batchOperationKey = (NonNullable<cancelBatchO
|
|
|
13166
13300
|
type cancelBatchOperationInput = cancelBatchOperationBody & {
|
|
13167
13301
|
batchOperationKey: cancelBatchOperationPathParam_batchOperationKey;
|
|
13168
13302
|
};
|
|
13169
|
-
/** Management of eventual consistency **/
|
|
13170
|
-
type cancelBatchOperationConsistency = {
|
|
13171
|
-
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
13172
|
-
consistency: ConsistencyOptions<_DataOf<typeof cancelBatchOperation>>;
|
|
13173
|
-
};
|
|
13174
13303
|
type cancelProcessInstanceOptions = Parameters<typeof cancelProcessInstance>[0];
|
|
13175
13304
|
type cancelProcessInstanceBody = (NonNullable<cancelProcessInstanceOptions> extends {
|
|
13176
13305
|
body?: infer B;
|
|
@@ -13188,11 +13317,6 @@ type cancelProcessInstancesBatchOperationBody = (NonNullable<cancelProcessInstan
|
|
|
13188
13317
|
body?: infer B;
|
|
13189
13318
|
} ? B : never);
|
|
13190
13319
|
type cancelProcessInstancesBatchOperationInput = cancelProcessInstancesBatchOperationBody;
|
|
13191
|
-
/** Management of eventual consistency **/
|
|
13192
|
-
type cancelProcessInstancesBatchOperationConsistency = {
|
|
13193
|
-
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
13194
|
-
consistency: ConsistencyOptions<_DataOf<typeof cancelProcessInstancesBatchOperation>>;
|
|
13195
|
-
};
|
|
13196
13320
|
type completeJobOptions = Parameters<typeof completeJob>[0];
|
|
13197
13321
|
type completeJobBody = (NonNullable<completeJobOptions> extends {
|
|
13198
13322
|
body?: infer B;
|
|
@@ -13227,11 +13351,6 @@ type createAdminUserBody = (NonNullable<createAdminUserOptions> extends {
|
|
|
13227
13351
|
body?: infer B;
|
|
13228
13352
|
} ? B : never);
|
|
13229
13353
|
type createAdminUserInput = createAdminUserBody;
|
|
13230
|
-
/** Management of eventual consistency **/
|
|
13231
|
-
type createAdminUserConsistency = {
|
|
13232
|
-
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
13233
|
-
consistency: ConsistencyOptions<_DataOf<typeof createAdminUser>>;
|
|
13234
|
-
};
|
|
13235
13354
|
type createAuthorizationOptions = Parameters<typeof createAuthorization>[0];
|
|
13236
13355
|
type createAuthorizationBody = (NonNullable<createAuthorizationOptions> extends {
|
|
13237
13356
|
body?: infer B;
|
|
@@ -13340,11 +13459,6 @@ type createUserBody = (NonNullable<createUserOptions> extends {
|
|
|
13340
13459
|
body?: infer B;
|
|
13341
13460
|
} ? B : never);
|
|
13342
13461
|
type createUserInput = createUserBody;
|
|
13343
|
-
/** Management of eventual consistency **/
|
|
13344
|
-
type createUserConsistency = {
|
|
13345
|
-
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
13346
|
-
consistency: ConsistencyOptions<_DataOf<typeof createUser>>;
|
|
13347
|
-
};
|
|
13348
13462
|
type deleteAuthorizationOptions = Parameters<typeof deleteAuthorization>[0];
|
|
13349
13463
|
type deleteAuthorizationPathParam_authorizationKey = (NonNullable<deleteAuthorizationOptions> extends {
|
|
13350
13464
|
path: {
|
|
@@ -13426,11 +13540,6 @@ type deleteUserPathParam_username = (NonNullable<deleteUserOptions> extends {
|
|
|
13426
13540
|
type deleteUserInput = {
|
|
13427
13541
|
username: deleteUserPathParam_username;
|
|
13428
13542
|
};
|
|
13429
|
-
/** Management of eventual consistency **/
|
|
13430
|
-
type deleteUserConsistency = {
|
|
13431
|
-
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
13432
|
-
consistency: ConsistencyOptions<_DataOf<typeof deleteUser>>;
|
|
13433
|
-
};
|
|
13434
13543
|
type evaluateDecisionOptions = Parameters<typeof evaluateDecision>[0];
|
|
13435
13544
|
type evaluateDecisionBody = (NonNullable<evaluateDecisionOptions> extends {
|
|
13436
13545
|
body?: infer B;
|
|
@@ -13889,11 +13998,6 @@ type migrateProcessInstancesBatchOperationBody = (NonNullable<migrateProcessInst
|
|
|
13889
13998
|
body?: infer B;
|
|
13890
13999
|
} ? B : never);
|
|
13891
14000
|
type migrateProcessInstancesBatchOperationInput = migrateProcessInstancesBatchOperationBody;
|
|
13892
|
-
/** Management of eventual consistency **/
|
|
13893
|
-
type migrateProcessInstancesBatchOperationConsistency = {
|
|
13894
|
-
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
13895
|
-
consistency: ConsistencyOptions<_DataOf<typeof migrateProcessInstancesBatchOperation>>;
|
|
13896
|
-
};
|
|
13897
14001
|
type modifyProcessInstanceOptions = Parameters<typeof modifyProcessInstance>[0];
|
|
13898
14002
|
type modifyProcessInstanceBody = (NonNullable<modifyProcessInstanceOptions> extends {
|
|
13899
14003
|
body?: infer B;
|
|
@@ -13911,11 +14015,6 @@ type modifyProcessInstancesBatchOperationBody = (NonNullable<modifyProcessInstan
|
|
|
13911
14015
|
body?: infer B;
|
|
13912
14016
|
} ? B : never);
|
|
13913
14017
|
type modifyProcessInstancesBatchOperationInput = modifyProcessInstancesBatchOperationBody;
|
|
13914
|
-
/** Management of eventual consistency **/
|
|
13915
|
-
type modifyProcessInstancesBatchOperationConsistency = {
|
|
13916
|
-
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
13917
|
-
consistency: ConsistencyOptions<_DataOf<typeof modifyProcessInstancesBatchOperation>>;
|
|
13918
|
-
};
|
|
13919
14018
|
type pinClockOptions = Parameters<typeof pinClock>[0];
|
|
13920
14019
|
type pinClockBody = (NonNullable<pinClockOptions> extends {
|
|
13921
14020
|
body?: infer B;
|
|
@@ -13943,11 +14042,6 @@ type resolveIncidentsBatchOperationBody = (NonNullable<resolveIncidentsBatchOper
|
|
|
13943
14042
|
body?: infer B;
|
|
13944
14043
|
} ? B : never);
|
|
13945
14044
|
type resolveIncidentsBatchOperationInput = resolveIncidentsBatchOperationBody;
|
|
13946
|
-
/** Management of eventual consistency **/
|
|
13947
|
-
type resolveIncidentsBatchOperationConsistency = {
|
|
13948
|
-
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
13949
|
-
consistency: ConsistencyOptions<_DataOf<typeof resolveIncidentsBatchOperation>>;
|
|
13950
|
-
};
|
|
13951
14045
|
type resumeBatchOperationOptions = Parameters<typeof resumeBatchOperation>[0];
|
|
13952
14046
|
type resumeBatchOperationBody = (NonNullable<resumeBatchOperationOptions> extends {
|
|
13953
14047
|
body?: infer B;
|
|
@@ -13960,11 +14054,6 @@ type resumeBatchOperationPathParam_batchOperationKey = (NonNullable<resumeBatchO
|
|
|
13960
14054
|
type resumeBatchOperationInput = resumeBatchOperationBody & {
|
|
13961
14055
|
batchOperationKey: resumeBatchOperationPathParam_batchOperationKey;
|
|
13962
14056
|
};
|
|
13963
|
-
/** Management of eventual consistency **/
|
|
13964
|
-
type resumeBatchOperationConsistency = {
|
|
13965
|
-
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
13966
|
-
consistency: ConsistencyOptions<_DataOf<typeof resumeBatchOperation>>;
|
|
13967
|
-
};
|
|
13968
14057
|
type searchAuthorizationsOptions = Parameters<typeof searchAuthorizations>[0];
|
|
13969
14058
|
type searchAuthorizationsBody = (NonNullable<searchAuthorizationsOptions> extends {
|
|
13970
14059
|
body?: infer B;
|
|
@@ -14383,6 +14472,29 @@ type searchUsersForTenantConsistency = {
|
|
|
14383
14472
|
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
14384
14473
|
consistency: ConsistencyOptions<_DataOf<typeof searchUsersForTenant>>;
|
|
14385
14474
|
};
|
|
14475
|
+
type searchUserTaskEffectiveVariablesOptions = Parameters<typeof searchUserTaskEffectiveVariables>[0];
|
|
14476
|
+
type searchUserTaskEffectiveVariablesBody = (NonNullable<searchUserTaskEffectiveVariablesOptions> extends {
|
|
14477
|
+
body?: infer B;
|
|
14478
|
+
} ? B : never);
|
|
14479
|
+
type searchUserTaskEffectiveVariablesPathParam_userTaskKey = (NonNullable<searchUserTaskEffectiveVariablesOptions> extends {
|
|
14480
|
+
path: {
|
|
14481
|
+
userTaskKey: infer P;
|
|
14482
|
+
};
|
|
14483
|
+
} ? P : any);
|
|
14484
|
+
type searchUserTaskEffectiveVariablesQueryParam_truncateValues = (NonNullable<searchUserTaskEffectiveVariablesOptions> extends {
|
|
14485
|
+
query?: {
|
|
14486
|
+
truncateValues?: infer Q;
|
|
14487
|
+
};
|
|
14488
|
+
} ? Q : any);
|
|
14489
|
+
type searchUserTaskEffectiveVariablesInput = searchUserTaskEffectiveVariablesBody & {
|
|
14490
|
+
userTaskKey: searchUserTaskEffectiveVariablesPathParam_userTaskKey;
|
|
14491
|
+
truncateValues?: searchUserTaskEffectiveVariablesQueryParam_truncateValues;
|
|
14492
|
+
};
|
|
14493
|
+
/** Management of eventual consistency **/
|
|
14494
|
+
type searchUserTaskEffectiveVariablesConsistency = {
|
|
14495
|
+
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
14496
|
+
consistency: ConsistencyOptions<_DataOf<typeof searchUserTaskEffectiveVariables>>;
|
|
14497
|
+
};
|
|
14386
14498
|
type searchUserTasksOptions = Parameters<typeof searchUserTasks>[0];
|
|
14387
14499
|
type searchUserTasksBody = (NonNullable<searchUserTasksOptions> extends {
|
|
14388
14500
|
body?: infer B;
|
|
@@ -14445,11 +14557,6 @@ type suspendBatchOperationPathParam_batchOperationKey = (NonNullable<suspendBatc
|
|
|
14445
14557
|
type suspendBatchOperationInput = suspendBatchOperationBody & {
|
|
14446
14558
|
batchOperationKey: suspendBatchOperationPathParam_batchOperationKey;
|
|
14447
14559
|
};
|
|
14448
|
-
/** Management of eventual consistency **/
|
|
14449
|
-
type suspendBatchOperationConsistency = {
|
|
14450
|
-
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
14451
|
-
consistency: ConsistencyOptions<_DataOf<typeof suspendBatchOperation>>;
|
|
14452
|
-
};
|
|
14453
14560
|
type throwJobErrorOptions = Parameters<typeof throwJobError>[0];
|
|
14454
14561
|
type throwJobErrorBody = (NonNullable<throwJobErrorOptions> extends {
|
|
14455
14562
|
body?: infer B;
|
|
@@ -14735,11 +14842,6 @@ type updateUserPathParam_username = (NonNullable<updateUserOptions> extends {
|
|
|
14735
14842
|
type updateUserInput = updateUserBody & {
|
|
14736
14843
|
username: updateUserPathParam_username;
|
|
14737
14844
|
};
|
|
14738
|
-
/** Management of eventual consistency **/
|
|
14739
|
-
type updateUserConsistency = {
|
|
14740
|
-
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
14741
|
-
consistency: ConsistencyOptions<_DataOf<typeof updateUser>>;
|
|
14742
|
-
};
|
|
14743
14845
|
type updateUserTaskOptions = Parameters<typeof updateUserTask>[0];
|
|
14744
14846
|
type updateUserTaskBody = (NonNullable<updateUserTaskOptions> extends {
|
|
14745
14847
|
body?: infer B;
|
|
@@ -14973,7 +15075,8 @@ declare class CamundaClient {
|
|
|
14973
15075
|
assignRoleToUser(input: assignRoleToUserInput): CancelablePromise<_DataOf<typeof assignRoleToUser>>;
|
|
14974
15076
|
/**
|
|
14975
15077
|
* Assign user task
|
|
14976
|
-
* Assigns a user task with the given key to the given assignee.
|
|
15078
|
+
* Assigns a user task with the given key to the given assignee. Assignment waits for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
15079
|
+
*
|
|
14977
15080
|
*
|
|
14978
15081
|
* @operationId assignUserTask
|
|
14979
15082
|
* @tags User task
|
|
@@ -15013,12 +15116,12 @@ declare class CamundaClient {
|
|
|
15013
15116
|
*
|
|
15014
15117
|
* @operationId cancelBatchOperation
|
|
15015
15118
|
* @tags Batch operation
|
|
15016
|
-
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
15017
15119
|
*/
|
|
15018
|
-
cancelBatchOperation(input: cancelBatchOperationInput
|
|
15120
|
+
cancelBatchOperation(input: cancelBatchOperationInput): CancelablePromise<_DataOf<typeof cancelBatchOperation>>;
|
|
15019
15121
|
/**
|
|
15020
15122
|
* Cancel process instance
|
|
15021
|
-
* Cancels a running process instance. As a
|
|
15123
|
+
* Cancels a running process instance. As a cancellation includes more than just the removal of the process instance resource, the cancellation resource must be posted. Cancellation can wait on listener-related processing; when that processing does not complete in time, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
15124
|
+
*
|
|
15022
15125
|
*
|
|
15023
15126
|
* @operationId cancelProcessInstance
|
|
15024
15127
|
* @tags Process instance
|
|
@@ -15034,9 +15137,8 @@ declare class CamundaClient {
|
|
|
15034
15137
|
*
|
|
15035
15138
|
* @operationId cancelProcessInstancesBatchOperation
|
|
15036
15139
|
* @tags Process instance
|
|
15037
|
-
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
15038
15140
|
*/
|
|
15039
|
-
cancelProcessInstancesBatchOperation(input: cancelProcessInstancesBatchOperationInput
|
|
15141
|
+
cancelProcessInstancesBatchOperation(input: cancelProcessInstancesBatchOperationInput): CancelablePromise<_DataOf<typeof cancelProcessInstancesBatchOperation>>;
|
|
15040
15142
|
/**
|
|
15041
15143
|
* Complete job
|
|
15042
15144
|
* Complete a job with the given payload, which allows completing the associated service task.
|
|
@@ -15048,7 +15150,8 @@ declare class CamundaClient {
|
|
|
15048
15150
|
completeJob(input: completeJobInput): CancelablePromise<_DataOf<typeof completeJob>>;
|
|
15049
15151
|
/**
|
|
15050
15152
|
* Complete user task
|
|
15051
|
-
* Completes a user task with the given key.
|
|
15153
|
+
* Completes a user task with the given key. Completion waits for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
15154
|
+
*
|
|
15052
15155
|
*
|
|
15053
15156
|
* @operationId completeUserTask
|
|
15054
15157
|
* @tags User task
|
|
@@ -15072,9 +15175,8 @@ declare class CamundaClient {
|
|
|
15072
15175
|
*
|
|
15073
15176
|
* @operationId createAdminUser
|
|
15074
15177
|
* @tags Setup
|
|
15075
|
-
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
15076
15178
|
*/
|
|
15077
|
-
createAdminUser(input: createAdminUserInput
|
|
15179
|
+
createAdminUser(input: createAdminUserInput): CancelablePromise<_DataOf<typeof createAdminUser>>;
|
|
15078
15180
|
/**
|
|
15079
15181
|
* Create authorization
|
|
15080
15182
|
* Create the authorization.
|
|
@@ -15143,6 +15245,10 @@ declare class CamundaClient {
|
|
|
15143
15245
|
* Update element instance variables
|
|
15144
15246
|
* Updates all the variables of a particular scope (for example, process instance, element instance) with the given variable data.
|
|
15145
15247
|
* Specify the element instance in the `elementInstanceKey` parameter.
|
|
15248
|
+
* Variable updates can be delayed by listener-related processing; if processing exceeds the
|
|
15249
|
+
* request timeout, this endpoint can return 504. Other gateway timeout causes are also
|
|
15250
|
+
* possible. Retry with backoff and inspect listener worker availability and logs when this
|
|
15251
|
+
* repeats.
|
|
15146
15252
|
*
|
|
15147
15253
|
*
|
|
15148
15254
|
* @operationId createElementInstanceVariables
|
|
@@ -15204,9 +15310,8 @@ declare class CamundaClient {
|
|
|
15204
15310
|
*
|
|
15205
15311
|
* @operationId createUser
|
|
15206
15312
|
* @tags User
|
|
15207
|
-
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
15208
15313
|
*/
|
|
15209
|
-
createUser(input: createUserInput
|
|
15314
|
+
createUser(input: createUserInput): CancelablePromise<_DataOf<typeof createUser>>;
|
|
15210
15315
|
/**
|
|
15211
15316
|
* Delete authorization
|
|
15212
15317
|
* Deletes the authorization with the given key.
|
|
@@ -15284,9 +15389,8 @@ declare class CamundaClient {
|
|
|
15284
15389
|
*
|
|
15285
15390
|
* @operationId deleteUser
|
|
15286
15391
|
* @tags User
|
|
15287
|
-
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
15288
15392
|
*/
|
|
15289
|
-
deleteUser(input: deleteUserInput
|
|
15393
|
+
deleteUser(input: deleteUserInput): CancelablePromise<_DataOf<typeof deleteUser>>;
|
|
15290
15394
|
/**
|
|
15291
15395
|
* Evaluate decision
|
|
15292
15396
|
* Evaluates a decision.
|
|
@@ -15660,9 +15764,8 @@ declare class CamundaClient {
|
|
|
15660
15764
|
*
|
|
15661
15765
|
* @operationId migrateProcessInstancesBatchOperation
|
|
15662
15766
|
* @tags Process instance
|
|
15663
|
-
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
15664
15767
|
*/
|
|
15665
|
-
migrateProcessInstancesBatchOperation(input: migrateProcessInstancesBatchOperationInput
|
|
15768
|
+
migrateProcessInstancesBatchOperation(input: migrateProcessInstancesBatchOperationInput): CancelablePromise<_DataOf<typeof migrateProcessInstancesBatchOperation>>;
|
|
15666
15769
|
/**
|
|
15667
15770
|
* Modify process instance
|
|
15668
15771
|
* Modifies a running process instance.
|
|
@@ -15689,9 +15792,8 @@ declare class CamundaClient {
|
|
|
15689
15792
|
*
|
|
15690
15793
|
* @operationId modifyProcessInstancesBatchOperation
|
|
15691
15794
|
* @tags Process instance
|
|
15692
|
-
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
15693
15795
|
*/
|
|
15694
|
-
modifyProcessInstancesBatchOperation(input: modifyProcessInstancesBatchOperationInput
|
|
15796
|
+
modifyProcessInstancesBatchOperation(input: modifyProcessInstancesBatchOperationInput): CancelablePromise<_DataOf<typeof modifyProcessInstancesBatchOperation>>;
|
|
15695
15797
|
/**
|
|
15696
15798
|
* Pin internal clock (alpha)
|
|
15697
15799
|
* Set a precise, static time for the Zeebe engine’s internal clock.
|
|
@@ -15752,9 +15854,8 @@ declare class CamundaClient {
|
|
|
15752
15854
|
*
|
|
15753
15855
|
* @operationId resolveIncidentsBatchOperation
|
|
15754
15856
|
* @tags Process instance
|
|
15755
|
-
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
15756
15857
|
*/
|
|
15757
|
-
resolveIncidentsBatchOperation(input: resolveIncidentsBatchOperationInput
|
|
15858
|
+
resolveIncidentsBatchOperation(input: resolveIncidentsBatchOperationInput): CancelablePromise<_DataOf<typeof resolveIncidentsBatchOperation>>;
|
|
15758
15859
|
/**
|
|
15759
15860
|
* Resume Batch operation
|
|
15760
15861
|
* Resumes a suspended batch operation.
|
|
@@ -15763,9 +15864,8 @@ declare class CamundaClient {
|
|
|
15763
15864
|
*
|
|
15764
15865
|
* @operationId resumeBatchOperation
|
|
15765
15866
|
* @tags Batch operation
|
|
15766
|
-
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
15767
15867
|
*/
|
|
15768
|
-
resumeBatchOperation(input: resumeBatchOperationInput
|
|
15868
|
+
resumeBatchOperation(input: resumeBatchOperationInput): CancelablePromise<_DataOf<typeof resumeBatchOperation>>;
|
|
15769
15869
|
/**
|
|
15770
15870
|
* Search authorizations
|
|
15771
15871
|
* Search for authorizations based on given criteria.
|
|
@@ -16076,6 +16176,21 @@ declare class CamundaClient {
|
|
|
16076
16176
|
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
16077
16177
|
*/
|
|
16078
16178
|
searchUsersForTenant(input: searchUsersForTenantInput, /** Management of eventual consistency **/ consistencyManagement: searchUsersForTenantConsistency): CancelablePromise<_DataOf<typeof searchUsersForTenant>>;
|
|
16179
|
+
/**
|
|
16180
|
+
* Search user task effective variables
|
|
16181
|
+
* Search for the effective variables of a user task. This endpoint returns deduplicated
|
|
16182
|
+
* variables where each variable name appears at most once. When the same variable name exists
|
|
16183
|
+
* at multiple scope levels in the scope hierarchy, the value from the innermost scope (closest
|
|
16184
|
+
* to the user task) takes precedence. This is useful for retrieving the actual runtime state
|
|
16185
|
+
* of variables as seen by the user task. By default, long variable values in the response are
|
|
16186
|
+
* truncated.
|
|
16187
|
+
*
|
|
16188
|
+
*
|
|
16189
|
+
* @operationId searchUserTaskEffectiveVariables
|
|
16190
|
+
* @tags User task
|
|
16191
|
+
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
16192
|
+
*/
|
|
16193
|
+
searchUserTaskEffectiveVariables(input: searchUserTaskEffectiveVariablesInput, /** Management of eventual consistency **/ consistencyManagement: searchUserTaskEffectiveVariablesConsistency): CancelablePromise<_DataOf<typeof searchUserTaskEffectiveVariables>>;
|
|
16079
16194
|
/**
|
|
16080
16195
|
* Search user tasks
|
|
16081
16196
|
* Search for user tasks based on given criteria.
|
|
@@ -16088,7 +16203,13 @@ declare class CamundaClient {
|
|
|
16088
16203
|
searchUserTasks(input: searchUserTasksInput, /** Management of eventual consistency **/ consistencyManagement: searchUserTasksConsistency): CancelablePromise<_DataOf<typeof searchUserTasks>>;
|
|
16089
16204
|
/**
|
|
16090
16205
|
* Search user task variables
|
|
16091
|
-
* Search for user task variables based on given criteria.
|
|
16206
|
+
* Search for user task variables based on given criteria. This endpoint returns all variable
|
|
16207
|
+
* documents visible from the user task's scope, including variables from parent scopes in the
|
|
16208
|
+
* scope hierarchy. If the same variable name exists at multiple scope levels, each scope's
|
|
16209
|
+
* variable is returned as a separate result. Use the
|
|
16210
|
+
* `/user-tasks/{userTaskKey}/effective-variables/search` endpoint to get deduplicated variables
|
|
16211
|
+
* where the innermost scope takes precedence. By default, long variable values in the response
|
|
16212
|
+
* are truncated.
|
|
16092
16213
|
*
|
|
16093
16214
|
*
|
|
16094
16215
|
* @operationId searchUserTaskVariables
|
|
@@ -16114,9 +16235,8 @@ declare class CamundaClient {
|
|
|
16114
16235
|
*
|
|
16115
16236
|
* @operationId suspendBatchOperation
|
|
16116
16237
|
* @tags Batch operation
|
|
16117
|
-
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
16118
16238
|
*/
|
|
16119
|
-
suspendBatchOperation(input: suspendBatchOperationInput
|
|
16239
|
+
suspendBatchOperation(input: suspendBatchOperationInput): CancelablePromise<_DataOf<typeof suspendBatchOperation>>;
|
|
16120
16240
|
/**
|
|
16121
16241
|
* Throw error for job
|
|
16122
16242
|
* Reports a business error (i.e. non-technical) that occurs while processing a job.
|
|
@@ -16245,7 +16365,8 @@ declare class CamundaClient {
|
|
|
16245
16365
|
unassignUserFromTenant(input: unassignUserFromTenantInput): CancelablePromise<_DataOf<typeof unassignUserFromTenant>>;
|
|
16246
16366
|
/**
|
|
16247
16367
|
* Unassign user task
|
|
16248
|
-
* Removes the assignee of a task with the given key.
|
|
16368
|
+
* Removes the assignee of a task with the given key. Unassignment waits for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504. Other gateway timeout causes are also possible. Retry with backoff and inspect listener worker availability and logs when this repeats.
|
|
16369
|
+
*
|
|
16249
16370
|
*
|
|
16250
16371
|
* @operationId unassignUserTask
|
|
16251
16372
|
* @tags User task
|
|
@@ -16309,12 +16430,12 @@ declare class CamundaClient {
|
|
|
16309
16430
|
*
|
|
16310
16431
|
* @operationId updateUser
|
|
16311
16432
|
* @tags User
|
|
16312
|
-
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
16313
16433
|
*/
|
|
16314
|
-
updateUser(input: updateUserInput
|
|
16434
|
+
updateUser(input: updateUserInput): CancelablePromise<_DataOf<typeof updateUser>>;
|
|
16315
16435
|
/**
|
|
16316
16436
|
* Update user task
|
|
16317
|
-
* Update a user task with the given key.
|
|
16437
|
+
* Update a user task with the given key. Updates wait for blocking task listeners on this lifecycle transition. If listener processing is delayed beyond the request timeout, this endpoint can return 504.Update a user task with the given key.
|
|
16438
|
+
*
|
|
16318
16439
|
*
|
|
16319
16440
|
* @operationId updateUserTask
|
|
16320
16441
|
* @tags User task
|
|
@@ -16421,4 +16542,4 @@ declare function eventuallyTE<E, A>(thunk: () => Promise<A>, predicate: (a: A) =
|
|
|
16421
16542
|
waitUpToMs: number;
|
|
16422
16543
|
}): TaskEither<E, A>;
|
|
16423
16544
|
|
|
16424
|
-
export { type TenantSearchQueryResult as $, DecisionRequirementsKey as A, AuthorizationKey as B, type CamundaOptions as C, DeploymentKey as D, type Either as E, FormKey as F, MessageKey as G, DecisionInstanceKey as H, IncidentKey as I, type JobWorkerConfig as J, SignalKey as K, type LongKey as L, MessageSubscriptionKey as M, BatchOperationKey as N, type TenantCreateResult as O, ProcessInstanceKey as P, type TenantUpdateRequest as Q, type ResourceKey as R, StartCursor as S, type TenantCreateRequest as T, UserTaskKey as U, VariableKey as V, type TenantUpdateResult as W, type TenantResult as X, type TenantSearchQuerySortRequest as Y, type TenantSearchQueryRequest as Z, type TenantFilter as _, CamundaClient as a, type ElementInstanceStateEnum as a$, type UserTaskSearchQuerySortRequest as a0, type UserTaskSearchQuery as a1, type UserTaskVariableSearchQuerySortRequest as a2, type UserTaskVariableSearchQueryRequest as a3, type UserTaskSearchQueryResult as a4, type UserTaskFilter as a5, type UserTaskStateFilterProperty as a6, type AdvancedUserTaskStateFilter as a7, type VariableValueFilterProperty as a8, type UserTaskVariableFilter as a9, type BasicStringFilterProperty as aA, type StringFilterProperty as aB, type LikeFilter as aC, type ProcessInstanceStateFilterProperty as aD, type ElementInstanceStateFilterProperty as aE, type DateTimeFilterProperty as aF, type AdvancedProcessDefinitionKeyFilter as aG, type ProcessDefinitionKeyFilterProperty as aH, type AdvancedProcessInstanceKeyFilter as aI, type ProcessInstanceKeyFilterProperty as aJ, type AdvancedElementInstanceKeyFilter as aK, type ElementInstanceKeyFilterProperty as aL, type AdvancedVariableKeyFilter as aM, type VariableKeyFilterProperty as aN, type AdvancedScopeKeyFilter as aO, type ScopeKeyFilterProperty as aP, type AdvancedMessageSubscriptionKeyFilter as aQ, type MessageSubscriptionKeyFilterProperty as aR, type AdvancedJobKeyFilter as aS, type JobKeyFilterProperty as aT, type BaseProcessInstanceFilterFields as aU, type ProcessDefinitionStatisticsFilter as aV, type ProcessInstanceFilterFields as aW, type ProcessInstanceFilter as aX, type ProcessInstanceSearchQueryResult as aY, type ProcessInstanceResult as aZ, type ProcessInstanceStateEnum as a_, type UserTaskResult as aa, type UserTaskStateEnum as ab, type VariableSearchQuerySortRequest as ac, type VariableSearchQuery as ad, type VariableFilter as ae, type VariableSearchQueryResult as af, type VariableSearchResult as ag, type VariableResult as ah, type VariableResultBase as ai, type ProcessDefinitionSearchQuerySortRequest as aj, type ProcessDefinitionSearchQuery as ak, type ProcessDefinitionFilter as al, type ProcessDefinitionSearchQueryResult as am, type ProcessDefinitionResult as an, type ProcessInstanceSearchQuerySortRequest as ao, type ProcessInstanceSearchQuery as ap, type ProcessInstanceIncidentSearchQuery as aq, type AdvancedIntegerFilter as ar, type IntegerFilterProperty as as, type BasicStringFilter as at, type AdvancedStringFilter as au, type AdvancedProcessInstanceStateFilter as av, type AdvancedElementInstanceStateFilter as aw, type AdvancedDecisionDefinitionKeyFilter as ax, type DecisionDefinitionKeyFilterProperty as ay, type AdvancedDateTimeFilter as az, type CancelablePromise as b, type TenantClientResult as b$, type ProcessInstanceCallHierarchyEntry as b0, type ProcessInstanceSequenceFlowsQueryResult as b1, type ProcessInstanceSequenceFlowResult as b2, type ProcessDefinitionElementStatisticsQuery as b3, type ProcessDefinitionElementStatisticsQueryResult as b4, type ProcessInstanceElementStatisticsQueryResult as b5, type ProcessElementStatisticsResult as b6, type CancelProcessInstanceRequest as b7, type ElementInstanceSearchQuerySortRequest as b8, type ElementInstanceSearchQuery as b9, type DecisionDefinitionSearchQueryResult as bA, type DecisionDefinitionResult as bB, type UsageMetricsResponse as bC, type UsageMetricsResponseItem as bD, type PermissionTypeEnum as bE, type ResourceTypeEnum as bF, type OwnerTypeEnum as bG, type AuthorizationRequest as bH, type AuthorizationCreateResult as bI, type AuthorizationSearchQuerySortRequest as bJ, type AuthorizationSearchQuery as bK, type AuthorizationFilter as bL, type AuthorizationResult as bM, type AuthorizationSearchResult as bN, type UserRequest as bO, type UserCreateResult as bP, type UserUpdateResult as bQ, type UserSearchQuerySortRequest as bR, type UserSearchQueryRequest as bS, type MappingRuleSearchQuerySortRequest as bT, type MappingRuleSearchQueryRequest as bU, type UserFilter as bV, type MappingRuleFilter as bW, type CamundaUserResult as bX, type UserResult as bY, type UserSearchResult as bZ, type UserUpdateRequest as b_, type ElementInstanceFilter as ba, type ElementInstanceSearchQueryResult as bb, type ElementInstanceResult as bc, type AdHocSubProcessActivateActivitiesInstruction as bd, type AdHocSubProcessActivateActivityReference as be, type DecisionDefinitionSearchQuerySortRequest as bf, type DecisionDefinitionSearchQuery as bg, type DecisionDefinitionFilter as bh, type IncidentSearchQuerySortRequest as bi, type IncidentSearchQuery as bj, type IncidentFilter as bk, type IncidentSearchQueryResult as bl, type CorrelatedMessageSubscriptionSearchQueryResult as bm, type CorrelatedMessageSubscriptionResult as bn, type CorrelatedMessageSubscriptionSearchQuery as bo, type CorrelatedMessageSubscriptionSearchQuerySortRequest as bp, type CorrelatedMessageSubscriptionFilter as bq, type MessageSubscriptionSearchQueryResult as br, type MessageSubscriptionResult as bs, type MessageSubscriptionSearchQuerySortRequest as bt, type MessageSubscriptionSearchQuery as bu, type MessageSubscriptionFilter as bv, type MessageSubscriptionStateFilterProperty as bw, type MessageSubscriptionStateEnum as bx, type AdvancedMessageSubscriptionStateFilter as by, type IncidentResult as bz, createCamundaClient as c, type UserTaskUpdateRequest as c$, type TenantClientSearchResult as c0, type TenantClientSearchQueryRequest as c1, type TenantClientSearchQuerySortRequest as c2, type TenantUserResult as c3, type TenantUserSearchResult as c4, type TenantUserSearchQueryRequest as c5, type TenantUserSearchQuerySortRequest as c6, type TenantGroupResult as c7, type TenantGroupSearchResult as c8, type TenantGroupSearchQueryRequest as c9, type GroupResult as cA, type GroupSearchQuerySortRequest as cB, type GroupSearchQueryRequest as cC, type GroupFilter as cD, type GroupSearchQueryResult as cE, type GroupUserResult as cF, type GroupUserSearchResult as cG, type GroupUserSearchQueryRequest as cH, type GroupUserSearchQuerySortRequest as cI, type GroupClientResult as cJ, type GroupClientSearchResult as cK, type GroupClientSearchQueryRequest as cL, type GroupClientSearchQuerySortRequest as cM, type MappingRuleCreateUpdateRequest as cN, type MappingRuleCreateRequest as cO, type MappingRuleUpdateRequest as cP, type MappingRuleCreateUpdateResult as cQ, type MappingRuleCreateResult as cR, type MappingRuleUpdateResult as cS, type MappingRuleSearchQueryResult as cT, type MappingRuleResult as cU, type TopologyResponse as cV, type LicenseResponse as cW, type BrokerInfo as cX, type Partition as cY, type UserTaskCompletionRequest as cZ, type UserTaskAssignmentRequest as c_, type TenantGroupSearchQuerySortRequest as ca, type RoleCreateRequest as cb, type RoleCreateResult as cc, type RoleUpdateRequest as cd, type RoleUpdateResult as ce, type RoleResult as cf, type RoleSearchQuerySortRequest as cg, type RoleSearchQueryRequest as ch, type RoleFilter as ci, type RoleSearchQueryResult as cj, type RoleUserResult as ck, type RoleUserSearchResult as cl, type RoleUserSearchQueryRequest as cm, type RoleUserSearchQuerySortRequest as cn, type RoleClientResult as co, type RoleClientSearchResult as cp, type RoleClientSearchQueryRequest as cq, type RoleClientSearchQuerySortRequest as cr, type RoleGroupResult as cs, type RoleGroupSearchResult as ct, type RoleGroupSearchQueryRequest as cu, type RoleGroupSearchQuerySortRequest as cv, type GroupCreateRequest as cw, type GroupCreateResult as cx, type GroupUpdateRequest as cy, type GroupUpdateResult as cz, JobWorker as d, type MessageCorrelationResult as d$, type Changeset as d0, type ClockPinRequest as d1, type JobActivationRequest as d2, type JobActivationResult as d3, type ActivatedJobResult as d4, type UserTaskProperties as d5, type JobFailRequest as d6, type JobErrorRequest as d7, type JobCompletionRequest as d8, type JobResult as d9, type CursorBackwardPagination as dA, type SearchQueryResponse as dB, type SearchQueryPageResponse as dC, type DecisionRequirementsSearchQuerySortRequest as dD, type DecisionRequirementsSearchQuery as dE, type DecisionRequirementsFilter as dF, type DecisionRequirementsSearchQueryResult as dG, type DecisionRequirementsResult as dH, type DecisionEvaluationInstruction as dI, type DecisionEvaluationById as dJ, type DecisionEvaluationByKey as dK, type EvaluateDecisionResult as dL, type EvaluatedDecisionResult as dM, type MatchedDecisionRuleItem as dN, type EvaluatedDecisionInputItem as dO, type EvaluatedDecisionOutputItem as dP, type DecisionInstanceSearchQuerySortRequest as dQ, type DecisionInstanceSearchQuery as dR, type DecisionInstanceFilter as dS, type DecisionInstanceSearchQueryResult as dT, type DecisionInstanceResult as dU, type DecisionInstanceGetQueryResult as dV, type DecisionDefinitionTypeEnum as dW, type DecisionInstanceStateEnum as dX, type SortOrderEnum as dY, type OperationReference as dZ, type MessageCorrelationRequest as d_, type JobResultUserTask as da, type JobResultCorrections as db, type JobResultAdHocSubProcess as dc, type JobResultActivateElement as dd, type JobUpdateRequest as de, type JobChangeset as df, type JobSearchQuery as dg, type JobSearchQuerySortRequest as dh, type JobFilter as di, type JobSearchQueryResult as dj, type JobSearchResult as dk, type JobStateEnum as dl, type JobKindEnum as dm, type JobListenerEventTypeEnum as dn, type JobStateFilterProperty as dp, type AdvancedJobStateFilter as dq, type JobKindFilterProperty as dr, type AdvancedJobKindFilter as ds, type JobListenerEventTypeFilterProperty as dt, type AdvancedJobListenerEventTypeFilter as du, type ProblemDetail as dv, type SearchQueryRequest as dw, type SearchQueryPageRequest as dx, type OffsetPagination as dy, type CursorForwardPagination as dz, type Job as e, Tag as e$, type MessagePublicationRequest as e0, type MessagePublicationResult as e1, type DocumentReference as e2, type DocumentCreationFailureDetail as e3, type DocumentCreationBatchResponse as e4, DocumentId as e5, type DocumentMetadata as e6, type DocumentLinkRequest as e7, type DocumentLink as e8, type DeploymentResult as e9, type FormResult as eA, type ResourceResult as eB, type BatchOperationTypeEnum as eC, type BatchOperationCreatedResult as eD, type BatchOperationSearchQuerySortRequest as eE, type BatchOperationSearchQuery as eF, type BatchOperationFilter as eG, type BatchOperationTypeFilterProperty as eH, type AdvancedBatchOperationTypeFilter as eI, type BatchOperationStateFilterProperty as eJ, type AdvancedBatchOperationStateFilter as eK, type BatchOperationStateEnum as eL, type BatchOperationItemSearchQuerySortRequest as eM, type BatchOperationItemSearchQuery as eN, type BatchOperationItemFilter as eO, type BatchOperationItemStateFilterProperty as eP, type AdvancedBatchOperationItemStateFilter as eQ, type BatchOperationItemStateEnum as eR, type BatchOperationSearchQueryResult as eS, type BatchOperationResponse as eT, type BatchOperationError as eU, type BatchOperationItemSearchQueryResult as eV, type BatchOperationItemResponse as eW, type ProcessInstanceCancellationBatchOperationRequest as eX, type ProcessInstanceIncidentResolutionBatchOperationRequest as eY, type ProcessInstanceModificationBatchOperationRequest as eZ, type ProcessInstanceModificationMoveBatchOperationInstruction as e_, type DeploymentMetadataResult as ea, type DeploymentProcessResult as eb, type DeploymentDecisionResult as ec, type DeploymentDecisionRequirementsResult as ed, type DeploymentFormResult as ee, type DeploymentResourceResult as ef, type IncidentResolutionRequest as eg, type ProcessInstanceCreationInstruction as eh, type ProcessInstanceCreationInstructionById as ei, type ProcessInstanceCreationInstructionByKey as ej, type ProcessInstanceCreationStartInstruction as ek, type ProcessInstanceCreationRuntimeInstruction as el, type ProcessInstanceCreationTerminateInstruction as em, type CreateProcessInstanceResult as en, type ProcessInstanceMigrationBatchOperationRequest as eo, type ProcessInstanceMigrationBatchOperationPlan as ep, type ProcessInstanceMigrationInstruction as eq, type MigrateProcessInstanceMappingInstruction as er, type ProcessInstanceModificationInstruction as es, type ProcessInstanceModificationActivateInstruction as et, type ModifyProcessInstanceVariableInstruction as eu, type ProcessInstanceModificationTerminateInstruction as ev, type SetVariableRequest as ew, type DeleteResourceRequest as ex, type SignalBroadcastRequest as ey, type SignalBroadcastResult as ez, JobActionReceipt as f, type DeleteTenantErrors as f$, type TagSet as f0, TenantId as f1, Username as f2, type GetTopologyData as f3, type GetTopologyErrors as f4, type GetTopologyError as f5, type GetTopologyResponses as f6, type GetTopologyResponse as f7, type GetStatusData as f8, type GetStatusErrors as f9, type FailJobResponse as fA, type ThrowJobErrorData as fB, type ThrowJobErrorErrors as fC, type ThrowJobErrorError as fD, type ThrowJobErrorResponses as fE, type ThrowJobErrorResponse as fF, type CompleteJobData as fG, type CompleteJobErrors as fH, type CompleteJobError as fI, type CompleteJobResponses as fJ, type CompleteJobResponse as fK, type UpdateJobData as fL, type UpdateJobErrors as fM, type UpdateJobError as fN, type UpdateJobResponses as fO, type UpdateJobResponse as fP, type ResolveIncidentData as fQ, type ResolveIncidentErrors as fR, type ResolveIncidentError as fS, type ResolveIncidentResponses as fT, type ResolveIncidentResponse as fU, type CreateTenantData as fV, type CreateTenantErrors as fW, type CreateTenantError as fX, type CreateTenantResponses as fY, type CreateTenantResponse as fZ, type DeleteTenantData as f_, type GetStatusResponses as fa, type GetStatusResponse as fb, type GetLicenseData as fc, type GetLicenseErrors as fd, type GetLicenseError as fe, type GetLicenseResponses as ff, type GetLicenseResponse as fg, type GetAuthenticationData as fh, type GetAuthenticationErrors as fi, type GetAuthenticationError as fj, type GetAuthenticationResponses as fk, type GetAuthenticationResponse as fl, type ActivateJobsData as fm, type ActivateJobsErrors as fn, type ActivateJobsError as fo, type ActivateJobsResponses as fp, type ActivateJobsResponse as fq, type SearchJobsData as fr, type SearchJobsErrors as fs, type SearchJobsError as ft, type SearchJobsResponses as fu, type SearchJobsResponse as fv, type FailJobData as fw, type FailJobErrors as fx, type FailJobError as fy, type FailJobResponses as fz, createCamundaFpClient as g, type AssignGroupToTenantData as g$, type DeleteTenantError as g0, type DeleteTenantResponses as g1, type DeleteTenantResponse as g2, type GetTenantData as g3, type GetTenantErrors as g4, type GetTenantError as g5, type GetTenantResponses as g6, type GetTenantResponse as g7, type UpdateTenantData as g8, type UpdateTenantErrors as g9, type UnassignClientFromTenantErrors as gA, type UnassignClientFromTenantError as gB, type UnassignClientFromTenantResponses as gC, type UnassignClientFromTenantResponse as gD, type AssignClientToTenantData as gE, type AssignClientToTenantErrors as gF, type AssignClientToTenantError as gG, type AssignClientToTenantResponses as gH, type AssignClientToTenantResponse as gI, type UnassignMappingRuleFromTenantData as gJ, type UnassignMappingRuleFromTenantErrors as gK, type UnassignMappingRuleFromTenantError as gL, type UnassignMappingRuleFromTenantResponses as gM, type UnassignMappingRuleFromTenantResponse as gN, type AssignMappingRuleToTenantData as gO, type AssignMappingRuleToTenantErrors as gP, type AssignMappingRuleToTenantError as gQ, type AssignMappingRuleToTenantResponses as gR, type AssignMappingRuleToTenantResponse as gS, type SearchMappingRulesForTenantData as gT, type SearchMappingRulesForTenantResponses as gU, type SearchMappingRulesForTenantResponse as gV, type UnassignGroupFromTenantData as gW, type UnassignGroupFromTenantErrors as gX, type UnassignGroupFromTenantError as gY, type UnassignGroupFromTenantResponses as gZ, type UnassignGroupFromTenantResponse as g_, type UpdateTenantError as ga, type UpdateTenantResponses as gb, type UpdateTenantResponse as gc, type UnassignUserFromTenantData as gd, type UnassignUserFromTenantErrors as ge, type UnassignUserFromTenantError as gf, type UnassignUserFromTenantResponses as gg, type UnassignUserFromTenantResponse as gh, type AssignUserToTenantData as gi, type AssignUserToTenantErrors as gj, type AssignUserToTenantError as gk, type AssignUserToTenantResponses as gl, type AssignUserToTenantResponse as gm, type SearchUsersForTenantData as gn, type SearchUsersForTenantResponses as go, type SearchUsersForTenantResponse as gp, type SearchClientsForTenantData as gq, type SearchClientsForTenantResponses as gr, type SearchClientsForTenantResponse as gs, type SearchGroupIdsForTenantData as gt, type SearchGroupIdsForTenantResponses as gu, type SearchGroupIdsForTenantResponse as gv, type SearchRolesForTenantData as gw, type SearchRolesForTenantResponses as gx, type SearchRolesForTenantResponse as gy, type UnassignClientFromTenantData as gz, type CamundaFpClient as h, type SearchVariablesResponse as h$, type AssignGroupToTenantErrors as h0, type AssignGroupToTenantError as h1, type AssignGroupToTenantResponses as h2, type AssignGroupToTenantResponse as h3, type UnassignRoleFromTenantData as h4, type UnassignRoleFromTenantErrors as h5, type UnassignRoleFromTenantError as h6, type UnassignRoleFromTenantResponses as h7, type UnassignRoleFromTenantResponse as h8, type AssignRoleToTenantData as h9, type UpdateUserTaskError as hA, type UpdateUserTaskResponses as hB, type UpdateUserTaskResponse as hC, type GetUserTaskFormData as hD, type GetUserTaskFormErrors as hE, type GetUserTaskFormError as hF, type GetUserTaskFormResponses as hG, type GetUserTaskFormResponse as hH, type UnassignUserTaskData as hI, type UnassignUserTaskErrors as hJ, type UnassignUserTaskError as hK, type UnassignUserTaskResponses as hL, type UnassignUserTaskResponse as hM, type SearchUserTasksData as hN, type SearchUserTasksErrors as hO, type SearchUserTasksError as hP, type SearchUserTasksResponses as hQ, type SearchUserTasksResponse as hR, type SearchUserTaskVariablesData as hS, type SearchUserTaskVariablesErrors as hT, type SearchUserTaskVariablesError as hU, type SearchUserTaskVariablesResponses as hV, type SearchUserTaskVariablesResponse as hW, type SearchVariablesData as hX, type SearchVariablesErrors as hY, type SearchVariablesError as hZ, type SearchVariablesResponses as h_, type AssignRoleToTenantErrors as ha, type AssignRoleToTenantError as hb, type AssignRoleToTenantResponses as hc, type AssignRoleToTenantResponse as hd, type SearchTenantsData as he, type SearchTenantsErrors as hf, type SearchTenantsError as hg, type SearchTenantsResponses as hh, type SearchTenantsResponse as hi, type CompleteUserTaskData as hj, type CompleteUserTaskErrors as hk, type CompleteUserTaskError as hl, type CompleteUserTaskResponses as hm, type CompleteUserTaskResponse as hn, type AssignUserTaskData as ho, type AssignUserTaskErrors as hp, type AssignUserTaskError as hq, type AssignUserTaskResponses as hr, type AssignUserTaskResponse as hs, type GetUserTaskData as ht, type GetUserTaskErrors as hu, type GetUserTaskError as hv, type GetUserTaskResponses as hw, type GetUserTaskResponse as hx, type UpdateUserTaskData as hy, type UpdateUserTaskErrors as hz, isLeft as i, type SearchProcessInstancesErrors as i$, type GetVariableData as i0, type GetVariableErrors as i1, type GetVariableError as i2, type GetVariableResponses as i3, type GetVariableResponse as i4, type PinClockData as i5, type PinClockErrors as i6, type PinClockError as i7, type PinClockResponses as i8, type PinClockResponse as i9, type GetStartProcessFormResponse as iA, type GetProcessDefinitionStatisticsData as iB, type GetProcessDefinitionStatisticsErrors as iC, type GetProcessDefinitionStatisticsError as iD, type GetProcessDefinitionStatisticsResponses as iE, type GetProcessDefinitionStatisticsResponse as iF, type CreateProcessInstanceData as iG, type CreateProcessInstanceErrors as iH, type CreateProcessInstanceError as iI, type CreateProcessInstanceResponses as iJ, type CreateProcessInstanceResponse as iK, type GetProcessInstanceData as iL, type GetProcessInstanceErrors as iM, type GetProcessInstanceError as iN, type GetProcessInstanceResponses as iO, type GetProcessInstanceResponse as iP, type GetProcessInstanceSequenceFlowsData as iQ, type GetProcessInstanceSequenceFlowsErrors as iR, type GetProcessInstanceSequenceFlowsError as iS, type GetProcessInstanceSequenceFlowsResponses as iT, type GetProcessInstanceSequenceFlowsResponse as iU, type GetProcessInstanceStatisticsData as iV, type GetProcessInstanceStatisticsErrors as iW, type GetProcessInstanceStatisticsError as iX, type GetProcessInstanceStatisticsResponses as iY, type GetProcessInstanceStatisticsResponse as iZ, type SearchProcessInstancesData as i_, type ResetClockData as ia, type ResetClockErrors as ib, type ResetClockError as ic, type ResetClockResponses as id, type ResetClockResponse as ie, type SearchProcessDefinitionsData as ig, type SearchProcessDefinitionsErrors as ih, type SearchProcessDefinitionsError as ii, type SearchProcessDefinitionsResponses as ij, type SearchProcessDefinitionsResponse as ik, type GetProcessDefinitionData as il, type GetProcessDefinitionErrors as im, type GetProcessDefinitionError as io, type GetProcessDefinitionResponses as ip, type GetProcessDefinitionResponse as iq, type GetProcessDefinitionXmlData as ir, type GetProcessDefinitionXmlErrors as is, type GetProcessDefinitionXmlError as it, type GetProcessDefinitionXmlResponses as iu, type GetProcessDefinitionXmlResponse as iv, type GetStartProcessFormData as iw, type GetStartProcessFormErrors as ix, type GetStartProcessFormError as iy, type GetStartProcessFormResponses as iz, isRight as j, type GetDecisionDefinitionData as j$, type SearchProcessInstancesError as j0, type SearchProcessInstancesResponses as j1, type SearchProcessInstancesResponse as j2, type SearchProcessInstanceIncidentsData as j3, type SearchProcessInstanceIncidentsErrors as j4, type SearchProcessInstanceIncidentsError as j5, type SearchProcessInstanceIncidentsResponses as j6, type SearchProcessInstanceIncidentsResponse as j7, type CancelProcessInstanceData as j8, type CancelProcessInstanceErrors as j9, type MigrateProcessInstanceResponses as jA, type MigrateProcessInstanceResponse as jB, type ModifyProcessInstanceData as jC, type ModifyProcessInstanceErrors as jD, type ModifyProcessInstanceError as jE, type ModifyProcessInstanceResponses as jF, type ModifyProcessInstanceResponse as jG, type GetProcessInstanceCallHierarchyData as jH, type GetProcessInstanceCallHierarchyErrors as jI, type GetProcessInstanceCallHierarchyError as jJ, type GetProcessInstanceCallHierarchyResponses as jK, type GetProcessInstanceCallHierarchyResponse as jL, type SearchElementInstancesData as jM, type SearchElementInstancesErrors as jN, type SearchElementInstancesError as jO, type SearchElementInstancesResponses as jP, type SearchElementInstancesResponse as jQ, type GetElementInstanceData as jR, type GetElementInstanceErrors as jS, type GetElementInstanceError as jT, type GetElementInstanceResponses as jU, type GetElementInstanceResponse as jV, type SearchDecisionDefinitionsData as jW, type SearchDecisionDefinitionsErrors as jX, type SearchDecisionDefinitionsError as jY, type SearchDecisionDefinitionsResponses as jZ, type SearchDecisionDefinitionsResponse as j_, type CancelProcessInstanceError as ja, type CancelProcessInstanceResponses as jb, type CancelProcessInstanceResponse as jc, type CancelProcessInstancesBatchOperationData as jd, type CancelProcessInstancesBatchOperationErrors as je, type CancelProcessInstancesBatchOperationError as jf, type CancelProcessInstancesBatchOperationResponses as jg, type CancelProcessInstancesBatchOperationResponse as jh, type ResolveIncidentsBatchOperationData as ji, type ResolveIncidentsBatchOperationErrors as jj, type ResolveIncidentsBatchOperationError as jk, type ResolveIncidentsBatchOperationResponses as jl, type ResolveIncidentsBatchOperationResponse as jm, type MigrateProcessInstancesBatchOperationData as jn, type MigrateProcessInstancesBatchOperationErrors as jo, type MigrateProcessInstancesBatchOperationError as jp, type MigrateProcessInstancesBatchOperationResponses as jq, type MigrateProcessInstancesBatchOperationResponse as jr, type ModifyProcessInstancesBatchOperationData as js, type ModifyProcessInstancesBatchOperationErrors as jt, type ModifyProcessInstancesBatchOperationError as ju, type ModifyProcessInstancesBatchOperationResponses as jv, type ModifyProcessInstancesBatchOperationResponse as jw, type MigrateProcessInstanceData as jx, type MigrateProcessInstanceErrors as jy, type MigrateProcessInstanceError as jz, CamundaValidationError as k, type SearchAuthorizationsResponse as k$, type GetDecisionDefinitionErrors as k0, type GetDecisionDefinitionError as k1, type GetDecisionDefinitionResponses as k2, type GetDecisionDefinitionResponse as k3, type GetDecisionDefinitionXmlData as k4, type GetDecisionDefinitionXmlErrors as k5, type GetDecisionDefinitionXmlError as k6, type GetDecisionDefinitionXmlResponses as k7, type GetDecisionDefinitionXmlResponse as k8, type SearchDecisionRequirementsData as k9, type EvaluateDecisionError as kA, type EvaluateDecisionResponses as kB, type EvaluateDecisionResponse as kC, type CreateAuthorizationData as kD, type CreateAuthorizationErrors as kE, type CreateAuthorizationError as kF, type CreateAuthorizationResponses as kG, type CreateAuthorizationResponse as kH, type DeleteAuthorizationData as kI, type DeleteAuthorizationErrors as kJ, type DeleteAuthorizationError as kK, type DeleteAuthorizationResponses as kL, type DeleteAuthorizationResponse as kM, type GetAuthorizationData as kN, type GetAuthorizationErrors as kO, type GetAuthorizationError as kP, type GetAuthorizationResponses as kQ, type GetAuthorizationResponse as kR, type UpdateAuthorizationData as kS, type UpdateAuthorizationErrors as kT, type UpdateAuthorizationError as kU, type UpdateAuthorizationResponses as kV, type UpdateAuthorizationResponse as kW, type SearchAuthorizationsData as kX, type SearchAuthorizationsErrors as kY, type SearchAuthorizationsError as kZ, type SearchAuthorizationsResponses as k_, type SearchDecisionRequirementsErrors as ka, type SearchDecisionRequirementsError as kb, type SearchDecisionRequirementsResponses as kc, type SearchDecisionRequirementsResponse as kd, type GetDecisionRequirementsData as ke, type GetDecisionRequirementsErrors as kf, type GetDecisionRequirementsError as kg, type GetDecisionRequirementsResponses as kh, type GetDecisionRequirementsResponse as ki, type GetDecisionRequirementsXmlData as kj, type GetDecisionRequirementsXmlErrors as kk, type GetDecisionRequirementsXmlError as kl, type GetDecisionRequirementsXmlResponses as km, type GetDecisionRequirementsXmlResponse as kn, type SearchDecisionInstancesData as ko, type SearchDecisionInstancesErrors as kp, type SearchDecisionInstancesError as kq, type SearchDecisionInstancesResponses as kr, type SearchDecisionInstancesResponse as ks, type GetDecisionInstanceData as kt, type GetDecisionInstanceErrors as ku, type GetDecisionInstanceError as kv, type GetDecisionInstanceResponses as kw, type GetDecisionInstanceResponse as kx, type EvaluateDecisionData as ky, type EvaluateDecisionErrors as kz, EventualConsistencyTimeoutError as l, type AssignRoleToGroupResponses as l$, type CreateRoleData as l0, type CreateRoleErrors as l1, type CreateRoleError as l2, type CreateRoleResponses as l3, type CreateRoleResponse as l4, type DeleteRoleData as l5, type DeleteRoleErrors as l6, type DeleteRoleError as l7, type DeleteRoleResponses as l8, type DeleteRoleResponse as l9, type AssignRoleToUserErrors as lA, type AssignRoleToUserError as lB, type AssignRoleToUserResponses as lC, type AssignRoleToUserResponse as lD, type UnassignRoleFromClientData as lE, type UnassignRoleFromClientErrors as lF, type UnassignRoleFromClientError as lG, type UnassignRoleFromClientResponses as lH, type UnassignRoleFromClientResponse as lI, type AssignRoleToClientData as lJ, type AssignRoleToClientErrors as lK, type AssignRoleToClientError as lL, type AssignRoleToClientResponses as lM, type AssignRoleToClientResponse as lN, type SearchRolesData as lO, type SearchRolesErrors as lP, type SearchRolesError as lQ, type SearchRolesResponses as lR, type SearchRolesResponse as lS, type UnassignRoleFromGroupData as lT, type UnassignRoleFromGroupErrors as lU, type UnassignRoleFromGroupError as lV, type UnassignRoleFromGroupResponses as lW, type UnassignRoleFromGroupResponse as lX, type AssignRoleToGroupData as lY, type AssignRoleToGroupErrors as lZ, type AssignRoleToGroupError as l_, type GetRoleData as la, type GetRoleErrors as lb, type GetRoleError as lc, type GetRoleResponses as ld, type GetRoleResponse as le, type UpdateRoleData as lf, type UpdateRoleErrors as lg, type UpdateRoleError as lh, type UpdateRoleResponses as li, type UpdateRoleResponse as lj, type SearchUsersForRoleData as lk, type SearchUsersForRoleErrors as ll, type SearchUsersForRoleError as lm, type SearchUsersForRoleResponses as ln, type SearchUsersForRoleResponse as lo, type SearchClientsForRoleData as lp, type SearchClientsForRoleErrors as lq, type SearchClientsForRoleError as lr, type SearchClientsForRoleResponses as ls, type SearchClientsForRoleResponse as lt, type UnassignRoleFromUserData as lu, type UnassignRoleFromUserErrors as lv, type UnassignRoleFromUserError as lw, type UnassignRoleFromUserResponses as lx, type UnassignRoleFromUserResponse as ly, type AssignRoleToUserData as lz, type EnrichedActivatedJob as m, type UnassignUserFromGroupError as m$, type AssignRoleToGroupResponse as m0, type SearchGroupsForRoleData as m1, type SearchGroupsForRoleErrors as m2, type SearchGroupsForRoleError as m3, type SearchGroupsForRoleResponses as m4, type SearchGroupsForRoleResponse as m5, type UnassignRoleFromMappingRuleData as m6, type UnassignRoleFromMappingRuleErrors as m7, type UnassignRoleFromMappingRuleError as m8, type UnassignRoleFromMappingRuleResponses as m9, type UpdateGroupData as mA, type UpdateGroupErrors as mB, type UpdateGroupError as mC, type UpdateGroupResponses as mD, type UpdateGroupResponse as mE, type SearchUsersForGroupData as mF, type SearchUsersForGroupErrors as mG, type SearchUsersForGroupError as mH, type SearchUsersForGroupResponses as mI, type SearchUsersForGroupResponse as mJ, type SearchMappingRulesForGroupData as mK, type SearchMappingRulesForGroupErrors as mL, type SearchMappingRulesForGroupError as mM, type SearchMappingRulesForGroupResponses as mN, type SearchMappingRulesForGroupResponse as mO, type SearchRolesForGroupData as mP, type SearchRolesForGroupErrors as mQ, type SearchRolesForGroupError as mR, type SearchRolesForGroupResponses as mS, type SearchRolesForGroupResponse as mT, type SearchClientsForGroupData as mU, type SearchClientsForGroupErrors as mV, type SearchClientsForGroupError as mW, type SearchClientsForGroupResponses as mX, type SearchClientsForGroupResponse as mY, type UnassignUserFromGroupData as mZ, type UnassignUserFromGroupErrors as m_, type UnassignRoleFromMappingRuleResponse as ma, type AssignRoleToMappingRuleData as mb, type AssignRoleToMappingRuleErrors as mc, type AssignRoleToMappingRuleError as md, type AssignRoleToMappingRuleResponses as me, type AssignRoleToMappingRuleResponse as mf, type SearchMappingRulesForRoleData as mg, type SearchMappingRulesForRoleErrors as mh, type SearchMappingRulesForRoleError as mi, type SearchMappingRulesForRoleResponses as mj, type SearchMappingRulesForRoleResponse as mk, type CreateGroupData as ml, type CreateGroupErrors as mm, type CreateGroupError as mn, type CreateGroupResponses as mo, type CreateGroupResponse as mp, type DeleteGroupData as mq, type DeleteGroupErrors as mr, type DeleteGroupError as ms, type DeleteGroupResponses as mt, type DeleteGroupResponse as mu, type GetGroupData as mv, type GetGroupErrors as mw, type GetGroupError as mx, type GetGroupResponses as my, type GetGroupResponse as mz, type CamundaKey as n, type CorrelateMessageErrors as n$, type UnassignUserFromGroupResponses as n0, type UnassignUserFromGroupResponse as n1, type AssignUserToGroupData as n2, type AssignUserToGroupErrors as n3, type AssignUserToGroupError as n4, type AssignUserToGroupResponses as n5, type AssignUserToGroupResponse as n6, type UnassignClientFromGroupData as n7, type UnassignClientFromGroupErrors as n8, type UnassignClientFromGroupError as n9, type CreateMappingRuleResponse as nA, type DeleteMappingRuleData as nB, type DeleteMappingRuleErrors as nC, type DeleteMappingRuleError as nD, type DeleteMappingRuleResponses as nE, type DeleteMappingRuleResponse as nF, type GetMappingRuleData as nG, type GetMappingRuleErrors as nH, type GetMappingRuleError as nI, type GetMappingRuleResponses as nJ, type GetMappingRuleResponse as nK, type UpdateMappingRuleData as nL, type UpdateMappingRuleErrors as nM, type UpdateMappingRuleError as nN, type UpdateMappingRuleResponses as nO, type UpdateMappingRuleResponse as nP, type SearchMappingRuleData as nQ, type SearchMappingRuleErrors as nR, type SearchMappingRuleError as nS, type SearchMappingRuleResponses as nT, type SearchMappingRuleResponse as nU, type PublishMessageData as nV, type PublishMessageErrors as nW, type PublishMessageError as nX, type PublishMessageResponses as nY, type PublishMessageResponse as nZ, type CorrelateMessageData as n_, type UnassignClientFromGroupResponses as na, type UnassignClientFromGroupResponse as nb, type AssignClientToGroupData as nc, type AssignClientToGroupErrors as nd, type AssignClientToGroupError as ne, type AssignClientToGroupResponses as nf, type AssignClientToGroupResponse as ng, type UnassignMappingRuleFromGroupData as nh, type UnassignMappingRuleFromGroupErrors as ni, type UnassignMappingRuleFromGroupError as nj, type UnassignMappingRuleFromGroupResponses as nk, type UnassignMappingRuleFromGroupResponse as nl, type AssignMappingRuleToGroupData as nm, type AssignMappingRuleToGroupErrors as nn, type AssignMappingRuleToGroupError as no, type AssignMappingRuleToGroupResponses as np, type AssignMappingRuleToGroupResponse as nq, type SearchGroupsData as nr, type SearchGroupsErrors as ns, type SearchGroupsError as nt, type SearchGroupsResponses as nu, type SearchGroupsResponse as nv, type CreateMappingRuleData as nw, type CreateMappingRuleErrors as nx, type CreateMappingRuleError as ny, type CreateMappingRuleResponses as nz, EndCursor as o, type CreateAdminUserData as o$, type CorrelateMessageError as o0, type CorrelateMessageResponses as o1, type CorrelateMessageResponse as o2, type SearchCorrelatedMessageSubscriptionsData as o3, type SearchCorrelatedMessageSubscriptionsErrors as o4, type SearchCorrelatedMessageSubscriptionsError as o5, type SearchCorrelatedMessageSubscriptionsResponses as o6, type SearchCorrelatedMessageSubscriptionsResponse as o7, type SearchMessageSubscriptionsData as o8, type SearchMessageSubscriptionsErrors as o9, type CreateDocumentLinkResponses as oA, type CreateDocumentLinkResponse as oB, type CreateUserData as oC, type CreateUserErrors as oD, type CreateUserError as oE, type CreateUserResponses as oF, type CreateUserResponse as oG, type SearchUsersData as oH, type SearchUsersErrors as oI, type SearchUsersError as oJ, type SearchUsersResponses as oK, type SearchUsersResponse as oL, type DeleteUserData as oM, type DeleteUserErrors as oN, type DeleteUserError as oO, type DeleteUserResponses as oP, type DeleteUserResponse as oQ, type GetUserData as oR, type GetUserErrors as oS, type GetUserError as oT, type GetUserResponses as oU, type GetUserResponse as oV, type UpdateUserData as oW, type UpdateUserErrors as oX, type UpdateUserError as oY, type UpdateUserResponses as oZ, type UpdateUserResponse as o_, type SearchMessageSubscriptionsError as oa, type SearchMessageSubscriptionsResponses as ob, type SearchMessageSubscriptionsResponse as oc, type CreateDocumentData as od, type CreateDocumentErrors as oe, type CreateDocumentError as of, type CreateDocumentResponses as og, type CreateDocumentResponse as oh, type CreateDocumentsData as oi, type CreateDocumentsErrors as oj, type CreateDocumentsError as ok, type CreateDocumentsResponses as ol, type CreateDocumentsResponse as om, type DeleteDocumentData as on, type DeleteDocumentErrors as oo, type DeleteDocumentError as op, type DeleteDocumentResponses as oq, type DeleteDocumentResponse as or, type GetDocumentData as os, type GetDocumentErrors as ot, type GetDocumentError as ou, type GetDocumentResponses as ov, type GetDocumentResponse as ow, type CreateDocumentLinkData as ox, type CreateDocumentLinkErrors as oy, type CreateDocumentLinkError as oz, ProcessDefinitionKey as p, type CancelBatchOperationData as p$, type CreateAdminUserErrors as p0, type CreateAdminUserError as p1, type CreateAdminUserResponses as p2, type CreateAdminUserResponse as p3, type SearchIncidentsData as p4, type SearchIncidentsErrors as p5, type SearchIncidentsError as p6, type SearchIncidentsResponses as p7, type SearchIncidentsResponse as p8, type GetIncidentData as p9, type GetResourceContentResponses as pA, type GetResourceContentResponse as pB, type CreateElementInstanceVariablesData as pC, type CreateElementInstanceVariablesErrors as pD, type CreateElementInstanceVariablesError as pE, type CreateElementInstanceVariablesResponses as pF, type CreateElementInstanceVariablesResponse as pG, type ActivateAdHocSubProcessActivitiesData as pH, type ActivateAdHocSubProcessActivitiesErrors as pI, type ActivateAdHocSubProcessActivitiesError as pJ, type ActivateAdHocSubProcessActivitiesResponses as pK, type ActivateAdHocSubProcessActivitiesResponse as pL, type BroadcastSignalData as pM, type BroadcastSignalErrors as pN, type BroadcastSignalError as pO, type BroadcastSignalResponses as pP, type BroadcastSignalResponse as pQ, type GetBatchOperationData as pR, type GetBatchOperationErrors as pS, type GetBatchOperationError as pT, type GetBatchOperationResponses as pU, type GetBatchOperationResponse as pV, type SearchBatchOperationsData as pW, type SearchBatchOperationsErrors as pX, type SearchBatchOperationsError as pY, type SearchBatchOperationsResponses as pZ, type SearchBatchOperationsResponse as p_, type GetIncidentErrors as pa, type GetIncidentError as pb, type GetIncidentResponses as pc, type GetIncidentResponse as pd, type GetUsageMetricsData as pe, type GetUsageMetricsErrors as pf, type GetUsageMetricsError as pg, type GetUsageMetricsResponses as ph, type GetUsageMetricsResponse as pi, type CreateDeploymentData as pj, type CreateDeploymentErrors as pk, type CreateDeploymentError as pl, type CreateDeploymentResponses as pm, type CreateDeploymentResponse as pn, type DeleteResourceData as po, type DeleteResourceErrors as pp, type DeleteResourceError as pq, type DeleteResourceResponses as pr, type GetResourceData as ps, type GetResourceErrors as pt, type GetResourceError as pu, type GetResourceResponses as pv, type GetResourceResponse as pw, type GetResourceContentData as px, type GetResourceContentErrors as py, type GetResourceContentError as pz, ProcessDefinitionId as q, type CancelBatchOperationErrors as q0, type CancelBatchOperationError as q1, type CancelBatchOperationResponses as q2, type CancelBatchOperationResponse as q3, type SuspendBatchOperationData as q4, type SuspendBatchOperationErrors as q5, type SuspendBatchOperationError as q6, type SuspendBatchOperationResponses as q7, type SuspendBatchOperationResponse as q8, type ResumeBatchOperationData as q9, type ResumeBatchOperationErrors as qa, type ResumeBatchOperationError as qb, type ResumeBatchOperationResponses as qc, type ResumeBatchOperationResponse as qd, type SearchBatchOperationItemsData as qe, type SearchBatchOperationItemsErrors as qf, type SearchBatchOperationItemsError as qg, type SearchBatchOperationItemsResponses as qh, type SearchBatchOperationItemsResponse as qi, type ClientOptions as qj, assertConstraint as qk, type Fpify as ql, type DomainError as qm, type Left as qn, type Right as qo, retryTE as qp, withTimeoutTE as qq, eventuallyTE as qr, foldDomainError as qs, classifyDomainError as qt, type TaskEither as qu, ElementInstanceKey as r, ElementId as s, FormId as t, ScopeKey as u, JobKey as v, DecisionDefinitionKey as w, DecisionDefinitionId as x, DecisionEvaluationInstanceKey as y, DecisionEvaluationKey as z };
|
|
16545
|
+
export { type TenantSearchQueryResult as $, DecisionRequirementsKey as A, AuthorizationKey as B, type CamundaOptions as C, DeploymentKey as D, type Either as E, FormKey as F, MessageKey as G, DecisionInstanceKey as H, IncidentKey as I, type JobWorkerConfig as J, SignalKey as K, type LongKey as L, MessageSubscriptionKey as M, BatchOperationKey as N, type TenantCreateResult as O, ProcessInstanceKey as P, type TenantUpdateRequest as Q, type ResourceKey as R, StartCursor as S, type TenantCreateRequest as T, UserTaskKey as U, VariableKey as V, type TenantUpdateResult as W, type TenantResult as X, type TenantSearchQuerySortRequest as Y, type TenantSearchQueryRequest as Z, type TenantFilter as _, CamundaClient as a, type ProcessInstanceStateEnum as a$, type UserTaskSearchQuerySortRequest as a0, type UserTaskSearchQuery as a1, type UserTaskVariableSearchQuerySortRequest as a2, type UserTaskVariableSearchQueryRequest as a3, type UserTaskEffectiveVariableSearchQueryRequest as a4, type UserTaskSearchQueryResult as a5, type UserTaskFilter as a6, type UserTaskStateFilterProperty as a7, type AdvancedUserTaskStateFilter as a8, type VariableValueFilterProperty as a9, type AdvancedDateTimeFilter as aA, type BasicStringFilterProperty as aB, type StringFilterProperty as aC, type LikeFilter as aD, type ProcessInstanceStateFilterProperty as aE, type ElementInstanceStateFilterProperty as aF, type DateTimeFilterProperty as aG, type AdvancedProcessDefinitionKeyFilter as aH, type ProcessDefinitionKeyFilterProperty as aI, type AdvancedProcessInstanceKeyFilter as aJ, type ProcessInstanceKeyFilterProperty as aK, type AdvancedElementInstanceKeyFilter as aL, type ElementInstanceKeyFilterProperty as aM, type AdvancedVariableKeyFilter as aN, type VariableKeyFilterProperty as aO, type AdvancedScopeKeyFilter as aP, type ScopeKeyFilterProperty as aQ, type AdvancedMessageSubscriptionKeyFilter as aR, type MessageSubscriptionKeyFilterProperty as aS, type AdvancedJobKeyFilter as aT, type JobKeyFilterProperty as aU, type BaseProcessInstanceFilterFields as aV, type ProcessDefinitionStatisticsFilter as aW, type ProcessInstanceFilterFields as aX, type ProcessInstanceFilter as aY, type ProcessInstanceSearchQueryResult as aZ, type ProcessInstanceResult as a_, type UserTaskVariableFilter as aa, type UserTaskResult as ab, type UserTaskStateEnum as ac, type VariableSearchQuerySortRequest as ad, type VariableSearchQuery as ae, type VariableFilter as af, type VariableSearchQueryResult as ag, type VariableSearchResult as ah, type VariableResult as ai, type VariableResultBase as aj, type ProcessDefinitionSearchQuerySortRequest as ak, type ProcessDefinitionSearchQuery as al, type ProcessDefinitionFilter as am, type ProcessDefinitionSearchQueryResult as an, type ProcessDefinitionResult as ao, type ProcessInstanceSearchQuerySortRequest as ap, type ProcessInstanceSearchQuery as aq, type ProcessInstanceIncidentSearchQuery as ar, type AdvancedIntegerFilter as as, type IntegerFilterProperty as at, type BasicStringFilter as au, type AdvancedStringFilter as av, type AdvancedProcessInstanceStateFilter as aw, type AdvancedElementInstanceStateFilter as ax, type AdvancedDecisionDefinitionKeyFilter as ay, type DecisionDefinitionKeyFilterProperty as az, type CancelablePromise as b, type UserUpdateRequest as b$, type ElementInstanceStateEnum as b0, type ProcessInstanceCallHierarchyEntry as b1, type ProcessInstanceSequenceFlowsQueryResult as b2, type ProcessInstanceSequenceFlowResult as b3, type ProcessDefinitionElementStatisticsQuery as b4, type ProcessDefinitionElementStatisticsQueryResult as b5, type ProcessInstanceElementStatisticsQueryResult as b6, type ProcessElementStatisticsResult as b7, type CancelProcessInstanceRequest as b8, type ElementInstanceSearchQuerySortRequest as b9, type IncidentResult as bA, type DecisionDefinitionSearchQueryResult as bB, type DecisionDefinitionResult as bC, type UsageMetricsResponse as bD, type UsageMetricsResponseItem as bE, type PermissionTypeEnum as bF, type ResourceTypeEnum as bG, type OwnerTypeEnum as bH, type AuthorizationRequest as bI, type AuthorizationCreateResult as bJ, type AuthorizationSearchQuerySortRequest as bK, type AuthorizationSearchQuery as bL, type AuthorizationFilter as bM, type AuthorizationResult as bN, type AuthorizationSearchResult as bO, type UserRequest as bP, type UserCreateResult as bQ, type UserUpdateResult as bR, type UserSearchQuerySortRequest as bS, type UserSearchQueryRequest as bT, type MappingRuleSearchQuerySortRequest as bU, type MappingRuleSearchQueryRequest as bV, type UserFilter as bW, type MappingRuleFilter as bX, type CamundaUserResult as bY, type UserResult as bZ, type UserSearchResult as b_, type ElementInstanceSearchQuery as ba, type ElementInstanceFilter as bb, type ElementInstanceSearchQueryResult as bc, type ElementInstanceResult as bd, type AdHocSubProcessActivateActivitiesInstruction as be, type AdHocSubProcessActivateActivityReference as bf, type DecisionDefinitionSearchQuerySortRequest as bg, type DecisionDefinitionSearchQuery as bh, type DecisionDefinitionFilter as bi, type IncidentSearchQuerySortRequest as bj, type IncidentSearchQuery as bk, type IncidentFilter as bl, type IncidentSearchQueryResult as bm, type CorrelatedMessageSubscriptionSearchQueryResult as bn, type CorrelatedMessageSubscriptionResult as bo, type CorrelatedMessageSubscriptionSearchQuery as bp, type CorrelatedMessageSubscriptionSearchQuerySortRequest as bq, type CorrelatedMessageSubscriptionFilter as br, type MessageSubscriptionSearchQueryResult as bs, type MessageSubscriptionResult as bt, type MessageSubscriptionSearchQuerySortRequest as bu, type MessageSubscriptionSearchQuery as bv, type MessageSubscriptionFilter as bw, type MessageSubscriptionStateFilterProperty as bx, type MessageSubscriptionStateEnum as by, type AdvancedMessageSubscriptionStateFilter as bz, createCamundaClient as c, type UserTaskAssignmentRequest as c$, type TenantClientResult as c0, type TenantClientSearchResult as c1, type TenantClientSearchQueryRequest as c2, type TenantClientSearchQuerySortRequest as c3, type TenantUserResult as c4, type TenantUserSearchResult as c5, type TenantUserSearchQueryRequest as c6, type TenantUserSearchQuerySortRequest as c7, type TenantGroupResult as c8, type TenantGroupSearchResult as c9, type GroupUpdateResult as cA, type GroupResult as cB, type GroupSearchQuerySortRequest as cC, type GroupSearchQueryRequest as cD, type GroupFilter as cE, type GroupSearchQueryResult as cF, type GroupUserResult as cG, type GroupUserSearchResult as cH, type GroupUserSearchQueryRequest as cI, type GroupUserSearchQuerySortRequest as cJ, type GroupClientResult as cK, type GroupClientSearchResult as cL, type GroupClientSearchQueryRequest as cM, type GroupClientSearchQuerySortRequest as cN, type MappingRuleCreateUpdateRequest as cO, type MappingRuleCreateRequest as cP, type MappingRuleUpdateRequest as cQ, type MappingRuleCreateUpdateResult as cR, type MappingRuleCreateResult as cS, type MappingRuleUpdateResult as cT, type MappingRuleSearchQueryResult as cU, type MappingRuleResult as cV, type TopologyResponse as cW, type LicenseResponse as cX, type BrokerInfo as cY, type Partition as cZ, type UserTaskCompletionRequest as c_, type TenantGroupSearchQueryRequest as ca, type TenantGroupSearchQuerySortRequest as cb, type RoleCreateRequest as cc, type RoleCreateResult as cd, type RoleUpdateRequest as ce, type RoleUpdateResult as cf, type RoleResult as cg, type RoleSearchQuerySortRequest as ch, type RoleSearchQueryRequest as ci, type RoleFilter as cj, type RoleSearchQueryResult as ck, type RoleUserResult as cl, type RoleUserSearchResult as cm, type RoleUserSearchQueryRequest as cn, type RoleUserSearchQuerySortRequest as co, type RoleClientResult as cp, type RoleClientSearchResult as cq, type RoleClientSearchQueryRequest as cr, type RoleClientSearchQuerySortRequest as cs, type RoleGroupResult as ct, type RoleGroupSearchResult as cu, type RoleGroupSearchQueryRequest as cv, type RoleGroupSearchQuerySortRequest as cw, type GroupCreateRequest as cx, type GroupCreateResult as cy, type GroupUpdateRequest as cz, JobWorker as d, type MessageCorrelationRequest as d$, type UserTaskUpdateRequest as d0, type Changeset as d1, type ClockPinRequest as d2, type JobActivationRequest as d3, type JobActivationResult as d4, type ActivatedJobResult as d5, type UserTaskProperties as d6, type JobFailRequest as d7, type JobErrorRequest as d8, type JobCompletionRequest as d9, type CursorForwardPagination as dA, type CursorBackwardPagination as dB, type SearchQueryResponse as dC, type SearchQueryPageResponse as dD, type DecisionRequirementsSearchQuerySortRequest as dE, type DecisionRequirementsSearchQuery as dF, type DecisionRequirementsFilter as dG, type DecisionRequirementsSearchQueryResult as dH, type DecisionRequirementsResult as dI, type DecisionEvaluationInstruction as dJ, type DecisionEvaluationById as dK, type DecisionEvaluationByKey as dL, type EvaluateDecisionResult as dM, type EvaluatedDecisionResult as dN, type MatchedDecisionRuleItem as dO, type EvaluatedDecisionInputItem as dP, type EvaluatedDecisionOutputItem as dQ, type DecisionInstanceSearchQuerySortRequest as dR, type DecisionInstanceSearchQuery as dS, type DecisionInstanceFilter as dT, type DecisionInstanceSearchQueryResult as dU, type DecisionInstanceResult as dV, type DecisionInstanceGetQueryResult as dW, type DecisionDefinitionTypeEnum as dX, type DecisionInstanceStateEnum as dY, type SortOrderEnum as dZ, type OperationReference as d_, type JobResult as da, type JobResultUserTask as db, type JobResultCorrections as dc, type JobResultAdHocSubProcess as dd, type JobResultActivateElement as de, type JobUpdateRequest as df, type JobChangeset as dg, type JobSearchQuery as dh, type JobSearchQuerySortRequest as di, type JobFilter as dj, type JobSearchQueryResult as dk, type JobSearchResult as dl, type JobStateEnum as dm, type JobKindEnum as dn, type JobListenerEventTypeEnum as dp, type JobStateFilterProperty as dq, type AdvancedJobStateFilter as dr, type JobKindFilterProperty as ds, type AdvancedJobKindFilter as dt, type JobListenerEventTypeFilterProperty as du, type AdvancedJobListenerEventTypeFilter as dv, type ProblemDetail as dw, type SearchQueryRequest as dx, type SearchQueryPageRequest as dy, type OffsetPagination as dz, type Job as e, type ProcessInstanceModificationMoveBatchOperationInstruction as e$, type MessageCorrelationResult as e0, type MessagePublicationRequest as e1, type MessagePublicationResult as e2, type DocumentReference as e3, type DocumentCreationFailureDetail as e4, type DocumentCreationBatchResponse as e5, DocumentId as e6, type DocumentMetadata as e7, type DocumentLinkRequest as e8, type DocumentLink as e9, type SignalBroadcastResult as eA, type FormResult as eB, type ResourceResult as eC, type BatchOperationTypeEnum as eD, type BatchOperationCreatedResult as eE, type BatchOperationSearchQuerySortRequest as eF, type BatchOperationSearchQuery as eG, type BatchOperationFilter as eH, type BatchOperationTypeFilterProperty as eI, type AdvancedBatchOperationTypeFilter as eJ, type BatchOperationStateFilterProperty as eK, type AdvancedBatchOperationStateFilter as eL, type BatchOperationStateEnum as eM, type BatchOperationItemSearchQuerySortRequest as eN, type BatchOperationItemSearchQuery as eO, type BatchOperationItemFilter as eP, type BatchOperationItemStateFilterProperty as eQ, type AdvancedBatchOperationItemStateFilter as eR, type BatchOperationItemStateEnum as eS, type BatchOperationSearchQueryResult as eT, type BatchOperationResponse as eU, type BatchOperationError as eV, type BatchOperationItemSearchQueryResult as eW, type BatchOperationItemResponse as eX, type ProcessInstanceCancellationBatchOperationRequest as eY, type ProcessInstanceIncidentResolutionBatchOperationRequest as eZ, type ProcessInstanceModificationBatchOperationRequest as e_, type DeploymentResult as ea, type DeploymentMetadataResult as eb, type DeploymentProcessResult as ec, type DeploymentDecisionResult as ed, type DeploymentDecisionRequirementsResult as ee, type DeploymentFormResult as ef, type DeploymentResourceResult as eg, type IncidentResolutionRequest as eh, type ProcessInstanceCreationInstruction as ei, type ProcessInstanceCreationInstructionById as ej, type ProcessInstanceCreationInstructionByKey as ek, type ProcessInstanceCreationStartInstruction as el, type ProcessInstanceCreationRuntimeInstruction as em, type ProcessInstanceCreationTerminateInstruction as en, type CreateProcessInstanceResult as eo, type ProcessInstanceMigrationBatchOperationRequest as ep, type ProcessInstanceMigrationBatchOperationPlan as eq, type ProcessInstanceMigrationInstruction as er, type MigrateProcessInstanceMappingInstruction as es, type ProcessInstanceModificationInstruction as et, type ProcessInstanceModificationActivateInstruction as eu, type ModifyProcessInstanceVariableInstruction as ev, type ProcessInstanceModificationTerminateInstruction as ew, type SetVariableRequest as ex, type DeleteResourceRequest as ey, type SignalBroadcastRequest as ez, JobActionReceipt as f, type DeleteTenantData as f$, Tag as f0, type TagSet as f1, TenantId as f2, Username as f3, type GetTopologyData as f4, type GetTopologyErrors as f5, type GetTopologyError as f6, type GetTopologyResponses as f7, type GetTopologyResponse as f8, type GetStatusData as f9, type FailJobResponses as fA, type FailJobResponse as fB, type ThrowJobErrorData as fC, type ThrowJobErrorErrors as fD, type ThrowJobErrorError as fE, type ThrowJobErrorResponses as fF, type ThrowJobErrorResponse as fG, type CompleteJobData as fH, type CompleteJobErrors as fI, type CompleteJobError as fJ, type CompleteJobResponses as fK, type CompleteJobResponse as fL, type UpdateJobData as fM, type UpdateJobErrors as fN, type UpdateJobError as fO, type UpdateJobResponses as fP, type UpdateJobResponse as fQ, type ResolveIncidentData as fR, type ResolveIncidentErrors as fS, type ResolveIncidentError as fT, type ResolveIncidentResponses as fU, type ResolveIncidentResponse as fV, type CreateTenantData as fW, type CreateTenantErrors as fX, type CreateTenantError as fY, type CreateTenantResponses as fZ, type CreateTenantResponse as f_, type GetStatusErrors as fa, type GetStatusResponses as fb, type GetStatusResponse as fc, type GetLicenseData as fd, type GetLicenseErrors as fe, type GetLicenseError as ff, type GetLicenseResponses as fg, type GetLicenseResponse as fh, type GetAuthenticationData as fi, type GetAuthenticationErrors as fj, type GetAuthenticationError as fk, type GetAuthenticationResponses as fl, type GetAuthenticationResponse as fm, type ActivateJobsData as fn, type ActivateJobsErrors as fo, type ActivateJobsError as fp, type ActivateJobsResponses as fq, type ActivateJobsResponse as fr, type SearchJobsData as fs, type SearchJobsErrors as ft, type SearchJobsError as fu, type SearchJobsResponses as fv, type SearchJobsResponse as fw, type FailJobData as fx, type FailJobErrors as fy, type FailJobError as fz, createCamundaFpClient as g, type UnassignGroupFromTenantResponse as g$, type DeleteTenantErrors as g0, type DeleteTenantError as g1, type DeleteTenantResponses as g2, type DeleteTenantResponse as g3, type GetTenantData as g4, type GetTenantErrors as g5, type GetTenantError as g6, type GetTenantResponses as g7, type GetTenantResponse as g8, type UpdateTenantData as g9, type UnassignClientFromTenantData as gA, type UnassignClientFromTenantErrors as gB, type UnassignClientFromTenantError as gC, type UnassignClientFromTenantResponses as gD, type UnassignClientFromTenantResponse as gE, type AssignClientToTenantData as gF, type AssignClientToTenantErrors as gG, type AssignClientToTenantError as gH, type AssignClientToTenantResponses as gI, type AssignClientToTenantResponse as gJ, type UnassignMappingRuleFromTenantData as gK, type UnassignMappingRuleFromTenantErrors as gL, type UnassignMappingRuleFromTenantError as gM, type UnassignMappingRuleFromTenantResponses as gN, type UnassignMappingRuleFromTenantResponse as gO, type AssignMappingRuleToTenantData as gP, type AssignMappingRuleToTenantErrors as gQ, type AssignMappingRuleToTenantError as gR, type AssignMappingRuleToTenantResponses as gS, type AssignMappingRuleToTenantResponse as gT, type SearchMappingRulesForTenantData as gU, type SearchMappingRulesForTenantResponses as gV, type SearchMappingRulesForTenantResponse as gW, type UnassignGroupFromTenantData as gX, type UnassignGroupFromTenantErrors as gY, type UnassignGroupFromTenantError as gZ, type UnassignGroupFromTenantResponses as g_, type UpdateTenantErrors as ga, type UpdateTenantError as gb, type UpdateTenantResponses as gc, type UpdateTenantResponse as gd, type UnassignUserFromTenantData as ge, type UnassignUserFromTenantErrors as gf, type UnassignUserFromTenantError as gg, type UnassignUserFromTenantResponses as gh, type UnassignUserFromTenantResponse as gi, type AssignUserToTenantData as gj, type AssignUserToTenantErrors as gk, type AssignUserToTenantError as gl, type AssignUserToTenantResponses as gm, type AssignUserToTenantResponse as gn, type SearchUsersForTenantData as go, type SearchUsersForTenantResponses as gp, type SearchUsersForTenantResponse as gq, type SearchClientsForTenantData as gr, type SearchClientsForTenantResponses as gs, type SearchClientsForTenantResponse as gt, type SearchGroupIdsForTenantData as gu, type SearchGroupIdsForTenantResponses as gv, type SearchGroupIdsForTenantResponse as gw, type SearchRolesForTenantData as gx, type SearchRolesForTenantResponses as gy, type SearchRolesForTenantResponse as gz, type CamundaFpClient as h, type SearchUserTaskEffectiveVariablesResponses as h$, type AssignGroupToTenantData as h0, type AssignGroupToTenantErrors as h1, type AssignGroupToTenantError as h2, type AssignGroupToTenantResponses as h3, type AssignGroupToTenantResponse as h4, type UnassignRoleFromTenantData as h5, type UnassignRoleFromTenantErrors as h6, type UnassignRoleFromTenantError as h7, type UnassignRoleFromTenantResponses as h8, type UnassignRoleFromTenantResponse as h9, type UpdateUserTaskErrors as hA, type UpdateUserTaskError as hB, type UpdateUserTaskResponses as hC, type UpdateUserTaskResponse as hD, type GetUserTaskFormData as hE, type GetUserTaskFormErrors as hF, type GetUserTaskFormError as hG, type GetUserTaskFormResponses as hH, type GetUserTaskFormResponse as hI, type UnassignUserTaskData as hJ, type UnassignUserTaskErrors as hK, type UnassignUserTaskError as hL, type UnassignUserTaskResponses as hM, type UnassignUserTaskResponse as hN, type SearchUserTasksData as hO, type SearchUserTasksErrors as hP, type SearchUserTasksError as hQ, type SearchUserTasksResponses as hR, type SearchUserTasksResponse as hS, type SearchUserTaskVariablesData as hT, type SearchUserTaskVariablesErrors as hU, type SearchUserTaskVariablesError as hV, type SearchUserTaskVariablesResponses as hW, type SearchUserTaskVariablesResponse as hX, type SearchUserTaskEffectiveVariablesData as hY, type SearchUserTaskEffectiveVariablesErrors as hZ, type SearchUserTaskEffectiveVariablesError as h_, type AssignRoleToTenantData as ha, type AssignRoleToTenantErrors as hb, type AssignRoleToTenantError as hc, type AssignRoleToTenantResponses as hd, type AssignRoleToTenantResponse as he, type SearchTenantsData as hf, type SearchTenantsErrors as hg, type SearchTenantsError as hh, type SearchTenantsResponses as hi, type SearchTenantsResponse as hj, type CompleteUserTaskData as hk, type CompleteUserTaskErrors as hl, type CompleteUserTaskError as hm, type CompleteUserTaskResponses as hn, type CompleteUserTaskResponse as ho, type AssignUserTaskData as hp, type AssignUserTaskErrors as hq, type AssignUserTaskError as hr, type AssignUserTaskResponses as hs, type AssignUserTaskResponse as ht, type GetUserTaskData as hu, type GetUserTaskErrors as hv, type GetUserTaskError as hw, type GetUserTaskResponses as hx, type GetUserTaskResponse as hy, type UpdateUserTaskData as hz, isLeft as i, type GetProcessInstanceStatisticsData as i$, type SearchUserTaskEffectiveVariablesResponse as i0, type SearchVariablesData as i1, type SearchVariablesErrors as i2, type SearchVariablesError as i3, type SearchVariablesResponses as i4, type SearchVariablesResponse as i5, type GetVariableData as i6, type GetVariableErrors as i7, type GetVariableError as i8, type GetVariableResponses as i9, type GetProcessDefinitionXmlResponses as iA, type GetProcessDefinitionXmlResponse as iB, type GetStartProcessFormData as iC, type GetStartProcessFormErrors as iD, type GetStartProcessFormError as iE, type GetStartProcessFormResponses as iF, type GetStartProcessFormResponse as iG, type GetProcessDefinitionStatisticsData as iH, type GetProcessDefinitionStatisticsErrors as iI, type GetProcessDefinitionStatisticsError as iJ, type GetProcessDefinitionStatisticsResponses as iK, type GetProcessDefinitionStatisticsResponse as iL, type CreateProcessInstanceData as iM, type CreateProcessInstanceErrors as iN, type CreateProcessInstanceError as iO, type CreateProcessInstanceResponses as iP, type CreateProcessInstanceResponse as iQ, type GetProcessInstanceData as iR, type GetProcessInstanceErrors as iS, type GetProcessInstanceError as iT, type GetProcessInstanceResponses as iU, type GetProcessInstanceResponse as iV, type GetProcessInstanceSequenceFlowsData as iW, type GetProcessInstanceSequenceFlowsErrors as iX, type GetProcessInstanceSequenceFlowsError as iY, type GetProcessInstanceSequenceFlowsResponses as iZ, type GetProcessInstanceSequenceFlowsResponse as i_, type GetVariableResponse as ia, type PinClockData as ib, type PinClockErrors as ic, type PinClockError as id, type PinClockResponses as ie, type PinClockResponse as ig, type ResetClockData as ih, type ResetClockErrors as ii, type ResetClockError as ij, type ResetClockResponses as ik, type ResetClockResponse as il, type SearchProcessDefinitionsData as im, type SearchProcessDefinitionsErrors as io, type SearchProcessDefinitionsError as ip, type SearchProcessDefinitionsResponses as iq, type SearchProcessDefinitionsResponse as ir, type GetProcessDefinitionData as is, type GetProcessDefinitionErrors as it, type GetProcessDefinitionError as iu, type GetProcessDefinitionResponses as iv, type GetProcessDefinitionResponse as iw, type GetProcessDefinitionXmlData as ix, type GetProcessDefinitionXmlErrors as iy, type GetProcessDefinitionXmlError as iz, isRight as j, type GetElementInstanceResponse as j$, type GetProcessInstanceStatisticsErrors as j0, type GetProcessInstanceStatisticsError as j1, type GetProcessInstanceStatisticsResponses as j2, type GetProcessInstanceStatisticsResponse as j3, type SearchProcessInstancesData as j4, type SearchProcessInstancesErrors as j5, type SearchProcessInstancesError as j6, type SearchProcessInstancesResponses as j7, type SearchProcessInstancesResponse as j8, type SearchProcessInstanceIncidentsData as j9, type ModifyProcessInstancesBatchOperationError as jA, type ModifyProcessInstancesBatchOperationResponses as jB, type ModifyProcessInstancesBatchOperationResponse as jC, type MigrateProcessInstanceData as jD, type MigrateProcessInstanceErrors as jE, type MigrateProcessInstanceError as jF, type MigrateProcessInstanceResponses as jG, type MigrateProcessInstanceResponse as jH, type ModifyProcessInstanceData as jI, type ModifyProcessInstanceErrors as jJ, type ModifyProcessInstanceError as jK, type ModifyProcessInstanceResponses as jL, type ModifyProcessInstanceResponse as jM, type GetProcessInstanceCallHierarchyData as jN, type GetProcessInstanceCallHierarchyErrors as jO, type GetProcessInstanceCallHierarchyError as jP, type GetProcessInstanceCallHierarchyResponses as jQ, type GetProcessInstanceCallHierarchyResponse as jR, type SearchElementInstancesData as jS, type SearchElementInstancesErrors as jT, type SearchElementInstancesError as jU, type SearchElementInstancesResponses as jV, type SearchElementInstancesResponse as jW, type GetElementInstanceData as jX, type GetElementInstanceErrors as jY, type GetElementInstanceError as jZ, type GetElementInstanceResponses as j_, type SearchProcessInstanceIncidentsErrors as ja, type SearchProcessInstanceIncidentsError as jb, type SearchProcessInstanceIncidentsResponses as jc, type SearchProcessInstanceIncidentsResponse as jd, type CancelProcessInstanceData as je, type CancelProcessInstanceErrors as jf, type CancelProcessInstanceError as jg, type CancelProcessInstanceResponses as jh, type CancelProcessInstanceResponse as ji, type CancelProcessInstancesBatchOperationData as jj, type CancelProcessInstancesBatchOperationErrors as jk, type CancelProcessInstancesBatchOperationError as jl, type CancelProcessInstancesBatchOperationResponses as jm, type CancelProcessInstancesBatchOperationResponse as jn, type ResolveIncidentsBatchOperationData as jo, type ResolveIncidentsBatchOperationErrors as jp, type ResolveIncidentsBatchOperationError as jq, type ResolveIncidentsBatchOperationResponses as jr, type ResolveIncidentsBatchOperationResponse as js, type MigrateProcessInstancesBatchOperationData as jt, type MigrateProcessInstancesBatchOperationErrors as ju, type MigrateProcessInstancesBatchOperationError as jv, type MigrateProcessInstancesBatchOperationResponses as jw, type MigrateProcessInstancesBatchOperationResponse as jx, type ModifyProcessInstancesBatchOperationData as jy, type ModifyProcessInstancesBatchOperationErrors as jz, CamundaValidationError as k, type UpdateAuthorizationResponses as k$, type SearchDecisionDefinitionsData as k0, type SearchDecisionDefinitionsErrors as k1, type SearchDecisionDefinitionsError as k2, type SearchDecisionDefinitionsResponses as k3, type SearchDecisionDefinitionsResponse as k4, type GetDecisionDefinitionData as k5, type GetDecisionDefinitionErrors as k6, type GetDecisionDefinitionError as k7, type GetDecisionDefinitionResponses as k8, type GetDecisionDefinitionResponse as k9, type GetDecisionInstanceErrors as kA, type GetDecisionInstanceError as kB, type GetDecisionInstanceResponses as kC, type GetDecisionInstanceResponse as kD, type EvaluateDecisionData as kE, type EvaluateDecisionErrors as kF, type EvaluateDecisionError as kG, type EvaluateDecisionResponses as kH, type EvaluateDecisionResponse as kI, type CreateAuthorizationData as kJ, type CreateAuthorizationErrors as kK, type CreateAuthorizationError as kL, type CreateAuthorizationResponses as kM, type CreateAuthorizationResponse as kN, type DeleteAuthorizationData as kO, type DeleteAuthorizationErrors as kP, type DeleteAuthorizationError as kQ, type DeleteAuthorizationResponses as kR, type DeleteAuthorizationResponse as kS, type GetAuthorizationData as kT, type GetAuthorizationErrors as kU, type GetAuthorizationError as kV, type GetAuthorizationResponses as kW, type GetAuthorizationResponse as kX, type UpdateAuthorizationData as kY, type UpdateAuthorizationErrors as kZ, type UpdateAuthorizationError as k_, type GetDecisionDefinitionXmlData as ka, type GetDecisionDefinitionXmlErrors as kb, type GetDecisionDefinitionXmlError as kc, type GetDecisionDefinitionXmlResponses as kd, type GetDecisionDefinitionXmlResponse as ke, type SearchDecisionRequirementsData as kf, type SearchDecisionRequirementsErrors as kg, type SearchDecisionRequirementsError as kh, type SearchDecisionRequirementsResponses as ki, type SearchDecisionRequirementsResponse as kj, type GetDecisionRequirementsData as kk, type GetDecisionRequirementsErrors as kl, type GetDecisionRequirementsError as km, type GetDecisionRequirementsResponses as kn, type GetDecisionRequirementsResponse as ko, type GetDecisionRequirementsXmlData as kp, type GetDecisionRequirementsXmlErrors as kq, type GetDecisionRequirementsXmlError as kr, type GetDecisionRequirementsXmlResponses as ks, type GetDecisionRequirementsXmlResponse as kt, type SearchDecisionInstancesData as ku, type SearchDecisionInstancesErrors as kv, type SearchDecisionInstancesError as kw, type SearchDecisionInstancesResponses as kx, type SearchDecisionInstancesResponse as ky, type GetDecisionInstanceData as kz, EventualConsistencyTimeoutError as l, type UnassignRoleFromGroupError as l$, type UpdateAuthorizationResponse as l0, type SearchAuthorizationsData as l1, type SearchAuthorizationsErrors as l2, type SearchAuthorizationsError as l3, type SearchAuthorizationsResponses as l4, type SearchAuthorizationsResponse as l5, type CreateRoleData as l6, type CreateRoleErrors as l7, type CreateRoleError as l8, type CreateRoleResponses as l9, type UnassignRoleFromUserData as lA, type UnassignRoleFromUserErrors as lB, type UnassignRoleFromUserError as lC, type UnassignRoleFromUserResponses as lD, type UnassignRoleFromUserResponse as lE, type AssignRoleToUserData as lF, type AssignRoleToUserErrors as lG, type AssignRoleToUserError as lH, type AssignRoleToUserResponses as lI, type AssignRoleToUserResponse as lJ, type UnassignRoleFromClientData as lK, type UnassignRoleFromClientErrors as lL, type UnassignRoleFromClientError as lM, type UnassignRoleFromClientResponses as lN, type UnassignRoleFromClientResponse as lO, type AssignRoleToClientData as lP, type AssignRoleToClientErrors as lQ, type AssignRoleToClientError as lR, type AssignRoleToClientResponses as lS, type AssignRoleToClientResponse as lT, type SearchRolesData as lU, type SearchRolesErrors as lV, type SearchRolesError as lW, type SearchRolesResponses as lX, type SearchRolesResponse as lY, type UnassignRoleFromGroupData as lZ, type UnassignRoleFromGroupErrors as l_, type CreateRoleResponse as la, type DeleteRoleData as lb, type DeleteRoleErrors as lc, type DeleteRoleError as ld, type DeleteRoleResponses as le, type DeleteRoleResponse as lf, type GetRoleData as lg, type GetRoleErrors as lh, type GetRoleError as li, type GetRoleResponses as lj, type GetRoleResponse as lk, type UpdateRoleData as ll, type UpdateRoleErrors as lm, type UpdateRoleError as ln, type UpdateRoleResponses as lo, type UpdateRoleResponse as lp, type SearchUsersForRoleData as lq, type SearchUsersForRoleErrors as lr, type SearchUsersForRoleError as ls, type SearchUsersForRoleResponses as lt, type SearchUsersForRoleResponse as lu, type SearchClientsForRoleData as lv, type SearchClientsForRoleErrors as lw, type SearchClientsForRoleError as lx, type SearchClientsForRoleResponses as ly, type SearchClientsForRoleResponse as lz, type EnrichedActivatedJob as m, type SearchClientsForGroupErrors as m$, type UnassignRoleFromGroupResponses as m0, type UnassignRoleFromGroupResponse as m1, type AssignRoleToGroupData as m2, type AssignRoleToGroupErrors as m3, type AssignRoleToGroupError as m4, type AssignRoleToGroupResponses as m5, type AssignRoleToGroupResponse as m6, type SearchGroupsForRoleData as m7, type SearchGroupsForRoleErrors as m8, type SearchGroupsForRoleError as m9, type DeleteGroupResponse as mA, type GetGroupData as mB, type GetGroupErrors as mC, type GetGroupError as mD, type GetGroupResponses as mE, type GetGroupResponse as mF, type UpdateGroupData as mG, type UpdateGroupErrors as mH, type UpdateGroupError as mI, type UpdateGroupResponses as mJ, type UpdateGroupResponse as mK, type SearchUsersForGroupData as mL, type SearchUsersForGroupErrors as mM, type SearchUsersForGroupError as mN, type SearchUsersForGroupResponses as mO, type SearchUsersForGroupResponse as mP, type SearchMappingRulesForGroupData as mQ, type SearchMappingRulesForGroupErrors as mR, type SearchMappingRulesForGroupError as mS, type SearchMappingRulesForGroupResponses as mT, type SearchMappingRulesForGroupResponse as mU, type SearchRolesForGroupData as mV, type SearchRolesForGroupErrors as mW, type SearchRolesForGroupError as mX, type SearchRolesForGroupResponses as mY, type SearchRolesForGroupResponse as mZ, type SearchClientsForGroupData as m_, type SearchGroupsForRoleResponses as ma, type SearchGroupsForRoleResponse as mb, type UnassignRoleFromMappingRuleData as mc, type UnassignRoleFromMappingRuleErrors as md, type UnassignRoleFromMappingRuleError as me, type UnassignRoleFromMappingRuleResponses as mf, type UnassignRoleFromMappingRuleResponse as mg, type AssignRoleToMappingRuleData as mh, type AssignRoleToMappingRuleErrors as mi, type AssignRoleToMappingRuleError as mj, type AssignRoleToMappingRuleResponses as mk, type AssignRoleToMappingRuleResponse as ml, type SearchMappingRulesForRoleData as mm, type SearchMappingRulesForRoleErrors as mn, type SearchMappingRulesForRoleError as mo, type SearchMappingRulesForRoleResponses as mp, type SearchMappingRulesForRoleResponse as mq, type CreateGroupData as mr, type CreateGroupErrors as ms, type CreateGroupError as mt, type CreateGroupResponses as mu, type CreateGroupResponse as mv, type DeleteGroupData as mw, type DeleteGroupErrors as mx, type DeleteGroupError as my, type DeleteGroupResponses as mz, type CamundaKey as n, type PublishMessageData as n$, type SearchClientsForGroupError as n0, type SearchClientsForGroupResponses as n1, type SearchClientsForGroupResponse as n2, type UnassignUserFromGroupData as n3, type UnassignUserFromGroupErrors as n4, type UnassignUserFromGroupError as n5, type UnassignUserFromGroupResponses as n6, type UnassignUserFromGroupResponse as n7, type AssignUserToGroupData as n8, type AssignUserToGroupErrors as n9, type SearchGroupsResponses as nA, type SearchGroupsResponse as nB, type CreateMappingRuleData as nC, type CreateMappingRuleErrors as nD, type CreateMappingRuleError as nE, type CreateMappingRuleResponses as nF, type CreateMappingRuleResponse as nG, type DeleteMappingRuleData as nH, type DeleteMappingRuleErrors as nI, type DeleteMappingRuleError as nJ, type DeleteMappingRuleResponses as nK, type DeleteMappingRuleResponse as nL, type GetMappingRuleData as nM, type GetMappingRuleErrors as nN, type GetMappingRuleError as nO, type GetMappingRuleResponses as nP, type GetMappingRuleResponse as nQ, type UpdateMappingRuleData as nR, type UpdateMappingRuleErrors as nS, type UpdateMappingRuleError as nT, type UpdateMappingRuleResponses as nU, type UpdateMappingRuleResponse as nV, type SearchMappingRuleData as nW, type SearchMappingRuleErrors as nX, type SearchMappingRuleError as nY, type SearchMappingRuleResponses as nZ, type SearchMappingRuleResponse as n_, type AssignUserToGroupError as na, type AssignUserToGroupResponses as nb, type AssignUserToGroupResponse as nc, type UnassignClientFromGroupData as nd, type UnassignClientFromGroupErrors as ne, type UnassignClientFromGroupError as nf, type UnassignClientFromGroupResponses as ng, type UnassignClientFromGroupResponse as nh, type AssignClientToGroupData as ni, type AssignClientToGroupErrors as nj, type AssignClientToGroupError as nk, type AssignClientToGroupResponses as nl, type AssignClientToGroupResponse as nm, type UnassignMappingRuleFromGroupData as nn, type UnassignMappingRuleFromGroupErrors as no, type UnassignMappingRuleFromGroupError as np, type UnassignMappingRuleFromGroupResponses as nq, type UnassignMappingRuleFromGroupResponse as nr, type AssignMappingRuleToGroupData as ns, type AssignMappingRuleToGroupErrors as nt, type AssignMappingRuleToGroupError as nu, type AssignMappingRuleToGroupResponses as nv, type AssignMappingRuleToGroupResponse as nw, type SearchGroupsData as nx, type SearchGroupsErrors as ny, type SearchGroupsError as nz, EndCursor as o, type GetUserResponse as o$, type PublishMessageErrors as o0, type PublishMessageError as o1, type PublishMessageResponses as o2, type PublishMessageResponse as o3, type CorrelateMessageData as o4, type CorrelateMessageErrors as o5, type CorrelateMessageError as o6, type CorrelateMessageResponses as o7, type CorrelateMessageResponse as o8, type SearchCorrelatedMessageSubscriptionsData as o9, type GetDocumentError as oA, type GetDocumentResponses as oB, type GetDocumentResponse as oC, type CreateDocumentLinkData as oD, type CreateDocumentLinkErrors as oE, type CreateDocumentLinkError as oF, type CreateDocumentLinkResponses as oG, type CreateDocumentLinkResponse as oH, type CreateUserData as oI, type CreateUserErrors as oJ, type CreateUserError as oK, type CreateUserResponses as oL, type CreateUserResponse as oM, type SearchUsersData as oN, type SearchUsersErrors as oO, type SearchUsersError as oP, type SearchUsersResponses as oQ, type SearchUsersResponse as oR, type DeleteUserData as oS, type DeleteUserErrors as oT, type DeleteUserError as oU, type DeleteUserResponses as oV, type DeleteUserResponse as oW, type GetUserData as oX, type GetUserErrors as oY, type GetUserError as oZ, type GetUserResponses as o_, type SearchCorrelatedMessageSubscriptionsErrors as oa, type SearchCorrelatedMessageSubscriptionsError as ob, type SearchCorrelatedMessageSubscriptionsResponses as oc, type SearchCorrelatedMessageSubscriptionsResponse as od, type SearchMessageSubscriptionsData as oe, type SearchMessageSubscriptionsErrors as of, type SearchMessageSubscriptionsError as og, type SearchMessageSubscriptionsResponses as oh, type SearchMessageSubscriptionsResponse as oi, type CreateDocumentData as oj, type CreateDocumentErrors as ok, type CreateDocumentError as ol, type CreateDocumentResponses as om, type CreateDocumentResponse as on, type CreateDocumentsData as oo, type CreateDocumentsErrors as op, type CreateDocumentsError as oq, type CreateDocumentsResponses as or, type CreateDocumentsResponse as os, type DeleteDocumentData as ot, type DeleteDocumentErrors as ou, type DeleteDocumentError as ov, type DeleteDocumentResponses as ow, type DeleteDocumentResponse as ox, type GetDocumentData as oy, type GetDocumentErrors as oz, ProcessDefinitionKey as p, type GetBatchOperationResponse as p$, type UpdateUserData as p0, type UpdateUserErrors as p1, type UpdateUserError as p2, type UpdateUserResponses as p3, type UpdateUserResponse as p4, type CreateAdminUserData as p5, type CreateAdminUserErrors as p6, type CreateAdminUserError as p7, type CreateAdminUserResponses as p8, type CreateAdminUserResponse as p9, type GetResourceError as pA, type GetResourceResponses as pB, type GetResourceResponse as pC, type GetResourceContentData as pD, type GetResourceContentErrors as pE, type GetResourceContentError as pF, type GetResourceContentResponses as pG, type GetResourceContentResponse as pH, type CreateElementInstanceVariablesData as pI, type CreateElementInstanceVariablesErrors as pJ, type CreateElementInstanceVariablesError as pK, type CreateElementInstanceVariablesResponses as pL, type CreateElementInstanceVariablesResponse as pM, type ActivateAdHocSubProcessActivitiesData as pN, type ActivateAdHocSubProcessActivitiesErrors as pO, type ActivateAdHocSubProcessActivitiesError as pP, type ActivateAdHocSubProcessActivitiesResponses as pQ, type ActivateAdHocSubProcessActivitiesResponse as pR, type BroadcastSignalData as pS, type BroadcastSignalErrors as pT, type BroadcastSignalError as pU, type BroadcastSignalResponses as pV, type BroadcastSignalResponse as pW, type GetBatchOperationData as pX, type GetBatchOperationErrors as pY, type GetBatchOperationError as pZ, type GetBatchOperationResponses as p_, type SearchIncidentsData as pa, type SearchIncidentsErrors as pb, type SearchIncidentsError as pc, type SearchIncidentsResponses as pd, type SearchIncidentsResponse as pe, type GetIncidentData as pf, type GetIncidentErrors as pg, type GetIncidentError as ph, type GetIncidentResponses as pi, type GetIncidentResponse as pj, type GetUsageMetricsData as pk, type GetUsageMetricsErrors as pl, type GetUsageMetricsError as pm, type GetUsageMetricsResponses as pn, type GetUsageMetricsResponse as po, type CreateDeploymentData as pp, type CreateDeploymentErrors as pq, type CreateDeploymentError as pr, type CreateDeploymentResponses as ps, type CreateDeploymentResponse as pt, type DeleteResourceData as pu, type DeleteResourceErrors as pv, type DeleteResourceError as pw, type DeleteResourceResponses as px, type GetResourceData as py, type GetResourceErrors as pz, ProcessDefinitionId as q, type SearchBatchOperationsData as q0, type SearchBatchOperationsErrors as q1, type SearchBatchOperationsError as q2, type SearchBatchOperationsResponses as q3, type SearchBatchOperationsResponse as q4, type CancelBatchOperationData as q5, type CancelBatchOperationErrors as q6, type CancelBatchOperationError as q7, type CancelBatchOperationResponses as q8, type CancelBatchOperationResponse as q9, type TaskEither as qA, type SuspendBatchOperationData as qa, type SuspendBatchOperationErrors as qb, type SuspendBatchOperationError as qc, type SuspendBatchOperationResponses as qd, type SuspendBatchOperationResponse as qe, type ResumeBatchOperationData as qf, type ResumeBatchOperationErrors as qg, type ResumeBatchOperationError as qh, type ResumeBatchOperationResponses as qi, type ResumeBatchOperationResponse as qj, type SearchBatchOperationItemsData as qk, type SearchBatchOperationItemsErrors as ql, type SearchBatchOperationItemsError as qm, type SearchBatchOperationItemsResponses as qn, type SearchBatchOperationItemsResponse as qo, type ClientOptions as qp, assertConstraint as qq, type Fpify as qr, type DomainError as qs, type Left as qt, type Right as qu, retryTE as qv, withTimeoutTE as qw, eventuallyTE as qx, foldDomainError as qy, classifyDomainError as qz, ElementInstanceKey as r, ElementId as s, FormId as t, ScopeKey as u, JobKey as v, DecisionDefinitionKey as w, DecisionDefinitionId as x, DecisionEvaluationInstanceKey as y, DecisionEvaluationKey as z };
|