File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -58,12 +58,15 @@ This server synchronizes your Stripe account to a Postgres database. It can be a
58
58
- [x] ` invoice.deleted ` 🟢
59
59
- [x] ` invoice.finalized ` 🟢
60
60
- [x] ` invoice.finalization_failed ` 🟢
61
+ - [x] ` invoice.marked_uncollectible ` 🟢
61
62
- [x] ` invoice.paid ` 🟢
62
63
- [x] ` invoice.payment_action_required ` 🟢
63
64
- [x] ` invoice.payment_failed ` 🟢
64
65
- [x] ` invoice.payment_succeeded ` 🟢
66
+ - [x] ` invoice.sent ` 🟢
65
67
- [x] ` invoice.upcoming ` 🟢
66
68
- [x] ` invoice.updated ` 🟢
69
+ - [x] ` invoice.voided ` 🟢
67
70
- [ ] ` issuing_authorization.request `
68
71
- [ ] ` issuing_card.created `
69
72
- [ ] ` issuing_cardholder.created `
Original file line number Diff line number Diff line change @@ -71,6 +71,9 @@ export default async function routes(fastify: FastifyInstance) {
71
71
case 'invoice.payment_failed' :
72
72
case 'invoice.payment_succeeded' :
73
73
case 'invoice.upcoming' :
74
+ case 'invoice.sent' :
75
+ case 'invoice.voided' :
76
+ case 'invoice.marked_uncollectible' :
74
77
case 'invoice.updated' : {
75
78
const invoice = event . data . object as Stripe . Invoice
76
79
await upsertInvoices ( [ invoice ] )
You can’t perform that action at this time.
0 commit comments