apifm-webapi 25.11.10 → 25.11.26
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
|
@@ -874,6 +874,9 @@ module.exports = {
|
|
|
874
874
|
statisticsComingOut: (data) => {
|
|
875
875
|
return request('/user/statisticsComingOut', true, 'post', data)
|
|
876
876
|
},
|
|
877
|
+
statisticsComingOutV2: (data) => {
|
|
878
|
+
return request(COMMON_BASE_URL + subDomain + '/user/statisticsComingOut', false, 'post', data)
|
|
879
|
+
},
|
|
877
880
|
payLogs: (data) => {
|
|
878
881
|
return request('/user/payLogs', true, 'post', data)
|
|
879
882
|
},
|
package/package.json
CHANGED