@speedkit/cli 4.18.0 → 4.19.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,11 @@
|
|
|
1
|
+
# [4.19.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v4.18.0...v4.19.0) (2026-08-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **customer-config:** default /services/login_with_shop for Shopify, tighten comment ([8299dfb](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/8299dfba0248cc6e38ba86f722e14082b5c960ec))
|
|
7
|
+
* **customer-config:** scaffold native disabledScopes in config_SpeedKit template ([7535c7d](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/7535c7db670ff653be91f249cdaec664d08d9f05))
|
|
8
|
+
|
|
1
9
|
# [4.18.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v4.17.1...v4.18.0) (2026-08-03)
|
|
2
10
|
|
|
3
11
|
|
package/README.md
CHANGED
|
@@ -137,6 +137,17 @@ import { ShopifyPlugin } from "speed-kit-config/ShopifyPlugin";
|
|
|
137
137
|
split: CURRENT_HOST_CONFIG.split,
|
|
138
138
|
splitTestId: CURRENT_HOST_CONFIG.splitTestId,
|
|
139
139
|
disabled: !CURRENT_HOST_CONFIG.enabled,
|
|
140
|
+
// TODO: walk the live checkout + login flows and pin exact prefixes (SSO/PSP returns, separate reg pages). See /disabled-scopes.
|
|
141
|
+
disabledScopes: [
|
|
142
|
+
"/cart",
|
|
143
|
+
"/checkout",
|
|
144
|
+
{{#if isShopify}}
|
|
145
|
+
"/account", // login/register/recover/orders
|
|
146
|
+
"/services/login_with_shop", // Shop Pay auto-login transfer (platform route, all locales)
|
|
147
|
+
{{else}}
|
|
148
|
+
"/login",
|
|
149
|
+
{{/if}}
|
|
150
|
+
],
|
|
140
151
|
enabledSites: [
|
|
141
152
|
{
|
|
142
153
|
pathname: [
|
package/oclif.manifest.json
CHANGED