@demind-inc/core 1.6.7 → 1.6.9
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.d.ts
CHANGED
|
@@ -51,3 +51,7 @@ export declare const HEART_RATE_SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvide
|
|
|
51
51
|
export declare const MEAL_SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[];
|
|
52
52
|
export declare const AVAILABLE_TODO_INTEGRATIONS_TYPE: TodoIntegrationType[];
|
|
53
53
|
export declare const ALL_TODO_INTEGRATIONS_TYPE: TodoIntegrationType[];
|
|
54
|
+
export declare const basicLifetimeOfferingId = "basic (lifetime)";
|
|
55
|
+
export declare const basicOfferingId = "basic (with free trial)";
|
|
56
|
+
export declare const basicNoTrialOfferingId = "basic (without free trial)";
|
|
57
|
+
export declare const SKIP_CARD_PRODUCT_ID = "com.lifestack.skip_card";
|
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.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.SKIP_CARD_PRODUCT_ID = exports.basicNoTrialOfferingId = 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",
|
|
@@ -73,3 +73,7 @@ exports.ALL_TODO_INTEGRATIONS_TYPE = [
|
|
|
73
73
|
"ticktick",
|
|
74
74
|
"notion",
|
|
75
75
|
];
|
|
76
|
+
exports.basicLifetimeOfferingId = "basic (lifetime)";
|
|
77
|
+
exports.basicOfferingId = "basic (with free trial)";
|
|
78
|
+
exports.basicNoTrialOfferingId = "basic (without free trial)";
|
|
79
|
+
exports.SKIP_CARD_PRODUCT_ID = "com.lifestack.skip_card";
|
package/lib/constants.ts
CHANGED
|
@@ -81,3 +81,8 @@ export const ALL_TODO_INTEGRATIONS_TYPE: TodoIntegrationType[] = [
|
|
|
81
81
|
"ticktick",
|
|
82
82
|
"notion",
|
|
83
83
|
];
|
|
84
|
+
|
|
85
|
+
export const basicLifetimeOfferingId = "basic (lifetime)";
|
|
86
|
+
export const basicOfferingId = "basic (with free trial)";
|
|
87
|
+
export const basicNoTrialOfferingId = "basic (without free trial)";
|
|
88
|
+
export const SKIP_CARD_PRODUCT_ID = "com.lifestack.skip_card";
|