Browse Source

fix(mollie): Add missing `status` type (#2499)

Casper Iversen 2 years ago
parent
commit
071aa9db0a

+ 1 - 0
packages/payments-plugin/src/mollie/graphql/generated-shop-types.ts

@@ -1671,6 +1671,7 @@ export type MolliePaymentMethod = {
   image?: Maybe<MolliePaymentMethodImages>;
   maximumAmount?: Maybe<MollieAmount>;
   minimumAmount?: Maybe<MollieAmount>;
+  status?: Maybe<Scalars['String']['output']>;
 };
 
 export type MolliePaymentMethodImages = {

+ 1 - 0
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!