@speedkit/cli 3.8.0 → 3.9.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.9.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.8.0...v3.9.0) (2025-10-14)
2
+
3
+
4
+ ### Features
5
+
6
+ * **customer-config:** remove unnecessary session dimensions ([a5766e5](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/a5766e54a72e71a2dfdf07c6b0ce4d8f2cd5c711))
7
+
1
8
  # [3.8.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.7.1...v3.8.0) (2025-10-14)
2
9
 
3
10
 
package/README.md CHANGED
@@ -21,7 +21,7 @@ $ npm install -g @speedkit/cli
21
21
  $ sk COMMAND
22
22
  running command...
23
23
  $ sk (--version)
24
- @speedkit/cli/3.8.0 linux-x64 node-v20.19.5
24
+ @speedkit/cli/3.9.0 linux-x64 node-v20.19.5
25
25
  $ sk --help [COMMAND]
26
26
  USAGE
27
27
  $ sk COMMAND
@@ -67,75 +67,6 @@ import { PredictivePreloading } from 'predictive-preloading/predictivePreloading
67
67
  new UserFrictionPlugin(),
68
68
  new ClickPlugin(),
69
69
  {{/if}}
70
- {
71
- key: 'language',
72
- type: 'SessionDimension',
73
- {{#if useGATracking}}
74
- on: 'dataLayer',
75
- set: function(pushedEvent) {
76
- // TODO: verify event property
77
- return pushedEvent?.language;
78
- },
79
- {{else}}
80
- {{#if isShopify}}
81
- on: 'window.Shopify',
82
- set: function() {
83
- return window.Shopify?.locale;
84
- },
85
- {{else}}
86
- // TODO: set proper 'on' event listener
87
- set: function() {
88
- // TODO: return value
89
- },
90
- {{/if}}
91
- {{/if}}
92
- },
93
- {
94
- key: 'country',
95
- type: 'SessionDimension',
96
- {{#if useGATracking}}
97
- on: 'dataLayer',
98
- set: function(pushedEvent) {
99
- // TODO: verify event property
100
- return pushedEvent?.country;
101
- },
102
- {{else}}
103
- {{#if isShopify}}
104
- on: 'window.Shopify',
105
- set: function() {
106
- return window.Shopify?.country;
107
- },
108
- {{else}}
109
- // TODO: set proper 'on' event listener
110
- set: function() {
111
- // TODO: return value
112
- },
113
- {{/if}}
114
- {{/if}}
115
- },
116
- {
117
- key: 'currency',
118
- type: 'SessionDimension',
119
- {{#if useGATracking}}
120
- on: 'dataLayer',
121
- set: function(pushedEvent) {
122
- // TODO: verify event property
123
- return pushedEvent?.currency;
124
- },
125
- {{else}}
126
- {{#if isShopify}}
127
- on: 'window.Shopify',
128
- set: function() {
129
- return window.Shopify?.currency?.active;
130
- },
131
- {{else}}
132
- // TODO: set proper 'on' event listener
133
- set: function() {
134
- // TODO: return value
135
- },
136
- {{/if}}
137
- {{/if}}
138
- },
139
70
  {
140
71
  key: 'loggedIn',
141
72
  type: 'SessionDimension',
@@ -732,5 +732,5 @@
732
732
  ]
733
733
  }
734
734
  },
735
- "version": "3.8.0"
735
+ "version": "3.9.0"
736
736
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@speedkit/cli",
3
3
  "description": "Speed Kit CLI",
4
- "version": "3.8.0",
4
+ "version": "3.9.0",
5
5
  "author": {
6
6
  "name": "Baqend.com",
7
7
  "email": "info@baqend.com"