@wix/crm 1.0.31 → 1.0.33
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/build/cjs/src/crm-tasks-v1-task.http.d.ts +1 -1
- package/build/cjs/src/crm-tasks-v1-task.http.js +1 -1
- package/build/cjs/src/crm-tasks-v1-task.universal.d.ts +5 -5
- package/build/cjs/src/crm-tasks-v1-task.universal.js +1 -1
- package/build/es/src/crm-tasks-v1-task.http.d.ts +1 -1
- package/build/es/src/crm-tasks-v1-task.http.js +1 -1
- package/build/es/src/crm-tasks-v1-task.universal.d.ts +5 -5
- package/build/es/src/crm-tasks-v1-task.universal.js +1 -1
- package/package.json +2 -2
|
@@ -20,7 +20,7 @@ export declare function createTask(payload: CreateTaskRequest): RequestOptionsFa
|
|
|
20
20
|
* Updates the specified fields of an existing task.
|
|
21
21
|
*
|
|
22
22
|
*
|
|
23
|
-
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the
|
|
23
|
+
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the updated task after it has been successfully updated.
|
|
24
24
|
*
|
|
25
25
|
* Only the properties in the `task` object are updated. All other properties remain the same.
|
|
26
26
|
*
|
|
@@ -108,7 +108,7 @@ exports.createTask = createTask;
|
|
|
108
108
|
* Updates the specified fields of an existing task.
|
|
109
109
|
*
|
|
110
110
|
*
|
|
111
|
-
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the
|
|
111
|
+
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the updated task after it has been successfully updated.
|
|
112
112
|
*
|
|
113
113
|
* Only the properties in the `task` object are updated. All other properties remain the same.
|
|
114
114
|
*
|
|
@@ -14,7 +14,7 @@ export interface Task {
|
|
|
14
14
|
creator?: Creator;
|
|
15
15
|
/** The title of the task. */
|
|
16
16
|
title?: string;
|
|
17
|
-
/**
|
|
17
|
+
/** Indicates if the task is completed. */
|
|
18
18
|
isCompleted?: boolean;
|
|
19
19
|
/** Expected completion date for the task. */
|
|
20
20
|
dueAt?: Date;
|
|
@@ -22,7 +22,7 @@ export interface Task {
|
|
|
22
22
|
contactId?: string;
|
|
23
23
|
/** Task version. Incremented on each change. */
|
|
24
24
|
version?: number;
|
|
25
|
-
/**
|
|
25
|
+
/** Assignee ID for the task. */
|
|
26
26
|
assigneeId?: string;
|
|
27
27
|
/** The labels assigned to the task */
|
|
28
28
|
labels?: Label[];
|
|
@@ -109,7 +109,7 @@ export interface FilterBy {
|
|
|
109
109
|
fromDate?: Date;
|
|
110
110
|
/** To due date */
|
|
111
111
|
toDate?: Date;
|
|
112
|
-
/**
|
|
112
|
+
/** Completed status. */
|
|
113
113
|
isCompleted?: boolean | null;
|
|
114
114
|
/** Assignee ID. */
|
|
115
115
|
assigneeId?: string | null;
|
|
@@ -165,7 +165,7 @@ export interface TaskData {
|
|
|
165
165
|
* Max: 500 characters.
|
|
166
166
|
*/
|
|
167
167
|
title?: string;
|
|
168
|
-
/**
|
|
168
|
+
/** Expected completion date for the task. */
|
|
169
169
|
dueAt?: Date;
|
|
170
170
|
/** Assigned contact ID for the task. */
|
|
171
171
|
contactId?: string;
|
|
@@ -278,7 +278,7 @@ export declare function createTask(task: TaskData): Promise<CreateTaskResponse>;
|
|
|
278
278
|
* Updates the specified fields of an existing task.
|
|
279
279
|
*
|
|
280
280
|
*
|
|
281
|
-
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the
|
|
281
|
+
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the updated task after it has been successfully updated.
|
|
282
282
|
*
|
|
283
283
|
* Only the properties in the `task` object are updated. All other properties remain the same.
|
|
284
284
|
*
|
|
@@ -191,7 +191,7 @@ exports.createTask = createTask;
|
|
|
191
191
|
* Updates the specified fields of an existing task.
|
|
192
192
|
*
|
|
193
193
|
*
|
|
194
|
-
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the
|
|
194
|
+
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the updated task after it has been successfully updated.
|
|
195
195
|
*
|
|
196
196
|
* Only the properties in the `task` object are updated. All other properties remain the same.
|
|
197
197
|
*
|
|
@@ -20,7 +20,7 @@ export declare function createTask(payload: CreateTaskRequest): RequestOptionsFa
|
|
|
20
20
|
* Updates the specified fields of an existing task.
|
|
21
21
|
*
|
|
22
22
|
*
|
|
23
|
-
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the
|
|
23
|
+
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the updated task after it has been successfully updated.
|
|
24
24
|
*
|
|
25
25
|
* Only the properties in the `task` object are updated. All other properties remain the same.
|
|
26
26
|
*
|
|
@@ -103,7 +103,7 @@ export function createTask(payload) {
|
|
|
103
103
|
* Updates the specified fields of an existing task.
|
|
104
104
|
*
|
|
105
105
|
*
|
|
106
|
-
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the
|
|
106
|
+
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the updated task after it has been successfully updated.
|
|
107
107
|
*
|
|
108
108
|
* Only the properties in the `task` object are updated. All other properties remain the same.
|
|
109
109
|
*
|
|
@@ -14,7 +14,7 @@ export interface Task {
|
|
|
14
14
|
creator?: Creator;
|
|
15
15
|
/** The title of the task. */
|
|
16
16
|
title?: string;
|
|
17
|
-
/**
|
|
17
|
+
/** Indicates if the task is completed. */
|
|
18
18
|
isCompleted?: boolean;
|
|
19
19
|
/** Expected completion date for the task. */
|
|
20
20
|
dueAt?: Date;
|
|
@@ -22,7 +22,7 @@ export interface Task {
|
|
|
22
22
|
contactId?: string;
|
|
23
23
|
/** Task version. Incremented on each change. */
|
|
24
24
|
version?: number;
|
|
25
|
-
/**
|
|
25
|
+
/** Assignee ID for the task. */
|
|
26
26
|
assigneeId?: string;
|
|
27
27
|
/** The labels assigned to the task */
|
|
28
28
|
labels?: Label[];
|
|
@@ -109,7 +109,7 @@ export interface FilterBy {
|
|
|
109
109
|
fromDate?: Date;
|
|
110
110
|
/** To due date */
|
|
111
111
|
toDate?: Date;
|
|
112
|
-
/**
|
|
112
|
+
/** Completed status. */
|
|
113
113
|
isCompleted?: boolean | null;
|
|
114
114
|
/** Assignee ID. */
|
|
115
115
|
assigneeId?: string | null;
|
|
@@ -165,7 +165,7 @@ export interface TaskData {
|
|
|
165
165
|
* Max: 500 characters.
|
|
166
166
|
*/
|
|
167
167
|
title?: string;
|
|
168
|
-
/**
|
|
168
|
+
/** Expected completion date for the task. */
|
|
169
169
|
dueAt?: Date;
|
|
170
170
|
/** Assigned contact ID for the task. */
|
|
171
171
|
contactId?: string;
|
|
@@ -278,7 +278,7 @@ export declare function createTask(task: TaskData): Promise<CreateTaskResponse>;
|
|
|
278
278
|
* Updates the specified fields of an existing task.
|
|
279
279
|
*
|
|
280
280
|
*
|
|
281
|
-
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the
|
|
281
|
+
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the updated task after it has been successfully updated.
|
|
282
282
|
*
|
|
283
283
|
* Only the properties in the `task` object are updated. All other properties remain the same.
|
|
284
284
|
*
|
|
@@ -167,7 +167,7 @@ export function createTask(task) {
|
|
|
167
167
|
* Updates the specified fields of an existing task.
|
|
168
168
|
*
|
|
169
169
|
*
|
|
170
|
-
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the
|
|
170
|
+
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the updated task after it has been successfully updated.
|
|
171
171
|
*
|
|
172
172
|
* Only the properties in the `task` object are updated. All other properties remain the same.
|
|
173
173
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/crm",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.33",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
-
"falconPackageHash": "
|
|
36
|
+
"falconPackageHash": "d1e013efddd71eb92138714ae67658886b0e95fcc11faf3ce78a567c"
|
|
37
37
|
}
|