@demind-inc/core 1.3.52 → 1.4.0
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/constants.d.ts +2 -0
- package/dist/constants.js +2 -0
- package/dist/models/TaskLabels.d.ts +10 -0
- package/dist/models/TaskLabels.js +2 -0
- package/dist/models/TodoTasks.d.ts +1 -4
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/lib/constants.ts +2 -0
- package/lib/models/TaskLabels.ts +11 -0
- package/lib/models/TodoTasks.ts +1 -5
- package/lib/models/index.ts +1 -0
- package/package.json +1 -1
package/dist/constants.d.ts
CHANGED
package/dist/constants.js
CHANGED
|
@@ -18,6 +18,8 @@ exports.DB_COLLECTION = {
|
|
|
18
18
|
TODO_INTEGRATIONS: "todoIntegrations",
|
|
19
19
|
TODO_TASKS: "todoTasks",
|
|
20
20
|
TASK_ITEMS: "taskItems",
|
|
21
|
+
TASK_LABELS_GROUP: "taskLabelsGroup",
|
|
22
|
+
TASK_LABELS: "taskLabels",
|
|
21
23
|
PREFERENCES: "preferences",
|
|
22
24
|
CALENDLY_INTEGRATIONS: "calendlyIntegrations",
|
|
23
25
|
DATA_TREND: "dataTrend",
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DocumentReference } from "@google-cloud/firestore";
|
|
2
2
|
import { TodoIntegrationType } from "./TodoIntegrations";
|
|
3
|
+
import { TaskLabel } from "./TaskLabels";
|
|
3
4
|
export interface TodoTasksBoard {
|
|
4
5
|
todoTaskId: string;
|
|
5
6
|
originalBoardId: string;
|
|
@@ -20,10 +21,6 @@ export interface TodoTasksBoardList {
|
|
|
20
21
|
rawJson?: any;
|
|
21
22
|
}
|
|
22
23
|
export type TodoAppFrom = TodoIntegrationType | "lifestack";
|
|
23
|
-
export interface TaskLabel {
|
|
24
|
-
name: string;
|
|
25
|
-
color?: string;
|
|
26
|
-
}
|
|
27
24
|
export interface DateTimeSet {
|
|
28
25
|
datetime?: string;
|
|
29
26
|
date?: string;
|
package/dist/models/index.d.ts
CHANGED
package/dist/models/index.js
CHANGED
package/lib/constants.ts
CHANGED
|
@@ -18,6 +18,8 @@ export const DB_COLLECTION = {
|
|
|
18
18
|
TODO_INTEGRATIONS: "todoIntegrations",
|
|
19
19
|
TODO_TASKS: "todoTasks",
|
|
20
20
|
TASK_ITEMS: "taskItems",
|
|
21
|
+
TASK_LABELS_GROUP: "taskLabelsGroup",
|
|
22
|
+
TASK_LABELS: "taskLabels",
|
|
21
23
|
PREFERENCES: "preferences",
|
|
22
24
|
CALENDLY_INTEGRATIONS: "calendlyIntegrations",
|
|
23
25
|
DATA_TREND: "dataTrend",
|
package/lib/models/TodoTasks.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DocumentReference } from "@google-cloud/firestore";
|
|
2
2
|
import { TodoIntegrationType } from "./TodoIntegrations";
|
|
3
|
+
import { TaskLabel } from "./TaskLabels";
|
|
3
4
|
|
|
4
5
|
export interface TodoTasksBoard {
|
|
5
6
|
todoTaskId: string;
|
|
@@ -24,11 +25,6 @@ export interface TodoTasksBoardList {
|
|
|
24
25
|
|
|
25
26
|
export type TodoAppFrom = TodoIntegrationType | "lifestack";
|
|
26
27
|
|
|
27
|
-
export interface TaskLabel {
|
|
28
|
-
name: string;
|
|
29
|
-
color?: string;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
28
|
export interface DateTimeSet {
|
|
33
29
|
datetime?: string;
|
|
34
30
|
date?: string;
|
package/lib/models/index.ts
CHANGED