@taphealth/kafka 1.2.49 → 1.2.51

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.
@@ -35,6 +35,7 @@ export interface settings {
35
35
  lifestyleRoutine: LifeStyleRoutineSettings;
36
36
  medical: MedicalSettings;
37
37
  diabetes: DiabetesSettings;
38
+ tags: string[];
38
39
  }
39
40
  export interface DiabetesSettings {
40
41
  programReason: string[];
@@ -54,6 +55,10 @@ export interface DiabetesSettings {
54
55
  programPace: string;
55
56
  coachType: string;
56
57
  diabetesType: string;
58
+ lowBloodSugarExperience: boolean;
59
+ highBloodSugarExperience: boolean;
60
+ diabetesMedicationChanges: boolean;
61
+ comorbidities: string[];
57
62
  }
58
63
  export interface DietSettings {
59
64
  dietReason: string;
@@ -67,6 +72,7 @@ export interface DietSettings {
67
72
  nonVegPreferences: string[];
68
73
  nonVegDays: string[];
69
74
  medications: string[];
75
+ calorieIntake: number;
70
76
  }
71
77
  export interface LunchSettings {
72
78
  hasLunch: boolean;
@@ -119,4 +125,12 @@ export interface PersonalSettings {
119
125
  height: string;
120
126
  exerciseLevel?: number;
121
127
  workoutDays?: string[];
128
+ glucoseSchedule?: GlucoseSchedule;
129
+ targetSteps: number;
130
+ }
131
+ export interface GlucoseSchedule {
132
+ fasting?: number;
133
+ postLunch?: number;
134
+ bedtime?: number;
135
+ postExercise?: boolean;
122
136
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taphealth/kafka",
3
- "version": "1.2.49",
3
+ "version": "1.2.51",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",