(body: Donation)
| 282 | // TODO: Verify if the body has and needs this Donation type. The api seems to |
| 283 | // just need the body to exist, but doesn't seem to use the properties. |
| 284 | export function addDonation(body: Donation): Promise<ResponseWithData<void>> { |
| 285 | return post('/donate/add-donation', body); |
| 286 | } |
| 287 | |
| 288 | export function updateStripeCard() { |
| 289 | return put('/donate/update-stripe-card', {}); |