Initial commit

This commit is contained in:
2025-10-02 08:54:03 +02:00
commit ea54638227
1642 changed files with 53677 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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,
}
})
})()