From ab6cc747e6652b1a3208fc8f54925ae1b3aa213f Mon Sep 17 00:00:00 2001 From: Marvin Blum Date: Wed, 17 Jul 2024 12:49:49 +0200 Subject: [PATCH] Added missing event metadata field. --- CHANGELOG.md | 4 ++++ pkg/types.go | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec3fb0f..4122180 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.3.1 + +* added missing event metadata field + ## 2.3.0 * added regional statistics diff --git a/pkg/types.go b/pkg/types.go index 3a95073..62d6fde 100644 --- a/pkg/types.go +++ b/pkg/types.go @@ -280,6 +280,7 @@ type EventStats struct { Name string `json:"name"` Visitors int `json:"visitors"` Views int `json:"views"` + Count int `json:"count"` CR float64 `json:"cr"` AverageDurationSeconds int `json:"average_duration_seconds"` MetaKeys []string `json:"meta_keys"`