apifm-webapi 3.60.7 → 3.64.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 +6 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -360,6 +360,9 @@ module.exports = {
|
|
|
360
360
|
id, token
|
|
361
361
|
})
|
|
362
362
|
},
|
|
363
|
+
goodsDetailV2: data => {
|
|
364
|
+
return request('/shop/goods/detail', true, 'get', data)
|
|
365
|
+
},
|
|
363
366
|
goodsLimitations: (goodsId, priceId = '') => {
|
|
364
367
|
return request('/shop/goods/limitation', true, 'get', {
|
|
365
368
|
goodsId, priceId
|
|
@@ -978,6 +981,9 @@ module.exports = {
|
|
|
978
981
|
modifyUserPassword: (token, pwdOld, pwdNew) => {
|
|
979
982
|
return request('/user/modify/password', true, 'post', { token, pwdOld, pwdNew })
|
|
980
983
|
},
|
|
984
|
+
modifyUserPasswordByUserName: (data) => {
|
|
985
|
+
return request('/user/username/modifyPassword', true, 'post', data)
|
|
986
|
+
},
|
|
981
987
|
uniqueId: (type = '') => {
|
|
982
988
|
return request('/uniqueId/get', true, 'get', { type })
|
|
983
989
|
},
|
package/package.json
CHANGED