@scayle/storefront-nuxt 7.93.0 → 7.94.1
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 +19 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +3 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @scayle/storefront-nuxt
|
|
2
2
|
|
|
3
|
+
## 7.94.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
**Dependencies**
|
|
8
|
+
|
|
9
|
+
- Updated dependency to @scayle/storefront-core@7.66.4
|
|
10
|
+
|
|
11
|
+
## 7.94.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- Move `vitest` to dev dependencies
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Removed dependency `vitest@2.1.4`
|
|
20
|
+
- Add `useNavigationTreeById` and `useNavigationTreeByName` to the list of keyed composables
|
|
21
|
+
|
|
3
22
|
## 7.93.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -48,7 +48,7 @@ export default {
|
|
|
48
48
|
}`;
|
|
49
49
|
}
|
|
50
50
|
const PACKAGE_NAME = "@scayle/storefront-nuxt";
|
|
51
|
-
const PACKAGE_VERSION = "7.
|
|
51
|
+
const PACKAGE_VERSION = "7.94.1";
|
|
52
52
|
const logger = createConsola({
|
|
53
53
|
fancy: true,
|
|
54
54
|
formatOptions: {
|
|
@@ -322,6 +322,8 @@ Missing RPC Overrides: ${Array.from(overridenRPCMethodNames).map((name) => `'${n
|
|
|
322
322
|
"useFilters",
|
|
323
323
|
"useIDP",
|
|
324
324
|
"useNavigationTree",
|
|
325
|
+
"useNavigationTreeById",
|
|
326
|
+
"useNavigationTreeByName",
|
|
325
327
|
"useNavigationTrees",
|
|
326
328
|
"useOrder",
|
|
327
329
|
"useOrderConfirmation",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/storefront-nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.94.1",
|
|
5
5
|
"description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
|
|
6
6
|
"author": "SCAYLE Commerce Engine",
|
|
7
7
|
"license": "MIT",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@nuxt/kit": "^3.12.2",
|
|
66
66
|
"@opentelemetry/api": "^1.9.0",
|
|
67
67
|
"@scayle/h3-session": "^0.4.1",
|
|
68
|
-
"@scayle/storefront-core": "7.66.
|
|
68
|
+
"@scayle/storefront-core": "7.66.4",
|
|
69
69
|
"@scayle/unstorage-compression-driver": "^0.1.5",
|
|
70
70
|
"@vueuse/core": "11.2.0",
|
|
71
71
|
"consola": "^3.2.3",
|
|
@@ -80,8 +80,7 @@
|
|
|
80
80
|
"unstorage": "^1.10.2",
|
|
81
81
|
"vue-router": "^4.4.0",
|
|
82
82
|
"zod": "^3.23.8",
|
|
83
|
-
"schema-dts": "1.1.2"
|
|
84
|
-
"vitest": "2.1.4"
|
|
83
|
+
"schema-dts": "1.1.2"
|
|
85
84
|
},
|
|
86
85
|
"devDependencies": {
|
|
87
86
|
"@nuxt/eslint": "0.6.1",
|
|
@@ -101,7 +100,8 @@
|
|
|
101
100
|
"nuxi": "3.15.0",
|
|
102
101
|
"nuxt": "3.13.2",
|
|
103
102
|
"publint": "0.2.12",
|
|
104
|
-
"vue-tsc": "2.1.10"
|
|
103
|
+
"vue-tsc": "2.1.10",
|
|
104
|
+
"vitest": "2.1.4"
|
|
105
105
|
},
|
|
106
106
|
"peerDependencies": {
|
|
107
107
|
"fishery": "^2.2.2",
|