@things-factory/product-base 4.3.96 → 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('
|
|
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.
|
|
3
|
+
"version": "4.3.98",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"@things-factory/biz-base": "^4.3.96",
|
|
28
28
|
"@things-factory/routing-base": "^4.3.96"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
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('
|
|
267
|
+
const qb: SelectQueryBuilder<Product> = getRepository(Product).createQueryBuilder('product')
|
|
268
268
|
|
|
269
269
|
buildQuery(qb, params, context, false)
|
|
270
270
|
if (productFilters) {
|