@demind-inc/core 1.10.10 → 1.10.11
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/dist/models/Team.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export interface TodoTasksBoard {
|
|
|
34
34
|
originalBoardId: string;
|
|
35
35
|
name: string;
|
|
36
36
|
appFrom: TodoAppFrom;
|
|
37
|
+
teamId?: string;
|
|
37
38
|
createdAt: string;
|
|
38
39
|
todoIntegRef?: DocumentReference;
|
|
39
40
|
color?: string;
|
|
@@ -120,6 +121,14 @@ export interface TaskItem {
|
|
|
120
121
|
labels?: TaskLabel[];
|
|
121
122
|
assigneesIds?: string[];
|
|
122
123
|
isMeAssigned?: boolean;
|
|
124
|
+
teamTaskAssignment?: {
|
|
125
|
+
teamId: string;
|
|
126
|
+
createdByUserId: string;
|
|
127
|
+
assigneeUserId?: string;
|
|
128
|
+
assignedByUserId?: string;
|
|
129
|
+
createdAt: string;
|
|
130
|
+
updatedAt: string;
|
|
131
|
+
};
|
|
123
132
|
updatedAt: string;
|
|
124
133
|
duration?: TaskItemDuration;
|
|
125
134
|
addedToCalendar?: boolean;
|
package/lib/models/Team.ts
CHANGED
package/lib/models/TodoTasks.ts
CHANGED
|
@@ -40,6 +40,7 @@ export interface TodoTasksBoard {
|
|
|
40
40
|
originalBoardId: string;
|
|
41
41
|
name: string;
|
|
42
42
|
appFrom: TodoAppFrom;
|
|
43
|
+
teamId?: string;
|
|
43
44
|
createdAt: string;
|
|
44
45
|
todoIntegRef?: DocumentReference;
|
|
45
46
|
color?: string;
|
|
@@ -136,6 +137,14 @@ export interface TaskItem {
|
|
|
136
137
|
labels?: TaskLabel[];
|
|
137
138
|
assigneesIds?: string[];
|
|
138
139
|
isMeAssigned?: boolean;
|
|
140
|
+
teamTaskAssignment?: {
|
|
141
|
+
teamId: string;
|
|
142
|
+
createdByUserId: string;
|
|
143
|
+
assigneeUserId?: string;
|
|
144
|
+
assignedByUserId?: string;
|
|
145
|
+
createdAt: string;
|
|
146
|
+
updatedAt: string;
|
|
147
|
+
};
|
|
139
148
|
updatedAt: string;
|
|
140
149
|
duration?: TaskItemDuration;
|
|
141
150
|
addedToCalendar?: boolean;
|