@scayle/storefront-nuxt 8.34.1 → 8.36.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 +1 -1
- package/CHANGELOG.md +31 -3
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/nitro/plugins/internalFetch.d.ts +1 -1
- package/package.json +6 -6
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
|
|
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,33 @@
|
|
|
1
1
|
# @scayle/storefront-nuxt
|
|
2
2
|
|
|
3
|
+
## 8.36.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
**Dependencies**
|
|
8
|
+
|
|
9
|
+
**@scayle/storefront-core v8.36.0**
|
|
10
|
+
|
|
11
|
+
- Minor
|
|
12
|
+
|
|
13
|
+
- Created a new RPC method `getCampaign` to retrieve the first active campaign.
|
|
14
|
+
|
|
15
|
+
More details can be found in the official SCAYLE Resource Center under [API Guides / Storefront API / Campaigns / List Campaigns](https://scayle.dev/en/api-guides/storefront-api/resources/campaigns/list-campaigns).
|
|
16
|
+
|
|
17
|
+
## 8.35.0
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
**Dependencies**
|
|
22
|
+
|
|
23
|
+
**@scayle/storefront-core v8.35.0**
|
|
24
|
+
|
|
25
|
+
- Minor
|
|
26
|
+
- Removed optional key `fbook` from `ShopUser` interface
|
|
27
|
+
- Renamed incorrectly formatted function `getBackurlFromBreadcrumbs` to `getBackURLFromBreadcrumbs`
|
|
28
|
+
- Patch
|
|
29
|
+
- Renamed interface incorrectly named `IdenfitierFilterItemWithValues` to `IdentifierFilterItemWithValues`
|
|
30
|
+
|
|
3
31
|
## 8.34.1
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
|
@@ -623,7 +651,7 @@
|
|
|
623
651
|
- `FilterItemWithValues`
|
|
624
652
|
- `BooleanFilterItemWithValues`
|
|
625
653
|
- `RangeFilterItemWithValues`
|
|
626
|
-
- `
|
|
654
|
+
- `IdentifierFilterItemWithValues`
|
|
627
655
|
- `AttributesFilterValue`
|
|
628
656
|
|
|
629
657
|
## 8.20.1
|
|
@@ -1328,7 +1356,7 @@
|
|
|
1328
1356
|
### Patch Changes
|
|
1329
1357
|
|
|
1330
1358
|
- Removed dependency `@nuxt/kit@^3.12.2`
|
|
1331
|
-
- Fixed misspelling of interface `
|
|
1359
|
+
- Fixed misspelling of interface `BasketItemDisplayDataItem` to `BasketItemDisplayDataItem`
|
|
1332
1360
|
|
|
1333
1361
|
**Dependencies**
|
|
1334
1362
|
|
|
@@ -1639,7 +1667,7 @@
|
|
|
1639
1667
|
}
|
|
1640
1668
|
```
|
|
1641
1669
|
|
|
1642
|
-
- **\[💥 BREAKING\]** The `store` option in the module configuration has been removed.
|
|
1670
|
+
- **\[💥 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
1671
|
|
|
1644
1672
|
- For more information, please refer to the [documentation](https://scayle.dev/en/storefront-guide/developer-guide/basic-setup/introduction#shops).
|
|
1645
1673
|
- **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
package/dist/module.mjs
CHANGED
|
@@ -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
|
-
*
|
|
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.
|
|
4
|
+
"version": "8.36.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,19 +90,19 @@
|
|
|
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.
|
|
93
|
+
"@scayle/storefront-core": "8.36.0",
|
|
94
94
|
"@scayle/unstorage-compression-driver": "1.0.0"
|
|
95
95
|
},
|
|
96
96
|
"devDependencies": {
|
|
97
97
|
"@arethetypeswrong/cli": "0.18.2",
|
|
98
98
|
"@eslint/eslintrc": "3.3.1",
|
|
99
|
-
"@nuxt/eslint": "1.
|
|
99
|
+
"@nuxt/eslint": "1.7.0",
|
|
100
100
|
"@nuxt/eslint-config": "1.4.1",
|
|
101
101
|
"@nuxt/kit": "3.17.7",
|
|
102
102
|
"@nuxt/module-builder": "1.0.1",
|
|
103
103
|
"@nuxt/schema": "3.17.7",
|
|
104
104
|
"@nuxt/test-utils": "3.19.2",
|
|
105
|
-
"@types/node": "22.16.
|
|
105
|
+
"@types/node": "22.16.5",
|
|
106
106
|
"@vitest/coverage-v8": "3.2.4",
|
|
107
107
|
"dprint": "0.50.1",
|
|
108
108
|
"eslint-formatter-gitlab": "6.0.1",
|
|
@@ -117,13 +117,13 @@
|
|
|
117
117
|
"typescript": "5.8.3",
|
|
118
118
|
"unbuild": "3.5.0",
|
|
119
119
|
"vitest": "3.2.4",
|
|
120
|
-
"vue-tsc": "3.0.
|
|
120
|
+
"vue-tsc": "3.0.3",
|
|
121
121
|
"@scayle/eslint-config-storefront": "4.6.1",
|
|
122
122
|
"@scayle/eslint-plugin-vue-composable": "0.2.1",
|
|
123
123
|
"@scayle/unstorage-scayle-kv-driver": "1.0.2"
|
|
124
124
|
},
|
|
125
125
|
"volta": {
|
|
126
|
-
"node": "22.17.
|
|
126
|
+
"node": "22.17.1"
|
|
127
127
|
},
|
|
128
128
|
"scripts": {
|
|
129
129
|
"build": "nuxt-module-build build",
|