@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.
@@ -12,6 +12,7 @@ export const initializeTaskToLocalStoreEpic = (actions$, state$) => actions$.pip
12
12
  description: task.description,
13
13
  status: task.status.code,
14
14
  assignee: task.assignees,
15
+ groupAssignees: task.groupAssignees,
15
16
  dueDate: task.dueDate,
16
17
  priority: task.priority.code,
17
18
  tagIds: task.tagIds,
@@ -98,6 +98,7 @@ const prepareTaskPayload = (state, taskId, taskGroupId) => {
98
98
  sync_token: syncToken,
99
99
  task_group_ids: taskGroupId != null ? [taskGroupId] : [],
100
100
  time_spent: convertHHMMStrToMinutes(localData.timeSpent),
101
+ group_assignees: localData.groupAssignees,
101
102
  ...(taskId == null ? { is_private: localData.isPrivate ?? false } : {}),
102
103
  };
103
104
  };
@@ -3,6 +3,7 @@ export const initialTaskDetailLocalData = {
3
3
  description: '',
4
4
  status: 'todo',
5
5
  assignee: [],
6
+ groupAssignees: [],
6
7
  dueDate: undefined,
7
8
  priority: 'medium',
8
9
  tagIds: [],