@speedkit/cli 2.32.0 → 2.33.0
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
# [2.33.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.32.0...v2.33.0) (2024-06-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **customer-config:** extend default query parameter stripping ([f67a696](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/f67a696d427115f3895b7093f7d5d7d3dcfa6b30))
|
|
7
|
+
* **customer-config:** extend default query parameter stripping ([12b643c](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/12b643cbb1d09ed5f751136a03d92adf9d1226b4))
|
|
8
|
+
|
|
1
9
|
# [2.32.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.31.1...v2.32.0) (2024-06-14)
|
|
2
10
|
|
|
3
11
|
|
package/README.md
CHANGED
|
@@ -314,8 +314,8 @@
|
|
|
314
314
|
"_ga", // Google Analytics User ID (Universal Analytics)
|
|
315
315
|
"_gl", // Google Analytics User ID (GA 4+)
|
|
316
316
|
"_kx", // klaviyo
|
|
317
|
+
"ad_id",
|
|
317
318
|
"awc", // AWIN (former Zanox Affiliate Network)
|
|
318
|
-
"campaign",
|
|
319
319
|
"cjid",
|
|
320
320
|
"cto_pld",
|
|
321
321
|
"dclid", // another Click ID
|
|
@@ -323,11 +323,18 @@
|
|
|
323
323
|
"epik",
|
|
324
324
|
"fbclid", // Facebook Click ID
|
|
325
325
|
"gtm_debug", // Google Tag Manager
|
|
326
|
+
"kgclid",
|
|
326
327
|
"msclkid", // Microsoft Click ID
|
|
328
|
+
"rtbhc", // RTB House
|
|
329
|
+
"soluteclid", // Solute Click ID
|
|
327
330
|
"srsltid", // google search engine
|
|
331
|
+
"syclid",
|
|
332
|
+
"tduid", // Tradedoubler UID
|
|
333
|
+
"ttclid", // TikTok Click ID
|
|
328
334
|
"yclid", // Yandex Click ID
|
|
329
335
|
"zanpid", // AWIN (former Zanox Affiliate Network)
|
|
330
336
|
/^[gw]braid$/, // Google's iOS web-to-app campaign measurement
|
|
337
|
+
/^campaign(_id)?$/,
|
|
331
338
|
/^cq_/,
|
|
332
339
|
/^et_/,
|
|
333
340
|
/^gad(w|_source)?$/, // Google Ads
|
|
@@ -335,6 +342,7 @@
|
|
|
335
342
|
/^klar_/, // getklar.com
|
|
336
343
|
/^neocom_/, // Neocom.ai
|
|
337
344
|
/^sc_/, // e.g. Adobe
|
|
345
|
+
/^sv(1|_campaign_id)$/,
|
|
338
346
|
/^trc_/, // Tracify
|
|
339
347
|
/^uslk_/, // Userlike Chatbot
|
|
340
348
|
/^utm[_-]/, // Urchin Tracking Module
|
package/oclif.manifest.json
CHANGED