@zeniai/client-epic-state 5.0.36-betaRR01 → 5.0.36-betaRR02

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.
@@ -18,6 +18,7 @@ const initializeTaskToLocalStoreEpic = (actions$, state$) => actions$.pipe((0, o
18
18
  description: task.description,
19
19
  status: task.status.code,
20
20
  assignee: task.assignees,
21
+ groupAssignees: task.groupAssignees,
21
22
  dueDate: task.dueDate,
22
23
  priority: task.priority.code,
23
24
  tagIds: task.tagIds,
@@ -102,6 +102,7 @@ const prepareTaskPayload = (state, taskId, taskGroupId) => {
102
102
  sync_token: syncToken,
103
103
  task_group_ids: taskGroupId != null ? [taskGroupId] : [],
104
104
  time_spent: (0, formatMinutesToFromHHMM_1.convertHHMMStrToMinutes)(localData.timeSpent),
105
+ group_assignees: localData.groupAssignees,
105
106
  ...(taskId == null ? { is_private: localData.isPrivate ?? false } : {}),
106
107
  };
107
108
  };
@@ -21,6 +21,7 @@ export interface EditTaskLocalData {
21
21
  assignee: ID[];
22
22
  description: string;
23
23
  fileIds: ID[];
24
+ groupAssignees: ID[];
24
25
  name: string;
25
26
  priority: PriorityCodeType;
26
27
  recurringEndDateLocalData: {
@@ -6,6 +6,7 @@ exports.initialTaskDetailLocalData = {
6
6
  description: '',
7
7
  status: 'todo',
8
8
  assignee: [],
9
+ groupAssignees: [],
9
10
  dueDate: undefined,
10
11
  priority: 'medium',
11
12
  tagIds: [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeniai/client-epic-state",
3
- "version": "5.0.36-betaRR01",
3
+ "version": "5.0.36-betaRR02",
4
4
  "description": "Shared module between Web & Mobile containing required abstractions for state management, async network communication. ",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/esm/index.js",