@graphcommerce/magento-product 8.1.0-canary.50 → 8.1.0-canary.52
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,14 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 8.1.0-canary.52
|
4
|
+
|
5
|
+
## 8.1.0-canary.51
|
6
|
+
|
7
|
+
### Minor Changes
|
8
|
+
|
9
|
+
- [#2322](https://github.com/graphcommerce-org/graphcommerce/pull/2322) [`4d08a2b`](https://github.com/graphcommerce-org/graphcommerce/commit/4d08a2bd8c1919bd85b18e8e856775d18fb67e00) - Rename configurable_customizable back to customizable_options
|
10
|
+
([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
11
|
+
|
3
12
|
## 8.1.0-canary.50
|
4
13
|
|
5
14
|
## 8.1.0-canary.49
|
@@ -47,10 +47,7 @@ export function findAddedItems(
|
|
47
47
|
}
|
48
48
|
}
|
49
49
|
|
50
|
-
const customizable_options =
|
51
|
-
? cartItem.configurable_customizable
|
52
|
-
: cartItem.customizable_options
|
53
|
-
|
50
|
+
const { customizable_options } = cartItem
|
54
51
|
const matchEntered = filterNonNullableKeys(itemVariable.entered_options).every(
|
55
52
|
(requestOption) =>
|
56
53
|
customizable_options.find(
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@graphcommerce/magento-product",
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
5
|
-
"version": "8.1.0-canary.
|
5
|
+
"version": "8.1.0-canary.52",
|
6
6
|
"sideEffects": false,
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
8
8
|
"eslintConfig": {
|
@@ -18,19 +18,19 @@
|
|
18
18
|
"typescript": "5.3.3"
|
19
19
|
},
|
20
20
|
"peerDependencies": {
|
21
|
-
"@graphcommerce/ecommerce-ui": "^8.1.0-canary.
|
22
|
-
"@graphcommerce/eslint-config-pwa": "^8.1.0-canary.
|
23
|
-
"@graphcommerce/framer-next-pages": "^8.1.0-canary.
|
24
|
-
"@graphcommerce/framer-scroller": "^8.1.0-canary.
|
25
|
-
"@graphcommerce/graphql": "^8.1.0-canary.
|
26
|
-
"@graphcommerce/graphql-mesh": "^8.1.0-canary.
|
27
|
-
"@graphcommerce/image": "^8.1.0-canary.
|
28
|
-
"@graphcommerce/magento-cart": "^8.1.0-canary.
|
29
|
-
"@graphcommerce/magento-category": "^8.1.0-canary.
|
30
|
-
"@graphcommerce/magento-store": "^8.1.0-canary.
|
31
|
-
"@graphcommerce/next-ui": "^8.1.0-canary.
|
32
|
-
"@graphcommerce/prettier-config-pwa": "^8.1.0-canary.
|
33
|
-
"@graphcommerce/typescript-config-pwa": "^8.1.0-canary.
|
21
|
+
"@graphcommerce/ecommerce-ui": "^8.1.0-canary.52",
|
22
|
+
"@graphcommerce/eslint-config-pwa": "^8.1.0-canary.52",
|
23
|
+
"@graphcommerce/framer-next-pages": "^8.1.0-canary.52",
|
24
|
+
"@graphcommerce/framer-scroller": "^8.1.0-canary.52",
|
25
|
+
"@graphcommerce/graphql": "^8.1.0-canary.52",
|
26
|
+
"@graphcommerce/graphql-mesh": "^8.1.0-canary.52",
|
27
|
+
"@graphcommerce/image": "^8.1.0-canary.52",
|
28
|
+
"@graphcommerce/magento-cart": "^8.1.0-canary.52",
|
29
|
+
"@graphcommerce/magento-category": "^8.1.0-canary.52",
|
30
|
+
"@graphcommerce/magento-store": "^8.1.0-canary.52",
|
31
|
+
"@graphcommerce/next-ui": "^8.1.0-canary.52",
|
32
|
+
"@graphcommerce/prettier-config-pwa": "^8.1.0-canary.52",
|
33
|
+
"@graphcommerce/typescript-config-pwa": "^8.1.0-canary.52",
|
34
34
|
"@lingui/core": "^4.2.1",
|
35
35
|
"@lingui/macro": "^4.2.1",
|
36
36
|
"@lingui/react": "^4.2.1",
|