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.
Files changed (2) hide show
  1. package/index.js +6 -0
  2. 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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "apifm-webapi",
3
- "version": "3.60.4",
4
- "description": "userDetailSpreadUser",
3
+ "version": "3.60.5",
4
+ "description": "cashLogsV2",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"