@ronin/compiler 0.17.4-corny-ron-1099-experimental-382 → 0.17.4-corny-ron-1099-experimental-383

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1988,7 +1988,8 @@ var transformMetaQuery = (models, dependencyStatements, statementParams, query,
1988
1988
  }
1989
1989
  const effectStatements = trigger.effects.map((effectQuery) => {
1990
1990
  return compileQueryInput(
1991
- QUERY_SYMBOLS.QUERY in effectQuery ? effectQuery[QUERY_SYMBOLS.QUERY] : effectQuery,
1991
+ // @ts-expect-error - The query is always wrapped in a `QUERY_SYMBOLS.QUERY` object.
1992
+ effectQuery[QUERY_SYMBOLS.QUERY],
1992
1993
  models,
1993
1994
  null,
1994
1995
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ronin/compiler",
3
- "version": "0.17.4-corny-ron-1099-experimental-382",
3
+ "version": "0.17.4-corny-ron-1099-experimental-383",
4
4
  "type": "module",
5
5
  "description": "Compiles RONIN queries to SQL statements.",
6
6
  "publishConfig": {