@demind-inc/core 1.7.53 → 1.7.55
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.
|
@@ -23,6 +23,12 @@ export type SignalData = {
|
|
|
23
23
|
feels_like_c: number | null;
|
|
24
24
|
rain_probability: number | null;
|
|
25
25
|
uv_index: number | null;
|
|
26
|
+
timeline?: Array<{
|
|
27
|
+
timestamp: string;
|
|
28
|
+
temperature_f?: number;
|
|
29
|
+
temperature_c?: number;
|
|
30
|
+
summary?: string;
|
|
31
|
+
}>;
|
|
26
32
|
} | {
|
|
27
33
|
zone: "peak" | "calm" | "low" | "recovering";
|
|
28
34
|
hrv: number | null;
|
|
@@ -78,7 +84,7 @@ export interface Action {
|
|
|
78
84
|
action_type: ActionType;
|
|
79
85
|
payload: ActionPayload;
|
|
80
86
|
}
|
|
81
|
-
export type ContentType = "workout_plan" | "checklist" | "meal_suggestion" | "transit_route" | "journal_prompts" | "audio_player" | "energy_summary" | "sleep_summary" | "metric_bar" | "meal_plan_week" | (string & {});
|
|
87
|
+
export type ContentType = "workout_plan" | "checklist" | "find_location" | "meal_suggestion" | "transit_route" | "journal_prompts" | "audio_player" | "energy_summary" | "sleep_summary" | "metric_bar" | "meal_plan_week" | (string & {});
|
|
82
88
|
export type ContentPayload = {
|
|
83
89
|
plan_title: string;
|
|
84
90
|
difficulty: "beginner" | "intermediate" | "advanced";
|
|
@@ -42,6 +42,12 @@ export type SignalData =
|
|
|
42
42
|
feels_like_c: number | null;
|
|
43
43
|
rain_probability: number | null;
|
|
44
44
|
uv_index: number | null;
|
|
45
|
+
timeline?: Array<{
|
|
46
|
+
timestamp: string;
|
|
47
|
+
temperature_f?: number;
|
|
48
|
+
temperature_c?: number;
|
|
49
|
+
summary?: string;
|
|
50
|
+
}>;
|
|
45
51
|
}
|
|
46
52
|
| {
|
|
47
53
|
// energy
|
|
@@ -134,6 +140,7 @@ export interface Action {
|
|
|
134
140
|
export type ContentType =
|
|
135
141
|
| "workout_plan"
|
|
136
142
|
| "checklist"
|
|
143
|
+
| "find_location"
|
|
137
144
|
| "meal_suggestion"
|
|
138
145
|
| "transit_route"
|
|
139
146
|
| "journal_prompts"
|
|
@@ -249,4 +256,3 @@ export interface RichContext {
|
|
|
249
256
|
action: Action | null;
|
|
250
257
|
content: Content | Content[] | null;
|
|
251
258
|
}
|
|
252
|
-
|