@scayle/storefront-nuxt 8.20.0 → 8.21.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 +29 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/package.json +5 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @scayle/storefront-nuxt
|
|
2
2
|
|
|
3
|
+
## 8.21.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
**Dependencies**
|
|
8
|
+
|
|
9
|
+
**@scayle/storefront-core v8.21.0**
|
|
10
|
+
|
|
11
|
+
- Minor
|
|
12
|
+
|
|
13
|
+
- Expose the following filter types from `storefront-api`:
|
|
14
|
+
|
|
15
|
+
- `FilterItemWithValues`
|
|
16
|
+
- `BooleanFilterItemWithValues`
|
|
17
|
+
- `RangeFilterItemWithValues`
|
|
18
|
+
- `IdenfitierFilterItemWithValues`
|
|
19
|
+
- `AttributesFilterValue`
|
|
20
|
+
|
|
21
|
+
## 8.20.1
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
**Dependencies**
|
|
26
|
+
|
|
27
|
+
**@scayle/storefront-core v8.20.1**
|
|
28
|
+
|
|
29
|
+
- Patch
|
|
30
|
+
- Re-exported `BasketKey` and `ApplicablePromotion` from `@scayle/storefront-api`
|
|
31
|
+
|
|
3
32
|
## 8.20.0
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
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.21.0",
|
|
5
5
|
"description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
|
|
6
6
|
"author": "SCAYLE Commerce Engine",
|
|
7
7
|
"license": "MIT",
|
|
@@ -70,7 +70,8 @@
|
|
|
70
70
|
"prep": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
71
71
|
"format": "dprint check",
|
|
72
72
|
"format:fix": "dprint fmt",
|
|
73
|
-
"lint": "eslint .
|
|
73
|
+
"lint": "eslint .",
|
|
74
|
+
"lint:ci": "eslint . --format gitlab",
|
|
74
75
|
"lint:fix": "eslint . --fix",
|
|
75
76
|
"typecheck": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
|
|
76
77
|
"package:lint": "publint",
|
|
@@ -81,7 +82,7 @@
|
|
|
81
82
|
"dependencies": {
|
|
82
83
|
"@opentelemetry/api": "^1.9.0",
|
|
83
84
|
"@scayle/h3-session": "0.6.0",
|
|
84
|
-
"@scayle/storefront-core": "8.
|
|
85
|
+
"@scayle/storefront-core": "8.21.0",
|
|
85
86
|
"@scayle/unstorage-compression-driver": "^0.2.6",
|
|
86
87
|
"@vercel/nft": "0.29.2",
|
|
87
88
|
"@vueuse/core": "13.1.0",
|
|
@@ -109,7 +110,7 @@
|
|
|
109
110
|
"@scayle/eslint-config-storefront": "4.5.0",
|
|
110
111
|
"@scayle/eslint-plugin-vue-composable": "0.2.1",
|
|
111
112
|
"@scayle/unstorage-scayle-kv-driver": "0.1.1",
|
|
112
|
-
"@types/node": "22.14.
|
|
113
|
+
"@types/node": "22.14.1",
|
|
113
114
|
"dprint": "0.49.1",
|
|
114
115
|
"eslint-formatter-gitlab": "5.1.0",
|
|
115
116
|
"eslint": "9.24.0",
|
|
@@ -135,12 +136,6 @@
|
|
|
135
136
|
"unstorage": "^1.10.1",
|
|
136
137
|
"vue": "^3.4.0"
|
|
137
138
|
},
|
|
138
|
-
"resolutions": {
|
|
139
|
-
"@nuxt/kit": "3.15.4",
|
|
140
|
-
"@nuxt/schema": "3.15.4",
|
|
141
|
-
"h3": "1.15.0",
|
|
142
|
-
"vue": "3.5.13"
|
|
143
|
-
},
|
|
144
139
|
"volta": {
|
|
145
140
|
"node": "22.14.0"
|
|
146
141
|
}
|