@adtrackify/at-tracking-event-types 3.0.67 → 3.0.69
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,4 +1,5 @@
|
|
|
1
1
|
import { AddressInfo } from '../../common/address';
|
|
2
|
+
import { AdClickInfo } from './event-context';
|
|
2
3
|
export interface EventIdentity {
|
|
3
4
|
identityId?: string;
|
|
4
5
|
traits?: EventIdentityTraits;
|
|
@@ -14,4 +15,5 @@ export interface EventIdentityTraits {
|
|
|
14
15
|
emails?: string[];
|
|
15
16
|
addresses?: AddressInfo[];
|
|
16
17
|
shopifyYIds?: string[];
|
|
18
|
+
click?: AdClickInfo;
|
|
17
19
|
}
|
|
@@ -120,15 +120,23 @@ export interface Enrichment {
|
|
|
120
120
|
}
|
|
121
121
|
export interface AdClickInfo {
|
|
122
122
|
fbp?: string;
|
|
123
|
+
fbpCollectedAt?: string;
|
|
123
124
|
fbc?: string;
|
|
125
|
+
fbcCollectedAt?: string;
|
|
124
126
|
fbclid?: string;
|
|
127
|
+
fbclidCollectedAt?: string;
|
|
125
128
|
gclid?: string;
|
|
129
|
+
gclidCollectedAt?: string;
|
|
126
130
|
googleClientInfos?: GoogleClientInfo[];
|
|
127
131
|
gbraid?: string;
|
|
132
|
+
gbraidCollectedAt?: string;
|
|
128
133
|
wbraid?: string;
|
|
134
|
+
wbraidCollectedAt?: string;
|
|
129
135
|
ttclid?: string;
|
|
136
|
+
ttclidCollectedAt?: string;
|
|
130
137
|
ttp?: string;
|
|
131
138
|
kx?: string;
|
|
139
|
+
kxCollectedAt?: string;
|
|
132
140
|
}
|
|
133
141
|
export interface GoogleClientInfo {
|
|
134
142
|
id: string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AddressInfo } from '../../common/address';
|
|
2
|
+
import { AdClickInfo } from './event-context';
|
|
2
3
|
export interface EventIdentity {
|
|
3
4
|
identityId?: string;
|
|
4
5
|
traits?: EventIdentityTraits;
|
|
@@ -14,4 +15,5 @@ export interface EventIdentityTraits {
|
|
|
14
15
|
emails?: string[];
|
|
15
16
|
addresses?: AddressInfo[];
|
|
16
17
|
shopifyYIds?: string[];
|
|
18
|
+
click?: AdClickInfo;
|
|
17
19
|
}
|
|
@@ -120,15 +120,23 @@ export interface Enrichment {
|
|
|
120
120
|
}
|
|
121
121
|
export interface AdClickInfo {
|
|
122
122
|
fbp?: string;
|
|
123
|
+
fbpCollectedAt?: string;
|
|
123
124
|
fbc?: string;
|
|
125
|
+
fbcCollectedAt?: string;
|
|
124
126
|
fbclid?: string;
|
|
127
|
+
fbclidCollectedAt?: string;
|
|
125
128
|
gclid?: string;
|
|
129
|
+
gclidCollectedAt?: string;
|
|
126
130
|
googleClientInfos?: GoogleClientInfo[];
|
|
127
131
|
gbraid?: string;
|
|
132
|
+
gbraidCollectedAt?: string;
|
|
128
133
|
wbraid?: string;
|
|
134
|
+
wbraidCollectedAt?: string;
|
|
129
135
|
ttclid?: string;
|
|
136
|
+
ttclidCollectedAt?: string;
|
|
130
137
|
ttp?: string;
|
|
131
138
|
kx?: string;
|
|
139
|
+
kxCollectedAt?: string;
|
|
132
140
|
}
|
|
133
141
|
export interface GoogleClientInfo {
|
|
134
142
|
id: string;
|