apifm-webapi 25.4.16 → 25.4.17
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
|
@@ -1175,6 +1175,9 @@ module.exports = {
|
|
|
1175
1175
|
modifyUserInfo: (data) => {
|
|
1176
1176
|
return request('/user/modify', true, 'post', data)
|
|
1177
1177
|
},
|
|
1178
|
+
modifyUserInfoV2: (data) => {
|
|
1179
|
+
return request('https://common.apifm.com/' + subDomain + '/user/modify', false, 'post', data)
|
|
1180
|
+
},
|
|
1178
1181
|
bindSaleman: data => {
|
|
1179
1182
|
return request('/user/bindSaleman', true, 'post', data)
|
|
1180
1183
|
},
|
package/package.json
CHANGED