@demind-inc/core 1.3.31 → 1.3.33

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.
@@ -22,9 +22,7 @@ export interface TodoTasksBoardList {
22
22
  export type TodoAppFrom = TodoIntegrationType | "lifestack";
23
23
  export interface TaskLabel {
24
24
  name: string;
25
- id?: string;
26
25
  color?: string;
27
- from?: TodoAppFrom;
28
26
  }
29
27
  export interface DateTimeSet {
30
28
  datetime?: string;
package/dist/types.d.ts CHANGED
@@ -25,6 +25,7 @@ export interface HeatmapDataType {
25
25
  }
26
26
  export interface ScheduledAction {
27
27
  name: string;
28
+ id?: string;
28
29
  description?: string;
29
30
  startDate: string;
30
31
  endDate: string;
@@ -26,9 +26,7 @@ export type TodoAppFrom = TodoIntegrationType | "lifestack";
26
26
 
27
27
  export interface TaskLabel {
28
28
  name: string;
29
- id?: string;
30
29
  color?: string;
31
- from?: TodoAppFrom;
32
30
  }
33
31
 
34
32
  export interface DateTimeSet {
package/lib/types.ts CHANGED
@@ -61,6 +61,7 @@ export interface HeatmapDataType {
61
61
 
62
62
  export interface ScheduledAction {
63
63
  name: string;
64
+ id?: string;
64
65
  description?: string;
65
66
  startDate: string;
66
67
  endDate: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.3.31",
3
+ "version": "1.3.33",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {