apifm-webapi 3.44.0 → 3.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 +1 -1
package/index.js
CHANGED
|
@@ -741,6 +741,9 @@ module.exports = {
|
|
|
741
741
|
depositBackApply: (token, id) => {
|
|
742
742
|
return request('/deposit/back/apply', true, 'post', { token, id })
|
|
743
743
|
},
|
|
744
|
+
fetchShopsCities: () => {
|
|
745
|
+
return request('/shop/subshop/cities', true, 'get')
|
|
746
|
+
},
|
|
744
747
|
fetchShops: (data) => {
|
|
745
748
|
return request('/shop/subshop/list', true, 'post', data)
|
|
746
749
|
},
|