@demind-inc/core 1.7.53 → 1.7.54
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.
|
@@ -78,7 +78,7 @@ export interface Action {
|
|
|
78
78
|
action_type: ActionType;
|
|
79
79
|
payload: ActionPayload;
|
|
80
80
|
}
|
|
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 & {});
|
|
81
|
+
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
82
|
export type ContentPayload = {
|
|
83
83
|
plan_title: string;
|
|
84
84
|
difficulty: "beginner" | "intermediate" | "advanced";
|
|
@@ -134,6 +134,7 @@ export interface Action {
|
|
|
134
134
|
export type ContentType =
|
|
135
135
|
| "workout_plan"
|
|
136
136
|
| "checklist"
|
|
137
|
+
| "find_location"
|
|
137
138
|
| "meal_suggestion"
|
|
138
139
|
| "transit_route"
|
|
139
140
|
| "journal_prompts"
|
|
@@ -249,4 +250,3 @@ export interface RichContext {
|
|
|
249
250
|
action: Action | null;
|
|
250
251
|
content: Content | Content[] | null;
|
|
251
252
|
}
|
|
252
|
-
|