@ronin/compiler 0.17.22-leo-ron-1140-experimental-434 → 0.17.22-leo-ron-1140-experimental-435

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 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2209,7 +2209,7 @@ var Transaction = class {
2209
2209
  }
2210
2210
  return { query, index };
2211
2211
  });
2212
- for (const { query, index, resultingFromExpansion } of expandedQueries) {
2212
+ for (const { query, index, expansion } of expandedQueries) {
2213
2213
  const { dependencies, main, selectedFields, model, updatedQuery } = compileQueryInput(
2214
2214
  query,
2215
2215
  modelsWithPresets,
@@ -2223,7 +2223,7 @@ var Transaction = class {
2223
2223
  this.statements.push(...subStatements);
2224
2224
  this.#internalQueries[index].selectedFields.push(selectedFields);
2225
2225
  this.#internalQueries[index].models.push(model);
2226
- if (!resultingFromExpansion) this.#internalQueries[index].query = updatedQuery;
2226
+ if (!expansion) this.#internalQueries[index].query = updatedQuery;
2227
2227
  }
2228
2228
  this.models = modelsWithPresets;
2229
2229
  return statements;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ronin/compiler",
3
- "version": "0.17.22-leo-ron-1140-experimental-434",
3
+ "version": "0.17.22-leo-ron-1140-experimental-435",
4
4
  "type": "module",
5
5
  "description": "Compiles RONIN queries to SQL statements.",
6
6
  "publishConfig": {