add session to visits and events

This commit is contained in:
Emily
2024-06-10 04:15:31 +02:00
parent 5a48ef53b4
commit f35e24efa8
3 changed files with 9 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ export type TVisit = {
continent: string,
country: string,
session: string,
device: string,
website: string,
@@ -26,6 +27,8 @@ const VisitSchema = new Schema<TVisit>({
continent: { type: String },
country: { type: String },
session: { type: String },
device: { type: String },