@ronin/compiler 0.12.3-leo-ron-1071-experimental-253 → 0.12.4-leo-ron-1071-experimental-254

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.d.ts CHANGED
@@ -15671,8 +15671,8 @@ declare class Transaction {
15671
15671
  */
15672
15672
  private compileQueries;
15673
15673
  private formatRows;
15674
- formatResults(results: Array<Array<RawRow>>, raw?: true): Array<Result>;
15675
- formatResults(results: Array<Array<ObjectRow>>, raw?: false): Array<Result>;
15674
+ formatResults<T>(results: Array<Array<RawRow>>, raw?: true): Array<Result<T>>;
15675
+ formatResults<T>(results: Array<Array<ObjectRow>>, raw?: false): Array<Result<T>>;
15676
15676
  }
15677
15677
 
15678
15678
  declare const CLEAN_ROOT_MODEL: PublicModel;
package/dist/index.js CHANGED
@@ -1654,7 +1654,11 @@ var Transaction = class {
1654
1654
  usableRowIndex = 0;
1655
1655
  }
1656
1656
  }
1657
- records[usableRowIndex] = setProperty(records[usableRowIndex], newSlug, newValue);
1657
+ records[usableRowIndex] = setProperty(
1658
+ records[usableRowIndex],
1659
+ newSlug,
1660
+ newValue
1661
+ );
1658
1662
  }
1659
1663
  }
1660
1664
  return single ? records[0] : records;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ronin/compiler",
3
- "version": "0.12.3-leo-ron-1071-experimental-253",
3
+ "version": "0.12.4-leo-ron-1071-experimental-254",
4
4
  "type": "module",
5
5
  "description": "Compiles RONIN queries to SQL statements.",
6
6
  "publishConfig": {