@scayle/storefront-nuxt 7.45.0 → 7.46.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @scayle/storefront-nuxt
2
2
 
3
+ ## 7.46.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Use new password change API when oauth is enabled
8
+
9
+ ### Patch Changes
10
+
11
+ - Locale is optional in formatCurrency
12
+ - Updated dependencies
13
+ - @scayle/storefront-core@7.32.0
14
+
3
15
  ## 7.45.0
4
16
 
5
17
  ### Minor Changes
package/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.7.0"
6
6
  },
7
- "version": "7.44.1"
7
+ "version": "7.45.0"
8
8
  }
@@ -1,10 +1,10 @@
1
1
  type FormatCurrencyOptions = {
2
- locale: string;
2
+ locale?: string;
3
3
  currencyFractionDigits?: number;
4
4
  style?: 'currency';
5
5
  currency: string;
6
6
  } | {
7
- locale: string;
7
+ locale?: string;
8
8
  currencyFractionDigits?: number;
9
9
  style: 'decimal';
10
10
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
3
  "type": "module",
4
- "version": "7.45.0",
4
+ "version": "7.46.0",
5
5
  "description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
6
6
  "author": "SCAYLE Commerce Engine",
7
7
  "license": "MIT",
@@ -62,7 +62,7 @@
62
62
  "dependencies": {
63
63
  "@nuxt/kit": "3.8.2",
64
64
  "@scayle/h3-session": "0.3.4",
65
- "@scayle/storefront-core": "7.31.0",
65
+ "@scayle/storefront-core": "7.32.0",
66
66
  "@scayle/unstorage-compression-driver": "0.1.1",
67
67
  "@vueuse/core": "10.7.0",
68
68
  "consola": "3.2.3",
@@ -101,16 +101,16 @@
101
101
  "vue": ">=3.3.0"
102
102
  },
103
103
  "resolutions": {
104
- "@vue/compiler-core": "3.3.9",
105
- "@vue/shared": "3.3.9",
106
- "@vue/compiler-dom": "3.3.9",
107
- "@vue/compiler-sfc": "3.3.9",
108
- "@vue/compiler-ssr": "3.3.9",
109
- "@vue/reactivity-transform": "3.3.9",
110
- "@vue/reactivity": "3.3.9",
111
- "@vue/runtime-core": "3.3.9",
112
- "@vue/runtime-dom": "3.3.9",
113
- "@vue/server-renderer": "3.3.9"
104
+ "@vue/compiler-core": "3.3.12",
105
+ "@vue/shared": "3.3.12",
106
+ "@vue/compiler-dom": "3.3.12",
107
+ "@vue/compiler-sfc": "3.3.12",
108
+ "@vue/compiler-ssr": "3.3.12",
109
+ "@vue/reactivity-transform": "3.3.12",
110
+ "@vue/reactivity": "3.3.12",
111
+ "@vue/runtime-core": "3.3.12",
112
+ "@vue/runtime-dom": "3.3.12",
113
+ "@vue/server-renderer": "3.3.12"
114
114
  },
115
115
  "volta": {
116
116
  "node": "20.10.0"