@speedkit/cli 2.66.0 → 2.67.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
|
+
# [2.67.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.66.0...v2.67.0) (2024-12-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **customer-config:** add currency verification todo ([96d09df](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/96d09df4610a7b2ebe2ceeabef5a00bf0cbeab38))
|
|
7
|
+
|
|
1
8
|
# [2.66.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v2.65.3...v2.66.0) (2024-12-05)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -26,7 +26,10 @@ import { PredictivePreloading } from 'predictive-preloading/predictivePreloading
|
|
|
26
26
|
new HistoryApiPlugin(), // Soft Navigation Tracking using History API
|
|
27
27
|
{{/if}}
|
|
28
28
|
{{#if useGATracking}}
|
|
29
|
-
new GAEcommerceTrackingPlugin({
|
|
29
|
+
new GAEcommerceTrackingPlugin({
|
|
30
|
+
// TODO: verify default currency
|
|
31
|
+
defaultCurrency: "EUR"
|
|
32
|
+
}),
|
|
30
33
|
{{/if}}
|
|
31
34
|
|
|
32
35
|
{{#if addPreRendering}}
|
|
@@ -221,6 +224,7 @@ import { PredictivePreloading } from 'predictive-preloading/predictivePreloading
|
|
|
221
224
|
// for (var i = 0; i < ecommerce.add.products.length; i++) {
|
|
222
225
|
// aTCProductsArray.push({
|
|
223
226
|
// id: ecommerce.add.products[i].id ? ecommerce.add.products[i].id : location.href,
|
|
227
|
+
// // TODO: verify default currency
|
|
224
228
|
// currencyCode: currencyCode ? currencyCode : 'EUR',
|
|
225
229
|
// price: Number(ecommerce.add.products[i].price),
|
|
226
230
|
// quantity: ecommerce.add.products[i].quantity ? ecommerce.add.products[i].quantity : 1,
|
|
@@ -251,6 +255,7 @@ import { PredictivePreloading } from 'predictive-preloading/predictivePreloading
|
|
|
251
255
|
// var orderId = purchase.actionField.id;
|
|
252
256
|
// var orderValue = String(purchase.actionField.revenue).replace(',', '.');
|
|
253
257
|
// return {
|
|
258
|
+
// // TODO: verify currency
|
|
254
259
|
// id: String(orderId), currencyCode: 'EUR', revenue: Number(orderValue),
|
|
255
260
|
// };
|
|
256
261
|
// },
|
package/oclif.manifest.json
CHANGED