@alfresco/adf-process-services-cloud 8.5.0-25850979174 → 8.5.0
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/LICENSE +177 -0
- package/bundles/assets/adf-process-services-cloud/i18n/en-AU.json +386 -0
- package/fesm2022/adf-process-services-cloud.mjs +654 -369
- package/fesm2022/adf-process-services-cloud.mjs.map +1 -1
- package/index.d.ts +3 -6257
- package/lib/app/components/app-details-cloud/app-details-cloud.component.scss +168 -0
- package/lib/app/models/application-instance.model.d.ts +67 -0
- package/lib/app/public-api.d.ts +18 -0
- package/lib/app/services/apps-process-cloud.service.d.ts +25 -0
- package/lib/common/date-range-filter/date-range-filter.component.d.ts +49 -0
- package/lib/common/date-range-filter/date-range-filter.service.d.ts +17 -0
- package/lib/common/index.d.ts +17 -0
- package/lib/common/interface/environment.interface.d.ts +20 -0
- package/lib/common/interface/index.d.ts +17 -0
- package/lib/common/interface/public-api.d.ts +17 -0
- package/lib/common/public-api.d.ts +18 -0
- package/lib/form/components/cloud-form-rendering.service.d.ts +7 -0
- package/lib/form/components/form-cloud-custom-outcomes.component.d.ts +5 -0
- package/lib/form/components/form-cloud.component.d.ts +155 -0
- package/lib/form/components/form-cloud.component.scss +40 -11
- package/lib/form/components/spinner/form-spinner.component.d.ts +6 -0
- package/lib/form/components/spinner/form-spinner.component.scss +1 -1
- package/lib/form/components/widgets/attach-file/attach-file-cloud-widget.component.d.ts +62 -0
- package/lib/form/components/widgets/attach-file/attach-file-cloud-widget.component.scss +3 -20
- package/lib/form/components/widgets/attach-file/file-properties-table/file-properties-table-cloud.component.d.ts +49 -0
- package/lib/form/components/widgets/attach-file/file-properties-table/file-properties-table-cloud.component.scss +1 -1
- package/lib/form/components/widgets/data-table/data-table-adapter.widget.d.ts +42 -0
- package/lib/form/components/widgets/data-table/data-table.widget.d.ts +43 -0
- package/lib/form/components/widgets/data-table/data-table.widget.scss +0 -1
- package/lib/form/components/widgets/data-table/helpers/data-table-path-parser.helper.d.ts +29 -0
- package/lib/form/components/widgets/date/date-cloud.widget.d.ts +47 -0
- package/lib/form/components/widgets/display-external-property/display-external-property.widget.d.ts +39 -0
- package/lib/form/components/widgets/display-external-property/display-external-property.widget.scss +0 -1
- package/lib/form/components/widgets/display-rich-text/display-rich-text.widget.d.ts +37 -0
- package/lib/form/components/widgets/display-rich-text/display-rich-text.widget.scss +0 -9
- package/lib/form/components/widgets/dropdown/dropdown-cloud.widget.d.ts +105 -0
- package/lib/form/components/widgets/dropdown/dropdown-cloud.widget.scss +0 -4
- package/lib/form/components/widgets/dropdown/validators.d.ts +19 -0
- package/lib/form/components/widgets/file-viewer/file-viewer.widget.d.ts +6 -0
- package/lib/form/components/widgets/group/group-cloud.widget.d.ts +37 -0
- package/lib/form/components/widgets/people/people-cloud.widget.d.ts +40 -0
- package/lib/form/components/widgets/properties-viewer/properties-viewer-wrapper/properties-viewer-wrapper.component.d.ts +53 -0
- package/lib/form/components/widgets/properties-viewer/properties-viewer.widget.d.ts +26 -0
- package/lib/form/components/widgets/properties-viewer/properties-viewer.widget.scss +1 -1
- package/lib/form/components/widgets/radio-buttons/radio-buttons-cloud.schema.d.ts +18 -0
- package/lib/form/components/widgets/radio-buttons/radio-buttons-cloud.widget.d.ts +41 -0
- package/lib/form/components/widgets/radio-buttons/radio-buttons-cloud.widget.scss +0 -9
- package/lib/form/components/widgets/upload/upload-cloud.widget.d.ts +55 -0
- package/lib/form/form-cloud.module.d.ts +34 -0
- package/lib/form/models/form-cloud-representation.model.d.ts +48 -0
- package/lib/form/models/task-variable-cloud.model.d.ts +24 -0
- package/lib/form/public-api.d.ts +40 -0
- package/lib/form/services/content-cloud-node-selector.service.d.ts +21 -0
- package/lib/form/services/display-mode.service.d.ts +22 -0
- package/lib/form/services/form-cloud.service.d.ts +104 -0
- package/lib/form/services/form-cloud.service.interface.d.ts +34 -0
- package/lib/form/services/form-utils.service.d.ts +11 -0
- package/lib/form/services/process-cloud-content.service.d.ts +18 -0
- package/lib/form/services/rich-text-parser.service.d.ts +12 -0
- package/lib/form/services/spinner/form-cloud-spinner.service.d.ts +26 -0
- package/lib/group/components/group-cloud.component.d.ts +123 -0
- package/lib/group/components/group-cloud.component.scss +3 -14
- package/lib/group/group-cloud.module.d.ts +8 -0
- package/lib/group/models/identity-group.model.d.ts +21 -0
- package/lib/group/public-api.d.ts +20 -0
- package/lib/group/services/identity-group.service.d.ts +28 -0
- package/lib/models/application-version.model.d.ts +30 -0
- package/lib/models/constant-values.type.d.ts +20 -0
- package/lib/models/data-column-custom-data.d.ts +22 -0
- package/lib/models/date-cloud-filter.model.d.ts +36 -0
- package/lib/models/date-format-cloud.model.d.ts +17 -0
- package/lib/models/engine-event-cloud.model.d.ts +21 -0
- package/lib/models/filter-cloud-model.d.ts +92 -0
- package/lib/models/process-definition-cloud.model.d.ts +32 -0
- package/lib/models/process-instance-variable.model.d.ts +38 -0
- package/lib/models/process-variable-filter.model.d.ts +24 -0
- package/lib/models/task-cloud.model.d.ts +57 -0
- package/lib/models/task-list-sorting.model.d.ts +31 -0
- package/lib/models/variable-definition.d.ts +24 -0
- package/lib/people/components/people-cloud.component.d.ts +167 -0
- package/lib/people/components/people-cloud.component.scss +3 -22
- package/lib/people/models/identity-user.model.d.ts +24 -0
- package/lib/people/people-cloud.module.d.ts +8 -0
- package/lib/people/public-api.d.ts +20 -0
- package/lib/people/services/identity-user.service.d.ts +45 -0
- package/lib/process/process-cloud.module.d.ts +16 -0
- package/lib/process/process-filters/components/edit-process-filter/edit-process-filter-cloud.component.d.ts +182 -0
- package/lib/process/process-filters/components/edit-process-filter/edit-process-filter-cloud.component.scss +0 -23
- package/lib/process/process-filters/components/process-filter-dialog/process-filter-dialog-cloud.component.d.ts +16 -0
- package/lib/process/process-filters/components/process-filters/process-filters-cloud.component.d.ts +146 -0
- package/lib/process/process-filters/components/process-filters/process-filters-cloud.component.scss +3 -3
- package/lib/process/process-filters/models/process-filter-cloud.model.d.ts +110 -0
- package/lib/process/process-filters/process-filters-cloud.module.d.ts +14 -0
- package/lib/process/process-filters/public-api.d.ts +22 -0
- package/lib/process/process-filters/services/process-filter-cloud.service.d.ts +163 -0
- package/lib/process/process-header/components/process-header-cloud.component.d.ts +48 -0
- package/lib/process/process-header/process-header-cloud.module.d.ts +8 -0
- package/lib/process/process-header/public-api.d.ts +18 -0
- package/lib/process/process-list/components/process-list-cloud.component.d.ts +228 -0
- package/lib/process/process-list/datatable/process-list-datatable-adapter.d.ts +23 -0
- package/lib/process/process-list/models/perocess-instance-cloud-view.model.d.ts +19 -0
- package/lib/process/process-list/models/process-cloud-preferences.d.ts +22 -0
- package/lib/process/process-list/models/process-cloud-preset.model.d.ts +35 -0
- package/lib/process/process-list/models/process-cloud-query-request.model.d.ts +80 -0
- package/lib/process/process-list/models/process-list-sorting.model.d.ts +31 -0
- package/lib/process/process-list/process-list-cloud.module.d.ts +7 -0
- package/lib/process/process-list/public-api.d.ts +24 -0
- package/lib/process/process-list/services/process-list-cloud.service.d.ts +56 -0
- package/lib/process/process-list/services/process-task-list-cloud.service.d.ts +30 -0
- package/lib/process/public-api.d.ts +22 -0
- package/lib/process/services/process-cloud.service.d.ts +41 -0
- package/lib/process/start-process/components/start-process-cloud.component.d.ts +146 -0
- package/lib/process/start-process/components/start-process-cloud.component.scss +0 -4
- package/lib/process/start-process/models/process-instance-cloud.model.d.ts +48 -0
- package/lib/process/start-process/models/process-payload-cloud.model.d.ts +35 -0
- package/lib/process/start-process/models/process-with-form-payload-cloud.model.d.ts +24 -0
- package/lib/process/start-process/public-api.d.ts +20 -0
- package/lib/process/start-process/services/start-process-cloud.service.d.ts +64 -0
- package/lib/process-services-cloud.module.d.ts +61 -0
- package/lib/providers.d.ts +36 -0
- package/lib/screen/components/screen-cloud/base-screen/base-screen-cloud.component.d.ts +33 -0
- package/lib/screen/components/screen-cloud/start-process-event-screen/start-process-screen-cloud.component.d.ts +16 -0
- package/lib/screen/components/screen-cloud/start-process-event-screen/start-process-screen.model.d.ts +29 -0
- package/lib/screen/components/screen-cloud/user-task-screen/screen-cloud.component.d.ts +48 -0
- package/lib/screen/components/screen-cloud/user-task-screen/screen-cloud.model.d.ts +38 -0
- package/lib/screen/public-api.d.ts +20 -0
- package/lib/screen/services/provide-screen.d.ts +37 -0
- package/lib/screen/services/screen-rendering.service.d.ts +51 -0
- package/lib/services/base-cloud.service.d.ts +37 -0
- package/lib/services/cloud-token.service.d.ts +24 -0
- package/lib/services/form-fields.interfaces.d.ts +246 -0
- package/lib/services/local-preference-cloud.service.d.ts +51 -0
- package/lib/services/notification-cloud.service.d.ts +7 -0
- package/lib/services/preference-cloud.interface.d.ts +24 -0
- package/lib/services/public-api.d.ts +26 -0
- package/lib/services/task-list-cloud.service.interface.d.ts +47 -0
- package/lib/services/task-type-resolver/task-type-resolver.service.d.ts +15 -0
- package/lib/services/user-preference-cloud.service.d.ts +49 -0
- package/lib/services/variable-mapper.sevice.d.ts +13 -0
- package/lib/services/web-socket.service.d.ts +28 -0
- package/lib/task/models/start-task-cloud-request.model.d.ts +28 -0
- package/lib/task/models/task-details-cloud.model.d.ts +62 -0
- package/lib/task/models/task.model.d.ts +22 -0
- package/lib/task/public-api.d.ts +25 -0
- package/lib/task/services/task-cloud.service.d.ts +145 -0
- package/lib/task/task-cloud.module.d.ts +18 -0
- package/lib/task/task-filters/components/base-task-filters-cloud.component.d.ts +44 -0
- package/lib/task/task-filters/components/edit-task-filters/base-edit-task-filter-cloud.component.d.ts +152 -0
- package/lib/task/task-filters/components/edit-task-filters/edit-service-task-filter/edit-service-task-filter-cloud.component.d.ts +21 -0
- package/lib/task/task-filters/components/edit-task-filters/edit-service-task-filter/edit-service-task-filter-cloud.component.scss +0 -24
- package/lib/task/task-filters/components/edit-task-filters/edit-task-filter/edit-task-filter-cloud.component.d.ts +24 -0
- package/lib/task/task-filters/components/edit-task-filters/edit-task-filter/edit-task-filter-cloud.component.scss +0 -24
- package/lib/task/task-filters/components/service-task-filters/service-task-filters-cloud.component.d.ts +69 -0
- package/lib/task/task-filters/components/service-task-filters/service-task-filters-cloud.component.scss +8 -8
- package/lib/task/task-filters/components/task-assignment-filter/task-assignment-filter.component.d.ts +53 -0
- package/lib/task/task-filters/components/task-assignment-filter/task-assignment-filter.component.scss +0 -16
- package/lib/task/task-filters/components/task-filter-dialog/task-filter-dialog-cloud.component.d.ts +35 -0
- package/lib/task/task-filters/components/task-filters/task-filters-cloud.component.d.ts +106 -0
- package/lib/task/task-filters/components/task-filters/task-filters-cloud.component.scss +3 -3
- package/lib/task/task-filters/models/filter-cloud.model.d.ts +168 -0
- package/lib/task/task-filters/public-api.d.ts +26 -0
- package/lib/task/task-filters/services/service-task-filter-cloud.service.d.ts +127 -0
- package/lib/task/task-filters/services/task-filter-cloud.service.d.ts +158 -0
- package/lib/task/task-filters/task-filters-cloud.module.d.ts +20 -0
- package/lib/task/task-form/components/task-form-cloud/task-form-cloud.component.d.ts +126 -0
- package/lib/task/task-form/components/user-task-cloud/complete-task/complete-task.directive.d.ts +39 -0
- package/lib/task/task-form/components/user-task-cloud/user-task-cloud.component.d.ts +138 -0
- package/lib/task/task-form/components/user-task-cloud-buttons/claim-task/claim-task-cloud.directive.d.ts +41 -0
- package/lib/task/task-form/components/user-task-cloud-buttons/unclaim-task/unclaim-task-cloud.directive.d.ts +39 -0
- package/lib/task/task-form/components/user-task-cloud-buttons/user-task-cloud-buttons.component.d.ts +49 -0
- package/lib/task/task-form/public-api.d.ts +20 -0
- package/lib/task/task-form/task-form.module.d.ts +14 -0
- package/lib/task/task-header/components/task-header-cloud.component.d.ts +86 -0
- package/lib/task/task-header/components/task-header-cloud.component.scss +2 -2
- package/lib/task/task-header/public-api.d.ts +18 -0
- package/lib/task/task-header/task-header-cloud.module.d.ts +8 -0
- package/lib/task/task-list/components/base-task-list-cloud.component.d.ts +131 -0
- package/lib/task/task-list/components/service-task-list/service-task-list-cloud.component.d.ts +16 -0
- package/lib/task/task-list/components/task-list/datatable/task-list-datatable-adapter.d.ts +23 -0
- package/lib/task/task-list/components/task-list/task-list-cloud.component.d.ts +135 -0
- package/lib/task/task-list/models/service-task-cloud.model.d.ts +126 -0
- package/lib/task/task-list/models/task-cloud-view.model.d.ts +19 -0
- package/lib/task/task-list/public-api.d.ts +22 -0
- package/lib/task/task-list/services/service-task-list-cloud.service.d.ts +51 -0
- package/lib/task/task-list/services/task-list-cloud.service.d.ts +36 -0
- package/lib/task/task-list/task-list-cloud.module.d.ts +12 -0
- package/lib/types.d.ts +17 -0
- package/package.json +4 -4
- package/public-api.d.ts +39 -0
- package/lib/process/process-header/components/process-header-cloud.component.scss +0 -3
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { BaseTaskListCloudComponent } from '../base-task-list-cloud.component';
|
|
2
|
+
import { TaskListCloudServiceInterface } from '../../../../services/task-list-cloud.service.interface';
|
|
3
|
+
import { ProcessListDataColumnCustomData } from '../../../../models/data-column-custom-data';
|
|
4
|
+
import { TaskInstanceCloudListViewModel } from '../../models/task-cloud-view.model';
|
|
5
|
+
import { TasksListDatatableAdapter } from './datatable/task-list-datatable-adapter';
|
|
6
|
+
import { ProcessVariableFilterModel } from '../../../../models/process-variable-filter.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class TaskListCloudComponent extends BaseTaskListCloudComponent<ProcessListDataColumnCustomData> {
|
|
9
|
+
taskListCloudService: TaskListCloudServiceInterface;
|
|
10
|
+
private readonly viewModelCreator;
|
|
11
|
+
/**
|
|
12
|
+
* The assignee of the process. Possible values are: "assignee" (the current user is the assignee),
|
|
13
|
+
* "candidate" (the current user is a task candidate", "group_x" (the task is assigned to a group
|
|
14
|
+
* where the current user is a member, no value (the current user is involved).
|
|
15
|
+
*/
|
|
16
|
+
assignee: string;
|
|
17
|
+
/** Filter the tasks. Display only tasks created on the supplied date. */
|
|
18
|
+
createdDate: Date;
|
|
19
|
+
/** Filter the tasks. Display only tasks with createdFrom equal to the supplied date. */
|
|
20
|
+
createdFrom: string;
|
|
21
|
+
/** Filter the tasks. Display only tasks with createdTo equal to the supplied date. */
|
|
22
|
+
createdTo: string;
|
|
23
|
+
/** Filter the tasks. Display only tasks with dueDate equal to the supplied date. */
|
|
24
|
+
dueDate: Date;
|
|
25
|
+
/** Filter the tasks. Display only tasks with lastModifiedFrom equal to the supplied date. */
|
|
26
|
+
lastModifiedFrom: string;
|
|
27
|
+
/** Filter the tasks. Display only tasks with lastModifiedTo equal to the supplied date. */
|
|
28
|
+
lastModifiedTo: string;
|
|
29
|
+
/** Filter the tasks. Display only tasks with dueDate greater or equal than the supplied date. */
|
|
30
|
+
dueDateFrom: string;
|
|
31
|
+
/** Filter the tasks. Display only tasks with dueDate less or equal to the supplied date. */
|
|
32
|
+
dueDateTo: string;
|
|
33
|
+
/** Filter the tasks. Display only tasks with id equal to the supplied value. */
|
|
34
|
+
id: string;
|
|
35
|
+
/** Filter the tasks. Display only tasks with the supplied name. */
|
|
36
|
+
name: string;
|
|
37
|
+
/** Filter the tasks to display only the ones with this environment ID. */
|
|
38
|
+
environmentId: string;
|
|
39
|
+
/** Filter the tasks. Display only tasks with parentTaskId equal to the supplied value. */
|
|
40
|
+
parentTaskId: string;
|
|
41
|
+
/** Filter the tasks. Display only tasks with processDefinitionName equal to the supplied value. */
|
|
42
|
+
processDefinitionName: string;
|
|
43
|
+
/** Filter the tasks. Display only tasks with processDefinitionId equal to the supplied value. */
|
|
44
|
+
processDefinitionId: string;
|
|
45
|
+
/** Filter the tasks. Display only tasks with processInstanceId equal to the supplied value. */
|
|
46
|
+
processInstanceId: string;
|
|
47
|
+
/** Filter the tasks. Display only tasks with status equal to the supplied value. */
|
|
48
|
+
status: string;
|
|
49
|
+
/** Filter the tasks. Display only tasks with owner equal to the supplied value. */
|
|
50
|
+
owner: string;
|
|
51
|
+
/** Filter the tasks. Display only tasks with priority equal to the supplied value. */
|
|
52
|
+
priority: number;
|
|
53
|
+
/** Filter the tasks. Display only tasks with createdBy equal to the supplied value. */
|
|
54
|
+
completedBy: number;
|
|
55
|
+
/** Filter the tasks. Display only the tasks that belong to a process in case is false or tasks that doesn't belong to a process in case of true. */
|
|
56
|
+
standalone: boolean;
|
|
57
|
+
/** Filter the tasks. Display only tasks with completedDate equal to the supplied date. */
|
|
58
|
+
completedDate: string;
|
|
59
|
+
/** Filter the tasks. Display only tasks with completedFrom equal to the supplied date. */
|
|
60
|
+
completedFrom: string;
|
|
61
|
+
/** Filter the tasks. Display only tasks with completedTo equal to the supplied date. */
|
|
62
|
+
completedTo: string;
|
|
63
|
+
/** Filter the tasks. Display only tasks with candidateGroups equal to the supplied value. */
|
|
64
|
+
candidateGroupId: string;
|
|
65
|
+
/** From Activiti 8.7.0 forward, use the 'POST' value and array inputs to enable advanced filtering. */
|
|
66
|
+
searchApiMethod: 'GET' | 'POST';
|
|
67
|
+
/**
|
|
68
|
+
* Filter the tasks. Display only tasks with names matching any of the supplied strings.
|
|
69
|
+
* This input will be used only if searchApiMethod input is provided with 'POST' value.
|
|
70
|
+
*/
|
|
71
|
+
names: string[];
|
|
72
|
+
/**
|
|
73
|
+
* Filter the tasks. Display only tasks with assignees whose usernames are present in the array.
|
|
74
|
+
* This input will be used only if searchApiMethod input is provided with 'POST' value.
|
|
75
|
+
*/
|
|
76
|
+
assignees: string[];
|
|
77
|
+
/**
|
|
78
|
+
* Filter the tasks. Display only tasks with provided statuses.
|
|
79
|
+
* This input will be used only if searchApiMethod input is provided with 'POST' value.
|
|
80
|
+
*/
|
|
81
|
+
statuses: string[];
|
|
82
|
+
/**
|
|
83
|
+
* Filter the tasks. Display only tasks under processes with provided definition names.
|
|
84
|
+
* This input will be used only if searchApiMethod input is provided with 'POST' value.
|
|
85
|
+
*/
|
|
86
|
+
processDefinitionNames: string[];
|
|
87
|
+
/**
|
|
88
|
+
* Filter the tasks. Display only tasks with Ids matching any of the supplied strings.
|
|
89
|
+
* This input will be used only if searchApiMethod input is provided with 'POST' value.
|
|
90
|
+
*/
|
|
91
|
+
ids: string[];
|
|
92
|
+
/**
|
|
93
|
+
* Filter the tasks. Display only tasks with parentTaskIds matching any of the supplied strings.
|
|
94
|
+
* This input will be used only if searchApiMethod input is provided with 'POST' value.
|
|
95
|
+
*/
|
|
96
|
+
parentIds: string[];
|
|
97
|
+
/**
|
|
98
|
+
* Filter the tasks. Display only tasks with processInstanceIds matching any of the supplied strings.
|
|
99
|
+
* This input will be used only if searchApiMethod input is provided with 'POST' value.
|
|
100
|
+
*/
|
|
101
|
+
processInstanceIds: string[];
|
|
102
|
+
/**
|
|
103
|
+
* Filter the tasks. Display only tasks under processes with provided names.
|
|
104
|
+
* This input will be used only if searchApiMethod input is provided with 'POST' value.
|
|
105
|
+
*/
|
|
106
|
+
processNames: string[];
|
|
107
|
+
/**
|
|
108
|
+
* Filter the tasks. Display only tasks with provided priorities.
|
|
109
|
+
* This input will be used only if searchApiMethod input is provided with 'POST' value.
|
|
110
|
+
*/
|
|
111
|
+
priorities: string[];
|
|
112
|
+
/**
|
|
113
|
+
* Filter the tasks. Display only tasks completed by users whose usernames are present in the array.
|
|
114
|
+
* This input will be used only if searchApiMethod input is provided with 'POST' value.
|
|
115
|
+
*/
|
|
116
|
+
completedByUsers: string[];
|
|
117
|
+
/**
|
|
118
|
+
* Filter the processes. Display only processes with specific process variables.
|
|
119
|
+
* This input will be used only if searchApiMethod input is provided with 'POST' value.
|
|
120
|
+
*/
|
|
121
|
+
processVariableFilters: ProcessVariableFilterModel[];
|
|
122
|
+
rows: TaskInstanceCloudListViewModel[];
|
|
123
|
+
dataAdapter: TasksListDatatableAdapter | undefined;
|
|
124
|
+
private readonly isReloadingSubject$;
|
|
125
|
+
isLoading$: import("rxjs").Observable<boolean>;
|
|
126
|
+
private readonly fetchProcessesTrigger$;
|
|
127
|
+
constructor();
|
|
128
|
+
reload(): void;
|
|
129
|
+
private createTaskListRequestNode;
|
|
130
|
+
private createRequestNode;
|
|
131
|
+
private getRequestNodeVariables;
|
|
132
|
+
private getTaskListRequestSorting;
|
|
133
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TaskListCloudComponent, never>;
|
|
134
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TaskListCloudComponent, "adf-cloud-task-list", never, { "assignee": { "alias": "assignee"; "required": false; }; "createdDate": { "alias": "createdDate"; "required": false; }; "createdFrom": { "alias": "createdFrom"; "required": false; }; "createdTo": { "alias": "createdTo"; "required": false; }; "dueDate": { "alias": "dueDate"; "required": false; }; "lastModifiedFrom": { "alias": "lastModifiedFrom"; "required": false; }; "lastModifiedTo": { "alias": "lastModifiedTo"; "required": false; }; "dueDateFrom": { "alias": "dueDateFrom"; "required": false; }; "dueDateTo": { "alias": "dueDateTo"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "environmentId": { "alias": "environmentId"; "required": false; }; "parentTaskId": { "alias": "parentTaskId"; "required": false; }; "processDefinitionName": { "alias": "processDefinitionName"; "required": false; }; "processDefinitionId": { "alias": "processDefinitionId"; "required": false; }; "processInstanceId": { "alias": "processInstanceId"; "required": false; }; "status": { "alias": "status"; "required": false; }; "owner": { "alias": "owner"; "required": false; }; "priority": { "alias": "priority"; "required": false; }; "completedBy": { "alias": "completedBy"; "required": false; }; "standalone": { "alias": "standalone"; "required": false; }; "completedDate": { "alias": "completedDate"; "required": false; }; "completedFrom": { "alias": "completedFrom"; "required": false; }; "completedTo": { "alias": "completedTo"; "required": false; }; "candidateGroupId": { "alias": "candidateGroupId"; "required": false; }; "searchApiMethod": { "alias": "searchApiMethod"; "required": false; }; "names": { "alias": "names"; "required": false; }; "assignees": { "alias": "assignees"; "required": false; }; "statuses": { "alias": "statuses"; "required": false; }; "processDefinitionNames": { "alias": "processDefinitionNames"; "required": false; }; "ids": { "alias": "ids"; "required": false; }; "parentIds": { "alias": "parentIds"; "required": false; }; "processInstanceIds": { "alias": "processInstanceIds"; "required": false; }; "processNames": { "alias": "processNames"; "required": false; }; "priorities": { "alias": "priorities"; "required": false; }; "completedByUsers": { "alias": "completedByUsers"; "required": false; }; "processVariableFilters": { "alias": "processVariableFilters"; "required": false; }; }, {}, never, ["adf-custom-empty-content-template"], true, never>;
|
|
135
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
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
|
+
*/
|
|
17
|
+
import { TaskListCloudSortingModel } from '../../../models/task-list-sorting.model';
|
|
18
|
+
export interface ServiceTaskQueryCloudRequestModel {
|
|
19
|
+
appName: string;
|
|
20
|
+
appVersion?: string;
|
|
21
|
+
environmentId?: string;
|
|
22
|
+
id?: string;
|
|
23
|
+
status?: string;
|
|
24
|
+
maxItems: number;
|
|
25
|
+
skipCount: number;
|
|
26
|
+
sorting?: TaskListCloudSortingModel[];
|
|
27
|
+
activityName?: string;
|
|
28
|
+
activityType?: string;
|
|
29
|
+
completedDate?: Date;
|
|
30
|
+
elementId?: string;
|
|
31
|
+
executionId?: string;
|
|
32
|
+
processDefinitionId?: string;
|
|
33
|
+
processDefinitionKey?: string;
|
|
34
|
+
processDefinitionVersion?: number;
|
|
35
|
+
processInstanceId?: string;
|
|
36
|
+
serviceFullName?: string;
|
|
37
|
+
serviceName?: string;
|
|
38
|
+
serviceVersion?: string;
|
|
39
|
+
startedDate?: Date;
|
|
40
|
+
}
|
|
41
|
+
export interface ServiceTaskIntegrationContextCloudModel {
|
|
42
|
+
id?: string;
|
|
43
|
+
status?: string;
|
|
44
|
+
appName?: string;
|
|
45
|
+
appVersion?: string;
|
|
46
|
+
serviceName?: string;
|
|
47
|
+
serviceFullName?: string;
|
|
48
|
+
serviceVersion?: string;
|
|
49
|
+
serviceType?: string;
|
|
50
|
+
processDefinitionId?: string;
|
|
51
|
+
processDefinitionKey?: string;
|
|
52
|
+
processDefinitionVersion?: number;
|
|
53
|
+
processInstanceId?: string;
|
|
54
|
+
parentProcessInstanceId?: string;
|
|
55
|
+
rootProcessInstanceId?: string;
|
|
56
|
+
executionId?: string;
|
|
57
|
+
connectorType?: string;
|
|
58
|
+
clientId?: string;
|
|
59
|
+
clientName?: string;
|
|
60
|
+
clientType?: string;
|
|
61
|
+
businessKey?: string;
|
|
62
|
+
inBoundVariables?: Record<string, any>;
|
|
63
|
+
outBoundVariables?: Record<string, any>;
|
|
64
|
+
requestDate?: string;
|
|
65
|
+
resultDate?: string;
|
|
66
|
+
errorDate?: string;
|
|
67
|
+
errorCode?: string;
|
|
68
|
+
errorClassName?: string;
|
|
69
|
+
errorMessage?: string;
|
|
70
|
+
stackTraceElements?: ServiceTaskStackTraceElement[];
|
|
71
|
+
}
|
|
72
|
+
export interface ServiceTaskStackTraceElement {
|
|
73
|
+
classLoaderName?: string;
|
|
74
|
+
moduleName?: string;
|
|
75
|
+
moduleVersion?: string;
|
|
76
|
+
methodName?: string;
|
|
77
|
+
fileName?: string;
|
|
78
|
+
lineNumber?: number;
|
|
79
|
+
className?: string;
|
|
80
|
+
nativeMethod?: boolean;
|
|
81
|
+
}
|
|
82
|
+
export interface StackTraceElement {
|
|
83
|
+
className: string;
|
|
84
|
+
fileName: string;
|
|
85
|
+
lineNumber: number;
|
|
86
|
+
}
|
|
87
|
+
export interface IntegrationContextsPaginationModel {
|
|
88
|
+
skipCount: number;
|
|
89
|
+
maxItems: number;
|
|
90
|
+
count: number;
|
|
91
|
+
hasMoreItems: boolean;
|
|
92
|
+
totalItems: number;
|
|
93
|
+
}
|
|
94
|
+
export interface IntegrationContext {
|
|
95
|
+
id: string;
|
|
96
|
+
serviceName: string;
|
|
97
|
+
serviceFullName: string;
|
|
98
|
+
serviceVersion: string;
|
|
99
|
+
appName: string;
|
|
100
|
+
inBoundVariables: Record<string, any>;
|
|
101
|
+
outBoundVariables: Record<string, any>;
|
|
102
|
+
rootProcessInstanceId: string;
|
|
103
|
+
processInstanceId: string;
|
|
104
|
+
executionId: string;
|
|
105
|
+
processDefinitionId: string;
|
|
106
|
+
processDefinitionKey: string;
|
|
107
|
+
processDefinitionVersion: number;
|
|
108
|
+
clientId: string;
|
|
109
|
+
clientName: string;
|
|
110
|
+
clientType: string;
|
|
111
|
+
connectorType: string;
|
|
112
|
+
requestDate: string;
|
|
113
|
+
resultDate?: string;
|
|
114
|
+
stackTraceElements: StackTraceElement[];
|
|
115
|
+
status: string;
|
|
116
|
+
errorDate?: string;
|
|
117
|
+
errorClassName?: string;
|
|
118
|
+
errorCode?: string;
|
|
119
|
+
errorMessage?: string;
|
|
120
|
+
}
|
|
121
|
+
export interface IntegrationContextsRequestModel {
|
|
122
|
+
appName: string;
|
|
123
|
+
maxItems: number;
|
|
124
|
+
skipCount: number;
|
|
125
|
+
sorting?: TaskListCloudSortingModel[];
|
|
126
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
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
|
+
*/
|
|
17
|
+
import { TaskCloudModel } from '../../../models/task-cloud.model';
|
|
18
|
+
import { WithVariablesMap } from '../../../models/process-instance-variable.model';
|
|
19
|
+
export type TaskInstanceCloudListViewModel = WithVariablesMap<TaskCloudModel>;
|
|
@@ -0,0 +1,22 @@
|
|
|
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
|
+
*/
|
|
17
|
+
export * from './components/task-list/task-list-cloud.component';
|
|
18
|
+
export * from './components/service-task-list/service-task-list-cloud.component';
|
|
19
|
+
export * from './models/service-task-cloud.model';
|
|
20
|
+
export * from './services/task-list-cloud.service';
|
|
21
|
+
export * from './services/service-task-list-cloud.service';
|
|
22
|
+
export * from './task-list-cloud.module';
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { ServiceTaskQueryCloudRequestModel, ServiceTaskIntegrationContextCloudModel, IntegrationContext, IntegrationContextsRequestModel, IntegrationContextsPaginationModel } from '../models/service-task-cloud.model';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { TaskListCloudSortingModel } from '../../../models/task-list-sorting.model';
|
|
4
|
+
import { BaseCloudService } from '../../../services/base-cloud.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ServiceTaskListCloudService extends BaseCloudService {
|
|
7
|
+
/**
|
|
8
|
+
* Finds a task using an object with optional query properties.
|
|
9
|
+
*
|
|
10
|
+
* @param requestNode Query object
|
|
11
|
+
* @returns Task information
|
|
12
|
+
*/
|
|
13
|
+
getServiceTaskByRequest(requestNode: ServiceTaskQueryCloudRequestModel): Observable<any>;
|
|
14
|
+
/**
|
|
15
|
+
* Finds a service task integration context using an object with optional query properties.
|
|
16
|
+
*
|
|
17
|
+
* @param appName string
|
|
18
|
+
* @param serviceTaskId string
|
|
19
|
+
* @returns Service Task Integration Context information
|
|
20
|
+
*/
|
|
21
|
+
getServiceTaskStatus(appName: string, serviceTaskId: string): Observable<ServiceTaskIntegrationContextCloudModel>;
|
|
22
|
+
/**
|
|
23
|
+
* Finds service task integration contexts using pagination and sorting.
|
|
24
|
+
*
|
|
25
|
+
* @param appName string
|
|
26
|
+
* @param serviceTaskId string
|
|
27
|
+
* @param requestModel Request model with pagination and sorting
|
|
28
|
+
* @returns Service Task Integration Contexts with pagination information
|
|
29
|
+
*/
|
|
30
|
+
getServiceTaskIntegrationContexts(appName: string, serviceTaskId: string, requestModel: IntegrationContextsRequestModel): Observable<{
|
|
31
|
+
list: {
|
|
32
|
+
entries: IntegrationContext[];
|
|
33
|
+
pagination: IntegrationContextsPaginationModel;
|
|
34
|
+
};
|
|
35
|
+
}>;
|
|
36
|
+
/**
|
|
37
|
+
* Replay a service task based on the related execution id and flow-node id
|
|
38
|
+
*
|
|
39
|
+
* @param appName string
|
|
40
|
+
* @param executionId string
|
|
41
|
+
* @param flowNodeId string
|
|
42
|
+
* @returns Replay task informations
|
|
43
|
+
*/
|
|
44
|
+
replayServiceTaskRequest(appName: string, executionId: string, flowNodeId: string): Observable<any>;
|
|
45
|
+
protected buildQueryParams(requestNode: ServiceTaskQueryCloudRequestModel): any;
|
|
46
|
+
protected isExcludedField(property: string): boolean;
|
|
47
|
+
protected isPropertyValueValid(requestNode: any, property: string): boolean;
|
|
48
|
+
protected buildSortingParam(models: TaskListCloudSortingModel[]): string;
|
|
49
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ServiceTaskListCloudService, never>;
|
|
50
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ServiceTaskListCloudService>;
|
|
51
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { TaskQueryCloudRequestModel, TaskListRequestModel } from '../../../models/filter-cloud-model';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { TaskListCloudSortingModel } from '../../../models/task-list-sorting.model';
|
|
4
|
+
import { BaseCloudService } from '../../../services/base-cloud.service';
|
|
5
|
+
import { TaskListCloudServiceInterface } from '../../../services/task-list-cloud.service.interface';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class TaskListCloudService extends BaseCloudService implements TaskListCloudServiceInterface {
|
|
8
|
+
/**
|
|
9
|
+
* Finds a task using an object with optional query properties.
|
|
10
|
+
*
|
|
11
|
+
* @deprecated From Activiti 8.7.0 forward, use TaskListCloudService.fetchTaskList instead.
|
|
12
|
+
* @param requestNode Query object
|
|
13
|
+
* @param queryUrl Query url
|
|
14
|
+
* @returns Task information
|
|
15
|
+
*/
|
|
16
|
+
getTaskByRequest(requestNode: TaskQueryCloudRequestModel, queryUrl?: string): Observable<any>;
|
|
17
|
+
/**
|
|
18
|
+
* Available from Activiti version 8.7.0 onwards.
|
|
19
|
+
* Retrieves a list of tasks using an object with optional query properties.
|
|
20
|
+
*
|
|
21
|
+
* @param requestNode Query object
|
|
22
|
+
* @param queryUrl Query url. If empty, query service will be called.
|
|
23
|
+
* @returns List of tasks
|
|
24
|
+
*/
|
|
25
|
+
fetchTaskList(requestNode: TaskListRequestModel, queryUrl?: string): Observable<any>;
|
|
26
|
+
fetchTaskList_UsingRuntimeBundleService(requestNode: TaskListRequestModel): Observable<any>;
|
|
27
|
+
getTaskListCounter(requestNode: TaskListRequestModel): Observable<number>;
|
|
28
|
+
getTaskListCount(requestNode: TaskListRequestModel): Observable<number>;
|
|
29
|
+
protected buildQueryData(requestNode: TaskListRequestModel): any;
|
|
30
|
+
protected buildQueryParams(requestNode: TaskQueryCloudRequestModel): any;
|
|
31
|
+
protected isExcludedField(property: string): boolean;
|
|
32
|
+
protected isPropertyValueValid(requestNode: any, property: string): boolean;
|
|
33
|
+
protected buildSortingParam(models: TaskListCloudSortingModel[]): string;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TaskListCloudService, never>;
|
|
35
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TaskListCloudService>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { TaskListCloudComponent } from './components/task-list/task-list-cloud.component';
|
|
2
|
+
import { ServiceTaskListCloudComponent } from './components/service-task-list/service-task-list-cloud.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "./components/task-list/task-list-cloud.component";
|
|
5
|
+
import * as i2 from "./components/service-task-list/service-task-list-cloud.component";
|
|
6
|
+
export declare const TASK_LIST_CLOUD_DIRECTIVES: readonly [typeof TaskListCloudComponent, typeof ServiceTaskListCloudComponent];
|
|
7
|
+
/** @deprecated use standalone components or TASK_LIST_CLOUD_DIRECTIVES instead */
|
|
8
|
+
export declare class TaskListCloudModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TaskListCloudModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TaskListCloudModule, never, [typeof i1.TaskListCloudComponent, typeof i2.ServiceTaskListCloudComponent], [typeof i1.TaskListCloudComponent, typeof i2.ServiceTaskListCloudComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TaskListCloudModule>;
|
|
12
|
+
}
|
package/lib/types.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
*/
|
|
17
|
+
export type ComponentSelectionMode = 'single' | 'multiple';
|
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.5.0
|
|
4
|
+
"version": "8.5.0",
|
|
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.5.0
|
|
25
|
-
"@alfresco/adf-core": ">=8.5.0
|
|
26
|
-
"@alfresco/adf-content-services": ">=8.5.0
|
|
24
|
+
"@alfresco/js-api": ">=9.5.0",
|
|
25
|
+
"@alfresco/adf-core": ">=8.5.0",
|
|
26
|
+
"@alfresco/adf-content-services": ">=8.5.0",
|
|
27
27
|
"@apollo/client": ">=3.7.2",
|
|
28
28
|
"@ngx-translate/core": ">=17.0.0",
|
|
29
29
|
"apollo-angular": ">=4.0.1",
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
*/
|
|
17
|
+
export * from './lib/process-services-cloud.module';
|
|
18
|
+
export * from './lib/app/public-api';
|
|
19
|
+
export * from './lib/process/public-api';
|
|
20
|
+
export * from './lib/task/public-api';
|
|
21
|
+
export * from './lib/group/public-api';
|
|
22
|
+
export * from './lib/people/public-api';
|
|
23
|
+
export * from './lib/form/public-api';
|
|
24
|
+
export * from './lib/services/public-api';
|
|
25
|
+
export * from './lib/screen/public-api';
|
|
26
|
+
export * from './lib/types';
|
|
27
|
+
export * from './lib/common/index';
|
|
28
|
+
export * from './lib/models/process-definition-cloud.model';
|
|
29
|
+
export * from './lib/models/date-cloud-filter.model';
|
|
30
|
+
export * from './lib/models/application-version.model';
|
|
31
|
+
export * from './lib/models/engine-event-cloud.model';
|
|
32
|
+
export * from './lib/models/task-cloud.model';
|
|
33
|
+
export * from './lib/models/filter-cloud-model';
|
|
34
|
+
export * from './lib/models/task-list-sorting.model';
|
|
35
|
+
export * from './lib/models/process-instance-variable.model';
|
|
36
|
+
export * from './lib/models/variable-definition';
|
|
37
|
+
export * from './lib/models/date-format-cloud.model';
|
|
38
|
+
export * from './lib/models/process-variable-filter.model';
|
|
39
|
+
export * from './lib/providers';
|