const { withAccount } = require("../lib/utils") const { getWishlistEntries } = require("../lib/bigcommerceRestAPI.js") ;(function () { withAccount((login) => { const customerId = login.bigCommerceId const wishlist = getWishlistEntries(customerId) throw { status: 200, data: wishlist, } }) })()