@adtrackify/at-tracking-event-types 1.0.42 → 1.0.44
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 +4 -0
- package/package.json +1 -1
- package/src/types/api/destination.ts +5 -0
package/dist/index.d.ts
CHANGED
|
@@ -107,6 +107,10 @@ declare module '@adtrackify/at-tracking-event-types/types/api/destination' {
|
|
|
107
107
|
export interface GoogleAnalytics4Configuration {
|
|
108
108
|
measurementId: string;
|
|
109
109
|
}
|
|
110
|
+
export interface GoogleAdsConfiguration {
|
|
111
|
+
pixelId: string;
|
|
112
|
+
conversionID: string;
|
|
113
|
+
}
|
|
110
114
|
|
|
111
115
|
}
|
|
112
116
|
declare module '@adtrackify/at-tracking-event-types/types/api/destinations' {
|
package/package.json
CHANGED