@camunda8/orchestration-cluster-api 10.0.0-alpha.13 → 10.0.0-alpha.14
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/CHANGELOG.md +7 -0
- package/dist/{chunk-DXAJ2KS4.js → chunk-IV7WMOID.js} +77 -3
- package/dist/chunk-IV7WMOID.js.map +1 -0
- package/dist/fp/index.cjs +111 -2
- 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-DVAV_u0f.d.ts → index-BNm2kRb2.d.ts} +121 -1
- package/dist/{index-D-gpJ9NR.d.cts → index-DIIosqf7.d.cts} +121 -1
- package/dist/index.cjs +112 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/{zod.gen-E45JJSLK.js → zod.gen-7PI6QBPP.js} +36 -1
- package/dist/zod.gen-7PI6QBPP.js.map +1 -0
- package/package.json +4 -4
- package/dist/chunk-DXAJ2KS4.js.map +0 -1
- package/dist/zod.gen-E45JJSLK.js.map +0 -1
|
@@ -2242,6 +2242,10 @@ var zActivatedJobResult = z.object({
|
|
|
2242
2242
|
zProcessInstanceKey,
|
|
2243
2243
|
z.null()
|
|
2244
2244
|
]),
|
|
2245
|
+
businessId: z.union([
|
|
2246
|
+
zBusinessId,
|
|
2247
|
+
z.null()
|
|
2248
|
+
]),
|
|
2245
2249
|
priority: z.int().register(z.globalRegistry, {
|
|
2246
2250
|
description: "The priority of the job. Higher values indicate higher priority. Jobs created before 8.10 have no stored priority; the API returns 0 for such jobs.\n"
|
|
2247
2251
|
})
|
|
@@ -2299,6 +2303,10 @@ var zJobSearchResult = z.object({
|
|
|
2299
2303
|
zProcessInstanceKey,
|
|
2300
2304
|
z.null()
|
|
2301
2305
|
]),
|
|
2306
|
+
businessId: z.union([
|
|
2307
|
+
zBusinessId,
|
|
2308
|
+
z.null()
|
|
2309
|
+
]),
|
|
2302
2310
|
retries: z.int().register(z.globalRegistry, {
|
|
2303
2311
|
description: "The amount of retries left to this job."
|
|
2304
2312
|
}),
|
|
@@ -3705,6 +3713,21 @@ var zProcessInstanceElementStatisticsQueryResult = z.object({
|
|
|
3705
3713
|
}).register(z.globalRegistry, {
|
|
3706
3714
|
description: "Process instance element statistics query response."
|
|
3707
3715
|
});
|
|
3716
|
+
var zProcessInstanceWaitStateStatisticsResult = z.object({
|
|
3717
|
+
elementId: zElementId,
|
|
3718
|
+
waitingCount: z.coerce.number().int().register(z.globalRegistry, {
|
|
3719
|
+
description: "The total number of waiting instances of the element."
|
|
3720
|
+
})
|
|
3721
|
+
}).register(z.globalRegistry, {
|
|
3722
|
+
description: "Process instance wait state statistics response item."
|
|
3723
|
+
});
|
|
3724
|
+
var zProcessInstanceWaitStateStatisticsQueryResult = z.object({
|
|
3725
|
+
items: z.array(zProcessInstanceWaitStateStatisticsResult).register(z.globalRegistry, {
|
|
3726
|
+
description: "The wait state statistics."
|
|
3727
|
+
})
|
|
3728
|
+
}).register(z.globalRegistry, {
|
|
3729
|
+
description: "Process instance wait state statistics query response."
|
|
3730
|
+
});
|
|
3708
3731
|
var zMigrateProcessInstanceMappingInstruction = z.object({
|
|
3709
3732
|
sourceElementId: zElementId,
|
|
3710
3733
|
targetElementId: zElementId
|
|
@@ -7408,6 +7431,14 @@ var zGetProcessInstanceStatisticsData = z.object({
|
|
|
7408
7431
|
query: z.optional(z.never())
|
|
7409
7432
|
});
|
|
7410
7433
|
var zGetProcessInstanceStatisticsResponse = zProcessInstanceElementStatisticsQueryResult;
|
|
7434
|
+
var zGetProcessInstanceWaitStateStatisticsData = z.object({
|
|
7435
|
+
body: z.optional(z.never()),
|
|
7436
|
+
path: z.object({
|
|
7437
|
+
processInstanceKey: zProcessInstanceKey
|
|
7438
|
+
}),
|
|
7439
|
+
query: z.optional(z.never())
|
|
7440
|
+
});
|
|
7441
|
+
var zGetProcessInstanceWaitStateStatisticsResponse = zProcessInstanceWaitStateStatisticsQueryResult;
|
|
7411
7442
|
var zSearchResourcesData = z.object({
|
|
7412
7443
|
body: z.optional(zResourceSearchQuery),
|
|
7413
7444
|
path: z.optional(z.never()),
|
|
@@ -8488,6 +8519,8 @@ export {
|
|
|
8488
8519
|
zGetProcessInstanceStatisticsByErrorResponse,
|
|
8489
8520
|
zGetProcessInstanceStatisticsData,
|
|
8490
8521
|
zGetProcessInstanceStatisticsResponse,
|
|
8522
|
+
zGetProcessInstanceWaitStateStatisticsData,
|
|
8523
|
+
zGetProcessInstanceWaitStateStatisticsResponse,
|
|
8491
8524
|
zGetResourceContentBinaryData,
|
|
8492
8525
|
zGetResourceContentBinaryResponse,
|
|
8493
8526
|
zGetResourceContentData,
|
|
@@ -8748,6 +8781,8 @@ export {
|
|
|
8748
8781
|
zProcessInstanceStateEnum,
|
|
8749
8782
|
zProcessInstanceStateExactMatch,
|
|
8750
8783
|
zProcessInstanceStateFilterProperty,
|
|
8784
|
+
zProcessInstanceWaitStateStatisticsQueryResult,
|
|
8785
|
+
zProcessInstanceWaitStateStatisticsResult,
|
|
8751
8786
|
zPublishMessageData,
|
|
8752
8787
|
zPublishMessageResponse,
|
|
8753
8788
|
zResetClockData,
|
|
@@ -9042,4 +9077,4 @@ export {
|
|
|
9042
9077
|
zWaitStateTypeFilterProperty,
|
|
9043
9078
|
zWebappComponent
|
|
9044
9079
|
};
|
|
9045
|
-
//# sourceMappingURL=zod.gen-
|
|
9080
|
+
//# sourceMappingURL=zod.gen-7PI6QBPP.js.map
|