From 83dec784481a86c593b5df81c409bf479a2d30bc Mon Sep 17 00:00:00 2001 From: Brian Love Date: Thu, 21 May 2026 11:26:00 -0700 Subject: [PATCH] chore(stripe): sync test-mode product + price IDs Generated by scripts/stripe/sync-products.ts against test mode (sk_test_). Three buyable tiers: - indie: $149/year - developer_seat: $299/dev/year - app_deployment: $1,499/app/year Live mode will be a separate sync run with sk_live_ before flipping the website env var. Co-Authored-By: Claude Opus 4.7 (1M context) --- pricing/tiers.generated.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pricing/tiers.generated.ts b/pricing/tiers.generated.ts index bb7faa2cd..d278d2aad 100644 --- a/pricing/tiers.generated.ts +++ b/pricing/tiers.generated.ts @@ -1,9 +1,9 @@ // SPDX-License-Identifier: MIT // Generated by scripts/stripe/sync-products.ts. Do not edit by hand. -// Each entry maps a tier slug → Stripe price ID. Empty until the sync -// script has been run against a Stripe account. import type { TierSlug } from './tiers.config'; export const STRIPE_PRICE_IDS: Partial, string>> = { - // Populated by `pnpm tsx scripts/stripe/sync-products.ts`. + app_deployment: "price_1TZbHyGYRsLErhxb57O1CSEG", + developer_seat: "price_1TZbHxGYRsLErhxb2u82hupX", + indie: "price_1TZbHxGYRsLErhxbQfo00q9Q", };