@demind-inc/core 1.2.41 → 1.2.43

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.
@@ -6,7 +6,7 @@ export interface Metrics {
6
6
  basicTimezone?: string;
7
7
  targetUserId?: string;
8
8
  devices?: string[];
9
- manufacturers?: string[];
9
+ terraManufacturers?: string[];
10
10
  }
11
11
  export interface MetricSleep {
12
12
  metricSleepId: string;
package/dist/types.d.ts CHANGED
@@ -37,6 +37,7 @@ export interface ScheduledActionOptions {
37
37
  export interface SleepDetailsByDate {
38
38
  date: string;
39
39
  details: SleepDetail;
40
+ detailedDevices?: string[];
40
41
  }
41
42
  export interface PhaseDetailsByDate {
42
43
  date: string;
@@ -7,7 +7,7 @@ export interface Metrics {
7
7
  basicTimezone?: string;
8
8
  targetUserId?: string;
9
9
  devices?: string[]; // e.g., Ultrahuman
10
- manufacturers?: string[]; // e.g., Apple Health -- same as ConnectedDevice.deviceName
10
+ terraManufacturers?: string[]; // e.g., Apple Health -- same as ConnectedDevice.deviceName
11
11
  }
12
12
 
13
13
  export interface MetricSleep {
package/lib/types.ts CHANGED
@@ -66,6 +66,7 @@ export interface ScheduledActionOptions {
66
66
  export interface SleepDetailsByDate {
67
67
  date: string;
68
68
  details: SleepDetail;
69
+ detailedDevices?: string[];
69
70
  }
70
71
 
71
72
  export interface PhaseDetailsByDate {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.2.41",
3
+ "version": "1.2.43",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {