@scayle/omnichannel-nuxt 4.3.2 → 4.3.3
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 +8 -2
- package/dist/module.json +3 -3
- package/dist/module.mjs +1 -1
- package/package.json +40 -39
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @scayle/omnichannel-nuxt
|
|
2
2
|
|
|
3
|
+
## 4.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Use latest `nuxt@3.19.2` for build. Compatibility with previous version has not changed and is specified via package `peerDependencies` and Nuxt `compatibility` flag.
|
|
8
|
+
|
|
3
9
|
## 4.3.2
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -107,7 +113,7 @@
|
|
|
107
113
|
refreshStoreVariant,
|
|
108
114
|
variantStoresData,
|
|
109
115
|
refreshVariantStores,
|
|
110
|
-
} = useStoreLocator('useStoreLocator', ['openingTimes', '
|
|
116
|
+
} = useStoreLocator('useStoreLocator', ['openingTimes', 'settings'])
|
|
111
117
|
```
|
|
112
118
|
|
|
113
119
|
## 2.1.4
|
|
@@ -251,7 +257,7 @@
|
|
|
251
257
|
### Patch Changes
|
|
252
258
|
|
|
253
259
|
- Add useGeocode composable
|
|
254
|
-
Allow latitude and longitude coordinates to
|
|
260
|
+
Allow latitude and longitude coordinates to search in store locator and variant locator
|
|
255
261
|
- Updated dependencies
|
|
256
262
|
- @scayle/storefront-core@7.16.0
|
|
257
263
|
|
package/dist/module.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/omnichannel-nuxt",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.3",
|
|
4
4
|
"configKey": "@scayle/omnichannel-nuxt",
|
|
5
5
|
"builder": {
|
|
6
|
-
"@nuxt/module-builder": "1.0.
|
|
7
|
-
"unbuild": "3.
|
|
6
|
+
"@nuxt/module-builder": "1.0.2",
|
|
7
|
+
"unbuild": "3.6.1"
|
|
8
8
|
}
|
|
9
9
|
}
|
package/dist/module.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineNuxtModule, isNuxtMajorVersion, createResolver, addImportsDir } from '@nuxt/kit';
|
|
2
2
|
|
|
3
3
|
const PACKAGE_NAME = "@scayle/omnichannel-nuxt";
|
|
4
|
-
const PACKAGE_VERSION = "4.3.
|
|
4
|
+
const PACKAGE_VERSION = "4.3.3";
|
|
5
5
|
const module = defineNuxtModule({
|
|
6
6
|
meta: {
|
|
7
7
|
name: PACKAGE_NAME,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/omnichannel-nuxt",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.3",
|
|
4
4
|
"description": "Collection of essential utilities to work with omnichannel",
|
|
5
5
|
"author": "SCAYLE Commerce Engine",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,12 +38,47 @@
|
|
|
38
38
|
"compatibility": {
|
|
39
39
|
"nuxt": "^3.9.0"
|
|
40
40
|
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"@scayle/storefront-nuxt": "^8.7.1"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@nuxt/kit": "^3.12.2",
|
|
46
|
+
"qs": "^6.14.0",
|
|
47
|
+
"utility-types": "^3.11.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@arethetypeswrong/cli": "0.18.2",
|
|
51
|
+
"@nuxt/eslint": "1.9.0",
|
|
52
|
+
"@nuxt/eslint-config": "1.9.0",
|
|
53
|
+
"@nuxt/module-builder": "1.0.2",
|
|
54
|
+
"@nuxt/schema": "3.19.2",
|
|
55
|
+
"@types/node": "22.18.3",
|
|
56
|
+
"@types/qs": "6.14.0",
|
|
57
|
+
"@vitest/coverage-v8": "3.2.4",
|
|
58
|
+
"dprint": "0.50.2",
|
|
59
|
+
"eslint-formatter-gitlab": "6.0.1",
|
|
60
|
+
"eslint": "9.35.0",
|
|
61
|
+
"h3": "1.15.4",
|
|
62
|
+
"nuxt": "3.19.2",
|
|
63
|
+
"publint": "0.3.12",
|
|
64
|
+
"typescript": "5.9.2",
|
|
65
|
+
"unbuild": "3.6.1",
|
|
66
|
+
"vitest": "3.2.4",
|
|
67
|
+
"vue-tsc": "3.0.7",
|
|
68
|
+
"vue": "3.5.21",
|
|
69
|
+
"@scayle/eslint-config-storefront": "4.7.8",
|
|
70
|
+
"@scayle/storefront-nuxt": "8.44.1",
|
|
71
|
+
"@scayle/vitest-config-storefront": "1.0.0"
|
|
72
|
+
},
|
|
73
|
+
"volta": {
|
|
74
|
+
"node": "22.19.0"
|
|
75
|
+
},
|
|
41
76
|
"scripts": {
|
|
42
77
|
"clean": "rimraf ./dist",
|
|
43
78
|
"build": "nuxt-module-build build",
|
|
44
|
-
"dev": "
|
|
45
|
-
"dev:build": "
|
|
46
|
-
"prep": "nuxt-module-build prepare &&
|
|
79
|
+
"dev": "nuxt dev playground",
|
|
80
|
+
"dev:build": "nuxt build playground",
|
|
81
|
+
"prep": "nuxt-module-build prepare && nuxt prepare playground",
|
|
47
82
|
"format": "dprint check",
|
|
48
83
|
"format:fix": "dprint fmt",
|
|
49
84
|
"lint": "eslint .",
|
|
@@ -55,39 +90,5 @@
|
|
|
55
90
|
"test": "vitest --run --passWithNoTests",
|
|
56
91
|
"test:watch": "vitest --passWithNoTests",
|
|
57
92
|
"test:ci": "vitest --run --passWithNoTests --coverage --reporter=default --reporter=junit --outputFile=./coverage/junit.xml"
|
|
58
|
-
},
|
|
59
|
-
"peerDependencies": {
|
|
60
|
-
"@scayle/storefront-nuxt": "^8.7.1"
|
|
61
|
-
},
|
|
62
|
-
"dependencies": {
|
|
63
|
-
"@nuxt/kit": "^3.12.2",
|
|
64
|
-
"qs": "^6.14.0",
|
|
65
|
-
"utility-types": "^3.11.0"
|
|
66
|
-
},
|
|
67
|
-
"devDependencies": {
|
|
68
|
-
"@arethetypeswrong/cli": "0.18.1",
|
|
69
|
-
"@nuxt/eslint": "1.4.1",
|
|
70
|
-
"@nuxt/module-builder": "1.0.1",
|
|
71
|
-
"@nuxt/schema": "3.16.2",
|
|
72
|
-
"@scayle/eslint-config-storefront": "4.5.3",
|
|
73
|
-
"@scayle/storefront-nuxt": "8.28.4",
|
|
74
|
-
"@types/node": "22.15.24",
|
|
75
|
-
"@types/qs": "6.14.0",
|
|
76
|
-
"@vitest/coverage-v8": "3.1.4",
|
|
77
|
-
"dprint": "0.50.0",
|
|
78
|
-
"eslint-formatter-gitlab": "6.0.0",
|
|
79
|
-
"eslint": "9.27.0",
|
|
80
|
-
"h3": "1.15.3",
|
|
81
|
-
"nuxi": "3.25.1",
|
|
82
|
-
"nuxt": "3.16.2",
|
|
83
|
-
"publint": "0.2.12",
|
|
84
|
-
"typescript": "5.8.3",
|
|
85
|
-
"unbuild": "3.5.0",
|
|
86
|
-
"vitest": "3.1.4",
|
|
87
|
-
"vue-tsc": "2.2.10",
|
|
88
|
-
"vue": "3.5.15"
|
|
89
|
-
},
|
|
90
|
-
"volta": {
|
|
91
|
-
"node": "22.16.0"
|
|
92
93
|
}
|
|
93
|
-
}
|
|
94
|
+
}
|