@alfresco/adf-process-services-cloud 8.4.0-20228053421 → 8.4.0-20231252899
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/fesm2022/adf-process-services-cloud.mjs +10 -16
- package/fesm2022/adf-process-services-cloud.mjs.map +1 -1
- package/lib/process/process-filters/services/process-filter-cloud.service.d.ts +5 -3
- package/lib/task/task-filters/services/service-task-filter-cloud.service.d.ts +5 -6
- package/lib/task/task-filters/services/task-filter-cloud.service.d.ts +4 -4
- package/package.json +4 -4
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { ProcessFilterCloudModel } from '../models/process-filter-cloud.model';
|
|
3
|
+
import { PreferenceCloudServiceInterface } from '../../../services/preference-cloud.interface';
|
|
4
|
+
import { IdentityUserService } from '../../../people/services/identity-user.service';
|
|
3
5
|
import { TaskCloudEngineEvent } from '../../../models/engine-event-cloud.model';
|
|
4
6
|
import * as i0 from "@angular/core";
|
|
5
7
|
export declare class ProcessFilterCloudService {
|
|
@@ -7,8 +9,8 @@ export declare class ProcessFilterCloudService {
|
|
|
7
9
|
filters$: Observable<ProcessFilterCloudModel[]>;
|
|
8
10
|
private filterKeyToBeRefreshedSource;
|
|
9
11
|
filterKeyToBeRefreshed$: Observable<string>;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
+
protected readonly preferenceService: PreferenceCloudServiceInterface;
|
|
13
|
+
protected readonly identityUserService: IdentityUserService;
|
|
12
14
|
private readonly notificationCloudService;
|
|
13
15
|
constructor();
|
|
14
16
|
readQueryParams(obj: any): ProcessFilterCloudModel;
|
|
@@ -119,7 +121,7 @@ export declare class ProcessFilterCloudService {
|
|
|
119
121
|
* @param appName Name of the target app
|
|
120
122
|
* @returns String of process instance filters preference key
|
|
121
123
|
*/
|
|
122
|
-
|
|
124
|
+
protected prepareKey(appName: string): string;
|
|
123
125
|
/**
|
|
124
126
|
* Finds and returns the process instance filters from preferences
|
|
125
127
|
*
|
|
@@ -4,11 +4,10 @@ import { PreferenceCloudServiceInterface } from '../../../services/preference-cl
|
|
|
4
4
|
import { IdentityUserService } from '../../../people/services/identity-user.service';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class ServiceTaskFilterCloudService {
|
|
7
|
-
private
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
constructor(identityUserService: IdentityUserService, preferenceService: PreferenceCloudServiceInterface);
|
|
7
|
+
private readonly filtersSubject;
|
|
8
|
+
readonly filters$: Observable<ServiceTaskFilterCloudModel[]>;
|
|
9
|
+
protected readonly preferenceService: PreferenceCloudServiceInterface;
|
|
10
|
+
protected readonly identityUserService: IdentityUserService;
|
|
12
11
|
/**
|
|
13
12
|
* Creates and returns the default task filters for an app.
|
|
14
13
|
*
|
|
@@ -106,7 +105,7 @@ export declare class ServiceTaskFilterCloudService {
|
|
|
106
105
|
* @param appName Name of the target app
|
|
107
106
|
* @returns String of task filters preference key
|
|
108
107
|
*/
|
|
109
|
-
|
|
108
|
+
protected prepareKey(appName: string): string;
|
|
110
109
|
/**
|
|
111
110
|
* Finds and returns the task filters from preferences
|
|
112
111
|
*
|
|
@@ -8,14 +8,14 @@ import { IdentityUserService } from '../../../people/services/identity-user.serv
|
|
|
8
8
|
import { AdfHttpClient } from '@alfresco/adf-core/api';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class TaskFilterCloudService extends BaseCloudService {
|
|
11
|
-
private identityUserService;
|
|
12
|
-
preferenceService: PreferenceCloudServiceInterface;
|
|
13
11
|
private notificationCloudService;
|
|
12
|
+
preferenceService: PreferenceCloudServiceInterface;
|
|
13
|
+
protected identityUserService: IdentityUserService;
|
|
14
14
|
private filtersSubject;
|
|
15
15
|
filters$: Observable<TaskFilterCloudModel[]>;
|
|
16
16
|
private filterKeyToBeRefreshedSource;
|
|
17
17
|
filterKeyToBeRefreshed$: Observable<string>;
|
|
18
|
-
constructor(
|
|
18
|
+
constructor(notificationCloudService: NotificationCloudService, adfHttpClient: AdfHttpClient);
|
|
19
19
|
/**
|
|
20
20
|
* Creates and returns the default task filters for an app.
|
|
21
21
|
*
|
|
@@ -120,7 +120,7 @@ export declare class TaskFilterCloudService extends BaseCloudService {
|
|
|
120
120
|
* @param appName Name of the target app
|
|
121
121
|
* @returns String of task filters preference key
|
|
122
122
|
*/
|
|
123
|
-
|
|
123
|
+
protected prepareKey(appName: string): string;
|
|
124
124
|
/**
|
|
125
125
|
* Finds and returns the task filters from preferences
|
|
126
126
|
*
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfresco/adf-process-services-cloud",
|
|
3
3
|
"description": "Alfresco ADF process services cloud",
|
|
4
|
-
"version": "8.4.0-
|
|
4
|
+
"version": "8.4.0-20231252899",
|
|
5
5
|
"author": "Hyland Software, Inc. and its affiliates",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"@angular/platform-browser": ">=14.1.3",
|
|
22
22
|
"@angular/platform-browser-dynamic": ">=14.1.3",
|
|
23
23
|
"@angular/router": ">=14.1.3",
|
|
24
|
-
"@alfresco/js-api": ">=9.4.0-
|
|
25
|
-
"@alfresco/adf-core": ">=8.4.0-
|
|
26
|
-
"@alfresco/adf-content-services": ">=8.4.0-
|
|
24
|
+
"@alfresco/js-api": ">=9.4.0-20231252899",
|
|
25
|
+
"@alfresco/adf-core": ">=8.4.0-20231252899",
|
|
26
|
+
"@alfresco/adf-content-services": ">=8.4.0-20231252899",
|
|
27
27
|
"@apollo/client": ">=3.7.2",
|
|
28
28
|
"@ngx-translate/core": ">=14.0.0",
|
|
29
29
|
"apollo-angular": ">=4.0.1",
|