apifm-webapi 3.64.0 → 3.65.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
|
@@ -1239,6 +1239,9 @@ module.exports = {
|
|
|
1239
1239
|
token, goodsId, number, sku
|
|
1240
1240
|
})
|
|
1241
1241
|
},
|
|
1242
|
+
shippingCarInfoAddItemV2: data => {
|
|
1243
|
+
return request('/shopping-cart/add', true, 'post', data)
|
|
1244
|
+
},
|
|
1242
1245
|
shippingCarInfoModifyNumber: (token, key, number) => {
|
|
1243
1246
|
return request('/shopping-cart/modifyNumber', true, 'post', {
|
|
1244
1247
|
token, key, number
|
package/package.json
CHANGED