@eo-sdk/client 7.16.8 → 7.16.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.
@@ -7,11 +7,12 @@ export declare class ObjectHistoryComponent extends UnsubscribeOnDestroy {
7
7
  private cd;
8
8
  private eventService;
9
9
  _params: DmsParams;
10
- _history: DmsObjectHistoryEntry[];
11
- history: DmsObjectHistoryEntry[];
10
+ private _history;
12
11
  filters: string[];
13
12
  filterterm: string;
14
13
  visibleFilter: IVisibleFilter;
14
+ set history(historyObj: DmsObjectHistoryEntry[]);
15
+ get history(): DmsObjectHistoryEntry[];
15
16
  set params(p: DmsParams);
16
17
  get params(): DmsParams;
17
18
  constructor(dmsService: DmsService, cd: ChangeDetectorRef, eventService: EventService);
@@ -4581,13 +4581,15 @@
4581
4581
  modified: dmsObject.modified,
4582
4582
  lock: !dmsObject.lock ? 'NOT_LOCKED' : dmsObject.lock.by.me ? 'LOCKED_BY_SESSION_USER' : 'LOCKED_BY_OTHER_USER',
4583
4583
  lockinfo: dmsObject.lock ? { username: dmsObject.lock.by.name, usertitle: dmsObject.lock.by.label, time: dmsObject.lock.on } : null,
4584
- rights: [{ privileges: {
4584
+ rights: [{
4585
+ privileges: {
4585
4586
  select: dmsObject.rights.select,
4586
4587
  edit: dmsObject.rights.edit,
4587
4588
  delete: dmsObject.rights.delete,
4588
4589
  finalize: dmsObject.rights.finalize,
4589
4590
  recycle: dmsObject.rights.recycle
4590
- } }],
4591
+ }
4592
+ }],
4591
4593
  contentid: dmsObject.content ? dmsObject.content.id : null,
4592
4594
  contenttype: dmsObject.content ? dmsObject.content.type : null,
4593
4595
  contentcount: dmsObject.content ? dmsObject.content.count : null,