@demind-inc/core 1.7.63 → 1.7.65

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
@@ -53,6 +53,7 @@ export interface SleepDetailsByDate {
53
53
  date: string;
54
54
  details: SleepDetail;
55
55
  predictedSleep?: Pick<SleepDetail, "awakeTime" | "sleepTime">;
56
+ nap?: NapItem[];
56
57
  }
57
58
  export interface NapItem {
58
59
  metricNapId: string;
package/lib/types.ts CHANGED
@@ -114,6 +114,7 @@ export interface SleepDetailsByDate {
114
114
  date: string;
115
115
  details: SleepDetail;
116
116
  predictedSleep?: Pick<SleepDetail, "awakeTime" | "sleepTime">;
117
+ nap?: NapItem[];
117
118
  }
118
119
 
119
120
  export interface NapItem {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.7.63",
3
+ "version": "1.7.65",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {