// Update customer info
await tagada.checkout.updateCustomer(session.id, {
email: 'jane@example.com',
firstName: 'Jane',
});
// Update address
await tagada.checkout.updateAddress(session.id, {
shippingAddress: {
line1: '123 Main St',
city: 'San Francisco',
state: 'CA',
postalCode: '94102',
country: 'US',
},
});