@scayle/storefront-nuxt 8.28.2 → 8.28.4
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,5 +1,29 @@
|
|
|
1
1
|
# @scayle/storefront-nuxt
|
|
2
2
|
|
|
3
|
+
## 8.28.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Added dependency `utility-types@^3.11.0`
|
|
8
|
+
|
|
9
|
+
**Dependencies**
|
|
10
|
+
|
|
11
|
+
**@scayle/storefront-core v8.28.4**
|
|
12
|
+
|
|
13
|
+
- No changes in this release.
|
|
14
|
+
|
|
15
|
+
## 8.28.3
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated `FormatCurrencyOptions` to mark `currency` as an optional param. When `currency` is not provided, the currency code for the current shop will be used. However, attempting to use this fallback could result in a TypeScript error due to the incorrect typing.
|
|
20
|
+
|
|
21
|
+
**Dependencies**
|
|
22
|
+
|
|
23
|
+
**@scayle/storefront-core v8.28.3**
|
|
24
|
+
|
|
25
|
+
- No changes in this release.
|
|
26
|
+
|
|
3
27
|
## 8.28.2
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -17,9 +17,9 @@ type FormatCurrencyOptions = {
|
|
|
17
17
|
*/
|
|
18
18
|
style?: 'currency';
|
|
19
19
|
/**
|
|
20
|
-
* The currency code (e.g., 'EUR', 'USD') to use for formatting.
|
|
20
|
+
* The currency code (e.g., 'EUR', 'USD') to use for formatting. Defaults to the currency of the shop.
|
|
21
21
|
*/
|
|
22
|
-
currency
|
|
22
|
+
currency?: string;
|
|
23
23
|
} | {
|
|
24
24
|
/**
|
|
25
25
|
* The locale to use for formatting.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/storefront-nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "8.28.
|
|
4
|
+
"version": "8.28.4",
|
|
5
5
|
"description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
|
|
6
6
|
"author": "SCAYLE Commerce Engine",
|
|
7
7
|
"license": "MIT",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"dependencies": {
|
|
82
82
|
"@opentelemetry/api": "^1.9.0",
|
|
83
83
|
"@scayle/h3-session": "0.6.1",
|
|
84
|
-
"@scayle/storefront-core": "8.28.
|
|
84
|
+
"@scayle/storefront-core": "8.28.4",
|
|
85
85
|
"@scayle/unstorage-compression-driver": "^0.2.7",
|
|
86
86
|
"@vercel/nft": "0.29.3",
|
|
87
87
|
"@vueuse/core": "13.3.0",
|
|
@@ -92,12 +92,13 @@
|
|
|
92
92
|
"jose": "^6.0.8",
|
|
93
93
|
"knitwork": "^1.1.0",
|
|
94
94
|
"ofetch": "^1.3.4",
|
|
95
|
+
"schema-dts": "1.1.5",
|
|
95
96
|
"ufo": "^1.5.4",
|
|
96
97
|
"uncrypto": "^0.1.3",
|
|
97
98
|
"unstorage": "^1.10.2",
|
|
99
|
+
"utility-types": "^3.11.0",
|
|
98
100
|
"vue-router": "^4.4.0",
|
|
99
|
-
"zod": "^3.23.8"
|
|
100
|
-
"schema-dts": "1.1.5"
|
|
101
|
+
"zod": "^3.23.8"
|
|
101
102
|
},
|
|
102
103
|
"devDependencies": {
|
|
103
104
|
"@arethetypeswrong/cli": "0.18.1",
|
|
@@ -107,17 +108,17 @@
|
|
|
107
108
|
"@nuxt/module-builder": "1.0.1",
|
|
108
109
|
"@nuxt/schema": "3.16.2",
|
|
109
110
|
"@nuxt/test-utils": "3.18.0",
|
|
110
|
-
"@scayle/eslint-config-storefront": "4.5.
|
|
111
|
+
"@scayle/eslint-config-storefront": "4.5.3",
|
|
111
112
|
"@scayle/eslint-plugin-vue-composable": "0.2.1",
|
|
112
113
|
"@scayle/unstorage-scayle-kv-driver": "0.1.2",
|
|
113
|
-
"@types/node": "22.15.
|
|
114
|
+
"@types/node": "22.15.24",
|
|
114
115
|
"dprint": "0.50.0",
|
|
115
116
|
"eslint-formatter-gitlab": "6.0.0",
|
|
116
117
|
"eslint": "9.27.0",
|
|
117
118
|
"fishery": "2.3.1",
|
|
118
119
|
"h3": "1.15.3",
|
|
119
|
-
"nitropack": "2.11.12",
|
|
120
120
|
"nitro-test-utils": "0.9.2",
|
|
121
|
+
"nitropack": "2.11.12",
|
|
121
122
|
"node-mocks-http": "1.17.2",
|
|
122
123
|
"nuxi": "3.25.1",
|
|
123
124
|
"nuxt": "3.16.2",
|