Skip to content

Commit

Permalink
fix(mollie): Add missing status type (#2499)
Browse files Browse the repository at this point in the history
  • Loading branch information
casperiv0 committed Nov 3, 2023
1 parent 730a103 commit 071aa9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1671,6 +1671,7 @@ export type MolliePaymentMethod = {
image?: Maybe<MolliePaymentMethodImages>;
maximumAmount?: Maybe<MollieAmount>;
minimumAmount?: Maybe<MollieAmount>;
status?: Maybe<Scalars['String']['output']>;
};

export type MolliePaymentMethodImages = {
Expand Down
1 change: 1 addition & 0 deletions packages/payments-plugin/src/mollie/mollie-shop-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export const shopSchema = gql`
minimumAmount: MollieAmount
maximumAmount: MollieAmount
image: MolliePaymentMethodImages
status: String
}
type MolliePaymentIntent {
url: String!
Expand Down

0 comments on commit 071aa9d

Please sign in to comment.