apifm-webapi 3.48.0 → 3.49.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 +9 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -767,6 +767,15 @@ module.exports = {
767
767
  depositBackApply: (token, id) => {
768
768
  return request('/deposit/back/apply', true, 'post', { token, id })
769
769
  },
770
+ shopAreaCities: () => {
771
+ return request('/shopArea/cities', true, 'get')
772
+ },
773
+ shopAreaList: (data) => {
774
+ return request('/shopArea/list', true, 'post', data)
775
+ },
776
+ shopAreaDetail: (id) => {
777
+ return request('/shopArea/detail', true, 'get', { id })
778
+ },
770
779
  fetchShopsCities: () => {
771
780
  return request('/shop/subshop/cities', true, 'get')
772
781
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apifm-webapi",
3
- "version": "3.48.0",
3
+ "version": "3.49.0",
4
4
  "description": "增加SDK方法",
5
5
  "main": "index.js",
6
6
  "scripts": {