@adtrackify/at-tracking-event-types 2.0.37 → 2.0.39

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.
@@ -109,12 +109,17 @@ export interface AdClickInfo {
109
109
  fbc?: string;
110
110
  fbclid?: string;
111
111
  gclid?: string;
112
- googleClientIds?: string[];
112
+ googleClientInfos?: GoogleClientInfo[];
113
113
  gbraid?: string;
114
114
  wbraid?: string;
115
115
  ttclid?: string;
116
116
  ttp?: string;
117
117
  }
118
+ export interface GoogleClientInfo {
119
+ id: string;
120
+ clientId?: string;
121
+ clickId?: string;
122
+ }
118
123
  export interface CampaignInfo {
119
124
  name?: string;
120
125
  campaign?: string;
@@ -8,6 +8,7 @@ export interface TrackingEvent extends InternalEvent {
8
8
  }
9
9
  export interface TrackingEventData {
10
10
  [key: string]: any;
11
+ isSyntheticWebhookEvent?: boolean;
11
12
  firstName?: string;
12
13
  lastName?: string;
13
14
  email?: string;
@@ -109,12 +109,17 @@ export interface AdClickInfo {
109
109
  fbc?: string;
110
110
  fbclid?: string;
111
111
  gclid?: string;
112
- googleClientIds?: string[];
112
+ googleClientInfos?: GoogleClientInfo[];
113
113
  gbraid?: string;
114
114
  wbraid?: string;
115
115
  ttclid?: string;
116
116
  ttp?: string;
117
117
  }
118
+ export interface GoogleClientInfo {
119
+ id: string;
120
+ clientId?: string;
121
+ clickId?: string;
122
+ }
118
123
  export interface CampaignInfo {
119
124
  name?: string;
120
125
  campaign?: string;
@@ -8,6 +8,7 @@ export interface TrackingEvent extends InternalEvent {
8
8
  }
9
9
  export interface TrackingEventData {
10
10
  [key: string]: any;
11
+ isSyntheticWebhookEvent?: boolean;
11
12
  firstName?: string;
12
13
  lastName?: string;
13
14
  email?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adtrackify/at-tracking-event-types",
3
- "version": "2.0.37",
3
+ "version": "2.0.39",
4
4
  "description": "",
5
5
  "files": [
6
6
  "dist/*"