@graphcommerce/magento-cart-checkout 3.0.62 → 3.0.64

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,34 @@
1
1
  # Change Log
2
2
 
3
+ ## 3.0.64
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1675](https://github.com/graphcommerce-org/graphcommerce/pull/1675) [`1b1504c9b`](https://github.com/graphcommerce-org/graphcommerce/commit/1b1504c9b0e51f2787bce91e1ff1940f540411d6) Thanks [@paales](https://github.com/paales)! - Added crosssel functionality
8
+
9
+ - [#1655](https://github.com/graphcommerce-org/graphcommerce/pull/1655) [`3dde492ad`](https://github.com/graphcommerce-org/graphcommerce/commit/3dde492ad3a49d96481eeb7453fb305d0017b1a5) Thanks [@FrankHarland](https://github.com/FrankHarland)! - Added Google Analytics support.
10
+
11
+ - Updated dependencies [[`9e630670f`](https://github.com/graphcommerce-org/graphcommerce/commit/9e630670ff6c952ab7b938d890b5509804985cf3), [`cf3518499`](https://github.com/graphcommerce-org/graphcommerce/commit/cf351849999ad6fe73ce2bb258098a7dd301d517), [`2e9fa5984`](https://github.com/graphcommerce-org/graphcommerce/commit/2e9fa5984a07ff14fc1b3a4f62189a26e8e3ecdd), [`adf13069a`](https://github.com/graphcommerce-org/graphcommerce/commit/adf13069af6460c960276b402237371c12fc6dec), [`1b1504c9b`](https://github.com/graphcommerce-org/graphcommerce/commit/1b1504c9b0e51f2787bce91e1ff1940f540411d6), [`8a34f8081`](https://github.com/graphcommerce-org/graphcommerce/commit/8a34f808186274a6fe1d4f309472f1a9c6d00efd), [`3dde492ad`](https://github.com/graphcommerce-org/graphcommerce/commit/3dde492ad3a49d96481eeb7453fb305d0017b1a5)]:
12
+ - @graphcommerce/next-ui@4.28.1
13
+ - @graphcommerce/graphql@3.5.0
14
+ - @graphcommerce/magento-cart@4.9.0
15
+ - @graphcommerce/magento-cart-items@3.1.16
16
+ - @graphcommerce/magento-customer@4.12.0
17
+ - @graphcommerce/magento-cart-coupon@3.2.14
18
+ - @graphcommerce/magento-store@4.3.2
19
+ - @graphcommerce/image@3.1.10
20
+
21
+ ## 3.0.63
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies [[`1f2e14ba8`](https://github.com/graphcommerce-org/graphcommerce/commit/1f2e14ba8b674b87257a123e8cb215157890eb22)]:
26
+ - @graphcommerce/react-hook-form@3.3.5
27
+ - @graphcommerce/magento-cart@4.8.7
28
+ - @graphcommerce/magento-cart-coupon@3.2.13
29
+ - @graphcommerce/magento-cart-items@3.1.15
30
+ - @graphcommerce/magento-customer@4.11.7
31
+
3
32
  ## 3.0.62
4
33
 
5
34
  ### Patch Changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-cart-checkout",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "3.0.62",
5
+ "version": "3.0.64",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -18,15 +18,15 @@
18
18
  "@playwright/test": "^1.21.1"
19
19
  },
20
20
  "dependencies": {
21
- "@graphcommerce/graphql": "3.4.8",
22
- "@graphcommerce/image": "3.1.9",
23
- "@graphcommerce/magento-cart": "4.8.6",
24
- "@graphcommerce/magento-cart-coupon": "3.2.12",
25
- "@graphcommerce/magento-cart-items": "3.1.14",
26
- "@graphcommerce/magento-customer": "4.11.6",
27
- "@graphcommerce/magento-store": "4.3.1",
28
- "@graphcommerce/next-ui": "4.28.0",
29
- "@graphcommerce/react-hook-form": "3.3.4"
21
+ "@graphcommerce/graphql": "3.5.0",
22
+ "@graphcommerce/image": "3.1.10",
23
+ "@graphcommerce/magento-cart": "4.9.0",
24
+ "@graphcommerce/magento-cart-coupon": "3.2.14",
25
+ "@graphcommerce/magento-cart-items": "3.1.16",
26
+ "@graphcommerce/magento-customer": "4.12.0",
27
+ "@graphcommerce/magento-store": "4.3.2",
28
+ "@graphcommerce/next-ui": "4.28.1",
29
+ "@graphcommerce/react-hook-form": "3.3.5"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "@lingui/react": "^3.13.2",
@@ -6,5 +6,6 @@ query BillingPage($cartId: String!) {
6
6
  ...BillingAddress
7
7
  ...ShippingAddress
8
8
  ...Coupon
9
+ ...PaymentMethodContext
9
10
  }
10
11
  }
@@ -1,13 +1,5 @@
1
1
  query CartPage($cartId: String!) {
2
2
  cart(cart_id: $cartId) {
3
- id
4
- __typename
5
- email
6
- total_quantity
7
- ...CartStartCheckout
8
- ...Coupon
9
- ...CartItems
10
- ...CartTotals
11
- ...CartBillingAddress
3
+ ...CartPageFragment
12
4
  }
13
5
  }
@@ -0,0 +1,10 @@
1
+ fragment CartPageFragment on Cart @injectable {
2
+ id
3
+ __typename
4
+ email
5
+ total_quantity
6
+ ...CartStartCheckout
7
+ ...Coupon
8
+ ...CartItems
9
+ ...CartTotals
10
+ }
@@ -3,7 +3,6 @@ query ShippingPage($cartId: String!) {
3
3
  __typename
4
4
  id
5
5
  email
6
- ...BillingAddress
7
- ...ShippingAddress
6
+ ...ShippingPageFragment
8
7
  }
9
8
  }
@@ -0,0 +1,6 @@
1
+ fragment ShippingPageFragment on Cart @injectable {
2
+ ...BillingAddress
3
+ ...ShippingAddress
4
+ ...CartSummary
5
+ ...CartStartCheckout
6
+ }