@graphcommerce/mollie-magento-payment 3.2.1 → 3.2.2

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,25 @@
1
1
  # Change Log
2
2
 
3
+ ## 3.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1399](https://github.com/graphcommerce-org/graphcommerce/pull/1399) [`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542) Thanks [@paales](https://github.com/paales)! - Now using [@graphql-yoga](https://github.com/dotansimha/graphql-yoga) for GraphQL which has full support for [envelop](https://www.envelop.dev/) plugins.
8
+
9
+ * [#1399](https://github.com/graphcommerce-org/graphcommerce/pull/1399) [`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542) Thanks [@paales](https://github.com/paales)! - Added a new @graphcommerce/cli package to generate the mesh so it can be generated _inside_ the @graphcommerce/graphql-mesh package to allow for better future extensibility.
10
+
11
+ - [#1399](https://github.com/graphcommerce-org/graphcommerce/pull/1399) [`da0ae7d02`](https://github.com/graphcommerce-org/graphcommerce/commit/da0ae7d0236e4908ba0bf0fa16656be516e841d4) Thanks [@paales](https://github.com/paales)! - Updated dependencies
12
+
13
+ - Updated dependencies [[`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542), [`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542), [`8652662cf`](https://github.com/graphcommerce-org/graphcommerce/commit/8652662cf9a8711d1c685d4f5cd788870a8242e2), [`da0ae7d02`](https://github.com/graphcommerce-org/graphcommerce/commit/da0ae7d0236e4908ba0bf0fa16656be516e841d4)]:
14
+ - @graphcommerce/graphql@3.1.0
15
+ - @graphcommerce/graphql-mesh@4.1.0
16
+ - @graphcommerce/magento-cart@4.2.6
17
+ - @graphcommerce/magento-cart-payment-method@3.1.2
18
+ - @graphcommerce/magento-store@4.1.7
19
+ - @graphcommerce/next-ui@4.6.1
20
+ - @graphcommerce/react-hook-form@3.1.1
21
+ - @graphcommerce/image@3.1.5
22
+
3
23
  ## 3.2.1
4
24
 
5
25
  ### Patch Changes
@@ -1,15 +1,13 @@
1
1
  import { useFormGqlMutationCart } from '@graphcommerce/magento-cart'
2
2
  import { PaymentOptionsProps } from '@graphcommerce/magento-cart-payment-method'
3
- import { extendableComponent, FormRow, InputCheckmark } from '@graphcommerce/next-ui'
3
+ import { FormRow, InputCheckmark } from '@graphcommerce/next-ui'
4
4
  import { useFormCompose, useFormPersist, useFormValidFields } from '@graphcommerce/react-hook-form'
5
5
  import { Trans } from '@lingui/macro'
6
- import { Box, TextField, Typography } from '@mui/material'
6
+ import { TextField, Typography } from '@mui/material'
7
7
  import { SetMolliePaymentMethodIssuerOnCartDocument } from './SetMolliePaymentMethodIssuerOnCart.gql'
8
8
 
9
9
  type MollieIssuerOptionsProps = PaymentOptionsProps & { label: string; children?: React.ReactNode }
10
10
 
11
- const compName = 'MollieIssuerOptions' as const
12
-
13
11
  export function MollieIssuerOptions(props: MollieIssuerOptionsProps) {
14
12
  const { mollie_available_issuers = [], children } = props
15
13
  const { code, step, Container, label, title = '' } = props
@@ -1,4 +1,5 @@
1
- import { PaymentStatusEnum, useMutation } from '@graphcommerce/graphql'
1
+ import { useMutation } from '@graphcommerce/graphql'
2
+ import { PaymentStatusEnum } from '@graphcommerce/graphql-mesh'
2
3
  import { ApolloCartErrorFullPage, useClearCurrentCartId } from '@graphcommerce/magento-cart'
3
4
  import {
4
5
  PaymentHandlerProps,
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/mollie-magento-payment",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "3.2.1",
5
+ "version": "3.2.2",
6
6
  "sideEffects": false,
7
7
  "engines": {
8
8
  "node": "14.x"
@@ -15,23 +15,24 @@
15
15
  }
16
16
  },
17
17
  "devDependencies": {
18
- "@graphcommerce/eslint-config-pwa": "^4.1.4",
19
- "@graphcommerce/magento-cart-shipping-address": "3.0.8",
20
- "@graphcommerce/magento-product": "4.1.6",
21
- "@graphcommerce/magento-product-configurable": "4.0.10",
22
- "@graphcommerce/prettier-config-pwa": "^4.0.5",
18
+ "@graphcommerce/eslint-config-pwa": "^4.1.5",
19
+ "@graphcommerce/magento-cart-shipping-address": "3.0.9",
20
+ "@graphcommerce/magento-product": "4.1.7",
21
+ "@graphcommerce/magento-product-configurable": "4.0.11",
22
+ "@graphcommerce/prettier-config-pwa": "^4.0.6",
23
23
  "@graphcommerce/typescript-config-pwa": "^4.0.2",
24
- "@playwright/test": "^1.20.1",
25
- "type-fest": "2.12.1"
24
+ "@playwright/test": "^1.21.1",
25
+ "type-fest": "^2.12.2"
26
26
  },
27
27
  "dependencies": {
28
- "@graphcommerce/graphql": "3.0.7",
29
- "@graphcommerce/image": "3.1.4",
30
- "@graphcommerce/magento-cart": "4.2.5",
31
- "@graphcommerce/magento-cart-payment-method": "3.1.1",
32
- "@graphcommerce/magento-store": "4.1.6",
33
- "@graphcommerce/next-ui": "4.6.0",
34
- "@graphcommerce/react-hook-form": "3.1.0"
28
+ "@graphcommerce/graphql": "3.1.0",
29
+ "@graphcommerce/graphql-mesh": "4.1.0",
30
+ "@graphcommerce/image": "3.1.5",
31
+ "@graphcommerce/magento-cart": "4.2.6",
32
+ "@graphcommerce/magento-cart-payment-method": "3.1.2",
33
+ "@graphcommerce/magento-store": "4.1.7",
34
+ "@graphcommerce/next-ui": "4.6.1",
35
+ "@graphcommerce/react-hook-form": "3.1.1"
35
36
  },
36
37
  "peerDependencies": {
37
38
  "@lingui/macro": "^3.13.2",