@demind-inc/core 1.9.6 → 1.9.7
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.
|
@@ -17,7 +17,7 @@ export interface LocationPreference {
|
|
|
17
17
|
addresses?: Record<AddressLabel, AddressPreference>;
|
|
18
18
|
}
|
|
19
19
|
export interface WorkoutPreference {
|
|
20
|
-
|
|
20
|
+
note?: string;
|
|
21
21
|
}
|
|
22
22
|
export interface AddressPreference {
|
|
23
23
|
lat?: number;
|
|
@@ -74,13 +74,13 @@ export interface MealPreference {
|
|
|
74
74
|
lunch?: MealPreferenceItem;
|
|
75
75
|
dinner?: MealPreferenceItem;
|
|
76
76
|
disableAutoSchedule?: boolean;
|
|
77
|
+
note?: string;
|
|
77
78
|
}
|
|
78
79
|
export interface MealPreferenceItem {
|
|
79
80
|
recurring: RoutineActivityRecurring;
|
|
80
81
|
earliestTime: string;
|
|
81
82
|
latestTime: string;
|
|
82
83
|
durationMin: number;
|
|
83
|
-
notes?: string[];
|
|
84
84
|
}
|
|
85
85
|
export interface SchedulerPreferenceV3 {
|
|
86
86
|
workTime?: SchedulerItemPreference;
|
package/lib/models/Preference.ts
CHANGED
|
@@ -21,7 +21,7 @@ export interface LocationPreference {
|
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
export interface WorkoutPreference {
|
|
24
|
-
|
|
24
|
+
note?: string;
|
|
25
25
|
}
|
|
26
26
|
export interface AddressPreference {
|
|
27
27
|
lat?: number;
|
|
@@ -88,6 +88,7 @@ export interface MealPreference {
|
|
|
88
88
|
lunch?: MealPreferenceItem;
|
|
89
89
|
dinner?: MealPreferenceItem;
|
|
90
90
|
disableAutoSchedule?: boolean;
|
|
91
|
+
note?: string;
|
|
91
92
|
}
|
|
92
93
|
|
|
93
94
|
export interface MealPreferenceItem {
|
|
@@ -95,7 +96,6 @@ export interface MealPreferenceItem {
|
|
|
95
96
|
earliestTime: string;
|
|
96
97
|
latestTime: string;
|
|
97
98
|
durationMin: number;
|
|
98
|
-
notes?: string[];
|
|
99
99
|
}
|
|
100
100
|
export interface SchedulerPreferenceV3 {
|
|
101
101
|
workTime?: SchedulerItemPreference;
|