diff options
| author | Frank <[email protected]> | 2025-09-26 17:10:42 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-09-26 17:10:45 -0400 |
| commit | 1ba0155943e61b50ca9ea978837baf585f842ddf (patch) | |
| tree | 14518e76f02b52ffbc6560e53af82ca2eab83f98 | |
| parent | 3d332a06b55f0593ce7b5986d64774fb02079b25 (diff) | |
| download | opencode-1ba0155943e61b50ca9ea978837baf585f842ddf.tar.gz opencode-1ba0155943e61b50ca9ea978837baf585f842ddf.zip | |
zen: accept tax id
| -rw-r--r-- | packages/console/core/src/billing.ts | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/packages/console/core/src/billing.ts b/packages/console/core/src/billing.ts index 4267d3b94..42d9ed523 100644 --- a/packages/console/core/src/billing.ts +++ b/packages/console/core/src/billing.ts @@ -206,9 +206,6 @@ export namespace Billing { customer_email: user.email, customer_creation: "always", }), - metadata: { - workspaceID: Actor.workspace(), - }, currency: "usd", invoice_creation: { enabled: true, @@ -220,6 +217,16 @@ export namespace Billing { payment_method_data: { allow_redisplay: "always", }, + customer_update: { + name: "auto", + address: "auto", + }, + tax_id_collection: { + enabled: true, + }, + metadata: { + workspaceID: Actor.workspace(), + }, success_url: successUrl, cancel_url: cancelUrl, }) |
