@eo-sdk/client 7.16.8 → 7.16.11
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/app/eo-framework/object-details/object-history/object-history.component.d.ts +3 -2
- package/app/eo-framework-core/api/plugins.service.d.ts +3 -2
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +7 -5
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js.map +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js.map +1 -1
- package/bundles/eo-sdk-client.umd.js +35 -21
- package/bundles/eo-sdk-client.umd.js.map +1 -1
- package/bundles/eo-sdk-client.umd.min.js +1 -1
- package/bundles/eo-sdk-client.umd.min.js.map +1 -1
- package/eo-sdk-client.metadata.json +1 -1
- package/esm2015/app/eo-client/about-state/about-state.component.js +3 -3
- package/esm2015/app/eo-framework/inbox-details/inbox-details.component.js +5 -6
- package/esm2015/app/eo-framework/object-details/object-history/object-history.component.js +14 -7
- package/esm2015/app/eo-framework/object-form/object-form/object-form.component.js +2 -2
- package/esm2015/app/eo-framework/process/details/process-details.component.js +6 -9
- package/esm2015/app/eo-framework/process/history/process-history.component.js +2 -2
- package/esm2015/app/eo-framework-core/api/plugins.service.js +10 -3
- package/esm2015/projects/eo-sdk/core/lib/model/dms-object-history.model.js +1 -1
- package/esm2015/projects/eo-sdk/core/lib/service/bpm/bpm.service.js +1 -1
- package/esm2015/projects/eo-sdk/core/lib/service/dms/dms.service.js +5 -3
- package/esm2015/projects/eo-sdk/core/lib/service/search/search.service.js +4 -4
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +7 -5
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
- package/fesm2015/eo-sdk-client.js +32 -22
- package/fesm2015/eo-sdk-client.js.map +1 -1
- package/package.json +2 -2
- package/projects/eo-sdk/core/package.json +1 -1
|
@@ -7,11 +7,12 @@ export declare class ObjectHistoryComponent extends UnsubscribeOnDestroy {
|
|
|
7
7
|
private cd;
|
|
8
8
|
private eventService;
|
|
9
9
|
_params: DmsParams;
|
|
10
|
-
_history
|
|
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);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { NgZone } from '@angular/core';
|
|
1
|
+
import { ApplicationRef, NgZone } from '@angular/core';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { AgentService } from '../agent/agent.service';
|
|
4
4
|
import { EoUser, Logger, NotificationsService, BackendService, ClipboardService, DmsService, EventService, UserService, DmsObject, TranslateService, HttpOptions } from '@eo-sdk/core';
|
|
@@ -14,13 +14,14 @@ export declare class PluginsService {
|
|
|
14
14
|
private agentService;
|
|
15
15
|
private eventService;
|
|
16
16
|
private userService;
|
|
17
|
+
private appRef;
|
|
17
18
|
private ngZone;
|
|
18
19
|
private user;
|
|
19
20
|
private agentAction;
|
|
20
21
|
get currentUrl(): string;
|
|
21
22
|
get api(): any;
|
|
22
23
|
applyFunction(value: string | Function | any, params?: string, args?: any): any;
|
|
23
|
-
constructor(backend: BackendService, notifications: NotificationsService, clipboard: ClipboardService, logger: Logger, translate: TranslateService, dmsService: DmsService, router: Router, agentService: AgentService, eventService: EventService, userService: UserService, ngZone: NgZone);
|
|
24
|
+
constructor(backend: BackendService, notifications: NotificationsService, clipboard: ClipboardService, logger: Logger, translate: TranslateService, dmsService: DmsService, router: Router, agentService: AgentService, eventService: EventService, userService: UserService, appRef: ApplicationRef, ngZone: NgZone);
|
|
24
25
|
getApi(): any;
|
|
25
26
|
getAgentAvailability(): Promise<string>;
|
|
26
27
|
executeAgentAction(action: any, args: any): void;
|
|
@@ -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: [{
|
|
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,
|
|
@@ -5479,13 +5481,13 @@
|
|
|
5479
5481
|
return this.backend
|
|
5480
5482
|
.post('/export', queryJson, this.backend.getSearchBase(), {
|
|
5481
5483
|
observe: 'response',
|
|
5482
|
-
responseType: '
|
|
5484
|
+
responseType: 'blob'
|
|
5483
5485
|
})
|
|
5484
5486
|
.pipe(operators.tap(function (res) {
|
|
5485
5487
|
var blob = new Blob([res.body], {
|
|
5486
|
-
type: 'text/
|
|
5488
|
+
type: 'text/csv;charset=utf-8'
|
|
5487
5489
|
});
|
|
5488
|
-
FileSaver.saveAs(blob, _this.getFileNameFromHttpResponse(res));
|
|
5490
|
+
FileSaver.saveAs(blob, _this.getFileNameFromHttpResponse(res), { autoBom: true });
|
|
5489
5491
|
}));
|
|
5490
5492
|
};
|
|
5491
5493
|
SearchService.prototype.getFileNameFromHttpResponse = function (res) {
|