@adtrackify/at-tracking-event-types 4.66.12 → 4.66.14
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { AdClickInfo, DeviceInfo } from '../../event/context/event-context.js';
|
|
2
|
-
import type { TrackingEvent } from '../../event/tracking-event.js';
|
|
1
|
+
import type { AdClickInfo, DeviceInfo, PageInfo } from '../../event/context/event-context.js';
|
|
2
|
+
import type { TrackingEvent, TrackingEventData } from '../../event/tracking-event.js';
|
|
3
3
|
import { REALTIME_MESSAGE_TYPE } from './realtime-enums.js';
|
|
4
4
|
import { RETURN_TIER } from '../../event/session-event.js';
|
|
5
5
|
export interface RealtimeActiveVisitor {
|
|
@@ -56,6 +56,15 @@ export interface RealtimeCommerceSummary {
|
|
|
56
56
|
purchases: number;
|
|
57
57
|
purchaseValue: number;
|
|
58
58
|
currency: string;
|
|
59
|
+
pageViewCount?: number;
|
|
60
|
+
productViewCount?: number;
|
|
61
|
+
addToCartCount?: number;
|
|
62
|
+
leadSessions?: number;
|
|
63
|
+
leadCount?: number;
|
|
64
|
+
subscribeSessions?: number;
|
|
65
|
+
subscribeCount?: number;
|
|
66
|
+
searchCount?: number;
|
|
67
|
+
contactCount?: number;
|
|
59
68
|
}
|
|
60
69
|
export interface RealtimeFeedOptions {
|
|
61
70
|
offset?: number;
|
|
@@ -159,4 +168,7 @@ export interface RealtimeFeedEvent {
|
|
|
159
168
|
region?: string;
|
|
160
169
|
latitude?: number;
|
|
161
170
|
longitude?: number;
|
|
171
|
+
collectedAt?: string;
|
|
172
|
+
page?: PageInfo;
|
|
173
|
+
data?: TrackingEventData;
|
|
162
174
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { AdClickInfo, DeviceInfo } from '../../event/context/event-context.js';
|
|
2
|
-
import type { TrackingEvent } from '../../event/tracking-event.js';
|
|
1
|
+
import type { AdClickInfo, DeviceInfo, PageInfo } from '../../event/context/event-context.js';
|
|
2
|
+
import type { TrackingEvent, TrackingEventData } from '../../event/tracking-event.js';
|
|
3
3
|
import { REALTIME_MESSAGE_TYPE } from './realtime-enums.js';
|
|
4
4
|
import { RETURN_TIER } from '../../event/session-event.js';
|
|
5
5
|
export interface RealtimeActiveVisitor {
|
|
@@ -56,6 +56,15 @@ export interface RealtimeCommerceSummary {
|
|
|
56
56
|
purchases: number;
|
|
57
57
|
purchaseValue: number;
|
|
58
58
|
currency: string;
|
|
59
|
+
pageViewCount?: number;
|
|
60
|
+
productViewCount?: number;
|
|
61
|
+
addToCartCount?: number;
|
|
62
|
+
leadSessions?: number;
|
|
63
|
+
leadCount?: number;
|
|
64
|
+
subscribeSessions?: number;
|
|
65
|
+
subscribeCount?: number;
|
|
66
|
+
searchCount?: number;
|
|
67
|
+
contactCount?: number;
|
|
59
68
|
}
|
|
60
69
|
export interface RealtimeFeedOptions {
|
|
61
70
|
offset?: number;
|
|
@@ -159,4 +168,7 @@ export interface RealtimeFeedEvent {
|
|
|
159
168
|
region?: string;
|
|
160
169
|
latitude?: number;
|
|
161
170
|
longitude?: number;
|
|
171
|
+
collectedAt?: string;
|
|
172
|
+
page?: PageInfo;
|
|
173
|
+
data?: TrackingEventData;
|
|
162
174
|
}
|