@automateinc/fleet-types 1.0.88-dev.adfb99d → 1.0.88-dev.c7298c7

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.
@@ -210,6 +210,7 @@ export * from "./todo-activity";
210
210
  export * from "./todo-comment";
211
211
  export * from "./todo-custom-field";
212
212
  export * from "./todo-document";
213
+ export * from "./todo-folder";
213
214
  export * from "./todo-list";
214
215
  export * from "./todo-space";
215
216
  export * from "./todo-status";
@@ -0,0 +1,66 @@
1
+ export interface ITodoFolder {
2
+ id: string;
3
+ createdAt: string;
4
+ updatedAt?: string;
5
+ deletedAt?: string;
6
+
7
+ name: string;
8
+ icon?: string;
9
+ color?: string;
10
+
11
+ spaceId: string;
12
+
13
+ sortOrder: number;
14
+
15
+ metadata?: any;
16
+ }
17
+
18
+ export interface ITodoDoc {
19
+ id: string;
20
+ createdAt: string;
21
+ updatedAt?: string;
22
+ deletedAt?: string;
23
+
24
+ title: string;
25
+ content?: any;
26
+
27
+ spaceId: string;
28
+ folderId?: string;
29
+
30
+ createdById: string;
31
+
32
+ sortOrder: number;
33
+
34
+ metadata?: any;
35
+ }
36
+
37
+ export interface ITodoChecklist {
38
+ id: string;
39
+ createdAt: string;
40
+ updatedAt?: string;
41
+
42
+ name: string;
43
+
44
+ todoId: string;
45
+
46
+ sortOrder: number;
47
+
48
+ items?: ITodoChecklistItem[];
49
+
50
+ metadata?: any;
51
+ }
52
+
53
+ export interface ITodoChecklistItem {
54
+ id: string;
55
+ createdAt: string;
56
+ updatedAt?: string;
57
+
58
+ text: string;
59
+ isChecked: boolean;
60
+
61
+ checklistId: string;
62
+
63
+ sortOrder: number;
64
+
65
+ metadata?: any;
66
+ }
package/package.json CHANGED
@@ -52,5 +52,5 @@
52
52
  "test": "echo \"Error: no test specified\" && exit 1"
53
53
  },
54
54
  "types": "dist/types/index.d.ts",
55
- "version": "1.0.88-dev.adfb99d"
55
+ "version": "1.0.88-dev.c7298c7"
56
56
  }