2
0
Files
bot/packages/schemas/features/blocks/inputs/payment/constants.ts
Baptiste Arnaud 35300eaf34 ♻️ Introduce typebot v6 with events (#1013)
Closes #885
2023-11-08 15:34:16 +01:00

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']