@demind-inc/core 1.7.8 → 1.7.10

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.
@@ -56,3 +56,4 @@ export declare const basicOfferingId = "basic (with free trial)";
56
56
  export declare const basicMonthTrialOfferingId = "basic (with free trial 1 month)";
57
57
  export declare const basicNoTrialOfferingId = "basic (without free trial)";
58
58
  export declare const SKIP_CARD_PRODUCT_ID = "com.lifestack.skip_card";
59
+ export declare const basicPriceUp202512OfferingId = "basic_price_up_2025_12";
package/dist/constants.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SKIP_CARD_PRODUCT_ID = exports.basicNoTrialOfferingId = exports.basicMonthTrialOfferingId = exports.basicOfferingId = exports.basicLifetimeOfferingId = 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;
3
+ exports.basicPriceUp202512OfferingId = exports.SKIP_CARD_PRODUCT_ID = exports.basicNoTrialOfferingId = exports.basicMonthTrialOfferingId = exports.basicOfferingId = exports.basicLifetimeOfferingId = 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",
@@ -80,3 +80,4 @@ exports.basicOfferingId = "basic (with free trial)";
80
80
  exports.basicMonthTrialOfferingId = "basic (with free trial 1 month)";
81
81
  exports.basicNoTrialOfferingId = "basic (without free trial)";
82
82
  exports.SKIP_CARD_PRODUCT_ID = "com.lifestack.skip_card";
83
+ exports.basicPriceUp202512OfferingId = "basic_price_up_2025_12";
package/dist/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { CalendarEvent, CalendarTaskFrom, EMASatisfaction, EnergyFeedbackType, EventCategorySet, MealType, MetricActivity, MetricHRValueSet, MetricMealDetail, MetricStressValueSet, PhaseStartEndSet, SleepDetail, TaskItem, TaskPriority, TodoAppFrom } from "./models";
1
+ import { CalendarEvent, CalendarTaskFrom, EMASatisfaction, EnergyFeedbackType, EventCategorySet, MealType, MetricActivity, MetricHRValueSet, MetricMealDetail, MetricStressValueSet, PhaseStartEndSet, RoutineActivity, SleepDetail, TaskItem, TaskPriority, TodoAppFrom } from "./models";
2
2
  export type SupportedTerraProvidersType = "FITBIT" | "OURA" | "GARMIN" | "WHOOP" | "ULTRAHUMAN" | "STRAVA" | "MYFITNESSPAL";
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";
@@ -130,6 +130,7 @@ export interface ChatAdjustmentCTA {
130
130
  sleep?: ChatAdjustmentChangeWrapper<ChatAdjustmentSleep>;
131
131
  schedule?: ChatAdjustmentChangeWrapper<ScheduledAction>[];
132
132
  tasks?: ChatAdjustmentChangeWrapper<ChatAdjustmentTask>[];
133
+ routines?: ChatAdjustmentChangeWrapper<RoutineActivity>[];
133
134
  date?: string;
134
135
  }
135
136
  export interface ChatAdjustmentChangeWrapper<T> {
package/lib/constants.ts CHANGED
@@ -89,3 +89,4 @@ export const basicOfferingId = "basic (with free trial)";
89
89
  export const basicMonthTrialOfferingId = "basic (with free trial 1 month)";
90
90
  export const basicNoTrialOfferingId = "basic (without free trial)";
91
91
  export const SKIP_CARD_PRODUCT_ID = "com.lifestack.skip_card";
92
+ export const basicPriceUp202512OfferingId = "basic_price_up_2025_12";
package/lib/types.ts CHANGED
@@ -10,6 +10,7 @@ import {
10
10
  MetricMealDetail,
11
11
  MetricStressValueSet,
12
12
  PhaseStartEndSet,
13
+ RoutineActivity,
13
14
  SleepDetail,
14
15
  TaskItem,
15
16
  TaskPriority,
@@ -224,6 +225,7 @@ export interface ChatAdjustmentCTA {
224
225
  sleep?: ChatAdjustmentChangeWrapper<ChatAdjustmentSleep>;
225
226
  schedule?: ChatAdjustmentChangeWrapper<ScheduledAction>[];
226
227
  tasks?: ChatAdjustmentChangeWrapper<ChatAdjustmentTask>[];
228
+ routines?: ChatAdjustmentChangeWrapper<RoutineActivity>[];
227
229
  date?: string; // YYYY-MM-DD
228
230
  }
229
231
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.7.8",
3
+ "version": "1.7.10",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {