@orkestrel/workflow 0.0.5 → 0.0.6

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.
@@ -2624,7 +2624,8 @@ function createWorkflowContract() {
2624
2624
  schema: contract.schema,
2625
2625
  is: contract.is,
2626
2626
  generate: (random) => contract.generate(random),
2627
- parse: (value) => contract.parse(value)
2627
+ parse: (value) => contract.parse(value),
2628
+ explain: (value) => contract.explain(value)
2628
2629
  };
2629
2630
  }
2630
2631
  /**