@adtrackify/at-tracking-event-types 1.1.26 → 1.1.28
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.
package/dist/index.d.ts
CHANGED
|
@@ -577,7 +577,7 @@ declare module '@adtrackify/at-tracking-event-types/types/tracking-events/tracki
|
|
|
577
577
|
sessionId?: string;
|
|
578
578
|
shopify?: ShopifyInfo;
|
|
579
579
|
adBlockDetected?: boolean;
|
|
580
|
-
enrichment
|
|
580
|
+
enrichment?: Enrichment;
|
|
581
581
|
}
|
|
582
582
|
export interface Enrichment {
|
|
583
583
|
refrMedium?: string;
|
|
@@ -588,6 +588,10 @@ declare module '@adtrackify/at-tracking-event-types/types/tracking-events/tracki
|
|
|
588
588
|
mktMedium?: string;
|
|
589
589
|
mktTerm?: string;
|
|
590
590
|
mktContent?: string;
|
|
591
|
+
mktClickId?: string;
|
|
592
|
+
mktClickNetwork?: string;
|
|
593
|
+
isMobile?: boolean;
|
|
594
|
+
isWirelessCarrier?: boolean;
|
|
591
595
|
ipLookupResponse?: LookupResponse;
|
|
592
596
|
}
|
|
593
597
|
export interface AdClickInfo {
|
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@ export interface TrackingEventContextProperties {
|
|
|
20
20
|
sessionId?: string;
|
|
21
21
|
shopify?: ShopifyInfo;
|
|
22
22
|
adBlockDetected?: boolean;
|
|
23
|
-
enrichment
|
|
23
|
+
enrichment?: Enrichment;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
export interface Enrichment {
|
|
@@ -32,6 +32,10 @@ export interface Enrichment {
|
|
|
32
32
|
mktMedium?: string;
|
|
33
33
|
mktTerm?: string;
|
|
34
34
|
mktContent?: string;
|
|
35
|
+
mktClickId?: string;
|
|
36
|
+
mktClickNetwork?: string;
|
|
37
|
+
isMobile?: boolean;
|
|
38
|
+
isWirelessCarrier?: boolean;
|
|
35
39
|
ipLookupResponse?: LookupResponse;
|
|
36
40
|
}
|
|
37
41
|
export interface AdClickInfo {
|