@demind-inc/core 1.4.57 → 1.4.59

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.
@@ -37,6 +37,7 @@ export declare const DB_COLLECTION: {
37
37
  export declare const SLEEP_SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[];
38
38
  export declare const STRESS_SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[];
39
39
  export declare const ACTIVITY_SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[];
40
+ export declare const HEART_RATE_SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[];
40
41
  export declare const MEAL_SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[];
41
42
  export declare const AVAILABLE_TODO_INTEGRATIONS_TYPE: TodoIntegrationType[];
42
43
  export declare const ALL_TODO_INTEGRATIONS_TYPE: TodoIntegrationType[];
package/dist/constants.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ALL_TODO_INTEGRATIONS_TYPE = exports.AVAILABLE_TODO_INTEGRATIONS_TYPE = exports.MEAL_SUPPORTED_TERRA_PROVIDERS = exports.ACTIVITY_SUPPORTED_TERRA_PROVIDERS = exports.STRESS_SUPPORTED_TERRA_PROVIDERS = exports.SLEEP_SUPPORTED_TERRA_PROVIDERS = exports.DB_COLLECTION = void 0;
3
+ exports.ALL_TODO_INTEGRATIONS_TYPE = exports.AVAILABLE_TODO_INTEGRATIONS_TYPE = exports.MEAL_SUPPORTED_TERRA_PROVIDERS = exports.HEART_RATE_SUPPORTED_TERRA_PROVIDERS = exports.ACTIVITY_SUPPORTED_TERRA_PROVIDERS = exports.STRESS_SUPPORTED_TERRA_PROVIDERS = exports.SLEEP_SUPPORTED_TERRA_PROVIDERS = exports.DB_COLLECTION = void 0;
4
4
  exports.DB_COLLECTION = {
5
5
  USERS: "users",
6
6
  CALENDARS: "calendars",
@@ -47,6 +47,7 @@ exports.STRESS_SUPPORTED_TERRA_PROVIDERS = [
47
47
  "GARMIN",
48
48
  ];
49
49
  exports.ACTIVITY_SUPPORTED_TERRA_PROVIDERS = ["FITBIT", "OURA", "GARMIN", "WHOOP", "STRAVA"]; // APPLE is not supported in terra-api
50
+ exports.HEART_RATE_SUPPORTED_TERRA_PROVIDERS = ["FITBIT", "OURA", "GARMIN", "ULTRAHUMAN"]; // APPLE is not supported in terra-api
50
51
  exports.MEAL_SUPPORTED_TERRA_PROVIDERS = [
51
52
  "FITBIT",
52
53
  "MYFITNESSPAL",
@@ -35,6 +35,7 @@ export interface User {
35
35
  }
36
36
  export interface UserPersona {
37
37
  job: string;
38
+ marketing: string;
38
39
  pains: string[];
39
40
  goals: string[];
40
41
  }
package/lib/constants.ts CHANGED
@@ -52,6 +52,9 @@ export const STRESS_SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[] = [
52
52
  export const ACTIVITY_SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[] =
53
53
  ["FITBIT", "OURA", "GARMIN", "WHOOP", "STRAVA"]; // APPLE is not supported in terra-api
54
54
 
55
+ export const HEART_RATE_SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[] =
56
+ ["FITBIT", "OURA", "GARMIN", "ULTRAHUMAN"]; // APPLE is not supported in terra-api
57
+
55
58
  export const MEAL_SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[] = [
56
59
  "FITBIT",
57
60
  "MYFITNESSPAL",
@@ -37,6 +37,7 @@ export interface User {
37
37
 
38
38
  export interface UserPersona {
39
39
  job: string;
40
+ marketing: string;
40
41
  pains: string[];
41
42
  goals: string[];
42
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.4.57",
3
+ "version": "1.4.59",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {