@speedkit/cli 3.17.0 → 3.18.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,10 @@
|
|
|
1
|
+
# [3.18.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.17.0...v3.18.0) (2025-12-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **customer-config:** externd query parameter stripping ([4eae2c8](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/4eae2c830f5fe51a66d49c4e57a58752fb1959e5))
|
|
7
|
+
|
|
1
8
|
# [3.17.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.16.1...v3.17.0) (2025-11-25)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -301,10 +301,12 @@
|
|
|
301
301
|
params: [
|
|
302
302
|
// Default:
|
|
303
303
|
"AdSet", // Meta Ads (Facebook)
|
|
304
|
+
"_autaclid", // Adition Click ID
|
|
304
305
|
"_ga", // Google Analytics User ID (Universal Analytics)
|
|
305
306
|
"_gl", // Google Analytics User ID (GA 4+)
|
|
306
307
|
"_klaviyopid", // Klaviyo
|
|
307
|
-
"_kx", //
|
|
308
|
+
"_kx", // Klaviyo
|
|
309
|
+
"_pmclid",
|
|
308
310
|
"a8", // A8.net (affiliate marketing)
|
|
309
311
|
"ad_id",
|
|
310
312
|
"adid",
|
|
@@ -312,6 +314,7 @@
|
|
|
312
314
|
"adword",
|
|
313
315
|
"at_gd", // Urchin Tracking Module
|
|
314
316
|
"awc", // AWIN (former Zanox Affiliate Network)
|
|
317
|
+
"brid",
|
|
315
318
|
"cjid",
|
|
316
319
|
"clickid",
|
|
317
320
|
"clickref",
|
|
@@ -336,6 +339,7 @@
|
|
|
336
339
|
"msockid", // Microsoft Bing
|
|
337
340
|
"nsctrid",
|
|
338
341
|
"ps_kw", // Paid Search Keyword Tracking
|
|
342
|
+
"rdt_cid", // Reddit Ad Click ID
|
|
339
343
|
"rtbhc", // RTB House
|
|
340
344
|
"s_kwcid", // AMO ID, Adobe Advertising Cloud
|
|
341
345
|
"soluteclid", // Solute Click ID
|
|
@@ -351,6 +355,7 @@
|
|
|
351
355
|
"yj_r", // Yahoo! JAPAN Ads
|
|
352
356
|
"zanpid", // AWIN (former Zanox Affiliate Network)
|
|
353
357
|
/^(mb|nb|nx|ny)$/,
|
|
358
|
+
/^ScCid$/i, // Snapchat Click ID
|
|
354
359
|
/^WT\./, // WebTrends
|
|
355
360
|
/^[gw]braid$/, // Google's iOS web-to-app campaign measurement
|
|
356
361
|
/^_ly_/, // LY Ads
|
|
@@ -359,6 +364,8 @@
|
|
|
359
364
|
/^campaign(_id)?$/,
|
|
360
365
|
/^cq_/,
|
|
361
366
|
/^dy(IsPreview|SmartId|IsDraft|ExperienceId|VariationId|pPreviewKey|PersistSession|Temp)$/, // Dynamic Yield
|
|
367
|
+
/^ecm(Uid|Id)$/i, // Econda ARP / Mailings
|
|
368
|
+
/^em_/, // Econda ARP / Mailings
|
|
362
369
|
/^et_/,
|
|
363
370
|
/^ext(ProvId|Pu|Li|Pm|Cr|Tg|Si|MT|NT|DV|AP)$/,
|
|
364
371
|
/^gad(w|_source|_campaignid)?$/, // Google Ads
|
|
@@ -392,8 +399,6 @@
|
|
|
392
399
|
|
|
393
400
|
// OXID specific:
|
|
394
401
|
"cnid",
|
|
395
|
-
"ecmId",
|
|
396
|
-
"ecmUid",
|
|
397
402
|
"force_sid",
|
|
398
403
|
{{/if}}
|
|
399
404
|
|
package/oclif.manifest.json
CHANGED