apifm-webapi 3.60.4 → 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 +6 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -698,6 +698,12 @@ module.exports = {
|
|
|
698
698
|
cashLogs: (data) => {
|
|
699
699
|
return request('/user/cashLog', true, 'post', data)
|
|
700
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
|
+
},
|
|
701
707
|
payLogs: (data) => {
|
|
702
708
|
return request('/user/payLogs', true, 'post', data)
|
|
703
709
|
},
|
package/package.json
CHANGED