@scayle/storefront-nuxt 8.34.1 → 8.35.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-V7.md CHANGED
@@ -1184,7 +1184,7 @@ For more details on `useAsyncData` usage check out the [Nuxt Docs](https://nuxt.
1184
1184
 
1185
1185
  ### Patch Changes
1186
1186
 
1187
- - Fix the type of unitialized data in `useBasket` and `useWishlist`
1187
+ - Fix the type of uninitialized data in `useBasket` and `useWishlist`
1188
1188
 
1189
1189
  When the request for the basket/wishlist has not completed or has failed, the `data` property is `undefined`. In the previous release this was inadvertently changed to `null`. Now it is once again `undefined`.
1190
1190
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @scayle/storefront-nuxt
2
2
 
3
+ ## 8.35.0
4
+
5
+ ### Patch Changes
6
+
7
+ **Dependencies**
8
+
9
+ **@scayle/storefront-core v8.35.0**
10
+
11
+ - Minor
12
+ - Removed optional key `fbook` from `ShopUser` interface
13
+ - Renamed incorrectly formatted function `getBackurlFromBreadcrumbs` to `getBackURLFromBreadcrumbs`
14
+ - Patch
15
+ - Renamed interface incorrectly named `IdenfitierFilterItemWithValues` to `IdentifierFilterItemWithValues`
16
+
3
17
  ## 8.34.1
4
18
 
5
19
  ### Patch Changes
@@ -623,7 +637,7 @@
623
637
  - `FilterItemWithValues`
624
638
  - `BooleanFilterItemWithValues`
625
639
  - `RangeFilterItemWithValues`
626
- - `IdenfitierFilterItemWithValues`
640
+ - `IdentifierFilterItemWithValues`
627
641
  - `AttributesFilterValue`
628
642
 
629
643
  ## 8.20.1
@@ -1328,7 +1342,7 @@
1328
1342
  ### Patch Changes
1329
1343
 
1330
1344
  - Removed dependency `@nuxt/kit@^3.12.2`
1331
- - Fixed misspelling of interface `BaskteItemDisplayDataItem` to `BasketItemDisplayDataItem`
1345
+ - Fixed misspelling of interface `BasketItemDisplayDataItem` to `BasketItemDisplayDataItem`
1332
1346
 
1333
1347
  **Dependencies**
1334
1348
 
@@ -1639,7 +1653,7 @@
1639
1653
  }
1640
1654
  ```
1641
1655
 
1642
- - **\[💥 BREAKING\]** The `store` option in the module configuration has been removed. scayle/storefront-nuxt@7.84.0` introduced the `shops` option as a replacement, but maintained backward compatibility with the `store` option. Going forward, configuring shops must be done using the `shops` keyword.
1656
+ - **\[💥 BREAKING\]** The `store` option in the module configuration has been removed. `@scayle/storefront-nuxt@7.84.0` introduced the `shops` option as a replacement, but maintained backward compatibility with the `store` option. Going forward, configuring shops must be done using the `shops` keyword.
1643
1657
 
1644
1658
  - For more information, please refer to the [documentation](https://scayle.dev/en/storefront-guide/developer-guide/basic-setup/introduction#shops).
1645
1659
  - **NOTE:** These changes might impact your environment variables used for deployments. Please check your infrastructure and deployment setup and adapt accordingly!
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
- "version": "8.34.1",
3
+ "version": "8.35.0",
4
4
  "configKey": "storefront",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.9.0"
package/dist/module.mjs CHANGED
@@ -54,7 +54,7 @@ export default {
54
54
  }`;
55
55
  }
56
56
  const PACKAGE_NAME = "@scayle/storefront-nuxt";
57
- const PACKAGE_VERSION = "8.34.1";
57
+ const PACKAGE_VERSION = "8.35.0";
58
58
  const logger = createConsola({
59
59
  fancy: true,
60
60
  formatOptions: {
@@ -9,7 +9,7 @@ declare module 'h3' {
9
9
  * Nitro includes an `event.$fetch` function for internal fetch requests to allow sharing the headers and
10
10
  * context across requests. However, as of 2.11.7, the context is no longer shared, just the headers. As our
11
11
  * bootstrapping depends on this behavior, we create a custom function with the pre-2.11.7 behavior. This enables
12
- * compability with 2.11.7 as well as earlier versions.
12
+ * compatibility with 2.11.7 as well as earlier versions.
13
13
  *
14
14
  * @see https://nitro.build/guide/plugins
15
15
  *
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
3
  "type": "module",
4
- "version": "8.34.1",
4
+ "version": "8.35.0",
5
5
  "description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
6
6
  "author": "SCAYLE Commerce Engine",
7
7
  "license": "MIT",
@@ -90,7 +90,7 @@
90
90
  "utility-types": "^3.11.0",
91
91
  "vue-router": "^4.4.0",
92
92
  "zod": "^4.0.0",
93
- "@scayle/storefront-core": "8.34.1",
93
+ "@scayle/storefront-core": "8.35.0",
94
94
  "@scayle/unstorage-compression-driver": "1.0.0"
95
95
  },
96
96
  "devDependencies": {