@camunda8/orchestration-cluster-api 9.1.2 → 9.1.4
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 +17 -0
- package/dist/{chunk-WSCXETVI.js → chunk-4NRTES5E.js} +3 -3
- package/dist/{chunk-WSCXETVI.js.map → chunk-4NRTES5E.js.map} +1 -1
- package/dist/fp/index.cjs +13 -1
- 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-DcisxmIq.d.ts → index-CJBSKpFZ.d.ts} +21 -0
- package/dist/{index-BKWpoAzp.d.cts → index-DKqh2mnN.d.cts} +21 -0
- package/dist/index.cjs +14 -2
- 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-BU5BWYUA.js → zod.gen-I6G7OTVZ.js} +13 -1
- package/dist/zod.gen-I6G7OTVZ.js.map +1 -0
- package/package.json +11 -8
- package/dist/zod.gen-BU5BWYUA.js.map +0 -1
|
@@ -2798,6 +2798,12 @@ var zProcessDefinitionFilter = z.object({
|
|
|
2798
2798
|
processDefinitionKey: z.optional(zProcessDefinitionKey),
|
|
2799
2799
|
hasStartForm: z.optional(z.boolean().register(z.globalRegistry, {
|
|
2800
2800
|
description: "Indicates whether the start event of the process has an associated Form Key."
|
|
2801
|
+
})),
|
|
2802
|
+
state: z.optional(z.enum([
|
|
2803
|
+
"ACTIVE",
|
|
2804
|
+
"DELETED"
|
|
2805
|
+
]).register(z.globalRegistry, {
|
|
2806
|
+
description: "Filter by the process definition's state.\nWhen not set, process definitions in any state are returned.\nSet to `ACTIVE` to exclude deleted definitions (recommended for most use cases).\nSet to `DELETED` to return only definitions that have been deleted but are still\nretained in secondary storage.\n"
|
|
2801
2807
|
}))
|
|
2802
2808
|
}).register(z.globalRegistry, {
|
|
2803
2809
|
description: "Process definition search filter."
|
|
@@ -2822,6 +2828,12 @@ var zProcessDefinitionResult = z.object({
|
|
|
2822
2828
|
processDefinitionKey: zProcessDefinitionKey,
|
|
2823
2829
|
hasStartForm: z.boolean().register(z.globalRegistry, {
|
|
2824
2830
|
description: "Indicates whether the start event of the process has an associated Form Key."
|
|
2831
|
+
}),
|
|
2832
|
+
state: z.enum([
|
|
2833
|
+
"ACTIVE",
|
|
2834
|
+
"DELETED"
|
|
2835
|
+
]).register(z.globalRegistry, {
|
|
2836
|
+
description: "The state of this process definition."
|
|
2825
2837
|
})
|
|
2826
2838
|
});
|
|
2827
2839
|
var zProcessElementStatisticsResult = z.object({
|
|
@@ -8276,4 +8288,4 @@ export {
|
|
|
8276
8288
|
zVariableSearchResult,
|
|
8277
8289
|
zVariableValueFilterProperty
|
|
8278
8290
|
};
|
|
8279
|
-
//# sourceMappingURL=zod.gen-
|
|
8291
|
+
//# sourceMappingURL=zod.gen-I6G7OTVZ.js.map
|