Merge pull request #15 from xtr-dev/claude/issue-14-20250918-1914

fix: export mollieProvider and stripeProvider from main package
This commit is contained in:
Bas
2025-09-18 21:27:27 +02:00
committed by GitHub

View File

@@ -1,4 +1,8 @@
export { billingPlugin } from './plugin/index.js' export { billingPlugin } from './plugin/index.js'
export { mollieProvider, stripeProvider } from './providers/index.js'
export type { BillingPluginConfig, CustomerInfoExtractor } from './plugin/config.js' export type { BillingPluginConfig, CustomerInfoExtractor } from './plugin/config.js'
export type { Invoice, Payment, Refund } from './plugin/types/index.js' export type { Invoice, Payment, Refund } from './plugin/types/index.js'
export type { PaymentProvider, ProviderData } from './providers/types.js'
export type { MollieProviderConfig } from './providers/mollie.js'
export type { StripeProviderConfig } from './providers/stripe.js'