apifm-webapi 3.60.3 → 3.60.5
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 +11 -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
|
|
@@ -693,6 +698,12 @@ module.exports = {
|
|
|
693
698
|
cashLogs: (data) => {
|
|
694
699
|
return request('/user/cashLog', true, 'post', data)
|
|
695
700
|
},
|
|
701
|
+
cashLogsV2: (data) => {
|
|
702
|
+
return request('/user/cashLog/v2', true, 'post', data)
|
|
703
|
+
},
|
|
704
|
+
statisticsComingOut: (data) => {
|
|
705
|
+
return request('/user/statisticsComingOut', true, 'post', data)
|
|
706
|
+
},
|
|
696
707
|
payLogs: (data) => {
|
|
697
708
|
return request('/user/payLogs', true, 'post', data)
|
|
698
709
|
},
|
package/package.json
CHANGED