@camunda8/orchestration-cluster-api 9.1.0 → 9.1.1

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.
@@ -1830,7 +1830,9 @@ var zDecisionEvaluationInstruction = z.union([
1830
1830
  zDecisionEvaluationById,
1831
1831
  zDecisionEvaluationByKey
1832
1832
  ]);
1833
- var zDecisionEvaluationInstanceKey = zLongKey;
1833
+ var zDecisionEvaluationInstanceKey = z.string().min(3).max(30).regex(/^[0-9]+-[0-9]+$/).register(z.globalRegistry, {
1834
+ description: "System-generated identifier for a decision evaluation instance. It is composed of the\nparent decision evaluation key and the 1-based index of the evaluated decision within\nthat evaluation, joined by a hyphen (format: `<decisionEvaluationKey>-<index>`).\n"
1835
+ });
1834
1836
  var zEvaluatedDecisionResult = z.object({
1835
1837
  decisionDefinitionId: zDecisionDefinitionId,
1836
1838
  decisionDefinitionName: z.string().register(z.globalRegistry, {
@@ -8274,4 +8276,4 @@ export {
8274
8276
  zVariableSearchResult,
8275
8277
  zVariableValueFilterProperty
8276
8278
  };
8277
- //# sourceMappingURL=zod.gen-J3DNBFMQ.js.map
8279
+ //# sourceMappingURL=zod.gen-BU5BWYUA.js.map