@dascompany/database 3.0.3 → 3.1.0

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.
@@ -1,12 +1,10 @@
1
- import ResultsCorrector from './ResultsCorrector';
2
1
  export default class Result {
3
2
  pgResult;
4
3
  constructor(pgResult) {
5
4
  this.pgResult = pgResult;
6
5
  }
7
6
  getRows() {
8
- const rows = this.pgResult.rows;
9
- return ResultsCorrector.correctRows(rows);
7
+ return this.pgResult.rows;
10
8
  }
11
9
  getRow() {
12
10
  if (this.getRowCount() > 0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dascompany/database",
3
- "version": "3.0.3",
3
+ "version": "3.1.0",
4
4
  "main": "dist/index.js",
5
5
  "scripts": {
6
6
  "test": "vitest",