@graphcommerce/magento-wishlist 10.0.0-canary.68 → 10.0.0-canary.72

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,17 @@
1
1
  # @graphcommerce/magento-wishlist
2
2
 
3
+ ## 10.0.0-canary.72
4
+
5
+ ## 10.0.0-canary.71
6
+
7
+ ## 10.0.0-canary.70
8
+
9
+ ### Major Changes
10
+
11
+ - [#2565](https://github.com/graphcommerce-org/graphcommerce/pull/2565) [`c96dfcd`](https://github.com/graphcommerce-org/graphcommerce/commit/c96dfcdca981baca387c270ad9e2b9515cdd00cc) - Updated to Apollo Client 4 ([@paales](https://github.com/paales))
12
+
13
+ ## 10.0.0-canary.69
14
+
3
15
  ## 10.0.0-canary.68
4
16
 
5
17
  ### Major Changes
@@ -1,10 +1,10 @@
1
- import type { QueryResult } from '@graphcommerce/graphql'
1
+ import type { useQuery } from '@graphcommerce/graphql'
2
2
  import {
3
3
  useCustomerQuery,
4
4
  useCustomerSession,
5
5
  useGuestQuery,
6
6
  } from '@graphcommerce/magento-customer'
7
- import { filterNonNullableKeys, nonNullable } from '@graphcommerce/next-ui'
7
+ import { nonNullable } from '@graphcommerce/next-ui'
8
8
  import type { WishlistItemFragment } from '../../queries/WishlistItem.gql'
9
9
  import { useWishlistEnabled } from '../useWishlistEnabled/useWishlistEnabled'
10
10
  import type {
@@ -19,13 +19,13 @@ export type UseWishlistItemsGuestReturn = {
19
19
  enabled: boolean
20
20
  loggedIn: false
21
21
  items: WishlistItemFragment[]
22
- } & QueryResult<UseWishlistGuestQuery, UseWishlistGuestQueryVariables>
22
+ } & useQuery.Result<UseWishlistGuestQuery, UseWishlistGuestQueryVariables>
23
23
 
24
24
  export type UseWishlistItemsCustomerReturn = {
25
25
  enabled: boolean
26
26
  loggedIn: true
27
27
  items: WishlistItemFragment[]
28
- } & QueryResult<UseWishlistCustomerQuery, UseWishlistCustomerQueryVariables>
28
+ } & useQuery.Result<UseWishlistCustomerQuery, UseWishlistCustomerQueryVariables>
29
29
 
30
30
  export type UseWishlistItemsReturn = UseWishlistItemsGuestReturn | UseWishlistItemsCustomerReturn
31
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/magento-wishlist",
3
- "version": "10.0.0-canary.68",
3
+ "version": "10.0.0-canary.72",
4
4
  "sideEffects": false,
5
5
  "prettier": "@graphcommerce/prettier-config-pwa",
6
6
  "browserslist": [
@@ -13,20 +13,20 @@
13
13
  }
14
14
  },
15
15
  "peerDependencies": {
16
- "@graphcommerce/ecommerce-ui": "^10.0.0-canary.68",
17
- "@graphcommerce/eslint-config-pwa": "^10.0.0-canary.68",
18
- "@graphcommerce/graphql": "^10.0.0-canary.68",
19
- "@graphcommerce/graphql-mesh": "^10.0.0-canary.68",
20
- "@graphcommerce/image": "^10.0.0-canary.68",
21
- "@graphcommerce/magento-cart": "^10.0.0-canary.68",
22
- "@graphcommerce/magento-customer": "^10.0.0-canary.68",
23
- "@graphcommerce/magento-product": "^10.0.0-canary.68",
24
- "@graphcommerce/magento-product-configurable": "^10.0.0-canary.68",
25
- "@graphcommerce/magento-store": "^10.0.0-canary.68",
26
- "@graphcommerce/next-config": "^10.0.0-canary.68",
27
- "@graphcommerce/next-ui": "^10.0.0-canary.68",
28
- "@graphcommerce/prettier-config-pwa": "^10.0.0-canary.68",
29
- "@graphcommerce/typescript-config-pwa": "^10.0.0-canary.68",
16
+ "@graphcommerce/ecommerce-ui": "^10.0.0-canary.72",
17
+ "@graphcommerce/eslint-config-pwa": "^10.0.0-canary.72",
18
+ "@graphcommerce/graphql": "^10.0.0-canary.72",
19
+ "@graphcommerce/graphql-mesh": "^10.0.0-canary.72",
20
+ "@graphcommerce/image": "^10.0.0-canary.72",
21
+ "@graphcommerce/magento-cart": "^10.0.0-canary.72",
22
+ "@graphcommerce/magento-customer": "^10.0.0-canary.72",
23
+ "@graphcommerce/magento-product": "^10.0.0-canary.72",
24
+ "@graphcommerce/magento-product-configurable": "^10.0.0-canary.72",
25
+ "@graphcommerce/magento-store": "^10.0.0-canary.72",
26
+ "@graphcommerce/next-config": "^10.0.0-canary.72",
27
+ "@graphcommerce/next-ui": "^10.0.0-canary.72",
28
+ "@graphcommerce/prettier-config-pwa": "^10.0.0-canary.72",
29
+ "@graphcommerce/typescript-config-pwa": "^10.0.0-canary.72",
30
30
  "@lingui/core": "^5",
31
31
  "@lingui/macro": "^5",
32
32
  "@lingui/react": "^5",