File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -70,8 +70,11 @@ This server synchronizes your Stripe account to a Postgres database. It can be a
70
70
- [x] ` invoice.payment_failed ` 🟢
71
71
- [x] ` invoice.payment_succeeded ` 🟢
72
72
- [x] ` invoice.sent ` 🟢
73
- - [x] ` invoice.upcoming ` 🟢
73
+ - [x] ` invoice.upcoming ` 🔴 - Event has no id and cannot be processed
74
74
- [x] ` invoice.updated ` 🟢
75
+ - [x] ` invoice.overdue ` 🟢
76
+ - [x] ` invoice.overpaid ` 🟢
77
+ - [x] ` invoice.will_be_due ` 🟢
75
78
- [x] ` invoice.voided ` 🟢
76
79
- [ ] ` issuing_authorization.request `
77
80
- [ ] ` issuing_card.created `
Original file line number Diff line number Diff line change @@ -82,7 +82,9 @@ export default async function routes(fastify: FastifyInstance) {
82
82
case 'invoice.payment_action_required' :
83
83
case 'invoice.payment_failed' :
84
84
case 'invoice.payment_succeeded' :
85
- case 'invoice.upcoming' :
85
+ case 'invoice.overdue' :
86
+ case 'invoice.overpaid' :
87
+ case 'invoice.will_be_due' :
86
88
case 'invoice.sent' :
87
89
case 'invoice.voided' :
88
90
case 'invoice.marked_uncollectible' :
You can’t perform that action at this time.
0 commit comments