@graphcommerce/magento-wishlist 1.0.4 → 1.0.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,11 @@
1
1
  # @graphcommerce/magento-wishlist
2
2
 
3
+ ## 1.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1454](https://github.com/graphcommerce-org/graphcommerce/pull/1454) [`d38b58bb3`](https://github.com/graphcommerce-org/graphcommerce/commit/d38b58bb3499a8055e1a60ec416064811e7412ed) Thanks [@paales](https://github.com/paales)! - Make sure to keep casing when generating graphql documents to match graphql-mesh's casing.
8
+
3
9
  ## 1.0.4
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/magento-wishlist",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "sideEffects": false,
5
5
  "prettier": "@graphcommerce/prettier-config-pwa",
6
6
  "browserslist": [
@@ -1,4 +1,4 @@
1
- mutation addProductToWishlist($input: [WishlistItemInput!]!) {
1
+ mutation AddProductToWishlist($input: [WishlistItemInput!]!) {
2
2
  addProductsToWishlist(wishlistId: 0, wishlistItems: $input) {
3
3
  wishlist {
4
4
  ...WishlistSummaryFragment
@@ -1,4 +1,4 @@
1
- mutation removeProductFromWishlist($wishlistItemId: ID!) {
1
+ mutation RemoveProductFromWishlist($wishlistItemId: ID!) {
2
2
  removeProductsFromWishlist(wishlistId: 0, wishlistItemsIds: [$wishlistItemId]) {
3
3
  wishlist {
4
4
  ...WishlistSummaryFragment