apifm-webapi 25.10.7 → 25.10.11
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
|
@@ -828,6 +828,9 @@ module.exports = {
|
|
|
828
828
|
cashLogsV2: (data) => {
|
|
829
829
|
return request('/user/cashLog/v2', true, 'post', data)
|
|
830
830
|
},
|
|
831
|
+
cashLogsV3: (data) => {
|
|
832
|
+
return request('https://common.apifm.com/' + subDomain + '/user/cashLog/v2', false, 'post', data)
|
|
833
|
+
},
|
|
831
834
|
statisticsComingOut: (data) => {
|
|
832
835
|
return request('/user/statisticsComingOut', true, 'post', data)
|
|
833
836
|
},
|
package/package.json
CHANGED