feat: add tracking events for loyalty pages

This commit is contained in:
Christel Westerberg
2024-07-11 10:12:46 +02:00
parent 127df6ab90
commit a8a67d5e35
7 changed files with 186 additions and 0 deletions

View File

@@ -1,5 +1,32 @@
import type { Lang } from "@/constants/languages"
export enum TrackingChannelEnum {
"scandic-friends" = "scandic-friends",
}
export type TrackingChannel = keyof typeof TrackingChannelEnum
export type TrackingSDKPageData = {
pageId: string
createdDate: string
publishedDate: string
lang: Lang
channel: TrackingChannel
}
export type TrackingSDKProps = {
pageData: TrackingSDKPageData
}
export type TrackingSDKData = {
lang: Lang
pathName: string
pageId: string
publishedDate: string
createdDate: string
}
// Old tracking setup types:
export type TrackingProps = {
pageData: {
pageId: string