@alfresco/adf-process-services-cloud 8.4.0-17439184033 → 8.4.0-17467994199
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 +26 -2
- package/fesm2022/adf-process-services-cloud.mjs.map +1 -1
- package/lib/form/services/rich-text-parser.service.d.ts +3 -16
- package/lib/process/process-list/services/process-list-cloud.service.d.ts +1 -0
- package/lib/task/task-list/services/task-list-cloud.service.d.ts +1 -0
- package/package.json +4 -4
|
@@ -1,19 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
4
|
-
*
|
|
5
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
-
* you may not use this file except in compliance with the License.
|
|
7
|
-
* You may obtain a copy of the License at
|
|
8
|
-
*
|
|
9
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
*
|
|
11
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
-
* See the License for the specific language governing permissions and
|
|
15
|
-
* limitations under the License.
|
|
16
|
-
*/
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
17
2
|
export interface OutputData {
|
|
18
3
|
version?: string;
|
|
19
4
|
time?: number;
|
|
@@ -22,4 +7,6 @@ export interface OutputData {
|
|
|
22
7
|
export declare class RichTextParserService {
|
|
23
8
|
private static readonly CUSTOM_PARSER;
|
|
24
9
|
parse(richText: OutputData): string | Error;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RichTextParserService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RichTextParserService>;
|
|
25
12
|
}
|
|
@@ -43,6 +43,7 @@ export declare class ProcessListCloudService extends BaseCloudService {
|
|
|
43
43
|
* @returns Process information
|
|
44
44
|
*/
|
|
45
45
|
getAdminProcessByRequest(requestNode: ProcessQueryCloudRequestModel, queryUrl?: string): Observable<any>;
|
|
46
|
+
getProcessListCount(requestNode: ProcessListRequestModel): Observable<number>;
|
|
46
47
|
private getVariableKeysFromQueryParams;
|
|
47
48
|
protected isPropertyValueValid(requestNode: ProcessQueryCloudRequestModel, property: string): boolean;
|
|
48
49
|
protected buildQueryParams(requestNode: ProcessQueryCloudRequestModel): any;
|
|
@@ -24,6 +24,7 @@ export declare class TaskListCloudService extends BaseCloudService implements Ta
|
|
|
24
24
|
*/
|
|
25
25
|
fetchTaskList(requestNode: TaskListRequestModel, queryUrl?: string): Observable<any>;
|
|
26
26
|
getTaskListCounter(requestNode: TaskListRequestModel): Observable<number>;
|
|
27
|
+
getTaskListCount(requestNode: TaskListRequestModel): Observable<number>;
|
|
27
28
|
protected buildQueryData(requestNode: TaskListRequestModel): any;
|
|
28
29
|
protected buildQueryParams(requestNode: TaskQueryCloudRequestModel): any;
|
|
29
30
|
protected isExcludedField(property: string): boolean;
|
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-17467994199",
|
|
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-17467994199",
|
|
25
|
+
"@alfresco/adf-core": ">=8.4.0-17467994199",
|
|
26
|
+
"@alfresco/adf-content-services": ">=8.4.0-17467994199",
|
|
27
27
|
"@apollo/client": ">=3.7.2",
|
|
28
28
|
"@ngx-translate/core": ">=14.0.0",
|
|
29
29
|
"apollo-angular": ">=4.0.1"
|