@yuuvis/client-core 2.1.7 → 2.1.9

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.
@@ -251,13 +251,15 @@ class DmsObject {
251
251
  this.created = {
252
252
  on: searchResultItem.fields.get(BaseObjectTypeField.CREATION_DATE),
253
253
  by: {
254
- id: searchResultItem.fields.get(BaseObjectTypeField.CREATED_BY)
254
+ id: searchResultItem.fields.get(BaseObjectTypeField.CREATED_BY),
255
+ title: searchResultItem.fields.get(BaseObjectTypeField.CREATED_BY + '_title')
255
256
  }
256
257
  };
257
258
  this.modified = {
258
259
  on: searchResultItem.fields.get(BaseObjectTypeField.MODIFICATION_DATE),
259
260
  by: {
260
- id: searchResultItem.fields.get(BaseObjectTypeField.MODIFIED_BY)
261
+ id: searchResultItem.fields.get(BaseObjectTypeField.MODIFIED_BY),
262
+ title: searchResultItem.fields.get(BaseObjectTypeField.MODIFIED_BY + '_title')
261
263
  }
262
264
  };
263
265
  if (searchResultItem.content) {