apifm-webapi 25.7.2 → 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 +14 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -669,6 +669,11 @@ module.exports = {
|
|
|
669
669
|
token
|
|
670
670
|
})
|
|
671
671
|
},
|
|
672
|
+
userAmountV2: (token) => {
|
|
673
|
+
return request('https://common.apifm.com/' + subDomain + '/user/amount', false, 'get', {
|
|
674
|
+
token
|
|
675
|
+
})
|
|
676
|
+
},
|
|
672
677
|
orderCreate: (data) => {
|
|
673
678
|
return request('/order/create', true, 'post', data)
|
|
674
679
|
},
|
|
@@ -823,6 +828,9 @@ module.exports = {
|
|
|
823
828
|
cashLogsV2: (data) => {
|
|
824
829
|
return request('/user/cashLog/v2', true, 'post', data)
|
|
825
830
|
},
|
|
831
|
+
cashLogsV3: (data) => {
|
|
832
|
+
return request('https://common.apifm.com/' + subDomain + '/user/cashLog/v2', false, 'post', data)
|
|
833
|
+
},
|
|
826
834
|
statisticsComingOut: (data) => {
|
|
827
835
|
return request('/user/statisticsComingOut', true, 'post', data)
|
|
828
836
|
},
|
|
@@ -1013,6 +1021,9 @@ module.exports = {
|
|
|
1013
1021
|
orderId
|
|
1014
1022
|
})
|
|
1015
1023
|
},
|
|
1024
|
+
refundApplySetBackLogistics: (data) => {
|
|
1025
|
+
return request('/order/refundApply/setBackLogistics', true, 'post', data)
|
|
1026
|
+
},
|
|
1016
1027
|
cmsCategories: () => {
|
|
1017
1028
|
return request('/cms/category/list', true, 'get', {})
|
|
1018
1029
|
},
|
|
@@ -1434,6 +1445,9 @@ module.exports = {
|
|
|
1434
1445
|
scoreMyStatistics: (data) => {
|
|
1435
1446
|
return request('/score/myStatistics', true, 'get', data)
|
|
1436
1447
|
},
|
|
1448
|
+
expireScorestatistics: (data) => {
|
|
1449
|
+
return request('/score/expireScorestatistics', true, 'post', data)
|
|
1450
|
+
},
|
|
1437
1451
|
voteItems: (data) => {
|
|
1438
1452
|
return request('/vote/items', true, 'post', data)
|
|
1439
1453
|
},
|
package/package.json
CHANGED