stripe-sync-engine
stripe-sync-engine copied to clipboard
Sync your Stripe account to you Postgres database.
It would be nice to be able to load existing Stripe data into a database. From a high level: 1. Bulk fetch all Stripe data for a single entity (e.g....
# Feature request As per the stripe docs [Connect webhooks](https://stripe.com/docs/connect/webhooks#connect-webhooks) the recommended way to use connect webhooks is by creating two webhook endpoints. First one `/webhook` for own account events...
I would like the `stripe` schema to be created automatically as it is said in docs. Right now it does not work this way, but it works properly if I...
# Chore ## Describe the chore [This PR](https://github.com/supabase/stripe-sync-engine/pull/35/files) introduces an `set_updated_at` function, but it wasn't namespaced so it gets installed on the `public` schema. We should fix this so that...
# Feature request Currently the sync engine requires a Fastify server component. It would be great if there was a Cloudflare Worker implementation to make it easy to deploy (as...
# Bug report ## Describe the bug After setting up a stripe account, if the webhooks are added in "test mode", webhooks seems like missing the field `next_invoice_sequence` which creates...
Before anything, I just want to say that this project is gold. It's basically an open-source alternative to https://syncinc.so/. When i read in the README: >Note: this is experimental. There...
## What kind of change does this PR introduce? feature ## What is the current behavior? Before these changes, the webhook was created manually which is error-prone and time-consuming. #4...
# Chore ## Describe the chore Create a function to automatically configure Stripe webhooks using the configured Stripe secret(s). (This may not be necessary if there's only one or two...
We need to ensure that the pooling is correctly configured so that there is a single, persistent connection open on the database. https://github.com/supabase/stripe-sync-engine/blob/main/src/utils/PostgresConnection.ts