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 +1 -2
- package/dist/cli/cli.mjs +1 -2
- package/package.json +1 -1
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("
|
|
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("
|
|
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
|
)
|