@demind-inc/core 1.5.14 → 1.5.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.
@@ -15,6 +15,7 @@ export interface RoutineActivity {
15
15
  recurring: RoutineActivityRecurring;
16
16
  default?: boolean;
17
17
  hidden?: boolean;
18
+ selected?: boolean;
18
19
  }
19
20
  export type RoutineActivityRecurringDay = "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday";
20
21
  export type RoutineActivityRecurring = {
package/dist/types.d.ts CHANGED
@@ -119,5 +119,6 @@ export interface RecommendationAction {
119
119
  phase?: CircadianPhase;
120
120
  durationMinutes?: number;
121
121
  icon?: string;
122
+ iconColor?: string;
122
123
  isScheduled?: boolean;
123
124
  }
@@ -17,6 +17,7 @@ export interface RoutineActivity {
17
17
  recurring: RoutineActivityRecurring;
18
18
  default?: boolean;
19
19
  hidden?: boolean;
20
+ selected?: boolean;
20
21
  }
21
22
 
22
23
  export type RoutineActivityRecurringDay =
package/lib/types.ts CHANGED
@@ -204,6 +204,7 @@ export interface RecommendationAction {
204
204
  description?: string;
205
205
  phase?: CircadianPhase;
206
206
  durationMinutes?: number;
207
- icon?: string;
207
+ icon?: string; // emoji
208
+ iconColor?: string; // hex color
208
209
  isScheduled?: boolean;
209
210
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.5.14",
3
+ "version": "1.5.16",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {