@stackwright-services/compiler 0.4.0 → 0.5.0

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/dist/index.mjs CHANGED
@@ -1561,6 +1561,9 @@ function predicateToChoiceRule(predicate) {
1561
1561
  case "less_than_field":
1562
1562
  case "greater_than_field":
1563
1563
  case "equals_field":
1564
+ case "not_equals_field":
1565
+ case "less_than_or_equal_field":
1566
+ case "greater_than_or_equal_field":
1564
1567
  return { Variable: variable, StringEquals: `__UNSUPPORTED_FIELD_OP_${predicate.op}__` };
1565
1568
  }
1566
1569
  }