@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
@@ -21,7 +21,7 @@ $ npm install -g @speedkit/cli
21
21
  $ sk COMMAND
22
22
  running command...
23
23
  $ sk (--version)
24
- @speedkit/cli/4.18.0 linux-x64 node-v22.23.2
24
+ @speedkit/cli/4.19.0 linux-x64 node-v22.23.2
25
25
  $ sk --help [COMMAND]
26
26
  USAGE
27
27
  $ sk COMMAND
@@ -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: [
@@ -1001,5 +1001,5 @@
1001
1001
  ]
1002
1002
  }
1003
1003
  },
1004
- "version": "4.18.0"
1004
+ "version": "4.19.0"
1005
1005
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@speedkit/cli",
3
3
  "description": "Speed Kit CLI",
4
- "version": "4.18.0",
4
+ "version": "4.19.0",
5
5
  "author": {
6
6
  "name": "Baqend.com",
7
7
  "email": "info@baqend.com"