diff options
| author | Frank <[email protected]> | 2026-03-11 03:40:10 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2026-03-11 18:09:41 -0400 |
| commit | 9e6c4a01aab4f774a295d6b9d4f2f30d7bac05a0 (patch) | |
| tree | bd8aaac22520ded3f1c3a78257d135c69536eeab | |
| parent | 4a81df190c58c29418d8c32e9402cf71afa61bc8 (diff) | |
| download | opencode-9e6c4a01aab4f774a295d6b9d4f2f30d7bac05a0.tar.gz opencode-9e6c4a01aab4f774a295d6b9d4f2f30d7bac05a0.zip | |
zen: add alipay for adding balance
| -rw-r--r-- | packages/console/core/src/billing.ts | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/packages/console/core/src/billing.ts b/packages/console/core/src/billing.ts index 7107f9398..a1078052c 100644 --- a/packages/console/core/src/billing.ts +++ b/packages/console/core/src/billing.ts @@ -212,13 +212,18 @@ export namespace Billing { invoice_creation: { enabled: true, }, - payment_intent_data: { - setup_future_usage: "on_session", - }, - payment_method_types: ["card"], - payment_method_data: { - allow_redisplay: "always", + payment_method_options: { + alipay: { + setup_future_usage: "off_session", + }, + card: { + setup_future_usage: "on_session", + }, }, + payment_method_types: ["card", "alipay"], + //payment_method_data: { + // allow_redisplay: "always", + //}, tax_id_collection: { enabled: true, }, |
