@wix/crm 1.0.32 → 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.
|
@@ -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;
|
|
@@ -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;
|
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
|
}
|