@camunda/camunda-api-zod-schemas 0.0.75 → 0.0.77
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/8.10/agent-instance.d.ts +133 -10
- package/dist/8.10/agent-instance.js +28 -7
- package/dist/8.10/audit-log.d.ts +42 -0
- package/dist/8.10/audit-log.js +8 -2
- package/dist/8.10/index.d.ts +3 -3
- package/dist/8.10/user-task-audit-log.d.ts +4 -0
- package/dist/8.10.js +4 -4
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { Endpoint } from './common';
|
|
3
3
|
declare const agentInstanceStatusSchema: z.ZodEnum<{
|
|
4
|
+
UNKNOWN: "UNKNOWN";
|
|
4
5
|
COMPLETED: "COMPLETED";
|
|
5
6
|
IDLE: "IDLE";
|
|
6
7
|
INITIALIZING: "INITIALIZING";
|
|
@@ -28,9 +29,16 @@ declare const agentInstanceLimitsSchema: z.ZodObject<{
|
|
|
28
29
|
maxTokens: z.ZodNumber;
|
|
29
30
|
}, z.core.$strip>;
|
|
30
31
|
type AgentInstanceLimits = z.infer<typeof agentInstanceLimitsSchema>;
|
|
32
|
+
declare const agentToolSchema: z.ZodObject<{
|
|
33
|
+
name: z.ZodString;
|
|
34
|
+
description: z.ZodNullable<z.ZodString>;
|
|
35
|
+
elementId: z.ZodNullable<z.ZodString>;
|
|
36
|
+
}, z.core.$strip>;
|
|
37
|
+
type AgentTool = z.infer<typeof agentToolSchema>;
|
|
31
38
|
declare const agentInstanceSchema: z.ZodObject<{
|
|
32
39
|
agentInstanceKey: z.ZodString;
|
|
33
40
|
status: z.ZodEnum<{
|
|
41
|
+
UNKNOWN: "UNKNOWN";
|
|
34
42
|
COMPLETED: "COMPLETED";
|
|
35
43
|
IDLE: "IDLE";
|
|
36
44
|
INITIALIZING: "INITIALIZING";
|
|
@@ -54,9 +62,18 @@ declare const agentInstanceSchema: z.ZodObject<{
|
|
|
54
62
|
maxToolCalls: z.ZodNumber;
|
|
55
63
|
maxTokens: z.ZodNumber;
|
|
56
64
|
}, z.core.$strip>;
|
|
65
|
+
tools: z.ZodArray<z.ZodObject<{
|
|
66
|
+
name: z.ZodString;
|
|
67
|
+
description: z.ZodNullable<z.ZodString>;
|
|
68
|
+
elementId: z.ZodNullable<z.ZodString>;
|
|
69
|
+
}, z.core.$strip>>;
|
|
57
70
|
elementId: z.ZodString;
|
|
58
71
|
processInstanceKey: z.ZodString;
|
|
72
|
+
rootProcessInstanceKey: z.ZodString;
|
|
59
73
|
processDefinitionKey: z.ZodString;
|
|
74
|
+
processDefinitionId: z.ZodString;
|
|
75
|
+
processDefinitionVersion: z.ZodNumber;
|
|
76
|
+
processDefinitionVersionTag: z.ZodNullable<z.ZodString>;
|
|
60
77
|
tenantId: z.ZodString;
|
|
61
78
|
creationDate: z.ZodString;
|
|
62
79
|
lastUpdatedDate: z.ZodString;
|
|
@@ -73,6 +90,7 @@ declare const agentInstanceFilterSchema: z.ZodObject<{
|
|
|
73
90
|
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
74
91
|
}, z.core.$strip>, z.ZodString]>>;
|
|
75
92
|
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
93
|
+
UNKNOWN: "UNKNOWN";
|
|
76
94
|
COMPLETED: "COMPLETED";
|
|
77
95
|
IDLE: "IDLE";
|
|
78
96
|
INITIALIZING: "INITIALIZING";
|
|
@@ -81,6 +99,7 @@ declare const agentInstanceFilterSchema: z.ZodObject<{
|
|
|
81
99
|
TOOL_DISCOVERY: "TOOL_DISCOVERY";
|
|
82
100
|
}>, z.ZodObject<{
|
|
83
101
|
$eq: z.ZodOptional<z.ZodEnum<{
|
|
102
|
+
UNKNOWN: "UNKNOWN";
|
|
84
103
|
COMPLETED: "COMPLETED";
|
|
85
104
|
IDLE: "IDLE";
|
|
86
105
|
INITIALIZING: "INITIALIZING";
|
|
@@ -89,6 +108,7 @@ declare const agentInstanceFilterSchema: z.ZodObject<{
|
|
|
89
108
|
TOOL_DISCOVERY: "TOOL_DISCOVERY";
|
|
90
109
|
}>>;
|
|
91
110
|
$neq: z.ZodOptional<z.ZodEnum<{
|
|
111
|
+
UNKNOWN: "UNKNOWN";
|
|
92
112
|
COMPLETED: "COMPLETED";
|
|
93
113
|
IDLE: "IDLE";
|
|
94
114
|
INITIALIZING: "INITIALIZING";
|
|
@@ -98,6 +118,7 @@ declare const agentInstanceFilterSchema: z.ZodObject<{
|
|
|
98
118
|
}>>;
|
|
99
119
|
$exists: z.ZodOptional<z.ZodBoolean>;
|
|
100
120
|
$in: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
121
|
+
UNKNOWN: "UNKNOWN";
|
|
101
122
|
COMPLETED: "COMPLETED";
|
|
102
123
|
IDLE: "IDLE";
|
|
103
124
|
INITIALIZING: "INITIALIZING";
|
|
@@ -106,6 +127,7 @@ declare const agentInstanceFilterSchema: z.ZodObject<{
|
|
|
106
127
|
TOOL_DISCOVERY: "TOOL_DISCOVERY";
|
|
107
128
|
}>>>;
|
|
108
129
|
$notIn: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
130
|
+
UNKNOWN: "UNKNOWN";
|
|
109
131
|
COMPLETED: "COMPLETED";
|
|
110
132
|
IDLE: "IDLE";
|
|
111
133
|
INITIALIZING: "INITIALIZING";
|
|
@@ -129,6 +151,13 @@ declare const agentInstanceFilterSchema: z.ZodObject<{
|
|
|
129
151
|
$in: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
130
152
|
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
131
153
|
}, z.core.$strip>, z.ZodString]>>;
|
|
154
|
+
rootProcessInstanceKey: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
155
|
+
$eq: z.ZodOptional<z.ZodString>;
|
|
156
|
+
$neq: z.ZodOptional<z.ZodString>;
|
|
157
|
+
$exists: z.ZodOptional<z.ZodBoolean>;
|
|
158
|
+
$in: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
159
|
+
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
160
|
+
}, z.core.$strip>, z.ZodString]>>;
|
|
132
161
|
processDefinitionKey: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
133
162
|
$eq: z.ZodOptional<z.ZodString>;
|
|
134
163
|
$neq: z.ZodOptional<z.ZodString>;
|
|
@@ -136,6 +165,30 @@ declare const agentInstanceFilterSchema: z.ZodObject<{
|
|
|
136
165
|
$in: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
137
166
|
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
138
167
|
}, z.core.$strip>, z.ZodString]>>;
|
|
168
|
+
processDefinitionId: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
169
|
+
$eq: z.ZodOptional<z.ZodString>;
|
|
170
|
+
$neq: z.ZodOptional<z.ZodString>;
|
|
171
|
+
$exists: z.ZodOptional<z.ZodBoolean>;
|
|
172
|
+
$in: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
173
|
+
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
174
|
+
}, z.core.$strip>, z.ZodString]>>;
|
|
175
|
+
processDefinitionVersion: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
176
|
+
$eq: z.ZodOptional<z.ZodNumber>;
|
|
177
|
+
$neq: z.ZodOptional<z.ZodNumber>;
|
|
178
|
+
$exists: z.ZodOptional<z.ZodBoolean>;
|
|
179
|
+
$gt: z.ZodOptional<z.ZodNumber>;
|
|
180
|
+
$gte: z.ZodOptional<z.ZodNumber>;
|
|
181
|
+
$lt: z.ZodOptional<z.ZodNumber>;
|
|
182
|
+
$lte: z.ZodOptional<z.ZodNumber>;
|
|
183
|
+
$in: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
184
|
+
}, z.core.$strip>]>>;
|
|
185
|
+
processDefinitionVersionTag: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
186
|
+
$eq: z.ZodOptional<z.ZodString>;
|
|
187
|
+
$neq: z.ZodOptional<z.ZodString>;
|
|
188
|
+
$exists: z.ZodOptional<z.ZodBoolean>;
|
|
189
|
+
$in: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
190
|
+
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
191
|
+
}, z.core.$strip>, z.ZodString]>>;
|
|
139
192
|
tenantId: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
140
193
|
$eq: z.ZodOptional<z.ZodString>;
|
|
141
194
|
$neq: z.ZodOptional<z.ZodString>;
|
|
@@ -186,9 +239,15 @@ declare const queryAgentInstancesRequestBodySchema: z.ZodObject<{
|
|
|
186
239
|
sort: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
187
240
|
field: z.ZodEnum<{
|
|
188
241
|
status: "status";
|
|
242
|
+
tenantId: "tenantId";
|
|
243
|
+
processDefinitionKey: "processDefinitionKey";
|
|
244
|
+
elementId: "elementId";
|
|
245
|
+
processInstanceKey: "processInstanceKey";
|
|
189
246
|
lastUpdatedDate: "lastUpdatedDate";
|
|
190
247
|
creationDate: "creationDate";
|
|
191
248
|
completionDate: "completionDate";
|
|
249
|
+
rootProcessInstanceKey: "rootProcessInstanceKey";
|
|
250
|
+
agentInstanceKey: "agentInstanceKey";
|
|
192
251
|
}>;
|
|
193
252
|
order: z.ZodOptional<z.ZodEnum<{
|
|
194
253
|
asc: "asc";
|
|
@@ -210,6 +269,7 @@ declare const queryAgentInstancesRequestBodySchema: z.ZodObject<{
|
|
|
210
269
|
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
211
270
|
}, z.core.$strip>, z.ZodString]>>;
|
|
212
271
|
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
272
|
+
UNKNOWN: "UNKNOWN";
|
|
213
273
|
COMPLETED: "COMPLETED";
|
|
214
274
|
IDLE: "IDLE";
|
|
215
275
|
INITIALIZING: "INITIALIZING";
|
|
@@ -218,6 +278,7 @@ declare const queryAgentInstancesRequestBodySchema: z.ZodObject<{
|
|
|
218
278
|
TOOL_DISCOVERY: "TOOL_DISCOVERY";
|
|
219
279
|
}>, z.ZodObject<{
|
|
220
280
|
$eq: z.ZodOptional<z.ZodEnum<{
|
|
281
|
+
UNKNOWN: "UNKNOWN";
|
|
221
282
|
COMPLETED: "COMPLETED";
|
|
222
283
|
IDLE: "IDLE";
|
|
223
284
|
INITIALIZING: "INITIALIZING";
|
|
@@ -226,6 +287,7 @@ declare const queryAgentInstancesRequestBodySchema: z.ZodObject<{
|
|
|
226
287
|
TOOL_DISCOVERY: "TOOL_DISCOVERY";
|
|
227
288
|
}>>;
|
|
228
289
|
$neq: z.ZodOptional<z.ZodEnum<{
|
|
290
|
+
UNKNOWN: "UNKNOWN";
|
|
229
291
|
COMPLETED: "COMPLETED";
|
|
230
292
|
IDLE: "IDLE";
|
|
231
293
|
INITIALIZING: "INITIALIZING";
|
|
@@ -235,6 +297,7 @@ declare const queryAgentInstancesRequestBodySchema: z.ZodObject<{
|
|
|
235
297
|
}>>;
|
|
236
298
|
$exists: z.ZodOptional<z.ZodBoolean>;
|
|
237
299
|
$in: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
300
|
+
UNKNOWN: "UNKNOWN";
|
|
238
301
|
COMPLETED: "COMPLETED";
|
|
239
302
|
IDLE: "IDLE";
|
|
240
303
|
INITIALIZING: "INITIALIZING";
|
|
@@ -243,6 +306,7 @@ declare const queryAgentInstancesRequestBodySchema: z.ZodObject<{
|
|
|
243
306
|
TOOL_DISCOVERY: "TOOL_DISCOVERY";
|
|
244
307
|
}>>>;
|
|
245
308
|
$notIn: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
309
|
+
UNKNOWN: "UNKNOWN";
|
|
246
310
|
COMPLETED: "COMPLETED";
|
|
247
311
|
IDLE: "IDLE";
|
|
248
312
|
INITIALIZING: "INITIALIZING";
|
|
@@ -266,6 +330,13 @@ declare const queryAgentInstancesRequestBodySchema: z.ZodObject<{
|
|
|
266
330
|
$in: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
267
331
|
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
268
332
|
}, z.core.$strip>, z.ZodString]>>;
|
|
333
|
+
rootProcessInstanceKey: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
334
|
+
$eq: z.ZodOptional<z.ZodString>;
|
|
335
|
+
$neq: z.ZodOptional<z.ZodString>;
|
|
336
|
+
$exists: z.ZodOptional<z.ZodBoolean>;
|
|
337
|
+
$in: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
338
|
+
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
339
|
+
}, z.core.$strip>, z.ZodString]>>;
|
|
269
340
|
processDefinitionKey: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
270
341
|
$eq: z.ZodOptional<z.ZodString>;
|
|
271
342
|
$neq: z.ZodOptional<z.ZodString>;
|
|
@@ -273,6 +344,30 @@ declare const queryAgentInstancesRequestBodySchema: z.ZodObject<{
|
|
|
273
344
|
$in: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
274
345
|
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
275
346
|
}, z.core.$strip>, z.ZodString]>>;
|
|
347
|
+
processDefinitionId: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
348
|
+
$eq: z.ZodOptional<z.ZodString>;
|
|
349
|
+
$neq: z.ZodOptional<z.ZodString>;
|
|
350
|
+
$exists: z.ZodOptional<z.ZodBoolean>;
|
|
351
|
+
$in: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
352
|
+
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
353
|
+
}, z.core.$strip>, z.ZodString]>>;
|
|
354
|
+
processDefinitionVersion: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
355
|
+
$eq: z.ZodOptional<z.ZodNumber>;
|
|
356
|
+
$neq: z.ZodOptional<z.ZodNumber>;
|
|
357
|
+
$exists: z.ZodOptional<z.ZodBoolean>;
|
|
358
|
+
$gt: z.ZodOptional<z.ZodNumber>;
|
|
359
|
+
$gte: z.ZodOptional<z.ZodNumber>;
|
|
360
|
+
$lt: z.ZodOptional<z.ZodNumber>;
|
|
361
|
+
$lte: z.ZodOptional<z.ZodNumber>;
|
|
362
|
+
$in: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
363
|
+
}, z.core.$strip>]>>;
|
|
364
|
+
processDefinitionVersionTag: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
365
|
+
$eq: z.ZodOptional<z.ZodString>;
|
|
366
|
+
$neq: z.ZodOptional<z.ZodString>;
|
|
367
|
+
$exists: z.ZodOptional<z.ZodBoolean>;
|
|
368
|
+
$in: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
369
|
+
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
370
|
+
}, z.core.$strip>, z.ZodString]>>;
|
|
276
371
|
tenantId: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
277
372
|
$eq: z.ZodOptional<z.ZodString>;
|
|
278
373
|
$neq: z.ZodOptional<z.ZodString>;
|
|
@@ -322,7 +417,7 @@ declare const queryAgentInstancesRequestBodySchema: z.ZodObject<{
|
|
|
322
417
|
type QueryAgentInstancesRequestBody = z.infer<typeof queryAgentInstancesRequestBodySchema>;
|
|
323
418
|
declare const queryAgentInstancesResponseBodySchema: z.ZodType<import('./common').QueryResponseBody<{
|
|
324
419
|
agentInstanceKey: string;
|
|
325
|
-
status: "COMPLETED" | "IDLE" | "INITIALIZING" | "THINKING" | "TOOL_CALLING" | "TOOL_DISCOVERY";
|
|
420
|
+
status: "UNKNOWN" | "COMPLETED" | "IDLE" | "INITIALIZING" | "THINKING" | "TOOL_CALLING" | "TOOL_DISCOVERY";
|
|
326
421
|
definition: {
|
|
327
422
|
model: string;
|
|
328
423
|
provider: string;
|
|
@@ -339,9 +434,18 @@ declare const queryAgentInstancesResponseBodySchema: z.ZodType<import('./common'
|
|
|
339
434
|
maxToolCalls: number;
|
|
340
435
|
maxTokens: number;
|
|
341
436
|
};
|
|
437
|
+
tools: {
|
|
438
|
+
name: string;
|
|
439
|
+
description: string | null;
|
|
440
|
+
elementId: string | null;
|
|
441
|
+
}[];
|
|
342
442
|
elementId: string;
|
|
343
443
|
processInstanceKey: string;
|
|
444
|
+
rootProcessInstanceKey: string;
|
|
344
445
|
processDefinitionKey: string;
|
|
446
|
+
processDefinitionId: string;
|
|
447
|
+
processDefinitionVersion: number;
|
|
448
|
+
processDefinitionVersionTag: string | null;
|
|
345
449
|
tenantId: string;
|
|
346
450
|
creationDate: string;
|
|
347
451
|
lastUpdatedDate: string;
|
|
@@ -349,7 +453,7 @@ declare const queryAgentInstancesResponseBodySchema: z.ZodType<import('./common'
|
|
|
349
453
|
elementInstanceKeys: string[];
|
|
350
454
|
}>, unknown, z.core.$ZodTypeInternals<import('./common').QueryResponseBody<{
|
|
351
455
|
agentInstanceKey: string;
|
|
352
|
-
status: "COMPLETED" | "IDLE" | "INITIALIZING" | "THINKING" | "TOOL_CALLING" | "TOOL_DISCOVERY";
|
|
456
|
+
status: "UNKNOWN" | "COMPLETED" | "IDLE" | "INITIALIZING" | "THINKING" | "TOOL_CALLING" | "TOOL_DISCOVERY";
|
|
353
457
|
definition: {
|
|
354
458
|
model: string;
|
|
355
459
|
provider: string;
|
|
@@ -366,9 +470,18 @@ declare const queryAgentInstancesResponseBodySchema: z.ZodType<import('./common'
|
|
|
366
470
|
maxToolCalls: number;
|
|
367
471
|
maxTokens: number;
|
|
368
472
|
};
|
|
473
|
+
tools: {
|
|
474
|
+
name: string;
|
|
475
|
+
description: string | null;
|
|
476
|
+
elementId: string | null;
|
|
477
|
+
}[];
|
|
369
478
|
elementId: string;
|
|
370
479
|
processInstanceKey: string;
|
|
480
|
+
rootProcessInstanceKey: string;
|
|
371
481
|
processDefinitionKey: string;
|
|
482
|
+
processDefinitionId: string;
|
|
483
|
+
processDefinitionVersion: number;
|
|
484
|
+
processDefinitionVersionTag: string | null;
|
|
372
485
|
tenantId: string;
|
|
373
486
|
creationDate: string;
|
|
374
487
|
lastUpdatedDate: string;
|
|
@@ -379,6 +492,7 @@ type QueryAgentInstancesResponseBody = z.infer<typeof queryAgentInstancesRespons
|
|
|
379
492
|
declare const getAgentInstanceResponseBodySchema: z.ZodObject<{
|
|
380
493
|
agentInstanceKey: z.ZodString;
|
|
381
494
|
status: z.ZodEnum<{
|
|
495
|
+
UNKNOWN: "UNKNOWN";
|
|
382
496
|
COMPLETED: "COMPLETED";
|
|
383
497
|
IDLE: "IDLE";
|
|
384
498
|
INITIALIZING: "INITIALIZING";
|
|
@@ -402,9 +516,18 @@ declare const getAgentInstanceResponseBodySchema: z.ZodObject<{
|
|
|
402
516
|
maxToolCalls: z.ZodNumber;
|
|
403
517
|
maxTokens: z.ZodNumber;
|
|
404
518
|
}, z.core.$strip>;
|
|
519
|
+
tools: z.ZodArray<z.ZodObject<{
|
|
520
|
+
name: z.ZodString;
|
|
521
|
+
description: z.ZodNullable<z.ZodString>;
|
|
522
|
+
elementId: z.ZodNullable<z.ZodString>;
|
|
523
|
+
}, z.core.$strip>>;
|
|
405
524
|
elementId: z.ZodString;
|
|
406
525
|
processInstanceKey: z.ZodString;
|
|
526
|
+
rootProcessInstanceKey: z.ZodString;
|
|
407
527
|
processDefinitionKey: z.ZodString;
|
|
528
|
+
processDefinitionId: z.ZodString;
|
|
529
|
+
processDefinitionVersion: z.ZodNumber;
|
|
530
|
+
processDefinitionVersionTag: z.ZodNullable<z.ZodString>;
|
|
408
531
|
tenantId: z.ZodString;
|
|
409
532
|
creationDate: z.ZodString;
|
|
410
533
|
lastUpdatedDate: z.ZodString;
|
|
@@ -698,7 +821,7 @@ declare const createAgentInstanceHistoryItemResponseBodySchema: z.ZodObject<{
|
|
|
698
821
|
historyItemKey: z.ZodString;
|
|
699
822
|
}, z.core.$strip>;
|
|
700
823
|
type CreateAgentInstanceHistoryItemResponseBody = z.infer<typeof createAgentInstanceHistoryItemResponseBodySchema>;
|
|
701
|
-
declare const
|
|
824
|
+
declare const queryAgentInstanceHistoryRequestBodySchema: z.ZodObject<{
|
|
702
825
|
sort: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
703
826
|
field: z.ZodEnum<{
|
|
704
827
|
historyItemKey: "historyItemKey";
|
|
@@ -816,8 +939,8 @@ declare const searchAgentInstanceHistoryRequestBodySchema: z.ZodObject<{
|
|
|
816
939
|
}, z.core.$strip>]>>;
|
|
817
940
|
}, z.core.$strip>>;
|
|
818
941
|
}, z.core.$strip>;
|
|
819
|
-
type
|
|
820
|
-
declare const
|
|
942
|
+
type QueryAgentInstanceHistoryRequestBody = z.infer<typeof queryAgentInstanceHistoryRequestBodySchema>;
|
|
943
|
+
declare const queryAgentInstanceHistoryResponseBodySchema: z.ZodType<import('./common').QueryResponseBody<{
|
|
821
944
|
historyItemKey: string;
|
|
822
945
|
agentInstanceKey: string;
|
|
823
946
|
elementInstanceKey: string;
|
|
@@ -908,16 +1031,16 @@ declare const searchAgentInstanceHistoryResponseBodySchema: z.ZodType<import('./
|
|
|
908
1031
|
commitStatus: "PENDING" | "COMMITTED" | "DISCARDED";
|
|
909
1032
|
producedAt: string;
|
|
910
1033
|
}>, unknown>>;
|
|
911
|
-
type
|
|
1034
|
+
type QueryAgentInstanceHistoryResponseBody = z.infer<typeof queryAgentInstanceHistoryResponseBodySchema>;
|
|
912
1035
|
declare const getAgentInstance: Endpoint<{
|
|
913
1036
|
agentInstanceKey: string;
|
|
914
1037
|
}>;
|
|
915
|
-
declare const
|
|
1038
|
+
declare const queryAgentInstances: Endpoint;
|
|
916
1039
|
declare const createAgentInstanceHistoryItem: Endpoint<{
|
|
917
1040
|
agentInstanceKey: string;
|
|
918
1041
|
}>;
|
|
919
|
-
declare const
|
|
1042
|
+
declare const queryAgentInstanceHistory: Endpoint<{
|
|
920
1043
|
agentInstanceKey: string;
|
|
921
1044
|
}>;
|
|
922
|
-
export { agentInstanceStatusSchema, agentInstanceDefinitionSchema, agentInstanceMetricsSchema, agentInstanceLimitsSchema, agentInstanceSchema, agentInstanceFilterSchema, queryAgentInstancesRequestBodySchema, queryAgentInstancesResponseBodySchema, getAgentInstanceResponseBodySchema, agentInstanceHistoryRoleSchema, agentInstanceHistoryCommitStatusSchema, agentInstanceTextContentSchema, agentInstanceDocumentContentSchema, agentInstanceObjectContentSchema, agentInstanceMessageContentSchema, agentInstanceToolCallSchema, agentInstanceHistoryItemMetricsSchema, agentInstanceHistoryItemSchema, agentInstanceHistoryFilterSchema, createAgentInstanceHistoryItemRequestBodySchema, createAgentInstanceHistoryItemResponseBodySchema,
|
|
923
|
-
export type { AgentInstanceStatus, AgentInstanceDefinition, AgentInstanceMetrics, AgentInstanceLimits, AgentInstance, AgentInstanceFilter, QueryAgentInstancesRequestBody, QueryAgentInstancesResponseBody, GetAgentInstanceResponseBody, AgentInstanceHistoryRole, AgentInstanceHistoryCommitStatus, AgentInstanceTextContent, AgentInstanceDocumentContent, AgentInstanceObjectContent, AgentInstanceMessageContent, AgentInstanceToolCall, AgentInstanceHistoryItemMetrics, AgentInstanceHistoryItem, AgentInstanceHistoryFilter, CreateAgentInstanceHistoryItemRequestBody, CreateAgentInstanceHistoryItemResponseBody,
|
|
1045
|
+
export { agentInstanceStatusSchema, agentInstanceDefinitionSchema, agentInstanceMetricsSchema, agentInstanceLimitsSchema, agentToolSchema, agentInstanceSchema, agentInstanceFilterSchema, queryAgentInstancesRequestBodySchema, queryAgentInstancesResponseBodySchema, getAgentInstanceResponseBodySchema, agentInstanceHistoryRoleSchema, agentInstanceHistoryCommitStatusSchema, agentInstanceTextContentSchema, agentInstanceDocumentContentSchema, agentInstanceObjectContentSchema, agentInstanceMessageContentSchema, agentInstanceToolCallSchema, agentInstanceHistoryItemMetricsSchema, agentInstanceHistoryItemSchema, agentInstanceHistoryFilterSchema, createAgentInstanceHistoryItemRequestBodySchema, createAgentInstanceHistoryItemResponseBodySchema, queryAgentInstanceHistoryRequestBodySchema, queryAgentInstanceHistoryResponseBodySchema, getAgentInstance, queryAgentInstances, createAgentInstanceHistoryItem, queryAgentInstanceHistory, };
|
|
1046
|
+
export type { AgentInstanceStatus, AgentInstanceDefinition, AgentInstanceMetrics, AgentInstanceLimits, AgentTool, AgentInstance, AgentInstanceFilter, QueryAgentInstancesRequestBody, QueryAgentInstancesResponseBody, GetAgentInstanceResponseBody, AgentInstanceHistoryRole, AgentInstanceHistoryCommitStatus, AgentInstanceTextContent, AgentInstanceDocumentContent, AgentInstanceObjectContent, AgentInstanceMessageContent, AgentInstanceToolCall, AgentInstanceHistoryItemMetrics, AgentInstanceHistoryItem, AgentInstanceHistoryFilter, CreateAgentInstanceHistoryItemRequestBody, CreateAgentInstanceHistoryItemResponseBody, QueryAgentInstanceHistoryRequestBody, QueryAgentInstanceHistoryResponseBody, };
|
|
@@ -3,6 +3,7 @@ import { documentReferenceSchema } from "./document.js";
|
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
//#region lib/8.10/agent-instance.ts
|
|
5
5
|
var agentInstanceStatusSchema = z.enum([
|
|
6
|
+
"UNKNOWN",
|
|
6
7
|
"COMPLETED",
|
|
7
8
|
"IDLE",
|
|
8
9
|
"INITIALIZING",
|
|
@@ -26,15 +27,25 @@ var agentInstanceLimitsSchema = z.object({
|
|
|
26
27
|
maxToolCalls: z.number(),
|
|
27
28
|
maxTokens: z.number()
|
|
28
29
|
});
|
|
30
|
+
var agentToolSchema = z.object({
|
|
31
|
+
name: z.string(),
|
|
32
|
+
description: z.string().nullable(),
|
|
33
|
+
elementId: z.string().nullable()
|
|
34
|
+
});
|
|
29
35
|
var agentInstanceSchema = z.object({
|
|
30
36
|
agentInstanceKey: z.string(),
|
|
31
37
|
status: agentInstanceStatusSchema,
|
|
32
38
|
definition: agentInstanceDefinitionSchema,
|
|
33
39
|
metrics: agentInstanceMetricsSchema,
|
|
34
40
|
limits: agentInstanceLimitsSchema,
|
|
41
|
+
tools: z.array(agentToolSchema),
|
|
35
42
|
elementId: z.string(),
|
|
36
43
|
processInstanceKey: z.string(),
|
|
44
|
+
rootProcessInstanceKey: z.string(),
|
|
37
45
|
processDefinitionKey: z.string(),
|
|
46
|
+
processDefinitionId: z.string(),
|
|
47
|
+
processDefinitionVersion: z.number(),
|
|
48
|
+
processDefinitionVersionTag: z.string().nullable(),
|
|
38
49
|
tenantId: z.string(),
|
|
39
50
|
creationDate: z.string(),
|
|
40
51
|
lastUpdatedDate: z.string(),
|
|
@@ -46,7 +57,11 @@ var agentInstanceFilterSchema = z.object({
|
|
|
46
57
|
status: getEnumFilterSchema(agentInstanceStatusSchema),
|
|
47
58
|
elementId: basicStringFilterSchema,
|
|
48
59
|
processInstanceKey: basicStringFilterSchema,
|
|
60
|
+
rootProcessInstanceKey: basicStringFilterSchema,
|
|
49
61
|
processDefinitionKey: basicStringFilterSchema,
|
|
62
|
+
processDefinitionId: basicStringFilterSchema,
|
|
63
|
+
processDefinitionVersion: advancedIntegerFilterSchema,
|
|
64
|
+
processDefinitionVersionTag: basicStringFilterSchema,
|
|
50
65
|
tenantId: basicStringFilterSchema,
|
|
51
66
|
creationDate: advancedDateTimeFilterSchema,
|
|
52
67
|
lastUpdatedDate: advancedDateTimeFilterSchema,
|
|
@@ -55,10 +70,16 @@ var agentInstanceFilterSchema = z.object({
|
|
|
55
70
|
}).partial();
|
|
56
71
|
var queryAgentInstancesRequestBodySchema = getQueryRequestBodySchema({
|
|
57
72
|
sortFields: [
|
|
73
|
+
"agentInstanceKey",
|
|
74
|
+
"status",
|
|
75
|
+
"elementId",
|
|
76
|
+
"processInstanceKey",
|
|
77
|
+
"rootProcessInstanceKey",
|
|
78
|
+
"processDefinitionKey",
|
|
79
|
+
"tenantId",
|
|
58
80
|
"creationDate",
|
|
59
81
|
"lastUpdatedDate",
|
|
60
|
-
"completionDate"
|
|
61
|
-
"status"
|
|
82
|
+
"completionDate"
|
|
62
83
|
],
|
|
63
84
|
filter: agentInstanceFilterSchema
|
|
64
85
|
});
|
|
@@ -137,7 +158,7 @@ var createAgentInstanceHistoryItemRequestBodySchema = z.object({
|
|
|
137
158
|
producedAt: z.string()
|
|
138
159
|
});
|
|
139
160
|
var createAgentInstanceHistoryItemResponseBodySchema = z.object({ historyItemKey: z.string() });
|
|
140
|
-
var
|
|
161
|
+
var queryAgentInstanceHistoryRequestBodySchema = getQueryRequestBodySchema({
|
|
141
162
|
sortFields: [
|
|
142
163
|
"producedAt",
|
|
143
164
|
"historyItemKey",
|
|
@@ -145,12 +166,12 @@ var searchAgentInstanceHistoryRequestBodySchema = getQueryRequestBodySchema({
|
|
|
145
166
|
],
|
|
146
167
|
filter: agentInstanceHistoryFilterSchema
|
|
147
168
|
});
|
|
148
|
-
var
|
|
169
|
+
var queryAgentInstanceHistoryResponseBodySchema = getQueryResponseBodySchema(agentInstanceHistoryItemSchema);
|
|
149
170
|
var getAgentInstance = {
|
|
150
171
|
method: "GET",
|
|
151
172
|
getUrl: ({ agentInstanceKey }) => `/v2/agent-instances/${agentInstanceKey}`
|
|
152
173
|
};
|
|
153
|
-
var
|
|
174
|
+
var queryAgentInstances = {
|
|
154
175
|
method: "POST",
|
|
155
176
|
getUrl: () => `/v2/agent-instances/search`
|
|
156
177
|
};
|
|
@@ -158,9 +179,9 @@ var createAgentInstanceHistoryItem = {
|
|
|
158
179
|
method: "POST",
|
|
159
180
|
getUrl: ({ agentInstanceKey }) => `/v2/agent-instances/${agentInstanceKey}/history`
|
|
160
181
|
};
|
|
161
|
-
var
|
|
182
|
+
var queryAgentInstanceHistory = {
|
|
162
183
|
method: "POST",
|
|
163
184
|
getUrl: ({ agentInstanceKey }) => `/v2/agent-instances/${agentInstanceKey}/history/search`
|
|
164
185
|
};
|
|
165
186
|
//#endregion
|
|
166
|
-
export { agentInstanceDefinitionSchema, agentInstanceDocumentContentSchema, agentInstanceFilterSchema, agentInstanceHistoryCommitStatusSchema, agentInstanceHistoryFilterSchema, agentInstanceHistoryItemMetricsSchema, agentInstanceHistoryItemSchema, agentInstanceHistoryRoleSchema, agentInstanceLimitsSchema, agentInstanceMessageContentSchema, agentInstanceMetricsSchema, agentInstanceObjectContentSchema, agentInstanceSchema, agentInstanceStatusSchema, agentInstanceTextContentSchema, agentInstanceToolCallSchema, createAgentInstanceHistoryItem, createAgentInstanceHistoryItemRequestBodySchema, createAgentInstanceHistoryItemResponseBodySchema, getAgentInstance, getAgentInstanceResponseBodySchema,
|
|
187
|
+
export { agentInstanceDefinitionSchema, agentInstanceDocumentContentSchema, agentInstanceFilterSchema, agentInstanceHistoryCommitStatusSchema, agentInstanceHistoryFilterSchema, agentInstanceHistoryItemMetricsSchema, agentInstanceHistoryItemSchema, agentInstanceHistoryRoleSchema, agentInstanceLimitsSchema, agentInstanceMessageContentSchema, agentInstanceMetricsSchema, agentInstanceObjectContentSchema, agentInstanceSchema, agentInstanceStatusSchema, agentInstanceTextContentSchema, agentInstanceToolCallSchema, agentToolSchema, createAgentInstanceHistoryItem, createAgentInstanceHistoryItemRequestBodySchema, createAgentInstanceHistoryItemResponseBodySchema, getAgentInstance, getAgentInstanceResponseBodySchema, queryAgentInstanceHistory, queryAgentInstanceHistoryRequestBodySchema, queryAgentInstanceHistoryResponseBodySchema, queryAgentInstances, queryAgentInstancesRequestBodySchema, queryAgentInstancesResponseBodySchema };
|
package/dist/8.10/audit-log.d.ts
CHANGED
|
@@ -155,6 +155,8 @@ declare const auditLogSchema: z.ZodObject<{
|
|
|
155
155
|
}>>;
|
|
156
156
|
entityDescription: z.ZodNullable<z.ZodString>;
|
|
157
157
|
agentElementId: z.ZodNullable<z.ZodString>;
|
|
158
|
+
inboundChannelType: z.ZodNullable<z.ZodString>;
|
|
159
|
+
inboundChannelToolName: z.ZodNullable<z.ZodString>;
|
|
158
160
|
}, z.core.$strip>;
|
|
159
161
|
type AuditLog = z.infer<typeof auditLogSchema>;
|
|
160
162
|
declare const auditLogFilterSchema: z.ZodObject<{
|
|
@@ -607,6 +609,22 @@ declare const auditLogFilterSchema: z.ZodObject<{
|
|
|
607
609
|
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
608
610
|
$like: z.ZodOptional<z.ZodString>;
|
|
609
611
|
}, z.core.$strip>, z.ZodString]>>>;
|
|
612
|
+
inboundChannelType: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
613
|
+
$eq: z.ZodOptional<z.ZodString>;
|
|
614
|
+
$neq: z.ZodOptional<z.ZodString>;
|
|
615
|
+
$exists: z.ZodOptional<z.ZodBoolean>;
|
|
616
|
+
$in: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
617
|
+
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
618
|
+
$like: z.ZodOptional<z.ZodString>;
|
|
619
|
+
}, z.core.$strip>, z.ZodString]>>>;
|
|
620
|
+
inboundChannelToolName: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
621
|
+
$eq: z.ZodOptional<z.ZodString>;
|
|
622
|
+
$neq: z.ZodOptional<z.ZodString>;
|
|
623
|
+
$exists: z.ZodOptional<z.ZodBoolean>;
|
|
624
|
+
$in: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
625
|
+
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
626
|
+
$like: z.ZodOptional<z.ZodString>;
|
|
627
|
+
}, z.core.$strip>, z.ZodString]>>>;
|
|
610
628
|
}, z.core.$strip>;
|
|
611
629
|
declare const auditLogSortFieldEnum: z.ZodEnum<{
|
|
612
630
|
tenantId: "tenantId";
|
|
@@ -632,6 +650,8 @@ declare const auditLogSortFieldEnum: z.ZodEnum<{
|
|
|
632
650
|
category: "category";
|
|
633
651
|
auditLogKey: "auditLogKey";
|
|
634
652
|
entityKey: "entityKey";
|
|
653
|
+
inboundChannelType: "inboundChannelType";
|
|
654
|
+
inboundChannelToolName: "inboundChannelToolName";
|
|
635
655
|
}>;
|
|
636
656
|
type AuditLogSortField = z.infer<typeof auditLogSortFieldEnum>;
|
|
637
657
|
declare const queryAuditLogsRequestBodySchema: z.ZodObject<{
|
|
@@ -1100,6 +1120,22 @@ declare const queryAuditLogsRequestBodySchema: z.ZodObject<{
|
|
|
1100
1120
|
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1101
1121
|
$like: z.ZodOptional<z.ZodString>;
|
|
1102
1122
|
}, z.core.$strip>, z.ZodString]>>>;
|
|
1123
|
+
inboundChannelType: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1124
|
+
$eq: z.ZodOptional<z.ZodString>;
|
|
1125
|
+
$neq: z.ZodOptional<z.ZodString>;
|
|
1126
|
+
$exists: z.ZodOptional<z.ZodBoolean>;
|
|
1127
|
+
$in: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1128
|
+
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1129
|
+
$like: z.ZodOptional<z.ZodString>;
|
|
1130
|
+
}, z.core.$strip>, z.ZodString]>>>;
|
|
1131
|
+
inboundChannelToolName: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1132
|
+
$eq: z.ZodOptional<z.ZodString>;
|
|
1133
|
+
$neq: z.ZodOptional<z.ZodString>;
|
|
1134
|
+
$exists: z.ZodOptional<z.ZodBoolean>;
|
|
1135
|
+
$in: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1136
|
+
$notIn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1137
|
+
$like: z.ZodOptional<z.ZodString>;
|
|
1138
|
+
}, z.core.$strip>, z.ZodString]>>>;
|
|
1103
1139
|
}, z.core.$strip>>;
|
|
1104
1140
|
}, z.core.$strip>;
|
|
1105
1141
|
type QueryAuditLogsRequestBody = z.infer<typeof queryAuditLogsRequestBodySchema>;
|
|
@@ -1135,6 +1171,8 @@ declare const queryAuditLogsResponseBodySchema: z.ZodType<import('./common').Que
|
|
|
1135
1171
|
relatedEntityType: "USER_TASK" | "AUTHORIZATION" | "MAPPING_RULE" | "BATCH" | "TENANT" | "RESOURCE" | "GROUP" | "USER" | "ROLE" | "CLIENT" | "DECISION" | "INCIDENT" | "JOB" | "PROCESS_INSTANCE" | "VARIABLE" | null;
|
|
1136
1172
|
entityDescription: string | null;
|
|
1137
1173
|
agentElementId: string | null;
|
|
1174
|
+
inboundChannelType: string | null;
|
|
1175
|
+
inboundChannelToolName: string | null;
|
|
1138
1176
|
}>, unknown, z.core.$ZodTypeInternals<import('./common').QueryResponseBody<{
|
|
1139
1177
|
auditLogKey: string;
|
|
1140
1178
|
entityKey: string;
|
|
@@ -1167,6 +1205,8 @@ declare const queryAuditLogsResponseBodySchema: z.ZodType<import('./common').Que
|
|
|
1167
1205
|
relatedEntityType: "USER_TASK" | "AUTHORIZATION" | "MAPPING_RULE" | "BATCH" | "TENANT" | "RESOURCE" | "GROUP" | "USER" | "ROLE" | "CLIENT" | "DECISION" | "INCIDENT" | "JOB" | "PROCESS_INSTANCE" | "VARIABLE" | null;
|
|
1168
1206
|
entityDescription: string | null;
|
|
1169
1207
|
agentElementId: string | null;
|
|
1208
|
+
inboundChannelType: string | null;
|
|
1209
|
+
inboundChannelToolName: string | null;
|
|
1170
1210
|
}>, unknown>>;
|
|
1171
1211
|
type QueryAuditLogsResponseBody = z.infer<typeof queryAuditLogsResponseBodySchema>;
|
|
1172
1212
|
declare const queryAuditLogs: Endpoint;
|
|
@@ -1275,6 +1315,8 @@ declare const getAuditLogResponseBodySchema: z.ZodObject<{
|
|
|
1275
1315
|
}>>;
|
|
1276
1316
|
entityDescription: z.ZodNullable<z.ZodString>;
|
|
1277
1317
|
agentElementId: z.ZodNullable<z.ZodString>;
|
|
1318
|
+
inboundChannelType: z.ZodNullable<z.ZodString>;
|
|
1319
|
+
inboundChannelToolName: z.ZodNullable<z.ZodString>;
|
|
1278
1320
|
}, z.core.$strip>;
|
|
1279
1321
|
type GetAuditLogResponseBody = z.infer<typeof getAuditLogResponseBodySchema>;
|
|
1280
1322
|
export { auditLogEntityTypeSchema, auditLogOperationTypeSchema, auditLogActorTypeSchema, auditLogResultSchema, auditLogCategorySchema, auditLogSchema, auditLogFilterSchema, auditLogSortFieldEnum, queryAuditLogsRequestBodySchema, queryAuditLogsResponseBodySchema, getAuditLogResponseBodySchema, queryAuditLogs, getAuditLog, };
|
package/dist/8.10/audit-log.js
CHANGED
|
@@ -89,7 +89,9 @@ var auditLogSchema = z.object({
|
|
|
89
89
|
relatedEntityKey: z.string().nullable(),
|
|
90
90
|
relatedEntityType: auditLogEntityTypeSchema.nullable(),
|
|
91
91
|
entityDescription: z.string().nullable(),
|
|
92
|
-
agentElementId: z.string().nullable()
|
|
92
|
+
agentElementId: z.string().nullable(),
|
|
93
|
+
inboundChannelType: z.string().nullable(),
|
|
94
|
+
inboundChannelToolName: z.string().nullable()
|
|
93
95
|
});
|
|
94
96
|
var auditLogFilterSchema = z.object({
|
|
95
97
|
auditLogKey: advancedStringFilterSchema.optional(),
|
|
@@ -110,7 +112,9 @@ var auditLogFilterSchema = z.object({
|
|
|
110
112
|
resourceKey: advancedStringFilterSchema.optional(),
|
|
111
113
|
relatedEntityType: getEnumFilterSchema(auditLogEntityTypeSchema).optional(),
|
|
112
114
|
relatedEntityKey: advancedStringFilterSchema.optional(),
|
|
113
|
-
entityDescription: advancedStringFilterSchema.optional()
|
|
115
|
+
entityDescription: advancedStringFilterSchema.optional(),
|
|
116
|
+
inboundChannelType: advancedStringFilterSchema.optional(),
|
|
117
|
+
inboundChannelToolName: advancedStringFilterSchema.optional()
|
|
114
118
|
}).partial();
|
|
115
119
|
var auditLogSortFieldEnum = z.enum([
|
|
116
120
|
"actorId",
|
|
@@ -132,6 +136,8 @@ var auditLogSortFieldEnum = z.enum([
|
|
|
132
136
|
"processDefinitionId",
|
|
133
137
|
"processDefinitionKey",
|
|
134
138
|
"processInstanceKey",
|
|
139
|
+
"inboundChannelType",
|
|
140
|
+
"inboundChannelToolName",
|
|
135
141
|
"result",
|
|
136
142
|
"tenantId",
|
|
137
143
|
"timestamp",
|
package/dist/8.10/index.d.ts
CHANGED
|
@@ -6,11 +6,11 @@ declare const endpoints: {
|
|
|
6
6
|
readonly getAgentInstance: import('./common').Endpoint<{
|
|
7
7
|
agentInstanceKey: string;
|
|
8
8
|
}>;
|
|
9
|
-
readonly
|
|
9
|
+
readonly queryAgentInstances: import('./common').Endpoint<undefined>;
|
|
10
10
|
readonly createAgentInstanceHistoryItem: import('./common').Endpoint<{
|
|
11
11
|
agentInstanceKey: string;
|
|
12
12
|
}>;
|
|
13
|
-
readonly
|
|
13
|
+
readonly queryAgentInstanceHistory: import('./common').Endpoint<{
|
|
14
14
|
agentInstanceKey: string;
|
|
15
15
|
}>;
|
|
16
16
|
readonly createAuthorization: import('./common').Endpoint<undefined>;
|
|
@@ -1166,7 +1166,7 @@ export { userTaskAuditLogFilterSchema, queryUserTaskAuditLogsRequestBodySchema,
|
|
|
1166
1166
|
export { deleteProcessInstanceRequestBodySchema, modifyProcessInstanceRequestBodySchema, type DeleteProcessInstanceRequestBody, type ModifyProcessInstanceRequestBody, } from './process-instance-commands';
|
|
1167
1167
|
export { getIncidentProcessInstanceStatisticsByErrorRequestBodySchema, getIncidentProcessInstanceStatisticsByErrorResponseBodySchema, incidentProcessInstanceStatisticsByErrorSchema, getIncidentProcessInstanceStatisticsByDefinitionRequestBodySchema, getIncidentProcessInstanceStatisticsByDefinitionResponseBodySchema, incidentProcessInstanceStatisticsByDefinitionSchema, type IncidentProcessInstanceStatisticsByError, type GetIncidentProcessInstanceStatisticsByErrorRequestBody, type GetIncidentProcessInstanceStatisticsByErrorResponseBody, type IncidentProcessInstanceStatisticsByDefinition, type GetIncidentProcessInstanceStatisticsByDefinitionRequestBody, type GetIncidentProcessInstanceStatisticsByDefinitionResponseBody, } from './incident-statistics';
|
|
1168
1168
|
export { currentUserSchema, getCurrentUser, type CurrentUser } from './authentication';
|
|
1169
|
-
export { agentInstanceStatusSchema, agentInstanceDefinitionSchema, agentInstanceMetricsSchema, agentInstanceLimitsSchema, agentInstanceSchema, agentInstanceFilterSchema, queryAgentInstancesRequestBodySchema, queryAgentInstancesResponseBodySchema, getAgentInstanceResponseBodySchema, agentInstanceHistoryRoleSchema, agentInstanceHistoryCommitStatusSchema, agentInstanceTextContentSchema, agentInstanceDocumentContentSchema, agentInstanceObjectContentSchema, agentInstanceMessageContentSchema, agentInstanceToolCallSchema, agentInstanceHistoryItemMetricsSchema, agentInstanceHistoryItemSchema, agentInstanceHistoryFilterSchema, createAgentInstanceHistoryItemRequestBodySchema, createAgentInstanceHistoryItemResponseBodySchema,
|
|
1169
|
+
export { agentInstanceStatusSchema, agentInstanceDefinitionSchema, agentInstanceMetricsSchema, agentInstanceLimitsSchema, agentToolSchema, agentInstanceSchema, agentInstanceFilterSchema, queryAgentInstancesRequestBodySchema, queryAgentInstancesResponseBodySchema, getAgentInstanceResponseBodySchema, agentInstanceHistoryRoleSchema, agentInstanceHistoryCommitStatusSchema, agentInstanceTextContentSchema, agentInstanceDocumentContentSchema, agentInstanceObjectContentSchema, agentInstanceMessageContentSchema, agentInstanceToolCallSchema, agentInstanceHistoryItemMetricsSchema, agentInstanceHistoryItemSchema, agentInstanceHistoryFilterSchema, createAgentInstanceHistoryItemRequestBodySchema, createAgentInstanceHistoryItemResponseBodySchema, queryAgentInstanceHistoryRequestBodySchema, queryAgentInstanceHistoryResponseBodySchema, type AgentInstanceStatus, type AgentInstanceDefinition, type AgentInstanceMetrics, type AgentInstanceLimits, type AgentTool, type AgentInstance, type AgentInstanceFilter, type QueryAgentInstancesRequestBody, type QueryAgentInstancesResponseBody, type GetAgentInstanceResponseBody, type AgentInstanceHistoryRole, type AgentInstanceHistoryCommitStatus, type AgentInstanceTextContent, type AgentInstanceDocumentContent, type AgentInstanceObjectContent, type AgentInstanceMessageContent, type AgentInstanceToolCall, type AgentInstanceHistoryItemMetrics, type AgentInstanceHistoryItem, type AgentInstanceHistoryFilter, type CreateAgentInstanceHistoryItemRequestBody, type CreateAgentInstanceHistoryItemResponseBody, type QueryAgentInstanceHistoryRequestBody, type QueryAgentInstanceHistoryResponseBody, } from './agent-instance';
|
|
1170
1170
|
export { activityTypeSchema, queryActivatableActivitiesRequestBodySchema, queryActivatableActivitiesResponseBodySchema, activateActivityWithinAdHocSubProcessRequestBodySchema, activateActivityWithinAdHocSubProcessResponseBodySchema, type ActivityType, type QueryActivatableActivitiesRequestBody, type ActivatableActivity, type QueryActivatableActivitiesResponseBody, type ActivateActivityWithinAdHocSubProcessRequestBody, type ActivateActivityWithinAdHocSubProcessResponseBody, } from './ad-hoc-sub-process';
|
|
1171
1171
|
export { permissionTypeSchema, resourceTypeSchema, ownerTypeSchema, createAuthorizationRequestBodySchema, createAuthorizationResponseBodySchema, updateAuthorizationRequestBodySchema, getAuthorizationResponseBodySchema, queryAuthorizationsRequestBodySchema, queryAuthorizationsResponseBodySchema, authorizationSchema, type Authorization, type PermissionType, type ResourceType, type OwnerType, type CreateAuthorizationResponseBody, type GetAuthorizationResponseBody, type QueryAuthorizationsRequestBody, type QueryAuthorizationsResponseBody, type CreateAuthorizationRequestBody, type UpdateAuthorizationRequestBody, } from './authorization';
|
|
1172
1172
|
export { batchOperationTypeSchema, batchOperationStateSchema, batchOperationItemStateSchema, batchOperationSchema, batchOperationItemSchema, queryBatchOperationsRequestBodySchema, queryBatchOperationsResponseBodySchema, queryBatchOperationItemsRequestBodySchema, queryBatchOperationItemsResponseBodySchema, type BatchOperationType, type BatchOperationState, type BatchOperationItemState, type BatchOperation, type BatchOperationItem, type QueryBatchOperationsRequestBody, type QueryBatchOperationsResponseBody, type QueryBatchOperationItemsRequestBody, type QueryBatchOperationItemsResponseBody, } from './batch-operation';
|
|
@@ -369,6 +369,8 @@ declare const queryUserTaskAuditLogsResponseBodySchema: z.ZodType<import('./comm
|
|
|
369
369
|
relatedEntityType: "USER_TASK" | "AUTHORIZATION" | "MAPPING_RULE" | "BATCH" | "TENANT" | "RESOURCE" | "GROUP" | "USER" | "ROLE" | "CLIENT" | "DECISION" | "INCIDENT" | "JOB" | "PROCESS_INSTANCE" | "VARIABLE" | null;
|
|
370
370
|
entityDescription: string | null;
|
|
371
371
|
agentElementId: string | null;
|
|
372
|
+
inboundChannelType: string | null;
|
|
373
|
+
inboundChannelToolName: string | null;
|
|
372
374
|
}>, unknown, z.core.$ZodTypeInternals<import('./common').QueryResponseBody<{
|
|
373
375
|
auditLogKey: string;
|
|
374
376
|
entityKey: string;
|
|
@@ -401,6 +403,8 @@ declare const queryUserTaskAuditLogsResponseBodySchema: z.ZodType<import('./comm
|
|
|
401
403
|
relatedEntityType: "USER_TASK" | "AUTHORIZATION" | "MAPPING_RULE" | "BATCH" | "TENANT" | "RESOURCE" | "GROUP" | "USER" | "ROLE" | "CLIENT" | "DECISION" | "INCIDENT" | "JOB" | "PROCESS_INSTANCE" | "VARIABLE" | null;
|
|
402
404
|
entityDescription: string | null;
|
|
403
405
|
agentElementId: string | null;
|
|
406
|
+
inboundChannelType: string | null;
|
|
407
|
+
inboundChannelToolName: string | null;
|
|
404
408
|
}>, unknown>>;
|
|
405
409
|
type QueryUserTaskAuditLogsResponseBody = z.infer<typeof queryUserTaskAuditLogsResponseBodySchema>;
|
|
406
410
|
declare const queryUserTaskAuditLogs: Endpoint<{
|
package/dist/8.10.js
CHANGED
|
@@ -2,7 +2,7 @@ import { problemDetailResponseSchema, problemDetailsSchema, queryPageSchema, que
|
|
|
2
2
|
import { currentUserSchema, getCurrentUser } from "./8.10/authentication.js";
|
|
3
3
|
import { activateActivityWithinAdHocSubProcessRequestBodySchema, activateActivityWithinAdHocSubProcessResponseBodySchema, activateAdHocSubProcessActivities, activityTypeSchema, queryActivatableActivitiesRequestBodySchema, queryActivatableActivitiesResponseBodySchema } from "./8.10/ad-hoc-sub-process.js";
|
|
4
4
|
import { createDocument, createDocumentLink, createDocuments, createDocumentsResponseBodySchema, deleteDocument, documentCreationFailureDetailSchema, documentLinkRequestBodySchema, documentLinkSchema, documentMetadataSchema, documentReferenceSchema, getDocument, getDocumentResponseBodySchema } from "./8.10/document.js";
|
|
5
|
-
import { agentInstanceDefinitionSchema, agentInstanceDocumentContentSchema, agentInstanceFilterSchema, agentInstanceHistoryCommitStatusSchema, agentInstanceHistoryFilterSchema, agentInstanceHistoryItemMetricsSchema, agentInstanceHistoryItemSchema, agentInstanceHistoryRoleSchema, agentInstanceLimitsSchema, agentInstanceMessageContentSchema, agentInstanceMetricsSchema, agentInstanceObjectContentSchema, agentInstanceSchema, agentInstanceStatusSchema, agentInstanceTextContentSchema, agentInstanceToolCallSchema, createAgentInstanceHistoryItem, createAgentInstanceHistoryItemRequestBodySchema, createAgentInstanceHistoryItemResponseBodySchema, getAgentInstance, getAgentInstanceResponseBodySchema,
|
|
5
|
+
import { agentInstanceDefinitionSchema, agentInstanceDocumentContentSchema, agentInstanceFilterSchema, agentInstanceHistoryCommitStatusSchema, agentInstanceHistoryFilterSchema, agentInstanceHistoryItemMetricsSchema, agentInstanceHistoryItemSchema, agentInstanceHistoryRoleSchema, agentInstanceLimitsSchema, agentInstanceMessageContentSchema, agentInstanceMetricsSchema, agentInstanceObjectContentSchema, agentInstanceSchema, agentInstanceStatusSchema, agentInstanceTextContentSchema, agentInstanceToolCallSchema, agentToolSchema, createAgentInstanceHistoryItem, createAgentInstanceHistoryItemRequestBodySchema, createAgentInstanceHistoryItemResponseBodySchema, getAgentInstance, getAgentInstanceResponseBodySchema, queryAgentInstanceHistory, queryAgentInstanceHistoryRequestBodySchema, queryAgentInstanceHistoryResponseBodySchema, queryAgentInstances, queryAgentInstancesRequestBodySchema, queryAgentInstancesResponseBodySchema } from "./8.10/agent-instance.js";
|
|
6
6
|
import { authorizationSchema, createAuthorization, createAuthorizationRequestBodySchema, createAuthorizationResponseBodySchema, deleteAuthorization, getAuthorization, getAuthorizationResponseBodySchema, ownerTypeSchema, permissionTypeSchema, queryAuthorizations, queryAuthorizationsRequestBodySchema, queryAuthorizationsResponseBodySchema, resourceTypeSchema, updateAuthorization, updateAuthorizationRequestBodySchema } from "./8.10/authorization.js";
|
|
7
7
|
import { batchOperationItemSchema, batchOperationItemStateSchema, batchOperationSchema, batchOperationStateSchema, batchOperationTypeSchema, cancelBatchOperation, getBatchOperation, queryBatchOperationItems, queryBatchOperationItemsRequestBodySchema, queryBatchOperationItemsResponseBodySchema, queryBatchOperations, queryBatchOperationsRequestBodySchema, queryBatchOperationsResponseBodySchema, resumeBatchOperation, suspendBatchOperation } from "./8.10/batch-operation.js";
|
|
8
8
|
import { pinClock, pinClockRequestBodySchema, resetClock } from "./8.10/clock.js";
|
|
@@ -43,9 +43,9 @@ var endpoints = {
|
|
|
43
43
|
getCurrentUser,
|
|
44
44
|
activateAdHocSubProcessActivities,
|
|
45
45
|
getAgentInstance,
|
|
46
|
-
|
|
46
|
+
queryAgentInstances,
|
|
47
47
|
createAgentInstanceHistoryItem,
|
|
48
|
-
|
|
48
|
+
queryAgentInstanceHistory,
|
|
49
49
|
createAuthorization,
|
|
50
50
|
updateAuthorization,
|
|
51
51
|
getAuthorization,
|
|
@@ -218,4 +218,4 @@ var endpoints = {
|
|
|
218
218
|
deleteGlobalTaskListener
|
|
219
219
|
};
|
|
220
220
|
//#endregion
|
|
221
|
-
export { activateActivityWithinAdHocSubProcessRequestBodySchema, activateActivityWithinAdHocSubProcessResponseBodySchema, activateJobsRequestBodySchema, activateJobsResponseBodySchema, activatedJobSchema, activityTypeSchema, agentInstanceDefinitionSchema, agentInstanceDocumentContentSchema, agentInstanceFilterSchema, agentInstanceHistoryCommitStatusSchema, agentInstanceHistoryFilterSchema, agentInstanceHistoryItemMetricsSchema, agentInstanceHistoryItemSchema, agentInstanceHistoryRoleSchema, agentInstanceLimitsSchema, agentInstanceMessageContentSchema, agentInstanceMetricsSchema, agentInstanceObjectContentSchema, agentInstanceSchema, agentInstanceStatusSchema, agentInstanceTextContentSchema, agentInstanceToolCallSchema, assignTaskRequestBodySchema, auditLogActorTypeSchema, auditLogCategorySchema, auditLogEntityTypeSchema, auditLogFilterSchema, auditLogOperationTypeSchema, auditLogResultSchema, auditLogSchema, auditLogSortFieldEnum, authenticationConfigurationSchema, authorizationSchema, batchOperationCreatedResultSchema, batchOperationItemSchema, batchOperationItemStateSchema, batchOperationSchema, batchOperationStateSchema, batchOperationTypeSchema, broadcastSignalRequestBodySchema, broadcastSignalResponseBodySchema, brokerInfoSchema, callHierarchySchema, cancelProcessInstanceRequestBodySchema, cloudConfigurationSchema, clusterVariableSchema, clusterVariableScopeSchema, clusterVariableSearchResultSchema, completeJobRequestBodySchema, completeTaskRequestBodySchema, componentsConfigurationSchema, correlateMessageRequestBodySchema, correlateMessageResponseBodySchema, correlatedMessageSubscriptionSchema, createAgentInstanceHistoryItemRequestBodySchema, createAgentInstanceHistoryItemResponseBodySchema, createAuthorizationRequestBodySchema, createAuthorizationResponseBodySchema, createCancellationBatchOperationResponseBodySchema, createClusterVariableRequestBodySchema, createDecisionInstancesDeletionBatchOperationRequestBodySchema, createDecisionInstancesDeletionBatchOperationResponseBodySchema, createDeletionBatchOperationResponseBodySchema, createDeploymentResponseBodySchema, createDocumentsResponseBodySchema, createGlobalTaskListenerRequestBodySchema, createGroupRequestBodySchema, createGroupResponseBodySchema, createIncidentResolutionBatchOperationResponseBodySchema, createMappingRuleRequestBodySchema, createMappingRuleResponseBodySchema, createMigrationBatchOperationResponseBodySchema, createModificationBatchOperationResponseBodySchema, createProcessInstanceRequestBodySchema, createProcessInstanceResponseBodySchema, createRoleRequestBodySchema, createRoleResponseBodySchema, createTenantRequestBodySchema, createTenantResponseBodySchema, createUserRequestBodySchema, createUserResponseBodySchema, currentUserSchema, decisionDefinitionSchema, decisionDefinitionTypeSchema, decisionDeploymentSchema, decisionInstanceSchema, decisionInstanceStateSchema, decisionRequirementsDeploymentSchema, decisionRequirementsSchema, deleteProcessInstanceRequestBodySchema, deleteResourceRequestBodySchema, deleteResourceResponseBodySchema, deploymentConfigurationSchema, deploymentSchema, documentCreationFailureDetailSchema, documentLinkRequestBodySchema, documentLinkSchema, documentMetadataSchema, documentReferenceSchema, elementInstanceFilterSchema, elementInstanceInspectionSchema, elementInstanceSchema, elementInstanceStateSchema, elementInstanceTypeSchema, endpoints, evaluateDecisionRequestBodySchema, evaluateDecisionResponseBodySchema, evaluatedDecisionInputItemSchema, evaluatedDecisionOutputItemSchema, evaluatedDecisionResultSchema, failJobRequestBodySchema, formDeploymentSchema, formSchema, getAgentInstanceResponseBodySchema, getAuditLogResponseBodySchema, getAuthorizationResponseBodySchema, getCurrentUser, getDecisionDefinitionXmlResponseBodySchema, getDecisionInstanceResponseBodySchema, getDecisionRequirementsXmlResponseBodySchema, getDocumentResponseBodySchema, getElementInstanceResponseBodySchema, getGroupResponseBodySchema, getIncidentProcessInstanceStatisticsByDefinitionRequestBodySchema, getIncidentProcessInstanceStatisticsByDefinitionResponseBodySchema, getIncidentProcessInstanceStatisticsByErrorRequestBodySchema, getIncidentProcessInstanceStatisticsByErrorResponseBodySchema, getIncidentResponseBodySchema, getMappingRuleResponseBodySchema, getProcessDefinitionInstanceStatisticsRequestBodySchema, getProcessDefinitionInstanceStatisticsResponseBodySchema, getProcessDefinitionInstanceVersionStatisticsRequestBodySchema, getProcessDefinitionInstanceVersionStatisticsResponseBodySchema, getProcessDefinitionResponseBodySchema, getProcessDefinitionStatisticsRequestBodySchema, getProcessDefinitionStatisticsResponseBodySchema, getProcessDefinitionXmlResponseBodySchema, getProcessInstanceCallHierarchyResponseBodySchema, getProcessInstanceSequenceFlowsResponseBodySchema, getProcessInstanceStatisticsResponseBodySchema, getProcessStartFormResponseBodySchema, getResourceContentResponseBodySchema, getSystemConfigurationResponseBodySchema, getTopologyResponseBodySchema, getUsageMetricsResponseBodySchema, globalListenerSourceSchema, globalTaskListenerEventTypeSchema, globalTaskListenerSchema, groupSchema, incidentErrorTypeSchema, incidentProcessInstanceStatisticsByDefinitionSchema, incidentProcessInstanceStatisticsByErrorSchema, incidentSchema, incidentStateSchema, jobChangesetSchema, jobKindFilterSchema, jobKindSchema, jobMetricsConfigurationSchema, jobResultSchema, jobSchema, jobStateFilterSchema, jobStateSchema, licenseSchema, listenerEventTypeFilterSchema, listenerEventTypeSchema, mappingRuleSchema, matchedDecisionRuleItemSchema, messageSubscriptionSchema, modifyProcessInstanceRequestBodySchema, ownerTypeSchema, partitionHealthSchema, partitionRoleSchema, partitionSchema, permissionTypeSchema, pinClockRequestBodySchema, problemDetailResponseSchema, problemDetailsSchema, processDefinitionInstanceStatisticsSchema, processDefinitionInstanceVersionStatisticsSchema, processDefinitionResponseSchema, processDefinitionSchema, processDefinitionStatisticSchema, processDeploymentSchema, processInstanceSchema, processInstanceStateSchema, processInstanceVariableFilterSchema, processInstanceVariableValueFilterSchema, publishMessageRequestBodySchema, publishMessageResponseBodySchema, queryActivatableActivitiesRequestBodySchema, queryActivatableActivitiesResponseBodySchema, queryAgentInstancesRequestBodySchema, queryAgentInstancesResponseBodySchema, queryAuditLogsRequestBodySchema, queryAuditLogsResponseBodySchema, queryAuthorizationsRequestBodySchema, queryAuthorizationsResponseBodySchema, queryBatchOperationItemsRequestBodySchema, queryBatchOperationItemsResponseBodySchema, queryBatchOperationsRequestBodySchema, queryBatchOperationsResponseBodySchema, queryClientsByGroupRequestBodySchema, queryClientsByGroupResponseBodySchema, queryClientsByRoleRequestBodySchema, queryClientsByRoleResponseBodySchema, queryClientsByTenantRequestBodySchema, queryClientsByTenantResponseBodySchema, queryClusterVariablesRequestBodySchema, queryClusterVariablesResponseBodySchema, queryCorrelatedMessageSubscriptionRequestBodySchema, queryCorrelatedMessageSubscriptionsResponseBodySchema, queryDecisionDefinitionsRequestBodySchema, queryDecisionDefinitionsResponseBodySchema, queryDecisionInstancesFilterSchema, queryDecisionInstancesRequestBodySchema, queryDecisionInstancesResponseBodySchema, queryDecisionRequirementsRequestBodySchema, queryDecisionRequirementsResponseBodySchema, queryElementInstanceIncidentsRequestBodySchema, queryElementInstanceIncidentsResponseBodySchema, queryElementInstanceInspectionRequestBodySchema, queryElementInstanceInspectionResponseBodySchema, queryElementInstancesRequestBodySchema, queryElementInstancesResponseBodySchema, queryGlobalTaskListenersRequestBodySchema, queryGlobalTaskListenersResponseBodySchema, queryGroupsByRoleRequestBodySchema, queryGroupsByRoleResponseBodySchema, queryGroupsByTenantRequestBodySchema, queryGroupsByTenantResponseBodySchema, queryGroupsRequestBodySchema, queryGroupsResponseBodySchema, queryIncidentsRequestBodySchema, queryIncidentsResponseBodySchema, queryJobsRequestBodySchema, queryJobsResponseBodySchema, queryMappingRulesByGroupRequestBodySchema, queryMappingRulesByGroupResponseBodySchema, queryMappingRulesByRoleRequestBodySchema, queryMappingRulesByRoleResponseBodySchema, queryMappingRulesByTenantRequestBodySchema, queryMappingRulesByTenantResponseBodySchema, queryMappingRulesRequestBodySchema, queryMappingRulesResponseBodySchema, queryMessageSubscriptionRequestBodySchema, queryMessageSubscriptionsResponseBodySchema, queryPageSchema, queryProcessDefinitionsRequestBodySchema, queryProcessDefinitionsResponseBodySchema, queryProcessInstanceIncidentsRequestBodySchema, queryProcessInstanceIncidentsResponseBodySchema, queryProcessInstancesRequestBodySchema, queryProcessInstancesResponseBodySchema, queryRolesByGroupRequestBodySchema, queryRolesByGroupResponseBodySchema, queryRolesByTenantRequestBodySchema, queryRolesByTenantResponseBodySchema, queryRolesRequestBodySchema, queryRolesResponseBodySchema, querySortOrderSchema, queryTenantsRequestBodySchema, queryTenantsResponseBodySchema, queryUserTaskAuditLogsRequestBodySchema, queryUserTaskAuditLogsResponseBodySchema, queryUserTasksRequestBodySchema, queryUserTasksResponseBodySchema, queryUsersByGroupRequestBodySchema, queryUsersByGroupResponseBodySchema, queryUsersByRoleRequestBodySchema, queryUsersByRoleResponseBodySchema, queryUsersByTenantRequestBodySchema, queryUsersByTenantResponseBodySchema, queryUsersRequestBodySchema, queryUsersResponseBodySchema, queryVariablesByUserTaskRequestBodySchema, queryVariablesByUserTaskResponseBodySchema, queryVariablesRequestBodySchema, queryVariablesResponseBodySchema, resolveProcessInstanceIncidentsResponseBodySchema, resourceDeploymentSchema, resourceSchema, resourceTypeSchema, roleSchema, searchAgentInstanceHistoryRequestBodySchema, searchAgentInstanceHistoryResponseBodySchema, sequenceFlowSchema, systemConfigurationSchema, tenantClientSchema, tenantSchema, tenantUserSchema, throwJobErrorRequestBodySchema, unassignTaskRequestBodySchema, updateAuthorizationRequestBodySchema, updateClusterVariableRequestBodySchema, updateElementInstanceVariablesRequestBodySchema, updateGlobalTaskListenerRequestBodySchema, updateGroupRequestBodySchema, updateGroupResponseBodySchema, updateJobRequestBodySchema, updateMappingRuleRequestBodySchema, updateMappingRuleResponseBodySchema, updateRoleRequestBodySchema, updateRoleResponseBodySchema, updateTenantRequestBodySchema, updateTenantResponseBodySchema, updateUserRequestBodySchema, updateUserTaskRequestBodySchema, usageMetricsSchema, userSchema, userTaskAuditLogFilterSchema, userTaskSchema, variableSchema, waitStateDetailsSchema, waitStateTypeSchema };
|
|
221
|
+
export { activateActivityWithinAdHocSubProcessRequestBodySchema, activateActivityWithinAdHocSubProcessResponseBodySchema, activateJobsRequestBodySchema, activateJobsResponseBodySchema, activatedJobSchema, activityTypeSchema, agentInstanceDefinitionSchema, agentInstanceDocumentContentSchema, agentInstanceFilterSchema, agentInstanceHistoryCommitStatusSchema, agentInstanceHistoryFilterSchema, agentInstanceHistoryItemMetricsSchema, agentInstanceHistoryItemSchema, agentInstanceHistoryRoleSchema, agentInstanceLimitsSchema, agentInstanceMessageContentSchema, agentInstanceMetricsSchema, agentInstanceObjectContentSchema, agentInstanceSchema, agentInstanceStatusSchema, agentInstanceTextContentSchema, agentInstanceToolCallSchema, agentToolSchema, assignTaskRequestBodySchema, auditLogActorTypeSchema, auditLogCategorySchema, auditLogEntityTypeSchema, auditLogFilterSchema, auditLogOperationTypeSchema, auditLogResultSchema, auditLogSchema, auditLogSortFieldEnum, authenticationConfigurationSchema, authorizationSchema, batchOperationCreatedResultSchema, batchOperationItemSchema, batchOperationItemStateSchema, batchOperationSchema, batchOperationStateSchema, batchOperationTypeSchema, broadcastSignalRequestBodySchema, broadcastSignalResponseBodySchema, brokerInfoSchema, callHierarchySchema, cancelProcessInstanceRequestBodySchema, cloudConfigurationSchema, clusterVariableSchema, clusterVariableScopeSchema, clusterVariableSearchResultSchema, completeJobRequestBodySchema, completeTaskRequestBodySchema, componentsConfigurationSchema, correlateMessageRequestBodySchema, correlateMessageResponseBodySchema, correlatedMessageSubscriptionSchema, createAgentInstanceHistoryItemRequestBodySchema, createAgentInstanceHistoryItemResponseBodySchema, createAuthorizationRequestBodySchema, createAuthorizationResponseBodySchema, createCancellationBatchOperationResponseBodySchema, createClusterVariableRequestBodySchema, createDecisionInstancesDeletionBatchOperationRequestBodySchema, createDecisionInstancesDeletionBatchOperationResponseBodySchema, createDeletionBatchOperationResponseBodySchema, createDeploymentResponseBodySchema, createDocumentsResponseBodySchema, createGlobalTaskListenerRequestBodySchema, createGroupRequestBodySchema, createGroupResponseBodySchema, createIncidentResolutionBatchOperationResponseBodySchema, createMappingRuleRequestBodySchema, createMappingRuleResponseBodySchema, createMigrationBatchOperationResponseBodySchema, createModificationBatchOperationResponseBodySchema, createProcessInstanceRequestBodySchema, createProcessInstanceResponseBodySchema, createRoleRequestBodySchema, createRoleResponseBodySchema, createTenantRequestBodySchema, createTenantResponseBodySchema, createUserRequestBodySchema, createUserResponseBodySchema, currentUserSchema, decisionDefinitionSchema, decisionDefinitionTypeSchema, decisionDeploymentSchema, decisionInstanceSchema, decisionInstanceStateSchema, decisionRequirementsDeploymentSchema, decisionRequirementsSchema, deleteProcessInstanceRequestBodySchema, deleteResourceRequestBodySchema, deleteResourceResponseBodySchema, deploymentConfigurationSchema, deploymentSchema, documentCreationFailureDetailSchema, documentLinkRequestBodySchema, documentLinkSchema, documentMetadataSchema, documentReferenceSchema, elementInstanceFilterSchema, elementInstanceInspectionSchema, elementInstanceSchema, elementInstanceStateSchema, elementInstanceTypeSchema, endpoints, evaluateDecisionRequestBodySchema, evaluateDecisionResponseBodySchema, evaluatedDecisionInputItemSchema, evaluatedDecisionOutputItemSchema, evaluatedDecisionResultSchema, failJobRequestBodySchema, formDeploymentSchema, formSchema, getAgentInstanceResponseBodySchema, getAuditLogResponseBodySchema, getAuthorizationResponseBodySchema, getCurrentUser, getDecisionDefinitionXmlResponseBodySchema, getDecisionInstanceResponseBodySchema, getDecisionRequirementsXmlResponseBodySchema, getDocumentResponseBodySchema, getElementInstanceResponseBodySchema, getGroupResponseBodySchema, getIncidentProcessInstanceStatisticsByDefinitionRequestBodySchema, getIncidentProcessInstanceStatisticsByDefinitionResponseBodySchema, getIncidentProcessInstanceStatisticsByErrorRequestBodySchema, getIncidentProcessInstanceStatisticsByErrorResponseBodySchema, getIncidentResponseBodySchema, getMappingRuleResponseBodySchema, getProcessDefinitionInstanceStatisticsRequestBodySchema, getProcessDefinitionInstanceStatisticsResponseBodySchema, getProcessDefinitionInstanceVersionStatisticsRequestBodySchema, getProcessDefinitionInstanceVersionStatisticsResponseBodySchema, getProcessDefinitionResponseBodySchema, getProcessDefinitionStatisticsRequestBodySchema, getProcessDefinitionStatisticsResponseBodySchema, getProcessDefinitionXmlResponseBodySchema, getProcessInstanceCallHierarchyResponseBodySchema, getProcessInstanceSequenceFlowsResponseBodySchema, getProcessInstanceStatisticsResponseBodySchema, getProcessStartFormResponseBodySchema, getResourceContentResponseBodySchema, getSystemConfigurationResponseBodySchema, getTopologyResponseBodySchema, getUsageMetricsResponseBodySchema, globalListenerSourceSchema, globalTaskListenerEventTypeSchema, globalTaskListenerSchema, groupSchema, incidentErrorTypeSchema, incidentProcessInstanceStatisticsByDefinitionSchema, incidentProcessInstanceStatisticsByErrorSchema, incidentSchema, incidentStateSchema, jobChangesetSchema, jobKindFilterSchema, jobKindSchema, jobMetricsConfigurationSchema, jobResultSchema, jobSchema, jobStateFilterSchema, jobStateSchema, licenseSchema, listenerEventTypeFilterSchema, listenerEventTypeSchema, mappingRuleSchema, matchedDecisionRuleItemSchema, messageSubscriptionSchema, modifyProcessInstanceRequestBodySchema, ownerTypeSchema, partitionHealthSchema, partitionRoleSchema, partitionSchema, permissionTypeSchema, pinClockRequestBodySchema, problemDetailResponseSchema, problemDetailsSchema, processDefinitionInstanceStatisticsSchema, processDefinitionInstanceVersionStatisticsSchema, processDefinitionResponseSchema, processDefinitionSchema, processDefinitionStatisticSchema, processDeploymentSchema, processInstanceSchema, processInstanceStateSchema, processInstanceVariableFilterSchema, processInstanceVariableValueFilterSchema, publishMessageRequestBodySchema, publishMessageResponseBodySchema, queryActivatableActivitiesRequestBodySchema, queryActivatableActivitiesResponseBodySchema, queryAgentInstanceHistoryRequestBodySchema, queryAgentInstanceHistoryResponseBodySchema, queryAgentInstancesRequestBodySchema, queryAgentInstancesResponseBodySchema, queryAuditLogsRequestBodySchema, queryAuditLogsResponseBodySchema, queryAuthorizationsRequestBodySchema, queryAuthorizationsResponseBodySchema, queryBatchOperationItemsRequestBodySchema, queryBatchOperationItemsResponseBodySchema, queryBatchOperationsRequestBodySchema, queryBatchOperationsResponseBodySchema, queryClientsByGroupRequestBodySchema, queryClientsByGroupResponseBodySchema, queryClientsByRoleRequestBodySchema, queryClientsByRoleResponseBodySchema, queryClientsByTenantRequestBodySchema, queryClientsByTenantResponseBodySchema, queryClusterVariablesRequestBodySchema, queryClusterVariablesResponseBodySchema, queryCorrelatedMessageSubscriptionRequestBodySchema, queryCorrelatedMessageSubscriptionsResponseBodySchema, queryDecisionDefinitionsRequestBodySchema, queryDecisionDefinitionsResponseBodySchema, queryDecisionInstancesFilterSchema, queryDecisionInstancesRequestBodySchema, queryDecisionInstancesResponseBodySchema, queryDecisionRequirementsRequestBodySchema, queryDecisionRequirementsResponseBodySchema, queryElementInstanceIncidentsRequestBodySchema, queryElementInstanceIncidentsResponseBodySchema, queryElementInstanceInspectionRequestBodySchema, queryElementInstanceInspectionResponseBodySchema, queryElementInstancesRequestBodySchema, queryElementInstancesResponseBodySchema, queryGlobalTaskListenersRequestBodySchema, queryGlobalTaskListenersResponseBodySchema, queryGroupsByRoleRequestBodySchema, queryGroupsByRoleResponseBodySchema, queryGroupsByTenantRequestBodySchema, queryGroupsByTenantResponseBodySchema, queryGroupsRequestBodySchema, queryGroupsResponseBodySchema, queryIncidentsRequestBodySchema, queryIncidentsResponseBodySchema, queryJobsRequestBodySchema, queryJobsResponseBodySchema, queryMappingRulesByGroupRequestBodySchema, queryMappingRulesByGroupResponseBodySchema, queryMappingRulesByRoleRequestBodySchema, queryMappingRulesByRoleResponseBodySchema, queryMappingRulesByTenantRequestBodySchema, queryMappingRulesByTenantResponseBodySchema, queryMappingRulesRequestBodySchema, queryMappingRulesResponseBodySchema, queryMessageSubscriptionRequestBodySchema, queryMessageSubscriptionsResponseBodySchema, queryPageSchema, queryProcessDefinitionsRequestBodySchema, queryProcessDefinitionsResponseBodySchema, queryProcessInstanceIncidentsRequestBodySchema, queryProcessInstanceIncidentsResponseBodySchema, queryProcessInstancesRequestBodySchema, queryProcessInstancesResponseBodySchema, queryRolesByGroupRequestBodySchema, queryRolesByGroupResponseBodySchema, queryRolesByTenantRequestBodySchema, queryRolesByTenantResponseBodySchema, queryRolesRequestBodySchema, queryRolesResponseBodySchema, querySortOrderSchema, queryTenantsRequestBodySchema, queryTenantsResponseBodySchema, queryUserTaskAuditLogsRequestBodySchema, queryUserTaskAuditLogsResponseBodySchema, queryUserTasksRequestBodySchema, queryUserTasksResponseBodySchema, queryUsersByGroupRequestBodySchema, queryUsersByGroupResponseBodySchema, queryUsersByRoleRequestBodySchema, queryUsersByRoleResponseBodySchema, queryUsersByTenantRequestBodySchema, queryUsersByTenantResponseBodySchema, queryUsersRequestBodySchema, queryUsersResponseBodySchema, queryVariablesByUserTaskRequestBodySchema, queryVariablesByUserTaskResponseBodySchema, queryVariablesRequestBodySchema, queryVariablesResponseBodySchema, resolveProcessInstanceIncidentsResponseBodySchema, resourceDeploymentSchema, resourceSchema, resourceTypeSchema, roleSchema, sequenceFlowSchema, systemConfigurationSchema, tenantClientSchema, tenantSchema, tenantUserSchema, throwJobErrorRequestBodySchema, unassignTaskRequestBodySchema, updateAuthorizationRequestBodySchema, updateClusterVariableRequestBodySchema, updateElementInstanceVariablesRequestBodySchema, updateGlobalTaskListenerRequestBodySchema, updateGroupRequestBodySchema, updateGroupResponseBodySchema, updateJobRequestBodySchema, updateMappingRuleRequestBodySchema, updateMappingRuleResponseBodySchema, updateRoleRequestBodySchema, updateRoleResponseBodySchema, updateTenantRequestBodySchema, updateTenantResponseBodySchema, updateUserRequestBodySchema, updateUserTaskRequestBodySchema, usageMetricsSchema, userSchema, userTaskAuditLogFilterSchema, userTaskSchema, variableSchema, waitStateDetailsSchema, waitStateTypeSchema };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda/camunda-api-zod-schemas",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.77",
|
|
4
4
|
"license": "LicenseRef-Camunda-1.0",
|
|
5
5
|
"description": "Zod schemas and TypeScript types for Camunda 8 unified API",
|
|
6
6
|
"author": "Vinicius Goulart <vinicius.goulart@camunda.com>",
|