@camunda8/orchestration-cluster-api 9.1.2 → 9.1.3

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.
@@ -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-BU5BWYUA.js.map
8291
+ //# sourceMappingURL=zod.gen-I6G7OTVZ.js.map