pg-manipulator 1.0.20 → 1.0.22

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.
@@ -120,6 +120,7 @@ class select_factory {
120
120
  prepare() {
121
121
  return __awaiter(this, void 0, void 0, function* () {
122
122
  var _a;
123
+ console.log(this.fields);
123
124
  this.schema = (yield Promise.resolve(`${`../../mapping/${this.database}/${this.table}.js`}`).then(s => __importStar(require(s)))).default;
124
125
  this.params = [];
125
126
  this.query += 'SELECT ';
@@ -190,7 +191,6 @@ class select_factory {
190
191
  }
191
192
  }
192
193
  }
193
- console.log(this.query, this.params);
194
194
  return [this.query, this.params];
195
195
  });
196
196
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-manipulator",
3
- "version": "1.0.20",
3
+ "version": "1.0.22",
4
4
  "description": "postgresql database handler",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",