From 071aa9db0ab4d02f6e9f3cf5c502d40d2613e0ca Mon Sep 17 00:00:00 2001 From: Casper Iversen <53900565+casperiv0@users.noreply.github.com> Date: Fri, 3 Nov 2023 11:39:41 +0100 Subject: [PATCH] fix(mollie): Add missing `status` type (#2499) --- .../payments-plugin/src/mollie/graphql/generated-shop-types.ts | 1 + packages/payments-plugin/src/mollie/mollie-shop-schema.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/payments-plugin/src/mollie/graphql/generated-shop-types.ts b/packages/payments-plugin/src/mollie/graphql/generated-shop-types.ts index 066674d972..e9514f334d 100644 --- a/packages/payments-plugin/src/mollie/graphql/generated-shop-types.ts +++ b/packages/payments-plugin/src/mollie/graphql/generated-shop-types.ts @@ -1671,6 +1671,7 @@ export type MolliePaymentMethod = { image?: Maybe; maximumAmount?: Maybe; minimumAmount?: Maybe; + status?: Maybe; }; export type MolliePaymentMethodImages = { diff --git a/packages/payments-plugin/src/mollie/mollie-shop-schema.ts b/packages/payments-plugin/src/mollie/mollie-shop-schema.ts index 62cdc68aa4..0480b4b456 100644 --- a/packages/payments-plugin/src/mollie/mollie-shop-schema.ts +++ b/packages/payments-plugin/src/mollie/mollie-shop-schema.ts @@ -21,6 +21,7 @@ export const shopSchema = gql` minimumAmount: MollieAmount maximumAmount: MollieAmount image: MolliePaymentMethodImages + status: String } type MolliePaymentIntent { url: String!