@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.
@@ -3,6 +3,7 @@ export interface Team {
3
3
  name: string;
4
4
  ownerUserId: string;
5
5
  status: TeamStatus;
6
+ teamBoardIds?: string[];
6
7
  createdAt: string;
7
8
  updatedAt: string;
8
9
  archivedAt?: string;
@@ -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;
@@ -3,6 +3,7 @@ export interface Team {
3
3
  name: string;
4
4
  ownerUserId: string;
5
5
  status: TeamStatus;
6
+ teamBoardIds?: string[];
6
7
  createdAt: string;
7
8
  updatedAt: string;
8
9
  archivedAt?: string;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.10.10",
3
+ "version": "1.10.11",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {