@demind-inc/core 1.4.28 → 1.4.29

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
@@ -96,3 +96,4 @@ export * from "./featureFlags.types";
96
96
  export type TimeboxSessionType = "deepWork" | "lightWork";
97
97
  export type TaskItemForSchedule = Pick<TaskItem, "taskId" | "name" | "duration" | "sortIndex" | "labels" | "addedToCalendar" | "boardId" | "appFrom">;
98
98
  export type ScheduleLogicElement = "timebox" | "routine" | "task";
99
+ export type WearableSourceType = "ALL" | "SLEEP" | "ACTIVITY" | "MEAL" | "STRESS";
package/lib/types.ts CHANGED
@@ -160,3 +160,10 @@ export type TaskItemForSchedule = Pick<
160
160
  >;
161
161
 
162
162
  export type ScheduleLogicElement = "timebox" | "routine" | "task";
163
+
164
+ export type WearableSourceType =
165
+ | "ALL"
166
+ | "SLEEP"
167
+ | "ACTIVITY"
168
+ | "MEAL"
169
+ | "STRESS";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.4.28",
3
+ "version": "1.4.29",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {