Skip to content

Commit

Permalink
fix(payments-plugin): Add compatibility metadata to payment plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Jun 19, 2023
1 parent ceb0baf commit 2dbfa2b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/payments-plugin/src/braintree/braintree.plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ import { BraintreePluginOptions } from './types';
`,
resolvers: [BraintreeResolver],
},
compatibility: '^2.0.0',
})
export class BraintreePlugin {
static options: BraintreePluginOptions = {};
Expand Down
1 change: 1 addition & 0 deletions packages/payments-plugin/src/mollie/mollie.plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ export interface MolliePluginOptions {
schema: shopSchema,
resolvers: [MollieResolver],
},
compatibility: '^2.0.0',
})
export class MolliePlugin {
static options: MolliePluginOptions;
Expand Down
1 change: 1 addition & 0 deletions packages/payments-plugin/src/stripe/stripe.plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ import { StripePluginOptions } from './types';
`,
resolvers: [StripeResolver],
},
compatibility: '^2.0.0',
})
export class StripePlugin {
static options: StripePluginOptions;
Expand Down

0 comments on commit 2dbfa2b

Please sign in to comment.