@taphealth/kafka 1.6.49 → 1.6.52

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.
@@ -6,6 +6,7 @@ export interface ActivityLoggedEvent {
6
6
  data: {
7
7
  userId: string;
8
8
  date: Date;
9
+ timezone?: string;
9
10
  activityType: ActivityType;
10
11
  loggedAt: Date;
11
12
  mealType?: string;
@@ -23,6 +23,7 @@ export interface DietCreatedEvent {
23
23
  data: {
24
24
  userId: string;
25
25
  scheduledDate: string;
26
+ timezone?: string;
26
27
  meals: {
27
28
  date: Date;
28
29
  mealTime?: string;
@@ -5,6 +5,7 @@ export interface MealLoggedEvent {
5
5
  data: {
6
6
  userId: string;
7
7
  date: string;
8
+ timezone?: string;
8
9
  mealType: string;
9
10
  hadGeneratedMeal?: boolean;
10
11
  loggedVariation?: "EASY" | "MODERATE" | "CHALLENGING";
@@ -4,6 +4,7 @@ export interface PlanCreatedEvent {
4
4
  data: {
5
5
  userId: string;
6
6
  scheduledDate: string;
7
+ timezone?: string;
7
8
  weekNumber: number;
8
9
  };
9
10
  }
@@ -4,6 +4,7 @@ export interface StepsLoggingEvent {
4
4
  data: {
5
5
  userId: string;
6
6
  date: string;
7
+ timezone?: string;
7
8
  cumulativeStepsCount: number;
8
9
  targetStepsCount: number;
9
10
  averageCumulativeStepsCount: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taphealth/kafka",
3
- "version": "1.6.49",
3
+ "version": "1.6.52",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",