apifm-webapi 1.44.0 → 1.45.0
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 +3 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -351,6 +351,9 @@ module.exports = {
|
|
|
351
351
|
goodsFavDeleteV2: data => {
|
|
352
352
|
return request('/shop/goods/fav/delete', true, 'post', data)
|
|
353
353
|
},
|
|
354
|
+
goodsSeckillGrab: (goodsId, seconds) => {
|
|
355
|
+
return request('/goods/seckill/grab', false, 'post', { goodsId, seconds })
|
|
356
|
+
},
|
|
354
357
|
coupons: (data) => {
|
|
355
358
|
return request('/discounts/coupons', true, 'get', data)
|
|
356
359
|
},
|