@stackwright-services/compiler 0.3.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.js CHANGED
@@ -1610,6 +1610,9 @@ function predicateToChoiceRule(predicate) {
1610
1610
  case "less_than_field":
1611
1611
  case "greater_than_field":
1612
1612
  case "equals_field":
1613
+ case "not_equals_field":
1614
+ case "less_than_or_equal_field":
1615
+ case "greater_than_or_equal_field":
1613
1616
  return { Variable: variable, StringEquals: `__UNSUPPORTED_FIELD_OP_${predicate.op}__` };
1614
1617
  }
1615
1618
  }