@demind-inc/core 1.0.14 → 1.0.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/constants.js CHANGED
@@ -12,4 +12,5 @@ exports.SUPPORTED_TERRA_PROVIDERS = [
12
12
  "FITBIT",
13
13
  "OURA",
14
14
  "GARMIN",
15
+ "APPLE_HEALTH",
15
16
  ];
@@ -6,6 +6,7 @@ export interface User {
6
6
  connectedDevices?: UserConnectedDevice[];
7
7
  calendarIds?: string[];
8
8
  metricId?: string;
9
+ createdAt?: string;
9
10
  }
10
11
  export interface UserConnectedDevice {
11
12
  deviceName: SupportedTerraProvidersType;
package/dist/types.d.ts CHANGED
@@ -1 +1 @@
1
- export type SupportedTerraProvidersType = "FITBIT" | "OURA" | "GARMIN";
1
+ export type SupportedTerraProvidersType = "FITBIT" | "OURA" | "GARMIN" | "APPLE_HEALTH";
package/lib/constants.ts CHANGED
@@ -12,4 +12,5 @@ export const SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[] = [
12
12
  "FITBIT",
13
13
  "OURA",
14
14
  "GARMIN",
15
+ "APPLE_HEALTH",
15
16
  ];
@@ -7,6 +7,7 @@ export interface User {
7
7
  connectedDevices?: UserConnectedDevice[];
8
8
  calendarIds?: string[];
9
9
  metricId?: string;
10
+ createdAt?: string
10
11
  }
11
12
 
12
13
  export interface UserConnectedDevice {
package/lib/types.ts CHANGED
@@ -1 +1,5 @@
1
- export type SupportedTerraProvidersType = "FITBIT" | "OURA" | "GARMIN";
1
+ export type SupportedTerraProvidersType =
2
+ | "FITBIT"
3
+ | "OURA"
4
+ | "GARMIN"
5
+ | "APPLE_HEALTH";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {