@graphcommerce/magento-product 3.0.6 → 3.0.7

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
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.0.7](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-product@3.0.6...@graphcommerce/magento-product@3.0.7) (2021-09-30)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * with the latest version of graphql codegen the preresovled types inlined Maybe, make sure we reflect that ([7cb27b0](https://github.com/ho-nl/m2-pwa/commit/7cb27b04cbe31bee5ef4000d408f08bc9ac505c5))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.0.5](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-product@3.0.4...@graphcommerce/magento-product@3.0.5) (2021-09-28)
7
18
 
8
19
 
@@ -23,7 +23,10 @@ export const useStyles = makeStyles(
23
23
  )
24
24
 
25
25
  export type ProductItemsGridProps = {
26
- items?: Maybe<Array<Maybe<ProductListItemFragment & ProductListItemProps>>>
26
+ items?:
27
+ | Array<(ProductListItemFragment & ProductListItemProps) | null | undefined>
28
+ | null
29
+ | undefined
27
30
  renderers: ProductListItemRenderer
28
31
  loadingEager?: number
29
32
  size?: 'normal' | 'small'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/magento-product",
3
- "version": "3.0.6",
3
+ "version": "3.0.7",
4
4
  "sideEffects": false,
5
5
  "prettier": "@graphcommerce/prettier-config-pwa",
6
6
  "browserslist": [
@@ -24,8 +24,8 @@
24
24
  "@graphcommerce/framer-scroller": "^0.2.5",
25
25
  "@graphcommerce/graphql": "^2.103.4",
26
26
  "@graphcommerce/image": "^2.104.5",
27
- "@graphcommerce/magento-cart": "^3.0.6",
28
- "@graphcommerce/magento-store": "^3.0.6",
27
+ "@graphcommerce/magento-cart": "^3.0.7",
28
+ "@graphcommerce/magento-store": "^3.0.7",
29
29
  "@graphcommerce/next-ui": "^3.0.6",
30
30
  "@graphql-typed-document-node/core": "^3.1.0",
31
31
  "@material-ui/core": "^4.12.3",
@@ -38,5 +38,5 @@
38
38
  "schema-dts": "^1.0.0",
39
39
  "type-fest": "^2.3.4"
40
40
  },
41
- "gitHead": "cf2b61fa96aca043ff841b018334ca8c28e5e6cf"
41
+ "gitHead": "e22e75eb7fb075dece93b268a9b3799c4e1e9cea"
42
42
  }