@speedkit/cli 3.12.0 → 3.13.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,17 @@
|
|
|
1
|
+
# [3.13.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.12.1...v3.13.0) (2025-10-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **customer-config:** extend query parameter stripping ([c747e23](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/c747e23b59406711c7ca5beeecba0efe91788999))
|
|
7
|
+
|
|
8
|
+
## [3.12.1](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.12.0...v3.12.1) (2025-10-27)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **onboarding:** remove puppeteerInternal dependency ([093be96](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/093be96433bfe81e0eb965ebb5e40d0e517245cc))
|
|
14
|
+
|
|
1
15
|
# [3.12.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.11.4...v3.12.0) (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)$/,
|
|
@@ -4,7 +4,6 @@ exports.ExecutableValidator = void 0;
|
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
// import CLI from puppeteer to use function as sames as `npx puppeteer browsers install`
|
|
6
6
|
const browsers_1 = require("@puppeteer/browsers");
|
|
7
|
-
const version_js_1 = require("puppeteer-core/lib/cjs/puppeteer/util/version.js");
|
|
8
7
|
const node_fs_1 = require("node:fs");
|
|
9
8
|
const application_error_1 = tslib_1.__importDefault(require("../../../error-handling/error/application-error"));
|
|
10
9
|
const browsers_2 = require("@puppeteer/browsers");
|
|
@@ -76,7 +75,6 @@ class ExecutableValidator {
|
|
|
76
75
|
const puppeteerCli = new browsers_1.CLI({
|
|
77
76
|
cachePath: this.userConfig.tempFolder,
|
|
78
77
|
scriptName: "@puppeteer/browsers",
|
|
79
|
-
version: version_js_1.packageVersion,
|
|
80
78
|
prefixCommand: {
|
|
81
79
|
cmd: "browsers",
|
|
82
80
|
description: "Manage browsers of this Puppeteer installation",
|
package/oclif.manifest.json
CHANGED