13 lines
359 B
TypeScript
13 lines
359 B
TypeScript
import { PaymentInputBlock } from './schema'
|
|
|
|
export enum PaymentProvider {
|
|
STRIPE = 'Stripe',
|
|
}
|
|
|
|
export const defaultPaymentInputOptions = {
|
|
provider: PaymentProvider.STRIPE,
|
|
labels: { button: 'Pay', success: 'Success' },
|
|
retryMessageContent: 'Payment failed. Please, try again.',
|
|
currency: 'USD',
|
|
} as const satisfies PaymentInputBlock['options']
|