@demind-inc/core 1.7.15 → 1.7.16

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/types.d.ts CHANGED
@@ -16,6 +16,7 @@ export interface EventEnergySet {
16
16
  energy: EnergyFeedbackType;
17
17
  }
18
18
  export type Chronotype = "morning" | "night" | "hybrid";
19
+ export type ScheduledActionType = "add" | "remove" | "update";
19
20
  export interface HeatmapDataType {
20
21
  x: string;
21
22
  y: string;
@@ -37,6 +38,7 @@ export interface ScheduledAction {
37
38
  logicElement?: ScheduleLogicElement;
38
39
  eventFrom?: ScheduledActionEventFrom;
39
40
  priority?: TaskPriority;
41
+ actionType?: ScheduledActionType;
40
42
  }
41
43
  export interface ScheduledActionOptions {
42
44
  startDate: string;
package/lib/types.ts CHANGED
@@ -62,6 +62,8 @@ export interface EventEnergySet {
62
62
 
63
63
  export type Chronotype = "morning" | "night" | "hybrid";
64
64
 
65
+ export type ScheduledActionType = "add" | "remove" | "update";
66
+
65
67
  export interface HeatmapDataType {
66
68
  x: string;
67
69
  y: string;
@@ -87,6 +89,7 @@ export interface ScheduledAction {
87
89
  logicElement?: ScheduleLogicElement;
88
90
  eventFrom?: ScheduledActionEventFrom;
89
91
  priority?: TaskPriority;
92
+ actionType?: ScheduledActionType;
90
93
  }
91
94
 
92
95
  export interface ScheduledActionOptions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.7.15",
3
+ "version": "1.7.16",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {