Hi there,
we’re currently migrating to the Stripe Sync Engine and now rely on a new subscription view (over the stripe schema sync tables) as the single source of truth for subscription status. This works great in production, but in stripe test mode checkouts the sync tables never populate, so our subscription view returns empty even after a successful test checkout.
As the Stripe Sync Engine has the Webhook signing key hardcoded to production live keys and you can not edit the edge functions, I'd need to create a second syncing system again only to handle Sandbox / Stripe Test Mode checkouts. Kind of defets the purpose tbh.
Question: What’s the recommended way to support Stripe test mode in this setup?
Can the sync engine ingest test events in parallel with live?
Is there an official pattern for a test-only override source for subscription state?
We want to keep live on the sync engine, but still test checkouts locally without reintroducing legacy tables or duplicating logic.
Thx!