@emilgroup/task-sdk 1.9.1-beta.7 → 1.9.1-beta.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.
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/task-sdk@1.9.1-beta.
|
|
20
|
+
npm install @emilgroup/task-sdk@1.9.1-beta.9 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/task-sdk@1.9.1-beta.
|
|
24
|
+
yarn add @emilgroup/task-sdk@1.9.1-beta.9
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `TasksApi`.
|
|
@@ -75,6 +75,12 @@ export interface CreateTaskRequestDto {
|
|
|
75
75
|
* @memberof CreateTaskRequestDto
|
|
76
76
|
*/
|
|
77
77
|
'entityCode'?: string;
|
|
78
|
+
/**
|
|
79
|
+
* Assign the task directly to a user-group. If omitted, routing filters decide the group.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof CreateTaskRequestDto
|
|
82
|
+
*/
|
|
83
|
+
'userGroupCode'?: string;
|
|
78
84
|
}
|
|
79
85
|
export declare const CreateTaskRequestDtoPriorityEnum: {
|
|
80
86
|
readonly Low: "LOW";
|
|
@@ -129,6 +129,12 @@ export interface PatchTaskRequestDto {
|
|
|
129
129
|
* @memberof PatchTaskRequestDto
|
|
130
130
|
*/
|
|
131
131
|
'clearLinkedEntity'?: boolean;
|
|
132
|
+
/**
|
|
133
|
+
* Reassign the task to a different user-group.
|
|
134
|
+
* @type {string}
|
|
135
|
+
* @memberof PatchTaskRequestDto
|
|
136
|
+
*/
|
|
137
|
+
'userGroupCode'?: string;
|
|
132
138
|
}
|
|
133
139
|
export declare const PatchTaskRequestDtoEntityTypeEnum: {
|
|
134
140
|
readonly Lead: "LEAD";
|
|
@@ -80,6 +80,12 @@ export interface CreateTaskRequestDto {
|
|
|
80
80
|
* @memberof CreateTaskRequestDto
|
|
81
81
|
*/
|
|
82
82
|
'entityCode'?: string;
|
|
83
|
+
/**
|
|
84
|
+
* Assign the task directly to a user-group. If omitted, routing filters decide the group.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof CreateTaskRequestDto
|
|
87
|
+
*/
|
|
88
|
+
'userGroupCode'?: string;
|
|
83
89
|
}
|
|
84
90
|
|
|
85
91
|
export const CreateTaskRequestDtoPriorityEnum = {
|
|
@@ -134,6 +134,12 @@ export interface PatchTaskRequestDto {
|
|
|
134
134
|
* @memberof PatchTaskRequestDto
|
|
135
135
|
*/
|
|
136
136
|
'clearLinkedEntity'?: boolean;
|
|
137
|
+
/**
|
|
138
|
+
* Reassign the task to a different user-group.
|
|
139
|
+
* @type {string}
|
|
140
|
+
* @memberof PatchTaskRequestDto
|
|
141
|
+
*/
|
|
142
|
+
'userGroupCode'?: string;
|
|
137
143
|
}
|
|
138
144
|
|
|
139
145
|
export const PatchTaskRequestDtoEntityTypeEnum = {
|