Offer
Import checkout previously initialized, and manipulate offers. As offers is a Map, it generates a unique id to easy manipulate offers, so each offer has uniqueId attribute.
#
Add offerimport { checkout } from './lib'
checkout.offers = [ { id: 23, promotionId: 3, ...rest, },]// orcheckout.addOffer({ id: 23, promotionId: 3, ...rest,})
#
Update offercheckout.updateOffer('uniqueId', { promotionId: 33,})
#
Remove offercheckout.removeOffer('uniqueId')
#
Add product to offercheckout.addProduct({ uniqueId: 'offer uniqueId', { id: 232, dtype: 'fiber', ...rest }})
#
Update product to offercheckout.updateProduct(['uniqueId offer', 'uniqueId product'], { id: 22, dtype: 'insurance',})
#
Remove product to offercheckout.removeProduct(['uniqueId offer', 'uniqueId product'])