apifm-webapi 25.12.1 → 25.12.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +11 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -472,6 +472,17 @@ module.exports = {
|
|
|
472
472
|
goodsReputation: (data) => {
|
|
473
473
|
return request('/shop/goods/reputation', true, 'post', data)
|
|
474
474
|
},
|
|
475
|
+
goodsReputationV2: (data) => {
|
|
476
|
+
return request('/shop/goods/reputation/v2', true, 'post', data)
|
|
477
|
+
},
|
|
478
|
+
myBuyGoodsHisV2: (data) => {
|
|
479
|
+
return request(COMMON_BASE_URL + subDomain + '/shop/goods/his/list', false, 'post', data)
|
|
480
|
+
},
|
|
481
|
+
myBuyGoodsHisDeleteV2: (token, id = '', goodsId = '') => {
|
|
482
|
+
return request(COMMON_BASE_URL + subDomain + '/shop/goods/his/delete', false, 'post', {
|
|
483
|
+
token, id, goodsId
|
|
484
|
+
})
|
|
485
|
+
},
|
|
475
486
|
goodsFavList: data => {
|
|
476
487
|
return request('/shop/goods/fav/list', true, 'post', data)
|
|
477
488
|
},
|