apifm-webapi 3.47.0 → 3.48.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.
Files changed (2) hide show
  1. package/index.js +5 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -312,6 +312,11 @@ module.exports = {
312
312
  goodsId, priceId
313
313
  })
314
314
  },
315
+ goodsLimitationsV2: (goodsId, propertyChildIds = '') => {
316
+ return request('/shop/goods/limitation', true, 'get', {
317
+ goodsId, propertyChildIds
318
+ })
319
+ },
315
320
  goodsPrice: (goodsId, propertyChildIds) => {
316
321
  return request('/shop/goods/price', true, 'post', {
317
322
  goodsId, propertyChildIds
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apifm-webapi",
3
- "version": "3.47.0",
3
+ "version": "3.48.0",
4
4
  "description": "增加SDK方法",
5
5
  "main": "index.js",
6
6
  "scripts": {