@graphcommerce/magento-product 4.1.4 → 4.1.5
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,18 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 4.1.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1381](https://github.com/graphcommerce-org/graphcommerce/pull/1381) [`9b3488c6a`](https://github.com/graphcommerce-org/graphcommerce/commit/9b3488c6a03cc09a647f43f6a8b36d96e97e5bb8) Thanks [@ErwinOtten](https://github.com/ErwinOtten)! - Non blocking error handling
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`3c801f45c`](https://github.com/graphcommerce-org/graphcommerce/commit/3c801f45c7df55131acf30ae2fe0d2344830d480), [`b8d04130a`](https://github.com/graphcommerce-org/graphcommerce/commit/b8d04130a1b1cb8fc85308939235140288744465), [`3192fab82`](https://github.com/graphcommerce-org/graphcommerce/commit/3192fab82560e2211dfcacadc3b0b305260527d8), [`0e425e85e`](https://github.com/graphcommerce-org/graphcommerce/commit/0e425e85ee8fed280349317ee0440c7bceea5823), [`8a354d1cd`](https://github.com/graphcommerce-org/graphcommerce/commit/8a354d1cd4757497ddfc9b1969a0addbc8ff616b)]:
|
|
10
|
+
- @graphcommerce/next-ui@4.6.0
|
|
11
|
+
- @graphcommerce/magento-cart@4.2.4
|
|
12
|
+
- @graphcommerce/image@3.1.4
|
|
13
|
+
- @graphcommerce/framer-scroller@2.1.5
|
|
14
|
+
- @graphcommerce/magento-store@4.1.6
|
|
15
|
+
|
|
3
16
|
## 4.1.4
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { gql, ApolloClient, NormalizedCacheObject
|
|
1
|
+
import { gql, ApolloClient, NormalizedCacheObject, Exact } from '@graphcommerce/graphql'
|
|
2
2
|
import { AllFilterInputTypes, FilterTypes } from './filterTypes'
|
|
3
3
|
|
|
4
4
|
const allFilterInputTypes: AllFilterInputTypes[] = [
|
|
@@ -42,7 +42,7 @@ export async function getFilterTypes(
|
|
|
42
42
|
|
|
43
43
|
;(await filterInputTypes).data?.__type.inputFields.forEach(({ name, type }) => {
|
|
44
44
|
if (!allFilterInputTypes.includes(type.name))
|
|
45
|
-
|
|
45
|
+
console.warn(`filter ${name} with FilterTypeInput ${type.name} not implemented`)
|
|
46
46
|
typeMap[name] = type.name
|
|
47
47
|
})
|
|
48
48
|
|
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": "4.1.
|
|
5
|
+
"version": "4.1.5",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"type-fest": "2.12.1"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@graphcommerce/framer-scroller": "2.1.
|
|
22
|
+
"@graphcommerce/framer-scroller": "2.1.5",
|
|
23
23
|
"@graphcommerce/graphql": "3.0.7",
|
|
24
|
-
"@graphcommerce/image": "3.1.
|
|
25
|
-
"@graphcommerce/magento-cart": "4.2.
|
|
26
|
-
"@graphcommerce/magento-store": "4.1.
|
|
27
|
-
"@graphcommerce/next-ui": "4.
|
|
24
|
+
"@graphcommerce/image": "3.1.4",
|
|
25
|
+
"@graphcommerce/magento-cart": "4.2.4",
|
|
26
|
+
"@graphcommerce/magento-store": "4.1.6",
|
|
27
|
+
"@graphcommerce/next-ui": "4.6.0",
|
|
28
28
|
"schema-dts": "^1.1.0"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-non-null-assertion */
|
|
2
|
-
import { test as base } from '@graphcommerce/
|
|
2
|
+
import { test as base } from '@graphcommerce/magento-store/test/apolloClientStore.fixture'
|
|
3
3
|
import { ProductStaticPathsDocument } from '../components/ProductStaticPaths/ProductStaticPaths.gql'
|
|
4
4
|
import { ProductTypenames } from '../components/ProductStaticPaths/getProductStaticPaths'
|
|
5
5
|
import { productLink } from '../hooks/useProductLink'
|