@jitsu/protocols 1.3.0 → 1.3.1-canary.300.20231019130036
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/analytics.d.ts +8 -0
- package/functions.d.ts +2 -0
- package/package.json +1 -1
package/analytics.d.ts
CHANGED
|
@@ -147,6 +147,14 @@ interface AnalyticsContext {
|
|
|
147
147
|
amp?: {
|
|
148
148
|
id: string;
|
|
149
149
|
};
|
|
150
|
+
/**
|
|
151
|
+
* Other tracking tools client ids
|
|
152
|
+
*/
|
|
153
|
+
clientIds?: {
|
|
154
|
+
//Client ID of GA4 property
|
|
155
|
+
ga4?: string;
|
|
156
|
+
[key: string]: string;
|
|
157
|
+
};
|
|
150
158
|
|
|
151
159
|
[key: string]: any;
|
|
152
160
|
}
|
package/functions.d.ts
CHANGED