apifm-webapi 25.7.2 → 25.10.7
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 +11 -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
|
},
|
|
@@ -1013,6 +1018,9 @@ module.exports = {
|
|
|
1013
1018
|
orderId
|
|
1014
1019
|
})
|
|
1015
1020
|
},
|
|
1021
|
+
refundApplySetBackLogistics: (data) => {
|
|
1022
|
+
return request('/order/refundApply/setBackLogistics', true, 'post', data)
|
|
1023
|
+
},
|
|
1016
1024
|
cmsCategories: () => {
|
|
1017
1025
|
return request('/cms/category/list', true, 'get', {})
|
|
1018
1026
|
},
|
|
@@ -1434,6 +1442,9 @@ module.exports = {
|
|
|
1434
1442
|
scoreMyStatistics: (data) => {
|
|
1435
1443
|
return request('/score/myStatistics', true, 'get', data)
|
|
1436
1444
|
},
|
|
1445
|
+
expireScorestatistics: (data) => {
|
|
1446
|
+
return request('/score/expireScorestatistics', true, 'post', data)
|
|
1447
|
+
},
|
|
1437
1448
|
voteItems: (data) => {
|
|
1438
1449
|
return request('/vote/items', true, 'post', data)
|
|
1439
1450
|
},
|
package/package.json
CHANGED