@speedkit/cli 3.32.0 → 3.32.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,10 @@
|
|
|
1
|
+
## [3.32.1](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.32.0...v3.32.1) (2026-03-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **customer-config:** prevent null pointer exception in soft2hard nav conversion ([9277a1c](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/9277a1c0a188b5e0f8f143435712d84255d9ff8c))
|
|
7
|
+
|
|
1
8
|
# [3.32.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.31.2...v3.32.0) (2026-03-11)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -277,9 +277,9 @@ import { PredictivePreloading } from 'predictive-preloading/predictivePreloading
|
|
|
277
277
|
track: () => {
|
|
278
278
|
if (
|
|
279
279
|
// check that dashboard is not disabled and user is in group A
|
|
280
|
-
window?.SpeedKit
|
|
280
|
+
window?.SpeedKit?.lastNavigate?.disconnectCause?.indexOf("DashboardDisabled") > -1 ||
|
|
281
281
|
!window?.SpeedKit?.skSupported ||
|
|
282
|
-
SpeedKit
|
|
282
|
+
window?.SpeedKit?.group !== "A"
|
|
283
283
|
) {
|
|
284
284
|
return;
|
|
285
285
|
}
|
package/oclif.manifest.json
CHANGED