rez_core 3.1.14 → 3.1.15

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": "3.1.14",
3
+ "version": "3.1.15",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -48,6 +48,8 @@ export class FilterController {
48
48
  sortby,
49
49
  } = body;
50
50
 
51
+
52
+
51
53
  return this.filterService.applyFilterWrapper({
52
54
  entity_type,
53
55
  quickFilter,
@@ -9,6 +9,7 @@ export interface FilterCondition {
9
9
  filter_attribute_name?: string; // NEW - main/sub entity type (e.g. LEAD, CONTACT, ORG)
10
10
  filter_attribute_data_type?: string;
11
11
  filter_entity_name?: string;
12
+ datasource_list?: string; // NEW - for attributes from different datasource
12
13
  }
13
14
 
14
15
  export interface TabsConfig {
@@ -80,6 +80,8 @@ export class FilterService {
80
80
  attributeFilter = [],
81
81
  } = dto;
82
82
 
83
+ console.log(dto,"APPLY FILTER WRAPPER DTO");
84
+
83
85
  // 🔹 Step 1: Collect all filters (from body + savedFilter)
84
86
  const savedFilters = await this.getSavedFilters(
85
87
  savedFilterCode ?? undefined,