sasat 0.20.2 → 0.20.4

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/cli/cli.cjs CHANGED
@@ -3544,9 +3544,8 @@ const makeConditionExpr = (entity, condition) => {
3544
3544
  );
3545
3545
  }
3546
3546
  if (condition.operator === "IN") {
3547
- return qExpr.property("comparison").call(
3547
+ return qExpr.property("in").call(
3548
3548
  makeJoinConditionValueQExpr(entity, condition.left),
3549
- tsg.string(condition.operator),
3550
3549
  tsg.array(
3551
3550
  condition.right.map((it) => makeJoinConditionValueQExpr(entity, it))
3552
3551
  )
package/dist/cli/cli.mjs CHANGED
@@ -3520,9 +3520,8 @@ const makeConditionExpr = (entity, condition) => {
3520
3520
  );
3521
3521
  }
3522
3522
  if (condition.operator === "IN") {
3523
- return qExpr.property("comparison").call(
3523
+ return qExpr.property("in").call(
3524
3524
  makeJoinConditionValueQExpr(entity, condition.left),
3525
- tsg.string(condition.operator),
3526
3525
  tsg.array(
3527
3526
  condition.right.map((it) => makeJoinConditionValueQExpr(entity, it))
3528
3527
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sasat",
3
- "version": "0.20.2",
3
+ "version": "0.20.4",
4
4
  "repository": "https://github.com/nin138/sasat.git",
5
5
  "author": "nin138 <ninian138@gmail.com>",
6
6
  "license": "MIT",