rez_core 2.2.236 → 2.2.238

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "2.2.236",
3
+ "version": "2.2.238",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -23,6 +23,7 @@ export class FilterEvaluatorService {
23
23
  savedFilterCode: string,
24
24
  ): Promise<boolean> {
25
25
  // Fetch trigger filter details
26
+ console.log("IN FILTER EVALUATOR SERVICE");
26
27
  const triggerFilters: SavedFilterDetail[] = await this.dataSource.query(
27
28
  `SELECT *
28
29
  FROM cr_saved_filter_detail
@@ -47,6 +48,7 @@ export class FilterEvaluatorService {
47
48
  const oldVal = oldState[attr];
48
49
  const newVal = newEntity[attr];
49
50
 
51
+ console.log(oldVal, newVal, expectedValue, 'comparing values');
50
52
  // If value changed and (no expected value defined OR matches expected)
51
53
  if (oldVal !== newVal && (!expectedValue || newVal == expectedValue)) {
52
54
  return true;