@haus-storefront-react/vendure-plugin-configs 0.0.45 → 0.0.47
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 +24 -0
- package/elastic.js +1 -1
- package/elastic.mjs +4 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 0.0.46 (2025-10-08)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- update price handling in VendureElasticSearchPlugin and useFilters ([a9605b4](https://github.com/WeAreHausTech/haus-storefront-components/commit/a9605b4))
|
|
6
|
+
|
|
7
|
+
### 🧱 Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated core to 0.0.46
|
|
10
|
+
- Updated common/utils to 0.0.46
|
|
11
|
+
- Updated shared/types to 0.0.46
|
|
12
|
+
|
|
13
|
+
### ❤️ Thank You
|
|
14
|
+
|
|
15
|
+
- Mathias Saxenstrand
|
|
16
|
+
|
|
17
|
+
## 0.0.45 (2025-10-06)
|
|
18
|
+
|
|
19
|
+
### 🧱 Updated Dependencies
|
|
20
|
+
|
|
21
|
+
- Updated core to 0.0.45
|
|
22
|
+
- Updated common/utils to 0.0.45
|
|
23
|
+
- Updated shared/types to 0.0.45
|
|
24
|
+
|
|
1
25
|
## 0.0.44 (2025-10-02)
|
|
2
26
|
|
|
3
27
|
### 🧱 Updated Dependencies
|
package/elastic.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-CzxpJe9c.js"),i=new e.VendurePluginConfig({name:"vendure-elastic-search",queryUpdates:{search:{fields:[{prices:[{range:["min","max"],rangeWithTax:["min","max"]}]}]},searchField:{fields:[{prices:[{range:["min","max"],rangeWithTax:["min","max"]}]}]}}});exports.VendureElasticSearchPlugin=i;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-CzxpJe9c.js"),i=new e.VendurePluginConfig({name:"vendure-elastic-search",queryUpdates:{search:{fields:[{prices:[{range:["min","max"]},{rangeWithTax:["min","max"]}]}]},searchField:{fields:[{prices:[{range:["min","max"]},{rangeWithTax:["min","max"]}]}]}}});exports.VendureElasticSearchPlugin=i;
|
package/elastic.mjs
CHANGED
|
@@ -5,7 +5,8 @@ const i = new e({
|
|
|
5
5
|
search: {
|
|
6
6
|
fields: [{
|
|
7
7
|
prices: [{
|
|
8
|
-
range: ["min", "max"]
|
|
8
|
+
range: ["min", "max"]
|
|
9
|
+
}, {
|
|
9
10
|
rangeWithTax: ["min", "max"]
|
|
10
11
|
}]
|
|
11
12
|
}]
|
|
@@ -13,7 +14,8 @@ const i = new e({
|
|
|
13
14
|
searchField: {
|
|
14
15
|
fields: [{
|
|
15
16
|
prices: [{
|
|
16
|
-
range: ["min", "max"]
|
|
17
|
+
range: ["min", "max"]
|
|
18
|
+
}, {
|
|
17
19
|
rangeWithTax: ["min", "max"]
|
|
18
20
|
}]
|
|
19
21
|
}]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haus-storefront-react/vendure-plugin-configs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.47",
|
|
4
4
|
"main": "./index.js",
|
|
5
5
|
"types": "./index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@haus-storefront-react/common-utils": "0.0.
|
|
45
|
-
"@haus-storefront-react/core": "0.0.
|
|
46
|
-
"@haus-storefront-react/shared-types": "0.0.
|
|
44
|
+
"@haus-storefront-react/common-utils": "0.0.47",
|
|
45
|
+
"@haus-storefront-react/core": "0.0.47",
|
|
46
|
+
"@haus-storefront-react/shared-types": "0.0.47"
|
|
47
47
|
}
|
|
48
48
|
}
|