@adtrackify/at-tracking-event-types 1.0.37 → 1.0.38
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/.editorconfig +12 -12
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
- package/src/types/api/destination.ts +4 -0
package/.editorconfig
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
root = true
|
|
2
|
-
|
|
3
|
-
[*]
|
|
4
|
-
end_of_line = lf
|
|
5
|
-
charset = utf-8
|
|
6
|
-
trim_trailing_whitespace = true
|
|
7
|
-
insert_final_newline = false
|
|
8
|
-
indent_style = space
|
|
9
|
-
indent_size = 2
|
|
10
|
-
|
|
11
|
-
[*.{diff,md}]
|
|
12
|
-
trim_trailing_whitespace = false
|
|
1
|
+
root = true
|
|
2
|
+
|
|
3
|
+
[*]
|
|
4
|
+
end_of_line = lf
|
|
5
|
+
charset = utf-8
|
|
6
|
+
trim_trailing_whitespace = true
|
|
7
|
+
insert_final_newline = false
|
|
8
|
+
indent_style = space
|
|
9
|
+
indent_size = 2
|
|
10
|
+
|
|
11
|
+
[*.{diff,md}]
|
|
12
|
+
trim_trailing_whitespace = false
|
package/dist/index.d.ts
CHANGED
|
@@ -102,6 +102,9 @@ declare module '@adtrackify/at-tracking-event-types/types/api/destination' {
|
|
|
102
102
|
enableConversionAPI: boolean;
|
|
103
103
|
pixelId: string;
|
|
104
104
|
}
|
|
105
|
+
export interface TiktokPixelConfiguration {
|
|
106
|
+
pixelId: string;
|
|
107
|
+
}
|
|
105
108
|
export interface GoogleAnalytics4Configuration {
|
|
106
109
|
measurementId: string;
|
|
107
110
|
}
|
package/package.json
CHANGED
|
@@ -42,6 +42,10 @@ export interface FacebookPixelConfiguration {
|
|
|
42
42
|
enableConversionAPI: boolean;
|
|
43
43
|
pixelId: string;
|
|
44
44
|
}
|
|
45
|
+
|
|
46
|
+
export interface TiktokPixelConfiguration{
|
|
47
|
+
pixelId: string
|
|
48
|
+
}
|
|
45
49
|
export interface GoogleAnalytics4Configuration {
|
|
46
50
|
measurementId: string;
|
|
47
51
|
}
|