apifm-webapi 3.60.3 → 3.60.4
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 +5 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -577,6 +577,11 @@ module.exports = {
|
|
|
577
577
|
token
|
|
578
578
|
})
|
|
579
579
|
},
|
|
580
|
+
userDetailSpreadUser: (token, uid) => {
|
|
581
|
+
return request('/user/detail/spreadUser', true, 'get', {
|
|
582
|
+
token, uid
|
|
583
|
+
})
|
|
584
|
+
},
|
|
580
585
|
userWxinfo: (token) => {
|
|
581
586
|
return request('/user/wxinfo', true, 'get', {
|
|
582
587
|
token
|
package/package.json
CHANGED