@demind-inc/core 1.10.26 → 1.10.28

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.
@@ -1,3 +1,3 @@
1
1
  export declare const DEFAULT_LANGUAGE = "en";
2
- export declare const SUPPORTED_LANGUAGES: readonly ["en", "it", "ko", "el", "ja", "fr", "de", "es", "zh-Hans"];
2
+ export declare const SUPPORTED_LANGUAGES: readonly ["en", "it", "ko", "el", "ja", "fr", "de", "es", "zh-Hans", "pt"];
3
3
  export type SupportedLanguage = (typeof SUPPORTED_LANGUAGES)[number];
package/dist/languages.js CHANGED
@@ -1,15 +1,16 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SUPPORTED_LANGUAGES = exports.DEFAULT_LANGUAGE = void 0;
4
- exports.DEFAULT_LANGUAGE = "en";
4
+ exports.DEFAULT_LANGUAGE = 'en';
5
5
  exports.SUPPORTED_LANGUAGES = [
6
- "en",
7
- "it",
8
- "ko",
9
- "el",
10
- "ja",
11
- "fr",
12
- "de",
13
- "es",
14
- "zh-Hans",
6
+ 'en',
7
+ 'it',
8
+ 'ko',
9
+ 'el',
10
+ 'ja',
11
+ 'fr',
12
+ 'de',
13
+ 'es',
14
+ 'zh-Hans',
15
+ 'pt',
15
16
  ];
@@ -27,6 +27,7 @@ export interface EmailReport {
27
27
  }
28
28
  export interface WorkoutPreference {
29
29
  note?: string;
30
+ excludePlanContents?: boolean;
30
31
  }
31
32
  export interface AddressPreference {
32
33
  lat?: number;
@@ -108,6 +109,7 @@ export interface MealPreference {
108
109
  dinner?: MealPreferenceItem;
109
110
  disableAutoSchedule?: boolean;
110
111
  note?: string;
112
+ excludePlanContents?: boolean;
111
113
  }
112
114
  export interface MealPreferenceItem {
113
115
  recurring: RoutineActivityRecurring;
package/lib/languages.ts CHANGED
@@ -1,15 +1,16 @@
1
- export const DEFAULT_LANGUAGE = "en";
1
+ export const DEFAULT_LANGUAGE = 'en';
2
2
 
3
3
  export const SUPPORTED_LANGUAGES = [
4
- "en",
5
- "it",
6
- "ko",
7
- "el",
8
- "ja",
9
- "fr",
10
- "de",
11
- "es",
12
- "zh-Hans",
4
+ 'en',
5
+ 'it',
6
+ 'ko',
7
+ 'el',
8
+ 'ja',
9
+ 'fr',
10
+ 'de',
11
+ 'es',
12
+ 'zh-Hans',
13
+ 'pt',
13
14
  ] as const;
14
15
 
15
16
  export type SupportedLanguage = (typeof SUPPORTED_LANGUAGES)[number];
@@ -33,6 +33,7 @@ export interface EmailReport {
33
33
 
34
34
  export interface WorkoutPreference {
35
35
  note?: string;
36
+ excludePlanContents?: boolean;
36
37
  }
37
38
  export interface AddressPreference {
38
39
  lat?: number;
@@ -126,6 +127,7 @@ export interface MealPreference {
126
127
  dinner?: MealPreferenceItem;
127
128
  disableAutoSchedule?: boolean;
128
129
  note?: string;
130
+ excludePlanContents?: boolean;
129
131
  }
130
132
 
131
133
  export interface MealPreferenceItem {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.10.26",
3
+ "version": "1.10.28",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {