@wix/crm 1.0.29 → 1.0.31
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/contacts-v4-extended-field.http.d.ts +8 -8
- package/build/cjs/src/contacts-v4-extended-field.http.js +8 -8
- package/build/cjs/src/contacts-v4-extended-field.public.d.ts +3 -3
- package/build/cjs/src/contacts-v4-extended-field.public.js +1 -1
- package/build/cjs/src/contacts-v4-extended-field.public.js.map +1 -1
- package/build/cjs/src/contacts-v4-extended-field.universal.d.ts +28 -34
- package/build/cjs/src/contacts-v4-extended-field.universal.js +29 -27
- package/build/cjs/src/contacts-v4-extended-field.universal.js.map +1 -1
- package/build/cjs/src/crm-tasks-v1-task.http.d.ts +2 -2
- package/build/cjs/src/crm-tasks-v1-task.http.js +2 -2
- package/build/cjs/src/crm-tasks-v1-task.universal.d.ts +36 -24
- package/build/cjs/src/crm-tasks-v1-task.universal.js +10 -6
- package/build/cjs/src/crm-tasks-v1-task.universal.js.map +1 -1
- package/build/es/src/contacts-v4-extended-field.http.d.ts +8 -8
- package/build/es/src/contacts-v4-extended-field.http.js +8 -8
- package/build/es/src/contacts-v4-extended-field.public.d.ts +3 -3
- package/build/es/src/contacts-v4-extended-field.public.js +1 -1
- package/build/es/src/contacts-v4-extended-field.public.js.map +1 -1
- package/build/es/src/contacts-v4-extended-field.universal.d.ts +28 -34
- package/build/es/src/contacts-v4-extended-field.universal.js +29 -27
- package/build/es/src/contacts-v4-extended-field.universal.js.map +1 -1
- package/build/es/src/crm-tasks-v1-task.http.d.ts +2 -2
- package/build/es/src/crm-tasks-v1-task.http.js +2 -2
- package/build/es/src/crm-tasks-v1-task.universal.d.ts +36 -24
- package/build/es/src/crm-tasks-v1-task.universal.js +10 -6
- package/build/es/src/crm-tasks-v1-task.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -6,23 +6,23 @@ export declare const __debug: {
|
|
|
6
6
|
};
|
|
7
7
|
export interface Task {
|
|
8
8
|
/**
|
|
9
|
-
* The ID of the task. Should not be
|
|
9
|
+
* The ID of the task. Should not be populated in `createTask`.
|
|
10
10
|
* @readonly
|
|
11
11
|
*/
|
|
12
12
|
taskId?: string;
|
|
13
13
|
/** The ID of the creator of the task. */
|
|
14
14
|
creator?: Creator;
|
|
15
|
-
/**
|
|
15
|
+
/** The title of the task. */
|
|
16
16
|
title?: string;
|
|
17
17
|
/** States if the task is completed */
|
|
18
18
|
isCompleted?: boolean;
|
|
19
|
-
/**
|
|
19
|
+
/** Expected completion date for the task. */
|
|
20
20
|
dueAt?: Date;
|
|
21
|
-
/** Assigned contact ID
|
|
21
|
+
/** Assigned contact ID for the task */
|
|
22
22
|
contactId?: string;
|
|
23
|
-
/** Task
|
|
23
|
+
/** Task version. Incremented on each change. */
|
|
24
24
|
version?: number;
|
|
25
|
-
/** Assigned Wix user ID
|
|
25
|
+
/** Assigned Wix user ID for the task. */
|
|
26
26
|
assigneeId?: string;
|
|
27
27
|
/** The labels assigned to the task */
|
|
28
28
|
labels?: Label[];
|
|
@@ -42,11 +42,15 @@ export declare enum CreatorType {
|
|
|
42
42
|
}
|
|
43
43
|
export interface Label {
|
|
44
44
|
/**
|
|
45
|
-
* The ID of the label. Should not be
|
|
45
|
+
* The ID of the label. Should not be populated in `createTask`.
|
|
46
46
|
* @readonly
|
|
47
47
|
*/
|
|
48
48
|
labelId?: string;
|
|
49
|
-
/**
|
|
49
|
+
/**
|
|
50
|
+
* Label name.
|
|
51
|
+
*
|
|
52
|
+
* Max: 50 characters
|
|
53
|
+
*/
|
|
50
54
|
name?: string;
|
|
51
55
|
/** Label's color. */
|
|
52
56
|
color?: string;
|
|
@@ -56,11 +60,11 @@ export interface GetTaskRequest {
|
|
|
56
60
|
_id: string;
|
|
57
61
|
}
|
|
58
62
|
export interface GetTaskResponse {
|
|
59
|
-
/**
|
|
63
|
+
/** Task information. */
|
|
60
64
|
task?: Task;
|
|
61
65
|
}
|
|
62
66
|
export interface GetTasksListRequest {
|
|
63
|
-
/** Assigned contact ID
|
|
67
|
+
/** Assigned contact ID for the task. Optional. */
|
|
64
68
|
contactId?: string;
|
|
65
69
|
/** Sort key. */
|
|
66
70
|
key?: SortKey;
|
|
@@ -109,7 +113,7 @@ export interface FilterBy {
|
|
|
109
113
|
isCompleted?: boolean | null;
|
|
110
114
|
/** Assignee ID. */
|
|
111
115
|
assigneeId?: string | null;
|
|
112
|
-
/**
|
|
116
|
+
/** The title of the task. */
|
|
113
117
|
title?: string | null;
|
|
114
118
|
/** Task title contains substring */
|
|
115
119
|
subtitle?: string | null;
|
|
@@ -151,17 +155,21 @@ export interface CountTasksResponse {
|
|
|
151
155
|
byRequestedField?: Record<string, number>;
|
|
152
156
|
}
|
|
153
157
|
export interface CreateTaskRequest {
|
|
154
|
-
/** Task
|
|
158
|
+
/** Task information. */
|
|
155
159
|
task?: TaskData;
|
|
156
160
|
}
|
|
157
161
|
export interface TaskData {
|
|
158
|
-
/**
|
|
162
|
+
/**
|
|
163
|
+
* The title of the task.
|
|
164
|
+
*
|
|
165
|
+
* Max: 500 characters.
|
|
166
|
+
*/
|
|
159
167
|
title?: string;
|
|
160
168
|
/** Due Date fot the task. */
|
|
161
169
|
dueAt?: Date;
|
|
162
|
-
/** Assigned contact ID
|
|
170
|
+
/** Assigned contact ID for the task. */
|
|
163
171
|
contactId?: string;
|
|
164
|
-
/**
|
|
172
|
+
/** Assignee ID for the task. */
|
|
165
173
|
assigneeId?: string;
|
|
166
174
|
/** The label IDs assigned to the task. */
|
|
167
175
|
labelIds?: string[];
|
|
@@ -187,9 +195,9 @@ export interface TaskNotification {
|
|
|
187
195
|
export interface UpdateTaskRequest {
|
|
188
196
|
/** Task ID. */
|
|
189
197
|
_id: string;
|
|
190
|
-
/**
|
|
198
|
+
/** Required fields. */
|
|
191
199
|
fields?: string[];
|
|
192
|
-
/** Task
|
|
200
|
+
/** Task information. */
|
|
193
201
|
task?: TaskData;
|
|
194
202
|
}
|
|
195
203
|
export interface UpdateTaskResponse {
|
|
@@ -201,7 +209,7 @@ export interface UpdateTaskResponse {
|
|
|
201
209
|
export interface CompleteTaskRequest {
|
|
202
210
|
/** Task ID. */
|
|
203
211
|
_id: string;
|
|
204
|
-
/**
|
|
212
|
+
/** Indicates whether the task is completed. */
|
|
205
213
|
isCompleted?: boolean | null;
|
|
206
214
|
}
|
|
207
215
|
export interface CompleteTaskResponse {
|
|
@@ -246,6 +254,7 @@ export interface DeleteCompletedResponse {
|
|
|
246
254
|
*
|
|
247
255
|
* This function is not a universal function and runs only on the backend.
|
|
248
256
|
* @public
|
|
257
|
+
* @documentationMaturity preview
|
|
249
258
|
* @requiredField _id
|
|
250
259
|
* @param _id - Task ID.
|
|
251
260
|
*/
|
|
@@ -254,14 +263,15 @@ export declare function getTask(_id: string): Promise<GetTaskResponse>;
|
|
|
254
263
|
* Creates a new task.
|
|
255
264
|
*
|
|
256
265
|
*
|
|
257
|
-
* The `createTask()` function returns a Promise that resolves to the ID of the
|
|
266
|
+
* The `createTask()` function returns a Promise that resolves to the ID of the created task.
|
|
258
267
|
*
|
|
259
268
|
* When creating a new task, the specified `task` object must contain a `title` value.
|
|
260
269
|
*
|
|
261
270
|
* This function is not a universal function and runs only on the backend.
|
|
262
|
-
* @param task - Task object with the creation data
|
|
263
271
|
* @public
|
|
272
|
+
* @documentationMaturity preview
|
|
264
273
|
* @requiredField task
|
|
274
|
+
* @param task - Task information.
|
|
265
275
|
*/
|
|
266
276
|
export declare function createTask(task: TaskData): Promise<CreateTaskResponse>;
|
|
267
277
|
/**
|
|
@@ -270,18 +280,19 @@ export declare function createTask(task: TaskData): Promise<CreateTaskResponse>;
|
|
|
270
280
|
*
|
|
271
281
|
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the the updated task after it has been successfully updated.
|
|
272
282
|
*
|
|
273
|
-
* Only the properties
|
|
283
|
+
* Only the properties in the `task` object are updated. All other properties remain the same.
|
|
274
284
|
*
|
|
275
285
|
* To remove a value from the task, pass its corresponding property with a value of `null`.
|
|
276
286
|
*
|
|
277
287
|
* This function is not a universal function and runs only on the backend.
|
|
278
|
-
* @param fields - Set of desired fields.
|
|
279
|
-
* @param task - Task object with the updated data
|
|
280
288
|
* @public
|
|
289
|
+
* @documentationMaturity preview
|
|
281
290
|
* @requiredField _id
|
|
282
291
|
* @requiredField fields
|
|
283
292
|
* @requiredField task
|
|
284
293
|
* @param _id - Task ID.
|
|
294
|
+
* @param task - Task information.
|
|
295
|
+
* @param fields - Required fields.
|
|
285
296
|
*/
|
|
286
297
|
export declare function updateTaskFields(_id: string, fields: string[], task: TaskData): Promise<UpdateTaskResponse>;
|
|
287
298
|
/**
|
|
@@ -291,12 +302,12 @@ export declare function updateTaskFields(_id: string, fields: string[], task: Ta
|
|
|
291
302
|
* The `updateTaskStatus()` function returns a Promise that resolves to the ID of the task whose completed status was updated.
|
|
292
303
|
*
|
|
293
304
|
* This function is not a universal function and runs only on the backend.
|
|
294
|
-
* @param isCompleted - Indication whether the task is completed
|
|
295
305
|
* @public
|
|
296
306
|
* @documentationMaturity preview
|
|
297
307
|
* @requiredField _id
|
|
298
308
|
* @requiredField isCompleted
|
|
299
309
|
* @param _id - Task ID.
|
|
310
|
+
* @param isCompleted - Indicates whether the task is completed.
|
|
300
311
|
*/
|
|
301
312
|
export declare function updateTaskStatus(_id: string, isCompleted: boolean | null): Promise<CompleteTaskResponse>;
|
|
302
313
|
/**
|
|
@@ -307,6 +318,7 @@ export declare function updateTaskStatus(_id: string, isCompleted: boolean | nul
|
|
|
307
318
|
*
|
|
308
319
|
* This function is not a universal function and runs only on the backend.
|
|
309
320
|
* @public
|
|
321
|
+
* @documentationMaturity preview
|
|
310
322
|
* @requiredField _id
|
|
311
323
|
* @param _id - Task ID.
|
|
312
324
|
*/
|
|
@@ -59,6 +59,7 @@ const _updateTaskResponse = {};
|
|
|
59
59
|
*
|
|
60
60
|
* This function is not a universal function and runs only on the backend.
|
|
61
61
|
* @public
|
|
62
|
+
* @documentationMaturity preview
|
|
62
63
|
* @requiredField _id
|
|
63
64
|
* @param _id - Task ID.
|
|
64
65
|
*/
|
|
@@ -109,14 +110,15 @@ export function getTask(_id) {
|
|
|
109
110
|
* Creates a new task.
|
|
110
111
|
*
|
|
111
112
|
*
|
|
112
|
-
* The `createTask()` function returns a Promise that resolves to the ID of the
|
|
113
|
+
* The `createTask()` function returns a Promise that resolves to the ID of the created task.
|
|
113
114
|
*
|
|
114
115
|
* When creating a new task, the specified `task` object must contain a `title` value.
|
|
115
116
|
*
|
|
116
117
|
* This function is not a universal function and runs only on the backend.
|
|
117
|
-
* @param task - Task object with the creation data
|
|
118
118
|
* @public
|
|
119
|
+
* @documentationMaturity preview
|
|
119
120
|
* @requiredField task
|
|
121
|
+
* @param task - Task information.
|
|
120
122
|
*/
|
|
121
123
|
export function createTask(task) {
|
|
122
124
|
var _a, _b, _c;
|
|
@@ -167,18 +169,19 @@ export function createTask(task) {
|
|
|
167
169
|
*
|
|
168
170
|
* The `updateTaskFields()` function returns a Promise that resolves to the ID of the the updated task after it has been successfully updated.
|
|
169
171
|
*
|
|
170
|
-
* Only the properties
|
|
172
|
+
* Only the properties in the `task` object are updated. All other properties remain the same.
|
|
171
173
|
*
|
|
172
174
|
* To remove a value from the task, pass its corresponding property with a value of `null`.
|
|
173
175
|
*
|
|
174
176
|
* This function is not a universal function and runs only on the backend.
|
|
175
|
-
* @param fields - Set of desired fields.
|
|
176
|
-
* @param task - Task object with the updated data
|
|
177
177
|
* @public
|
|
178
|
+
* @documentationMaturity preview
|
|
178
179
|
* @requiredField _id
|
|
179
180
|
* @requiredField fields
|
|
180
181
|
* @requiredField task
|
|
181
182
|
* @param _id - Task ID.
|
|
183
|
+
* @param task - Task information.
|
|
184
|
+
* @param fields - Required fields.
|
|
182
185
|
*/
|
|
183
186
|
export function updateTaskFields(_id, fields, task) {
|
|
184
187
|
var _a, _b, _c;
|
|
@@ -232,12 +235,12 @@ export function updateTaskFields(_id, fields, task) {
|
|
|
232
235
|
* The `updateTaskStatus()` function returns a Promise that resolves to the ID of the task whose completed status was updated.
|
|
233
236
|
*
|
|
234
237
|
* This function is not a universal function and runs only on the backend.
|
|
235
|
-
* @param isCompleted - Indication whether the task is completed
|
|
236
238
|
* @public
|
|
237
239
|
* @documentationMaturity preview
|
|
238
240
|
* @requiredField _id
|
|
239
241
|
* @requiredField isCompleted
|
|
240
242
|
* @param _id - Task ID.
|
|
243
|
+
* @param isCompleted - Indicates whether the task is completed.
|
|
241
244
|
*/
|
|
242
245
|
export function updateTaskStatus(_id, isCompleted) {
|
|
243
246
|
var _a, _b, _c;
|
|
@@ -291,6 +294,7 @@ export function updateTaskStatus(_id, isCompleted) {
|
|
|
291
294
|
*
|
|
292
295
|
* This function is not a universal function and runs only on the backend.
|
|
293
296
|
* @public
|
|
297
|
+
* @documentationMaturity preview
|
|
294
298
|
* @requiredField _id
|
|
295
299
|
* @param _id - Task ID.
|
|
296
300
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"crm-tasks-v1-task.universal.js","sourceRoot":"","sources":["../../../src/crm-tasks-v1-task.universal.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAErE,OAAO,KAAK,2BAA2B,MAAM,0BAA0B,CAAC;AAExE,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAED,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AAoC5B,MAAM,CAAN,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,4BAAa,CAAA;IACb,0BAAW,CAAA;AACb,CAAC,EAHW,WAAW,KAAX,WAAW,QAGtB;
|
|
1
|
+
{"version":3,"file":"crm-tasks-v1-task.universal.js","sourceRoot":"","sources":["../../../src/crm-tasks-v1-task.universal.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/crm",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.31",
|
|
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": "6f706f3d0ac124440c163ceba2f375f38f1a0b3cad3ff671e08e5911"
|
|
37
37
|
}
|