@things-factory/product-base 4.3.94 → 4.3.98

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.
@@ -332,7 +332,7 @@ function buildCustomConditions(params, context, bizplaces) {
332
332
  { name: 'deletedAt', operator: (deletedFilter === null || deletedFilter === void 0 ? void 0 : deletedFilter.value) ? 'is_not_null' : 'is_null' },
333
333
  { name: 'bizplace_id', operator: 'in', value: bizplaces.map(bizplace => bizplace.id) }
334
334
  ];
335
- const qb = (0, typeorm_1.getRepository)(product_1.Product).createQueryBuilder('Product');
335
+ const qb = (0, typeorm_1.getRepository)(product_1.Product).createQueryBuilder('product');
336
336
  (0, shell_1.buildQuery)(qb, params, context, false);
337
337
  if (productFilters) {
338
338
  qb.andWhere(new typeorm_1.Brackets(qb2 => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/product-base",
3
- "version": "4.3.94",
3
+ "version": "4.3.98",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -24,8 +24,8 @@
24
24
  "migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
25
25
  },
26
26
  "dependencies": {
27
- "@things-factory/biz-base": "^4.3.94",
28
- "@things-factory/routing-base": "^4.3.94"
27
+ "@things-factory/biz-base": "^4.3.96",
28
+ "@things-factory/routing-base": "^4.3.96"
29
29
  },
30
- "gitHead": "cce6db86fba56ab1ad7b050f67f0ad013bad87f3"
30
+ "gitHead": "1651b6d77b4288f32498e6259551c0dff5e30105"
31
31
  }
@@ -264,7 +264,7 @@ function buildCustomConditions(params, context, bizplaces): SelectQueryBuilder<P
264
264
  { name: 'bizplace_id', operator: 'in', value: bizplaces.map(bizplace => bizplace.id) }
265
265
  ]
266
266
 
267
- const qb: SelectQueryBuilder<Product> = getRepository(Product).createQueryBuilder('Product')
267
+ const qb: SelectQueryBuilder<Product> = getRepository(Product).createQueryBuilder('product')
268
268
 
269
269
  buildQuery(qb, params, context, false)
270
270
  if (productFilters) {