@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.
@@ -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 the updated task after it has been successfully updated.
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 the updated task after it has been successfully updated.
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
- /** States if the task is completed */
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
- /** Assigned Wix user ID for the task. */
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
- /** Is completed status */
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
- /** Due Date fot the task. */
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 the updated task after it has been successfully updated.
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 the updated task after it has been successfully updated.
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 the updated task after it has been successfully updated.
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 the updated task after it has been successfully updated.
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
- /** States if the task is completed */
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
- /** Assigned Wix user ID for the task. */
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
- /** Is completed status */
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
- /** Due Date fot the task. */
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 the updated task after it has been successfully updated.
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 the updated task after it has been successfully updated.
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.31",
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": "6f706f3d0ac124440c163ceba2f375f38f1a0b3cad3ff671e08e5911"
36
+ "falconPackageHash": "d1e013efddd71eb92138714ae67658886b0e95fcc11faf3ce78a567c"
37
37
  }