tg-client-query-builder 2.14.1 → 2.14.2

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.
@@ -207,6 +207,7 @@ module.exports = function () {
207
207
  entity: subQuery.entity,
208
208
  foreignKey: subQuery.foreignKey,
209
209
  modifier: subQuery.modifier,
210
+ isArrayRelation: subQuery.isArrayRelation,
210
211
  filters: [],
211
212
  countExpression: undefined
212
213
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tg-client-query-builder",
3
- "version": "2.14.1",
3
+ "version": "2.14.2",
4
4
  "description": "Teselagen Client Side (browser) SQL Query Builder",
5
5
  "main": "build/query-builder/index.js",
6
6
  "repository": "https://github.com/TeselaGen/tg-query.git",
@@ -8,7 +8,8 @@
8
8
  "license": "ISC",
9
9
  "scripts": {
10
10
  "prepublishOnly": "yarn build",
11
- "build": "babel --presets=es2015 query-builder/ --out-dir build/query-builder/"
11
+ "build": "babel --presets=es2015 query-builder/ --out-dir build/query-builder/",
12
+ "test": "jest"
12
13
  },
13
14
  "dependencies": {
14
15
  "lodash": "^4.17.4"
@@ -18,6 +19,7 @@
18
19
  "babel-preset-latest": "^6.24.1",
19
20
  "chai": "^4.0.2",
20
21
  "fs-extra": "^3.0.1",
22
+ "jest": "^28.1.2",
21
23
  "json-beautify": "^1.0.1",
22
24
  "json-format": "^1.0.1",
23
25
  "jsonfile": "^3.0.0"
@@ -234,6 +234,7 @@ module.exports = (function () {
234
234
  entity: subQuery.entity,
235
235
  foreignKey: subQuery.foreignKey,
236
236
  modifier: subQuery.modifier,
237
+ isArrayRelation: subQuery.isArrayRelation,
237
238
  filters: [],
238
239
  countExpression: undefined,
239
240
  };