rez_core 3.1.184 → 3.1.186

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.184",
3
+ "version": "3.1.186",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -148,7 +148,7 @@ export class FieldMapperService extends EntityServiceImpl {
148
148
 
149
149
  if (targetEntityIds.length > 0) {
150
150
  if (filterCode && filterCode !== 'default') {
151
- inMemory[entityType][filterCode] =
151
+ let filterResponse =
152
152
  await this.filterService.applyFilterWrapper({
153
153
  entity_type: entityType,
154
154
  savedFilterCode: filterCode,
@@ -164,6 +164,16 @@ export class FieldMapperService extends EntityServiceImpl {
164
164
  loggedInUser: userData,
165
165
  queryParams: {},
166
166
  });
167
+
168
+ this.loggingService.log(
169
+ 'package',
170
+ 'fieldMapperService',
171
+ 'filterResponse',
172
+ `${filterResponse}`,
173
+ );
174
+
175
+ inMemory[entityType][filterCode] =
176
+ filterResponse?.data?.entity_list[0];
167
177
  } else {
168
178
  const firstId = targetEntityIds[0];
169
179
  inMemory[entityType][filterCode] =
@@ -65,4 +65,7 @@ export class UserData extends BaseEntity {
65
65
 
66
66
  @Column({ type: 'varchar', nullable: true })
67
67
  os: string;
68
+
69
+ @Column({ type: 'varchar', nullable: true })
70
+ profile_image: string;
68
71
  }
@@ -257,7 +257,7 @@ export class StageGroupService extends EntityServiceImpl {
257
257
  }
258
258
 
259
259
  return {
260
- created_by_name: user[0].created_by_name,
260
+ created_by_name: user[0].name,
261
261
  profile: profile,
262
262
  };
263
263
  }