@demind-inc/core 1.3.22 → 1.3.24

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
@@ -38,7 +38,7 @@ exports.STRESS_SUPPORTED_TERRA_PROVIDERS = [
38
38
  "GARMIN",
39
39
  "FITBIT",
40
40
  ];
41
- exports.ACTIVITY_SUPPORTED_TERRA_PROVIDERS = ["FITBIT", "OURA", "GARMIN", "WHOOP"]; // APPLE is not supported in terra-api
41
+ exports.ACTIVITY_SUPPORTED_TERRA_PROVIDERS = ["FITBIT", "OURA", "GARMIN", "WHOOP", "STRAVA"]; // APPLE is not supported in terra-api
42
42
  exports.AVAILABLE_TODO_INTEGRATIONS_TYPE = [
43
43
  "trello",
44
44
  "todoist",
package/dist/types.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { CalendarEvent, EnergyFeedbackType, EventCategorySet, MetricActivity, PhaseStartEndSet, SleepDetail } from "./models";
2
- export type SupportedTerraProvidersType = "FITBIT" | "OURA" | "GARMIN" | "WHOOP" | "EIGHTSLEEP" | "ULTRAHUMAN";
2
+ export type SupportedTerraProvidersType = "FITBIT" | "OURA" | "GARMIN" | "WHOOP" | "EIGHTSLEEP" | "ULTRAHUMAN" | "STRAVA";
3
3
  export type SupportedTerraSDKType = "APPLE" | "GOOGLE_FIT" | "SAMSUNG_HEALTH" | "FREESTYLE_LIBRE";
4
4
  export type CircadianPhase = "default" | "wakeup_low" | "wakeup_normal" | "morning_high" | "morning_normal" | "morning_low" | "evening_high" | "evening_low" | "evening_normal";
5
5
  export type TimePhase = "morning" | "midday" | "evening";
package/lib/constants.ts CHANGED
@@ -42,7 +42,7 @@ export const STRESS_SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[] = [
42
42
  ];
43
43
 
44
44
  export const ACTIVITY_SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[] =
45
- ["FITBIT", "OURA", "GARMIN", "WHOOP"]; // APPLE is not supported in terra-api
45
+ ["FITBIT", "OURA", "GARMIN", "WHOOP", "STRAVA"]; // APPLE is not supported in terra-api
46
46
 
47
47
  export const AVAILABLE_TODO_INTEGRATIONS_TYPE: TodoIntegrationType[] = [
48
48
  "trello",
package/lib/types.ts CHANGED
@@ -13,7 +13,8 @@ export type SupportedTerraProvidersType =
13
13
  | "GARMIN"
14
14
  | "WHOOP"
15
15
  | "EIGHTSLEEP"
16
- | "ULTRAHUMAN";
16
+ | "ULTRAHUMAN"
17
+ | "STRAVA";
17
18
 
18
19
  export type SupportedTerraSDKType =
19
20
  | "APPLE"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.3.22",
3
+ "version": "1.3.24",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {