rez_core 2.2.234 → 2.2.236
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.
- package/dist/module/filter/service/filter-evaluator.service.js +2 -0
- package/dist/module/filter/service/filter-evaluator.service.js.map +1 -1
- package/dist/module/workflow-automation/entity/workflow-automation.entity.d.ts +1 -0
- package/dist/module/workflow-automation/entity/workflow-automation.entity.js +4 -0
- package/dist/module/workflow-automation/entity/workflow-automation.entity.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/filter/service/filter-evaluator.service.ts +4 -0
- package/src/module/workflow-automation/entity/workflow-automation.entity.ts +3 -0
package/package.json
CHANGED
|
@@ -30,6 +30,8 @@ export class FilterEvaluatorService {
|
|
|
30
30
|
[savedFilterCode],
|
|
31
31
|
);
|
|
32
32
|
|
|
33
|
+
console.log(triggerFilters, 'triggerFilters');
|
|
34
|
+
|
|
33
35
|
// If no trigger filters defined, just return true (so criteria can run)
|
|
34
36
|
if (!triggerFilters || triggerFilters.length === 0) {
|
|
35
37
|
return true;
|
|
@@ -79,6 +81,8 @@ export class FilterEvaluatorService {
|
|
|
79
81
|
loggedInUser: loggedInUser || { organization_id: null },
|
|
80
82
|
} as any;
|
|
81
83
|
|
|
84
|
+
console.log(filterRequest, 'filterRequest');
|
|
85
|
+
|
|
82
86
|
const result = await this.filterService.applyFilter(filterRequest);
|
|
83
87
|
|
|
84
88
|
return result?.data?.entity_list?.length > 0;
|