@speedkit/cli 3.12.1 → 3.13.1
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,17 @@
|
|
|
1
|
+
## [3.13.1](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.13.0...v3.13.1) (2025-10-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **customer-config:** fix ssr flag usage in template file ([765af11](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/765af11d8fd085c51db75c98a07a12d640d1b6ed))
|
|
7
|
+
|
|
8
|
+
# [3.13.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.12.1...v3.13.0) (2025-10-28)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **customer-config:** extend query parameter stripping ([c747e23](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/c747e23b59406711c7ca5beeecba0efe91788999))
|
|
14
|
+
|
|
1
15
|
## [3.12.1](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.12.0...v3.12.1) (2025-10-27)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -300,11 +300,11 @@
|
|
|
300
300
|
stripQueryParams: [{
|
|
301
301
|
params: [
|
|
302
302
|
// Default:
|
|
303
|
+
"AdSet", // Meta Ads (Facebook)
|
|
303
304
|
"_ga", // Google Analytics User ID (Universal Analytics)
|
|
304
305
|
"_gl", // Google Analytics User ID (GA 4+)
|
|
305
306
|
"_klaviyopid", // Klaviyo
|
|
306
307
|
"_kx", // klaviyo
|
|
307
|
-
"AdSet", // Meta Ads (Facebook)
|
|
308
308
|
"a8", // A8.net (affiliate marketing)
|
|
309
309
|
"ad_id",
|
|
310
310
|
"adid",
|
|
@@ -330,7 +330,9 @@
|
|
|
330
330
|
"irclickid",
|
|
331
331
|
"kgclid",
|
|
332
332
|
"kk", // Kelkoo Shopping Search Engine Key
|
|
333
|
+
"ldtag_cl", // LINE Ads
|
|
333
334
|
"msclkid", // Microsoft Click ID
|
|
335
|
+
"msockid", // Microsoft Bing
|
|
334
336
|
"nsctrid",
|
|
335
337
|
"ps_kw", // Paid Search Keyword Tracking
|
|
336
338
|
"rtbhc", // RTB House
|
|
@@ -338,6 +340,7 @@
|
|
|
338
340
|
"soluteclid", // Solute Click ID
|
|
339
341
|
"srsltid", // google search engine
|
|
340
342
|
"syclid",
|
|
343
|
+
"tblci", // Taboola Click ID
|
|
341
344
|
"tduid", // Tradedoubler UID
|
|
342
345
|
"trackingtoken",
|
|
343
346
|
"ttclid", // TikTok Click ID
|
|
@@ -345,19 +348,22 @@
|
|
|
345
348
|
"yclid", // Yandex Click ID
|
|
346
349
|
"zanpid", // AWIN (former Zanox Affiliate Network)
|
|
347
350
|
/^(mb|nb|nx|ny)$/,
|
|
348
|
-
/^affid$/i, // Affiliate ID
|
|
349
351
|
/^WT\./, // WebTrends
|
|
350
352
|
/^[gw]braid$/, // Google's iOS web-to-app campaign measurement
|
|
353
|
+
/^affid$/i, // Affiliate ID
|
|
351
354
|
/^bv(state|messageType|notificationId|recipientDomain)$/, // Bazaarvoice
|
|
352
355
|
/^campaign(_id)?$/,
|
|
353
356
|
/^cq_/,
|
|
354
357
|
/^dy(IsPreview|SmartId|IsDraft|ExperienceId|VariationId|pPreviewKey|PersistSession|Temp)$/, // Dynamic Yield
|
|
355
358
|
/^et_/,
|
|
359
|
+
/^ext(ProvId|Pu|Li|Pm|Cr|Tg|Si|MT|NT|DV|AP)$/,
|
|
356
360
|
/^gad(w|_source|_campaignid)?$/, // Google Ads
|
|
357
361
|
/^gcl(id|src)$/, // Google Click ID + Source
|
|
358
362
|
/^judgeme_/, // Judge.me (review system)
|
|
359
363
|
/^klar_/, // getklar.com
|
|
360
364
|
/^neocom_/, // Neocom.ai
|
|
365
|
+
/^sa_/,
|
|
366
|
+
/^saf_/, // Spider AF
|
|
361
367
|
/^sc_/, // e.g. Adobe
|
|
362
368
|
/^sfmc_/, // Salesforce Marketing Cloud
|
|
363
369
|
/^sv(1|_campaign_id)$/,
|
package/oclif.manifest.json
CHANGED